/* =====================================================================
   Live Longer & Stronger Past 60 — Landing Page
   Palette: warm ivory · clinical navy · teal · warm gold
   Type:    Poppins (display / headings) · Montserrat (body)
   ===================================================================== */

:root{
  --ivory:        #faf6ef;
  --ivory-2:      #f3ece0;
  --paper:        #fffdf8;
  --navy:         #15324f;
  --navy-deep:    #0e2438;
  --navy-2:       #1d4666;
  --teal:         #1f8a8c;
  --teal-deep:    #156b6d;
  --teal-soft:    #e3f0ef;
  --gold:         #b8893b;
  --gold-soft:    #e7c98a;
  --gold-bright:  #e2b15c;
  --ink:          #243744;
  --ink-soft:     #4c5a63;
  --line:         #e4dccd;
  --danger:       #b4452f;
  --red:          #c0392b;

  --maxw:         1180px;
  --r:            18px;
  --r-lg:         26px;
  --shadow-sm:    0 2px 10px rgba(21,50,79,.06);
  --shadow:       0 18px 50px -22px rgba(21,50,79,.28);
  --shadow-lg:    0 40px 80px -30px rgba(14,36,56,.45);

  --display: "Poppins", "Segoe UI", system-ui, sans-serif;
  --sans:    "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  /* legacy alias so any --serif reference still resolves to the display face */
  --serif:   "Poppins", "Segoe UI", system-ui, sans-serif;
}

/* ---------- reset ---------- */
*,*::before,*::after{ box-sizing:border-box; }
html{ scroll-behavior:smooth; -webkit-text-size-adjust:100%; }
body{
  margin:0;
  font-family:var(--sans);
  font-size:18.5px;
  line-height:1.66;
  color:var(--ink);
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
  /* premium, senior-friendly page background: soft warm radials + faint weave.
     Scrolls normally (no background-attachment:fixed) so scrolling stays at 60fps. */
  background-color:var(--ivory);
  background-image:
    radial-gradient(120% 80% at 50% -8%, #fffdf8 0%, rgba(255,253,248,0) 55%),
    radial-gradient(90% 60% at 100% 8%, rgba(31,138,140,.045) 0%, rgba(31,138,140,0) 60%),
    radial-gradient(80% 60% at 0% 92%, rgba(184,137,59,.05) 0%, rgba(184,137,59,0) 60%),
    linear-gradient(180deg, var(--ivory) 0%, var(--ivory-2) 100%);
}
img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }
ul{ margin:0; padding:0; list-style:none; }
h1,h2,h3{ margin:0; font-family:var(--display); font-weight:600; color:var(--navy); line-height:1.1; letter-spacing:-.015em; }
s{ color:inherit; opacity:.55; }
strong,b{ font-weight:700; }
em{ font-style:italic; }
:focus-visible{ outline:3px solid var(--teal); outline-offset:3px; border-radius:6px; }

.wrap{ width:100%; max-width:var(--maxw); margin-inline:auto; padding-inline:22px; }
.ink-gold{ color:var(--gold); }
.ink-teal{ color:var(--teal); }
.ink-red{ color:var(--red); }

/* small inline check / svg icon */
.ic{ width:1.05em; height:1.05em; flex:none; fill:none; stroke:currentColor; stroke-width:2.4; stroke-linecap:round; stroke-linejoin:round; }

