/* ============================================================================
   Day1Dollar — shared design system  (build 2026-06-14)
   Design language: "Bright Optimism" — money-green + gold on warm paper,
   deep emerald hero. Display: Bricolage Grotesque · Body: Figtree.
   Single source of truth for ALL pages (index / affiliates / contact /
   disclaimers / thankyou / 404) so the site is cohesive by construction.
   --------------------------------------------------------------------------
   FROZEN BASE — append dated, post-gate additions BELOW the gate at the end.
   Do NOT modify rules above the gate when editing later.
   ========================================================================== */

/* ---- Reset ---------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 16px); -webkit-text-size-adjust: 100%; }
img, svg, video { display: block; max-width: 100%; height: auto; }
input, button, textarea, select { font: inherit; color: inherit; }
a { color: inherit; }

/* ---- Tokens --------------------------------------------------------------- */
:root {
  /* palette — green = money/growth, gold = success/value */
  --green-800:#055239; --green-700:#066b46; --green-600:#078a5a;
  --green-500:#10b981; --green-400:#34d399; --green-300:#6ee7b7;
  --gold-600:#d98a04;  --gold-500:#f59e0b;  --gold-400:#fbbf24; --gold-300:#fcd34d;

  /* deep emerald hero darks */
  --ink-900:#06140d; --ink-850:#08190f; --ink-800:#0a2117; --ink-700:#0e2c1f;

  /* text (warm green-greys, friendlier than cold slate) */
  --ink:#0f1f17; --body:#37473f; --muted:#6a786f; --muted-light:#8a978e;

  /* surfaces */
  --paper:#ffffff; --cream:#fbfaf6; --mist:#f2f6f1; --mist-2:#eaf1e9;
  --line:#e6eae2; --line-strong:#d3dacd;

  /* glows */
  --green-glow:rgba(16,185,129,.30); --gold-glow:rgba(245,158,11,.32);

  /* fonts */
  --font-display:'Bricolage Grotesque',-apple-system,BlinkMacSystemFont,'Segoe UI',sans-serif;
  --font-body:'Figtree',-apple-system,BlinkMacSystemFont,'Segoe UI',Roboto,Helvetica,Arial,sans-serif;

  /* shadows — warm-tinted, not pure black */
  --shadow-sm:0 1px 2px rgba(6,20,13,.06);
  --shadow-card:0 4px 18px -6px rgba(6,20,13,.12), 0 2px 6px -3px rgba(6,20,13,.07);
  --shadow-lg:0 22px 48px -16px rgba(6,20,13,.22);
  --shadow-gold:0 12px 30px -8px rgba(245,158,11,.40);
  --shadow-green:0 14px 36px -10px rgba(16,185,129,.48);

  /* radius / motion / layout */
  --r-sm:8px; --r-md:14px; --r-lg:20px; --r-xl:28px; --r-pill:100px;
  --ease:cubic-bezier(.22,1,.36,1);
  --t-fast:160ms var(--ease); --t:280ms var(--ease);
  --container:1080px; --container-narrow:760px; --header-h:68px;
}

/* ---- Base ----------------------------------------------------------------- */
body {
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--body);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
h1,h2,h3,h4 { font-family: var(--font-display); color: var(--ink); line-height: 1.12; font-weight: 700; letter-spacing: -0.02em; }
strong { color: var(--ink); font-weight: 700; }
p { margin: 0 0 1rem; }
p:last-child { margin-bottom: 0; }

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 1.5rem; }
.container-narrow { width: 100%; max-width: var(--container-narrow); margin: 0 auto; padding: 0 1.5rem; }

.eyebrow {
  display: inline-flex; align-items: center; gap: .5rem;
  font-family: var(--font-body); font-size: .78rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .14em; color: var(--green-700);
}
.eyebrow::before { content:""; width: 22px; height: 2px; background: var(--gold-500); border-radius: 2px; }
.eyebrow--center { justify-content: center; }

.section { padding: clamp(3rem, 7vw, 5.5rem) 0; }
.section-head { max-width: 640px; margin: 0 auto 2.75rem; text-align: center; }
.section-head .eyebrow { margin-bottom: 1rem; }
.section-title { font-size: clamp(1.7rem, 4vw, 2.6rem); margin-bottom: 1rem; }
.section-intro { font-size: 1.1rem; color: var(--muted); }

