/* ATREYA HOW IT WORKS H01R1 - HERO LOWER ART MASK
   Scope: #how / #how-it-works H01 route only.
   Purpose: hide the baked 40+ / 100K+ legacy stat strip at the bottom of the hero artwork.
   This does not change H01 DOM, live trust strip, theme authority, language authority, or other routes. */
#atreya-how-h01-root .h01-hero-art{
  overflow:hidden;
}
#atreya-how-h01-root .h01-hero-art::after{
  content:"";
  position:absolute;
  z-index:5;
  left:0;
  right:0;
  bottom:0;
  height:118px;
  pointer-events:none;
  background:linear-gradient(
    180deg,
    rgba(6,19,38,0) 0%,
    rgba(6,19,38,.18) 18%,
    rgba(6,19,38,.72) 48%,
    rgba(6,19,38,.96) 76%,
    #061326 100%
  );
}
#atreya-how-h01-root[data-theme="light"] .h01-hero-art::after{
  background:linear-gradient(
    180deg,
    rgba(255,249,240,0) 0%,
    rgba(255,249,240,.20) 18%,
    rgba(255,249,240,.76) 48%,
    rgba(255,249,240,.97) 76%,
    #fff9f0 100%
  );
}
/* The real H01 trust strip remains the only KPI/trust band visible below the hero. */
#atreya-how-h01-root .h01-trust{
  position:relative;
  z-index:8;
}
@media(max-width:980px){
  #atreya-how-h01-root .h01-hero-art::after{height:92px}
}
@media(max-width:620px){
  #atreya-how-h01-root .h01-hero-art::after{height:72px}
}
