:root {
  --cream:      #FAF4E1;
  --cream-mid:  #F0E2BC;
  --cream-card: #FFFDF5;
  --cocoa:      #251205;
  --cocoa-mid:  #5A3D22;
  --cocoa-mute: #7D5D38;
  --gold:       #C9971F;
  --gold-lt:    #E8B84B;
  --rose:       #B84E68;
  --sage:       #527055;
  --border:     #D9C28A;
  --border-lt:  #EDD9A8;
  --txt-lt:     #FAF4E1;
  /* Gold is this build's brand SURFACE — button grounds, the pulse dot, the
     monogram gradients. It was also being used as text ink on the cream, where
     it measured 2.06-2.60:1 across labels, prices, "notify me" links and the
     bullet ticks. Decoration and ink are now separate values.
     --gold-ink is the ink; it is redefined on the cocoa containers below, so
     one `color: var(--gold-ink)` is correct on both grounds. */
  --gold-ink:   #875500;
  --ink-body:   var(--cocoa-mid);
  --ink-mute:   var(--cocoa-mute);
  /* Monogram gradients only. The brand rose and sage are unchanged; cocoa
     initials on them measured 3.71:1 and 3.26:1, so these two lifted tints
     carry the initials instead. */
  --rose-lt:    #C95F79;
  --sage-lt:    #6B896E;
  --ff-d: "Libre Caslon Text", Georgia, serif;
  --ff-h: "Gabarito", system-ui, sans-serif;
  --ff-b: "Onest", system-ui, sans-serif;
  --ff-m: "Reddit Mono", ui-monospace, monospace;
  --r:    4px;
  --rlg:  12px;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--ff-b); background: var(--cream); color: var(--cocoa); line-height: 1.6; -webkit-font-smoothing: antialiased; }

/* NAV */
.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; background: var(--cocoa); border-bottom: 1px solid rgba(201,151,31,.18); display: flex; align-items: center; justify-content: space-between; padding: 0 clamp(1.5rem,5vw,4rem); height: 64px; }
.nav-logo { font-family: var(--ff-d); font-size: 1.2rem; font-style: italic; color: var(--gold-lt); text-decoration: none; }
.nav-links { display: flex; align-items: center; gap: clamp(.8rem,2.5vw,2rem); list-style: none; }
.nav-links a { font-family: var(--ff-h); font-size: .77rem; letter-spacing: .08em; font-weight: 500; color: rgba(250,244,225,.58); text-decoration: none; text-transform: uppercase; transition: color .2s; }
.nav-links a:hover, .nav-links a.active { color: var(--gold-lt); }
.nav-cta { font-family: var(--ff-h); font-size: .76rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; background: var(--gold); color: var(--cocoa); padding: .5rem 1.2rem; border-radius: var(--r); cursor: pointer; border: none; transition: background .2s; white-space: nowrap; text-decoration: none; }
.nav-cta:hover { background: var(--gold-lt); }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--gold-lt); }
.mobile-nav { display: none; position: fixed; top: 64px; left: 0; right: 0; background: var(--cocoa); border-bottom: 1px solid rgba(201,151,31,.12); padding: 1.5rem; flex-direction: column; gap: 1rem; z-index: 99; }
.mobile-nav.open { display: flex; }
.mobile-nav a { font-family: var(--ff-h); font-size: .9rem; font-weight: 500; letter-spacing: .06em; text-transform: uppercase; color: rgba(250,244,225,.68); text-decoration: none; padding: .5rem 0; border-bottom: 1px solid rgba(255,255,255,.05); }

/* LAYOUT */
.page-wrap { padding-top: 64px; }
.sec { padding: clamp(4rem,8vh,6rem) clamp(1.5rem,5vw,4rem); }
.sec-in { max-width: 1100px; margin: 0 auto; }
.sec-label { font-family: var(--ff-m); font-size: .68rem; letter-spacing: .18em; text-transform: uppercase; color: var(--gold-ink); margin-bottom: .75rem; }
.sec-h { font-family: var(--ff-d); font-size: clamp(1.9rem,3.8vw,3.25rem); font-weight: 500; line-height: 1.12; color: var(--cocoa); margin-bottom: 1rem; }
.sec-p { font-size: 1rem; color: var(--ink-body); max-width: 540px; line-height: 1.65; margin-bottom: 2.75rem; font-weight: 300; }

