/* ============================================================
   AFINA — Hair VSL landing page
   Builds on assets/colors_and_type.css tokens.
   Three full-page "directions" toggled via [data-dir] on <html>:
     a = Editorial Light  (cream, premium, default)
     b = Bold Dark VSL    (ink ground, white serif, max urgency)
     c = Spa Clinical      (white, pine-green trust-forward)
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0;font-weight:500; }
img { display: block; max-width: 100%; }
button { font-family: inherit; cursor: pointer; }
a { color: inherit; text-decoration: none; }

:root {
  /* conversion button ramp - navy, matching afina.com's --action scale
     (names kept for backwards compatibility with the page overrides) */
  --grass-400: #31517A;
  --grass-500: #17304F;
  --grass-600: #0E2138;
  --hot:       #7E3B33;   /* urgency for countdown / "High" - brand clay */
  --hot-bg:    #F0E2DE;
}

/* ---------- DIRECTION THEMES ---------- */
[data-dir="a"] {           /* Editorial Light */
  --page:      var(--stone-100);
  --page-2:    var(--stone-200);
  --surface:   var(--afina-white);
  --ink:       var(--ink-800);
  --ink-soft:  var(--ink-600);
  --ink-faint: var(--ink-400);
  --line:      var(--stone-300);
  --hero-bg:   radial-gradient(120% 120% at 75% 10%, #FFFFFF 0%, #F1F5F9 55%, #E1EDF7 100%);
  --band:      var(--ink-900);     /* dark transition bands */
  --band-text: var(--stone-50);
  --cta:       var(--action);      /* proof / verify accent (checks, badges) */
  --cta-hover: var(--action-hover);
  --btn:       var(--action);      /* conversion button */
  --btn-hover: var(--action-hover);
  --btn-text:  var(--action-text);
  --display-color: var(--heading);
}
[data-dir="b"] {           /* Bold Dark VSL */
  --page:      #0B1729;
  --page-2:    #0E2138;
  --surface:   #132A47;
  --ink:       #F6F8FA;
  --ink-soft:  #A9BACD;
  --ink-faint: #7A8CA3;
  --line:      rgba(255,255,255,.12);
  --hero-bg:   radial-gradient(130% 120% at 72% 8%, #1B3A5E 0%, #132A47 60%, #0A1727 100%);
  --band:      #0A1727;
  --band-text: var(--stone-50);
  --cta:       var(--accent);
  --cta-hover: #B7D8EF;
  --btn:       var(--accent);
  --btn-hover: #B7D8EF;
  --btn-text:  var(--accent-contrast);
  --display-color: #FFFFFF;
}
[data-dir="c"] {           /* Spa Clinical */
  --page:      #FFFFFF;
  --page-2:    #F6F8FA;
  --surface:   #FFFFFF;
  --ink:       var(--ink-800);
  --ink-soft:  var(--ink-600);
  --ink-faint: var(--ink-400);
  --line:      #ECF0F4;
  --hero-bg:   radial-gradient(120% 120% at 70% 12%, #FFFFFF 0%, #F1F5F9 60%, #E1EDF7 100%);
  --band:      var(--pine-900);
  --band-text: var(--stone-50);
  --cta:       var(--pine-700);
  --cta-hover: var(--pine-900);
  --btn:       var(--pine-700);
  --btn-hover: var(--pine-900);
  --btn-text:  #FFFFFF;
  --display-color: var(--pine-900);
}

body {
  font-family: var(--font-sans);
  background: var(--page);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  line-height: var(--lh-body);
  transition: background .3s var(--ease), color .3s var(--ease);
}

.serif { font-family: var(--font-display); font-weight: 600; letter-spacing: -0.01em; line-height: 1.04; color: var(--display-color); }
.wrap { max-width: 1180px; margin: 0 auto; padding: 0 32px; }
.wrap--narrow { max-width: 940px; }

.eyebrow {
  font-size: 12px; font-weight: 600; letter-spacing: .16em; text-transform: uppercase;
  color: var(--ink-soft); display: inline-flex; align-items: center; gap: 12px;
}
.eyebrow::before, .eyebrow.center::after { content: ""; width: 30px; height: 2px; background: var(--accent); }
.eyebrow.center { justify-content: center; }
.rule { width: 60px; height: 3px; background: var(--accent); border: 0; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 12px;
  font-size: 16px; font-weight: 700; letter-spacing: .005em; border: 0; border-radius: var(--radius-pill);
  padding: 18px 34px; transition: transform var(--dur) var(--ease), background var(--dur), box-shadow var(--dur);
  white-space: nowrap; line-height: 1;
}
.btn--cta { background: var(--btn); color: var(--btn-text); font-weight: 800; box-shadow: 0 12px 28px -12px color-mix(in srgb, var(--btn) 80%, transparent); }
.btn--cta:hover { background: var(--btn-hover); transform: translateY(-2px); }
.btn--cta .arr { width: 30px; height: 30px; border-radius: 999px; background: color-mix(in srgb, var(--btn-text) 15%, transparent); display: inline-flex; align-items: center; justify-content: center; }
.btn--cta .arr svg { width: 16px; height: 16px; stroke: var(--btn-text); stroke-width: 2.6; fill: none; }
.btn--lg { font-size: 19px; padding: 22px 44px; }
.btn--block { width: 100%; }
.btn--ghost { background: transparent; color: var(--ink); border: 1.5px solid var(--line); }
.btn--ghost:hover { border-color: var(--ink); }

/* star rating */
.stars { display: inline-flex; align-items: center; gap: 2px; color: var(--star); }
.stars svg { width: 17px; height: 17px; fill: currentColor; }
.stars--sm svg { width: 14px; height: 14px; }

/* ============================================================
   ANNOUNCEMENT + HEADER
   ============================================================ */
.announce {
  background: var(--band); color: var(--band-text); text-align: center; font-size: 13px;
  letter-spacing: .03em; font-weight: 500; overflow: hidden; border-bottom: 1px solid var(--line);
}
.announce__track { display: flex; gap: 56px; white-space: nowrap; width: max-content; animation: marquee 28s linear infinite; padding: 11px 28px; }
.announce span { display: inline-flex; align-items: center; gap: 12px; }
.announce b { color: var(--accent); font-weight: 700; }
.announce .dot { width: 4px; height: 4px; border-radius: 999px; background: currentColor; opacity: .5; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

.header {
  position: sticky; top: 0; z-index: 50;
  background: color-mix(in srgb, var(--page) 86%, transparent);
  backdrop-filter: blur(12px); border-bottom: 1px solid var(--line);
}
.header__bar { display: flex; align-items: center; justify-content: space-between; height: 70px; gap: 24px; }
.header__logo img { height: 22px; }
[data-dir="b"] .header__logo img { filter: invert(1) brightness(1.6); }
.header__nav { display: flex; gap: 30px; align-items: center; }
.header__nav a { font-size: 13.5px; font-weight: 600; color: var(--ink-soft); transition: color var(--dur); }
.header__nav a:hover { color: var(--ink); }
.header__right { display: flex; align-items: center; gap: 18px; }
.header__phone { font-size: 13px; font-weight: 600; color: var(--ink-soft); display: inline-flex; align-items: center; gap: 7px; }
.header .btn { padding: 12px 22px; font-size: 14px; }
@media (max-width: 860px) { .header__nav, .header__phone { display: none; } }

/* ============================================================
   HERO
   ============================================================ */
.hero { background: var(--hero-bg); border-bottom: 1px solid var(--line); overflow: hidden; }
.hero__grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: center; padding: 60px 0 64px; }
.hero__rating { display: flex; align-items: center; gap: 12px; font-size: 13.5px; color: var(--ink-soft); margin-bottom: 22px; }
.hero__rating b { color: var(--ink); }
.hero__title { font-size: clamp(2.5rem, 4.6vw, 4.1rem); font-weight: 600; margin: 0; }
.hero__title .hl { position: relative; white-space: nowrap; }
.hero__title .hl::after { content: ""; position: absolute; left: -2px; right: -2px; bottom: .06em; height: .32em; background: var(--accent); opacity: .9; z-index: -1; }
.hero__sub { font-size: 18px; line-height: 1.6; color: var(--ink-soft); margin: 26px 0 0; max-width: 46ch;font-weight:500; }
.hero__cta { margin-top: 32px; display: flex; flex-direction: column; gap: 16px; align-items: flex-start; max-width: 440px; }
.hero__cta .btn { width: 100%; }
.hero__under { display: flex; align-items: center; gap: 18px; font-size: 13px; color: var(--ink-soft); flex-wrap: wrap; }
.hero__under span { display: inline-flex; align-items: center; gap: 7px; }
.hero__under svg { width: 16px; height: 16px; stroke: var(--cta); stroke-width: 2; fill: none; flex: none; }
.hero__media { position: relative; }
.hero__frame { position: relative; border-radius: var(--radius-xl); overflow: hidden; aspect-ratio: 4/5; box-shadow: var(--shadow-lg); background: var(--page-2); }
.hero__frame img { width: 100%; height: 100%; object-fit: cover; }
.hero__badge {
  position: absolute; left: -20px; bottom: 26px; background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius-lg); box-shadow: var(--shadow-md); padding: 14px 18px; display: flex; align-items: center; gap: 13px;
}
.hero__badge .n { font-family: var(--font-display); font-size: 30px; font-weight: 600; color: var(--display-color); line-height: 1; }
.hero__badge .t { font-size: 12px; color: var(--ink-soft); line-height: 1.3; }
.hero__badge .t b { color: var(--ink); }
.hero__chip {
  position: absolute; top: 20px; right: 20px; background: var(--hot); color: #fff; font-size: 11.5px; font-weight: 700;
  letter-spacing: .06em; text-transform: uppercase; padding: 8px 14px; border-radius: 999px; box-shadow: var(--shadow-md);
}
@media (max-width: 860px) {
  /* Mobile hero: headline first, THEN image, then supporting copy + CTA */
  .hero__grid { grid-template-columns: 1fr; gap: 15px; padding: 32px 0 42px; }
  .hero__copy { display: contents; }
  .hero__title { order: 1; }
  .hero__rating { order: 2; margin: 0; }
  .hero__media { order: 3; max-width: 460px; margin: 6px auto 0; width: 100%; }
  .hero__sub { order: 4; margin: 0; }
  .hero__bullets { order: 5; margin: 0; }
  .hero__cta { order: 6; margin: 4px 0 0; max-width: none; }
}

/* ============================================================
   SECTION SHELLS
   ============================================================ */
.section { padding: 92px 0; }
.section--tight { padding: 64px 0; }
.section--alt { background: var(--page-2); }
.section__head { max-width: 720px; margin: 0 auto 56px; text-align: center; }
.section__head .eyebrow { margin-bottom: 18px; }
.section__head h2 { font-size: clamp(2rem, 3.4vw, 3rem); font-weight: 600; margin: 0; }
.section__head p { font-size: 17px; color: var(--ink-soft); margin: 18px auto 0; max-width: 56ch; }

/* transition band (dark statement) */
.band { background: var(--band); color: var(--band-text); text-align: center; padding: 78px 0; }
.band h2 { font-family: var(--font-display); font-weight: 600; font-size: clamp(2rem, 4vw, 3.4rem); margin: 0 auto; max-width: 20ch; line-height: 1.08; color: var(--band-text); }
.band p { font-size: 18px; color: rgba(255,255,255,.66); margin: 22px auto 0; max-width: 52ch;font-weight:500; }
.band .rule { margin: 28px auto 0; }
[data-dir="a"] .band p, [data-dir="b"] .band p, [data-dir="c"] .band p { color: rgba(255,255,255,.66); }

/* ============================================================
   REASONS (numbered problem -> solution)
   ============================================================ */
.reasons { display: flex; flex-direction: column; gap: 0; }
.reason { padding: 64px 0; border-bottom: 1px solid var(--line); }
.reason:last-child { border-bottom: 0; }
.reason__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.reason:nth-child(even) .reason__media { order: 2; }
.reason__num { font-family: var(--font-display); font-size: 15px; font-weight: 600; color: var(--cta);
  display: inline-flex; align-items: baseline; gap: 12px; letter-spacing: .04em; margin-bottom: 16px; text-transform: uppercase; }
.reason__num b { font-size: 56px; line-height: .8; color: var(--display-color); opacity: .14; font-weight: 700; }
.reason__title { font-family: var(--font-display); font-size: clamp(1.6rem, 2.6vw, 2.3rem); font-weight: 600; margin: 0 0 18px; line-height: 1.12; color: var(--display-color); }
.reason__body { font-size: 16.5px; line-height: 1.66; color: var(--ink-soft); margin: 0 0 18px; max-width: 52ch; }
.reason__body b { color: var(--ink); font-weight: 700; }
.reason__solve { display: flex; gap: 14px; align-items: flex-start; background: color-mix(in srgb, var(--cta) 9%, transparent);
  border: 1px solid color-mix(in srgb, var(--cta) 28%, transparent); border-radius: var(--radius-lg); padding: 16px 18px; margin: 0 0 22px; }
.reason__solve .ic { flex: none; width: 38px; height: 38px; border-radius: 999px; background: var(--cta); display: flex; align-items: center; justify-content: center; }
.reason__solve .ic svg { width: 20px; height: 20px; stroke: #fff; stroke-width: 2; fill: none; }
.reason__solve p { font-size: 14.5px; line-height: 1.58; margin: 0; color: var(--ink); }
.reason__solve p b { font-weight: 700; }
.reason__cta { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.reason__cta .btn { padding: 14px 26px; font-size: 15px; }
.reason__save { font-size: 13px; font-weight: 700; color: var(--cta); display: inline-flex; align-items: center; gap: 7px; }
.reason__save svg { width: 15px; height: 15px; stroke: currentColor; stroke-width: 2.2; fill: none; }
.reason__media { position: relative; border-radius: var(--radius-xl); overflow: hidden; background: var(--page-2); border: 1px solid var(--line); box-shadow: var(--shadow-md); }
.reason__media img { width: 100%; height: 100%; object-fit: cover; }
.reason__media--contain { background: linear-gradient(160deg,#FFFFFF,#ECF0F4); }
[data-dir="b"] .reason__media--contain { background: linear-gradient(160deg,#17304F,#0E2138); }
.reason__media--contain img { object-fit: contain; padding: 12%; mix-blend-mode: multiply; }
[data-dir="b"] .reason__media--contain img { mix-blend-mode: normal; }
.reason__tagimg { position: absolute; left: 16px; bottom: 16px; background: var(--surface); color: var(--ink); font-size: 12px;
  font-weight: 600; padding: 8px 14px; border-radius: 999px; box-shadow: var(--shadow-sm); display: inline-flex; align-items: center; gap: 8px; }
.reason__tagimg .d { width: 7px; height: 7px; border-radius: 999px; background: var(--cta); }
@media (max-width: 860px) {
  /* Mobile reason: number + title first, THEN image, then body + CTA */
  .reason__grid { grid-template-columns: 1fr; gap: 0; }
  .reason__copy { display: contents; }
  .reason__num { order: 1; }
  .reason__title { order: 2; }
  .reason__media { order: 3; margin: 2px 0 18px; }
  .reason__body { order: 4; }
  .reason__solve { order: 5; }
  .reason__cta { order: 6; }
}

/* filtration tech callout chips inside contain media */
.techlayer { position: absolute; inset: auto 16px 16px; display: flex; gap: 8px; flex-wrap: wrap; }
.techlayer span { background: var(--surface); border: 1px solid var(--line); font-size: 11px; font-weight: 600; color: var(--ink-soft); padding: 6px 11px; border-radius: 999px; }

/* ============================================================
   FILTRATION / HOW IT WORKS
   ============================================================ */
.filt__grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 64px; align-items: center; }
.filt__media { position: relative; border-radius: var(--radius-xl); overflow: hidden; aspect-ratio: 1/1; background: linear-gradient(160deg,#FFFFFF,#E1EDF7); border: 1px solid var(--line); box-shadow: var(--shadow-md); display: flex; align-items: center; justify-content: center; }
[data-dir="b"] .filt__media { background: linear-gradient(160deg,#17304F,#0B1A2C); }
.filt__media img { width: 78%; height: 78%; object-fit: contain; mix-blend-mode: multiply; }
[data-dir="b"] .filt__media img { mix-blend-mode: normal; }
.filt__badge { position: absolute; top: 22px; left: 22px; background: var(--display-color); color: var(--page); border-radius: var(--radius-md); padding: 10px 15px; }
[data-dir="b"] .filt__badge { background: var(--accent); color: #000; }
.filt__badge .n { font-family: var(--font-display); font-size: 26px; font-weight: 700; line-height: 1; }
.filt__badge .t { font-size: 10.5px; letter-spacing: .12em; text-transform: uppercase; margin-top: 3px; opacity: .8; }
.filt__layers { display: flex; flex-direction: column; gap: 2px; margin-top: 28px; }
.layer { display: grid; grid-template-columns: 44px 1fr; gap: 16px; align-items: center; padding: 16px 0; border-bottom: 1px solid var(--line); }
.layer:last-child { border-bottom: 0; }
.layer__n { width: 44px; height: 44px; border-radius: 999px; border: 1.5px solid var(--accent); display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-weight: 600; font-size: 16px; color: var(--display-color); }
.layer h4 { font-size: 16px; font-weight: 700; margin: 0 0 3px; color: var(--ink); }
.layer p { font-size: 13.5px; line-height: 1.5; color: var(--ink-soft); margin: 0; max-width: 48ch; }
@media (max-width: 860px) { .filt__grid { grid-template-columns: 1fr; gap: 34px; } }

/* ============================================================
   BEFORE / AFTER
   ============================================================ */
.ba__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.ba__card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); }
.ba__imgwrap { position: relative; aspect-ratio: 3/2; overflow: hidden; background: var(--page-2); }
.ba__imgwrap img { width: 100%; height: 100%; object-fit: cover; }
.ba__meta { padding: 18px 20px 20px; }
.ba__meta h4 { font-family: var(--font-display); font-size: 18px; font-weight: 600; margin: 0 0 6px; color: var(--display-color); }
.ba__meta p { font-size: 13.5px; line-height: 1.55; color: var(--ink-soft); margin: 0; }
.ba__tag { position: absolute; top: 14px; left: 14px; background: var(--display-color); color: var(--page); font-size: 11px; font-weight: 700; letter-spacing: .04em; padding: 6px 12px; border-radius: 999px; }
[data-dir="b"] .ba__tag { background: var(--accent); color: #000; }
@media (max-width: 860px) { .ba__grid { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; } }

/* interactive before/after slider (first card, large) */
.ba__feature { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; margin-bottom: 44px; }
.ba__slider { position: relative; aspect-ratio: 3/2; border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow-lg); user-select: none; border: 1px solid var(--line); }
.ba__slider img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.ba__slider .after { clip-path: inset(0 0 0 50%); }
.ba__handle { position: absolute; top: 0; bottom: 0; left: 50%; width: 3px; background: #fff; box-shadow: 0 0 0 1px rgba(0,0,0,.15); transform: translateX(-50%); cursor: ew-resize; }
.ba__handle::after { content: ""; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 42px; height: 42px; border-radius: 999px; background: #fff; box-shadow: var(--shadow-md);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='22' height='22' viewBox='0 0 24 24' fill='none' stroke='%23222' stroke-width='2' stroke-linecap='round'%3E%3Cpath d='M9 7l-5 5 5 5M15 7l5 5-5 5'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: center; }
.ba__lab { position: absolute; bottom: 14px; font-size: 11.5px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: #fff; background: rgba(0,0,0,.55); padding: 6px 12px; border-radius: 999px; backdrop-filter: blur(2px); }
.ba__lab--b { left: 14px; } .ba__lab--a { right: 14px; }
.ba__featcopy .eyebrow { margin-bottom: 16px; }
.ba__featcopy h3 { font-family: var(--font-display); font-size: clamp(1.7rem,2.6vw,2.3rem); font-weight: 600; margin: 0 0 16px; color: var(--display-color); }
.ba__featcopy p { font-size: 16px; line-height: 1.64; color: var(--ink-soft); margin: 0 0 14px; }
.ba__quote { border-left: 3px solid var(--accent); padding-left: 18px; margin: 22px 0 0; }
.ba__quote p { font-family: var(--font-display); font-style: italic; font-size: 18px; color: var(--ink); margin: 0 0 6px; }
.ba__quote cite { font-size: 13px; color: var(--ink-faint); font-style: normal; }
@media (max-width: 860px) { .ba__feature { grid-template-columns: 1fr; gap: 28px; } }

/* ============================================================
   OFFER BLOCK (the urgency module)
   ============================================================ */
.offer { background: var(--band); color: var(--band-text); }
.offer__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; padding: 86px 0; }
.offer__media { position: relative; border-radius: var(--radius-xl); overflow: hidden; background: radial-gradient(120% 120% at 50% 30%, #fff 0%, #f0ebe1 100%); aspect-ratio: 1/1; display: flex; align-items: center; justify-content: center; box-shadow: var(--shadow-lg); }
.offer__media img { width: 76%; height: 76%; object-fit: contain; mix-blend-mode: multiply; }
.offer__pills { position: absolute; left: 18px; top: 18px; display: flex; flex-direction: column; gap: 8px; }
.offer__pills span { background: rgba(0,0,0,.78); color: #fff; font-size: 11px; font-weight: 600; padding: 7px 12px; border-radius: 999px; display: inline-flex; align-items: center; gap: 7px; }
.offer__pills .d { width: 6px; height: 6px; border-radius: 999px; background: var(--grass-400); }
.offer__panel { text-align: center; }
.offer__gifts { font-size: 12.5px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--accent); display: inline-flex; align-items: center; gap: 12px; }
.offer__gifts::before, .offer__gifts::after { content: ""; width: 26px; height: 1px; background: rgba(255,255,255,.4); }
.offer__big { font-family: var(--font-display); font-weight: 700; line-height: 1; margin: 22px 0 0; }
.offer__big .pct { display: block; font-size: clamp(2.8rem, 6vw, 4.4rem); color: var(--accent); }
.offer__big .sub { display: block; font-size: clamp(2rem, 4.2vw, 3.1rem); color: var(--band-text); margin-top: 6px; }
.offer__note { font-size: 15px; color: rgba(255,255,255,.7); margin: 22px auto 0; max-width: 34ch; }
.offer__panel .btn { margin: 26px 0 0; }
.offer__timer { display: flex; align-items: center; justify-content: center; gap: 12px; margin: 22px 0 0; font-size: 15px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: rgba(255,255,255,.8); }
.offer__clock { display: inline-flex; gap: 6px; }
.offer__clock b { background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.16); color: #fff; font-family: var(--font-sans); font-variant-numeric: tabular-nums; font-size: 18px; font-weight: 700; padding: 7px 10px; border-radius: 8px; min-width: 42px; text-align: center; }
.offer__clock i { color: var(--hot); font-style: normal; align-self: center; font-size: 18px; }
.offer__risk { display: inline-flex; align-items: center; gap: 14px; background: var(--hot-bg); color: #2a1512; font-size: 14px; font-weight: 600; padding: 12px 22px; border-radius: var(--radius-md); margin: 22px auto 0; }
.offer__risk b { color: var(--hot); }
.offer__risk .sep { width: 1px; height: 16px; background: rgba(0,0,0,.2); }
.offer__guar { font-size: 14px; font-weight: 700; color: var(--band-text); margin: 20px 0 0; display: inline-flex; align-items: center; gap: 9px; }
.offer__guar svg { width: 18px; height: 18px; stroke: var(--accent); stroke-width: 2; fill: none; }
@media (max-width: 860px) { .offer__grid { grid-template-columns: 1fr; gap: 36px; padding: 56px 0; } .offer__media { order: -1; max-width: 360px; margin: 0 auto; } }

/* what's in the box */
.box__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 14px; }
.box__item { display: flex; gap: 14px; align-items: flex-start; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-md); padding: 18px; }
.box__item .ic { flex: none; width: 40px; height: 40px; border-radius: 999px; background: color-mix(in srgb, var(--cta) 14%, transparent); display: flex; align-items: center; justify-content: center; }
.box__item .ic svg { width: 20px; height: 20px; stroke: var(--cta); stroke-width: 1.8; fill: none; }
.box__item h4 { font-size: 14.5px; font-weight: 700; margin: 0 0 4px; color: var(--ink); }
.box__item p { font-size: 13px; line-height: 1.5; color: var(--ink-soft); margin: 0; }
@media (max-width: 760px) { .box__grid { grid-template-columns: 1fr; } }

/* trust badges row */
.trust { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.trust__item { text-align: center; display: flex; flex-direction: column; align-items: center; gap: 12px; }
.trust__ic { width: 54px; height: 54px; border-radius: 999px; border: 1.5px solid var(--line); display: flex; align-items: center; justify-content: center; }
.trust__ic svg { width: 26px; height: 26px; stroke: var(--cta); stroke-width: 1.6; fill: none; }
.trust__item span { font-size: 13px; font-weight: 600; color: var(--ink); line-height: 1.35; max-width: 16ch; }
.trust__item em { font-style: normal; color: var(--ink-faint); font-size: 12px; }
@media (max-width: 640px) { .trust { grid-template-columns: repeat(2, 1fr); gap: 24px 12px; } }

/* ============================================================
   REVIEWS CAROUSEL
   ============================================================ */
.reviews__head { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; margin-bottom: 36px; flex-wrap: wrap; }
.reviews__head h2 { font-size: clamp(1.8rem, 3vw, 2.6rem); font-weight: 600; margin: 0; }
.reviews__score { display: flex; align-items: center; gap: 12px; font-size: 14px; color: var(--ink-soft); }
.reviews__score b { font-family: var(--font-display); font-size: 30px; font-weight: 600; color: var(--display-color); }
.reviews__rail { display: flex; gap: 20px; overflow-x: auto; scroll-snap-type: x mandatory; padding: 6px 2px 18px; scrollbar-width: none; }
.reviews__rail::-webkit-scrollbar { display: none; }
.rcard { flex: 0 0 360px; max-width: 360px; scroll-snap-align: start; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 26px 26px 22px; display: flex; flex-direction: column; box-shadow: var(--shadow-sm); }
.rcard__top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; }
.rcard__verif { font-size: 11px; font-weight: 600; color: var(--cta); display: inline-flex; align-items: center; gap: 6px; }
.rcard__verif svg { width: 14px; height: 14px; stroke: var(--cta); stroke-width: 2.4; fill: none; }
.rcard h4 { font-family: var(--font-display); font-size: 19px; font-weight: 600; margin: 0 0 10px; color: var(--display-color); line-height: 1.25; }
.rcard p { font-size: 14.5px; line-height: 1.62; color: var(--ink-soft); margin: 0 0 20px; flex: 1; }
.rcard__who { display: flex; align-items: center; gap: 12px; padding-top: 16px; border-top: 1px solid var(--line); }
.rcard__av { width: 40px; height: 40px; border-radius: 999px; background: var(--page-2); display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-weight: 600; color: var(--ink-soft); font-size: 16px; flex: none; }
.rcard__who b { font-size: 13.5px; color: var(--ink); display: block; }
.rcard__who span { font-size: 12px; color: var(--ink-faint); }
.reviews__nav { display: flex; gap: 10px; }
.reviews__nav button { width: 44px; height: 44px; border-radius: 999px; border: 1.5px solid var(--line); background: var(--surface); display: flex; align-items: center; justify-content: center; color: var(--ink); transition: all var(--dur); }
.reviews__nav button:hover { background: var(--cta); color: #fff; border-color: var(--cta); }
.reviews__nav button svg { width: 18px; height: 18px; stroke: currentColor; stroke-width: 2; fill: none; }

/* ============================================================
   FINAL CTA + FAQ + FOOTER
   ============================================================ */
.finalcta { text-align: center; }
.finalcta h2 { font-size: clamp(2.1rem, 4vw, 3.4rem); font-weight: 600; margin: 0 auto; max-width: 18ch; }
.finalcta p { font-size: 18px; color: var(--ink-soft); margin: 20px auto 0; max-width: 46ch; }
.finalcta .btn { margin-top: 34px; }
.finalcta .sub { font-size: 13px; color: var(--ink-faint); margin-top: 16px; }

.faq { max-width: 820px; margin: 0 auto; }
.faq__item { border-bottom: 1px solid var(--line); }
.faq__q { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 20px; background: none; border: 0; padding: 24px 0; text-align: left;
  font-family: var(--font-display); font-size: 19px; font-weight: 600; color: var(--display-color); }
.faq__q .pm { flex: none; width: 26px; height: 26px; border-radius: 999px; border: 1.5px solid var(--line); display: flex; align-items: center; justify-content: center; transition: transform var(--dur); }
.faq__q .pm svg { width: 14px; height: 14px; stroke: var(--ink); stroke-width: 2; fill: none; }
.faq__item[data-open="true"] .pm { transform: rotate(45deg); border-color: var(--cta); }
.faq__a { overflow: hidden; max-height: 0; transition: max-height var(--dur) var(--ease); }
.faq__a p { font-size: 15px; line-height: 1.65; color: var(--ink-soft); margin: 0 0 24px; max-width: 64ch; }

.footer { background: var(--pine-900); color: var(--stone-100); padding: 64px 0 36px; }
[data-dir="b"] .footer { background: var(--pine-900); }
.footer__top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 36px; padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,.12); }
.footer__logo img { height: 24px; filter: brightness(0) invert(1); margin-bottom: 18px; }
.footer__top p { font-size: 13.5px; line-height: 1.6; color: rgba(255,255,255,.6); margin: 0; max-width: 36ch; }
.footer__col h5 { font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.5); margin: 0 0 16px; }
.footer__col a { display: block; font-size: 13.5px; color: rgba(255,255,255,.78); padding: 6px 0; transition: color var(--dur); }
.footer__col a:hover { color: #fff; }
.footer__bot { display: flex; align-items: center; justify-content: space-between; gap: 18px; padding-top: 26px; font-size: 12px; color: rgba(255,255,255,.5); flex-wrap: wrap; }
.footer__legal { font-size: 11px; color: rgba(255,255,255,.4); line-height: 1.6; margin: 22px 0 0; max-width: 90ch; }
@media (max-width: 860px) { .footer__top { grid-template-columns: 1fr 1fr; gap: 28px; } }
@media (max-width: 560px) { .footer__top { grid-template-columns: 1fr; } }

/* ============================================================
   STICKY BUY BAR
   ============================================================ */
.stickybar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 60; background: color-mix(in srgb, var(--surface) 96%, transparent);
  backdrop-filter: blur(14px); border-top: 1px solid var(--line); box-shadow: 0 -8px 30px -16px rgba(0,0,0,.3);
  transform: translateY(110%); transition: transform .34s var(--ease);
}
.stickybar[data-show="true"] { transform: translateY(0); }
.stickybar__in { display: flex; align-items: center; gap: 20px; padding: 12px 0; }
.stickybar__thumb { width: 52px; height: 52px; border-radius: 12px; background: var(--page-2); flex: none; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.stickybar__thumb img { width: 80%; height: 80%; object-fit: contain; mix-blend-mode: multiply; }
[data-dir="b"] .stickybar__thumb img { mix-blend-mode: normal; }
.stickybar__info { flex: 1; min-width: 0; }
.stickybar__info h4 { font-family: var(--font-display); font-size: 16px; font-weight: 600; margin: 0; color: var(--display-color); }
.stickybar__info .meta { display: flex; align-items: center; gap: 12px; font-size: 12.5px; color: var(--ink-soft); margin-top: 2px; flex-wrap: wrap; }
.stickybar__info .meta b { color: var(--hot); }
.stickybar__timer { font-variant-numeric: tabular-nums; font-weight: 700; color: var(--hot); }
.stickybar .btn { padding: 15px 30px; }
@media (max-width: 640px) {
  .stickybar__in { gap: 12px; padding: 13px 0 calc(13px + env(safe-area-inset-bottom)); align-items: center; }
  .stickybar__thumb { display: none; }
  .stickybar__info { min-width: 0; padding:10px 0px;}
  .stickybar__info h4 { font-size: 13px; line-height: 1.2; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
  .stickybar__info .meta { font-size: 11px; gap: 4px 8px; margin-top: 3px; line-height: 1.3; }
  .stickybar__info .meta .stars { display: none; }
  .stickybar .btn { padding: 12px 15px; font-size: 12.5px; flex: none; }
  .stickybar .btn .arr { display: none; }
}

/* ============================================================
   DIRECTION SWITCHER (UI chrome — hidden in print)
   ============================================================ */
.dirswitch {
  position: fixed; top: 50%; right: 16px; transform: translateY(-50%); z-index: 80;
  background: rgba(19,42,71,.9); backdrop-filter: blur(10px); border: 1px solid rgba(255,255,255,.14);
  border-radius: 16px; padding: 12px 10px; display: flex; flex-direction: column; gap: 8px; box-shadow: var(--shadow-lg);
}
.dirswitch__lab { font-size: 9px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.5); text-align: center; margin-bottom: 2px; }
.dirswitch button { width: 132px; text-align: left; background: rgba(255,255,255,.06); border: 1px solid transparent; border-radius: 10px; padding: 9px 12px; color: #fff; transition: all var(--dur); }
.dirswitch button:hover { background: rgba(255,255,255,.12); }
.dirswitch button[data-active="true"] { background: #fff; color: var(--ink-900); }
.dirswitch button b { display: block; font-size: 12.5px; font-weight: 700; }
.dirswitch button span { display: block; font-size: 10px; opacity: .7; margin-top: 1px; }
.dirswitch__dot { display: inline-block; width: 8px; height: 8px; border-radius: 999px; margin-right: 7px; vertical-align: middle; }
@media (max-width: 980px) {
  .dirswitch { top: auto; bottom: 84px; right: 12px; transform: none; flex-direction: row; padding: 8px; }
  .dirswitch__lab { display: none; }
  .dirswitch button { width: auto; padding: 8px 10px; }
  .dirswitch button span { display: none; }
}

/* ============================================================
   PRESS STRIP ("As seen on")
   ============================================================ */
.press { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--surface); }
.press__in { display: flex; align-items: center; justify-content: center; gap: 38px; padding: 18px 0; flex-wrap: wrap; }
.press__lab { font-size: 11px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--ink-faint); }
.press__logos { display: flex; align-items: center; gap: 34px; flex-wrap: wrap; justify-content: center; }
.press__logos img { height: 22px; opacity: .62; }
.press__logos .wordmark { font-family: var(--font-display); font-weight: 700; font-size: 19px; letter-spacing: .02em; color: var(--ink-soft); opacity: .72; }
[data-dir="b"] .press__logos img { filter: invert(1) brightness(1.5); opacity: .8; }
.press__rated { border-top: 1px solid var(--line); display: flex; justify-content: center; }
.press__rated a { display: inline-flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 10px; padding: 15px 0; font-size: 14.5px; font-weight: 600; color: var(--ink); transition: color var(--dur); }
.press__rated a:hover { color: var(--cta); }
.press__rated a b { font-weight: 700; }
.press__rated-txt { text-wrap: balance; }
.press__rated .stars svg { width: 15px; height: 15px; }
.press__rated .arr2 { width: 15px; height: 15px; stroke: currentColor; stroke-width: 2; fill: none; transition: transform .2s; }
.press__rated-logo { height: 14px; width: auto; display: inline-block; vertical-align: middle; opacity: .85; margin: 0 2px; }
[data-dir="b"] .press__rated-logo { filter: invert(1) brightness(1.5); }
.press__rated a:hover .arr2 { transform: translateX(3px); }
@media (max-width: 720px) { .press__in { gap: 18px; } .press__logos { gap: 22px; } .press__rated a { font-size: 13px; padding: 13px 8px; } }

/* hero VSL benefit bullets */
.hero__bullets { list-style: none; margin: 26px 0 0; padding: 0; display: flex; flex-direction: column; gap: 11px; }
.hero__bullets li { display: flex; align-items: center; gap: 12px; font-size: 16px; font-weight: 500; color: var(--ink); }
.hero__bullets .ck { flex: none; width: 24px; height: 24px; border-radius: 999px; background: color-mix(in srgb, var(--cta) 16%, transparent); display: flex; align-items: center; justify-content: center; }
.hero__bullets .ck svg { width: 14px; height: 14px; stroke: var(--cta); stroke-width: 2.6; fill: none; }
.hero__urgency { display: inline-flex; align-items: center; gap: 10px; font-size: 13px; font-weight: 600; color: var(--ink-soft); margin-top: 4px; }
.hero__urgency .pulse { width: 9px; height: 9px; border-radius: 999px; background: var(--hot); box-shadow: 0 0 0 0 color-mix(in srgb, var(--hot) 60%, transparent); animation: pulse 1.8s infinite; }
@keyframes pulse { 0%{box-shadow:0 0 0 0 color-mix(in srgb,var(--hot) 55%,transparent);} 70%{box-shadow:0 0 0 9px transparent;} 100%{box-shadow:0 0 0 0 transparent;} }

/* ============================================================
   PROOF MEDIA — clinical stat panel, guarantee seal, TV thumbs
   ============================================================ */
.statmini { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-xl); padding: 26px; box-shadow: var(--shadow-md); width: 100%; }
.statmini__ribbon { display: inline-flex; align-items: center; gap: 9px; font-size: 11.5px; font-weight: 700; letter-spacing: .04em; color: var(--cta);
  background: color-mix(in srgb, var(--cta) 12%, transparent); border-radius: 999px; padding: 7px 14px; margin-bottom: 18px; }
.statmini__ribbon svg { width: 14px; height: 14px; stroke: var(--cta); stroke-width: 2.2; fill: none; }
.statmini__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px 22px; }
.statmini__cell .n { font-family: var(--font-display); font-weight: 700; font-size: 38px; line-height: 1; color: var(--display-color); }
.statmini__cell .n small { font-size: 16px; font-weight: 600; }
.statmini__cell .d { font-size: 12.5px; line-height: 1.4; color: var(--ink-soft); margin-top: 6px; max-width: 22ch; }
.statmini__foot { margin-top: 20px; padding-top: 16px; border-top: 1px solid var(--line); font-size: 11.5px; color: var(--ink-faint); }

.seal { width: 100%; aspect-ratio: 4/3; border-radius: var(--radius-xl); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px;
  background: radial-gradient(120% 120% at 50% 25%, color-mix(in srgb, var(--cta) 14%, var(--surface)) 0%, var(--surface) 70%); border: 1px solid var(--line); box-shadow: var(--shadow-md); }
.seal__ring { width: 158px; height: 158px; border-radius: 999px; border: 3px solid var(--cta); display: flex; flex-direction: column; align-items: center; justify-content: center;
  background: var(--surface); box-shadow: 0 0 0 8px color-mix(in srgb, var(--cta) 10%, transparent); }
.seal__ring .big { font-family: var(--font-display); font-weight: 700; font-size: 62px; line-height: .85; color: var(--display-color); }
.seal__ring .sm { font-size: 12px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-soft); margin-top: 4px; }
.seal__cap { font-size: 13px; font-weight: 600; color: var(--ink-soft); }

.vidgrid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; width: 100%; }
.vidthumb { position: relative; border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 9/16; background: var(--ink-900); cursor: pointer; border: 0; padding: 0; box-shadow: var(--shadow-sm); }
.vidthumb img { width: 100%; height: 100%; object-fit: cover; opacity: .85; transition: transform .4s var(--ease), opacity .3s; }
.vidthumb:hover img { transform: scale(1.05); opacity: 1; }
.vidthumb__play { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 52px; height: 52px; border-radius: 999px; background: rgba(255,255,255,.92);
  display: flex; align-items: center; justify-content: center; box-shadow: var(--shadow-md); transition: transform .2s; }
.vidthumb:hover .vidthumb__play { transform: translate(-50%,-50%) scale(1.08); }
.vidthumb__play svg { width: 20px; height: 20px; fill: var(--ink-900); margin-left: 3px; }
.vidthumb__net { position: absolute; top: 10px; left: 10px; background: rgba(0,0,0,.7); color: #fff; font-size: 10px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; padding: 5px 9px; border-radius: 6px; }
.vidthumb__dur { position: absolute; bottom: 10px; right: 10px; background: rgba(0,0,0,.7); color: #fff; font-size: 10.5px; font-weight: 600; padding: 4px 8px; border-radius: 5px; font-variant-numeric: tabular-nums; }

/* a button that looks like a text link with arrow, used in reason__cta for drawers */
.linkbtn { display: inline-flex; align-items: center; gap: 8px; background: none; border: 0; padding: 0; font-size: 14px; font-weight: 700; color: var(--cta); }
.linkbtn svg { width: 16px; height: 16px; stroke: currentColor; stroke-width: 2.2; fill: none; transition: transform .2s; }
.linkbtn:hover svg { transform: translateX(3px); }

/* ============================================================
   SLIDE-IN DRAWER (clinical study + national TV)
   ============================================================ */
.scrim { position: fixed; inset: 0; background: rgba(19,42,71,.5); backdrop-filter: blur(2px); z-index: 90; opacity: 0; pointer-events: none; transition: opacity .3s var(--ease); }
.scrim[data-open="true"] { opacity: 1; pointer-events: auto; }
.drawer { position: fixed; top: 0; right: 0; bottom: 0; width: min(560px, 94vw); background: var(--surface); color: var(--ink); z-index: 95;
  transform: translateX(100%); transition: transform .36s var(--ease); display: flex; flex-direction: column; box-shadow: -20px 0 60px -20px rgba(0,0,0,.4); }
.drawer[data-open="true"] { transform: translateX(0); }
.drawer__head { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 22px 26px; border-bottom: 1px solid var(--line); flex: none; }
.drawer__head h3 { font-family: var(--font-display); font-weight: 600; font-size: 22px; margin: 0; color: var(--display-color); }
.drawer__head .eyebrow { margin-bottom: 6px; }
.drawer__close { width: 38px; height: 38px; border-radius: 999px; border: 1px solid var(--line); background: var(--surface); display: flex; align-items: center; justify-content: center; color: var(--ink); flex: none; }
.drawer__close svg { width: 18px; height: 18px; stroke: currentColor; stroke-width: 2; fill: none; }
.drawer__body { overflow-y: auto; padding: 26px; }
.drawer__intro { font-size: 14.5px; line-height: 1.6; color: var(--ink-soft); margin: 0 0 22px; }
.drawer__intro em { font-style: italic; color: var(--ink); }

/* clinical stats inside drawer */
.dstat { display: flex; align-items: center; gap: 18px; padding: 18px 0; border-bottom: 1px solid var(--line); }
.dstat .n { font-family: var(--font-display); font-weight: 700; font-size: 42px; line-height: 1; color: var(--cta); flex: none; min-width: 86px; }
.dstat .d { font-size: 14px; line-height: 1.45; color: var(--ink); }
.dnote { font-size: 12px; color: var(--ink-faint); margin: 16px 0 0; }
.dsub { font-family: var(--font-display); font-size: 18px; font-weight: 600; color: var(--display-color); margin: 30px 0 4px; }

/* clinician review block inside drawer */
.clindoc { border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 20px; margin-top: 16px; background: var(--page); }
.clindoc__top { display: flex; align-items: center; gap: 13px; margin-bottom: 14px; }
.clindoc__av { width: 46px; height: 46px; border-radius: 999px; background: var(--cta); color: #fff; display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-weight: 700; font-size: 17px; flex: none; }
.clindoc__nm { font-size: 14.5px; font-weight: 700; color: var(--ink); }
.clindoc__vf { font-size: 11.5px; color: var(--cta); display: inline-flex; align-items: center; gap: 5px; margin-top: 2px; }
.clindoc__vf svg { width: 12px; height: 12px; stroke: var(--cta); stroke-width: 2.6; fill: none; }
.clindoc__meta { margin-left: auto; text-align: right; font-size: 11px; color: var(--ink-faint); line-height: 1.5; }
.clindoc__meta b { color: var(--ink); font-size: 12.5px; }
.clindoc h4 { font-family: var(--font-display); font-size: 16.5px; font-weight: 600; margin: 0 0 8px; color: var(--display-color); line-height: 1.25; }
.clindoc p { font-size: 13.5px; line-height: 1.6; color: var(--ink-soft); margin: 0; }
.clindoc__hi { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 14px; }
.clindoc__hi span { font-size: 11px; font-weight: 600; color: var(--ink-soft); background: var(--page-2); border: 1px solid var(--line); padding: 5px 10px; border-radius: 999px; }
.clinpower { font-size: 11.5px; color: var(--ink-faint); text-align: center; margin: 22px 0 0; }
.clinpower b { color: var(--ink-soft); }

/* video player inside TV drawer — 9:16 vertical */
.dvideogrid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.dvideo { border-radius: var(--radius-lg); overflow: hidden; background: #0a0a0a; }
.dvideo__stage { position: relative; aspect-ratio: 9/16; background-size: cover; background-position: center; display: flex; align-items: center; justify-content: center; }
.dvideo__stage::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,.1), rgba(0,0,0,.55)); }
.dvideo__btn { position: relative; z-index: 2; width: 52px; height: 52px; border-radius: 999px; border: 0; background: rgba(255,255,255,.94); display: flex; align-items: center; justify-content: center; cursor: pointer; box-shadow: var(--shadow-lg); transition: transform .2s; }
.dvideo__btn:hover { transform: scale(1.07); }
.dvideo__btn svg { width: 22px; height: 22px; fill: var(--ink-900); margin-left: 3px; }
.dvideo__net { position: absolute; z-index: 2; top: 10px; left: 10px; background: rgba(0,0,0,.72); color: #fff; font-size: 10px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; padding: 5px 9px; border-radius: 6px; }
.dvideo[data-playing="true"] .dvideo__btn { opacity: 0; pointer-events: none; }
.dvideo[data-playing="true"] .dvideo__live { opacity: 1; }
.dvideo__live { position: absolute; z-index: 2; bottom: 12px; left: 12px; right: 12px; display: flex; align-items: center; gap: 10px; opacity: 0; transition: opacity .3s; }
.dvideo__live .bar { flex: 1; height: 4px; border-radius: 999px; background: rgba(255,255,255,.3); overflow: hidden; }
.dvideo__live .bar i { display: block; height: 100%; width: 30%; background: var(--accent); border-radius: 999px; animation: vidprog 8s linear infinite; }
@keyframes vidprog { from { width: 4%; } to { width: 96%; } }
.dvideo__live .t { font-size: 11px; color: #fff; font-variant-numeric: tabular-nums; }
.dvideo__cap { padding: 12px 13px; }
.dvideo__cap h4 { font-size: 13px; font-weight: 700; margin: 0 0 2px; color: var(--stone-100); line-height: 1.25; }
.dvideo__cap p { font-size: 11.5px; color: rgba(255,255,255,.6); margin: 0; line-height: 1.4; }
.drawer .btn--cta { width: 100%; margin-top: 6px; }

/* ============================================================
   SLIM FOOTER (replaces big footer)
   ============================================================ */
.footer { background: var(--pine-900); color: var(--stone-100); padding: 40px 0 28px; }
[data-dir="b"] .footer { background: var(--pine-900); }
.footer__row { display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; padding-bottom: 22px; border-bottom: 1px solid rgba(255,255,255,.12); }
.footer__logo img { height: 22px; filter: brightness(0) invert(1); }
.footer__links { display: flex; gap: 26px; flex-wrap: wrap; }
.footer__links a { font-size: 13.5px; color: rgba(255,255,255,.78); transition: color var(--dur); }
.footer__links a:hover { color: #fff; }
.footer__bot { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding-top: 20px; flex-wrap: wrap; }
.footer__bot span { font-size: 12px; color: rgba(255,255,255,.5); }
.footer__legal { font-size: 11px; color: rgba(255,255,255,.38); line-height: 1.6; margin: 14px 0 0; max-width: 100%; }
@media (max-width: 640px) { .footer__row { flex-direction: column; align-items: flex-start; gap: 16px; } }

/* ============================================================
   MOBILE — tighten vertical rhythm & gutters (kills white space)
   ============================================================ */
@media (max-width: 760px) {
  body { overflow-x: hidden; }
  .wrap { padding: 0 18px; }

  /* section shells */
  .section { padding: 54px 0; }
  .section--tight { padding: 40px 0; }
  .section__head { margin: 0 auto 30px; }
  .section__head .eyebrow { margin-bottom: 13px; }
  .section__head h2 { font-size: 1.8rem; }
  .section__head p { font-size: 16px; margin-top: 12px; }

  /* dark statement band */
  .band { padding: 46px 0; }
  .band h2 { font-size: 1.9rem; max-width: 24ch; }
  .band p { font-size: 16px; margin-top: 16px; }
  .band .rule { margin-top: 22px; }

  /* hero */
  .hero__grid { padding: 26px 0 38px; }
  .hero__rating { font-size: 12.5px; gap: 9px; flex-wrap: wrap; }
  .hero__title { font-size: 2.05rem; line-height: 1.1; }
  .hero__sub { font-size: 16px; }
  .hero__bullets { gap: 9px; }
  .hero__bullets li { font-size: 14.5px; }
  .hero__cta { gap: 12px; }
  .hero__under { gap: 8px;font-size: 11.5px;font-weight: 700; }
  .hero__urgency { font-size: 12.5px; }
  .hero__media { max-width: 360px; }
  .hero__frame { aspect-ratio: 4/4.4; }
  .hero__badge { left: 10px; bottom: 10px; padding: 10px 13px; gap: 11px; }
  .hero__badge .n { font-size: 24px; }

  /* press strip */
  .press__in { gap: 12px 20px; padding: 15px 0; }
  .press__rated a { font-size: 12.5px; padding: 12px 6px; }

  /* reasons */
  .reason { padding: 36px 0; }
  .reason__grid { gap: 0; }
  .reason__media { margin: 0 0 16px; }
  .reason__num { margin-bottom: 12px; }
  .reason__num b { font-size: 44px; }
  .reason__title { font-size: 1.45rem; margin-bottom: 13px; }
  .reason__body { font-size: 16px; margin-bottom: 14px; }
  .reason__solve { padding: 14px 15px; margin-bottom: 18px; }
  .reason__cta { gap: 14px; }

  /* filtration */
  .filt__grid { gap: 26px; }
  .filt__media { max-width: 340px; width: 100%; margin: 0 auto; }
  .filt__layers { margin-top: 4px; }

  /* before/after */
  .ba__grid { gap: 16px; max-width: 420px; }

  /* offer */
  .offer__grid { padding: 40px 0; gap: 26px; }
  .offer__media { max-width: 280px; }
  .offer__big { margin-top: 16px; }
  .offer__big .pct { font-size: 2.6rem; }
  .offer__big .sub { font-size: 1.7rem; }
  .offer__note { font-size: 13.5px; margin-top: 16px; }
  .offer__panel .btn { margin-top: 22px; }
  .offer__timer { margin-top: 18px; flex-wrap: wrap; font-size: 14px; }
  .offer__risk { margin-top: 18px; font-size: 13px; padding: 11px 18px; }

  /* what's in the box + trust */
  .box__grid { gap: 12px; }
  .trust { gap: 22px 12px; }

  /* reviews — one card with a peek so it reads as swipeable */
  .reviews__head { margin-bottom: 24px; }
  .rcard { flex-basis: 84vw; max-width: 340px; padding: 22px 22px 20px; }

  /* proof media */
  .statmini { padding: 20px; }
  .statmini__cell .n { font-size: 32px; }
  .seal__ring { width: 132px; height: 132px; }
  .seal__ring .big { font-size: 50px; }
  .vidgrid { gap: 9px; }

  /* final cta + faq */
  .finalcta h2 { font-size: 1.95rem; }
  .finalcta p { font-size: 16px; margin-top: 16px; }
  .finalcta .btn { margin-top: 26px; }
  .faq { margin-top: 44px !important; }
  .faq__q { font-size: 17px; padding: 20px 0; gap: 14px; }
  .faq__a p { font-size: 14.5px; }
}

@media (max-width: 400px) {
  .wrap { padding: 0 15px; }
  .hero__title { font-size: 1.9rem; }
  .header .btn .arr { display: none; }
  .header .btn { padding: 11px 16px; }
  .offer__clock b { min-width: 36px; font-size: 16px; padding: 6px 7px; }
  .offer__big .pct { font-size: 2.3rem; }
  .offer__big .sub { font-size: 1.55rem; }
  .vidthumb__net { font-size: 9px; padding: 4px 7px; }
  .vidthumb__dur { display: none; }
}

/* ============================================================
   MOBILE — conversion CTA alignment (full-width, centered, no floating arrow)
   ============================================================ */
@media (max-width: 760px) {
  /* Hide the floating arrow circle so wrapped CTA labels stay truly centered */
  .btn--cta .arr { display: none; }
  .btn--lg { font-size: 17px; padding: 18px 24px; }
  /* soften the heavy green glow on small screens */
  .btn--cta { box-shadow: 0 6px 18px -12px color-mix(in srgb, var(--btn) 60%, transparent); }

  /* reason CTA: full-width button, secondary link centered beneath it */
  .reason__cta { flex-direction: column; align-items: stretch; gap: 12px; }
  .reason__cta .btn { width: 100%; padding: 16px 22px; font-size: 16px; }
  .reason__save, .reason__cta .linkbtn { justify-content: center; }

  /* keep centered section CTAs tidy */
  .filt__copy .btn, .finalcta .btn { width: 100%; max-width: 460px; }
}

@media print {
  .dirswitch, .stickybar, .announce, .header, .scrim, .drawer { display: none !important; }
}
