/* =========================================================================
   LedgerSnap — landing & legal site styles
   Brand tokens mirror the app (lib/theme): forest green accent, warm-oat base.
   ========================================================================= */

:root {
  --oat:        #F4F1EA;  /* page background */
  --oat-deep:   #EDE8DC;  /* deeper warm band */
  --cream:      #FDFCF8;  /* card surface (warm near-white) */
  --tile:       #EAE6DC;  /* chip / tile    */
  --ink:        #16201A;  /* primary text   */
  --ink-2:      #565951;  /* secondary text */
  --ink-3:      #8C887C;  /* tertiary text  */
  --accent:     #165C3B;  /* forest green   */
  --accent-700: #0F4A2E;
  --accent-600: #1C6B47;
  --accent-300: #3DDC84;  /* mint highlight */
  --accent-50:  #EDF4EE;  /* faint mint wash */
  --accent-100: #DCEBE0;
  --success-bg: #E3EFE3;
  --success-fg: #1F6B46;
  --warn-bg:    #F6EAD2;
  --warn-fg:    #8A5A12;
  --line:       #E6E1D5;  /* hairline */
  --line-soft:  #EEEAE0;

  --radius-sm: 14px;
  --radius:    18px;
  --radius-lg: 26px;
  /* Quietly layered elevation: a crisp hairline cast + a wide, soft diffuse one. */
  --shadow-xs: 0 1px 2px rgba(22,32,26,.04);
  --shadow:    0 1px 2px rgba(22,32,26,.04), 0 6px 16px -8px rgba(22,32,26,.10);
  --shadow-md: 0 1px 3px rgba(22,32,26,.05), 0 18px 40px -22px rgba(22,32,26,.22);
  --shadow-lg: 0 2px 6px rgba(22,32,26,.05), 0 40px 80px -34px rgba(22,32,26,.30);
  --maxw:      1120px;
  --font: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI",
          Roboto, Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
/* anchored sections clear the sticky header when jumped to */
section[id], [id]#main { scroll-margin-top: 84px; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: .001ms !important; animation-iteration-count: 1 !important;
      transition-duration: .001ms !important; }
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  /* warm, barely-there top wash so the page reads as crafted, not flat */
  background:
    radial-gradient(120% 60% at 50% -8%, #FAF8F2 0%, rgba(250,248,242,0) 60%),
    var(--oat);
  line-height: 1.62;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, h4 { line-height: 1.14; letter-spacing: -.02em; margin: 0 0 .4em; font-weight: 700; color: var(--ink); text-wrap: balance; }
h1 { font-size: clamp(1.9rem, 4vw, 2.85rem); line-height: 1.08; letter-spacing: -.038em; font-weight: 800; overflow-wrap: break-word; }
h2 { font-size: clamp(1.45rem, 2.6vw, 1.95rem); letter-spacing: -.03em; }
h3 { font-size: 1.16rem; letter-spacing: -.022em; }
p  { margin: 0 0 1rem; color: var(--ink-2); text-wrap: pretty; }
a  { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; display: block; }
ul, ol { color: var(--ink-2); }
:focus-visible { outline: 2.5px solid var(--accent); outline-offset: 2px; border-radius: 4px; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.muted { color: var(--ink-3); }
.center { text-align: center; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px; font-size: .7rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .15em; color: var(--accent);
  background: linear-gradient(180deg, #fff, var(--accent-50));
  padding: 7px 15px 7px 13px; border-radius: 999px; margin-bottom: 20px;
  border: 1px solid rgba(22,92,59,.14);
  box-shadow: var(--shadow-xs);
}
.eyebrow::before {
  content: ""; width: 6px; height: 6px; border-radius: 999px; flex: none;
  background: var(--accent); box-shadow: 0 0 0 3px rgba(22,92,59,.14);
}
/* "we're live" eyebrow: the dot breathes instead of sitting static */
.eyebrow-live::before { animation: live-pulse 2.2s ease-in-out infinite; }
@keyframes live-pulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(22,92,59,.14); }
  50%      { box-shadow: 0 0 0 6px rgba(22,92,59,.05); }
}
@media (prefers-reduced-motion: reduce) { .eyebrow-live::before { animation: none; } }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 9px; justify-content: center;
  font-family: var(--font); font-weight: 600; font-size: .96rem; letter-spacing: -.01em;
  padding: 12px 22px; border-radius: 12px; border: 1px solid transparent;
  cursor: pointer; transition: transform .18s cubic-bezier(.2,.7,.3,1), box-shadow .22s ease, background .2s ease, border-color .2s ease;
  text-decoration: none; white-space: nowrap;
}
.btn:hover { text-decoration: none; transform: translateY(-1.5px); }
.btn:active { transform: translateY(0); }
.btn-primary {
  background: linear-gradient(180deg, var(--accent-600), var(--accent));
  color: #fff; box-shadow: 0 1px 1px rgba(0,0,0,.12) inset, 0 8px 20px -10px rgba(22,92,59,.65);
}
.btn-primary:hover { background: linear-gradient(180deg, var(--accent), var(--accent-700)); box-shadow: 0 1px 1px rgba(0,0,0,.12) inset, 0 14px 28px -12px rgba(22,92,59,.6); }
.btn-ghost { background: var(--cream); color: var(--ink); border-color: var(--line); box-shadow: var(--shadow-xs); }
.btn-ghost:hover { background: #fff; border-color: #d8d2c4; box-shadow: var(--shadow); }
.btn-lg { padding: 15px 30px; font-size: 1.02rem; border-radius: 13px; }

/* ---------- header / nav ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  background: rgba(245,242,235,.78);
  border-bottom: 1px solid rgba(230,225,213,.6);
}
.nav { display: flex; align-items: center; justify-content: space-between; height: 68px; }
.brand { display: inline-flex; align-items: center; gap: 10px; color: var(--ink); }
/* wordmark: UI font, "Snap" in brand green */
.brand .brand-name {
  font-weight: 800; font-size: 1.18rem; letter-spacing: -.035em;
}
.brand .brand-2 { color: var(--accent); }
.site-footer .brand .brand-2 { color: #4FC98D; }
.brand:hover { text-decoration: none; }
.brand img { width: 32px; height: 32px; border-radius: 9px; box-shadow: var(--shadow-xs); }
/* bare receipt glyph as the brand mark, always in brand green
   (the footer is dark in both themes, so it gets the brighter green) */
.brand .brand-mark { flex: none; color: var(--accent); }
.site-footer .brand .brand-mark { color: #4FC98D; }
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a {
  color: var(--ink-2); font-weight: 500; font-size: .93rem; padding: 8px 13px; border-radius: 9px;
  transition: color .18s ease, background .18s ease;
}
.nav-links a:hover { color: var(--ink); background: rgba(22,92,59,.06); text-decoration: none; }
/* scroll-spy: the section currently in view gets its nav link in brand green */
.nav-links a.active { color: var(--accent); font-weight: 600; background: rgba(22,92,59,.07); }
.nav-links a.active:hover { color: var(--accent); }
.nav-cta { display: flex; align-items: center; gap: 10px; }
.nav-cta .btn { padding: 9px 18px; font-size: .92rem; }
/* the "Get the app" button inside the nav list is for the mobile dropdown only */
.nav-menu-cta { display: none; }
.nav-toggle {
  display: none; background: var(--cream); border: 1px solid var(--line); color: var(--ink);
  cursor: pointer; padding: 9px; border-radius: 11px; line-height: 0; box-shadow: var(--shadow-xs);
  transition: background .18s ease, border-color .18s ease;
}
.nav-toggle:hover { background: #fff; border-color: #d8d2c4; }
.nav-toggle .ico-close { display: none; }
/* right-hand header cluster: CTAs + theme switch (+ mobile menu button) */
.nav-side { display: flex; align-items: center; gap: 10px; }
.theme-toggle {
  display: inline-flex; background: var(--cream); border: 1px solid var(--line); color: var(--ink);
  cursor: pointer; padding: 9px; border-radius: 11px; line-height: 0; box-shadow: var(--shadow-xs);
  transition: background .18s ease, border-color .18s ease;
}
.theme-toggle:hover { background: #fff; border-color: #d8d2c4; }
/* light shows the moon (tap → dark); dark shows the sun (tap → light) */
.theme-toggle .ico-sun { display: none; }
.site-header.open .nav-toggle .ico-open { display: none; }
.site-header.open .nav-toggle .ico-close { display: block; }

@media (max-width: 860px) {
  .nav-toggle { display: inline-flex; }
  /* On mobile the section nav collapses into a tap-to-open dropdown panel. */
  .nav-links {
    display: none;
    position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 2px;
    background: rgba(245,242,235,.97);
    backdrop-filter: saturate(180%) blur(14px);
    -webkit-backdrop-filter: saturate(180%) blur(14px);
    border-bottom: 1px solid var(--line);
    padding: 12px 20px 18px; box-shadow: var(--shadow-md);
  }
  .site-header.open .nav-links { display: flex; }
  .nav-links a { padding: 13px 14px; font-size: 1.02rem; font-weight: 500; border-radius: 11px; }
  .nav-links a.nav-menu-cta {
    display: inline-flex; margin-top: 8px; justify-content: center;
    font-weight: 600; color: #fff; border-radius: 12px;
  }
  .nav-links a.nav-menu-cta:hover { color: #fff; background: linear-gradient(180deg, var(--accent), var(--accent-700)); }
  /* the desktop header CTAs stay hidden; the sticky bar + menu cover them */
  .nav-cta { display: none; }
}

/* ---------- hero ---------- */
.hero { padding: 84px 0 60px; position: relative; overflow: hidden; }
.hero::before {
  content: ""; position: absolute; inset: -42% 42% auto -12%;
  height: 640px; background: radial-gradient(closest-side, rgba(61,220,132,.16), transparent 72%);
  pointer-events: none;
}
.hero::after {
  content: ""; position: absolute; inset: -24% -18% auto 52%;
  height: 560px; background: radial-gradient(closest-side, rgba(22,92,59,.09), transparent 72%);
  pointer-events: none; z-index: 0;
}
.hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.08fr .92fr; gap: 56px; align-items: center; }
.hero h1 { margin-bottom: .42em; }
.hero p.lead { font-size: 1.06rem; line-height: 1.62; color: var(--ink-2); max-width: 46ch; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.hero-note { margin-top: 18px; font-size: .9rem; color: var(--ink-3); display: flex; align-items: center; gap: 8px; }
.store-badges { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 28px; }

/* phone mockup */
.phone {
  width: 300px; max-width: 80vw; margin: 0 auto; aspect-ratio: 9/19.2;
  background: linear-gradient(160deg, var(--accent), var(--accent-700));
  border-radius: 42px; padding: 14px; box-shadow: var(--shadow);
  position: relative;
}
.phone-screen {
  width: 100%; height: 100%; background: var(--cream); border-radius: 30px;
  padding: 26px 20px; display: flex; flex-direction: column; gap: 14px; overflow: hidden;
}
.mini-label { font-size: .62rem; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-3); font-weight: 600; }
.mini-hero { font-size: 2.1rem; font-weight: 700; letter-spacing: -.04em; color: var(--ink); }
.mini-hero span { font-size: 1rem; color: var(--ink-3); }
.mini-card { background: var(--oat); border-radius: 16px; padding: 13px 15px; }
.mini-row { display: flex; align-items: center; gap: 12px; }
.mini-tile { width: 38px; height: 38px; border-radius: 11px; background: var(--success-bg); display: grid; place-items: center; color: var(--success-fg); flex: none; }
.mini-row .grow { flex: 1; min-width: 0; }
.mini-vendor { font-weight: 600; font-size: .9rem; }
.mini-sub { font-size: .72rem; color: var(--ink-3); }
.mini-amt { font-weight: 600; font-variant-numeric: tabular-nums; }
.chip { font-size: .62rem; font-weight: 600; padding: 3px 9px; border-radius: 999px; }
.chip-ok { background: var(--success-bg); color: var(--success-fg); }
.chip-rev { background: var(--warn-bg); color: var(--warn-fg); }

/* ---- hero art: decorative stage behind the phone screenshot ---- */
.hero-art { position: relative; display: grid; place-items: center; isolation: isolate; width: max-content; max-width: 100%; margin: 0 auto; }
.hero-backdrop { position: absolute; inset: 0; z-index: 0; pointer-events: none; display: grid; place-items: center; }
.hero-backdrop > span { position: absolute; }

/* vivid mint glow that makes the dark phone pop (spills past the phone) */
.hb-glow {
  width: 165%; aspect-ratio: 1 / 1.04; border-radius: 50%;
  background: radial-gradient(circle at 50% 42%, rgba(61,220,132,.42), rgba(22,92,59,.13) 46%, transparent 72%);
  filter: blur(16px);
}
/* frosted card the phone leans on, gently tilted for energy */
.hb-panel {
  width: 112%; height: 93%; border-radius: 34px;
  background: linear-gradient(160deg, rgba(255,255,255,.72), rgba(255,255,255,.26));
  border: 1px solid rgba(255,255,255,.75);
  box-shadow: var(--shadow-lg);
  -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
  transform: rotate(-5deg);
}
/* subtle dot texture across the panel */
.hb-panel::after {
  content: ""; position: absolute; inset: 0; border-radius: inherit;
  background-image: radial-gradient(rgba(22,92,59,.10) 1.3px, transparent 1.3px);
  background-size: 17px 17px; opacity: .6;
}
/* floating brand accent blobs */
.hb-blob { border-radius: 26px; box-shadow: var(--shadow-md); }
.hb-blob--1 { width: 58px; height: 58px; top: 3%; right: 2%;
  background: linear-gradient(155deg, var(--accent-300), var(--accent)); transform: rotate(12deg);
  animation: floaty 7s ease-in-out infinite; }
.hb-blob--2 { width: 38px; height: 38px; bottom: 7%; left: 3%; border-radius: 14px;
  background: linear-gradient(155deg, #fff, var(--accent-50)); border: 1px solid var(--line);
  animation: floaty 5.5s ease-in-out .6s infinite; }
/* thin dashed ring for depth */
.hb-ring { width: 104px; height: 104px; border-radius: 50%;
  border: 2px dashed rgba(22,92,59,.22); bottom: 4%; right: 6%; }

/* real app screenshot (already device-framed, transparent corners) — shown straight */
.hero-shot {
  position: relative; z-index: 1;
  width: 300px; max-width: 78vw; height: auto; display: block; margin: 0 auto;
  filter: drop-shadow(0 34px 60px rgba(16,32,26,.42));
}
/* translate3d keeps the float on the GPU compositor — translateY alone can
   fall back to CPU repaints and stutter (used by the decorative blobs) */
@keyframes floaty { 0%,100% { transform: translate3d(0,0,0); } 50% { transform: translate3d(0,-8px,0); } }
@media (prefers-reduced-motion: reduce) { .hb-blob { animation: none; } }

/* hero demo video — pure app-screen recording wrapped in a CSS device frame
   (bezel + dynamic island), so the corners stay crisp at any size.
   box-shadow instead of drop-shadow: filters on a playing video are expensive. */
.hero-device {
  position: relative; z-index: 1;
  width: 300px; max-width: 78vw; margin: 0 auto;
  padding: 9px; background: #11150f; border-radius: 44px;
  box-shadow: 0 34px 60px rgba(16,32,26,.42), inset 0 0 0 2px #2a2f2a;
}
.hd-island {
  position: absolute; top: 4.8%; left: 50%; transform: translateX(-50%);
  width: 27%; height: 3.2%; border-radius: 999px; background: #11150f; z-index: 2;
}
.hero-video {
  display: block; width: 100%; aspect-ratio: 9 / 19.5; height: auto;
  border-radius: 35px; object-fit: cover; background: #0e3a26;
}


@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 36px; }
  .hero { padding: 48px 0 32px; text-align: center; }
  /* Lead with the message: headline + copy first, phone screenshot after. */
  .hero-art { order: 2; }
  .hero p.lead { max-width: 52ch; margin-left: auto; margin-right: auto; }
  .hero-actions, .hero-trust { justify-content: center; }
}
@media (max-width: 560px) {
  /* slightly smaller display type so the headline never overflows narrow phones */
  .hero h1 { font-size: clamp(1.75rem, 8.4vw, 2.2rem); letter-spacing: -.03em; }
  .hero p.lead { font-size: 1rem; line-height: 1.58; }
  .hero-actions .btn { flex: 1 1 auto; }
  /* keep the eyebrow pill inside the viewport on narrow phones */
  .eyebrow { letter-spacing: .1em; font-size: .64rem; padding: 6px 12px; white-space: normal; }
  /* smaller phone screenshot / demo video so it doesn't dominate the fold */
  .hero-shot { width: 220px; max-width: 58vw; }
  .hero-device { width: 230px; max-width: 62vw; border-radius: 34px; }
  .hero-video { border-radius: 26px; }
}

/* ---------- capability chips strip ---------- */
.trust { padding: 60px 0 24px; }
.trust p { text-align: center; font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-3); font-weight: 600; margin-bottom: 26px; }
.trust-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; max-width: 920px; margin: 0 auto; }
.trust-chip {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--cream); border: 1px solid var(--line); border-radius: 999px; padding: 9px 18px 9px 10px;
  font-weight: 600; font-size: .92rem; color: var(--ink);
  box-shadow: var(--shadow-xs); transition: transform .18s ease, box-shadow .2s ease, border-color .2s ease;
}
.trust-chip:hover { transform: translateY(-2px); box-shadow: var(--shadow); border-color: #dcd5c6; }
.trust-chip .tci {
  width: 28px; height: 28px; border-radius: 8px; flex: none;
  background: linear-gradient(155deg, var(--accent-50), var(--accent-100)); color: var(--accent);
  display: grid; place-items: center;
}
@media (max-width: 540px) {
  .trust-row { gap: 9px; }
  .trust-chip { font-size: .86rem; padding: 9px 14px 9px 10px; }
  .trust-chip .tci { width: 26px; height: 26px; }
}

/* ---------- sections ---------- */
section { padding: 80px 0; }
.section-head { max-width: 640px; margin: 0 auto 46px; text-align: center; }
.section-head p { font-size: 1.02rem; color: var(--ink-2); }
/* roomy on desktop, tighter (but still breathing) on tablets and phones */
@media (max-width: 820px) {
  section { padding: 60px 0; }
  .section-head { margin-bottom: 36px; }
}
@media (max-width: 520px) {
  section { padding: 48px 0; }
  .section-head { margin-bottom: 28px; }
}

/* feature grid */
.features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.card {
  position: relative; background: var(--cream); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px;
  box-shadow: var(--shadow-xs); overflow: hidden;
  transition: transform .24s cubic-bezier(.2,.7,.3,1), box-shadow .24s ease, border-color .24s ease;
}
/* a hairline of brand colour that warms up on hover — quiet, deliberate depth */
.card::before {
  content: ""; position: absolute; left: 0; right: 0; top: 0; height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--accent-300));
  opacity: 0; transition: opacity .24s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: #dcd5c6; }
.card:hover::before { opacity: 1; }
.card .ic {
  width: 46px; height: 46px; border-radius: 13px;
  background: linear-gradient(155deg, #fff, var(--accent-50));
  border: 1px solid var(--accent-100);
  color: var(--accent); display: grid; place-items: center; margin-bottom: 18px;
  box-shadow: var(--shadow-xs);
}
.card h3 { margin-bottom: .35em; }
.card p { font-size: .95rem; line-height: 1.58; margin: 0; color: var(--ink-2); }
@media (max-width: 900px) { .features { grid-template-columns: 1fr 1fr; } }
@media (max-width: 620px) { .features { grid-template-columns: 1fr; } }

/* how it works */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; counter-reset: step; }
.step { background: var(--cream); border: 1px solid var(--line); border-radius: var(--radius); padding: 30px 28px; box-shadow: var(--shadow-xs); position: relative; }
.step .num {
  width: 44px; height: 44px; border-radius: 13px;
  background: linear-gradient(155deg, var(--accent-600), var(--accent-700)); color: #fff;
  font-weight: 700; font-size: 1.1rem; display: grid; place-items: center; margin-bottom: 18px;
  box-shadow: 0 8px 18px -8px rgba(22,92,59,.6);
}
.step p { font-size: .95rem; line-height: 1.58; margin: 0; }
@media (max-width: 820px) { .steps { grid-template-columns: 1fr; } }

.alt { background: linear-gradient(180deg, var(--cream), #F8F5EF); border-top: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft); }
.alt-2 { background: linear-gradient(180deg, var(--oat), #efe9dd); }

/* split feature rows */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.split.rev .split-media { order: 2; }
.split-media {
  background: var(--cream); border-radius: var(--radius-lg); box-shadow: var(--shadow);
  padding: 30px; min-height: 240px; display: flex; flex-direction: column; gap: 14px; justify-content: center;
}
.split > div > p { font-size: .98rem; line-height: 1.62; }
.split ul { list-style: none; padding: 0; margin: 22px 0 0; }
.split ul li { display: flex; gap: 12px; align-items: flex-start; margin-bottom: 13px; color: var(--ink-2); font-size: .95rem; line-height: 1.55; }
.split ul li svg { flex: none; color: var(--accent); margin-top: 2px; width: 19px; height: 19px; }
/* On mobile every split leads with the copy, then the app screenshot below. */
@media (max-width: 820px) { .split { grid-template-columns: 1fr; gap: 28px; } .split.rev .split-media { order: 2; } }

.stat-row { display: flex; gap: 12px; }
.stat { background: var(--oat); border-radius: 16px; padding: 16px 18px; flex: 1; }
.stat b { font-size: 1.5rem; letter-spacing: -.03em; }
.stat small { display: block; color: var(--ink-3); font-size: .78rem; }

/* ---------- pricing ---------- */
.plans { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; align-items: stretch; }
.plan {
  background: var(--cream); border-radius: var(--radius); padding: 32px 28px;
  box-shadow: var(--shadow-xs); display: flex; flex-direction: column;
  border: 1px solid var(--line);
  transition: transform .22s cubic-bezier(.2,.7,.3,1), box-shadow .22s ease, border-color .22s ease;
}
.plan:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: #dcd5c6; }
.plan.featured {
  border: 1.5px solid var(--accent); position: relative; box-shadow: var(--shadow-md);
  background: linear-gradient(180deg, #fff, var(--accent-50));
}
@media (min-width: 881px) { .plan.featured { transform: scale(1.035); } .plan.featured:hover { transform: scale(1.035) translateY(-3px); } }
.plan .badge {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(180deg, var(--accent-600), var(--accent)); color: #fff; font-size: .7rem; font-weight: 700;
  padding: 6px 15px; border-radius: 999px; letter-spacing: .04em; text-transform: uppercase;
  box-shadow: 0 8px 18px -8px rgba(22,92,59,.6);
}
.plan h3 { margin-bottom: 4px; }
.plan .price { font-size: 2.05rem; font-weight: 800; letter-spacing: -.04em; margin: 8px 0 2px; }
.plan .price small { font-size: .95rem; font-weight: 500; color: var(--ink-3); letter-spacing: 0; }
.plan .plan-sub { color: var(--ink-3); font-size: .9rem; margin-bottom: 20px; }
.plan ul { list-style: none; padding: 0; margin: 0 0 26px; flex: 1; }
.plan ul li { display: flex; gap: 10px; align-items: flex-start; padding: 9px 0; font-size: .94rem; color: var(--ink-2); border-top: 1px solid var(--line-soft); }
.plan ul li:first-child { border-top: 0; }
.plan ul li svg { flex: none; color: var(--accent); margin-top: 3px; }
.plan .btn { width: 100%; }
@media (max-width: 880px) { .plans { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; } }
.price-note { text-align: center; color: var(--ink-3); font-size: .9rem; margin-top: 26px; }

/* ---------- faq ---------- */
.faq { max-width: 780px; margin: 0 auto; }
details.qa {
  background: var(--cream); border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 2px 22px;
  margin-bottom: 10px; box-shadow: var(--shadow-xs);
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}
details.qa:hover { border-color: #dcd5c6; }
details.qa[open] { border-color: rgba(22,92,59,.28); box-shadow: var(--shadow); background: linear-gradient(180deg, #fff, var(--accent-50)); }
details.qa summary:hover { color: var(--accent); }
details.qa summary {
  list-style: none; cursor: pointer; padding: 19px 0; font-weight: 600; font-size: 1.02rem; color: var(--ink);
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
details.qa summary::-webkit-details-marker { display: none; }
details.qa summary::after {
  content: "+"; flex: none; width: 28px; height: 28px; border-radius: 999px;
  background: var(--accent-50); border: 1px solid var(--accent-100); color: var(--accent);
  font-size: 1.2rem; font-weight: 400; line-height: 1; display: grid; place-items: center;
  transition: transform .25s cubic-bezier(.2,.7,.3,1), background .2s ease;
}
details.qa[open] summary::after { content: "+"; transform: rotate(135deg); background: var(--accent); border-color: var(--accent); color: #fff; }
details.qa p { padding: 0 0 19px; margin: 0; }

/* ---------- CTA band ---------- */
.cta-band {
  position: relative; overflow: hidden;
  background:
    radial-gradient(120% 140% at 85% -20%, rgba(61,220,132,.30), transparent 55%),
    radial-gradient(90% 120% at 10% 120%, rgba(61,220,132,.12), transparent 50%),
    linear-gradient(150deg, var(--accent-600), var(--accent-700));
  color: #fff; border-radius: var(--radius-lg); padding: 60px 48px; text-align: center;
  box-shadow: 0 30px 70px -34px rgba(22,92,59,.7);
  border: 1px solid rgba(255,255,255,.08);
}
.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(255,255,255,.86); max-width: 48ch; margin: 0 auto 26px; }
.cta-band .btn-primary { background: #fff; color: var(--accent); }
.cta-band .btn-primary:hover { background: #f0efe9; }
.cta-band .btn-ghost { color: #fff; border-color: rgba(255,255,255,.5); }
.cta-band .btn-ghost:hover { background: rgba(255,255,255,.12); }

/* ---------- footer ---------- */
.site-footer { background: #11140F; color: #C9CCC2; padding: 72px 0 32px; border-top: 3px solid var(--accent); }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 44px; }
.site-footer .brand { color: #fff; }
.site-footer h4 { color: #fff; font-size: .82rem; text-transform: uppercase; letter-spacing: .1em; margin-bottom: 16px; }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin-bottom: 10px; }
.site-footer a { color: #C9CCC2; font-size: .95rem; }
.site-footer a:hover { color: #fff; }
.site-footer .blurb { font-size: .95rem; color: #9A988B; max-width: 34ch; margin-top: 16px; }
.footer-bottom {
  margin-top: 48px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.08);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  font-size: .86rem; color: #8A8478;
}
.footer-bottom a { color: #8A8478; }
@media (max-width: 760px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
/* On phones the brand spans the full width and the link columns pair up
   (Product + Company on one row) so they don't stack with big empty gaps. */
@media (max-width: 600px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px 24px; }
  .footer-grid > :first-child { grid-column: 1 / -1; }
}

/* =========================================================================
   Legal / long-form document pages
   ========================================================================= */
.doc { padding: 56px 0 72px; }
.doc-wrap { max-width: 820px; margin: 0 auto; }
.doc .updated { color: var(--ink-3); font-size: .92rem; margin-bottom: 8px; }
.doc h1 { margin-bottom: .25em; }
.doc h2 { font-size: 1.5rem; margin: 2.2em 0 .6em; padding-top: .2em; }
.doc h3 { font-size: 1.12rem; margin: 1.6em 0 .4em; }
.doc p, .doc li { color: var(--ink-2); }
.doc ul, .doc ol { padding-left: 22px; }
.doc li { margin-bottom: 8px; }
.doc a { text-decoration: underline; }
.doc table { width: 100%; border-collapse: collapse; margin: 1em 0; font-size: .94rem; }
.doc th, .doc td { text-align: left; padding: 10px 12px; border-bottom: 1px solid var(--line); vertical-align: top; }
.doc th { color: var(--ink); font-weight: 600; }
.doc .toc {
  background: var(--cream); border-radius: var(--radius-sm); padding: 22px 26px;
  box-shadow: var(--shadow); margin: 28px 0 40px;
}
.doc .toc h4 { margin: 0 0 12px; font-size: .8rem; text-transform: uppercase; letter-spacing: .1em; color: var(--ink-3); }
.doc .toc ol { columns: 2; column-gap: 32px; margin: 0; padding-left: 18px; }
.doc .toc a { text-decoration: none; }
.doc .callout {
  background: var(--success-bg); border-radius: var(--radius-sm); padding: 18px 22px;
  margin: 22px 0; color: var(--success-fg); font-size: .95rem;
}
.doc .callout strong { color: var(--success-fg); }
@media (max-width: 560px) { .doc .toc ol { columns: 1; } }

/* short pages (404): fill the viewport so the footer sits at the bottom */
body.fill-viewport { min-height: 100vh; display: flex; flex-direction: column; }
body.fill-viewport main { flex: 1; }

.skip-link { position: absolute; left: -9999px; }
.skip-link:focus { left: 16px; top: 12px; background: #fff; padding: 10px 16px; border-radius: 8px; z-index: 100; }

/* =========================================================================
   Conversion additions (research-backed): trust bar, comparison, official
   store badges + QR, founder/credibility block, mid-page CTA, sticky CTA.
   ========================================================================= */

/* hero inline trust row */
.hero-trust { display: flex; flex-wrap: wrap; gap: 8px 18px; margin-top: 20px; }
.hero-trust span { display: inline-flex; align-items: center; gap: 7px; font-size: .85rem; color: var(--ink-2); font-weight: 500; }
.hero-trust svg { color: var(--accent); flex: none; }

/* security / trust band */
.secure-band { background: var(--cream); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.secure-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; padding: 36px 0; }
.secure-item { display: flex; gap: 14px; align-items: flex-start; padding: 4px 8px 4px 0; }
.secure-item + .secure-item { border-left: 1px solid var(--line-soft); padding-left: 22px; }
.secure-item .sic { width: 40px; height: 40px; border-radius: 12px; background: linear-gradient(155deg, #fff, var(--accent-50)); border: 1px solid var(--accent-100); color: var(--accent); display: grid; place-items: center; flex: none; box-shadow: var(--shadow-xs); }
.secure-item b { display: block; font-size: .96rem; margin-bottom: 3px; color: var(--ink); }
.secure-item p { margin: 0; font-size: .85rem; line-height: 1.5; color: var(--ink-3); }
@media (max-width: 880px) { .secure-grid { grid-template-columns: 1fr 1fr; gap: 22px 18px; } .secure-item + .secure-item { border-left: 0; padding-left: 0; } }
@media (max-width: 480px) { .secure-grid { grid-template-columns: 1fr; } }

/* CASA / ESOF assessment seal */
.assess {
  max-width: 680px; margin: 0 auto 44px;
  display: flex; align-items: center; gap: 30px;
  padding: 28px 32px;
  background: linear-gradient(158deg, var(--accent-50), var(--cream) 78%);
  border: 1px solid var(--accent-100); border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}
.assess-seal {
  flex: none; width: 132px; height: 132px; border-radius: 22px;
  background: #fff; border: 1px solid var(--accent-100);
  display: grid; place-items: center; box-shadow: var(--shadow-xs);
}
.assess-seal img { display: block; height: 102px; width: auto; }
.assess-body { min-width: 0; }
.assess-eyebrow { font-size: .66rem; letter-spacing: .15em; text-transform: uppercase; color: var(--accent); font-weight: 700; margin-bottom: 9px; }
.assess-body h3 { font-size: 1.12rem; margin: 0 0 7px; letter-spacing: -.01em; }
.assess-body p { font-size: .89rem; line-height: 1.58; color: var(--ink-2); margin: 0 0 13px; }
.assess-verify { display: inline-flex; align-items: center; gap: 6px; font-size: .86rem; font-weight: 600; color: var(--accent); text-decoration: none; }
.assess-verify svg { width: 15px; height: 15px; transition: transform .18s ease; }
.assess-verify:hover { text-decoration: none; }
.assess-verify:hover svg { transform: translateX(3px); }
@media (max-width: 560px) {
  .assess { flex-direction: column; text-align: center; gap: 22px; padding: 30px 24px 26px; margin-bottom: 36px; }
  .assess-verify { justify-content: center; }
}

/* comparison table */
.compare { overflow-x: auto; border-radius: var(--radius); box-shadow: var(--shadow); }
.compare table { width: 100%; border-collapse: separate; border-spacing: 0; min-width: 560px; background: var(--cream); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.compare th, .compare td { padding: 13px 16px; text-align: left; border-bottom: 1px solid var(--line-soft); font-size: .9rem; }
.compare thead th { font-size: .72rem; text-transform: uppercase; letter-spacing: .07em; color: var(--ink-3); font-weight: 600; background: #F8F5EF; }
.compare thead th.us { background: linear-gradient(180deg, var(--accent-600), var(--accent)); color: #fff; text-transform: none; letter-spacing: -.01em; font-size: .92rem; font-weight: 700; }
.compare tbody td:first-child { font-weight: 600; color: var(--ink); }
.compare tbody tr:hover td { background: rgba(22,92,59,.025); }
.compare td.us { background: rgba(22,92,59,.06); font-weight: 600; color: var(--ink); }
.compare tbody tr:hover td.us { background: rgba(22,92,59,.10); }
.compare tr:last-child td { border-bottom: 0; }
.compare .yes { color: var(--success-fg); display: inline-flex; align-items: center; gap: 7px; font-weight: 600; }
.compare .no { color: var(--ink-3); display: inline-flex; align-items: center; gap: 7px; }

/* founder / pre-launch credibility */
.founder { background: linear-gradient(155deg, #fff, var(--accent-50)); border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow); padding: 48px; display: grid; grid-template-columns: auto 1fr; gap: 36px; align-items: center; }
.founder .mark { width: 92px; height: 92px; border-radius: 24px; background: linear-gradient(155deg, var(--accent-600), var(--accent-700)); display: grid; place-items: center; flex: none; box-shadow: 0 16px 34px -16px rgba(22,92,59,.7); }
.founder .mark img { width: 52px; height: 52px; }
.founder blockquote { margin: 0; font-size: 1.12rem; line-height: 1.55; color: var(--ink); letter-spacing: -.012em; font-weight: 500; }
.founder cite { display: block; margin-top: 18px; font-style: normal; font-weight: 600; color: var(--ink); font-size: .95rem; }
.founder cite span { display: block; font-weight: 500; color: var(--ink-3); font-size: .85rem; margin-top: 2px; }
.founder .pills { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 22px; }
.founder .pill { background: #fff; border: 1px solid var(--line); border-radius: 999px; padding: 7px 14px; font-size: .82rem; font-weight: 600; color: var(--ink-2); display: inline-flex; align-items: center; gap: 7px; box-shadow: var(--shadow-xs); }
.founder .pill svg { color: var(--accent); }
@media (max-width: 680px) { .founder { grid-template-columns: 1fr; padding: 32px 26px; text-align: center; } .founder .mark { margin: 0 auto; } .founder .pills { justify-content: center; } }

/* mid-page CTA strip */
.cta-strip { text-align: center; padding: 56px 0; }
.cta-strip h2 { margin-bottom: .3em; }
.cta-strip p { max-width: 46ch; margin: 0 auto 22px; }

/* official store badges */
.store-official { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.badge-store { display: inline-block; transition: transform .15s ease, opacity .2s ease; }
.badge-store:hover { transform: translateY(-2px); text-decoration: none; opacity: .92; }
.badge-store svg { height: 56px; width: auto; display: block; }
/* a store that isn't live yet (iOS): badge shown but inert */
.badge-store.badge-pending { opacity: .55; cursor: default; }
.badge-store.badge-pending:hover { transform: none; opacity: .55; }
.soon-pill {
  display: inline-flex; align-items: center; gap: 8px; margin-bottom: 14px;
  background: rgba(255,255,255,.14); border: 1px solid rgba(255,255,255,.32); color: #fff;
  border-radius: 999px; padding: 6px 14px; font-size: .72rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
}
.soon-pill::before { content: ""; width: 7px; height: 7px; border-radius: 999px; background: var(--accent-300); }
/* live variant: the dot pulses to read as "shipped, available right now" */
.soon-pill--live::before { animation: store-live-pulse 2.2s ease-in-out infinite; }
@keyframes store-live-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(61,220,132,.55); }
  70%      { box-shadow: 0 0 0 6px rgba(61,220,132,0); }
}
@media (prefers-reduced-motion: reduce) { .soon-pill--live::before { animation: none; } }

/* QR install panel */
.get-grid { display: grid; grid-template-columns: 1.4fr auto; gap: 40px; align-items: center; }
.qr-card { background: #fff; border-radius: var(--radius); padding: 22px; text-align: center; box-shadow: 0 14px 40px -20px rgba(0,0,0,.4); }
.qr-card img { width: 150px; height: 150px; margin: 0 auto 10px; display: block; }
.qr-card .qr-title { display: block; font-size: .95rem; letter-spacing: -.01em; color: #16281f; margin-bottom: 2px; }
.qr-card span { font-size: .8rem; color: #4a4a4a; font-weight: 600; display: block; }
@media (max-width: 760px) { .get-grid { grid-template-columns: 1fr; } .qr-card { display: none; } }

/* sticky mobile CTA */
.sticky-cta {
  position: fixed; left: 12px; right: 12px; bottom: 12px; z-index: 60;
  background: var(--accent); color: #fff; border-radius: 999px;
  padding: 13px 20px; display: none; align-items: center; justify-content: space-between;
  gap: 14px; box-shadow: 0 14px 34px -12px rgba(22,92,59,.8); text-decoration: none;
}
.sticky-cta, .sticky-cta:hover, .sticky-cta:focus, .sticky-cta:active { text-decoration: none; }
.sticky-cta b { font-size: .95rem; }
.sticky-cta small { display: block; font-size: .72rem; opacity: .85; font-weight: 500; }
.sticky-cta .go { background: #fff; color: var(--accent); border-radius: 999px; padding: 9px 16px; font-weight: 700; font-size: .9rem; white-space: nowrap; }
@media (max-width: 860px) { .sticky-cta { display: flex; } }

/* =========================================================================
   In-section app mockups (Taxes + Less-busywork): render the .split-media
   panel as a real app surface — dark cards + mint accents, matching the app.
   ========================================================================= */
.split-media {
  background: #13140F; color: #F4F1EA; padding: 22px; gap: 11px;
  box-shadow: 0 26px 64px -32px rgba(26,31,26,.55);
}
.split-media .mini-label { font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: #6F6E64; font-weight: 600; padding: 2px 2px 4px; }
.split-media .mini-card { background: #1E1F18; border-radius: 18px; padding: 14px 15px; }
.split-media .mini-card .mini-label { padding: 0; }
.split-media .mini-tile { background: #1C3A2A; color: #3DDC84; border-radius: 12px; }
.split-media .mini-vendor { color: #F4F1EA; }
.split-media .mini-sub { color: #6F6E64; }
.split-media .mini-amt { color: #F4F1EA; }
.split-media .stat { background: #1E1F18; border-radius: 16px; }
.split-media .stat b { color: #F4F1EA; }
.split-media .stat small { color: #6F6E64; }
.split-media .chip-ok { background: #1C3A2A; color: #7FCFA3; }
.split-media .chip-rev { background: #3A2E14; color: #E0B968; }
.split-media .mini-big { font-size: 30px; font-weight: 700; letter-spacing: -.03em; color: #F4F1EA; margin-top: 11px; font-variant-numeric: tabular-nums; }
.split-media .mini-big span { color: #6F6E64; font-size: 18px; }
.split-media .mini-divrow { display: flex; align-items: center; justify-content: space-between; margin-top: 12px; padding-top: 12px; border-top: 1px solid #2A2B22; }
.split-media .mini-green { color: #7FCFA3; font-weight: 600; font-size: 12.5px; }

/* =========================================================================
   Dark theme (the default). <html> ships with data-theme="dark"; the header
   toggle (js/theme.js) switches to light and persists the choice. Surfaces
   mirror the app's dark cards above (.split-media): #12140F page, #1B1D16
   cards, mint accents. --accent flips to a readable green for text/icons;
   filled brand components are overridden back to forest green below.
   ========================================================================= */
html[data-theme="dark"] {
  color-scheme: dark;
  --oat:        #12140F;
  --oat-deep:   #0C0E0A;
  --cream:      #1B1D16;
  --tile:       #22241B;
  --ink:        #F4F1EA;
  --ink-2:      #B7B4A8;
  --ink-3:      #85847A;
  --accent:     #4FC98D;
  --accent-50:  #1A2A1F;
  --accent-100: #24382B;
  --success-bg: #1C3A2A;
  --success-fg: #7FCFA3;
  --warn-bg:    #3A2E14;
  --warn-fg:    #E0B968;
  --line:       #2A2C22;
  --line-soft:  #23251D;
  --shadow-xs: 0 1px 2px rgba(0,0,0,.35);
  --shadow:    0 1px 2px rgba(0,0,0,.35), 0 6px 16px -8px rgba(0,0,0,.55);
  --shadow-md: 0 1px 3px rgba(0,0,0,.4), 0 18px 40px -22px rgba(0,0,0,.7);
  --shadow-lg: 0 2px 6px rgba(0,0,0,.4), 0 40px 80px -34px rgba(0,0,0,.8);
}

html[data-theme="dark"] body {
  background:
    radial-gradient(120% 60% at 50% -8%, #181B12 0%, rgba(24,27,18,0) 60%),
    var(--oat);
}

/* filled brand surfaces keep the forest-green fill so white text stays readable */
html[data-theme="dark"] .btn-primary {
  background: linear-gradient(180deg, var(--accent-600), #165C3B);
  box-shadow: 0 1px 1px rgba(0,0,0,.2) inset, 0 8px 20px -10px rgba(0,0,0,.6);
}
html[data-theme="dark"] .btn-primary:hover { background: linear-gradient(180deg, #165C3B, var(--accent-700)); }
html[data-theme="dark"] .plan .badge,
html[data-theme="dark"] .compare thead th.us { background: linear-gradient(180deg, var(--accent-600), #165C3B); }

html[data-theme="dark"] .eyebrow { background: linear-gradient(180deg, #20231A, var(--accent-50)); border-color: rgba(61,220,132,.16); }
html[data-theme="dark"] .eyebrow::before { box-shadow: 0 0 0 3px rgba(61,220,132,.18); }

html[data-theme="dark"] .btn-ghost:hover,
html[data-theme="dark"] .nav-toggle:hover,
html[data-theme="dark"] .theme-toggle:hover { background: #23261D; border-color: #3A3D30; }

html[data-theme="dark"] .site-header { background: rgba(16,18,13,.78); border-bottom-color: rgba(42,44,34,.7); }
html[data-theme="dark"] .nav-links a:hover { background: rgba(61,220,132,.08); }
html[data-theme="dark"] .nav-links a.active { background: rgba(61,220,132,.1); }
@media (max-width: 860px) {
  html[data-theme="dark"] .nav-links { background: rgba(16,18,13,.97); }
}

/* hero backdrop: frosted panel goes dark-glass, dots and ring go mint */
html[data-theme="dark"] .hb-panel {
  background: linear-gradient(160deg, rgba(255,255,255,.07), rgba(255,255,255,.02));
  border-color: rgba(255,255,255,.10);
}
html[data-theme="dark"] .hb-panel::after { background-image: radial-gradient(rgba(61,220,132,.12) 1.3px, transparent 1.3px); }
html[data-theme="dark"] .hb-blob--2 { background: linear-gradient(155deg, #23261D, var(--accent-50)); border-color: var(--line); }
html[data-theme="dark"] .hb-ring { border-color: rgba(61,220,132,.28); }

html[data-theme="dark"] .trust-chip:hover,
html[data-theme="dark"] .card:hover,
html[data-theme="dark"] .plan:hover,
html[data-theme="dark"] details.qa:hover { border-color: #3A3D30; }

html[data-theme="dark"] .card .ic,
html[data-theme="dark"] .secure-item .sic { background: linear-gradient(155deg, #20231A, var(--accent-50)); }

html[data-theme="dark"] .alt { background: linear-gradient(180deg, #171912, #131510); }
html[data-theme="dark"] .alt-2 { background: linear-gradient(180deg, var(--oat), #0E100B); }

html[data-theme="dark"] .plan.featured,
html[data-theme="dark"] details.qa[open],
html[data-theme="dark"] .founder { background: linear-gradient(180deg, #1F221A, var(--accent-50)); }
html[data-theme="dark"] details.qa[open] { border-color: rgba(61,220,132,.3); }
html[data-theme="dark"] .founder .pill { background: #23261D; }

html[data-theme="dark"] .compare thead th { background: #191B13; }
html[data-theme="dark"] .compare tbody tr:hover td { background: rgba(61,220,132,.03); }
html[data-theme="dark"] .compare td.us { background: rgba(61,220,132,.07); }
html[data-theme="dark"] .compare tbody tr:hover td.us { background: rgba(61,220,132,.11); }

/* components that fill with --accent need the dark-green fill back */
html[data-theme="dark"] .cta-band .btn-primary { background: #fff; color: #165C3B; }
html[data-theme="dark"] .cta-band .btn-primary:hover { background: #f0efe9; }
html[data-theme="dark"] .sticky-cta { background: var(--accent-600); box-shadow: 0 14px 34px -12px rgba(0,0,0,.7); }
html[data-theme="dark"] .sticky-cta .go { color: var(--accent-600); }

html[data-theme="dark"] .skip-link:focus { background: var(--cream); color: var(--ink); }

html[data-theme="dark"] .theme-toggle .ico-sun { display: block; }
html[data-theme="dark"] .theme-toggle .ico-moon { display: none; }