/* HERO */
.hero { background: var(--cocoa); padding-top: 64px; position: relative; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; background: radial-gradient(ellipse at 20% 50%,rgba(201,151,31,.07) 0%,transparent 60%), radial-gradient(ellipse at 80% 20%,rgba(184,78,104,.05) 0%,transparent 50%); pointer-events: none; }
.hero-in { max-width: 1100px; margin: 0 auto; padding: clamp(4rem,10vh,8rem) clamp(1.5rem,5vw,4rem); position: relative; z-index: 2; display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.hero-eyebrow { font-family: var(--ff-m); font-size: .68rem; letter-spacing: .18em; text-transform: uppercase; color: var(--gold-ink); margin-bottom: 1rem; display: flex; align-items: center; gap: .5rem; }
.hero-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:.35} }
.hero-h { font-family: var(--ff-d); font-size: clamp(2.8rem,5.5vw,5rem); line-height: 1.05; color: var(--txt-lt); font-weight: 500; margin-bottom: 1.25rem; }
.hero-h em { font-style: italic; color: var(--gold-lt); }
.hero-sub { font-size: clamp(.95rem,1.4vw,1.1rem); color: rgba(250,244,225,.66); line-height: 1.65; font-weight: 300; }
.price-card { background: rgba(255,255,255,.05); border: 1px solid rgba(201,151,31,.28); border-radius: var(--rlg); padding: 2rem; }
.price-main { font-family: var(--ff-d); font-size: 4.5rem; font-weight: 600; color: var(--gold-lt); line-height: 1; }
.price-period { font-family: var(--ff-m); font-size: .75rem; letter-spacing: .1em; text-transform: uppercase; color: rgba(250,244,225,.70); margin-bottom: 1rem; }
.price-pills { display: flex; gap: .5rem; flex-wrap: wrap; margin-bottom: 1.5rem; }
.price-pill { font-family: var(--ff-m); font-size: .6rem; letter-spacing: .1em; text-transform: uppercase; padding: .28rem .7rem; border-radius: 100px; border: 1px solid rgba(201,151,31,.35); color: var(--gold-lt); background: rgba(201,151,31,.08); }
.price-pill.accent { background: rgba(201,151,31,.18); border-color: var(--gold-ink); }
.btn-bundle { display: inline-block; font-family: var(--ff-h); font-weight: 700; font-size: .88rem; letter-spacing: .06em; text-transform: uppercase; background: var(--gold); color: var(--cocoa); padding: 1rem 2rem; border-radius: var(--r); text-decoration: none; transition: all .2s; width: 100%; text-align: center; margin-bottom: .75rem; }
.btn-bundle:hover { background: var(--gold-lt); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(201,151,31,.28); }
.price-note { font-family: var(--ff-m); font-size: .61rem; letter-spacing: .06em; text-transform: uppercase; color: rgba(250,244,225,.62); text-align: center; }