/* ---------- section scaffolding ---------- */
.section{ padding:clamp(64px,9vw,118px) 0; position:relative; }
/* gentle alternating tints — calm, never busy */
.section--ivory{ background:linear-gradient(180deg, rgba(243,236,224,.72), rgba(243,236,224,.4)); }
.section--navy{ background:radial-gradient(120% 120% at 80% -10%, var(--navy-2) 0%, var(--navy) 45%, var(--navy-deep) 100%); color:#eaf1f3; }
.section--navy h2,.section--navy h3{ color:#fff; }
/* hairline dividers between sections for crisp editorial separation */
.section + .section{ border-top:1px solid rgba(228,220,205,.55); }

.section__head{ max-width:760px; margin:0 auto clamp(40px,5vw,64px); text-align:center; }
.section__head--light{ color:#dfeaec; }
.section__title{ font-size:clamp(1.95rem,4.5vw,3.05rem); letter-spacing:-.02em; }
.section__title em{ font-style:italic; color:var(--gold); }
.section__lede{ margin:1rem auto 0; max-width:600px; color:var(--ink-soft); font-size:1.12rem; }
/* small ornament under each section eyebrow→title pairing */
.section__head .section__title::after{
  content:""; display:block; width:54px; height:2px; margin:1.1rem auto 0;
  background:linear-gradient(90deg, var(--gold), var(--gold-bright));
  border-radius:2px; opacity:.85;
}
.section__head--light .section__title::after{ background:linear-gradient(90deg,var(--gold-bright),#f0d59a); }
.section--navy .section__lede{ color:#bcd0d4; }

.kicker{
  display:inline-flex; align-items:center; gap:.7em;
  font-family:var(--sans); font-weight:700; font-size:.8rem;
  letter-spacing:.2em; text-transform:uppercase; color:var(--teal);
  margin:0 0 1rem;
}
/* editorial hairline flanking the eyebrow label */
.kicker::before,.kicker::after{
  content:""; height:1px; width:26px;
  background:linear-gradient(90deg,transparent,var(--gold-soft));
}
.kicker::before{ background:linear-gradient(90deg,var(--gold-soft),transparent); }
.kicker--center{ justify-content:center; }
.kicker--light{ color:var(--gold-bright); }
.kicker--light::before,.kicker--light::after{ background:linear-gradient(90deg,transparent,rgba(226,177,92,.6)); }
.kicker--light::before{ background:linear-gradient(90deg,rgba(226,177,92,.6),transparent); }

/* ===================================================================
   STICKY TOP BAR
   =================================================================== */
.topbar{
  position:sticky; top:0; z-index:60;
  /* solid near-opaque navy instead of backdrop-filter blur — cheap, identical read */
  background:rgba(14,36,56,.97);
  color:#eaf1f3;
  border-bottom:1px solid rgba(255,255,255,.08);
}
.topbar__inner{
  max-width:var(--maxw); margin-inline:auto; padding:9px 22px;
  display:grid; grid-template-columns:1fr auto 1fr; align-items:center; gap:18px;
}
/* center column = brand; timer left, secure right keep the brand visually centered */
.topbar__inner .wordmark{ grid-column:2; justify-self:center; }
.topbar__inner .topbar__timer{ grid-column:3; justify-self:end; }
.topbar__inner .topbar__secure{ grid-column:1; justify-self:start; order:-1; }
.wordmark{
  display:inline-flex; align-items:center; font-family:var(--display); font-weight:600;
  font-size:1.06rem; color:#fff; white-space:nowrap;
  letter-spacing:.04em;
}
.wordmark__text{
  background:linear-gradient(92deg, #fff 0%, var(--gold-soft) 55%, var(--gold-bright) 100%);
  -webkit-background-clip:text; background-clip:text; -webkit-text-fill-color:transparent; color:var(--gold-bright);
}
.topbar__timer{ display:flex; align-items:center; gap:.6em; }
.topbar__label{ font-size:.78rem; letter-spacing:.04em; color:#aac3c8; text-transform:uppercase; font-weight:600; }
/* mobile-only "LAUNCH OFFER ENDS IN" label that replaces the brand on small screens */
.topbar__offerlabel{ display:none; }
.countdown{ display:inline-flex; align-items:center; gap:.12em; font-variant-numeric:tabular-nums; font-weight:700; }
.countdown__seg{
  background:rgba(255,255,255,.1); color:#fff;
  padding:.2em .42em; border-radius:7px; font-size:1rem;
  min-width:1.9em; text-align:center; letter-spacing:.02em;
}
.countdown__colon{ color:var(--gold-bright); font-weight:800; }
.topbar__secure{ display:inline-flex; align-items:center; gap:.45em; font-size:.82rem; color:#9fbac0; font-weight:600; }
.topbar__secure svg{ color:var(--teal); }

/* ---- MOBILE TOP BAR: hide brand + secure, center the SAME "LAUNCH OFFER ENDS IN" label + timer ---- */
@media (max-width:880px){
  .topbar__inner{ display:flex; justify-content:center; align-items:center; gap:12px; }
  .topbar__inner .wordmark{ display:none; }
  .topbar__inner .topbar__secure{ display:none; }
  .topbar__timer{ gap:.55em; }
  .topbar__label{ display:inline; }            /* identical label + font as desktop */
  .countdown__seg{ font-size:.92rem; padding:.18em .34em; min-width:1.7em; }
}
@media (max-width:380px){
  .topbar__label{ font-size:.7rem; }
  .countdown__seg{ font-size:.84rem; padding:.16em .3em; min-width:1.55em; }
}

/* ===================================================================
   HERO
   =================================================================== */
.hero{
  position:relative; isolation:isolate;
  background:
    radial-gradient(80% 60% at 12% 0%, #fffdf8 0%, transparent 60%),
    linear-gradient(180deg, var(--ivory) 0%, var(--ivory-2) 100%);
  padding:clamp(40px,6vw,72px) 0 clamp(60px,8vw,96px);
  overflow:hidden;
}
.hero__glow{
  position:absolute; inset:auto -10% -40% 30%; height:90%;
  /* pre-feathered radial instead of filter:blur — no per-scroll repaint */
  background:radial-gradient(closest-side, rgba(31,138,140,.16), rgba(31,138,140,.05) 55%, transparent 75%);
  z-index:-1;
}
.hero__grain{
  position:absolute; inset:0; z-index:-1; opacity:.5; pointer-events:none;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.045'/%3E%3C/svg%3E");
}
.hero__grid{
  display:grid; grid-template-columns:1.05fr .95fr; gap:clamp(30px,5vw,70px);
  align-items:center;
}
.eyebrow{
  display:inline-flex; align-items:center; gap:.6em;
  margin:0 0 1.1rem; font-weight:700; color:var(--teal-deep);
  font-size:.94rem; letter-spacing:.02em;
}
.eyebrow__dot{ width:9px; height:9px; border-radius:50%; background:var(--gold); box-shadow:0 0 0 4px rgba(184,137,59,.18); }

/* premium author credential treatment */
.credential{
  display:inline-flex; align-items:center; gap:.85em; margin:0 0 1.3rem;
}
.credential__rule{ width:34px; height:2px; flex:none; border-radius:2px; background:linear-gradient(90deg,var(--gold-bright),var(--gold)); box-shadow:0 0 8px rgba(226,177,92,.45); }
.credential__name{ font-family:var(--display); font-weight:600; color:var(--navy); font-size:1.02rem; letter-spacing:.06em; }
.credential__role{
  font-family:var(--sans); font-weight:700; font-size:.72rem; letter-spacing:.22em; text-transform:uppercase;
  color:var(--teal-deep); padding-left:.85em; border-left:1px solid var(--gold-soft);
}

.hero__title{
  font-size:clamp(2.2rem,5.2vw,3.8rem);
  font-weight:600; letter-spacing:-.018em; line-height:1.04;
}
.hero__title .ink-gold{ font-style:italic; }
.hero__sub{
  margin:1.4rem 0 0; max-width:540px;
  font-size:1.2rem; color:var(--ink-soft);
}

.hero__cta{ margin-top:2rem; }
.hero__mini{
  display:flex; flex-wrap:wrap; gap:.4rem 1.4rem; margin-top:1.8rem;
  font-weight:600; color:var(--navy); font-size:1rem;
}
.hero__mini li{ display:inline-flex; align-items:center; gap:.45em; }
.hero__mini .ic{ color:var(--teal); }

/* ---- buttons ---- */
.btn{
  display:inline-flex; flex-direction:column; align-items:center; justify-content:center;
  gap:2px; text-align:center;
  min-height:60px; padding:16px 34px;
  border-radius:14px; font-family:var(--display); font-weight:600;
  font-size:1.1rem; letter-spacing:.04em;
  cursor:pointer; border:none; position:relative; overflow:hidden; isolation:isolate;
  transition:transform .18s cubic-bezier(.2,.8,.3,1), box-shadow .22s ease, filter .2s ease;
}
.btn--primary{
  background:linear-gradient(165deg,#efc878 0%, var(--gold-bright) 35%, var(--gold) 72%, #a5762e 100%);
  color:#2e2006;
  box-shadow:0 16px 30px -12px rgba(184,137,59,.7), inset 0 1px 0 rgba(255,255,255,.5), inset 0 -1px 0 rgba(120,84,24,.35);
}
/* soft sheen sweep on the CTA so it reads polished, not flat */
.btn--primary::after{
  content:""; position:absolute; inset:0; z-index:-1;
  background:linear-gradient(120deg, transparent 30%, rgba(255,255,255,.35) 48%, transparent 66%);
  transform:translateX(-130%); transition:transform .7s cubic-bezier(.2,.7,.2,1);
}
.btn--primary:hover{ transform:translateY(-3px); box-shadow:0 24px 40px -14px rgba(184,137,59,.82), inset 0 1px 0 rgba(255,255,255,.6); filter:saturate(1.05); }
.btn--primary:hover::after{ transform:translateX(130%); }
.btn--primary:active{ transform:translateY(-1px); }
.btn--xl{ min-height:64px; font-size:1.18rem; padding:18px 40px; width:100%; max-width:460px; }
.btn__main{ line-height:1.12; }
.btn__arrow{ display:inline-block; margin-left:.5em; transition:transform .2s cubic-bezier(.2,.8,.3,1); }
.btn:hover .btn__arrow{ transform:translateX(5px); }
@media (prefers-reduced-motion: reduce){ .btn__arrow{ transition:none; } }
.btn__price{ font-size:.78rem; font-weight:600; opacity:.82; letter-spacing:.06em; }
.btn__price b{ font-size:.92rem; }

.trustline{
  display:flex; align-items:center; gap:.6em; margin:1rem 0 0;
  font-size:.98rem; color:var(--ink-soft); font-weight:600;
}
.trustline--center{ justify-content:center; text-align:center; }
.stars{ color:var(--gold); letter-spacing:.08em; font-size:1.05rem; }

/* ===================================================================
   3D BOOK COVER
   =================================================================== */
.hero__book{ display:grid; place-items:center; position:relative; isolation:isolate; }
/* premium static halo behind the 3D cover — lifts it off the page (cheap radial, no blur filter) */
.hero__book::before{
  content:""; position:absolute; z-index:-1; pointer-events:none;
  width:120%; height:120%; top:50%; left:50%; transform:translate(-50%,-52%);
  background:
    radial-gradient(46% 42% at 50% 46%, rgba(226,177,92,.26), rgba(226,177,92,.08) 46%, transparent 70%),
    radial-gradient(60% 55% at 50% 60%, rgba(31,138,140,.14), transparent 72%);
}
.book-stage{ position:relative; perspective:1700px; width:min(360px,82vw); }
.book{
  position:relative;
  transform-style:preserve-3d;
  transform:rotateY(-26deg) rotateX(6deg);
  animation:bookFloat 7s ease-in-out infinite;
  will-change:transform;
}
@keyframes bookFloat{
  0%,100%{ transform:rotateY(-26deg) rotateX(6deg) translateY(0); }
  50%{ transform:rotateY(-21deg) rotateX(5deg) translateY(-14px); }
}

/* aspect ratio of a real book ~ 1 : 1.45 */
.cover{ position:relative; aspect-ratio:1 / 1.46; width:100%; transform-style:preserve-3d; }

/* page block extruding behind cover */
.book__pages{
  position:absolute; top:1.6%; right:-2px; height:96.5%; width:36px;
  transform:translateZ(-18px) translateX(20px) rotateY(90deg);
  transform-origin:right center;
  background:repeating-linear-gradient(90deg,#fffefb 0,#fffefb 1px,#e7ddca 2px,#fffefb 3px);
  border-radius:2px;
  box-shadow:inset -6px 0 12px rgba(0,0,0,.12);
}

/* spine */
.cover__spine{
  position:absolute; left:0; top:0; height:100%; width:34px;
  transform:translateX(-17px) rotateY(-90deg);
  transform-origin:right center;
  background:linear-gradient(90deg,var(--navy-deep),#0a1c2c 60%,#06141f);
  border-radius:3px 0 0 3px;
}
.cover__spine::after{
  content:""; position:absolute; left:50%; top:0; width:2px; height:100%;
  transform:translateX(-50%); background:linear-gradient(var(--gold),transparent);
  opacity:.6;
}

.cover__face{
  position:absolute; inset:0;
  border-radius:3px 8px 8px 3px;
  background:var(--navy-deep);
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,.08),
    inset 9px 0 22px rgba(0,0,0,.3);
  overflow:hidden;
}
/* the REAL printed cover image fills the front face */
.cover__img{
  position:absolute; inset:0; width:100%; height:100%;
  object-fit:cover; object-position:center;
  border-radius:inherit;
}
/* subtle realistic gloss sweep over the printed image */
.cover__gloss{
  position:absolute; inset:0; pointer-events:none; border-radius:inherit;
  background:
    linear-gradient(115deg, rgba(255,255,255,.18) 0%, transparent 26%, transparent 74%, rgba(255,255,255,.06) 100%),
    linear-gradient(90deg, rgba(0,0,0,.22) 0%, transparent 9%); /* gutter shadow near spine */
}

/* soft ground shadow */
.book__shadow{
  position:absolute; left:50%; bottom:-7%; width:78%; height:34px;
  transform:translateX(-54%) rotateX(72deg);
  background:radial-gradient(closest-side, rgba(14,36,56,.5), transparent 72%);
  filter:blur(14px); z-index:-1;
}

.book-badge{
  position:absolute; right:-2%; bottom:6%; z-index:3;
  display:grid; place-items:center; width:88px; height:88px; border-radius:50%;
  background:linear-gradient(160deg,#fff,#fbf3e2);
  box-shadow:var(--shadow), inset 0 0 0 2px var(--gold-soft);
  transform:rotate(-8deg);
}
.book-badge b{ font-family:var(--serif); font-size:1.7rem; color:var(--navy); line-height:1; }
.book-badge span{ font-size:.66rem; letter-spacing:.14em; text-transform:uppercase; color:var(--teal-deep); font-weight:700; }

.hero__scroll{ position:absolute; left:50%; bottom:18px; transform:translateX(-50%); width:24px; height:38px; border:2px solid rgba(21,50,79,.3); border-radius:14px; display:grid; justify-items:center; padding-top:6px; }
.hero__scroll span{ width:4px; height:8px; border-radius:3px; background:var(--teal); animation:scrolldot 1.8s ease-in-out infinite; }
@keyframes scrolldot{ 0%{ opacity:0; transform:translateY(-4px);} 40%{opacity:1;} 80%,100%{ opacity:0; transform:translateY(10px);} }

@media (max-width:880px){
  .hero__grid{ grid-template-columns:1fr; text-align:center; }
  .hero__sub{ margin-inline:auto; }
  .hero__cta .btn{ width:100%; max-width:460px; }
  .hero__mini{ justify-content:center; }
  .trustline{ justify-content:center; }
  .eyebrow{ justify-content:center; }
  .hero__book{ order:-1; margin-bottom:14px; }
  .hero__scroll{ display:none; }
  /* hide the "324 pages" gold seal on mobile (desktop keeps it) */
  .book-badge{ display:none; }
}

/* ===================================================================
   LIVE LIFE TO THE FULLEST — VIDEO
   =================================================================== */
.joy{
  background:
    radial-gradient(80% 70% at 88% 0%, rgba(31,138,140,.06), transparent 60%),
    linear-gradient(180deg, var(--paper), var(--ivory));
}
.joy__grid{ display:grid; grid-template-columns:1.05fr .95fr; gap:clamp(30px,5vw,64px); align-items:center; }
.joy__media{ position:relative; }
.joy__frame{
  position:relative; border-radius:var(--r-lg); overflow:hidden;
  box-shadow:var(--shadow-lg);
  border:1px solid rgba(255,255,255,.5);
  outline:1px solid var(--gold-soft); outline-offset:-7px;
  background:var(--navy-deep);
  aspect-ratio:16/10;
}
.joy__video{ width:100%; height:100%; object-fit:cover; display:block; }
.joy__frame-glow{
  position:absolute; inset:0; pointer-events:none; border-radius:inherit;
  box-shadow:inset 0 0 60px rgba(14,36,56,.28);
  background:linear-gradient(180deg, transparent 60%, rgba(14,36,56,.18) 100%);
}
.joy__copy .kicker{ margin-bottom:1rem; }
.joy__title{ text-align:left; font-size:clamp(1.7rem,3.8vw,2.6rem); }
.joy__title::after{ display:none; } /* no centered ornament here */
.joy__title em{ color:var(--gold); font-style:italic; }
.joy__lede{ margin:1.2rem 0 0; font-size:1.18rem; color:var(--navy); font-weight:600; line-height:1.5; }
.joy__body{ margin:1rem 0 0; font-size:1.08rem; color:var(--ink-soft); }
.joy__body em{ color:var(--teal-deep); font-style:italic; font-weight:600; }
@media (max-width:860px){
  .joy__grid{ grid-template-columns:1fr; }
  .joy__media{ order:-1; }
  .joy__copy{ text-align:center; }
  .joy__title{ text-align:center; }
  .joy__copy .kicker{ justify-content:center; }
}

/* ===================================================================
   SOURCES STRIP
   =================================================================== */
.sources-strip{ background:var(--navy-deep); color:#cfe0e3; padding:20px 0; }
.sources-strip__inner{ display:flex; flex-wrap:wrap; align-items:center; justify-content:center; gap:14px 30px; }
.sources-strip__lead{ font-size:.82rem; letter-spacing:.14em; text-transform:uppercase; font-weight:700; color:#7fa3aa; }
.sources-strip__logos{ display:flex; flex-wrap:wrap; gap:12px 26px; align-items:center; justify-content:center; }
.sources-strip__logos li{ font-family:var(--serif); font-weight:600; font-size:1.18rem; color:#fff; opacity:.92; letter-spacing:.01em; }

/* On mobile, wrap the whole strip in a subtle centered pill (footer-disclaimer treatment)
   so the lead + logos read as one intentional, centered block instead of wrapping ragged. */
@media (max-width:880px){
  .sources-strip__inner{
    flex-direction:column; text-align:center; gap:12px;
    max-width:520px; margin-inline:auto;
    padding:18px 22px;
    border:1px solid rgba(255,255,255,.12);
    border-radius:14px;
    background:rgba(255,255,255,.035);
  }
  .sources-strip__lead{ width:100%; }
  .sources-strip__logos{ gap:10px 22px; }
}

/* ===================================================================
   EMPATHY
   =================================================================== */
.pain-grid{ display:grid; grid-template-columns:repeat(4,1fr); gap:20px; }
.pain{
  position:relative; isolation:isolate;
  background:linear-gradient(180deg,#fffefb 0%, var(--paper) 100%);
  border:1px solid var(--line); border-radius:var(--r);
  padding:30px 26px; box-shadow:var(--shadow-sm);
  transition:transform .28s cubic-bezier(.2,.8,.3,1), box-shadow .28s ease, border-color .28s ease;
}
.pain:hover{ transform:translateY(-6px); box-shadow:var(--shadow); border-color:var(--gold-soft); }
.pain__ic{ width:50px; height:50px; border-radius:13px; display:grid; place-items:center; background:var(--teal-soft); color:var(--teal-deep); margin-bottom:16px; }
.pain__ic svg{ width:26px; height:26px; fill:none; stroke:currentColor; stroke-width:2; stroke-linecap:round; stroke-linejoin:round; }
.pain h3{ font-size:1.18rem; margin-bottom:.5rem; line-height:1.18; }
.pain p{ margin:0; font-size:1.02rem; color:var(--ink-soft); }

.empathy__turn{ text-align:center; margin:clamp(40px,5vw,60px) auto 0; max-width:740px; font-family:var(--serif); font-size:clamp(1.4rem,3.2vw,2rem); color:var(--navy); line-height:1.25; }

@media (max-width:880px){ .pain-grid{ grid-template-columns:repeat(2,1fr); } }
@media (max-width:520px){ .pain-grid{ grid-template-columns:1fr; } }

/* ===================================================================
   WHY DIFFERENT
   =================================================================== */
.why-grid{ display:grid; grid-template-columns:repeat(2,1fr); gap:22px; max-width:980px; margin-inline:auto; }
.feature{
  position:relative; background:linear-gradient(180deg,#fffefb,var(--paper)); border:1px solid var(--line);
  border-radius:var(--r-lg); padding:34px 32px 32px 38px; box-shadow:var(--shadow-sm);
  overflow:hidden; transition:transform .28s cubic-bezier(.2,.8,.3,1), box-shadow .28s ease;
}
.feature:hover{ transform:translateY(-5px); box-shadow:var(--shadow); }
.feature::before{ content:""; position:absolute; left:0; top:0; bottom:0; width:5px; background:linear-gradient(var(--teal),var(--teal-deep)); }
.feature__num{ font-family:var(--serif); font-style:italic; font-size:2.8rem; font-weight:500; color:var(--gold); opacity:.55; line-height:1; display:block; margin-bottom:.3rem; }
.feature h3{ font-size:1.32rem; margin-bottom:.55rem; }
.feature p{ margin:0; color:var(--ink-soft); font-size:1.05rem; }
@media (max-width:760px){ .why-grid{ grid-template-columns:1fr; } }

/* ===================================================================
   WHAT'S INSIDE
   =================================================================== */
.parts{ display:grid; grid-template-columns:repeat(3,1fr); gap:20px; }
.part{
  background:var(--paper); border:1px solid var(--line); border-radius:var(--r);
  padding:26px 24px; box-shadow:var(--shadow-sm);
  transition:transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.part:hover{ transform:translateY(-4px); box-shadow:var(--shadow); border-color:var(--gold-soft); }
.part__head{ border-bottom:1px solid var(--line); padding-bottom:14px; margin-bottom:14px; }
.part__no{ display:inline-block; font-size:.74rem; letter-spacing:.14em; text-transform:uppercase; font-weight:700; color:var(--teal); margin-bottom:.35rem; }
.part__head h3{ font-size:1.3rem; }
.part__list li{ position:relative; padding-left:24px; margin:.34rem 0; font-size:1.02rem; color:var(--ink); }
.part__list li::before{ content:""; position:absolute; left:2px; top:.62em; width:9px; height:9px; border-radius:2px; background:var(--gold); transform:rotate(45deg); }
@media (max-width:860px){ .parts{ grid-template-columns:repeat(2,1fr); } }
@media (max-width:560px){ .parts{ grid-template-columns:1fr; } }

/* ===================================================================
   28 CONCERNS — DARK SPOTLIGHT (the selling moment)
   =================================================================== */
.section--spotlight{
  background:
    radial-gradient(120% 90% at 18% -10%, var(--navy-2) 0%, transparent 55%),
    radial-gradient(120% 100% at 88% 110%, #123a3b 0%, transparent 55%),
    linear-gradient(160deg, #143150 0%, var(--navy) 42%, var(--navy-deep) 100%);
  color:#dfeaec; isolation:isolate; overflow:hidden;
}
.section--spotlight::before{ /* faint hairline grid texture for depth */
  content:""; position:absolute; inset:0; z-index:-1; opacity:.5; pointer-events:none;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size:46px 46px;
  mask-image:radial-gradient(80% 80% at 50% 30%, #000, transparent 85%);
}
.spotlight__glow{
  position:absolute; inset:auto 0 -30% 0; height:60%; z-index:-1; pointer-events:none;
  /* soft pre-feathered radial (no filter:blur — that repaints the whole layer on scroll) */
  background:radial-gradient(60% 80% at 50% 100%, rgba(226,177,92,.15), rgba(226,177,92,.05) 45%, transparent 72%);
}
.section--spotlight h2,.section--spotlight h3{ color:#fff; }
.spotlight__title{ font-size:clamp(2rem,4.6vw,3.1rem); color:#fff; }
.spotlight__title .ink-gold{ color:var(--gold-bright); }
.section--spotlight .spotlight__lede{ color:#bcd0d4; }
.section--spotlight .section__head .section__title::after{ background:linear-gradient(90deg,var(--gold-bright),#f0d59a); }

.parts--spotlight{ display:grid; grid-template-columns:repeat(3,1fr); gap:18px; }
.spart{
  position:relative;
  /* solid semi-transparent navy fill (was a blurred glass card) — same look, cheap to scroll */
  background:linear-gradient(180deg, rgba(29,70,102,.55), rgba(14,36,56,.5));
  border:1px solid rgba(226,201,138,.2); border-radius:var(--r);
  padding:24px 22px 22px;
  box-shadow:0 16px 34px -26px rgba(0,0,0,.7), inset 0 1px 0 rgba(255,255,255,.05);
  transition:transform .28s cubic-bezier(.2,.8,.3,1), border-color .28s ease, box-shadow .28s ease;
}
.spart:hover{ transform:translateY(-5px); border-color:rgba(226,201,138,.5); box-shadow:0 28px 50px -26px rgba(0,0,0,.8); }
.spart__head{ border-bottom:1px solid rgba(255,255,255,.1); padding-bottom:13px; margin-bottom:14px; }
.spart__no{ display:inline-block; font-size:.7rem; letter-spacing:.18em; text-transform:uppercase; font-weight:700; color:var(--gold-bright); margin-bottom:.4rem; }
.spart__head h3{ font-size:1.22rem; color:#fff; }
.spart__list li{ position:relative; padding-left:30px; margin:.5rem 0; font-size:1.02rem; color:#e7eff1; line-height:1.35; }
.spart__list li::before{
  content:""; position:absolute; left:2px; top:.16em; width:18px; height:18px;
  border-radius:50%; background:rgba(31,138,140,.18); border:1px solid rgba(226,201,138,.45);
}
.spart__list li::after{ /* gold check */
  content:""; position:absolute; left:7px; top:.42em; width:5px; height:9px;
  border:solid var(--gold-bright); border-width:0 2px 2px 0; transform:rotate(42deg);
}
.spotlight__reassure{
  text-align:center; max-width:740px; margin:clamp(34px,5vw,52px) auto 0;
  font-size:clamp(1.1rem,2.4vw,1.4rem); color:#dfeaec; line-height:1.45;
}
.spotlight__reassure b{ color:var(--gold-bright); }
@media (max-width:860px){ .parts--spotlight{ grid-template-columns:repeat(2,1fr); } }
@media (max-width:560px){ .parts--spotlight{ grid-template-columns:1fr; } }

/* chapter-card + value-stats now live INSIDE the dark spotlight → light-on-dark */
.section--spotlight .chapter-card{
  background:linear-gradient(165deg, rgba(255,255,255,.07), rgba(255,255,255,.02));
  border:1px solid rgba(226,201,138,.28);
  box-shadow:0 30px 60px -30px rgba(0,0,0,.8);
}
.section--spotlight .chapter-card__head h3{ color:#fff; }
.section--spotlight .chapter-grid li{
  background:rgba(255,255,255,.04); border:1px solid rgba(255,255,255,.1); color:#eaf2f4;
}

/* repeatable chapter card */
.chapter-card{
  margin-top:clamp(34px,5vw,52px);
  background:linear-gradient(165deg,#fff,#f8f1e5);
  border:1px solid var(--gold-soft); border-radius:var(--r-lg);
  padding:clamp(30px,4vw,48px); box-shadow:var(--shadow);
}
.chapter-card__head{ text-align:center; max-width:640px; margin:0 auto 28px; }
.chapter-card__head h3{ font-size:clamp(1.4rem,3vw,1.95rem); }
.chapter-grid{ display:grid; grid-template-columns:repeat(4,1fr); gap:12px; }
.chapter-grid li{ display:flex; align-items:center; gap:.7em; background:var(--paper); border:1px solid var(--line); border-radius:12px; padding:13px 15px; font-weight:600; font-size:.98rem; color:var(--navy); }
.chapter-grid li span{ flex:none; display:grid; place-items:center; width:26px; height:26px; border-radius:50%; background:var(--teal); color:#fff; font-size:.82rem; font-weight:700; }
@media (max-width:860px){ .chapter-grid{ grid-template-columns:repeat(2,1fr); } }
@media (max-width:440px){ .chapter-grid{ grid-template-columns:1fr; } }

.value-stats{ display:grid; grid-template-columns:repeat(4,1fr); gap:18px; margin-top:clamp(34px,5vw,52px); }
.value-stats li{ text-align:center; background:var(--navy); color:#fff; border-radius:var(--r); padding:26px 14px; box-shadow:var(--shadow); }
.value-stats b{ display:block; font-family:var(--serif); font-size:2.6rem; line-height:1; color:var(--gold-bright); }
.value-stats span{ font-size:.92rem; color:#bcd0d4; letter-spacing:.02em; margin-top:.3rem; display:block; }
@media (max-width:620px){ .value-stats{ grid-template-columns:repeat(2,1fr); } }

/* ===================================================================
   REVIEWS
   =================================================================== */
.rating-big{ display:inline-flex; flex-direction:column; align-items:center; vertical-align:middle; margin-right:.3em; }
.rating-big__num{ font-family:var(--serif); font-size:3.4rem; line-height:.9; color:var(--gold); }
.rating-big__stars{ color:var(--gold); letter-spacing:.1em; font-size:1.1rem; }
.reviews .section__title{ display:flex; flex-direction:column; gap:.2em; align-items:center; font-size:clamp(1.5rem,3.4vw,2.1rem); }

.review-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:22px; }
.review{
  position:relative; margin:0;
  background:linear-gradient(180deg,#fffefb,var(--paper));
  border:1px solid var(--line); border-radius:var(--r-lg);
  padding:34px 28px 30px; box-shadow:var(--shadow-sm);
  display:flex; flex-direction:column; gap:14px;
  transition:transform .28s cubic-bezier(.2,.8,.3,1), box-shadow .28s ease;
}
.review:hover{ transform:translateY(-5px); box-shadow:var(--shadow); }
.review::before{ /* oversized decorative quotation mark */
  content:"\201C"; position:absolute; top:6px; right:20px;
  font-family:var(--serif); font-size:4.2rem; line-height:1;
  color:var(--gold-soft); opacity:.4; pointer-events:none;
}
.review__stars{ color:var(--gold); letter-spacing:.1em; font-size:1.1rem; }
.review blockquote{ margin:0; font-family:var(--sans); font-size:1.04rem; line-height:1.55; color:var(--navy); font-weight:500; }
.review figcaption{ display:flex; align-items:center; gap:12px; margin-top:auto; }
.review__avatar{ flex:none; width:44px; height:44px; border-radius:50%; display:grid; place-items:center; background:linear-gradient(160deg,var(--teal),var(--teal-deep)); color:#fff; font-family:var(--serif); font-size:1.2rem; font-weight:600; }
.review figcaption b{ display:block; color:var(--navy); font-size:1rem; }
.review figcaption small{ color:var(--ink-soft); font-size:.82rem; }
.reviews__note{ text-align:center; margin-top:26px; font-size:.84rem; color:var(--ink-soft); opacity:.8; }
@media (max-width:860px){ .review-grid{ grid-template-columns:1fr; max-width:560px; margin-inline:auto; } }

/* ===================================================================
   AUTHOR
   =================================================================== */
.author__grid{ display:grid; grid-template-columns:.85fr 1.15fr; gap:clamp(34px,5vw,64px); align-items:center; }
.author__photo{ position:relative; }
.author__frame{
  border-radius:var(--r-lg); overflow:hidden; border:1px solid var(--line);
  box-shadow:var(--shadow); position:relative; background:#fff;
}
.author__frame::after{ content:""; position:absolute; inset:0; border-radius:inherit; box-shadow:inset 0 0 0 6px rgba(255,255,255,.5), inset 0 0 0 7px var(--gold-soft); pointer-events:none; }
.author__frame img{ width:100%; }
.author__sig{ position:absolute; left:18px; bottom:-16px; font-family:var(--serif); font-style:italic; font-size:1.5rem; color:var(--navy); background:var(--paper); padding:4px 18px; border-radius:30px; box-shadow:var(--shadow-sm); border:1px solid var(--gold-soft); }
.author__copy p{ color:var(--ink-soft); font-size:1.1rem; margin:.7rem 0; }
.author__copy p:first-of-type{ margin-top:0; }
.author__creds{ display:flex; flex-wrap:wrap; gap:.5rem 1.6rem; margin-top:1.4rem; font-weight:600; color:var(--navy); }
.author__creds li{ display:inline-flex; align-items:center; gap:.45em; }
.author__creds .ic{ color:var(--teal); }
@media (max-width:820px){ .author__grid{ grid-template-columns:1fr; } .author__photo{ max-width:380px; margin-inline:auto; } }

/* ===================================================================
   THE MATH / VALUE LEDGER (editorial)
   =================================================================== */
.math{
  background:
    radial-gradient(90% 70% at 88% 4%, rgba(31,138,140,.07), transparent 60%),
    radial-gradient(70% 60% at 6% 96%, rgba(184,137,59,.08), transparent 60%),
    var(--ivory-2);
}
.math__wrap{ max-width:920px; margin-inline:auto; }

/* masthead with oversized roman numeral */
.math__masthead{ position:relative; text-align:center; max-width:680px; margin:0 auto clamp(34px,5vw,52px); padding-top:.4rem; }
.math__numeral{
  display:block; font-family:var(--display); font-weight:700;
  font-size:clamp(3.4rem,9vw,5.4rem); line-height:.8; color:var(--navy);
  letter-spacing:-.02em; opacity:.16;
}
.math__eyebrow{
  margin:.4rem 0 .9rem; font-family:var(--sans); font-weight:700;
  font-size:.82rem; letter-spacing:.34em; text-transform:uppercase; color:var(--teal-deep);
}
.math__title{ font-size:clamp(1.7rem,4vw,2.6rem); color:var(--navy); letter-spacing:-.02em; }
.math__intro{ margin:1rem auto 0; max-width:560px; color:var(--ink-soft); font-size:1.08rem; }

/* two-column ledger */
.ledger{
  display:grid; grid-template-columns:1fr 1fr; gap:clamp(20px,3vw,34px);
  align-items:stretch;
}
.ledger__col{
  position:relative; border-radius:var(--r-lg);
  padding:clamp(26px,3.4vw,38px) clamp(22px,3vw,34px) clamp(28px,3.4vw,36px);
  display:flex; flex-direction:column;
}
.ledger__col--diy{
  background:linear-gradient(180deg,var(--paper),#fffdf7);
  border:1px solid var(--line); box-shadow:var(--shadow);
}
.ledger__col--book{
  background:radial-gradient(130% 120% at 50% -10%, var(--navy-2) 0%, var(--navy) 48%, var(--navy-deep) 100%);
  border:1px solid rgba(226,201,138,.3); color:#eaf1f3;
  box-shadow:var(--shadow-lg);
}
.ledger__col--book::before{ /* gold top hairline */
  content:""; position:absolute; left:0; right:0; top:0; height:4px; border-radius:var(--r-lg) var(--r-lg) 0 0;
  background:linear-gradient(90deg,transparent, var(--gold-bright), var(--gold), transparent);
}
.ledger__colhead{
  margin:0 0 1.3rem; font-family:var(--display); font-weight:600;
  font-size:1.18rem; color:var(--navy); line-height:1.25;
  padding-bottom:.9rem; border-bottom:1px solid var(--line);
}
.ledger__colhead--book{ color:#fff; border-bottom-color:rgba(255,255,255,.16); }

.ledger__rows{ display:flex; flex-direction:column; gap:2px; flex:1; }
.ledger__rows li{
  display:flex; align-items:baseline; gap:6px; padding:13px 0;
}
.ledger__label{ font-weight:600; color:var(--navy); font-size:1.04rem; line-height:1.3; }
.ledger__col--book .ledger__label{ color:#e7eff1; font-weight:500; }
.ledger__lead{
  flex:1; min-width:18px; align-self:center;
  border-bottom:2px dotted var(--gold-soft); opacity:.7; transform:translateY(-2px);
}
.ledger__col--book .ledger__lead{ border-bottom-color:rgba(226,201,138,.4); }
.ledger__price{
  flex:none; font-family:var(--display); font-weight:600; font-size:1.16rem;
  color:var(--ink-soft); white-space:nowrap; letter-spacing:-.01em;
}
.ledger__price small{ font-size:.7em; font-weight:500; opacity:.8; }
.ledger__check{ flex:none; color:var(--gold-bright); font-weight:700; font-size:1.2rem; }

.ledger__total{
  display:flex; align-items:baseline; justify-content:space-between; gap:14px; flex-wrap:wrap;
  margin-top:1.4rem; padding-top:1.3rem; border-top:2px solid var(--navy);
}
.ledger__col--book .ledger__total{ border-top-color:rgba(226,201,138,.45); }
.ledger__total-label{ font-family:var(--display); font-weight:600; font-size:1rem; letter-spacing:.04em; text-transform:uppercase; color:var(--ink-soft); }
.ledger__col--book .ledger__total-label{ color:#bcd0d4; }
.ledger__total-value--diy{ font-family:var(--display); font-weight:700; font-size:clamp(1.4rem,3.4vw,1.9rem); color:var(--navy); }
.ledger__total-stack{ display:inline-flex; align-items:baseline; gap:.5em; }
.ledger__total-stack s{ color:#9fbac0; font-size:1.15rem; }
.ledger__total-value--book{ font-family:var(--display); font-weight:700; font-size:clamp(2.6rem,7vw,3.6rem); color:var(--gold-bright); line-height:1; }
.ledger__reframe{ margin:1.1rem 0 0; color:#cfe0e3; font-size:1rem; font-style:italic; }

.ledger__sources{ text-align:center; max-width:680px; margin:1.6rem auto 0; font-size:.86rem; color:var(--ink-soft); opacity:.85; }

.math__cta{ display:grid; justify-items:center; gap:.7rem; margin-top:clamp(30px,4vw,44px); }
.math__micro{ margin:0; font-size:.86rem; letter-spacing:.06em; text-transform:uppercase; font-weight:700; color:var(--teal-deep); }

@media (max-width:760px){
  .ledger{ grid-template-columns:1fr; }
}

/* ===================================================================
   OFFER
   =================================================================== */
.offer__card{
  display:grid; grid-template-columns:.8fr 1.2fr; gap:0;
  background:var(--paper); color:var(--ink);
  border-radius:var(--r-lg); overflow:hidden; box-shadow:var(--shadow-lg);
  border:1px solid rgba(255,255,255,.12);
  max-width:1000px; margin-inline:auto;
}
.offer__left{
  background:radial-gradient(120% 100% at 30% 0%, #1d4666, var(--navy-deep));
  display:grid; place-items:center; padding:48px 26px;
}
.offer__thumb{ width:min(230px,70%); perspective:1200px; }
.cover--mini{ aspect-ratio:1/1.46; transform:rotateY(-16deg) rotateX(5deg); animation:bookFloat 8s ease-in-out infinite; box-shadow:0 30px 50px -24px rgba(0,0,0,.7); border-radius:4px 9px 9px 4px; }

.offer__right{ padding:clamp(30px,4vw,46px); }
/* the offer card sits on a LIGHT (--paper) background even though the section is navy,
   so force the title to navy — .section--navy h2 would otherwise paint it white (invisible). */
.offer__title{ font-size:clamp(1.6rem,3.4vw,2.2rem); margin-bottom:1.2rem; color:var(--navy) !important; }
/* the "launch offer" kicker also sits on the light card → use teal, not the light variant */
.offer__right .kicker--light{ color:var(--teal-deep); }
.offer__right .kicker--light::before,.offer__right .kicker--light::after{ background:linear-gradient(90deg,transparent,var(--gold-soft)); }
.offer__right .kicker--light::before{ background:linear-gradient(90deg,var(--gold-soft),transparent); }

/* red "LAUNCH OFFER ENDS IN" urgency countdown — visible on mobile + desktop */
.offer__countdown{
  display:flex; align-items:center; justify-content:center; gap:.7em; flex-wrap:wrap;
  margin:0 0 1.1rem; padding:11px 18px;
  border:1.5px solid rgba(192,57,43,.45);
  border-radius:12px;
  background:linear-gradient(180deg, rgba(192,57,43,.07), rgba(192,57,43,.03));
}
.offer__countdown-label{
  font-size:.74rem; letter-spacing:.16em; text-transform:uppercase; font-weight:700;
  color:var(--red);
}
.offer__countdown-time{
  font-family:var(--display); font-weight:700; font-size:1.32rem; line-height:1;
  color:var(--red); letter-spacing:.04em; font-variant-numeric:tabular-nums;
}
.offer__list li{ display:flex; align-items:flex-start; gap:.7em; margin:.55rem 0; font-size:1.04rem; color:var(--ink); }
.offer__list .ic{ color:var(--teal); margin-top:.18em; }
.offer__price{ display:flex; align-items:center; gap:18px; margin:1.6rem 0 1.2rem; flex-wrap:wrap; }
.offer__price-block{ display:flex; align-items:baseline; gap:16px; }
.offer__reg{ color:var(--ink-soft); font-size:1rem; }
.offer__now{ font-size:1.1rem; font-weight:600; color:var(--navy); }
.offer__now b{ font-family:var(--serif); font-size:3rem; color:var(--gold); margin-left:.2em; }
.offer__save{ background:var(--teal-soft); color:var(--teal-deep); font-weight:700; padding:7px 14px; border-radius:30px; font-size:.92rem; border:1px solid rgba(31,138,140,.25); }
.offer__micro{ text-align:center; margin:1rem 0 0; font-weight:600; color:var(--teal-deep); font-size:.98rem; }
.offer__assure{ display:flex; align-items:center; justify-content:space-between; flex-wrap:wrap; gap:14px; margin-top:1.4rem; padding-top:1.4rem; border-top:1px solid var(--line); }
.offer__trust{ display:inline-flex; align-items:center; gap:.5em; font-weight:700; color:var(--navy); font-size:.96rem; }
.offer__trust .ic{ color:var(--teal); width:1.35em; height:1.35em; }
.pay-icons{ display:inline-flex; align-items:center; gap:8px; flex-wrap:wrap; }
.pay{ display:inline-flex; align-items:center; font-size:.72rem; font-weight:800; letter-spacing:.04em; color:var(--ink-soft); background:var(--ivory-2); border:1px solid var(--line); padding:6px 9px; border-radius:7px; line-height:1; min-height:26px; }
/* recognizable Apple Pay lockup — dark pill, white apple glyph + "Pay" */
.pay--apple{ gap:3px; color:#fff; background:#111; border-color:#111; padding:6px 10px; }
.pay__apple-glyph{ width:13px; height:13px; fill:#fff; stroke:none; display:block; margin-top:-1px; }
@media (max-width:760px){ .offer__card{ grid-template-columns:1fr; } .offer__left{ padding:40px 26px 10px; } }

/* ===================================================================
   FAQ
   =================================================================== */
.faq__wrap{ max-width:820px; }
.faq__item{
  border:1px solid var(--line); border-radius:16px; background:var(--paper);
  margin-bottom:14px; box-shadow:var(--shadow-sm); overflow:hidden;
  transition:border-color .25s ease, box-shadow .25s ease, transform .25s ease;
}
.faq__item:hover{ border-color:var(--gold-soft); }
.faq__item[open]{ border-color:var(--gold-soft); box-shadow:var(--shadow); }
.faq__item summary{
  list-style:none; cursor:pointer; padding:22px 58px 22px 24px; position:relative;
  font-family:var(--serif); font-weight:600; font-size:1.18rem; color:var(--navy); line-height:1.32;
  display:flex; align-items:baseline; gap:.7em;
}
.faq__item summary em{ font-style:italic; color:var(--teal-deep); }
.faq__q-no{
  flex:none; font-family:var(--serif); font-size:.92rem; font-weight:600;
  color:var(--gold); opacity:.7; letter-spacing:.04em; min-width:1.8em;
  font-feature-settings:"tnum";
}
.faq__item[open] .faq__q-no{ opacity:1; color:var(--teal); }
.faq__item summary::-webkit-details-marker{ display:none; }
.faq__plus{ position:absolute; right:22px; top:50%; transform:translateY(-50%); width:22px; height:22px; }
.faq__plus::before,.faq__plus::after{ content:""; position:absolute; background:var(--teal); border-radius:2px; transition:transform .25s ease, opacity .25s ease; }
.faq__plus::before{ left:0; top:50%; width:22px; height:3px; transform:translateY(-50%); }
.faq__plus::after{ left:50%; top:0; width:3px; height:22px; transform:translateX(-50%); }
.faq__item[open] .faq__plus::after{ transform:translateX(-50%) scaleY(0); opacity:0; }
.faq__a{ padding:0 24px 22px; }
.faq__a p{ margin:0; color:var(--ink-soft); font-size:1.05rem; }
.faq__a em{ color:var(--navy); font-style:italic; }

/* ===================================================================
   FINAL CLOSE
   =================================================================== */
.close__wrap{ max-width:740px; margin-inline:auto; text-align:center; }
.close__title{ font-size:clamp(1.9rem,4.6vw,3rem); }
.close__sub{ margin:1.1rem auto 0; max-width:560px; font-size:1.18rem; color:var(--ink-soft); }
.close__cta{ margin-top:2.2rem; display:grid; justify-items:center; gap:.4rem; }
.close__timer{ margin-top:.6rem; font-size:.95rem; color:var(--ink-soft); font-weight:600; }
.close__timer b{ color:var(--danger); font-variant-numeric:tabular-nums; }

/* ===================================================================
   FOOTER
   =================================================================== */
.footer{ background:var(--navy-deep); color:#9fbac0; padding:54px 0 110px; }
.footer__inner{ max-width:880px; text-align:center; }
.wordmark--footer{ display:flex; justify-content:center; margin:0 auto 22px; color:#fff; font-size:1.16rem; }
.footer__disclaimer{ font-size:.92rem; line-height:1.6; color:#aac3c8; max-width:720px; margin:0 auto 26px; padding:18px 22px; border:1px solid rgba(255,255,255,.1); border-radius:14px; background:rgba(255,255,255,.03); }
.footer__meta{ text-align:center; }
.footer__meta p{ margin:.3rem 0; font-size:.86rem; text-align:center; }
.footer__small{
  display:inline-block;
  color:#7fa3aa;
  max-width:680px;
  margin:.7rem auto 0;
  padding:12px 22px;
  border:1px solid rgba(255,255,255,.12);
  border-radius:12px;
  background:rgba(255,255,255,.035);
  text-align:center;
  line-height:1.55;
}

/* ===================================================================
   MOBILE STICKY BAR
   =================================================================== */
.mobilebar{
  position:fixed; left:0; right:0; bottom:0; z-index:55;
  display:none; align-items:center; gap:14px; justify-content:space-between;
  padding:10px 16px calc(10px + env(safe-area-inset-bottom));
  background:rgba(255,253,248,.99);
  border-top:1px solid var(--line); box-shadow:0 -8px 24px -12px rgba(14,36,56,.3);
}
.mobilebar__price{ display:flex; align-items:baseline; gap:8px; font-family:var(--serif); }
.mobilebar__price s{ color:var(--ink-soft); font-size:1rem; }
.mobilebar__price b{ font-size:1.7rem; color:var(--gold); }
.mobilebar__btn{ flex:1; min-height:52px; max-width:62%; }
@media (max-width:880px){ .mobilebar{ display:flex; } body{ padding-bottom:0; } }

/* ===================================================================
   SCROLL REVEAL
   =================================================================== */
.reveal{ opacity:0; transform:translateY(26px); transition:opacity .7s cubic-bezier(.2,.7,.2,1), transform .7s cubic-bezier(.2,.7,.2,1); }
.reveal.in{ opacity:1; transform:none; }
/* stagger children within grids */
.pain-grid .pain,.why-grid .feature,.parts .part,.review-grid .review{ transition-delay:var(--d,0s); }

/* ===================================================================
   REDUCED MOTION
   =================================================================== */
@media (prefers-reduced-motion:reduce){
  *,*::before,*::after{ animation-duration:.001ms !important; animation-iteration-count:1 !important; transition-duration:.001ms !important; scroll-behavior:auto !important; }
  .book{ transform:rotateY(-22deg) rotateX(5deg) !important; }
  .reveal{ opacity:1 !important; transform:none !important; }
  .hero__scroll{ display:none; }
}
