/* ============================================================
   Ovul mock-v2 — "Brand Signal" design system
   Brand tokens fixed from v1 (colors, fonts). New layout language:
   ink cards, live-reading panel, stat strips, wave underlays.
   ============================================================ */

:root {
  --ink: #211A3E;
  --ink-2: #3B3555;
  --bg: #FAF9FE;
  --lav: #F2EEFB;
  --line: #E8E3F5;
  --pri: #5A4BCA;
  --pri-d: #4438C9;
  --lilac: #C9B8F0;
  --pink: #D8598B;
  --pink-bg: #FCEAF1;
  --gold: #F0A93B;
  --mut: #55506B;
  --faint: #9A93B5;
  --on-ink-body: #CFC8E8;
  --on-ink-mut: #B9B1D6;
  --r-card: 14px;
  --r-panel: 22px;
  --r-sec: 32px;
  --shadow-pop: 0 30px 80px rgba(33, 26, 62, 0.35);
  --shadow-btn: 0 14px 34px rgba(91, 79, 232, 0.35);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { margin: 0; padding: 0; background: var(--bg); color: var(--ink); font-family: 'Rubik', sans-serif; }
img, video, svg { max-width: 100%; }
a { color: var(--pri); text-decoration: none; }
a:not([class*="btn"]):hover { color: var(--pri-d); }
button { font-family: 'Rubik', sans-serif; }

h1, h2, h3, .display { font-family: 'Manrope', sans-serif; font-weight: 800; margin: 0; text-wrap: balance; }
h1 { font-size: 60px; line-height: 1.0; letter-spacing: -0.03em; }
h2 { font-size: 38px; line-height: 1.08; letter-spacing: -0.025em; }
h3 { font-size: 20px; letter-spacing: -0.01em; }
p { margin: 0; }

/* ---------- a11y foundation ---------- */
.visually-hidden {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}
.skip-link {
  position: absolute; left: 16px; top: -60px; z-index: 200;
  background: var(--ink); color: #fff; font-weight: 700; border-radius: 8px;
  padding: 12px 18px; transition: top 0.15s ease;
}
.skip-link:focus { top: 12px; color: #fff; }
:focus { outline: none; }
:focus-visible { outline: 2.5px solid var(--pri); outline-offset: 2px; border-radius: 4px; }
.hero-ink :focus-visible, .offer :focus-visible, .footer :focus-visible { outline-color: #fff; }
:focus { scroll-margin-top: 90px; }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important; animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important; scroll-behavior: auto !important;
  }
}

/* ---------- layout ---------- */
.container { max-width: 1280px; margin: 0 auto; padding-left: 28px; padding-right: 28px; }
.container-md { max-width: 980px; margin: 0 auto; padding-left: 28px; padding-right: 28px; }
.container-sm { max-width: 840px; margin: 0 auto; padding-left: 28px; padding-right: 28px; }
.sec { padding: 84px 0; }
.sec-tight { padding: 56px 0; }
.sec-lav { background: var(--lav); }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }

.eyebrow {
  font-family: 'Manrope', sans-serif; font-size: 12.5px; letter-spacing: 0.2em;
  text-transform: uppercase; font-weight: 700; color: var(--pri);
  display: flex; align-items: center; gap: 12px;
}
.eyebrow::before { content: ""; width: 30px; height: 2px; background: var(--pink); flex: none; }
.eyebrow.centered { justify-content: center; }
.eyebrow.centered::after { content: ""; width: 30px; height: 2px; background: var(--pink); flex: none; }

.lead { font-size: 18.5px; line-height: 1.6; color: var(--mut); text-wrap: pretty; }
.muted { color: var(--mut); }
.faint { color: var(--faint); }
.stars { color: var(--gold); letter-spacing: 2px; }
.strike { text-decoration: line-through; color: var(--faint); }
.pink { color: var(--pink); }
.sec-head { max-width: 720px; margin: 0 auto 44px; text-align: center; display: flex; flex-direction: column; gap: 14px; align-items: center; }