/* WHAT'S INCLUDED */
.included-sec { background: var(--cream); }
.included-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 2.5rem; flex-wrap: wrap; gap: 1rem; }
.total-banner { background: var(--cocoa); color: var(--txt-lt); border-radius: var(--rlg); padding: 1.25rem 1.75rem; text-align: right; }
.total-label { font-family: var(--ff-m); font-size: .62rem; letter-spacing: .12em; text-transform: uppercase; color: rgba(250,244,225,.70); margin-bottom: .25rem; }
.total-strike { font-family: var(--ff-d); font-size: 1.6rem; color: rgba(250,244,225,.62); text-decoration: line-through; }
.total-price { font-family: var(--ff-d); font-size: 2.2rem; font-weight: 600; color: var(--gold-lt); line-height: 1; }
.total-save { font-family: var(--ff-m); font-size: .62rem; letter-spacing: .1em; text-transform: uppercase; color: var(--gold-ink); margin-top: .35rem; }
.item-list { display: flex; flex-direction: column; gap: .75rem; }
.item-row { display: flex; align-items: center; gap: 1rem; background: var(--cream-card); border: 1px solid var(--border-lt); border-radius: var(--rlg); padding: 1.25rem 1.5rem; transition: transform .15s, box-shadow .15s; }
.item-row:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(92,61,34,.07); }
.item-icon { font-size: 1.4rem; flex-shrink: 0; width: 2.5rem; text-align: center; }
.item-body { flex: 1; }
.item-name { font-family: var(--ff-d); font-size: 1.15rem; font-weight: 500; color: var(--cocoa); margin-bottom: .15rem; }
.item-desc { font-size: .82rem; color: var(--ink-mute); line-height: 1.5; font-weight: 300; }
.item-badge { font-family: var(--ff-m); font-size: .58rem; letter-spacing: .1em; text-transform: uppercase; padding: .2rem .55rem; border-radius: 100px; background: rgba(90,61,34,.06); color: var(--ink-mute); border: 1px solid var(--border-lt); margin-left: .4rem; white-space: nowrap; }
.item-badge.new-badge { background: rgba(82,112,85,.08); color: var(--sage); border-color: rgba(82,112,85,.25); }
.item-price { font-family: var(--ff-d); font-size: 1.3rem; font-weight: 600; color: var(--ink-body); flex-shrink: 0; text-align: right; }
.item-price.free { color: var(--sage); font-size: 1rem; }
.section-divider { font-family: var(--ff-m); font-size: .63rem; letter-spacing: .15em; text-transform: uppercase; color: var(--ink-mute); padding: 1rem 0 .4rem; }
.running-total { background: rgba(201,151,31,.07); border: 1px solid rgba(201,151,31,.25); border-radius: var(--rlg); padding: 1.25rem 1.5rem; margin-top: 1.5rem; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem; }
.rt-label { font-family: var(--ff-m); font-size: .65rem; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-mute); }
.rt-math { display: flex; align-items: center; gap: 1.25rem; flex-wrap: wrap; }
.rt-acarte { font-family: var(--ff-d); font-size: 1.8rem; color: var(--ink-mute); text-decoration: line-through; }
.rt-vs { font-family: var(--ff-m); font-size: .62rem; color: var(--ink-mute); letter-spacing: .1em; text-transform: uppercase; }
.rt-bundle { font-family: var(--ff-d); font-size: 2rem; font-weight: 600; color: var(--gold-ink); }
.rt-save-badge { font-family: var(--ff-m); font-size: .6rem; letter-spacing: .1em; text-transform: uppercase; background: var(--gold); color: var(--cocoa); padding: .3rem .8rem; border-radius: 100px; font-weight: 700; }