/* accessibility */
.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 2000;
  background: var(--ink); color:#fff; padding:.75rem 1.25rem; border-radius: 0 0 var(--r-sm) 0;
}
.skip-link:focus { left: 0; }
a:focus-visible, button:focus-visible, summary:focus-visible {
  outline: 3px solid var(--gold-500); outline-offset: 3px; border-radius: 4px;
}

/* ---- Buttons -------------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  font-family: var(--font-display); font-weight: 700; font-size: 1rem; line-height: 1;
  text-decoration: none; cursor: pointer; border: none; white-space: nowrap;
  padding: 1.05rem 2rem; border-radius: var(--r-md); min-height: 48px;
  transition: transform var(--t-fast), box-shadow var(--t-fast), background var(--t-fast);
}
.btn-primary {
  color:#04261a;
  background: linear-gradient(135deg, var(--green-400) 0%, var(--green-500) 45%, var(--green-600) 100%);
  box-shadow: var(--shadow-green);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 18px 44px -10px rgba(16,185,129,.6); }
.btn-gold {
  color:#3a2400;
  background: linear-gradient(135deg, var(--gold-400) 0%, var(--gold-500) 50%, var(--gold-600) 100%);
  box-shadow: var(--shadow-gold);
}
.btn-gold:hover { transform: translateY(-3px); box-shadow: 0 18px 40px -10px rgba(245,158,11,.55); }
.btn-ghost {
  color: var(--ink); background: transparent; border: 2px solid var(--line-strong);
  padding: calc(1.05rem - 2px) calc(1.75rem - 2px);
}
.btn-ghost:hover { border-color: var(--green-500); color: var(--green-700); transform: translateY(-2px); }
.btn-lg { font-size: 1.15rem; padding: 1.2rem 2.5rem; }
.btn-block { width: 100%; }
.btn-on-dark.btn-ghost { color:#fff; border-color: rgba(255,255,255,.28); }
.btn-on-dark.btn-ghost:hover { border-color: var(--green-400); color: var(--green-300); }

/* ---- Header / Nav --------------------------------------------------------- */
.site-header {
  position: sticky; top: 0; z-index: 1000; height: var(--header-h);
  display: flex; align-items: center;
  background: rgba(255,255,255,.86); backdrop-filter: saturate(150%) blur(14px);
  border-bottom: 1px solid var(--line);
}
.site-header__inner { display: flex; align-items: center; justify-content: space-between; width: 100%; }
.brand { display: inline-flex; align-items: center; gap: .6rem; text-decoration: none; }
.brand__mark {
  width: 38px; height: 38px; border-radius: 11px; flex-shrink: 0;
  display: grid; place-items: center; color:#04261a; font-family: var(--font-display);
  font-weight: 800; font-size: 1.05rem;
  background: linear-gradient(135deg, var(--green-400), var(--green-600));
  box-shadow: 0 4px 12px -3px var(--green-glow);
}
.brand__text { font-family: var(--font-display); font-weight: 800; font-size: 1.2rem; color: var(--ink); letter-spacing: -0.02em; }
.brand__text .accent { color: var(--green-600); }

.nav { display: flex; align-items: center; gap: 2rem; }
.nav__links { display: flex; align-items: center; gap: 1.6rem; list-style: none; }
.nav__links a { text-decoration: none; font-weight: 600; font-size: .98rem; color: var(--body); transition: color var(--t-fast); }
.nav__links a:hover { color: var(--green-700); }
.nav__cta { padding: .75rem 1.3rem; min-height: 48px; font-size: .95rem; }
.nav-toggle {
  display: none; width: 48px; height: 48px; background: transparent; border: 0; cursor: pointer;
  align-items: center; justify-content: center; color: var(--ink);
}
.nav-toggle svg { width: 26px; height: 26px; }
.nav-toggle .icon-close { display: none; }