/* ---------- buttons (24px+ targets) ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  min-height: 48px; cursor: pointer; border: none; border-radius: 999px;
  background: var(--pri); color: #fff; padding: 15px 34px;
  font-size: 16.5px; font-weight: 700; box-shadow: var(--shadow-btn);
  transition: background 0.15s ease, color 0.15s ease, transform 0.15s ease;
}
.btn:hover { background: var(--pri-d); color: #fff; transform: translateY(-1px); }
/* Guarantee readable text on every button variant hover */
.btn:hover, .btn-ink:hover { color: #fff; }
.btn-white:hover, .btn-ghost:hover, .btn-outline:hover { color: var(--pri-d); }
.btn-sm { min-height: 42px; padding: 10px 24px; font-size: 14.5px; box-shadow: none; }
.btn-ink { background: var(--ink); box-shadow: none; }
.btn-ink:hover { background: var(--ink-2); }
.btn-white { background: #fff; color: var(--pri); box-shadow: none; font-weight: 800; }
.btn-white:hover { background: var(--lav); color: var(--pri-d); }
.btn-ghost { background: var(--lav); color: var(--pri); box-shadow: none; font-weight: 700; }
.btn-ghost:hover { background: #E2D9F8; color: var(--pri-d); }
.btn-outline { background: transparent; color: var(--pri); box-shadow: none; border: 1.5px solid var(--pri); }
.btn-outline:hover { background: var(--lav); color: var(--pri-d); }

.price-anchor { display: flex; flex-direction: column; line-height: 1.3; }
.price-anchor b { font-family: 'Manrope', sans-serif; font-size: 20px; }
.price-anchor .save { color: var(--pink); font-weight: 700; font-size: 13px; letter-spacing: 0.04em; }

/* ---------- announce / nav ---------- */
.announce {
  background: var(--pri); color: #fff; font-size: 13.5px; font-weight: 700;
  display: flex; align-items: center; justify-content: center; gap: 26px;
  padding: 9px 16px; text-align: center; flex-wrap: wrap;
}
.announce .cd { font-variant-numeric: tabular-nums; background: rgba(255,255,255,0.16); border-radius: 6px; padding: 1px 8px; }
.nav-wrap {
  position: sticky; top: 0; z-index: 60;
  background: rgba(250, 249, 254, 0.92);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border-bottom: 1.5px solid var(--line);
}
.nav { max-width: 1280px; margin: 0 auto; display: flex; align-items: center; gap: 28px; padding: 13px 28px; }
.nav-logo img { height: 36px; width: auto; display: block; }
.nav-links { display: flex; gap: 24px; font-size: 14.5px; font-weight: 600; flex: 1; }
.nav-links a { color: var(--ink); padding: 8px 0; }
.nav-links a:hover, .nav-links a[aria-current="page"] { color: var(--pri); }
.nav-shop { font-weight: 700; color: var(--pri); font-size: 14.5px; }
.nav-cart {
  display: inline-flex; align-items: center; gap: 8px; cursor: pointer;
  background: var(--ink); color: #fff; border: none; border-radius: 999px;
  padding: 10px 20px; font-size: 14px; font-weight: 700; min-height: 42px;
}
.nav-cart:hover { background: var(--ink-2); }
.nav-cart .count {
  background: #fff; color: var(--ink); border-radius: 999px; min-width: 20px;
  height: 20px; display: inline-flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 800; padding: 0 5px;
}
.nav-burger {
  display: none; cursor: pointer; width: 42px; height: 42px; border-radius: 12px;
  background: var(--lav); color: var(--pri); border: none;
  align-items: center; justify-content: center; font-size: 18px;
}

/* ---------- Mega menu (full-width) ---------- */
.nav-links { align-items: center; }
.nav-item { position: static; display: flex; align-items: center; }
.nav-plain { color: var(--ink); padding: 8px 0; font-weight: 600; }
.nav-plain:hover { color: var(--pri); }
.nav-trigger {
  display: inline-flex; align-items: center; gap: 5px;
  background: none; border: none; cursor: pointer; font-family: inherit;
  color: var(--ink); font-size: 14.5px; font-weight: 600; padding: 8px 0;
}
.nav-trigger .caret { width: 11px; height: 11px; opacity: .55; transition: transform .22s ease; }
.has-mega:hover .nav-trigger,
.nav-trigger[aria-expanded="true"] { color: var(--pri); }
.has-mega:hover .caret,
.has-mega.open .caret { transform: rotate(180deg); opacity: .9; }

/* full-bleed panel dropping from the sticky header */
.mega {
  position: absolute; left: 0; right: 0; top: 100%;
  background: #fff; border-top: 1.5px solid var(--line);
  box-shadow: 0 34px 50px -12px rgba(33, 26, 62, .22);
  opacity: 0; visibility: hidden; transform: translateY(8px);
  transition: opacity .24s ease, transform .24s ease, visibility .24s;
  z-index: 65; pointer-events: none;
}
.mega::before { content: ""; position: absolute; left: 0; right: 0; top: -18px; height: 18px; } /* hover bridge across header padding */
.has-mega:hover .mega,
.has-mega.open .mega { opacity: 1; visibility: visible; transform: translateY(0); pointer-events: auto; }

.mega-inner {
  max-width: 1220px; margin: 0 auto;
  display: grid; grid-template-columns: 250px minmax(0, 1fr) 320px; gap: 48px;
  padding: 34px 28px 40px; align-items: start;
}
.mega-intro { display: flex; flex-direction: column; }
.mi-eyebrow { font-family: 'Manrope', sans-serif; font-size: 11px; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; color: var(--pri); }
.mi-title { font-family: 'Manrope', sans-serif; font-weight: 800; font-size: 26px; color: var(--ink); margin-top: 8px; }
.mi-blurb { font-size: 14px; line-height: 1.6; color: var(--mut); margin-top: 12px; max-width: 230px; }

.mega-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 4px 20px; align-content: start; position: relative; }
/* liquid pill that slides + morphs between hovered links */
.mega-hl {
  position: absolute; top: 0; left: 0; width: 0; height: 0;
  background: var(--pri); border-radius: 13px; opacity: 0; pointer-events: none; z-index: 0;
  box-shadow: 0 10px 24px -8px rgba(90, 75, 202, .6);
  transition: transform .42s cubic-bezier(.34, 1.25, .3, 1),
              width .42s cubic-bezier(.34, 1.25, .3, 1),
              height .42s cubic-bezier(.34, 1.25, .3, 1),
              opacity .28s ease;
}
.nav-links .mega-link { position: relative; z-index: 1; display: block; padding: 12px 14px; border-radius: 13px; color: var(--ink); }
.mega-link:hover { background: none; }
.mega-link .ml-t { display: block; font-weight: 700; font-size: 15px; color: var(--ink); transition: color .2s ease; }
.mega-link:hover .ml-t { color: #fff; }
.mega-link .ml-d { display: block; font-size: 12.5px; color: var(--mut); margin-top: 3px; transition: color .2s ease; }
.mega-link:hover .ml-d { color: rgba(255, 255, 255, .82); }

.nav-links .mega-feat {
  display: flex; flex-direction: column; padding: 0; overflow: hidden;
  border-radius: 16px; border: 1.5px solid var(--line); background: var(--lav);
  transition: border-color .15s ease;
}
.mega-feat img { width: 100%; height: 150px; object-fit: cover; display: block; }
.mega-feat .mf-body { padding: 14px 16px 16px; }
.mega-feat .mf-t { display: block; font-weight: 800; font-size: 14.5px; line-height: 1.3; color: var(--ink); }
.mega-feat .mf-p { display: block; font-size: 12.5px; color: var(--mut); margin: 4px 0 10px; }
.mega-feat .mf-cta { display: block; font-weight: 800; color: var(--pri); font-size: 13.5px; }
.mega-feat:hover { border-color: var(--pri); }
.mega-feat:hover .mf-cta { color: var(--pri-d); }

/* ---------- s-hero-ink ---------- */
.hero-ink {
  background: var(--ink); color: #fff; border-radius: var(--r-sec);
  max-width: 1280px; margin: 8px auto 0; overflow: hidden; position: relative;
}
.hero-ink-in { display: grid; grid-template-columns: 1.08fr 0.92fr; gap: 44px; padding: 64px 56px; align-items: center; position: relative; z-index: 2; }
.hero-ink .eyebrow { color: var(--lilac); }
.hero-ink h1, .hero-ink h2 { color: #fff; }
.hero-ink .hl { color: var(--lilac); }
.hero-ink .lead { color: var(--on-ink-body); }
.hero-ink .price-anchor b { color: #fff; }
.wave { position: absolute; left: 0; right: 0; bottom: -2px; z-index: 1; pointer-events: none; }
/* Live hormone-tracker readout: trace draws in, a soft glow drifts across, the whole wave swells slowly */
.wave-line { stroke-opacity: .5; stroke-dasharray: 1000; stroke-dashoffset: 1000; animation: wave-draw 1.8s cubic-bezier(.45,0,.15,1) .25s forwards, wave-swell 11s ease-in-out infinite; }
.wave-pulse { stroke-opacity: 0; stroke-width: 4; stroke-linecap: round; stroke-dasharray: 130 870; stroke-dashoffset: 1000; filter: blur(2.6px) drop-shadow(0 0 9px rgba(169,155,247,.9)); animation: wave-sweep 7s linear 2.1s infinite, wave-swell 11s ease-in-out infinite; }
.wave-dots { stroke-opacity: .55; animation: wave-drift 1.3s linear infinite, wave-swell-dots 14s ease-in-out infinite; }
@keyframes wave-draw { to { stroke-dashoffset: 0; } }
/* soft glow fades in near the left, out near the right — no hard start/end */
@keyframes wave-sweep {
  0%   { stroke-dashoffset: 1000; stroke-opacity: 0; }
  14%  { stroke-opacity: .95; }
  86%  { stroke-opacity: .95; }
  100% { stroke-dashoffset: 0; stroke-opacity: 0; }
}
@keyframes wave-drift { to { stroke-dashoffset: -8; } }
/* slow shape-morph so the trace undulates like water (line + pulse share this to stay aligned) */
@keyframes wave-swell {
  0%, 100% { d: path("M0 92 C160 90 260 78 380 58 C500 38 580 18 660 16 C740 14 820 40 940 64 C1060 88 1180 94 1280 92"); }
  33%      { d: path("M0 90 C160 86 260 70 380 54 C500 36 580 22 660 22 C740 22 820 44 940 62 C1060 82 1180 90 1280 94"); }
  66%      { d: path("M0 94 C160 92 260 82 380 60 C500 40 580 20 660 12 C740 10 820 34 940 66 C1060 90 1180 96 1280 90"); }
}
@keyframes wave-swell-dots {
  0%, 100% { d: path("M0 104 C200 102 340 92 480 78 C640 62 780 50 920 66 C1060 82 1180 100 1280 100"); }
  33%      { d: path("M0 102 C200 100 340 96 480 82 C640 66 780 56 920 62 C1060 78 1180 96 1280 102"); }
  66%      { d: path("M0 106 C200 104 340 90 480 74 C640 58 780 52 920 70 C1060 86 1180 102 1280 98"); }
}
@media (prefers-reduced-motion: reduce) {
  .wave-line { animation: none; stroke-dashoffset: 0; }
  .wave-pulse { animation: none; stroke-opacity: 0; }
  .wave-dots { animation: none; }
}
.ticks { display: flex; gap: 20px; padding-top: 24px; margin-top: 28px; border-top: 1px solid var(--ink-2); font-size: 13.5px; font-weight: 600; color: var(--on-ink-body); flex-wrap: wrap; }

/* light hero for inner pages */
.hero-lite { padding: 64px 0 48px; text-align: center; }
.hero-lite .eyebrow { justify-content: center; }
.hero-lite h1 { font-size: 50px; }
.hero-lite .lead { max-width: 640px; margin: 18px auto 0; }
.hero-lite .cta-row { justify-content: center; margin-top: 28px; }
.cta-row { display: flex; gap: 18px; align-items: center; flex-wrap: wrap; }

/* ---------- s-panel-live (signature) ---------- */
.panel-live {
  background: #fff; color: var(--ink); border-radius: var(--r-panel);
  padding: 26px 26px 20px; box-shadow: var(--shadow-pop);
}
.panel-live .ph { display: flex; justify-content: space-between; align-items: center; font-family: 'Manrope', sans-serif; font-weight: 700; font-size: 14px; margin-bottom: 10px; }
.live { display: inline-flex; align-items: center; gap: 7px; font-size: 11.5px; color: var(--pink); font-weight: 800; letter-spacing: 0.08em; }
.live i { width: 8px; height: 8px; border-radius: 99px; background: var(--pink); animation: blink 1.6s infinite; }
@keyframes blink { 50% { opacity: 0.25; } }
.lrow { display: flex; justify-content: space-between; align-items: baseline; border-bottom: 1.5px dotted var(--line); padding: 11px 0; }
.lrow .k { font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--faint); font-weight: 700; }
.lrow .v { font-family: 'Manrope', sans-serif; font-size: 23px; font-weight: 800; font-variant-numeric: tabular-nums; }
.lrow .v.up { color: var(--pri); }
.fchart { display: flex; align-items: flex-end; gap: 4px; height: 62px; margin-top: 14px; }
.fchart i { flex: 1; background: var(--lav); border-radius: 3px 3px 0 0; }
.fchart i.f { background: var(--pri); }
.fcap { font-size: 11px; color: var(--faint); letter-spacing: 0.08em; text-transform: uppercase; margin-top: 8px; }
.panel-prod { display: flex; align-items: center; gap: 12px; background: var(--lav); border-radius: 12px; padding: 10px 14px; margin-top: 16px; }
.panel-prod img { width: 44px; height: 44px; border-radius: 9px; object-fit: cover; }
.panel-prod .t { font-size: 13px; font-weight: 700; line-height: 1.3; }
.panel-prod .s { font-size: 12px; color: var(--mut); }

/* --- "Your morning reading" builds up on load, like the device plotting your data --- */
.panel-live .ph               { animation: panel-in .6s ease .15s both; }
.panel-live .lrow:nth-child(2){ animation: panel-in .6s ease .38s both; }
.panel-live .lrow:nth-child(3){ animation: panel-in .6s ease .54s both; }
.panel-live .lrow:nth-child(4){ animation: panel-in .6s ease .70s both; }
.panel-live .fcap             { animation: panel-in .6s ease 1.9s both; }
.panel-live .panel-prod       { animation: panel-in .6s ease 2.1s both; }
.fchart i { transform-origin: bottom; animation: bar-rise .55s cubic-bezier(.2,.85,.25,1) both; }
.fchart i:nth-child(1){animation-delay:.92s}   .fchart i:nth-child(2){animation-delay:.97s}
.fchart i:nth-child(3){animation-delay:1.02s}  .fchart i:nth-child(4){animation-delay:1.07s}
.fchart i:nth-child(5){animation-delay:1.13s}  .fchart i:nth-child(6){animation-delay:1.18s}
.fchart i:nth-child(7){animation-delay:1.23s}  .fchart i:nth-child(8){animation-delay:1.28s}
.fchart i:nth-child(9){animation-delay:1.34s}  .fchart i:nth-child(10){animation-delay:1.39s}
.fchart i:nth-child(11){animation-delay:1.44s} .fchart i:nth-child(12){animation-delay:1.49s}
.fchart i:nth-child(13){animation-delay:1.55s} .fchart i:nth-child(14){animation-delay:1.60s}
.fchart i:nth-child(15){animation-delay:1.65s} .fchart i:nth-child(16){animation-delay:1.70s}
@keyframes panel-in { from { opacity: 0; transform: translateY(12px); } }
@keyframes bar-rise { from { transform: scaleY(0); } }
@media (prefers-reduced-motion: reduce) {
  .panel-live .ph, .panel-live .lrow, .panel-live .fcap, .panel-live .panel-prod, .fchart i { animation: none; }
}

/* ---------- s-stat-strip ---------- */
.stat-strip {
  max-width: 1280px; margin: 0 auto; display: grid;
  grid-template-columns: repeat(4, 1fr); border-bottom: 1.5px solid var(--line);
}
.stat-strip .cell { padding: 22px 28px; border-right: 1.5px solid var(--line); font-size: 13.5px; color: var(--mut); }
.stat-strip .cell:last-child { border-right: none; }
.stat-strip .cell b { display: block; font-family: 'Manrope', sans-serif; font-size: 21px; color: var(--ink); font-weight: 800; letter-spacing: -0.01em; }

/* ---------- s-steps ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; counter-reset: step; }
.step-card { background: #fff; border: 1.5px solid var(--line); border-radius: var(--r-panel); padding: 28px; position: relative; }
.step-card::before {
  counter-increment: step; content: "0" counter(step);
  font-family: 'Manrope', sans-serif; font-weight: 800; font-size: 15px;
  color: var(--pri); background: var(--lav); border-radius: 999px;
  padding: 6px 14px; display: inline-block; margin-bottom: 16px;
}
.step-card h3 { margin-bottom: 8px; }
.step-card p { color: var(--mut); font-size: 15px; line-height: 1.55; }
.step-card img { border-radius: 12px; margin-bottom: 16px; width: 100%; aspect-ratio: 4/3; object-fit: cover; }

/* ---------- cards / grids ---------- */
.card { background: #fff; border: 1.5px solid var(--line); border-radius: var(--r-card); padding: 26px; }
.card-title { font-family: 'Manrope', sans-serif; font-weight: 700; font-size: 17.5px; }
.icon-card { display: flex; flex-direction: column; gap: 12px; }
.icon-card img { width: 40px; height: 40px; }
.badge { display: inline-block; border-radius: 999px; font-weight: 800; font-size: 12.5px; padding: 5px 13px; }
.badge-pink { background: var(--pink); color: #fff; }
.badge-pink-soft { background: var(--pink-bg); color: var(--pink); }
.badge-lav { background: var(--lav); color: var(--pri); }

/* ---------- s-split ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.split.rev > .split-media { order: 2; }
.split-media img, .split-media video { width: 100%; border-radius: var(--r-panel); display: block; }
.split-copy { display: flex; flex-direction: column; gap: 18px; align-items: flex-start; }

/* ---------- s-compare ---------- */
.compare-scroll { overflow-x: auto; }
.compare {
  display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; min-width: 660px;
  border: 1.5px solid var(--ink); border-radius: var(--r-card); overflow: hidden;
  font-size: 15px; background: #fff;
}
.compare > div { padding: 15px 18px; border-top: 1.5px solid var(--line); }
.compare .h { border-top: none; font-weight: 700; padding: 16px 18px; }
.compare .h-ovul { background: var(--pri); color: #fff; font-family: 'Manrope', sans-serif; font-weight: 800; text-align: center; }
.compare .h-alt { background: var(--bg); color: var(--mut); text-align: center; }
.compare .c-label { font-weight: 600; }
.compare .c-ovul { background: var(--lav); color: var(--pri); font-weight: 800; text-align: center; }
.compare .c-alt { color: var(--faint); text-align: center; }

/* ---------- quotes / reviews ---------- */
.quote-card { display: flex; flex-direction: column; gap: 18px; }
.quote-card .q { font-size: 15px; line-height: 1.6; color: var(--ink-2); flex: 1; }
.quote-who { display: flex; align-items: center; gap: 13px; }
.quote-who img { width: 48px; height: 48px; border-radius: 999px; object-fit: cover; background: var(--lav); }
.quote-who .n { font-weight: 700; font-size: 15px; }
.quote-who .r { font-size: 12.5px; color: var(--faint); }
.review-card { display: flex; flex-direction: column; gap: 10px; }
.review-card .rt { font-weight: 700; font-size: 15.5px; }
.review-card .rb { color: var(--mut); font-size: 14.5px; line-height: 1.6; flex: 1; }
.review-card .rw { font-size: 13px; font-weight: 600; color: var(--faint); }
.dist-row { display: flex; align-items: center; gap: 12px; font-size: 13.5px; font-weight: 600; }
.dist-row .bar { flex: 1; height: 9px; background: var(--lav); border-radius: 999px; overflow: hidden; }
.dist-row .bar i { display: block; height: 100%; background: var(--gold); border-radius: 999px; }

/* ---------- press strip ---------- */
.press { display: flex; justify-content: center; align-items: center; gap: 12px 36px; flex-wrap: wrap; padding: 26px 28px; }
.press span { font-family: 'Manrope', sans-serif; font-weight: 700; font-size: 15px; color: var(--faint); letter-spacing: 0.02em; }
.press .pl { font-size: 11.5px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--faint); font-weight: 700; }

/* ---------- s-offer (end-cap) ---------- */
.offer {
  background: var(--ink); color: #fff; border-radius: var(--r-sec);
  display: grid; grid-template-columns: 0.9fr 1.1fr; overflow: hidden; position: relative;
}
.offer img.cover { width: 100%; height: 100%; object-fit: cover; display: block; min-height: 360px; }
.offer-copy { padding: 52px; display: flex; flex-direction: column; gap: 18px; align-items: flex-start; position: relative; z-index: 2; }
.offer .eyebrow { color: var(--lilac); }
.offer h2 { color: #fff; font-size: 34px; }
.offer .muted-l { color: var(--on-ink-mut); font-size: 16px; line-height: 1.6; }
.offer .price-line { display: flex; align-items: baseline; gap: 12px; }
.offer .price-line b { font-family: 'Manrope', sans-serif; font-size: 40px; font-weight: 800; }
.offer .ticks { border-top-color: var(--ink-2); font-size: 13px; margin-top: 4px; padding-top: 18px; }

/* ---------- s-faq (native buttons) ---------- */
.acc-group { display: flex; flex-direction: column; }
.acc { border-bottom: 1.5px solid var(--line); }
.acc-head {
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  width: 100%; background: none; border: none; text-align: left; cursor: pointer;
  padding: 19px 4px; color: var(--ink); min-height: 48px;
}
.acc-head .q { font-weight: 700; font-size: 16.5px; font-family: 'Rubik', sans-serif; }
.acc-icon {
  flex: none; width: 28px; height: 28px; border-radius: 999px; background: var(--lav);
  color: var(--pri); display: inline-flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 16px; transition: transform 0.18s ease;
}
.acc-head[aria-expanded="true"] .acc-icon { transform: rotate(45deg); }
.acc-body { display: none; padding: 0 44px 20px 4px; color: var(--mut); font-size: 15.5px; line-height: 1.65; }
.acc-body.open { display: block; }

/* ---------- s-email ---------- */
.email-band { background: var(--pri); border-radius: var(--r-sec); max-width: 1280px; margin: 0 auto; padding: 64px 28px; }
.email-in { max-width: 620px; margin: 0 auto; text-align: center; display: flex; flex-direction: column; gap: 16px; align-items: center; }
.email-band h2 { color: #fff; font-size: 32px; }
.email-band p { color: #D6CFF7; font-size: 16px; }
.email-form { display: flex; gap: 10px; width: 100%; max-width: 480px; }
.email-form .input { border: none; flex: 1; }
.email-success { background: #fff; color: var(--pri); border-radius: 999px; padding: 14px 28px; font-weight: 800; }

/* ---------- forms ---------- */
.input {
  border: 1.5px solid var(--line); border-radius: 999px; padding: 13px 20px;
  font-size: 15px; font-family: 'Rubik', sans-serif; background: #fff;
  color: var(--ink); width: 100%; min-height: 48px;
}
.input:focus-visible { outline: 2.5px solid var(--pri); outline-offset: 1px; }
textarea.input { border-radius: 16px; min-height: 130px; resize: vertical; }
.field-label { font-size: 13.5px; font-weight: 700; color: var(--mut); margin-bottom: 6px; display: block; }
.field-error { color: var(--pink); font-size: 13.5px; font-weight: 600; margin-top: 6px; }

/* ---------- tools ---------- */
.tool-card { background: #fff; border: 1.5px solid var(--ink); border-radius: var(--r-sec); padding: 40px; }
.quiz-q { font-family: 'Manrope', sans-serif; font-weight: 700; font-size: 21px; margin-bottom: 8px; }
.quiz-context { color: var(--mut); font-size: 14.5px; line-height: 1.6; background: var(--lav); border-radius: 12px; padding: 14px 18px; margin-top: 16px; }
.quiz-opts { display: flex; flex-direction: column; gap: 10px; }
.quiz-opt {
  border: 1.5px solid var(--line); border-radius: var(--r-card); padding: 15px 18px;
  cursor: pointer; font-weight: 600; font-size: 15px; background: #fff;
  text-align: left; color: var(--ink); width: 100%; min-height: 48px;
  transition: border-color 0.12s ease, background 0.12s ease;
}
.quiz-opt:hover { border-color: var(--pri); }
.quiz-opt[aria-pressed="true"], .quiz-opt.selected { border-color: var(--pri); background: var(--lav); }
.quiz-progress { height: 9px; background: var(--lav); border-radius: 999px; overflow: hidden; margin-bottom: 26px; }
.quiz-progress .bar { height: 100%; background: var(--pri); border-radius: 999px; transition: width 0.2s ease; }
.result-shell { background: var(--lav); border-radius: var(--r-panel); padding: 30px; }
.result-num { font-family: 'Manrope', sans-serif; font-size: 46px; font-weight: 800; color: var(--pri); letter-spacing: -0.02em; }

/* ---------- bridge ---------- */
.bridge {
  display: flex; gap: 22px; align-items: center; background: var(--lav);
  border-radius: var(--r-panel); padding: 26px 30px; flex-wrap: wrap;
}
.bridge img { width: 76px; height: 76px; border-radius: 14px; object-fit: cover; }
.bridge .bt { font-family: 'Manrope', sans-serif; font-weight: 700; font-size: 18px; }
.bridge .bs { color: var(--mut); font-size: 14.5px; margin-top: 3px; }
.bridge > div:nth-child(2) { flex: 1; min-width: 220px; }

/* ---------- prose ---------- */
.prose { font-size: 16.5px; line-height: 1.7; color: var(--ink-2); }
.prose h2 { font-size: 29px; margin: 42px 0 14px; }
.prose h3 { font-size: 21px; margin: 30px 0 10px; }
.prose p { margin: 0 0 16px; }
.prose ul, .prose ol { margin: 0 0 16px; padding-left: 24px; }
.prose li { margin-bottom: 8px; }
.prose blockquote {
  margin: 24px 0; padding: 18px 24px; border-left: 4px solid var(--pri);
  background: var(--lav); border-radius: 0 14px 14px 0;
}
.prose table { width: 100%; border-collapse: collapse; margin: 0 0 16px; font-size: 15px; }
.prose th { background: var(--lav); font-weight: 700; text-align: left; }
.prose th, .prose td { border: 1.5px solid var(--line); padding: 10px 14px; }
.prose img { border-radius: var(--r-card); }
.table-scroll { overflow-x: auto; }

/* ---------- blog ---------- */
.post-card { display: flex; flex-direction: column; padding: 0; overflow: hidden; }
.post-pad { padding: 24px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.post-meta { font-size: 12.5px; font-weight: 700; color: var(--faint); letter-spacing: 0.06em; text-transform: uppercase; }
.post-title { font-family: 'Manrope', sans-serif; font-weight: 700; font-size: 18.5px; line-height: 1.3; }
.post-title a { color: var(--ink); }
.post-title a:hover { color: var(--pri); }
.post-excerpt { color: var(--mut); font-size: 14.5px; line-height: 1.6; flex: 1; }

/* ---------- breadcrumb ---------- */
.breadcrumb { padding: 16px 0 0; font-size: 13.5px; color: var(--faint); }
.breadcrumb ol { list-style: none; display: flex; gap: 8px; margin: 0; padding: 0; flex-wrap: wrap; }
.breadcrumb li + li::before { content: "/"; margin-right: 8px; color: var(--line); }
.breadcrumb a { color: var(--faint); }
.breadcrumb a:hover { color: var(--pri); }

/* ---------- trust tiles ---------- */
.trust-tiles { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.trust-tile { background: var(--lav); border-radius: 12px; padding: 12px; text-align: center; font-size: 12.5px; font-weight: 700; color: var(--mut); }
.trust-tile span { font-weight: 500; color: var(--faint); }

/* ---------- footer ---------- */
.footer { background: var(--ink); color: var(--on-ink-mut); border-radius: var(--r-sec) var(--r-sec) 0 0; max-width: 1280px; margin: 84px auto 0; padding: 56px 28px 40px; }
.footer-inner { display: flex; flex-direction: column; gap: 32px; }
.footer-cols { display: grid; grid-template-columns: 1.6fr repeat(5, 1fr); gap: 28px; }
.footer-brand { display: flex; flex-direction: column; gap: 14px; align-items: flex-start; }
.footer-brand img { height: 32px; }
.footer-brand p { font-size: 13.5px; line-height: 1.6; color: #8A81AE; }
.footer h2 { font-size: 12.5px; font-weight: 700; color: #fff; letter-spacing: 0.12em; text-transform: uppercase; margin: 0 0 14px; font-family: 'Manrope', sans-serif; }
.footer-col a { display: block; color: var(--on-ink-mut); font-size: 14px; padding: 4px 0; }
.footer-col a:hover { color: #fff; }
.footer-disclaimer { font-size: 12.5px; line-height: 1.6; color: #8A81AE; max-width: 900px; }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap; align-items: center; border-top: 1px solid var(--ink-2); padding-top: 22px; font-size: 13px; }
.footer-social { display: flex; gap: 10px; margin-top: 2px; }
.footer-social a {
  display: inline-flex; align-items: center; justify-content: center;
  width: 38px; height: 38px; border-radius: 999px;
  background: rgba(255, 255, 255, 0.08); color: #D6CFF7;
  transition: background .15s ease, color .15s ease, transform .15s ease;
}
.footer-social a:hover { background: var(--pri); color: #fff; transform: translateY(-2px); }
.footer-credit { font-size: 13px; color: #8A81AE; }
.footer-credit a { color: #D6CFF7; font-weight: 700; }
.footer-credit a:hover { color: #fff; }

/* ---------- sticky ATC ---------- */
.sticky-atc {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 70; background: #fff;
  border-top: 1.5px solid var(--line); box-shadow: 0 -8px 30px rgba(33, 26, 62, 0.10);
  transform: translateY(110%); transition: transform 0.25s ease;
}
.sticky-atc.visible { transform: translateY(0); }
.sticky-atc-in { max-width: 1280px; margin: 0 auto; display: flex; align-items: center; gap: 18px; padding: 12px 28px; }
.sticky-atc img { width: 48px; height: 48px; border-radius: 10px; object-fit: cover; }
.sticky-atc .t { font-weight: 700; font-size: 15px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.sticky-atc .p { font-size: 13.5px; color: var(--mut); }
.sticky-atc .ends { font-size: 13px; font-weight: 700; color: var(--pink); font-variant-numeric: tabular-nums; }
.sticky-close {
  flex: none; width: 34px; height: 34px; border-radius: 999px; border: none; cursor: pointer;
  background: var(--lav); color: var(--mut); font-size: 22px; line-height: 1;
  display: inline-flex; align-items: center; justify-content: center;
  transition: background .15s ease, color .15s ease;
}
.sticky-close:hover { background: #E2D9F8; color: var(--ink); }

/* ---------- cart drawer ---------- */
.cart-overlay { position: fixed; inset: 0; background: rgba(33, 26, 62, 0.5); z-index: 90; display: none; border: none; padding: 0; width: 100%; }
.cart-drawer {
  position: fixed; top: 0; right: 0; bottom: 0; width: 420px; max-width: 94vw;
  background: #fff; z-index: 95; display: flex; flex-direction: column;
  box-shadow: -16px 0 50px rgba(33, 26, 62, 0.2);
  transform: translateX(105%); transition: transform 0.25s ease;
}
body.cart-open .cart-overlay { display: block; }
body.cart-open .cart-drawer { transform: translateX(0); }
.cart-head { display: flex; justify-content: space-between; align-items: center; padding: 20px 24px; border-bottom: 1.5px solid var(--line); }
.cart-head .t { font-family: 'Manrope', sans-serif; font-weight: 800; font-size: 20px; }
.cart-close {
  cursor: pointer; width: 36px; height: 36px; border-radius: 999px; background: var(--lav);
  border: none; display: inline-flex; align-items: center; justify-content: center;
  font-weight: 700; color: var(--pri); font-size: 15px;
}
.ship-bar { padding: 14px 24px; border-bottom: 1.5px solid var(--line); background: var(--lav); }
.ship-bar .st { font-size: 13px; font-weight: 700; color: var(--ink); display: flex; gap: 8px; align-items: center; }
.ship-bar .track { height: 8px; background: #fff; border-radius: 999px; margin-top: 8px; overflow: hidden; }
.ship-bar .fill { height: 100%; width: 100%; background: var(--pri); border-radius: 999px; }
.cart-body { flex: 1; overflow: auto; padding: 20px 24px; display: flex; flex-direction: column; gap: 18px; }
.cart-empty { text-align: center; color: var(--mut); padding: 40px 0; line-height: 1.7; }
.cart-item { display: flex; gap: 14px; align-items: center; }
.cart-item img { width: 64px; height: 64px; border-radius: 12px; object-fit: cover; background: var(--lav); }
.cart-item .ci-t { font-weight: 700; font-size: 14.5px; line-height: 1.35; }
.cart-item .ci-p { font-size: 13.5px; color: var(--mut); margin-top: 2px; }
.qty-btn {
  cursor: pointer; width: 28px; height: 28px; border-radius: 8px; background: var(--lav);
  border: none; display: inline-flex; align-items: center; justify-content: center;
  font-weight: 800; color: var(--pri); font-size: 15px;
}
.cart-upsell { border: 1.5px dashed var(--lilac); border-radius: var(--r-card); padding: 14px; display: flex; gap: 12px; align-items: center; }
.cart-upsell img { width: 52px; height: 52px; border-radius: 10px; object-fit: cover; }
.cart-upsell .ut { font-size: 13.5px; font-weight: 700; line-height: 1.3; }
.cart-upsell .up { font-size: 13px; color: var(--mut); }
.cart-foot { border-top: 1.5px solid var(--line); padding: 20px 24px; display: flex; flex-direction: column; gap: 12px; }
.cart-total { display: flex; justify-content: space-between; font-weight: 800; font-size: 17px; }
.cart-note { font-size: 13px; color: var(--faint); }
.cart-checkout {
  background: var(--pri); color: #fff; border-radius: 999px; padding: 16px;
  text-align: center; font-weight: 800; font-size: 16px; display: block; min-height: 48px;
}
.cart-checkout:hover { background: var(--pri-d); color: #fff; }
.cart-perks { display: flex; justify-content: center; gap: 14px; font-size: 12px; font-weight: 600; color: var(--faint); }

/* ---------- popup ---------- */
.popup-overlay {
  position: fixed; inset: 0; background: rgba(33, 26, 62, 0.55); z-index: 100;
  display: none; align-items: center; justify-content: center; padding: 24px;
}
body.popup-open .popup-overlay { display: flex; }
.popup { background: #fff; border-radius: 24px; max-width: 440px; width: 100%; overflow: hidden; box-shadow: var(--shadow-pop); }
.popup img { width: 100%; height: 170px; object-fit: cover; display: block; }
.popup-body { padding: 28px; display: flex; flex-direction: column; gap: 14px; text-align: center; }
.popup-title { font-family: 'Manrope', sans-serif; font-weight: 800; font-size: 24px; }
.popup-dismiss { cursor: pointer; color: var(--faint); font-size: 13.5px; font-weight: 600; background: none; border: none; }

/* ---------- responsive ---------- */
@media (max-width: 1020px) {
  h1 { font-size: 44px; }
  h2 { font-size: 31px; }
  .hero-lite h1 { font-size: 40px; }
  .hero-ink-in { grid-template-columns: 1fr; padding: 44px 32px; }
  .split, .grid-2, .offer { grid-template-columns: 1fr; }
  .split.rev > .split-media { order: 0; }
  .grid-3, .steps { grid-template-columns: 1fr 1fr; }
  .stat-strip { grid-template-columns: 1fr 1fr; }
  .stat-strip .cell:nth-child(2n) { border-right: none; }
  .stat-strip .cell:nth-child(-n+2) { border-bottom: 1.5px solid var(--line); }
  .footer-cols { grid-template-columns: 1fr 1fr; }
  .sec { padding: 60px 0; }
}
@media (max-width: 860px) {
  .nav-links {
    display: none; position: absolute; top: 100%; left: 0; right: 0;
    background: #fff; border-bottom: 1.5px solid var(--line);
    flex-direction: column; gap: 0; padding: 8px 28px 16px;
    box-shadow: 0 20px 40px rgba(33, 26, 62, 0.12);
  }
  .nav-links a { padding: 13px 0; border-bottom: 1px solid var(--lav); font-size: 16px; }
  body.nav-open .nav-links { display: flex; }
  .nav-burger { display: inline-flex; }
  .nav { position: relative; gap: 14px; }

  /* Mega menu → in-flow accordions on mobile */
  .nav-links { align-items: stretch; }
  .nav-item { flex-direction: column; align-items: stretch; width: 100%; }
  .mega-hl { display: none; }
  .mega-link:hover .ml-t, .mega-link:active .ml-t { color: var(--ink); }
  .mega-link:hover .ml-d, .mega-link:active .ml-d { color: var(--mut); }
  .mega-link:active { background: var(--lav); }
  .nav-trigger { justify-content: space-between; width: 100%; padding: 13px 0; font-size: 16px; border-bottom: 1px solid var(--lav); }
  .nav-plain { padding: 13px 0; border-bottom: 1px solid var(--lav); font-size: 16px; }
  .mega { position: static; background: none; border-top: none; box-shadow: none; opacity: 1; transform: none; visibility: hidden; max-height: 0; overflow: hidden; transition: max-height .3s ease; pointer-events: auto; z-index: auto; }
  .mega::before { display: none; }
  .has-mega:hover .mega { visibility: hidden; max-height: 0; }
  .has-mega.open .mega { visibility: visible; max-height: 900px; }
  .mega-inner { display: block; max-width: none; margin: 0; padding: 4px 0 12px; }
  .mega-intro { display: none; }
  .mega-cols { grid-template-columns: 1fr; gap: 0; }
  .nav-links .mega-link { padding: 11px 10px; border-bottom: none; font-size: 15px; }
  .nav-links .mega-feat { width: 100%; margin-top: 10px; padding: 0; border-bottom: none; }
  .mega-feat img { height: 130px; }
}
@media (max-width: 640px) {
  h1 { font-size: 35px; }
  h2 { font-size: 26px; }
  .hero-lite h1 { font-size: 33px; }
  .hero-ink { border-radius: 0; margin-top: 0; }
  .grid-3, .steps { grid-template-columns: 1fr; }
  .footer-cols { grid-template-columns: 1fr; }
  .email-form { flex-direction: column; }
  .email-band, .footer { border-radius: 0; }
  .sticky-atc .ends, .sticky-atc img { display: none; }
  .tool-card { padding: 24px; }
  .offer-copy { padding: 32px 24px; }
}
