/* ============================================================
   HydroBlast Pro — design system
   Mobile-first. Water theme: deep slate + electric blue/cyan.

   Refinement pass (21 Aug 2026): same identity, higher craft.
   - one spacing scale, one type scale, one neutral ramp
   - 1px borders carry structure; shadow is used sparingly, for lift
   - the blue→cyan gradient is reserved for two moments: the dark
     hero/final bands and the primary CTA. Everything else is solid.
   - icons are inline SVG on a 24px grid, never emoji
   ============================================================ */
:root{
  /* neutral ramp */
  --n-0:#ffffff;
  --n-25:#fafbfd;
  --n-50:#f5f8fc;
  --n-100:#eef2f8;
  --n-200:#e3e9f2;
  --n-300:#cbd5e4;
  --n-400:#9aabc2;
  --n-500:#5f7189;   /* AA on white: 4.2:1 at #6b7d95 was failing */
  --n-600:#4e5f76;
  --n-700:#33445c;
  --n-800:#1e293b;
  --n-900:#0b1220;

  --ink:var(--n-900);
  --ink-2:var(--n-800);
  --sub:var(--n-500);
  --line:var(--n-200);
  --bg:var(--n-0);
  --soft:var(--n-50);

  --blue:#176bdc;
  --blue-dark:#0f4fa8;
  --blue-tint:#edf4ff;
  --cyan:#0d7f99;
  --grad:linear-gradient(135deg,#176bdc 0%,#0d7f99 100%);
  --grad-dark:linear-gradient(160deg,#0b1220 0%,#12305a 76%,#176bdc 170%);
  /* outer colour of the gradient baked into the staged product shots by
     scripts/stage-product-shots.py — any frame that letterboxes one of those
     images must use this, or a white bar shows up beside the product */
  --stage-edge:#e4eefa;

  --sale:#c52c3e;
  --sale-tint:#fdeef0;
  --green:#0a7a47;   /* both directions now clear AA */
  --green-tint:#e8f6ef;
  --star:#d99122;

  /* spacing scale (4px base) */
  --s-1:4px;  --s-2:8px;  --s-3:12px; --s-4:16px; --s-5:20px;
  --s-6:24px; --s-8:32px; --s-10:40px; --s-12:48px; --s-16:64px;

  /* radius scale */
  --r-xs:8px; --r-sm:10px; --r:14px; --r-lg:20px; --r-pill:999px;

  /* elevation — borders do the structural work, shadow only lifts */
  --shadow:0 1px 2px rgba(11,18,32,.04), 0 8px 24px -16px rgba(11,18,32,.18);
  --shadow-lift:0 2px 4px rgba(11,18,32,.05), 0 18px 36px -18px rgba(11,18,32,.28);
  --cta-shadow:0 6px 20px -8px rgba(23,107,220,.4);

  --ease:cubic-bezier(.2,.7,.2,1);
}

*{margin:0;padding:0;box-sizing:border-box;-webkit-tap-highlight-color:transparent}
html{-webkit-text-size-adjust:100%;scroll-behavior:smooth;overflow-x:clip}
body{
  font-family:'Inter',-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Helvetica,Arial,sans-serif;
  color:var(--ink);background:var(--bg);-webkit-font-smoothing:antialiased;
  font-size:16px;line-height:1.55;overflow-x:clip;
  font-feature-settings:"cv05" 1,"ss01" 1;
}
body.locked{overflow:hidden}
img{max-width:100%;display:block}
a{color:inherit;text-decoration:none}
button{font-family:inherit;cursor:pointer;border:none;min-height:44px;touch-action:manipulation;user-select:none;-webkit-user-select:none}
.cartbtn,.d-close,.d-remove,.qty button{min-height:0}
/* 20px gutters all the way down — at 16px the header's edge controls sat too
   close to the screen edge on a phone. */
.wrap{max-width:1120px;margin:0 auto;padding:0 var(--s-5)}

/* Numerals that sit in columns or next to each other are tabular.
   NOT .spec-val: Inter's tnum also swaps the hyphen for a tabular minus, so
   "2-pin", "6-in-1" and "Over-voltage" render with gaps around every dash.
   Those values are right-aligned prose, not a numeric column. */
.price,.stat b,.compare td,.d-total,.sb-price,.rev-summary .big{font-variant-numeric:tabular-nums}

h1,h2,h3{letter-spacing:-.025em;line-height:1.14;font-weight:800;text-wrap:balance}
h1{letter-spacing:-.032em}
h2{font-size:clamp(1.55rem,4.2vw,2.05rem);text-align:center;margin-bottom:var(--s-3)}
.kicker{
  display:table;margin:0 auto var(--s-3);background:var(--blue-tint);
  color:var(--blue-dark);font-weight:700;text-transform:uppercase;font-size:.7rem;
  letter-spacing:.1em;padding:6px 12px;border-radius:var(--r-pill);
}
.lead{max-width:60ch;margin:0 auto var(--s-8);text-align:center;color:var(--sub);font-size:clamp(.95rem,2.4vw,1.03rem);line-height:1.7}

section{padding:clamp(44px,7vw,72px) 0}
section.alt{background:var(--soft);border-block:1px solid var(--line)}

/* inline icon system — 24px grid, 1.6 stroke.
   Every symbol is drawn to FILL the 24 grid (ink roughly 2.5→21.5 on both axes).
   That is the whole fix for the old set: identical box, wildly different ink
   bounds, so a battery rendered half the height of a droplet in the same slot.
   `viewBox` is also set on each <svg> so the icons survive a CSS failure. */
.i{width:20px;height:20px;flex:0 0 auto;stroke:currentColor;fill:none;stroke-width:1.6;stroke-linecap:round;stroke-linejoin:round;overflow:visible}
.i-lg{width:24px;height:24px;stroke-width:1.5}
.i-xl{width:28px;height:28px;stroke-width:1.4}
/* square tinted tile — gives every icon the same optical weight and baseline */
.ico{
  width:46px;height:46px;flex:0 0 auto;border-radius:var(--r-sm);
  background:var(--blue-tint);color:var(--blue-dark);
  display:flex;align-items:center;justify-content:center;
}
.ico-sm{width:38px;height:38px;border-radius:var(--r-xs)}

/* ---------- announcement bar ---------- */
.annc{
  background:var(--n-900);color:#dbe5f4;text-align:center;
  font-size:.8rem;font-weight:500;padding:9px var(--s-3);letter-spacing:.005em;
}
.annc b{color:#fff;font-weight:700}
@media(max-width:700px){.annc{font-size:.73rem;padding:8px 10px}}

/* ---------- header ---------- */
header{position:sticky;top:0;z-index:60;background:rgba(255,255,255,.88);backdrop-filter:blur(14px) saturate(1.4);-webkit-backdrop-filter:blur(14px) saturate(1.4);border-bottom:1px solid var(--line)}
/* padding-block only — `padding: x 0` here would wipe the inline padding .wrap sets */
.hd{display:flex;align-items:center;justify-content:space-between;padding-block:var(--s-3);gap:var(--s-3)}
.logo{font-weight:900;font-size:1.2rem;letter-spacing:-.02em;display:flex;align-items:center;gap:7px}
.logo img{height:44px;width:auto;display:block}
nav.mainnav{display:flex;gap:var(--s-6);font-size:.9rem;font-weight:600;color:var(--sub)}
nav.mainnav a{transition:color .15s var(--ease)}
nav.mainnav a:hover{color:var(--blue)}
.hd-right{display:flex;align-items:center;gap:var(--s-3)}
.hd-cta{background:var(--blue);color:#fff;font-weight:700;font-size:.85rem;padding:9px 16px;border-radius:var(--r-pill);transition:background .15s var(--ease)}
.hd-cta:hover{background:var(--blue-dark)}

/* square 44px hit targets so the two edge controls sit level and clear the gutter */
.navbtn,.cartbtn{background:none;color:var(--ink);border-radius:var(--r-sm);display:flex;align-items:center;justify-content:center;padding:0;width:44px;height:44px}
.navbtn:hover,.cartbtn:hover{background:var(--n-100)}
.navbtn{display:none}
.cartbtn{position:relative}
.cartbtn .bubble{position:absolute;top:3px;right:2px;background:var(--sale);color:#fff;font-size:.62rem;font-weight:700;border-radius:var(--r-pill);min-width:17px;height:17px;display:flex;align-items:center;justify-content:center;padding:0 4px}

/* Phone header: menu | logo | cart, as a fixed 3-column grid so the wordmark is
   optically centred no matter how wide the two controls are. nav.mainnav and
   .hd-cta go display:none, which takes them out of grid flow entirely — that is
   why this stays three columns on both pages. */
@media(max-width:860px){
  .hd{display:grid;grid-template-columns:44px 1fr 44px;align-items:center;gap:var(--s-2);padding-block:6px}
  nav.mainnav,.hd-cta{display:none}
  .navbtn{display:flex;justify-self:start}
  .logo{justify-self:center}
  .hd-right{justify-self:end}
  .logo img{height:34px}
}

/* ---------- CTA button ---------- */
.atc{
  width:100%;background:var(--grad);color:#fff;font-size:1.05rem;font-weight:700;
  padding:16px 22px;border-radius:var(--r);letter-spacing:.005em;
  transition:transform .12s var(--ease),box-shadow .18s var(--ease),filter .18s var(--ease);
  box-shadow:var(--cta-shadow);
  display:flex;align-items:center;justify-content:center;gap:var(--s-2);
}
.atc:active{transform:scale(.985)}
.atc:hover{transform:translateY(-1px);box-shadow:0 10px 26px -8px rgba(11,99,246,.6)}
.atc small{font-weight:500;opacity:.85;font-size:.8rem}
.atc.ghost{background:#fff;color:var(--ink);box-shadow:none;border:1px solid var(--n-300)}
.atc.ghost:hover{background:var(--n-50);border-color:var(--n-400)}
@media(max-width:700px){.atc{font-size:1rem;padding:15px 18px}}

/* ---------- HOME: hero ---------- */
/* .hero is a <section>, so zero the section padding — .hero .wrap owns the vertical rhythm */
.hero{background:var(--grad-dark);color:#fff;overflow:hidden;position:relative;padding-block:0}
.hero .wrap{display:grid;grid-template-columns:1.1fr .9fr;gap:var(--s-12);align-items:center;padding-top:clamp(34px,4vw,58px);padding-bottom:clamp(34px,4vw,58px)}
@media(max-width:860px){.hero .wrap{grid-template-columns:1fr;gap:var(--s-6);text-align:center}}
.hero h1{font-size:clamp(1.95rem,5.8vw,3.05rem);margin-bottom:var(--s-4)}
.hero h1 em{font-style:normal;color:#67d5f5}
.hero p{color:#b7c6dd;font-size:clamp(.96rem,2.5vw,1.08rem);line-height:1.7;margin-bottom:var(--s-6);max-width:52ch}
@media(max-width:860px){.hero p{margin-inline:auto}}
.hero .atc{max-width:360px}
@media(max-width:860px){.hero .atc{margin:0 auto}}
.hero-proof{
  display:grid;grid-template-columns:repeat(3,1fr);gap:1px;max-width:620px;margin-top:var(--s-5);
  border:1px solid rgba(255,255,255,.14);border-radius:var(--r);overflow:hidden;
  background:rgba(255,255,255,.12);
}
.hero-proof div{padding:12px 14px;background:rgba(255,255,255,.06)}
.hero-proof b{display:block;color:#fff;font-size:.84rem;letter-spacing:-.01em}
.hero-proof span{display:block;color:#9db2ce;font-size:.76rem;line-height:1.45;margin-top:2px}
@media(max-width:860px){.hero-proof{margin-inline:auto;text-align:left}}
@media(max-width:620px){.hero-proof{grid-template-columns:1fr}.hero-proof div{padding:10px 12px}}
.hero-img{position:relative}
.hero-img img{border-radius:var(--r-lg);box-shadow:0 24px 60px -20px rgba(0,0,0,.65);width:100%;aspect-ratio:1/1;object-fit:contain;background:#fff}
/* a photograph fills the frame instead of floating on a white card */
.hero-img.shot img{object-fit:cover;background:transparent;aspect-ratio:4/3}
@media(min-width:861px){.hero-img{max-width:520px;justify-self:end;width:100%}.hero-img img{aspect-ratio:4/3;max-height:420px}}
.hero-badge{position:absolute;top:var(--s-3);left:var(--s-3);background:rgba(255,255,255,.95);color:var(--ink);font-size:.74rem;font-weight:700;padding:6px 12px;border-radius:var(--r-pill);display:flex;align-items:center;gap:6px}
.hero-trust{display:flex;gap:var(--s-5);margin-top:var(--s-5);font-size:.8rem;color:#9db2ce;flex-wrap:wrap}
.hero-trust span{display:flex;align-items:center;gap:6px}
@media(max-width:860px){.hero-trust{justify-content:center}}
.hero-rating{display:flex;align-items:center;gap:var(--s-2);margin-bottom:var(--s-3);font-size:.87rem;color:#b7c6dd}
@media(max-width:860px){.hero-rating{justify-content:center}}

/* ---------- trust strip ---------- */
.truststrip{background:#fff;border-bottom:1px solid var(--line)}
.truststrip .wrap{display:grid;grid-template-columns:repeat(4,1fr);gap:var(--s-3);padding-block:var(--s-4)}
@media(max-width:700px){.truststrip .wrap{grid-template-columns:repeat(2,1fr);gap:10px}}
.truststrip span{display:flex;align-items:center;justify-content:center;gap:var(--s-2);font-size:.82rem;font-weight:600;color:var(--n-700);text-align:left}
.truststrip .i{color:var(--blue)}
@media(max-width:700px){.truststrip span{font-size:.74rem;justify-content:flex-start}}

/* ---------- benefit cards (home) ---------- */
.cards3{display:grid;grid-template-columns:repeat(3,1fr);gap:var(--s-4)}
@media(max-width:860px){.cards3{grid-template-columns:1fr;gap:var(--s-3)}}
.bcard{background:#fff;border:1px solid var(--line);border-radius:var(--r-lg);padding:var(--s-6) var(--s-5);transition:transform .18s var(--ease),box-shadow .18s var(--ease),border-color .18s var(--ease)}
.bcard:hover{transform:translateY(-2px);box-shadow:var(--shadow-lift);border-color:var(--n-300)}
.bcard .ico{width:42px;height:42px;border-radius:var(--r-sm);background:var(--blue-tint);color:var(--blue-dark);display:flex;align-items:center;justify-content:center;margin-bottom:var(--s-3)}
.bcard h3{font-size:1.05rem;margin-bottom:6px}
.bcard p{font-size:.9rem;color:var(--sub);line-height:1.65}

/* ---------- home product card ---------- */
.shopcard{
  display:grid;grid-template-columns:1fr 1fr;gap:0;background:#fff;border:1px solid var(--line);
  border-radius:var(--r-lg);overflow:hidden;box-shadow:var(--shadow);max-width:940px;margin:0 auto;
}
@media(max-width:860px){.shopcard{grid-template-columns:1fr}}
.shopcard .sc-img{background:var(--stage-edge);border-right:1px solid var(--line)}
@media(max-width:860px){.shopcard .sc-img{border-right:0;border-bottom:1px solid var(--line)}}
.shopcard .sc-img{position:relative;display:grid;place-items:center}
.shopcard .sc-img img{width:100%;height:auto;aspect-ratio:1/1;object-fit:contain}
.kit-callouts{
  position:absolute;left:var(--s-4);right:var(--s-4);bottom:var(--s-4);
  display:flex;gap:8px;justify-content:center;flex-wrap:wrap;pointer-events:none;
}
.kit-callouts span{
  background:rgba(255,255,255,.88);border:1px solid rgba(203,213,228,.78);
  border-radius:var(--r-pill);padding:6px 10px;font-size:.72rem;font-weight:700;color:var(--ink-2);
  -webkit-backdrop-filter:blur(8px);backdrop-filter:blur(8px);
}
.shopcard .sc-body{padding:clamp(22px,4vw,40px);display:flex;flex-direction:column;justify-content:center}
.shopcard h3{font-size:clamp(1.2rem,3vw,1.5rem);margin-bottom:6px}
.shopcard .rating{margin-bottom:var(--s-3)}
.shopcard .price{margin-bottom:var(--s-3)}
.shopcard ul{list-style:none;display:grid;gap:7px;margin-bottom:var(--s-5)}
.shopcard ul li{padding-left:26px;position:relative;font-size:.9rem;color:var(--ink-2)}
.shopcard ul li::before{content:"";position:absolute;left:0;top:.46em;width:15px;height:11px;background:var(--green);clip-path:polygon(8% 54%,31% 78%,88% 16%,100% 29%,32% 96%,0 65%)}
.mini-proof{display:grid;grid-template-columns:repeat(3,1fr);gap:8px;margin:0 0 var(--s-5)}
.mini-proof span{border:1px solid var(--line);border-radius:var(--r-sm);padding:9px 8px;text-align:center;font-size:.74rem;color:var(--sub);background:var(--n-25)}
.mini-proof b{display:block;color:var(--ink);font-size:1rem;line-height:1}
@media(max-width:420px){.mini-proof{grid-template-columns:1fr}.kit-callouts{display:none}}

/* ---------- rating / price shared ---------- */
.rating{display:flex;align-items:center;gap:var(--s-2);font-size:.87rem;color:var(--sub)}
.stars{color:var(--star);letter-spacing:1.5px;font-size:.92rem}
.price{display:flex;align-items:baseline;gap:10px;flex-wrap:wrap}
.price .now{font-size:2rem;font-weight:800;letter-spacing:-.03em;color:var(--ink)}
.price .was{font-size:1.05rem;color:var(--sub);text-decoration:line-through}
.price .save{background:var(--sale-tint);color:var(--sale);font-size:.73rem;font-weight:700;padding:5px 10px;border-radius:var(--r-pill);letter-spacing:.02em}
@media(max-width:700px){.price .now{font-size:1.75rem}.price .was{font-size:1rem}}

/* ---------- product page layout ---------- */
.product{display:grid;grid-template-columns:1fr 1fr;gap:var(--s-12);padding:var(--s-8) var(--s-5) var(--s-12)}
.product#buy{scroll-margin-top:72px}
@media(max-width:860px){.product{grid-template-columns:1fr;gap:var(--s-5);padding:var(--s-4) var(--s-4) var(--s-8)}}
.gallery,.info{min-width:0;max-width:100%}
.gallery .main{position:relative;border:1px solid var(--line);border-radius:var(--r-lg);overflow:hidden;background:var(--stage-edge);box-shadow:inset 0 1px 0 rgba(255,255,255,.75),0 1px 2px rgba(11,18,32,.04)}
.track{display:flex;overflow-x:auto;scroll-snap-type:x mandatory;-webkit-overflow-scrolling:touch;scrollbar-width:none}
.track::-webkit-scrollbar{display:none}
.track img{flex:0 0 100%;width:100%;height:auto;min-width:0;scroll-snap-align:center;aspect-ratio:1/1;object-fit:contain;background:var(--stage-edge)}
/* phone: the gallery is capped so the headline, price, colour picker AND the
   CTA all reach the first screen. Raising this cap pushes the CTA below the fold. */
@media(max-width:860px){.track img{aspect-ratio:auto;height:min(32vh,265px)}}
.g-badge{position:absolute;top:var(--s-3);left:var(--s-3);background:var(--sale);color:#fff;font-size:.71rem;font-weight:700;padding:5px 11px;border-radius:var(--r-pill);z-index:2;letter-spacing:.03em}
/* Frosted pill in the bottom-right, not bottom-centre: the kit shot is a
   centred flat lay whose front row of accessories runs right across the middle
   of the lower edge, and centred dots sat on top of the foam bottle. */
.dots{
  position:absolute;bottom:10px;right:10px;
  display:flex;align-items:center;gap:6px;pointer-events:none;
  padding:6px 10px;border-radius:var(--r-pill);background:rgba(255,255,255,.8);
  -webkit-backdrop-filter:blur(8px);backdrop-filter:blur(8px);
  box-shadow:0 1px 2px rgba(11,18,32,.1);
}
.dots i{width:6px;height:6px;border-radius:50%;background:var(--n-300);transition:background .2s,transform .2s}
.dots i.on{background:var(--blue);transform:scale(1.35)}
.gallery-caption{
  margin:10px 2px 0;color:var(--sub);font-size:.82rem;line-height:1.55;
  min-height:2.6em;
}
.thumbs{display:grid;grid-template-columns:repeat(6,minmax(0,1fr));gap:var(--s-2);margin-top:10px}
.thumbs img{width:100%;height:100%;border:1px solid var(--line);border-radius:var(--r-sm);cursor:pointer;transition:border-color .15s var(--ease);aspect-ratio:1/1;object-fit:contain;background:var(--stage-edge);padding:0}
/* photographs fill their frame; cut-out product shots letterbox onto the stage tint */
.track img.shot,.thumbs img.shot{object-fit:cover;background:var(--soft)}
.thumbs img.active{border-color:var(--blue);box-shadow:0 0 0 2px rgba(11,99,246,.16)}
.thumbs img:hover{border-color:var(--n-400)}
@media(max-width:700px){
  .thumbs{display:none}
}

.pill{display:inline-flex;align-items:center;gap:6px;background:var(--n-100);color:var(--n-700);font-weight:700;font-size:.72rem;padding:6px 12px;border-radius:var(--r-pill);letter-spacing:.04em;margin-bottom:var(--s-3)}
.info h1{font-size:clamp(1.4rem,3.4vw,1.85rem);margin-bottom:10px}
.info .sub-line{color:var(--sub);font-size:.94rem;line-height:1.6;margin:0 0 var(--s-3);max-width:54ch}
@media(max-width:700px){.info .sub-line{font-size:.88rem;line-height:1.5;margin-bottom:10px}}
.info .rating{margin-bottom:var(--s-3)}
.ship-note{color:var(--green);font-weight:600;font-size:.88rem;margin:10px 0 var(--s-4);display:flex;align-items:center;gap:7px}
.info .atc{margin-bottom:var(--s-5)}
.buy-proof{
  display:grid;gap:10px;margin:0 0 var(--s-5);
  border:1px solid var(--line);border-radius:var(--r-lg);padding:var(--s-3);background:var(--n-25);
}
.buy-proof div{display:grid;grid-template-columns:38px 1fr;column-gap:var(--s-3);align-items:start}
.buy-proof .ico{grid-row:1 / span 2}
.buy-proof b{font-size:.9rem;line-height:1.25;color:var(--ink);letter-spacing:-.01em}
.buy-proof p{font-size:.8rem;line-height:1.55;color:var(--sub);margin-top:2px}
@media(max-width:700px){
  .gallery-caption{display:none}
  .buy-proof{grid-template-columns:1fr;padding:10px;margin-bottom:var(--s-4)}
  .buy-proof div:nth-child(2),.buy-proof div:nth-child(3){display:none}
}
.hooks{list-style:none;margin:0 0 var(--s-5);display:grid;gap:10px}
.hooks li{padding-left:28px;position:relative;font-size:.94rem;color:var(--ink-2);line-height:1.55}
.hooks li::before{content:"";position:absolute;left:2px;top:.48em;width:15px;height:11px;background:var(--green);clip-path:polygon(8% 54%,31% 78%,88% 16%,100% 29%,32% 96%,0 65%)}

/* ---------- colour picker ----------
   Solid colour chips, not tiny photographs of the gun. At 44px a product photo
   is an unreadable orange smudge; a chip reads instantly. The hex on each chip
   is sampled from that colour's own product shot by scripts/sample-chips.py,
   so the swatch and the gallery agree. */
.swatches{margin:var(--s-1) 0 var(--s-5)}
.swlabel{font-size:.88rem;color:var(--sub);display:block;margin-bottom:10px}
.swlabel b{color:var(--ink);font-weight:700}
.swlabel .swstock-in{color:var(--green);font-weight:600}
.swrow{display:flex;gap:var(--s-3);flex-wrap:wrap;align-items:center}
.sw{
  position:relative;min-height:0;background:none;border:0;padding:0;
  width:44px;height:44px;border-radius:50%;
  transition:transform .14s var(--ease);
}
.sw .chip{
  display:block;width:100%;height:100%;border-radius:50%;background:var(--chip);
  transition:box-shadow .15s var(--ease);
  /* inner rim + soft top light + bottom shade reads as a moulded shell, not a flat dot */
  box-shadow:
    inset 0 0 0 1px rgba(11,18,32,.18),
    inset 0 -8px 14px -9px rgba(0,0,0,.6),
    inset 0 7px 12px -8px rgba(255,255,255,.9);
  filter:saturate(.82) brightness(.98);
}
.sw:hover{transform:translateY(-2px)}
.sw:hover .chip{box-shadow:inset 0 0 0 1px rgba(11,18,32,.18),inset 0 -8px 14px -9px rgba(0,0,0,.6),inset 0 7px 12px -8px rgba(255,255,255,.9),0 0 0 2px #fff,0 0 0 3px var(--n-300)}
.sw.selected .chip{box-shadow:inset 0 0 0 1px rgba(11,18,32,.18),inset 0 -8px 14px -9px rgba(0,0,0,.6),inset 0 7px 12px -8px rgba(255,255,255,.9),0 0 0 2px #fff,0 0 0 4px rgba(23,107,220,.72)}
/* the ring is drawn with box-shadow, so it costs no layout — the focus ring is
   the same shape rather than the global square outline */
.sw:focus-visible{outline:none}
.sw:focus-visible .chip{box-shadow:inset 0 0 0 1px rgba(11,18,32,.18),0 0 0 2px #fff,0 0 0 4px rgba(23,107,220,.78),0 0 0 7px rgba(23,107,220,.18)}
/* phone: all seven chips share one row at any width. A wrapped 8th row
   pushes the CTA off the first screen, so they never wrap. */
@media(max-width:700px){
  .swrow{gap:var(--s-2);flex-wrap:nowrap}
  .sw{width:40px;height:40px}
}
@media(max-width:360px){.swrow{gap:6px}.sw{width:38px;height:38px}}

/* payment logos */
.payrow{display:flex;flex-direction:column;align-items:center;gap:12px;margin-top:var(--s-5);padding-top:var(--s-4);border-top:1px solid var(--line)}
.paylabel{font-size:.68rem;color:var(--sub);text-transform:uppercase;letter-spacing:.14em;font-weight:800}
.paylogos{display:flex;gap:10px;align-items:center}
.paycard{width:64px;height:40px;border-radius:7px;box-shadow:0 2px 6px rgba(11,18,32,.12)}

.trust-icons{display:flex;flex-wrap:wrap;gap:var(--s-3) var(--s-4);margin-top:var(--s-5);padding-top:var(--s-4);border-top:1px solid var(--line);font-size:.79rem;color:var(--sub)}
.trust-icons span{display:flex;align-items:center;gap:6px}
.trust-icons .i{width:16px;height:16px;color:var(--n-400)}

/* ---------- spec table — every real figure, each with what it buys you ---------- */
.specs{max-width:780px;margin:0 auto;border:1px solid var(--line);border-radius:var(--r-lg);overflow:hidden;background:#fff}
.spec-row{display:flex;align-items:flex-start;justify-content:space-between;gap:var(--s-5);padding:var(--s-4) var(--s-5);border-bottom:1px solid var(--line)}
.spec-row:last-child{border-bottom:0}
.spec-row>div{min-width:0}
.spec-key{display:block;font-weight:700;font-size:.94rem;color:var(--ink);letter-spacing:-.01em}
.spec-gloss{display:block;font-size:.83rem;color:var(--sub);line-height:1.55;margin-top:3px;max-width:52ch}
.spec-val{flex:0 0 auto;font-weight:700;font-size:.94rem;text-align:right;max-width:44%;color:var(--ink)}
@media(max-width:600px){
  .spec-row{flex-direction:column;gap:6px;padding:var(--s-4)}
  .spec-val{text-align:left;max-width:100%;color:var(--blue-dark)}
}

/* ---------- lifestyle proof grid — where it actually goes ---------- */
.lifegrid{display:grid;grid-template-columns:repeat(3,1fr);gap:var(--s-3);max-width:1000px;margin:0 auto}
@media(max-width:860px){.lifegrid{grid-template-columns:repeat(2,1fr);gap:10px}}
@media(max-width:520px){.lifegrid{grid-template-columns:1fr}}
.lifecard{position:relative;margin:0;border:1px solid var(--line);border-radius:var(--r-lg);overflow:hidden;background:#fff;transition:transform .18s var(--ease),box-shadow .18s var(--ease)}
.lifecard:hover{transform:translateY(-2px);box-shadow:var(--shadow-lift)}
.lifecard img{width:100%;aspect-ratio:4/3;object-fit:cover;display:block}
.lifecard figcaption{
  position:absolute;left:0;right:0;bottom:0;padding:28px var(--s-4) 12px;
  color:#fff;font-size:.86rem;font-weight:600;line-height:1.4;
  background:linear-gradient(to top,rgba(8,13,24,.88) 30%,rgba(8,13,24,0))
}

/* ---------- features ---------- */
.feature{display:grid;grid-template-columns:1fr 1fr;gap:clamp(28px,5vw,72px);align-items:stretch;margin-bottom:clamp(40px,7vw,64px)}
.feature:last-child{margin-bottom:0}
.feature img{border-radius:var(--r-lg);border:1px solid var(--line);background:var(--stage-edge);width:100%}
/* .shot = a real photograph, so crop it to a consistent frame. Bare .f-img is a
   staged product/detail shot, so keep it contained on the shared studio tint. */
.f-img.shot img{aspect-ratio:4/3;object-fit:cover}
.feature.flip .f-img{order:2}
@media(max-width:860px){.feature,.feature.flip{grid-template-columns:1fr;gap:var(--s-5)}.feature.flip .f-img{order:0}}
.feature .f-img:not(.shot) img{aspect-ratio:1/1;object-fit:contain;background:var(--stage-edge)}
.feature>div:not(.f-img){padding:clamp(24px,4vw,48px);border:1px solid #dfe8f3;border-radius:var(--r-lg);background:#f7faff;display:flex;flex-direction:column;justify-content:center}
.feature h3{font-size:clamp(1.5rem,3vw,2.15rem);line-height:1.08;letter-spacing:-.025em;max-width:16ch;margin-bottom:16px}
.feature p{color:var(--sub);line-height:1.7;margin-bottom:var(--s-4);font-size:1rem;max-width:48ch}
.feature ul{list-style:none;display:grid;gap:0;margin:0}
.feature ul li{padding:13px 0 13px 28px;border-top:1px solid #dbe7f5;position:relative;font-size:.92rem;line-height:1.45;color:var(--ink-2)}
.feature ul li:last-child{border-bottom:1px solid #dbe7f5}
/* a tick, like .hooks — the old two-piece dash rendered as a stray em-dash */
.feature ul li::before{content:"";position:absolute;left:2px;top:.46em;width:14px;height:10px;background:var(--blue);clip-path:polygon(8% 54%,31% 78%,88% 16%,100% 29%,32% 96%,0 65%)}
@media(max-width:860px){.feature>div:not(.f-img){padding:24px}.feature h3{max-width:24ch}}

/* ---------- stats strip ---------- */
.stats{display:grid;grid-template-columns:repeat(4,1fr);gap:var(--s-4);text-align:center}
@media(max-width:700px){.stats{grid-template-columns:repeat(2,1fr);gap:var(--s-5) 10px}}
.stat b{display:block;font-size:clamp(1.5rem,4vw,2rem);letter-spacing:-.03em;color:var(--ink);font-weight:800}
.stat span{font-size:.8rem;color:var(--sub);display:block;margin-top:2px}

/* ---------- comparison ---------- */
.table-scroll{overflow-x:auto;-webkit-overflow-scrolling:touch;max-width:760px;margin:0 auto;border:1px solid var(--line);border-radius:var(--r-lg);background:#fff}
.table-scroll .compare{min-width:560px}
.compare{width:100%;border-collapse:collapse;background:#fff}
.compare th,.compare td{padding:13px var(--s-4);text-align:center;border-bottom:1px solid var(--line);font-size:.92rem}
.compare tr:last-child td{border-bottom:0}
.compare th{background:var(--n-900);color:#fff;font-size:.82rem;font-weight:600;letter-spacing:.01em}
.compare th:nth-child(2){background:var(--blue)}
.compare td:first-child{text-align:left;font-weight:600;color:var(--ink-2)}
.compare .yes{color:var(--green);font-weight:700}
.compare td.yes{background:var(--green-tint)}
.compare-note{max-width:64ch;margin:var(--s-5) auto 0;text-align:center;font-size:.91rem;color:var(--sub);line-height:1.7}
.compare-note b{color:var(--ink);font-weight:700}
/* de-emphasise with weight, not with unreadable grey — --n-300 on white is ~1.9:1 */
.compare .no{color:var(--n-500);font-weight:500}
@media(max-width:700px){
  .compare th,.compare td{padding:10px 7px;font-size:.74rem}
  .table-scroll .compare{min-width:0}          /* fit the column instead of clipping */
  .compare td:first-child,.compare th:first-child{padding-left:10px}
  .compare td:last-child,.compare th:last-child{padding-right:10px}
}

/* ---------- lifestyle scenes (product) ----------
   Caption sits under the photo, not on it: the overlaid gradient version crowded
   two lines of text onto a busy image. Place name in ink, the line in --sub. */
.lifescenes{display:grid;grid-template-columns:repeat(3,1fr);gap:var(--s-8) var(--s-6);max-width:1040px;margin:0 auto}
@media(max-width:860px){.lifescenes{grid-template-columns:repeat(2,1fr);gap:var(--s-6) var(--s-5)}}
@media(max-width:520px){.lifescenes{grid-template-columns:1fr}}
.lifescene{margin:0}
.lifescene img{width:100%;aspect-ratio:4/3;object-fit:cover;display:block;border-radius:var(--r-lg);border:1px solid var(--line);background:#fff}
.lifescene figcaption{margin-top:var(--s-4);font-size:.88rem;line-height:1.55;color:var(--sub);max-width:34ch}
.lifescene figcaption b{display:block;color:var(--ink);font-weight:700;letter-spacing:-.01em}

/* ---------- comparison ledger (index) ----------
   Dense hairline ledger: the winning column is a single drenched ink band with cyan marks,
   the alternatives sit in --n-500. Hierarchy comes from that band and from weight, not size. */
.u-sr{position:absolute;width:1px;height:1px;overflow:hidden;clip-path:inset(50%);white-space:nowrap}
.cmp-head{max-width:760px;margin:0 auto var(--s-8)}
.ledger-scroll{max-width:800px;margin:0 auto;overflow-x:auto;-webkit-overflow-scrolling:touch}
.ledger{width:100%;min-width:580px;border-collapse:separate;border-spacing:0;font-variant-numeric:tabular-nums}
.ledger th,.ledger td{padding:14px var(--s-4);text-align:center;font-size:.9rem;color:var(--n-500)}
.ledger thead th{font-size:.72rem;font-weight:700;letter-spacing:.1em;text-transform:uppercase;color:var(--n-600);padding-bottom:10px;border-bottom:1px solid var(--ink)}
.ledger-label{text-align:left;color:var(--ink-2);font-weight:600}
.ledger tbody td{border-bottom:1px solid var(--line)}
/* the ink band: one column, top and bottom capped */
.ledger-win{background:var(--n-900);color:#fff;font-weight:700;border-bottom-color:rgba(255,255,255,.14)}
.ledger thead .ledger-win{border-radius:var(--r-sm) var(--r-sm) 0 0;color:#fff;border-bottom:0}
.ledger tbody tr:last-child .ledger-win{border-radius:0 0 var(--r-sm) var(--r-sm);border-bottom:0}
.ledger-v{display:inline-flex;align-items:center;gap:8px;justify-content:center}
.ledger-i{width:17px;height:17px;flex:none;fill:none;stroke:currentColor;stroke-width:1.8;stroke-linecap:round;stroke-linejoin:round;color:var(--n-400)}
.ledger-win .ledger-i{color:var(--cyan)}
/* product page runs the same ledger with a blue winner column — ink read too heavy
   next to the buy box, which already carries the dark weight on that page.
   It also carries the scrolling-table affordances the home-page version doesn't need:
   fixed column widths, a sticky feature column, and a focusable labelled scroll region. */
.ledger-blue .cmp-head{max-width:60ch;margin:0 auto var(--s-8)}
.ledger-blue .ledger-scroll{
  max-width:860px;margin:0 auto;position:relative;border-radius:var(--r-sm);
  scrollbar-color:var(--n-300) transparent;scrollbar-width:thin
}
.ledger-blue .ledger-scroll:focus-visible{outline:2px solid var(--blue);outline-offset:3px}
.ledger-blue .ledger-scroll::-webkit-scrollbar{height:8px}
.ledger-blue .ledger-scroll::-webkit-scrollbar-thumb{background:var(--n-300);border-radius:var(--r-pill)}
.ledger-blue .ledger-scroll::-webkit-scrollbar-track{background:transparent}
.ledger-blue .ledger{table-layout:fixed;min-width:620px}
.ledger-blue .ledger th,.ledger-blue .ledger td{padding:15px var(--s-4);vertical-align:middle}
.ledger-blue .ledger thead th{padding-bottom:11px;text-wrap:balance}
.ledger-blue .ledger thead .ledger-win{padding-block:13px}
/* the feature column stays put while the value columns scroll under it */
.ledger-blue .ledger-label{position:sticky;left:0;z-index:1;background:var(--bg);padding-left:0;padding-right:var(--s-5);text-wrap:pretty;box-shadow:10px 0 14px -14px rgba(11,18,32,.55)}
/* every value cell is a two-column grid — fixed icon gutter, then the text — so the
   marks stack in one straight line and the words all start at the same x. */
.ledger-blue .ledger th,.ledger-blue .ledger td,.ledger-blue .ledger thead th{text-align:left}
.ledger-blue .ledger-v{display:grid;grid-template-columns:18px 1fr;gap:10px;align-items:center;text-align:left}
.ledger-blue .ledger-i{width:18px;height:18px}
.ledger-blue .ledger-win,.ledger-blue .ledger-win .ledger-v{color:#fff}
.ledger-blue .ledger-win{background:var(--blue);border-bottom-color:rgba(255,255,255,.2)}
.ledger-blue .ledger-win .ledger-i{color:#fff}
.ledger-blue .ledger td{transition:background-color .16s var(--ease)}
.ledger-blue .ledger tbody tr:hover td,.ledger-blue .ledger tbody tr:hover .ledger-label{background-color:var(--n-50)}
.ledger-blue .ledger tbody tr:hover .ledger-win{background-color:var(--blue-dark)}
.ledger-blue .cmp-foot{margin-top:var(--s-6)}
/* winner header carries the one-line reason it wins, in the product's own words */
.ledger-blue .lw-name{display:block}
/* solid white, not translucent: at .78 alpha this read under 3:1 on --blue */
.ledger-blue .lw-sub{display:block;margin-top:4px;font-size:.68rem;font-weight:700;letter-spacing:.09em;text-transform:uppercase;color:#fff}
/* The ticks draw themselves down the winning column as the table arrives, 60ms apart,
   so the run of wins reads as a sequence rather than a static block.
   `.reveal` is only added by the observer in app.js, which bails out under
   prefers-reduced-motion — so with motion reduced the marks are simply drawn. */
.ledger-blue .ledger-win .ledger-i path{stroke-dasharray:26;stroke-dashoffset:0;transition:stroke-dashoffset .45s cubic-bezier(.22,.61,.36,1)}
.ledger-blue .ledger-scroll.reveal:not(.in) .ledger-win .ledger-i path{stroke-dashoffset:26}
.ledger-blue .ledger tbody tr:nth-child(1) .ledger-win .ledger-i path{transition-delay:.10s}
.ledger-blue .ledger tbody tr:nth-child(2) .ledger-win .ledger-i path{transition-delay:.16s}
.ledger-blue .ledger tbody tr:nth-child(3) .ledger-win .ledger-i path{transition-delay:.22s}
.ledger-blue .ledger tbody tr:nth-child(4) .ledger-win .ledger-i path{transition-delay:.28s}
.ledger-blue .ledger tbody tr:nth-child(5) .ledger-win .ledger-i path{transition-delay:.34s}
.ledger-blue .ledger tbody tr:nth-child(6) .ledger-win .ledger-i path{transition-delay:.40s}
.ledger-blue .ledger tbody tr:nth-child(7) .ledger-win .ledger-i path{transition-delay:.46s}
.ledger-blue .ledger tbody tr:nth-child(8) .ledger-win .ledger-i path{transition-delay:.52s}
@media(prefers-reduced-motion:reduce){
  .ledger-blue .ledger td{transition:none}
  .ledger-blue .ledger-win .ledger-i path{stroke-dashoffset:0;transition:none}
}
@media(max-width:560px){
  .ledger-blue .ledger{min-width:540px}
  .ledger-blue .ledger th,.ledger-blue .ledger td{padding:11px 10px;font-size:.82rem}
  .ledger-blue .ledger-label{padding-right:var(--s-4)}
}
.cmp-tally{display:flex;justify-content:center;gap:var(--s-6);flex-wrap:wrap;margin-top:var(--s-6);font-size:.8rem;color:var(--n-500)}
.cmp-tally span{display:flex;align-items:baseline;gap:8px}
.cmp-tally b{color:var(--ink);font-weight:800;font-size:1.15rem;letter-spacing:-.02em;font-variant-numeric:tabular-nums}
@media(max-width:560px){
  .ledger th,.ledger td{padding:10px 8px;font-size:.8rem}
}

/* ---------- box contents ---------- */
.box-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:var(--s-3);max-width:880px;margin:0 auto}
@media(max-width:700px){.box-grid{grid-template-columns:repeat(2,1fr);gap:10px}}
.box-item{background:#fff;border:1px solid var(--line);border-radius:var(--r);padding:var(--s-5) var(--s-3);text-align:center;font-size:.86rem;font-weight:600;color:var(--ink-2);display:flex;flex-direction:column;align-items:center;gap:var(--s-3)}
@media(max-width:700px){.box-item{padding:var(--s-4) 10px;font-size:.79rem;gap:10px}.box-item .ico{width:40px;height:40px}}

/* ---------- reviews ---------- */
.rev-summary{display:flex;align-items:center;justify-content:center;gap:var(--s-4);margin-bottom:var(--s-4);flex-wrap:wrap}
.rev-summary .big{font-size:clamp(2rem,5vw,2.5rem);font-weight:800;letter-spacing:-.03em}
.rev-note{max-width:60ch;margin:0 auto var(--s-8);text-align:center;font-size:.82rem;color:var(--sub);line-height:1.6}
.reviews{display:grid;grid-template-columns:repeat(3,1fr);gap:var(--s-4)}
@media(max-width:860px){.reviews{grid-template-columns:1fr;gap:var(--s-3)}}
.review{background:#fff;border:1px solid var(--line);border-radius:var(--r-lg);padding:var(--s-5);display:flex;flex-direction:column}
.review .stars{font-size:.82rem;margin-bottom:8px}
.review p{font-size:.9rem;color:var(--ink-2);line-height:1.6;margin-bottom:var(--s-3)}
.review .who{font-size:.76rem;color:var(--sub);display:flex;align-items:center;gap:6px;flex-wrap:wrap;margin-top:auto}
.review .who b{color:var(--ink);font-weight:600}
.verified{color:var(--green);font-weight:600}

/* ---------- faq ---------- */
.faq{max-width:720px;margin:0 auto}
.faq details{border:1px solid var(--line);border-radius:var(--r);margin-bottom:10px;background:#fff;transition:border-color .15s var(--ease)}
.faq details[open]{border-color:var(--n-300)}
.faq summary{padding:15px var(--s-5);font-weight:600;cursor:pointer;list-style:none;display:flex;justify-content:space-between;align-items:center;font-size:.94rem;gap:var(--s-3)}
.faq summary::-webkit-details-marker{display:none}
.faq summary::after{content:"";flex:0 0 auto;width:10px;height:10px;border-right:1.8px solid var(--n-400);border-bottom:1.8px solid var(--n-400);transform:rotate(45deg) translate(-2px,-2px);transition:transform .2s var(--ease)}
.faq details[open] summary::after{transform:rotate(-135deg) translate(-3px,-3px)}
.faq details p{padding:0 var(--s-5) var(--s-4);color:var(--sub);font-size:.9rem;line-height:1.7}
@media(max-width:700px){.faq summary{padding:14px;font-size:.9rem}.faq details p{padding:0 14px 14px;font-size:.86rem}}

/* ---------- contact ---------- */
.contact{max-width:940px;margin:0 auto;display:grid;grid-template-columns:minmax(0,.92fr) minmax(0,1.08fr);gap:var(--s-4);align-items:start}
@media(max-width:860px){.contact{grid-template-columns:1fr}}
.contact-card{background:#fff;border:1px solid var(--line);border-radius:var(--r-lg);padding:clamp(22px,4vw,30px)}
.contact-card .ico{margin-bottom:var(--s-3)}
.contact-card h3{font-size:1.05rem;margin-bottom:6px}
.contact-card p{font-size:.9rem;color:var(--sub);line-height:1.65;margin-bottom:var(--s-4)}
.contact-mail{
  display:flex;align-items:center;justify-content:center;gap:var(--s-2);
  background:var(--n-900);color:#fff;font-weight:700;font-size:.95rem;
  padding:14px var(--s-4);border-radius:var(--r);text-align:center;
  transition:background .15s var(--ease);word-break:break-word;
}
.contact-mail:hover{background:var(--n-800)}
.contact-when{display:flex;align-items:center;justify-content:center;gap:7px;margin-top:var(--s-3);font-size:.82rem;color:var(--sub)}
.contact-help{display:grid;gap:10px;align-content:start}
.help-item{background:#fff;border:1px solid var(--line);border-radius:var(--r);padding:var(--s-4) var(--s-5);display:flex;gap:var(--s-3);align-items:flex-start;transition:border-color .18s var(--ease)}
.help-item:hover{border-color:var(--n-300)}
.help-item .ico{width:38px;height:38px;border-radius:var(--r-xs)}
.help-item b{display:block;font-size:.93rem;margin-bottom:2px;color:var(--ink)}
.help-item p{font-size:.86rem;color:var(--sub);line-height:1.6}
@media(max-width:700px){.help-item{padding:var(--s-4)}}

/* ---------- guarantee ---------- */
.guarantee{max-width:700px;margin:0 auto;text-align:center;background:#fff;border:1px solid var(--line);border-radius:var(--r-lg);padding:clamp(28px,5vw,38px) clamp(20px,4vw,30px)}
.guarantee .badge{width:52px;height:52px;margin:0 auto var(--s-3);border-radius:var(--r);background:var(--green-tint);color:var(--green);display:flex;align-items:center;justify-content:center}
.guarantee h3{font-size:clamp(1.1rem,3vw,1.35rem);margin-bottom:10px}
.guarantee p{color:var(--sub);line-height:1.7;font-size:.93rem;max-width:56ch;margin:0 auto}

/* ---------- final cta ---------- */
.final{background:var(--grad-dark);color:#fff;text-align:center;border-block:0}
.final h2{color:#fff}
.final .lead{color:#9db2ce}
.final .atc{max-width:420px;margin:0 auto}
.final .sub{margin-top:var(--s-3);font-size:.82rem;color:#9db2ce;display:flex;gap:var(--s-4);justify-content:center;flex-wrap:wrap}
.final .sub span{display:flex;align-items:center;gap:6px}

footer{background:#080d18;color:#6b7d95;text-align:center;font-size:.78rem;padding:var(--s-8) var(--s-5);line-height:1.9}
footer a{color:#8fa3bf;margin:0 8px;transition:color .15s var(--ease)}
footer a:hover{color:#dbe5f4}
footer .flogo{color:#e6ebf2;font-weight:700;font-size:.95rem;margin-bottom:var(--s-3)}
footer .flogo img{height:46px;width:auto;margin:0 auto;display:block}
@media(max-width:700px){footer .flogo img{height:38px}}

/* ---------- sticky mobile bar ---------- */
.stickybar{position:fixed;bottom:0;left:0;right:0;background:rgba(8,17,31,.96);color:#fff;backdrop-filter:blur(14px) saturate(1.25);-webkit-backdrop-filter:blur(14px) saturate(1.25);border-top:1px solid rgba(255,255,255,.12);padding:10px 14px calc(10px + env(safe-area-inset-bottom));display:none;align-items:center;gap:var(--s-3);z-index:70;box-shadow:0 -14px 34px -24px rgba(0,0,0,.8)}
.stickybar .sb-price{font-weight:800;font-size:1.08rem;letter-spacing:-.02em;line-height:1}
.stickybar .sb-was{font-size:.72rem;color:#91a5bf;text-decoration:none;margin-top:3px;white-space:nowrap}
.stickybar .atc{padding:13px;font-size:.95rem;flex:1;box-shadow:none}
.stickybar.show{display:flex}
@media(min-width:701px){.stickybar{display:none!important}}
body.has-sticky main{padding-bottom:0}
@media(max-width:700px){
  .stickybar{display:flex}
  body.has-sticky main{padding-bottom:86px}
  body.has-sticky footer{padding-bottom:calc(32px + env(safe-area-inset-bottom) + 64px)}
}

/* ---------- mobile nav drawer ---------- */
/* Slides from the left, mirroring the cart drawer on the right. Both rely on
   html,body{overflow-x:clip} to keep their off-screen resting position from
   creating sideways scroll. */
.navdrawer{
  position:fixed;top:0;left:-360px;width:min(320px,84vw);height:100dvh;background:#fff;z-index:90;
  transition:left .3s var(--ease);display:flex;flex-direction:column;
  border-radius:0 var(--r-lg) var(--r-lg) 0;
}
.navdrawer.open{left:0}
@media(min-width:861px){.navdrawer{display:none}}
.nd-head{display:flex;align-items:center;justify-content:space-between;gap:var(--s-3);padding:var(--s-3) var(--s-4) var(--s-3) var(--s-5);border-bottom:1px solid var(--line)}
.nd-head img{height:32px;width:auto;display:block}
.nd-links{display:flex;flex-direction:column;gap:2px;padding:var(--s-3);flex:1;overflow-y:auto}
.nd-links a{display:flex;align-items:center;gap:var(--s-3);padding:13px var(--s-4);border-radius:var(--r-sm);font-weight:600;font-size:.97rem;color:var(--ink)}
.nd-links a:hover{background:var(--n-50)}
.nd-links a .i{color:var(--blue)}
.nd-links a.minor{font-weight:500;font-size:.87rem;color:var(--sub);padding-block:11px}
.nd-links a.minor .i{color:var(--n-400)}
.nd-sep{height:1px;background:var(--line);margin:var(--s-2) var(--s-4)}
.nd-foot{padding:var(--s-4) var(--s-4) calc(var(--s-4) + env(safe-area-inset-bottom));border-top:1px solid var(--line)}
.nd-foot .atc{font-size:.95rem;padding:14px}
.nd-foot .nd-note{margin-top:10px;font-size:.76rem;color:var(--sub);display:flex;align-items:center;justify-content:center;gap:6px}

/* ---------- cart drawer ---------- */
.overlay{position:fixed;inset:0;background:rgba(11,18,32,.5);opacity:0;pointer-events:none;transition:opacity .25s var(--ease);z-index:80}
.overlay.open{opacity:1;pointer-events:auto}
.drawer{position:fixed;top:0;right:-440px;width:min(420px,100vw);height:100dvh;background:#fff;z-index:90;transition:right .3s var(--ease);display:flex;flex-direction:column;border-radius:var(--r-lg) 0 0 var(--r-lg)}
@media(max-width:480px){.drawer{border-radius:0}}
.drawer.open{right:0}
.d-head{display:flex;justify-content:space-between;align-items:center;padding:var(--s-5);border-bottom:1px solid var(--line)}
.d-head h3{font-size:1.05rem}
.d-close{background:none;font-size:1.5rem;line-height:1;color:var(--sub);padding:4px 8px;border-radius:var(--r-xs)}
.d-close:hover{background:var(--n-100);color:var(--ink)}
.shipbar{padding:12px var(--s-5);border-bottom:1px solid var(--line);font-size:.83rem;background:var(--green-tint);color:#0a5c33;display:flex;align-items:center;gap:8px}
.d-items{flex:1;overflow-y:auto;padding:var(--s-4) var(--s-5);display:grid;gap:var(--s-4);align-content:start}
.d-empty{text-align:center;color:var(--sub);padding:var(--s-10) 0;font-size:.93rem}
.d-item{display:flex;gap:var(--s-3);align-items:center}
.d-item img{width:70px;height:70px;object-fit:contain;border-radius:var(--r-sm);border:1px solid var(--line);background:var(--stage-edge);flex:0 0 auto}
.d-item .di-name{font-weight:600;font-size:.89rem;line-height:1.35}
.d-item .di-price{font-size:.86rem;font-weight:700;margin-top:2px}
.d-item .di-was{font-size:.75rem;color:var(--sub);text-decoration:line-through;font-weight:400;margin-left:4px}
.qty{display:flex;align-items:center;gap:8px;margin-top:6px}
.qty button{width:30px;height:30px;border:1px solid var(--line);background:#fff;border-radius:var(--r-xs);font-weight:600;font-size:1rem;color:var(--ink-2)}
.qty button:hover{border-color:var(--n-400)}
.qty span{min-width:20px;text-align:center;font-size:.9rem;font-weight:600}
.d-remove{margin-left:auto;background:none;color:var(--sub);font-size:.76rem;padding:6px;text-decoration:underline}
.d-remove:hover{color:var(--sale)}
.d-foot{border-top:1px solid var(--line);padding:var(--s-4) var(--s-5) calc(var(--s-4) + env(safe-area-inset-bottom))}
.d-total{display:flex;justify-content:space-between;font-weight:800;font-size:1.05rem;margin-bottom:4px}
.d-note{font-size:.75rem;color:var(--sub);margin-bottom:var(--s-3)}
.checkout{width:100%;background:var(--green);color:#fff;font-weight:700;font-size:1rem;padding:15px;border-radius:var(--r);transition:background .15s var(--ease)}
.checkout:hover{background:#087a45}
.d-secure{text-align:center;font-size:.72rem;color:var(--sub);margin-top:10px;display:flex;align-items:center;justify-content:center;gap:6px}

/* ---------- cookie consent ---------- */
.cookiebar{
  position:fixed;left:12px;right:12px;bottom:calc(12px + env(safe-area-inset-bottom));
  z-index:95;background:#fff;border:1px solid var(--n-300);border-radius:var(--r);
  box-shadow:var(--shadow-lift);padding:var(--s-4) var(--s-5);display:none;gap:var(--s-3);align-items:center;
  max-width:560px;margin:0 auto;
}
.cookiebar.show{display:flex}
@media(max-width:600px){.cookiebar{flex-direction:column;align-items:stretch;text-align:center}}
@media(max-width:700px){
  body.product-hard .cookiebar{
    position:static;
    margin:12px 14px;
    max-width:none;
  }
}
.cookiebar p{font-size:.81rem;color:var(--sub);line-height:1.55;flex:1}
.cookiebar a{color:var(--blue);font-weight:600;text-decoration:underline}
.cb-btns{display:flex;gap:8px;flex:0 0 auto}
@media(max-width:600px){.cb-btns{justify-content:center}}
.cb-accept{background:var(--blue);color:#fff;font-weight:600;font-size:.85rem;padding:10px 18px;border-radius:var(--r-sm)}
.cb-accept:hover{background:var(--blue-dark)}
.cb-decline{background:#fff;color:var(--sub);font-weight:600;font-size:.85rem;padding:10px 14px;border-radius:var(--r-sm);border:1px solid var(--n-300)}

/* ---------- legal pages ---------- */
.legal{max-width:720px;margin:0 auto;padding:clamp(28px,5vw,48px) var(--s-5) var(--s-16)}
.legal h1{font-size:clamp(1.5rem,4vw,2rem);margin-bottom:6px}
.legal .updated{color:var(--sub);font-size:.82rem;margin-bottom:var(--s-8)}
.legal h2{text-align:left;font-size:1.12rem;margin:var(--s-8) 0 10px}
.legal p,.legal li{color:var(--ink-2);font-size:.94rem;line-height:1.75;margin-bottom:var(--s-3);max-width:68ch}
.legal ul{padding-left:22px;margin-bottom:var(--s-3)}
.legal ul li{margin-bottom:6px}
.legal a{color:var(--blue);font-weight:600}
.legal a.atc{color:#fff}

/* ---------- toast ---------- */
.toast{position:fixed;bottom:calc(92px + env(safe-area-inset-bottom));left:50%;transform:translateX(-50%) translateY(16px);background:var(--n-900);color:#fff;padding:12px 22px;border-radius:var(--r-pill);font-size:.85rem;font-weight:500;opacity:0;transition:opacity .25s var(--ease),transform .25s var(--ease);z-index:100;pointer-events:none;max-width:90vw;text-align:center}
.toast.show{opacity:1;transform:translateX(-50%) translateY(0)}

/* ---------- motion + focus ---------- */
.reveal{opacity:0;transform:translateY(12px);transition:opacity .5s var(--ease),transform .5s var(--ease)}
.reveal.in{opacity:1;transform:none}
@media(prefers-reduced-motion:reduce){
  .reveal{opacity:1!important;transform:none!important}
  *{animation-duration:.01ms!important;transition-duration:.01ms!important}
  html{scroll-behavior:auto}
}

/* The scrolled header shrinks by 4px. That is a layout change, so it is NOT
   transitioned — animating padding forces layout on every frame of the tween.
   The snap is imperceptible; only the shadow (paint-only) fades in. */
header{transition:box-shadow .25s var(--ease)}
body.scrolled header{box-shadow:0 1px 0 var(--line),0 8px 22px -14px rgba(11,18,32,.3)}
body.scrolled header .hd{padding-block:8px}

/* soft aqua glow behind the hero product */
.hero-img{isolation:isolate}
.hero-img::before{content:"";position:absolute;inset:-8% -8% -12% -8%;z-index:-1;border-radius:50%;filter:blur(30px);
  background:radial-gradient(58% 58% at 62% 42%,rgba(6,182,212,.36),rgba(11,99,246,.24) 46%,transparent 72%)}

:where(a,button,summary,input):focus-visible{outline:2px solid var(--blue);outline-offset:3px;border-radius:var(--r-xs)}

.review,.box-item{transition:transform .18s var(--ease),box-shadow .18s var(--ease),border-color .18s var(--ease)}
.review:hover,.box-item:hover{transform:translateY(-2px);box-shadow:var(--shadow-lift);border-color:var(--n-300)}

/* ============================================================
   PRODUCT PAGE — HARD FREESTYLE
   Intentional visual departure while preserving existing JS hooks.
   ============================================================ */

body.product-hard{
  background:#f7f9fc;
}
.product-hard header{
  background:rgba(8,14,25,.82);
  border-bottom-color:rgba(255,255,255,.09);
}
.product-hard header .logo img{
  filter:none;
}
.product-hard .cartbtn,
.product-hard .navbtn{
  color:#fff;
}
.product-hard .cartbtn:hover,
.product-hard .navbtn:hover{
  background:rgba(255,255,255,.08);
}

/* Commerce hero becomes its own dark product stage */
.product-hard .hard-buy{
  max-width:none;
  width:100%;
  padding:clamp(24px,4vw,48px) max(20px,calc((100vw - 1180px)/2));
  grid-template-columns:minmax(0,1.1fr) minmax(390px,.9fr);
  gap:clamp(28px,5vw,68px);
  background:
    radial-gradient(circle at 15% 20%,rgba(23,107,220,.2),transparent 34%),
    linear-gradient(160deg,#08111f 0%,#0b1629 52%,#10233f 100%);
  color:#fff;
}
.product-hard .hard-buy .gallery{
  position:sticky;
  top:88px;
  align-self:start;
  isolation:isolate;
}
.product-hard .hard-buy .gallery::before{
  content:"";
  position:absolute;
  inset:10% -5% auto -5%;
  height:54%;
  z-index:-1;
  background:linear-gradient(115deg,rgba(23,107,220,.34),rgba(103,213,245,.18) 48%,transparent 72%);
  filter:blur(42px);
  opacity:.78;
}
.product-hard .hard-buy .gallery .main{
  padding:clamp(10px,1.4vw,16px);
  border-color:rgba(255,255,255,.13);
  border-radius:30px;
  overflow:hidden;
  background:
    linear-gradient(135deg,rgba(255,255,255,.13),rgba(255,255,255,.03) 36%,rgba(255,255,255,.09)),
    #0d192b;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.16),
    0 34px 76px -30px rgba(0,0,0,.88),
    0 14px 28px -24px rgba(105,185,255,.72);
}
.product-hard .hard-buy .gallery .main::after{
  content:"";
  position:absolute;
  inset:clamp(10px,1.4vw,16px);
  border-radius:22px;
  pointer-events:none;
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,.55),
    inset 0 -72px 92px -94px rgba(11,18,32,.5);
}
.product-hard .hard-buy .track{
  border-radius:22px;
  background:var(--stage-edge);
  box-shadow:inset 0 1px 0 rgba(255,255,255,.78);
}
.product-hard .hard-buy .track img{
  padding:clamp(4px,1vw,10px);
  filter:saturate(1.05) contrast(1.035);
}
.product-hard .hard-buy .track img.shot{
  padding:0;
  filter:saturate(1.03) contrast(1.04);
}
.product-hard .hard-buy .g-badge{
  top:calc(var(--s-3) + clamp(10px,1.4vw,16px));
  left:calc(var(--s-3) + clamp(10px,1.4vw,16px));
  background:rgba(197,44,62,.96);
  box-shadow:0 10px 20px -14px rgba(197,44,62,.9);
}
.product-hard .hard-buy .dots{
  right:calc(10px + clamp(10px,1.4vw,16px));
  bottom:calc(10px + clamp(10px,1.4vw,16px));
}
.product-hard .hard-buy .gallery-caption{
  color:#9cb2d0;
  margin-top:12px;
}
.product-hard .hard-buy .thumbs img{
  border-color:rgba(255,255,255,.13);
  background:#111d30;
  box-shadow:inset 0 1px 0 rgba(255,255,255,.08);
  padding:3px;
  opacity:.76;
  filter:saturate(.9) contrast(.98);
}
.product-hard .hard-buy .thumbs img:hover{
  border-color:rgba(255,255,255,.34);
  opacity:1;
}
.product-hard .hard-buy .thumbs img.active{
  border-color:#69b9ff;
  box-shadow:0 0 0 2px rgba(105,185,255,.2),0 14px 28px -22px rgba(105,185,255,.85);
  opacity:1;
  filter:none;
}
.product-hard .hard-buy .info{
  padding:clamp(4px,1vw,12px) 0;
}
.product-hard .hard-buy .pill{
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.12);
  color:#a9b9d0;
}
.product-hard .hard-buy .info h1{
  font-size:clamp(2rem,4.6vw,3.35rem);
  line-height:.98;
  letter-spacing:-.05em;
  max-width:12ch;
  margin:12px 0 14px;
}
.product-hard .hard-buy .sub-line{
  color:#9fb2cc;
  font-size:1.05rem;
  max-width:36ch;
}
.product-hard .hard-buy .rating{
  color:#93a8c3;
}
.product-hard .hard-buy .price{
  margin-top:20px;
  padding-top:18px;
  border-top:1px solid rgba(255,255,255,.1);
}
.product-hard .hard-buy .price .now{
  color:#fff;
  font-size:2.7rem;
}
.product-hard .hard-buy .price .was{
  color:#7388a6;
}
.product-hard .hard-buy .ship-note{
  color:#99e6be;
  margin:10px 0 20px;
}
.product-hard .hard-buy .ad-match-note{
  margin:-8px 0 12px;
  padding:8px 10px;
  border:1px solid rgba(105,185,255,.18);
  border-radius:14px;
  background:rgba(105,185,255,.07);
  color:#b9c9dc;
  font-size:.78rem;
  line-height:1.35;
}
.product-hard .hard-buy .swlabel{
  color:#91a5c0;
}
.product-hard .hard-buy .swlabel b{
  color:#fff;
}
.product-hard .hard-buy .swatches{
  padding-top:18px;
  border-top:1px solid rgba(255,255,255,.1);
}
.product-hard .hard-buy .atc[data-main-atc]{
  min-height:58px;
  border-radius:16px;
  font-size:1.08rem;
}
.cart-link{
  display:block;
  width:100%;
  margin:8px 0 var(--s-4);
  background:none;
  color:#9db2ce;
  font-weight:700;
  font-size:.86rem;
  text-decoration:underline;
  text-underline-offset:3px;
}
.cart-link:hover{color:#fff}
.product-hard .hard-buy .buy-proof{
  grid-template-columns:repeat(3,1fr);
  gap:1px;
  padding:0;
  background:rgba(255,255,255,.08);
  border-color:rgba(255,255,255,.08);
  overflow:hidden;
}
.product-hard .hard-buy .buy-proof div{
  background:rgba(255,255,255,.035);
  display:block;
  padding:14px;
}
.product-hard .hard-buy .buy-proof .ico{
  display:none;
}
.product-hard .hard-buy .buy-proof b{
  color:#fff;
  display:block;
  margin-bottom:4px;
  font-size:.82rem;
}
.product-hard .hard-buy .buy-proof p{
  color:#8ea3bf;
  font-size:.73rem;
}
.product-hard .hard-buy .hooks{
  border-top:1px solid rgba(255,255,255,.1);
  padding-top:12px;
}
.product-hard .hard-buy .hooks li{
  color:#a5b5cb;
}
.product-hard .hard-buy .hooks li b{
  color:#fff;
}
.product-hard .hard-buy .payrow{
  border-top-color:rgba(255,255,255,.1);
}
.product-hard .hard-buy .paylabel{
  color:#7388a6;
}

/* Current-model comparison */
.design-compare-section{
  scroll-margin-top:72px;
  background:
    radial-gradient(circle at 78% 18%,rgba(105,185,255,.16),transparent 34%),
    linear-gradient(180deg,#08111f 0%,#0b1629 100%);
  color:#fff;
  padding:clamp(34px,6vw,72px) 0;
}
.design-compare-wrap{
  max-width:980px;
}
.design-compare-copy{
  text-align:center;
  max-width:780px;
  margin:0 auto 22px;
}
.design-kicker{
  display:inline-flex;
  align-items:center;
  min-height:28px;
  padding:6px 12px;
  border:1px solid rgba(105,185,255,.32);
  border-radius:999px;
  background:rgba(105,185,255,.09);
  color:#67d5f5;
  font-size:.72rem;
  font-weight:800;
  letter-spacing:.14em;
  text-transform:uppercase;
}
.design-compare-copy h2{
  margin:12px 0 10px;
  font-size:clamp(2rem,5vw,3.2rem);
  line-height:1;
  letter-spacing:-.04em;
}
.design-compare-copy p,
.design-caption{
  color:#a8bad2;
  font-size:1.02rem;
  line-height:1.55;
}
.design-compare-copy p{
  margin:0 auto;
  max-width:680px;
}
.design-compare{
  --split:50%;
  position:relative;
  width:min(100%,720px);
  margin:0 auto;
  aspect-ratio:1/1;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.13);
  border-radius:26px;
  background:#eef7ff;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.72),
    0 34px 76px -34px rgba(0,0,0,.84),
    0 14px 32px -26px rgba(105,185,255,.72);
  user-select:none;
  touch-action:pan-y;
}
.design-compare img{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:contain;
  display:block;
  pointer-events:none;
}
.design-compare-before{
  position:absolute;
  inset:0;
  clip-path:inset(0 calc(100% - var(--split)) 0 0);
  background:#eef7ff;
}
.design-tag{
  position:absolute;
  top:18px;
  z-index:5;
  padding:8px 12px;
  border-radius:999px;
  background:rgba(8,17,31,.84);
  color:#fff;
  font-size:.75rem;
  line-height:1;
  font-weight:800;
  letter-spacing:.04em;
  backdrop-filter:blur(8px);
  -webkit-backdrop-filter:blur(8px);
}
.design-tag-before{left:18px}
.design-tag-after{right:18px}
.design-divider{
  position:absolute;
  z-index:4;
  top:0;
  bottom:0;
  left:var(--split);
  width:3px;
  transform:translateX(-50%);
  background:rgba(255,255,255,.96);
  box-shadow:0 0 0 1px rgba(8,17,31,.12),0 0 18px rgba(8,17,31,.28);
  pointer-events:none;
}
.design-handle{
  position:absolute;
  z-index:6;
  left:var(--split);
  top:50%;
  width:52px;
  height:52px;
  transform:translate(-50%,-50%);
  border:1px solid rgba(8,17,31,.13);
  border-radius:50%;
  background:#fff;
  color:#08111f;
  box-shadow:0 12px 28px rgba(0,0,0,.24);
  display:grid;
  place-items:center;
  pointer-events:none;
}
.design-handle::before{
  content:"↔";
  font-size:22px;
  line-height:1;
  font-weight:800;
}
.design-slider{
  position:absolute;
  z-index:10;
  inset:0;
  width:100%;
  height:100%;
  opacity:0;
  cursor:ew-resize;
}
.design-caption{
  max-width:780px;
  margin:18px auto 0;
  text-align:center;
}
.independent-note{
  max-width:760px;
  margin:12px auto 0;
  color:#7289a8;
  text-align:center;
  font-size:.82rem;
  line-height:1.55;
}
.design-benefits{
  display:flex;
  justify-content:center;
  flex-wrap:wrap;
  gap:10px;
  margin:16px auto 0;
}
.design-benefits span{
  border:1px solid rgba(255,255,255,.12);
  border-radius:999px;
  background:rgba(255,255,255,.06);
  color:#d7e5f6;
  padding:8px 12px;
  font-size:.84rem;
  font-weight:800;
}
@media(max-width:700px){
  .design-compare-section{
    padding-bottom:calc(108px + env(safe-area-inset-bottom));
  }
  .design-compare{
    width:min(100%,320px);
  }
  .design-caption{
    font-size:.94rem;
  }
  .design-benefits{
    display:none;
  }
}

/* High-contrast spec ticker */
.field-strip{
  padding:0;
  background:#176bdc;
  color:#fff;
  border:0;
}
.field-strip-inner{
  max-width:1180px;
  display:grid;
  grid-template-columns:repeat(6,1fr);
  padding-block:18px;
}
.field-strip-inner div{
  padding:0 18px;
  border-right:1px solid rgba(255,255,255,.22);
}
.field-strip-inner div:last-child{border-right:0}
.field-strip-inner span{
  display:block;
  font-size:.61rem;
  letter-spacing:.14em;
  font-weight:800;
  color:rgba(255,255,255,.66);
  margin-bottom:4px;
}
.field-strip-inner b{
  font-size:.9rem;
  letter-spacing:-.01em;
}

/* Big editorial story */
.hard-story{
  background:#eef3f8;
  border:0;
  padding:clamp(72px,10vw,128px) 0;
}
.hard-story-intro{
  max-width:930px;
  margin-bottom:clamp(46px,7vw,84px);
}
.hard-kicker{
  color:var(--blue);
  font-size:.72rem;
  font-weight:900;
  letter-spacing:.14em;
  text-transform:uppercase;
  margin-bottom:14px;
}
.hard-story-intro h2{
  text-align:left;
  font-size:clamp(2.7rem,7vw,5.8rem);
  line-height:.9;
  letter-spacing:-.065em;
  margin:0 0 28px;
}
.hard-story-intro h2 em{
  font-style:normal;
  color:var(--blue);
}
.hard-story-intro p{
  color:var(--sub);
  font-size:clamp(1rem,2vw,1.22rem);
  line-height:1.7;
  max-width:56ch;
}

.hard-scene{
  display:grid;
  grid-template-columns:1.15fr .85fr;
  border-radius:30px;
  overflow:hidden;
  background:#fff;
  border:1px solid var(--line);
  min-height:560px;
  margin-bottom:var(--s-5);
}
.hard-scene-media{
  position:relative;
  min-height:560px;
}
.hard-scene-media img{
  width:100%;height:100%;object-fit:cover;
}
.hard-caption{
  position:absolute;
  left:18px;
  bottom:18px;
  padding:8px 12px;
  border-radius:var(--r-pill);
  background:rgba(8,17,31,.78);
  color:#fff;
  font-size:.72rem;
  font-weight:700;
  backdrop-filter:blur(8px);
}
.hard-scene-copy{
  padding:clamp(34px,6vw,76px);
  display:flex;
  flex-direction:column;
  justify-content:center;
}
.hard-index{
  display:block;
  font-size:.66rem;
  font-weight:900;
  letter-spacing:.14em;
  color:var(--blue);
  margin-bottom:26px;
}
.hard-scene-copy h3,
.hard-panel h3,
.hard-pressure h3,
.hard-case h3{
  font-size:clamp(2rem,4.2vw,3.6rem);
  line-height:.98;
  letter-spacing:-.05em;
  margin-bottom:16px;
}
.hard-scene-copy>p,
.hard-panel p,
.hard-pressure-copy>p{
  color:var(--sub);
  line-height:1.7;
  font-size:.96rem;
}
.hard-microgrid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:1px;
  margin-top:34px;
  background:var(--line);
  border:1px solid var(--line);
  border-radius:16px;
  overflow:hidden;
}
.hard-microgrid span{
  padding:14px;
  background:#fff;
}
.hard-microgrid b,
.hard-microgrid small{
  display:block;
}
.hard-microgrid b{
  font-size:.78rem;
}
.hard-microgrid small{
  color:var(--sub);
  font-size:.67rem;
  margin-top:3px;
}

.hard-bento{
  display:grid;
  grid-template-columns:1.15fr .85fr;
  grid-template-rows:1fr 1fr;
  gap:var(--s-4);
  margin-bottom:var(--s-5);
}
.hard-panel{
  min-height:300px;
  border-radius:26px;
  border:1px solid var(--line);
  background:#fff;
  padding:clamp(26px,4vw,40px);
  display:flex;
  flex-direction:column;
  justify-content:space-between;
  overflow:hidden;
}
.hard-panel-battery{
  grid-row:1 / 3;
  min-height:620px;
  background:#0b1220;
  color:#fff;
  border-color:#0b1220;
}
.hard-panel-battery .hard-index{color:#7ca8e7}
.hard-panel-battery .i{color:#67d5f5}
.hard-panel-battery p{color:#94a9c4}
.hard-panel-top{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:20px;
}
.hard-panel-top .i{
  width:34px;height:34px;
}
.hard-bigstat{
  display:flex;
  align-items:flex-end;
  gap:14px;
  padding-top:28px;
  border-top:1px solid rgba(255,255,255,.12);
}
.hard-bigstat b{
  font-size:clamp(4rem,8vw,7rem);
  line-height:.75;
  letter-spacing:-.07em;
}
.hard-bigstat span{
  max-width:14ch;
  color:#8ea4c0;
  font-size:.8rem;
  line-height:1.35;
}
.hard-panel-nozzle{
  background:#176bdc;
  color:#fff;
  border-color:#176bdc;
}
.hard-panel-nozzle .hard-index{color:rgba(255,255,255,.62)}
.hard-panel-nozzle .i{color:#fff}
.hard-panel-nozzle p{color:rgba(255,255,255,.74)}
.hard-spray{
  display:grid;
  grid-template-columns:repeat(6,1fr);
  gap:6px;
  margin:26px 0 18px;
}
.hard-spray span{
  aspect-ratio:1/1;
  min-width:0;
  display:grid;
  place-items:center;
  border-radius:50%;
  border:1px solid rgba(255,255,255,.3);
  background:rgba(255,255,255,.08);
  font-size:.66rem;
  font-weight:800;
}
.hard-panel-angle{
  position:relative;
}
.angle-mark{
  font-size:clamp(4.6rem,8vw,7rem);
  font-weight:900;
  letter-spacing:-.08em;
  line-height:.8;
  color:#dbe8f9;
  margin:10px 0 22px;
}

.hard-pressure{
  display:grid;
  grid-template-columns:.85fr 1.15fr;
  min-height:520px;
  border-radius:30px;
  overflow:hidden;
  border:1px solid var(--line);
  background:#fff;
  margin-bottom:var(--s-5);
}
.hard-pressure-copy{
  padding:clamp(34px,5vw,64px);
  display:flex;
  flex-direction:column;
  justify-content:center;
}
.hard-pressure-stats{
  display:flex;
  gap:28px;
  margin-top:32px;
}
.hard-pressure-stats div{
  display:flex;
  align-items:baseline;
  gap:6px;
}
.hard-pressure-stats b{
  font-size:clamp(2.7rem,5vw,4.2rem);
  letter-spacing:-.06em;
}
.hard-pressure-stats span{
  color:var(--sub);
  font-size:.72rem;
  font-weight:800;
}
.hard-pressure-media{
  position:relative;
  overflow:hidden;
}
.hard-pressure-media img{
  width:100%;height:100%;object-fit:cover;
}
.hard-pressure-line{
  position:absolute;
  left:0;right:0;bottom:0;
  height:5px;
  background:linear-gradient(90deg,#176bdc 0 38%,#67d5f5 38% 62%,#fff 62% 100%);
}

.hard-case{
  display:grid;
  grid-template-columns:1.1fr 1fr auto;
  gap:clamp(24px,5vw,64px);
  align-items:end;
  background:#fff;
  border:1px solid var(--line);
  border-radius:24px;
  padding:clamp(28px,4vw,44px);
}
.hard-case h3{
  margin:0;
  font-size:clamp(1.7rem,3.6vw,2.8rem);
}
.hard-case p{
  color:var(--sub);
  line-height:1.65;
}
.hard-case a{
  color:var(--blue);
  font-weight:800;
  white-space:nowrap;
}

@media(max-width:980px){
  .product-hard .hard-buy{
    grid-template-columns:1fr;
  }
  .product-hard .hard-buy .gallery{
    position:relative;
    top:auto;
  }
  .field-strip-inner{
    grid-template-columns:repeat(3,1fr);
    row-gap:16px;
  }
  .field-strip-inner div:nth-child(3){border-right:0}
  .hard-scene,
  .hard-pressure{
    grid-template-columns:1fr;
  }
  .hard-scene-media{
    min-height:420px;
  }
  .hard-bento{
    grid-template-columns:1fr;
    grid-template-rows:auto;
  }
  .hard-panel-battery{
    grid-row:auto;
    min-height:480px;
  }
  .hard-case{
    grid-template-columns:1fr;
    align-items:start;
  }
}
@media(max-width:700px){
  .product-hard .hard-buy{
    padding:14px 14px 18px;
    gap:16px;
  }
  .product-hard .hard-buy .gallery .main{
    padding:8px;
    border-radius:22px;
  }
  .product-hard .hard-buy .gallery .main::after{
    inset:8px;
    border-radius:16px;
  }
  .product-hard .hard-buy .track{
    border-radius:16px;
  }
  .product-hard .hard-buy .track img{
    height:clamp(238px,64vw,286px);
    padding:5px;
  }
  .product-hard .hard-buy .track img.shot{
    height:clamp(238px,64vw,286px);
    padding:0;
  }
  .product-hard .hard-buy .g-badge{
    top:16px;
    left:16px;
    font-size:.65rem;
  }
  .product-hard .hard-buy .dots{
    right:16px;
    bottom:16px;
    padding:5px 8px;
  }
  .product-hard .hard-buy .pill{
    margin-bottom:8px;
    font-size:.63rem;
    padding:5px 9px;
  }
  .product-hard .hard-buy .info h1{
    max-width:none;
    font-size:clamp(1.72rem,8.1vw,2.04rem);
    line-height:1.03;
    margin-bottom:7px;
  }
  .product-hard .hard-buy .sub-line{
    margin-bottom:8px;
    font-size:.84rem;
  }
  .product-hard .hard-buy .rating{
    margin-bottom:8px;
    font-size:.78rem;
  }
  .product-hard .hard-buy .price{
    margin:8px 0 8px;
  }
  .product-hard .hard-buy .price .now{
    font-size:1.92rem;
  }
  .product-hard .hard-buy .ship-note{
    margin:4px 0 10px;
    font-size:.78rem;
  }
  .product-hard .hard-buy .ad-match-note{
    display:none;
  }
  .product-hard .hard-buy .swatches{
    padding-top:10px;
    margin-bottom:10px;
  }
  .product-hard .hard-buy .swlabel{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:8px;
    font-size:.84rem;
    margin-bottom:10px;
  }
  .product-hard .hard-buy .swrow{
    justify-content:space-between;
    gap:8px;
  }
  .product-hard .hard-buy .sw{
    width:42px;
    height:42px;
  }
  .product-hard .hard-buy .atc[data-main-atc]{
    display:none;
  }
  .product-hard .hard-buy .cart-link{
    display:none;
  }
  .product-hard .hard-buy .buy-proof{
    grid-template-columns:repeat(3,1fr);
    border-radius:14px;
  }
  .product-hard .hard-buy .buy-proof div{
    padding:10px 8px;
  }
  .product-hard .hard-buy .buy-proof b{
    font-size:.68rem;
    line-height:1.2;
  }
  .product-hard .hard-buy .buy-proof p{
    display:none;
  }
  .product-hard .hard-buy .buy-proof div:nth-child(2),
  .product-hard .hard-buy .buy-proof div:nth-child(3){
    display:block;
  }
  .product-hard .hard-buy .hooks{
    gap:7px;
    margin-top:12px;
  }
  .product-hard .hard-buy .hooks li{
    font-size:.82rem;
    line-height:1.4;
  }
  .field-strip-inner{
    grid-template-columns:repeat(2,1fr);
  }
  .field-strip-inner div{
    border-right:1px solid rgba(255,255,255,.2);
  }
  .field-strip-inner div:nth-child(2n){border-right:0}
  .hard-story{
    padding:64px 0;
  }
  .hard-story-intro h2{
    font-size:clamp(2.6rem,13vw,4rem);
  }
  .hard-scene{
    border-radius:22px;
    min-height:0;
  }
  .hard-scene-media{
    min-height:320px;
  }
  .hard-scene-copy{
    padding:26px 22px 30px;
  }
  .hard-microgrid{
    grid-template-columns:1fr;
  }
  .hard-panel{
    border-radius:20px;
    min-height:280px;
  }
  .hard-panel-battery{
    min-height:430px;
  }
  .hard-spray{
    grid-template-columns:repeat(3,1fr);
  }
  .hard-pressure{
    border-radius:22px;
  }
  .hard-pressure-media{
    min-height:300px;
    order:-1;
  }
  .hard-pressure-copy{
    padding:28px 22px 32px;
  }
}

/* ============================================================
   HOME PAGE — HARD FREESTYLE
   ============================================================ */

body.home-hard{
  background:#f4f7fb;
}

/* dark glass header */
.home-hard header{
  background:rgba(8,15,27,.82);
  border-bottom-color:rgba(255,255,255,.08);
}
.home-hard header .logo img{
  filter:brightness(0) invert(1);
}
.home-hard nav.mainnav{
  color:#9fb0c7;
}
.home-hard nav.mainnav a:hover{
  color:#fff;
}
.home-hard .cartbtn,
.home-hard .navbtn{
  color:#fff;
}
.home-hard .cartbtn:hover,
.home-hard .navbtn:hover{
  background:rgba(255,255,255,.08);
}
.home-hard .hd-cta{
  background:#fff;
  color:#0b1220;
}
.home-hard .hd-cta:hover{
  background:#dfe9f7;
}

/* Launch hero */
.home-launch{
  padding:0;
  background:
    radial-gradient(circle at 20% 15%,rgba(23,107,220,.28),transparent 32%),
    radial-gradient(circle at 78% 55%,rgba(13,127,153,.16),transparent 34%),
    linear-gradient(160deg,#08111f 0%,#0c182b 54%,#102746 100%);
  color:#fff;
  overflow:hidden;
}
.launch-grid{
  min-height:clamp(620px,82vh,860px);
  display:grid;
  grid-template-columns:1.02fr .98fr;
  gap:clamp(28px,6vw,84px);
  align-items:center;
  padding-top:clamp(44px,7vw,88px);
  padding-bottom:clamp(48px,7vw,86px);
}
.launch-copy{
  position:relative;
  z-index:2;
}
.launch-rating{
  display:flex;
  align-items:center;
  gap:10px;
  color:#9fb1c9;
  font-size:.83rem;
  margin-bottom:24px;
}
.launch-kicker{
  color:#69c9ed;
  font-size:.72rem;
  font-weight:900;
  letter-spacing:.15em;
  text-transform:uppercase;
  margin-bottom:18px;
}
.launch-copy h1{
  font-size:clamp(3.1rem,7.4vw,6.4rem);
  line-height:.86;
  letter-spacing:-.07em;
  margin:0 0 28px;
  max-width:9.5ch;
}
.launch-copy h1 em{
  font-style:normal;
  color:#67d5f5;
}
.launch-lead{
  color:#aebfd5;
  font-size:clamp(1rem,2vw,1.18rem);
  line-height:1.72;
  max-width:54ch;
}
.launch-actions{
  display:flex;
  align-items:center;
  gap:20px;
  margin-top:30px;
}
.launch-actions .atc{
  max-width:320px;
}
.launch-link{
  color:#dbe7f6;
  font-size:.88rem;
  font-weight:700;
  white-space:nowrap;
}
.launch-link span{
  display:inline-block;
  transition:transform .15s var(--ease);
}
.launch-link:hover span{transform:translate(3px,3px)}
.launch-proof{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:1px;
  margin-top:34px;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.1);
  border-radius:16px;
  overflow:hidden;
  max-width:650px;
}
.launch-proof div{
  background:rgba(255,255,255,.04);
  padding:14px 16px;
}
.launch-proof span{
  display:block;
  color:#6f88a8;
  font-size:.61rem;
  font-weight:900;
  letter-spacing:.12em;
  margin-bottom:4px;
}
.launch-proof b{
  font-size:.9rem;
}
.launch-visual{
  position:relative;
  min-height:560px;
}
.launch-image{
  position:absolute;
  inset:42px 0 22px 26px;
  border-radius:30px;
  overflow:hidden;
  box-shadow:0 38px 90px -34px rgba(0,0,0,.82);
}
.launch-image img{
  width:100%;
  height:100%;
  object-fit:cover;
}
.launch-image:after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(to top,rgba(4,9,18,.42),transparent 48%);
  pointer-events:none;
}
.launch-float{
  position:absolute;
  z-index:3;
  background:rgba(255,255,255,.9);
  color:#0b1220;
  border:1px solid rgba(255,255,255,.6);
  box-shadow:0 20px 40px -20px rgba(0,0,0,.45);
  backdrop-filter:blur(12px);
}
.launch-float-a{
  left:-8px;
  top:18px;
  display:grid;
  grid-template-columns:42px 1fr;
  gap:10px;
  align-items:center;
  padding:12px 14px;
  border-radius:16px;
  max-width:230px;
}
.launch-float-icon{
  width:42px;height:42px;border-radius:12px;
  display:grid;place-items:center;
  background:#edf4ff;color:#0f4fa8;
}
.launch-float-a b,
.launch-float-a small{
  display:block;
}
.launch-float-a b{font-size:.82rem}
.launch-float-a small{font-size:.68rem;color:#627188;line-height:1.35;margin-top:2px}
.launch-float-b{
  right:-12px;
  bottom:42px;
  padding:14px 17px;
  border-radius:18px;
}
.launch-float-b b{
  display:block;
  font-size:2.1rem;
  line-height:.9;
  letter-spacing:-.06em;
}
.launch-float-b span{
  display:block;
  color:#607088;
  font-size:.69rem;
  margin-top:5px;
}
.launch-watermark{
  position:absolute;
  right:-18px;
  top:-5px;
  font-size:clamp(4rem,8vw,8rem);
  line-height:.8;
  font-weight:900;
  letter-spacing:-.08em;
  color:rgba(255,255,255,.035);
  white-space:nowrap;
}

/* ticker */
.home-ticker{
  padding:0;
  background:#176bdc;
  color:#fff;
  overflow:hidden;
}
.ticker-track{
  max-width:1400px;
  margin:0 auto;
  padding:14px 24px;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:18px;
  flex-wrap:wrap;
  font-size:.74rem;
  font-weight:800;
  letter-spacing:.035em;
}
.ticker-track i{
  opacity:.45;
  font-style:normal;
}

/* places rail */
.home-places{
  padding:26px 0;
  background:#fff;
  border-bottom:1px solid var(--line);
}
.places-grid{
  display:grid;
  grid-template-columns:.7fr 1.3fr;
  align-items:center;
  gap:28px;
}
.places-title{
  font-size:.74rem;
  color:var(--sub);
  font-weight:800;
  letter-spacing:.06em;
  text-transform:uppercase;
}
.places-list{
  display:flex;
  justify-content:flex-end;
  gap:10px;
  flex-wrap:wrap;
}
.places-list span{
  border:1px solid var(--line);
  background:var(--n-25);
  padding:7px 10px;
  border-radius:var(--r-pill);
  font-size:.72rem;
  font-weight:700;
  color:var(--n-700);
}

/* Why */
.home-why-hard{
  background:#eef3f8;
  border-bottom:1px solid var(--line);
  padding:clamp(72px,10vw,126px) 0;
}
.why-hard-head{
  display:grid;
  grid-template-columns:1.15fr .65fr;
  gap:clamp(28px,6vw,80px);
  align-items:end;
  margin-bottom:clamp(40px,6vw,72px);
}
.hard-kicker-home{
  color:var(--blue);
  text-transform:uppercase;
  font-weight:900;
  font-size:.7rem;
  letter-spacing:.14em;
  margin-bottom:14px;
}
.why-hard-head h2,
.kit-hard-head h2{
  text-align:left;
  margin:0;
  font-size:clamp(2.5rem,6vw,5rem);
  line-height:.92;
  letter-spacing:-.06em;
}
.why-hard-head h2 em{
  color:var(--blue);
  font-style:normal;
}
.why-hard-head>p,
.kit-hard-head>p{
  color:var(--sub);
  line-height:1.72;
}
.why-hard-grid{
  display:grid;
  grid-template-columns:1.18fr .82fr;
  grid-template-rows:1fr 1fr;
  gap:16px;
}
.why-hard-card{
  border-radius:28px;
  overflow:hidden;
  border:1px solid var(--line);
  background:#fff;
}
.why-hard-main{
  grid-row:1/3;
  display:flex;
  flex-direction:column;
}
.why-hard-media{
  position:relative;
  min-height:360px;
}
.why-hard-media img{
  width:100%;height:100%;object-fit:cover;
}
.why-hard-badge{
  position:absolute;
  left:16px;bottom:16px;
  background:rgba(8,15,27,.8);
  color:#fff;
  border-radius:var(--r-pill);
  padding:7px 10px;
  font-size:.66rem;
  font-weight:800;
  letter-spacing:.08em;
}
.why-hard-copy{
  padding:clamp(24px,4vw,38px);
}
.why-hard-index{
  display:block;
  color:var(--blue);
  font-size:.68rem;
  font-weight:900;
  letter-spacing:.1em;
  margin-bottom:20px;
}
.why-hard-copy h3,
.why-hard-dark h3,
.why-hard-blue h3{
  font-size:clamp(1.8rem,3.8vw,3.1rem);
  line-height:.98;
  letter-spacing:-.05em;
  margin-bottom:12px;
}
.why-hard-copy p,
.why-hard-dark p,
.why-hard-blue p{
  line-height:1.65;
  font-size:.92rem;
}
.why-hard-copy p{color:var(--sub)}
.why-hard-mini{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:1px;
  margin-top:26px;
  border:1px solid var(--line);
  background:var(--line);
  border-radius:14px;
  overflow:hidden;
}
.why-hard-mini span{
  background:#fff;
  padding:12px;
}
.why-hard-mini b,
.why-hard-mini small{
  display:block;
}
.why-hard-mini b{font-size:.76rem}
.why-hard-mini small{font-size:.67rem;color:var(--sub);margin-top:2px}
.why-hard-dark,
.why-hard-blue{
  padding:clamp(24px,4vw,36px);
  display:flex;
  flex-direction:column;
  justify-content:space-between;
  min-height:285px;
}
.why-hard-dark{
  background:#0b1220;
  border-color:#0b1220;
  color:#fff;
}
.why-hard-blue{
  background:#176bdc;
  border-color:#176bdc;
  color:#fff;
}
.why-hard-top{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  font-size:.66rem;
  font-weight:900;
  letter-spacing:.1em;
}
.why-hard-dark .why-hard-top{color:#7893b5}
.why-hard-blue .why-hard-top{color:rgba(255,255,255,.62)}
.why-hard-dark .i,
.why-hard-blue .i{color:#fff}
.why-hard-dark p{color:#91a5bf}
.why-hard-blue p{color:rgba(255,255,255,.76)}
.why-hard-number{
  font-size:clamp(4.5rem,8vw,7rem);
  line-height:.72;
  font-weight:900;
  letter-spacing:-.08em;
  color:#67d5f5;
  margin-bottom:24px;
}
.why-spray-dots{
  display:grid;
  grid-template-columns:repeat(6,1fr);
  gap:6px;
  margin:22px 0;
}
.why-spray-dots span{
  aspect-ratio:1/1;
  min-width:0;
  display:grid;
  place-items:center;
  border-radius:50%;
  border:1px solid rgba(255,255,255,.28);
  background:rgba(255,255,255,.08);
  font-size:.64rem;
  font-weight:800;
}

/* Kit showcase */
.home-kit-hard{
  background:#0b1220;
  color:#fff;
  padding:clamp(72px,10vw,124px) 0;
}
.kit-hard-head{
  display:grid;
  grid-template-columns:1.1fr .7fr;
  gap:clamp(28px,6vw,84px);
  align-items:end;
  margin-bottom:clamp(42px,6vw,72px);
}
.kit-hard-head .hard-kicker-home{color:#67d5f5}
.kit-hard-head>p{color:#91a5bf}
.kit-hard-stage{
  display:grid;
  grid-template-columns:1.12fr .88fr;
  border:1px solid rgba(255,255,255,.1);
  border-radius:30px;
  overflow:hidden;
  background:#111c2d;
}
.kit-hard-image{
  position:relative;
  min-height:620px;
  background:var(--stage-edge);
}
.kit-hard-image img{
  width:100%;
  height:100%;
  object-fit:contain;
}
.kit-orbit{
  position:absolute;
  background:rgba(8,15,27,.82);
  color:#fff;
  padding:8px 11px;
  border-radius:var(--r-pill);
  font-size:.69rem;
  font-weight:800;
  backdrop-filter:blur(8px);
}
.kit-orbit-a{left:18px;top:18px}
.kit-orbit-b{right:18px;top:42%}
.kit-orbit-c{left:22%;bottom:18px}
.kit-hard-buy{
  padding:clamp(32px,5vw,60px);
  display:flex;
  flex-direction:column;
  justify-content:center;
}
.kit-hard-label{
  color:#67d5f5;
  font-size:.7rem;
  font-weight:900;
  letter-spacing:.13em;
  text-transform:uppercase;
  margin-bottom:16px;
}
.kit-hard-buy h3{
  font-size:clamp(2rem,4.3vw,3.65rem);
  line-height:.96;
  letter-spacing:-.055em;
  margin-bottom:20px;
}
.kit-hard-buy .rating{color:#91a5bf}
.kit-hard-buy .price{
  margin:24px 0 22px;
}
.kit-hard-buy .price .now{color:#fff;font-size:2.6rem}
.kit-hard-buy .price .was{color:#6f819c}
.kit-hard-stats{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:1px;
  background:rgba(255,255,255,.1);
  border:1px solid rgba(255,255,255,.1);
  border-radius:15px;
  overflow:hidden;
  margin-bottom:22px;
}
.kit-hard-stats div{
  background:rgba(255,255,255,.035);
  padding:14px;
}
.kit-hard-stats b,
.kit-hard-stats span{display:block}
.kit-hard-stats b{
  font-size:1.45rem;
  letter-spacing:-.04em;
}
.kit-hard-stats span{
  color:#8196b2;
  font-size:.67rem;
  margin-top:2px;
}
.kit-hard-note{
  display:flex;
  gap:18px;
  flex-wrap:wrap;
  margin-top:18px;
  color:#8298b5;
  font-size:.73rem;
}
.kit-hard-note span{
  display:flex;align-items:center;gap:6px;
}
.kit-hard-note .i{width:15px;height:15px}

/* keep remaining old sections feeling coherent */
.home-hard section.alt{
  background:#f2f5f9;
}
.home-hard .faq details{
  background:#fff;
}
.home-hard .guarantee{
  border-radius:24px;
}
.home-hard .final{
  background:
    radial-gradient(circle at 70% 0%,rgba(23,107,220,.25),transparent 35%),
    #0b1220;
}

@media(max-width:900px){
  .launch-grid{
    grid-template-columns:1fr;
    min-height:auto;
  }
  .launch-copy h1{max-width:none}
  .launch-visual{min-height:520px}
  .places-grid,
  .why-hard-head,
  .kit-hard-head{
    grid-template-columns:1fr;
  }
  .places-list{justify-content:flex-start}
  .why-hard-grid{
    grid-template-columns:1fr;
    grid-template-rows:auto;
  }
  .why-hard-main{grid-row:auto}
  .kit-hard-stage{
    grid-template-columns:1fr;
  }
  .kit-hard-image{min-height:500px}
}
@media(max-width:620px){
  .launch-grid{
    padding-top:42px;
    padding-bottom:46px;
  }
  .launch-copy h1{
    font-size:clamp(3rem,16vw,4.65rem);
  }
  .launch-actions{
    align-items:stretch;
    flex-direction:column;
  }
  .launch-actions .atc{max-width:none}
  .launch-proof{
    grid-template-columns:1fr;
  }
  .launch-visual{
    min-height:410px;
  }
  .launch-image{
    inset:36px 0 10px 0;
    border-radius:22px;
  }
  .launch-float-a{
    left:8px;
  }
  .launch-float-b{
    right:8px;
    bottom:18px;
  }
  .ticker-track{
    justify-content:flex-start;
    flex-wrap:nowrap;
    overflow-x:auto;
    scrollbar-width:none;
  }
  .ticker-track::-webkit-scrollbar{display:none}
  .home-why-hard,
  .home-kit-hard{
    padding:64px 0;
  }
  .why-hard-head h2,
  .kit-hard-head h2{
    font-size:clamp(2.5rem,13vw,4rem);
  }
  .why-hard-card{
    border-radius:20px;
  }
  .why-hard-media{
    min-height:280px;
  }
  .why-hard-mini{
    grid-template-columns:1fr;
  }
  .why-spray-dots{
    grid-template-columns:repeat(3,1fr);
  }
  .kit-hard-stage{
    border-radius:22px;
  }
  .kit-hard-image{
    min-height:360px;
  }
}


/* ============================================================
   WHOLE-SITE FINISH — GO HAM PASS
   One stylesheet for home, product, policy, confirmation, drawers and shared UI.
   ============================================================ */

/* ---------- shared chrome ---------- */
body.home-hard header,
body.product-hard header,
body.policy-page header,
body.thanks-page header{
  color:#fff;
}
body.policy-page header,
body.thanks-page header{
  background:rgba(8,15,27,.9);
  border-bottom-color:rgba(255,255,255,.08);
}
body.policy-page header .logo img,
body.thanks-page header .logo img{filter:brightness(0) invert(1)}
body.policy-page .cartbtn,
body.policy-page .navbtn,
body.thanks-page .cartbtn,
body.thanks-page .navbtn{color:#fff}
body.policy-page .hd-cta{background:#fff;color:var(--n-900)}
body.policy-page .hd-cta:hover{background:#dfe9f7}

/* ---------- make the still-original product sections feel authored ---------- */
.product-hard .lifescenes{
  max-width:1120px;
  grid-template-columns:repeat(12,1fr);
  gap:14px;
}
.product-hard .lifescene{
  grid-column:span 4;
  position:relative;
  min-width:0;
  border:1px solid var(--line);
  border-radius:22px;
  overflow:hidden;
  background:#fff;
}
.product-hard .lifescene:nth-child(1),
.product-hard .lifescene:nth-child(4){grid-column:span 7}
.product-hard .lifescene:nth-child(2),
.product-hard .lifescene:nth-child(5){grid-column:span 5}
.product-hard .lifescene:nth-child(3),
.product-hard .lifescene:nth-child(6){grid-column:span 6}
.product-hard .lifescene img{
  border:0;border-radius:0;aspect-ratio:16/10;
  transition:transform .55s var(--ease);
}
.product-hard .lifescene:hover img{transform:scale(1.025)}
.product-hard .lifescene figcaption{
  margin:0;padding:16px 18px 18px;max-width:none;
}
.product-hard .lifescene figcaption b{font-size:1rem;margin-bottom:2px}

.product-hard .ledger-blue{
  max-width:1060px;
  background:#0b1220;
  color:#fff;
  padding:clamp(28px,5vw,56px);
  border-radius:28px;
  box-shadow:0 34px 80px -48px rgba(11,18,32,.7);
}
.product-hard .ledger-blue .cmp-head h2,
.product-hard .ledger-blue .cmp-head .lead,
.product-hard .ledger-blue .compare-note b{color:#fff}
.product-hard .ledger-blue .cmp-head .lead,
.product-hard .ledger-blue .compare-note{color:#91a5bf}
.product-hard .ledger-blue .ledger-label{background:#0b1220;color:#d6e2f2}
.product-hard .ledger-blue .ledger thead th{color:#8fa3bf;border-bottom-color:#3a4a62}
.product-hard .ledger-blue .ledger tbody td{border-bottom-color:#233249}
.product-hard .ledger-blue .ledger tbody tr:hover td,
.product-hard .ledger-blue .ledger tbody tr:hover .ledger-label{background:#111e31}
.product-hard .ledger-blue .ledger tbody tr:hover .ledger-win{background:var(--blue-dark)}

.product-hard .box-grid{
  max-width:1080px;
  grid-template-columns:repeat(12,1fr);
  gap:12px;
}
.product-hard .box-item{
  grid-column:span 3;
  min-height:150px;
  align-items:flex-start;
  justify-content:space-between;
  text-align:left;
  padding:20px;
  border-radius:18px;
  font-size:.82rem;
  position:relative;
  overflow:hidden;
}
.product-hard .box-item:nth-child(1),
.product-hard .box-item:nth-child(4),
.product-hard .box-item:nth-child(10){grid-column:span 6}
.product-hard .box-item:nth-child(2),
.product-hard .box-item:nth-child(3){background:#0b1220;color:#fff;border-color:#0b1220}
.product-hard .box-item:nth-child(2) .ico,
.product-hard .box-item:nth-child(3) .ico{background:rgba(255,255,255,.1);color:#67d5f5}
.product-hard .box-item .ico{margin:0}

.product-hard .specs{
  max-width:980px;
  display:grid;
  grid-template-columns:repeat(2,1fr);
  border-radius:24px;
  background:#fff;
}
.product-hard .spec-row{
  display:block;
  min-height:150px;
  padding:24px;
  border-right:1px solid var(--line);
  border-bottom:1px solid var(--line);
}
.product-hard .spec-row:nth-child(2n){border-right:0}
.product-hard .spec-row:nth-last-child(-n+2){border-bottom:0}
.product-hard .spec-val{
  display:block;
  max-width:none;
  text-align:left;
  font-size:1.12rem;
  margin-top:22px;
  color:var(--blue-dark);
}

.product-hard .reviews{
  max-width:1080px;
  margin:0 auto;
  grid-template-columns:repeat(12,1fr);
  gap:14px;
}
.product-hard .review{grid-column:span 4;border-radius:20px;padding:24px}
.product-hard .review:nth-child(1){grid-column:span 8;background:#0b1220;border-color:#0b1220;color:#fff}
.product-hard .review:nth-child(1) p,
.product-hard .review:nth-child(1) .who{color:#a9b8cc}
.product-hard .review:nth-child(1) .who b{color:#fff}
.product-hard .review:nth-child(2){grid-column:span 4;background:var(--blue);border-color:var(--blue);color:#fff}
.product-hard .review:nth-child(2) p,
.product-hard .review:nth-child(2) .who,
.product-hard .review:nth-child(2) .who b{color:#fff}
.product-hard .review:nth-child(5){grid-column:span 6}
.product-hard .review:nth-child(6){grid-column:span 6}
.product-hard .review p{font-size:.94rem}

/* Shared FAQ: larger editorial accordions */
.home-hard .faq,
.product-hard .faq{max-width:900px}
.home-hard .faq details,
.product-hard .faq details{
  margin-bottom:0;
  border:0;
  border-top:1px solid var(--line);
  border-radius:0;
  background:transparent;
}
.home-hard .faq details:last-child,
.product-hard .faq details:last-child{border-bottom:1px solid var(--line)}
.home-hard .faq summary,
.product-hard .faq summary{
  padding:22px 4px;
  font-size:clamp(1rem,2vw,1.14rem);
  letter-spacing:-.015em;
}
.home-hard .faq details p,
.product-hard .faq details p{
  padding:0 48px 24px 4px;
  max-width:70ch;
  font-size:.94rem;
}

/* contact becomes a blue/white bento */
.home-hard .contact,
.product-hard .contact{max-width:1040px;gap:14px}
.home-hard .contact-card,
.product-hard .contact-card{
  background:#176bdc;
  border-color:#176bdc;
  color:#fff;
  min-height:100%;
  padding:clamp(28px,5vw,46px);
}
.home-hard .contact-card .ico,
.product-hard .contact-card .ico{background:rgba(255,255,255,.12);color:#fff}
.home-hard .contact-card p,
.product-hard .contact-card p,
.home-hard .contact-card .contact-when,
.product-hard .contact-card .contact-when{color:rgba(255,255,255,.74)}
.home-hard .contact-mail,
.product-hard .contact-mail{background:#fff;color:#0b1220}
.home-hard .help-item,
.product-hard .help-item{border-radius:18px;padding:20px}

/* guarantee becomes a statement rather than a little card */
.home-hard .guarantee,
.product-hard .guarantee{
  max-width:960px;
  display:grid;
  grid-template-columns:64px 1fr;
  text-align:left;
  column-gap:22px;
  align-items:center;
  padding:clamp(30px,5vw,50px);
  border-radius:24px;
  background:#e8f6ef;
  border-color:#bfdfce;
}
.home-hard .guarantee .badge,
.product-hard .guarantee .badge{grid-row:1 / span 2;margin:0;width:64px;height:64px;border-radius:18px;background:#fff}
.home-hard .guarantee h3,
.product-hard .guarantee h3{font-size:clamp(1.5rem,3vw,2.2rem);margin:0}
.home-hard .guarantee p,
.product-hard .guarantee p{margin:4px 0 0;max-width:65ch}

/* final CTA and footer */
.home-hard .final,
.product-hard .final{
  min-height:520px;
  display:flex;
  align-items:center;
  background:
    radial-gradient(circle at 20% 20%,rgba(23,107,220,.34),transparent 30%),
    radial-gradient(circle at 80% 80%,rgba(13,127,153,.18),transparent 32%),
    #08111f;
}
.home-hard .final h2,
.product-hard .final h2{
  font-size:clamp(2.6rem,7vw,5.8rem);
  line-height:.9;
  letter-spacing:-.06em;
  max-width:10ch;
  margin-left:auto;margin-right:auto;
}
.home-hard .final .lead,
.product-hard .final .lead{max-width:58ch}
.home-hard .final .atc,
.product-hard .final .atc{min-height:58px;border-radius:16px}

.home-hard footer,
.product-hard footer,
.policy-page footer,
.thanks-page footer{
  border-top:1px solid rgba(255,255,255,.08);
  padding-top:44px;
  padding-bottom:44px;
}

/* drawers/cookie carry the new harder geometry everywhere */
.navdrawer{border-radius:0 24px 24px 0;box-shadow:24px 0 70px -36px rgba(11,18,32,.65)}
.drawer{border-radius:24px 0 0 24px;box-shadow:-24px 0 70px -36px rgba(11,18,32,.65)}
.cookiebar{border-radius:18px}

/* ---------- policy pages ---------- */
body.policy-page{background:#edf2f7}
.policy-mast{
  position:relative;
  overflow:hidden;
  background:
    radial-gradient(circle at 74% 25%,rgba(23,107,220,.25),transparent 32%),
    linear-gradient(155deg,#08111f 0%,#0d1d34 65%,#12305a 120%);
  color:#fff;
  padding:clamp(64px,9vw,112px) 0 clamp(56px,8vw,96px);
}
.policy-mast:after{
  content:attr(data-code);
  position:absolute;
  right:-.04em;bottom:-.17em;
  font-size:clamp(7rem,20vw,17rem);
  font-weight:900;
  line-height:1;
  letter-spacing:-.09em;
  color:rgba(255,255,255,.035);
  pointer-events:none;
}
.policy-mast-grid{
  position:relative;z-index:1;
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:clamp(34px,7vw,90px);
  align-items:end;
}
.policy-eyebrow{
  color:#67d5f5;
  font-size:.7rem;
  font-weight:900;
  letter-spacing:.15em;
  text-transform:uppercase;
  margin-bottom:16px;
}
.policy-mast h1{
  font-size:clamp(3rem,8vw,6.5rem);
  line-height:.86;
  letter-spacing:-.07em;
  max-width:8ch;
}
.policy-mast-copy{
  color:#a7bad2;
  line-height:1.75;
  font-size:clamp(.96rem,2vw,1.08rem);
  max-width:48ch;
}
.policy-updated{
  display:inline-flex;
  margin-top:18px;
  padding:7px 10px;
  border:1px solid rgba(255,255,255,.14);
  border-radius:var(--r-pill);
  color:#8198b7;
  font-size:.7rem;
  font-weight:700;
}
.policy-facts{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:1px;
  border:1px solid rgba(255,255,255,.1);
  background:rgba(255,255,255,.08);
  border-radius:18px;
  overflow:hidden;
  margin-top:28px;
}
.policy-facts div{
  padding:14px;
  background:rgba(255,255,255,.035);
}
.policy-facts span{
  display:block;
  color:#7189aa;
  font-size:.6rem;
  letter-spacing:.12em;
  font-weight:900;
  text-transform:uppercase;
  margin-bottom:5px;
}
.policy-facts b{font-size:.84rem;color:#fff}

.policy-shell{
  max-width:1120px;
  display:grid;
  grid-template-columns:260px minmax(0,1fr);
  gap:clamp(34px,6vw,76px);
  padding-top:clamp(48px,7vw,80px);
  padding-bottom:clamp(64px,9vw,112px);
}
.policy-nav{
  align-self:start;
  position:sticky;
  top:96px;
}
.policy-nav-label{
  color:var(--n-400);
  font-size:.65rem;
  font-weight:900;
  letter-spacing:.13em;
  text-transform:uppercase;
  margin-bottom:12px;
}
.policy-nav a{
  display:block;
  border-top:1px solid var(--line);
  padding:10px 0;
  color:var(--n-600);
  font-size:.78rem;
  font-weight:600;
  line-height:1.35;
}
.policy-nav a:last-child{border-bottom:1px solid var(--line)}
.policy-nav a:hover{color:var(--blue)}
.policy-nav-card{
  margin-top:20px;
  padding:16px;
  background:#0b1220;
  color:#fff;
  border-radius:16px;
}
.policy-nav-card b{display:block;font-size:.88rem;margin-bottom:5px}
.policy-nav-card p{color:#8fa3bf;font-size:.72rem;line-height:1.5;margin-bottom:12px}
.policy-nav-card a{display:inline;color:#67d5f5;border:0;padding:0;font-size:.75rem}

.policy-article{min-width:0}
.policy-block{
  background:#fff;
  border:1px solid var(--line);
  border-radius:20px;
  padding:clamp(24px,4vw,38px);
  margin-bottom:14px;
}
.policy-block h2{
  text-align:left;
  margin:0 0 14px;
  font-size:clamp(1.2rem,2.4vw,1.6rem);
  letter-spacing:-.025em;
}
.policy-block p,
.policy-block li{
  color:var(--n-700);
  line-height:1.78;
  font-size:.93rem;
}
.policy-block p{margin-bottom:12px}
.policy-block p:last-child{margin-bottom:0}
.policy-block ul{padding-left:20px;display:grid;gap:8px}
.policy-block li{padding-left:3px}
.policy-block a{color:var(--blue);font-weight:700;text-decoration-thickness:1px;text-underline-offset:3px}
.policy-block:first-child{
  border-left:4px solid var(--blue);
}

/* ---------- thank-you page ---------- */
body.thanks-page{background:#08111f;color:#fff}
.thanks-main{
  min-height:calc(100vh - 70px);
  position:relative;
  overflow:hidden;
  background:
    radial-gradient(circle at 18% 18%,rgba(23,107,220,.28),transparent 30%),
    radial-gradient(circle at 86% 68%,rgba(10,122,71,.18),transparent 28%),
    #08111f;
  padding:clamp(56px,9vw,110px) 0;
}
.thanks-main:before{
  content:'CONFIRMED';
  position:absolute;
  right:-.05em;top:8%;
  color:rgba(255,255,255,.028);
  font-size:clamp(7rem,18vw,16rem);
  font-weight:900;
  line-height:.8;
  letter-spacing:-.09em;
  transform:rotate(90deg) translateX(44%);
  transform-origin:right top;
}
.thanks-grid{
  position:relative;z-index:1;
  display:grid;
  grid-template-columns:1fr .82fr;
  gap:clamp(36px,7vw,90px);
  align-items:center;
}
.thanks-check{
  width:68px;height:68px;
  display:grid;place-items:center;
  border-radius:20px;
  background:#dff7ea;
  color:var(--green);
  margin-bottom:26px;
  box-shadow:0 16px 40px -24px rgba(10,122,71,.7);
}
.thanks-check .i{width:36px;height:36px}
.thanks-kicker{color:#67d5f5;font-size:.7rem;font-weight:900;letter-spacing:.15em;text-transform:uppercase;margin-bottom:14px}
.thanks-copy h1{
  font-size:clamp(3rem,8vw,6.5rem);
  line-height:.86;
  letter-spacing:-.07em;
  max-width:8ch;
  margin-bottom:26px;
}
.thanks-lead{color:#a7bad2;max-width:56ch;line-height:1.75;font-size:1rem}
.thanks-meta{margin-top:18px;color:#7289a8;font-size:.78rem;line-height:1.6}
.thanks-order-card{
  display:grid;
  gap:10px;
  max-width:560px;
  margin-top:22px;
  padding:16px;
  border:1px solid rgba(255,255,255,.1);
  border-radius:18px;
  background:rgba(255,255,255,.05);
}
.thanks-order-card div{
  display:grid;
  grid-template-columns:120px 1fr;
  gap:12px;
  align-items:start;
}
.thanks-order-card span{
  color:#6f88a8;
  font-size:.7rem;
  font-weight:900;
  letter-spacing:.12em;
  text-transform:uppercase;
}
.thanks-order-card b{
  color:#fff;
  font-size:.88rem;
  line-height:1.45;
}
.thanks-actions{display:flex;align-items:center;gap:18px;margin-top:28px;flex-wrap:wrap}
.thanks-actions .atc{max-width:280px}
.thanks-mail{color:#8fa9c9;font-size:.78rem}
.thanks-mail a{color:#fff;font-weight:700}
.thanks-card{
  border:1px solid rgba(255,255,255,.1);
  background:rgba(255,255,255,.045);
  border-radius:26px;
  overflow:hidden;
  box-shadow:0 32px 80px -40px rgba(0,0,0,.8);
}
.thanks-card-head{padding:24px 26px;border-bottom:1px solid rgba(255,255,255,.1)}
.thanks-card-head span{font-size:.66rem;color:#6f88a8;font-weight:900;letter-spacing:.12em;text-transform:uppercase}
.thanks-card-head h2{font-size:1.4rem;text-align:left;margin:6px 0 0;color:#fff}
.thanks-steps{padding:8px 26px 20px}
.thanks-step{
  display:grid;
  grid-template-columns:44px 1fr auto;
  gap:14px;
  align-items:center;
  padding:18px 0;
  border-bottom:1px solid rgba(255,255,255,.08);
}
.thanks-step:last-child{border-bottom:0}
.thanks-step-icon{
  width:44px;height:44px;border-radius:13px;
  background:rgba(255,255,255,.07);
  color:#67d5f5;
  display:grid;place-items:center;
}
.thanks-step b{display:block;font-size:.88rem}
.thanks-step p{color:#8096b2;font-size:.72rem;line-height:1.45;margin-top:3px}
.thanks-step time{font-size:.69rem;color:#6e86a5;font-weight:700;white-space:nowrap}
.thanks-security{
  padding:18px 26px;
  background:rgba(10,122,71,.1);
  border-top:1px solid rgba(10,122,71,.25);
  color:#9ad7b9;
  font-size:.74rem;
  line-height:1.55;
}

@media(max-width:900px){
  .product-hard .lifescenes{grid-template-columns:repeat(2,1fr)}
  .product-hard .lifescene,
  .product-hard .lifescene:nth-child(n){grid-column:auto}
  .product-hard .box-grid{grid-template-columns:repeat(2,1fr)}
  .product-hard .box-item,
  .product-hard .box-item:nth-child(n){grid-column:auto}
  .product-hard .reviews{grid-template-columns:1fr 1fr}
  .product-hard .review,
  .product-hard .review:nth-child(n){grid-column:auto}
  .policy-mast-grid,.policy-shell,.thanks-grid{grid-template-columns:1fr}
  .policy-nav{position:relative;top:auto;display:none}
  .policy-mast h1,.thanks-copy h1{max-width:none}
}
@media(max-width:620px){
  .product-hard .lifescenes,
  .product-hard .box-grid,
  .product-hard .specs,
  .product-hard .reviews{grid-template-columns:1fr}
  .product-hard .spec-row{border-right:0}
  .product-hard .spec-row:nth-last-child(-n+2){border-bottom:1px solid var(--line)}
  .product-hard .spec-row:last-child{border-bottom:0}
  .home-hard .guarantee,
  .product-hard .guarantee{grid-template-columns:1fr;text-align:center}
  .home-hard .guarantee .badge,
  .product-hard .guarantee .badge{grid-row:auto;margin:0 auto 10px}
  .policy-mast{padding-top:52px}
  .policy-mast h1{font-size:clamp(3rem,16vw,4.7rem)}
  .policy-facts{grid-template-columns:1fr}
  .policy-shell{padding-top:34px}
  .policy-block{border-radius:16px;padding:22px}
  .thanks-main{padding-top:52px}
  .thanks-copy h1{font-size:clamp(3rem,16vw,4.7rem)}
  .thanks-order-card div{grid-template-columns:1fr;gap:3px}
  .thanks-actions{align-items:stretch;flex-direction:column}
  .thanks-actions .atc{max-width:none}
  .thanks-step{grid-template-columns:42px 1fr}
  .thanks-step time{grid-column:2}
}

/* Short conversion page */
.product-hard .short-proof,
.product-hard .compact-buy-info{
  padding:clamp(30px,5vw,56px) 0;
}
.proof-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:12px;
}
.proof-grid article,
.included-card,
.answer-card{
  background:#fff;
  border:1px solid var(--line);
  border-radius:18px;
  box-shadow:0 18px 44px -34px rgba(11,18,32,.32);
}
.proof-grid article{
  padding:18px;
}
.proof-grid b,
.included-card h2,
.answer-card h2{
  color:var(--ink);
}
.proof-grid b{
  display:block;
  font-size:1rem;
  margin-bottom:5px;
}
.proof-grid span{
  display:block;
  color:var(--sub);
  font-size:.9rem;
  line-height:1.5;
}
.compact-grid{
  display:grid;
  grid-template-columns:minmax(0,.9fr) minmax(0,1.1fr);
  gap:16px;
  align-items:start;
}
.included-card,
.answer-card{
  padding:22px;
}
.included-card h2,
.answer-card h2{
  text-align:left;
  margin-bottom:14px;
}
.included-card img{
  width:100%;
  max-height:260px;
  object-fit:contain;
  border-radius:14px;
  background:var(--stage-edge);
  margin-bottom:14px;
}
.included-note{
  color:#55657a;
  font-size:.86rem;
  line-height:1.55;
  margin:-2px 0 12px;
}
.included-card ul{
  list-style:none;
  display:grid;
  gap:8px;
}
.included-card li{
  position:relative;
  padding-left:22px;
  color:var(--ink-2);
  font-size:.94rem;
}
.included-card li::before{
  content:"";
  position:absolute;
  left:0;
  top:.45em;
  width:13px;
  height:9px;
  background:var(--green);
  clip-path:polygon(8% 54%,31% 78%,88% 16%,100% 29%,32% 96%,0 65%);
}
.answer-card details{
  border-top:1px solid var(--line);
  padding:13px 0;
}
.answer-card details:first-of-type{border-top:0}
.answer-card summary{
  cursor:pointer;
  font-weight:800;
  color:var(--ink);
}
.answer-card p{
  color:var(--sub);
  font-size:.92rem;
  line-height:1.55;
  margin-top:7px;
}
.product-hard .final{
  padding:clamp(42px,7vw,76px) 0;
}
@media(max-width:860px){
  .proof-grid{
    grid-template-columns:repeat(2,1fr);
  }
  .compact-grid{
    grid-template-columns:1fr;
  }
}
@media(max-width:700px){
  .product-hard .short-proof,
  .product-hard .compact-buy-info{
    padding:26px 0;
  }
  .short-proof h2,
  .compact-buy-info h2{
    font-size:1.35rem;
    margin-bottom:14px;
  }
  .proof-grid{
    grid-template-columns:1fr 1fr;
    gap:8px;
  }
  .proof-grid article{
    padding:13px;
    border-radius:14px;
  }
  .proof-grid b{
    font-size:.86rem;
  }
  .proof-grid span{
    font-size:.76rem;
    line-height:1.4;
  }
  .included-card,
  .answer-card{
    padding:14px;
    border-radius:16px;
  }
  .included-card img{
    max-height:138px;
    float:right;
    width:42%;
    margin:0 0 8px 12px;
  }
  .included-note{
    font-size:.8rem;
    margin:0 0 10px;
  }
  .included-card li,
  .answer-card p{
    font-size:.8rem;
  }
  .included-card ul{gap:6px}
  .included-card li{padding-left:18px}
  .answer-card summary{
    font-size:.86rem;
  }
  .answer-card details{padding:10px 0}
  .product-hard .final{
    padding:34px 0 38px;
  }
  .product-hard .final h2{
    font-size:clamp(2rem,10vw,2.75rem);
  }
  .product-hard .final .lead{
    margin-bottom:18px;
  }
}