/* mobile overlay menu */
@media (max-width: 860px) {
  /* On mobile the header is NOT sticky — it scrolls away with the page instead of
     following you down. The hamburger stays in the header (visible at the top).
     backdrop-filter is cleared because (a) a static header doesn't need the blur and
     (b) any backdrop-filter on an ancestor makes it the containing block for the
     position:fixed mobile menu, which would trap the overlay inside the 68px header. */
  .site-header { position: static; backdrop-filter: none; background: var(--paper); }
  .nav__links, .nav .nav__cta { display: none; }
  .nav-toggle { display: inline-flex; }
  .nav.is-open .mobile-menu { display: flex; }
}
.mobile-menu {
  display: none; position: fixed; inset: var(--header-h) 0 0 0; z-index: 999;
  flex-direction: column; gap: .25rem; padding: 1.5rem;
  background: var(--paper); border-top: 1px solid var(--line); overflow-y: auto;
}
.mobile-menu a {
  text-decoration: none; font-family: var(--font-display); font-weight: 700; font-size: 1.25rem;
  color: var(--ink); padding: 1rem .25rem; border-bottom: 1px solid var(--line);
}
.mobile-menu a:last-of-type { border-bottom: 0; }
.mobile-menu .btn { margin-top: 1rem; }
body.menu-open { overflow: hidden; }