/* FAQ */
.faq-sec { background: var(--cream-mid); }
.faq-list { display: flex; flex-direction: column; gap: 1px; max-width: 780px; }
.faq-item { background: var(--cream-card); border: 1px solid var(--border-lt); border-radius: var(--rlg); overflow: hidden; margin-bottom: .6rem; }
.faq-q { font-family: var(--ff-d); font-size: 1.15rem; font-weight: 500; color: var(--cocoa); padding: 1.25rem 1.5rem; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 1rem; user-select: none; }
.faq-q:hover { background: rgba(201,151,31,.04); }
.faq-arrow { font-size: 1rem; transition: transform .2s; color: var(--gold-ink); flex-shrink: 0; }
.faq-item.open .faq-arrow { transform: rotate(180deg); }
.faq-a { display: none; padding: 0 1.5rem 1.25rem; font-size: .92rem; color: var(--ink-body); line-height: 1.7; font-weight: 300; }
.faq-item.open .faq-a { display: block; }
.faq-q[role="button"]{list-style:none}
.skip-link{position:fixed;top:.5rem;left:.5rem;z-index:1000;padding:.7rem 1rem;background:var(--cream-card);color:var(--cocoa);border:2px solid var(--gold);border-radius:var(--r);transform:translateY(-160%);transition:transform .15s}.skip-link:focus{transform:translateY(0)}
:where(a,button,[role="button"],[tabindex]):focus-visible{outline:3px solid var(--gold-lt);outline-offset:3px}
@media (prefers-reduced-motion:reduce){html{scroll-behavior:auto}*,*::before,*::after{animation-duration:.01ms!important;animation-iteration-count:1!important;transition-duration:.01ms!important;scroll-behavior:auto!important}}
@media (forced-colors:active){:where(a,button,[role="button"],[tabindex]):focus-visible{outline:3px solid Highlight}.hamburger span,.hero-dot{background:ButtonText}.faq-item,.price-card,.item-row,.btn-bundle,.hamburger{border:1px solid CanvasText}}
@media print{.nav,.mobile-nav,.footer,.cta-band,.btn-bundle,.hero-bg{display:none!important}body,.hero,.faq-sec,.included-sec{background:#fff!important;color:#000!important}.page-wrap,.hero{padding-top:0}.faq-item{break-inside:avoid}.faq-a{display:block!important}a{color:#000!important;text-decoration:underline}}

/* CTA BAND */
.cta-band { background: var(--cocoa); padding: clamp(4rem,8vh,6rem) clamp(1.5rem,5vw,4rem); }
.cta-in { max-width: 680px; margin: 0 auto; text-align: center; }
.cta-h { font-family: var(--ff-d); font-size: clamp(2rem,4vw,3.25rem); font-weight: 500; color: var(--txt-lt); margin-bottom: .75rem; line-height: 1.1; }
.cta-h em { font-style: italic; color: var(--gold-lt); }
.cta-p { font-size: .95rem; color: rgba(250,244,225,.70); line-height: 1.65; margin-bottom: 2rem; font-weight: 300; }
.cta-link { display: block; font-family: var(--ff-m); font-size: .68rem; letter-spacing: .1em; text-transform: uppercase; color: rgba(250,244,225,.62); margin-top: 1.25rem; text-decoration: none; }
.cta-link:hover { color: var(--gold-lt); }

/* FOOTER */
.footer { background: var(--cocoa); padding: 3rem clamp(1.5rem,5vw,4rem) 2rem; border-top: 1px solid rgba(201,151,31,.1); }
.footer-in { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1.5fr 1.5fr 1fr 1fr; gap: 3rem; margin-bottom: 2rem; }
.footer-logo { font-family: var(--ff-d); font-size: 1.2rem; font-style: italic; color: var(--gold-lt); margin-bottom: .6rem; }
.footer-tag { font-size: .82rem; color: rgba(250,244,225,.62); line-height: 1.6; font-weight: 300; max-width: 260px; }
.footer-col-h { font-family: var(--ff-h); font-size: .68rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: rgba(250,244,225,.62); margin-bottom: 1rem; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: .45rem; }
.footer-links a { font-size: .82rem; color: rgba(250,244,225,.70); text-decoration: none; transition: color .2s; font-weight: 300; }
.footer-links a:hover { color: var(--gold-lt); }
.footer-bot { max-width: 1200px; margin: 0 auto; padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,.05); display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }
.footer-legal { font-family: var(--ff-m); font-size: .61rem; letter-spacing: .06em; color: rgba(250,244,225,.62); }

/* RESPONSIVE */
@media (max-width:900px) {
  .hero-in { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-in { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .included-header { flex-direction: column; align-items: flex-start; }
}
@media (max-width:600px) {
  .rt-math { flex-direction: column; gap: .5rem; }
}

.csp-bundle-1{padding:12px;text-align:center;background:#fff3cd;color:#3b2b00;font-weight:700}

.csp-bundle-2{font-style:normal;font-family:var(--ff-h);font-size:.62rem;letter-spacing:.12em;text-transform:uppercase;color: rgba(250,244,225,.62);margin-left:.4rem;vertical-align:middle}

.csp-bundle-3{margin-bottom:.5rem}

.csp-bundle-4{font-size:.92rem;color: var(--ink-mute);font-weight:300;max-width:480px}

.csp-bundle-5{font-family:var(--ff-m);font-size:.6rem;color: var(--ink-mute)}

.csp-bundle-6{border-color:rgba(82,112,85,.35);background:rgba(82,112,85,.04)}

.csp-bundle-7{margin-bottom:2rem}

.csp-bundle-8{display:inline-block;margin-bottom:1.25rem}

.csp-bundle-9{max-width:340px;margin:0 auto}

.csp-bundle-10{color:inherit}


/* ── LIGHT TEXT ON THE COCOA CONTAINERS ──
   The same classes are used on cream and on cocoa — .sec-label, .lane-role,
   .module-list, .social-pending, .brand-link all appear on both. Rather than
   fork every rule, the three ink tokens are redefined here and inherit down,
   so `color: var(--gold-ink)` resolves to the deep gold on paper and the light
   gold on cocoa. ── */
.nav, .mobile-nav, .hero, .dark-clip, .page-hero, .about-hero,
.persuasion-intro, .tier-hd.dark, .footer,
.csp-index-59,                       /* products page: dark roadmap section */
.total-banner, .cta-band {
  --gold-ink: var(--gold-lt);
  --ink-body: rgba(250,244,225,.82);
  --ink-mute: rgba(250,244,225,.70);
}


/* "account not yet live" under a social handle. Deliberately not gold: gold is
   this build's live/actionable colour and these accounts do not exist yet.
   --ink-mute flips to cream on the cocoa containers. */
.social-pending {
  display: inline-block; margin-top: .5rem;
  font-family: var(--ff-m); font-size: .61rem; letter-spacing: .08em;
  text-transform: uppercase; color: var(--ink-mute);
  border: 1px dashed currentColor; border-radius: 100px;
  padding: .24rem .7rem; opacity: 1;
}