/* ---- Hero ----------------------------------------------------------------- */
.hero {
  position: relative; overflow: hidden; color: #eaf6ef; text-align: center;
  padding: clamp(3.5rem, 8vw, 6rem) 0 clamp(3rem, 6vw, 5rem);
  background: linear-gradient(160deg, var(--ink-900) 0%, var(--ink-800) 55%, var(--ink-700) 100%);
}
.hero::before {
  content:""; position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(60% 50% at 20% 18%, var(--green-glow) 0%, transparent 60%),
    radial-gradient(55% 50% at 82% 12%, var(--gold-glow) 0%, transparent 58%),
    radial-gradient(70% 60% at 50% 110%, rgba(16,185,129,.18) 0%, transparent 60%);
}
.hero::after {
  content:""; position: absolute; inset: 0; pointer-events: none; opacity:.5;
  background-image: url("data:image/svg+xml,%3Csvg width='44' height='44' viewBox='0 0 44 44' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.025'%3E%3Ccircle cx='2' cy='2' r='1.4'/%3E%3C/g%3E%3C/svg%3E");
}
.hero__inner { position: relative; z-index: 2; max-width: 880px; margin: 0 auto; }
.hero__pill {
  display: inline-flex; align-items: center; gap: .55rem; margin-bottom: 1.6rem;
  font-size: .82rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  color: var(--green-300); padding: .5rem 1.1rem; border-radius: var(--r-pill);
  background: rgba(16,185,129,.12); border: 1px solid rgba(52,211,153,.28);
}
.hero h1 { font-size: clamp(2.1rem, 5.4vw, 3.6rem); color:#fff; margin-bottom: 1.25rem; }
.hero h1 .grad {
  background: linear-gradient(105deg, var(--green-300), var(--gold-400) 90%);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.hero__sub { font-size: clamp(1.05rem, 2.2vw, 1.28rem); color: rgba(234,246,239,.82); max-width: 660px; margin: 0 auto 2.2rem; }
.hero__badges { display: flex; flex-wrap: wrap; justify-content: center; gap: .7rem; margin-bottom: 2.2rem; }
.hero__badge {
  display: inline-flex; align-items: center; gap: .5rem; font-size: .92rem; font-weight: 600;
  color: #d7ece1; padding: .6rem 1.05rem; border-radius: var(--r-pill);
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1);
}
.hero__badge svg { width: 18px; height: 18px; color: var(--green-400); flex-shrink: 0; }
.hero__cta { display: inline-flex; flex-direction: column; align-items: center; gap: .85rem; }
.hero__price-line { font-size: .98rem; color: rgba(234,246,239,.7); }
.hero__price-line strong { color: var(--gold-400); }
.hero__reassure { display: inline-flex; align-items: center; gap: .45rem; font-size: .88rem; color: rgba(234,246,239,.6); }
.hero__reassure svg { width: 16px; height: 16px; color: var(--green-400); }
.hero__scroll { margin-top: 2rem; font-size: .9rem; color: rgba(234,246,239,.5); }
.hero__scroll span { display: inline-block; animation: nudge 2s infinite; }

/* ---- Trust strip ---------------------------------------------------------- */
.trust-strip { background: var(--ink-850); border-top: 1px solid rgba(255,255,255,.05); padding: 1.5rem 0; }
.trust-strip__row { display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem 2.5rem; }
.trust-strip__item { display: inline-flex; align-items: center; gap: .55rem; color: rgba(234,246,239,.72); font-size: .92rem; font-weight: 600; }
.trust-strip__item svg { width: 19px; height: 19px; color: var(--green-400); flex-shrink: 0; }

/* ---- Generic light section helpers --------------------------------------- */
.bg-cream { background: var(--cream); }
.bg-mist { background: var(--mist); }
.bg-paper { background: var(--paper); }
.section--tight { padding: clamp(2.5rem,5vw,3.75rem) 0; }
.lead { font-size: 1.18rem; color: var(--body); }
.text-center { text-align: center; }

/* ---- Hook / prose band ---------------------------------------------------- */
.prose-band { text-align: center; }
.prose-band h2 { font-size: clamp(1.6rem,3.8vw,2.4rem); margin-bottom: 1.25rem; max-width: 760px; margin-left:auto; margin-right:auto; }
.prose-band p { font-size: 1.15rem; color: var(--muted); max-width: 640px; margin-left:auto; margin-right:auto; }
.prose-band .emphasis {
  display: inline-block; margin-top: 1.25rem; font-family: var(--font-display); font-weight: 700;
  font-size: 1.2rem; color: var(--green-700); line-height: 1.5;
  padding: 1rem 1.5rem; border-radius: var(--r-md);
  background: linear-gradient(135deg, rgba(16,185,129,.1), rgba(245,158,11,.08));
  border: 1px solid var(--mist-2);
}

/* ---- Steps (How it works) ------------------------------------------------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }
.step {
  position: relative; background: var(--paper); border: 1px solid var(--line);
  border-radius: var(--r-lg); padding: 1.75rem 1.4rem; box-shadow: var(--shadow-sm);
  transition: transform var(--t), box-shadow var(--t), border-color var(--t);
}
.step:hover { transform: translateY(-5px); box-shadow: var(--shadow-card); border-color: var(--green-300); }
.step__num {
  width: 44px; height: 44px; border-radius: 12px; display: grid; place-items: center;
  font-family: var(--font-display); font-weight: 800; font-size: 1.2rem; color:#04261a;
  background: linear-gradient(135deg, var(--green-400), var(--green-600)); margin-bottom: 1rem;
}
.step h3 { font-size: 1.12rem; margin-bottom: .5rem; }
.step p { font-size: .96rem; color: var(--muted); }

/* ---- Offer / What's inside ----------------------------------------------- */
.offer-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.offer-card {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 1.9rem; box-shadow: var(--shadow-card);
}
.offer-card--beginner { border-top: 4px solid var(--green-500); }
.offer-card--advanced { border-top: 4px solid var(--gold-500); }
.offer-card__tag {
  font-size: .76rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em;
  color: var(--green-700);
}
.offer-card--advanced .offer-card__tag { color: var(--gold-600); }
.offer-card h3 { font-size: 1.4rem; margin: .35rem 0 .35rem; }
.offer-card__sub { font-size: .96rem; color: var(--muted); margin-bottom: 1.25rem; }
.check-list { list-style: none; display: grid; gap: .7rem; }
.check-list li { display: flex; align-items: flex-start; gap: .7rem; font-size: .99rem; color: var(--body); }
.check-list svg { width: 20px; height: 20px; flex-shrink: 0; margin-top: 2px; color: var(--green-600); }
.offer-card--advanced .check-list svg { color: var(--gold-600); }

.bonus-card {
  margin-top: 1.5rem; border-radius: var(--r-lg); padding: 1.9rem;
  background: linear-gradient(135deg, #fffdf6, #fff8e6);
  border: 1px solid var(--gold-300); box-shadow: var(--shadow-card);
}
.bonus-card__head { display: flex; flex-wrap: wrap; align-items: center; gap: .75rem; margin-bottom: .35rem; }
.bonus-card h3 { font-size: 1.3rem; color: var(--ink); }
.bonus-card__flag {
  font-size: .72rem; font-weight: 700; color: var(--gold-600); text-transform: uppercase; letter-spacing: .06em;
  background: rgba(245,158,11,.16); padding: .28rem .6rem; border-radius: var(--r-sm);
}
.bonus-card__sub { font-size: .96rem; color: var(--muted); margin-bottom: 1.25rem; }
.bonus-card .check-list { grid-template-columns: 1fr 1fr; }
.bonus-card .check-list svg { color: var(--gold-600); }

/* ---- ROI / math (compliant, illustrative) -------------------------------- */
.roi { background: linear-gradient(160deg, var(--ink-900), var(--ink-700)); color:#eaf6ef; text-align: center; position: relative; overflow: hidden; }
.roi::before { content:""; position:absolute; inset:0; background: radial-gradient(60% 60% at 50% 0%, var(--green-glow), transparent 65%); pointer-events:none; }
.roi .container { position: relative; z-index: 1; }
.roi h2 { color:#fff; font-size: clamp(1.5rem,3.6vw,2.2rem); margin-bottom: 2rem; }
.roi__math { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 1.25rem; margin-bottom: 1.5rem; }
.roi__item { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1); border-radius: var(--r-md); padding: 1.3rem 1.75rem; min-width: 150px; }
.roi__num { font-family: var(--font-display); font-weight: 800; font-size: 2.5rem; background: linear-gradient(135deg, var(--green-300), var(--gold-400)); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.roi__label { font-size: .85rem; color: rgba(234,246,239,.72); margin-top: .25rem; }
.roi__op { font-size: 1.8rem; font-weight: 700; color: var(--green-400); }
.roi__caption { font-size: 1.05rem; color: var(--green-300); font-weight: 600; max-width: 620px; margin: 0 auto; }
.roi__fine { font-size: .82rem; color: rgba(234,246,239,.55); margin-top: 1rem; max-width: 640px; margin-left:auto; margin-right:auto; }

/* ---- Honest "who it's for / not for" ------------------------------------- */
.fit-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.fit-card { background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 1.75rem; box-shadow: var(--shadow-sm); }
.fit-card h3 { font-size: 1.2rem; margin-bottom: 1rem; display: flex; align-items: center; gap: .6rem; }
.fit-card h3 svg { width: 22px; height: 22px; }
.fit-card--yes h3 { color: var(--green-700); }
.fit-card--no h3 { color: var(--muted); }
.fit-list { list-style: none; display: grid; gap: .65rem; }
.fit-list li { display: flex; align-items: flex-start; gap: .6rem; font-size: .98rem; }
.fit-list svg { width: 18px; height: 18px; flex-shrink: 0; margin-top: 3px; }
.fit-card--yes .fit-list svg { color: var(--green-600); }
.fit-card--no .fit-list svg { color: var(--muted-light); }

/* ---- Guarantee ------------------------------------------------------------ */
.guarantee { text-align: center; }
.guarantee__badge {
  width: 92px; height: 92px; margin: 0 auto 1.5rem; border-radius: 50%; display: grid; place-items: center;
  background: linear-gradient(135deg, var(--green-400), var(--green-600)); color:#04261a; box-shadow: var(--shadow-green);
}
.guarantee__badge svg { width: 46px; height: 46px; }
.guarantee h2 { font-size: clamp(1.5rem,3.6vw,2.2rem); margin-bottom: 1rem; }
.guarantee p { font-size: 1.1rem; color: var(--muted); max-width: 620px; margin: 0 auto 1rem; }

/* ---- FAQ (native details/summary — crawlable, no-JS) --------------------- */
.faq-list { max-width: 760px; margin: 0 auto; display: grid; gap: .9rem; }
.faq-item { background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-md); overflow: hidden; transition: border-color var(--t); }
.faq-item[open] { border-color: var(--green-300); box-shadow: var(--shadow-sm); }
.faq-item summary {
  list-style: none; cursor: pointer; padding: 1.25rem 1.4rem; display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  font-family: var(--font-display); font-weight: 700; font-size: 1.06rem; color: var(--ink);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary .chev { width: 22px; height: 22px; flex-shrink: 0; color: var(--green-600); transition: transform var(--t); }
.faq-item[open] summary .chev { transform: rotate(180deg); }
.faq-item__body { padding: 0 1.4rem 1.3rem; color: var(--muted); font-size: 1rem; }

/* ---- Final CTA ------------------------------------------------------------ */
.final-cta { background: linear-gradient(160deg, var(--ink-900), var(--ink-700)); color:#eaf6ef; text-align: center; position: relative; overflow: hidden; }
.final-cta::before { content:""; position:absolute; inset:0; pointer-events:none; background: radial-gradient(55% 55% at 50% 0%, var(--green-glow), transparent 60%), radial-gradient(45% 45% at 80% 100%, var(--gold-glow), transparent 60%); }
.final-cta .container { position: relative; z-index: 1; }
.final-cta h2 { color:#fff; font-size: clamp(1.8rem,4.5vw,2.7rem); margin-bottom: 1.1rem; }
.final-cta__check { list-style: none; display: inline-grid; gap: .55rem; text-align: left; margin: 0 auto 1.75rem; }
.final-cta__check li { display: flex; align-items: center; gap: .6rem; color: rgba(234,246,239,.9); font-size: 1.02rem; }
.final-cta__check svg { width: 20px; height: 20px; color: var(--green-400); flex-shrink: 0; }
.final-cta__sub { color: rgba(234,246,239,.78); max-width: 560px; margin: 0 auto 1.75rem; }
.final-cta__fine { font-size: .85rem; color: rgba(234,246,239,.55); margin-top: 1.5rem; }

/* ---- Sticky mobile CTA ---------------------------------------------------- */
.sticky-cta {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 900; display: none;
  padding: .7rem 1rem calc(.7rem + env(safe-area-inset-bottom));
  background: rgba(6,20,13,.96); backdrop-filter: blur(10px); border-top: 1px solid rgba(255,255,255,.08);
  transform: translateY(110%); transition: transform var(--t);
}
.sticky-cta.visible { transform: translateY(0); }
.sticky-cta .btn { width: 100%; }
@media (max-width: 768px) { .sticky-cta { display: block; } body:has(.sticky-cta) { padding-bottom: 4.75rem; } }

/* ---- Back to top ---------------------------------------------------------- */
.back-to-top {
  position: fixed; right: 1.25rem; bottom: 1.25rem; z-index: 800; width: 48px; height: 48px;
  display: grid; place-items: center; border-radius: 50%; text-decoration: none;
  background: var(--paper); border: 1px solid var(--line-strong); color: var(--ink);
  box-shadow: var(--shadow-card); opacity: 0; visibility: hidden; transition: opacity var(--t), transform var(--t), background var(--t);
}
.back-to-top.visible { opacity: 1; visibility: visible; }
.back-to-top:hover { background: var(--green-600); border-color: var(--green-600); color:#fff; transform: translateY(-4px); }
.back-to-top svg { width: 20px; height: 20px; }
@media (max-width: 768px) { body:has(.sticky-cta) .back-to-top { bottom: 5rem; } }

/* ---- Footer --------------------------------------------------------------- */
.site-footer { background: var(--ink-900); color: rgba(234,246,239,.7); padding: clamp(2.5rem,5vw,3.5rem) 0 2rem; }
.site-footer__top { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1.5rem; align-items: center; padding-bottom: 1.5rem; border-bottom: 1px solid rgba(255,255,255,.08); }
.site-footer .brand__text { color:#fff; }
.site-footer__links { display: flex; flex-wrap: wrap; gap: 1.4rem; }
.site-footer__links a { text-decoration: none; color: rgba(234,246,239,.72); font-weight: 600; font-size: .95rem; transition: color var(--t-fast); }
.site-footer__links a:hover { color: var(--green-300); }
.site-footer__legal { padding-top: 1.5rem; font-size: .82rem; color: rgba(234,246,239,.5); line-height: 1.7; }
.site-footer__legal p { margin-bottom: .8rem; }
.site-footer__legal a { color: rgba(234,246,239,.7); }
.site-footer__copy { margin-top: 1rem; font-size: .82rem; color: rgba(234,246,239,.45); }

/* ---- Reveal animations ---------------------------------------------------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: .08s; }
.reveal-delay-2 { transition-delay: .16s; }
.reveal-delay-3 { transition-delay: .24s; }
@keyframes nudge { 0%,100%{transform: translateY(0);} 50%{transform: translateY(6px);} }

/* ---- Legal / TOC pages (disclaimers) ------------------------------------- */
.page-head { background: var(--cream); border-bottom: 1px solid var(--line); padding: clamp(2.5rem,5vw,3.5rem) 0; text-align: center; }
.page-head h1 { font-size: clamp(1.7rem,4vw,2.5rem); margin-bottom: .75rem; }
.page-head__meta { color: var(--muted); font-size: .95rem; }
.legal { padding: clamp(2.5rem,5vw,3.5rem) 0; }
.toc { background: var(--cream); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 1.75rem; margin-bottom: 2.5rem; }
.toc h2 { font-size: 1.1rem; margin-bottom: 1rem; padding-bottom: .75rem; border-bottom: 1px solid var(--line); }
.toc ol { list-style: none; display: grid; gap: .4rem; }
@media (min-width: 640px) { .toc ol { grid-template-columns: 1fr 1fr; gap: .4rem 1.5rem; } }
.toc a { display: flex; gap: .6rem; text-decoration: none; color: var(--body); font-size: .96rem; padding: .35rem 0; transition: color var(--t-fast); }
.toc a:hover { color: var(--green-700); }
.toc a .n { color: var(--muted-light); min-width: 22px; }
.legal-section { margin-bottom: 2.75rem; scroll-margin-top: calc(var(--header-h) + 16px); }
.legal-section h2 { font-size: 1.45rem; margin-bottom: 1rem; padding-bottom: .65rem; border-bottom: 2px solid var(--green-500); }
.legal-section h3 { font-size: 1.12rem; margin: 1.5rem 0 .75rem; }
.legal-section p, .legal-section li { color: var(--body); }
.legal-section ul, .legal-section ol { margin: 0 0 1rem 1.25rem; display: grid; gap: .4rem; }
.legal-section a { color: var(--green-700); }
.callout { border-radius: var(--r-md); padding: 1.25rem 1.4rem; margin: 1.25rem 0; }
.callout--warn { background: #fff7f3; border: 1px solid #f6d4c4; border-left: 4px solid var(--gold-500); }
.callout--info { background: var(--mist); border: 1px solid var(--mist-2); border-left: 4px solid var(--green-500); }
.callout strong { color: var(--ink); }
.company-box { background: var(--cream); border: 1px solid var(--line); border-radius: var(--r-md); padding: 1.4rem; margin: 1.25rem 0; }
.company-box dt { font-size: .76rem; text-transform: uppercase; letter-spacing: .1em; color: var(--muted); }
.company-box dd { color: var(--ink); margin: 0 0 .8rem; }
.company-box dd:last-child { margin-bottom: 0; }
.company-box a { color: var(--green-700); }

/* ---- Simple content page (contact / thankyou / affiliates / 404) --------- */
.content-page { padding: clamp(2.5rem,6vw,4.5rem) 0; min-height: 60vh; }
.content-page h1 { font-size: clamp(1.9rem,4.5vw,2.8rem); margin-bottom: 1rem; text-align: center; }
.content-page__sub { font-size: 1.12rem; color: var(--muted); text-align: center; max-width: 600px; margin: 0 auto 2.5rem; }
.card {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 1.9rem; box-shadow: var(--shadow-card);
}
.card + .card { margin-top: 1.25rem; }
.card h2 { font-size: 1.3rem; margin-bottom: .9rem; }
.card h3 { font-size: 1.08rem; margin: 1.1rem 0 .5rem; color: var(--green-700); }
.card p { color: var(--body); }
.card a { color: var(--green-700); font-weight: 600; }
.muted { color: var(--muted); }
.center { text-align: center; }
.mt-2 { margin-top: 2rem; }

/* ============================================================================
   RESPONSIVE LADDER  (1024 / 768 / 600 / 480 / 375)
   ========================================================================== */
@media (max-width: 1024px) {
  .steps { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .section { padding: clamp(2.5rem,7vw,3.5rem) 0; }
  .offer-grid, .fit-grid { grid-template-columns: 1fr; }
  .bonus-card .check-list { grid-template-columns: 1fr; }
  .roi__op { transform: rotate(90deg); }
  .roi__math { flex-direction: column; }
}
@media (max-width: 600px) {
  .container, .container-narrow { padding: 0 1.15rem; }
}
@media (max-width: 480px) {
  .steps { grid-template-columns: 1fr; }
  .hero__badges { gap: .5rem; }
  .btn { width: 100%; }
  .nav__cta { width: auto; }
}
@media (max-width: 375px) {
  .hero h1 { font-size: 1.85rem; }
}

/* ---- 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; }
  .reveal { opacity: 1; transform: none; }
}

/* ---- Print ---------------------------------------------------------------- */
@media print {
  .site-header, .sticky-cta, .back-to-top, .hero__scroll { display: none !important; }
  .hero, .roi, .final-cta, .site-footer { background: #fff !important; color:#000 !important; }
}

/* ============================================================================
   POST-GATE ADDITIONS — dated, append-only. Do NOT modify rules above.
   ============================================================================ */

/* 2026-06-14 adversarial-panel fix: thankyou.html / 404.html have a single
   header CTA and no hamburger, so the mobile gate that hides .nav__cta would
   erase their only header action on phones. This keeps a standalone header
   CTA visible at every width. */
.nav__cta--solo { display: inline-flex !important; }
