/* ============================================================
   MOJO SYSTEMS — shared design system
   Used by: Landing, Pocket Capture, Capture Hub, Tap Kit
   ============================================================ */

:root {
  --paper: #FAFAF7;
  --paper-2: #F3F1EB;
  --card: #FFFFFF;
  --ink: #0E0E0C;
  --ink-soft: #1B1B18;
  --shadow: #29231A;     /* warm graphite */
  --shadow-2: #322B20;
  --shadow-3: #201B14;   /* deepest, for landing canvas */
  --mute: #6E6B63;
  --mute-2: #9B978E;
  --line: #E6E3DA;
  --line-2: #D9D5C9;
  --amber: #C2782B;
  --amber-soft: #E9C99E;
  --green: #4F6B3A;
  --blue: #1E55E5;
  --radius: 14px;
  --radius-sm: 8px;
}
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { background: var(--paper); }
body {
  font-family: "Geist", ui-sans-serif, system-ui, sans-serif;
  color: var(--ink);
  background: var(--paper);
  font-weight: 400;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
.serif { font-family: "Instrument Serif", "Iowan Old Style", Georgia, serif; font-weight: 400; letter-spacing: -0.01em; }
.mono  { font-family: "Geist Mono", ui-monospace, "SF Mono", Menlo, monospace; }
a { color: inherit; }

.wrap { max-width: 1240px; margin: 0 auto; padding: 0 32px; }
@media (max-width: 720px) { .wrap { padding: 0 20px; } }

/* ─── nav ─────────────────────────────────────────────── */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(250,250,247,0.82);
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 68px; }
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; }
/* Mojo M mark — uses currentColor so it inherits from .brand-mojo's
   color, which the landing dark-theme override flips to paper. */
.brand-mark { width: 24px; height: 24px; color: var(--ink); flex: 0 0 auto; }
.landing .brand-mark { color: var(--paper); }
.brand-mojo { font-weight: 600; letter-spacing: -0.01em; font-size: 16px; color: var(--ink); }
.brand-sep  { width: 1px; height: 18px; background: var(--line-2); }
.brand-product { display: inline-flex; align-items: center; gap: 8px; color: var(--mute); font-size: 15px; font-weight: 400; }
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a { color: var(--ink-soft); text-decoration: none; font-size: 15px; }
.nav-links a.muted { color: var(--mute); }
.nav-links a.muted:hover { color: var(--ink); }
.nav-links a.is-active { color: var(--ink); }
.nav-links a.is-active::after {
  content: ""; display: block; height: 1px; background: var(--amber);
  margin-top: 3px;
}
.btn-pill {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--ink); color: #fff; padding: 10px 18px; border-radius: 999px;
  font-size: 14px; font-weight: 500; text-decoration: none; letter-spacing: -0.005em;
  transition: transform .15s ease, background .15s ease;
}
.btn-pill:hover { background: #000; transform: translateY(-1px); }
.btn-pill svg { transition: transform .2s ease; }
.btn-pill:hover svg { transform: translateX(2px); }
.btn-ghost {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--ink); padding: 10px 4px; font-size: 14px; text-decoration: none;
  border-bottom: 1px solid transparent;
}
.btn-ghost:hover { border-bottom-color: var(--ink); }
.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: var(--ink); padding: 10px 18px; border-radius: 999px;
  border: 1px solid var(--line-2); font-size: 14px; font-weight: 500; text-decoration: none;
  transition: border-color .15s ease, background .15s ease;
}
.btn-outline:hover { border-color: var(--ink); }
@media (max-width: 760px) {
  .nav-links a.muted { display: none; }
}

/* ─── nav dropdown (Pocket Capture / Capture Hub / Mojo Tap Kit) ── */
.nav-dropdown { position: relative; }
.nav-dd-trigger {
  background: none; border: none; color: var(--mute); font: inherit; font-size: 15px;
  cursor: pointer; display: inline-flex; align-items: center; gap: 5px; padding: 0;
  transition: color .12s ease;
}
.nav-dd-trigger:hover, .nav-dd-trigger:focus-visible { color: var(--ink); outline: none; }
.nav-dd-trigger.is-active { color: var(--ink); }
.nav-dd-caret { transition: transform .12s ease; opacity: 0.7; }
.nav-dd-trigger[aria-expanded="true"] .nav-dd-caret { transform: rotate(180deg); }
.nav-dd-panel {
  position: absolute; top: calc(100% + 12px); right: 0;
  background: var(--card); border: 1px solid var(--line); border-radius: 12px;
  padding: 8px; min-width: 220px;
  box-shadow: 0 1px 0 rgba(0,0,0,0.02), 0 16px 40px -20px rgba(20,20,15,0.22);
  display: none; flex-direction: column; gap: 2px;
  z-index: 60;
}
.nav-dd-panel.is-open { display: flex; }
.nav-dd-panel a {
  padding: 10px 12px; border-radius: 7px; color: var(--ink); font-size: 14px;
  text-decoration: none; display: block;
  transition: background .12s ease, color .12s ease;
}
.nav-dd-panel a:hover { background: var(--paper-2); }
.nav-dd-panel a.is-active { color: var(--amber); background: var(--paper-2); }

/* ─── App Store CTA cluster ─────────────────────────────────────
   Primary signup path for Pocket Capture + Capture Hub is iOS IAP
   (per App Review 3.1.3(c)). The badge mimics Apple's "Get it on the
   App Store" treatment; while we wait for App Store approval it
   carries a "Coming soon" pill and is non-clickable. Pair with a
   subtle web fallback link for Android / desktop holdouts. */
.appstore-cluster {
  display: flex; align-items: center; gap: 16px; flex-wrap: wrap;
}
.appstore-badge {
  display: inline-flex; align-items: center; gap: 10px;
  background: #000; color: #fff;
  padding: 9px 16px; border-radius: 11px;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.10);
  transition: transform .15s ease;
}
.appstore-badge:hover { transform: translateY(-1px); }
.appstore-badge--soon { cursor: default; }
.appstore-badge--soon:hover { transform: none; }
.appstore-apple { width: 24px; height: 24px; fill: currentColor; flex: 0 0 auto; }
.appstore-text { display: inline-flex; flex-direction: column; line-height: 1; }
.appstore-tag { font-size: 10px; opacity: 0.75; letter-spacing: 0.04em; text-transform: uppercase; }
.appstore-name { font-size: 17px; font-weight: 600; letter-spacing: -0.01em; margin-top: 3px; }
.appstore-soon {
  font-size: 10px; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase;
  background: rgba(255,255,255,0.14); color: #fff;
  padding: 4px 8px; border-radius: 4px;
  align-self: center;
}
.appstore-web-link {
  color: var(--mute); font-size: 13px; text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color .12s ease, border-color .12s ease;
}
.appstore-web-link:hover { color: var(--ink); border-bottom-color: var(--ink); }
.landing .appstore-web-link { color: rgba(250,250,247,0.66); }
.landing .appstore-web-link:hover { color: var(--paper); border-bottom-color: var(--paper); }

/* Landing dark theme — flip the dropdown panel to read on the dark canvas */
.landing .nav-dd-trigger { color: rgba(250,250,247,0.66); }
.landing .nav-dd-trigger:hover, .landing .nav-dd-trigger:focus-visible { color: var(--paper); }
.landing .nav-dd-trigger.is-active { color: var(--paper); }
.landing .nav-dd-panel {
  background: rgba(32,27,20,0.96); border-color: rgba(250,250,247,0.14);
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
}
.landing .nav-dd-panel a { color: rgba(250,250,247,0.82); }
.landing .nav-dd-panel a:hover { background: rgba(250,250,247,0.06); color: var(--paper); }
.landing .nav-dd-panel a.is-active { color: var(--amber-soft); background: rgba(194,120,43,0.10); }

/* ─── eyebrow ─────────────────────────────────────────── */
.eyebrow {
  font-family: "Geist Mono", monospace; font-size: 11.5px;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--mute);
  display: inline-flex; align-items: center; gap: 10px;
}
.eyebrow .dot { width: 6px; height: 6px; background: var(--amber); border-radius: 999px; }
.eyebrow .line { width: 24px; height: 1px; background: var(--line-2); }

/* ─── section frame ───────────────────────────────────── */
section.row { border-top: 1px solid var(--line); padding: 100px 0; position: relative; }
section.row .head {
  display: grid; grid-template-columns: 1fr 1.4fr; gap: 64px; align-items: end;
  margin-bottom: 72px;
}
@media (max-width: 980px) { section.row .head { grid-template-columns: 1fr; gap: 24px; } }
section.row h2 {
  font-family: "Instrument Serif", serif; font-weight: 400; letter-spacing: -0.015em;
  font-size: clamp(38px, 5.4vw, 64px); line-height: 1.0; margin: 18px 0 0; max-width: 14ch;
}
section.row h2 em { font-style: italic; color: var(--mute); }
section.row .head p { color: var(--mute); font-size: 17px; line-height: 1.55; max-width: 52ch; margin: 0; }
section.row .head p b { color: var(--ink); font-weight: 400; }
section.row .head p a { color: var(--ink); border-bottom: 1px solid var(--line-2); text-decoration: none; }
section.row .head p a:hover { border-bottom-color: var(--ink); }

/* ─── eyebrow with // prefix (architect voice) ───────── */
.slash {
  font-family: "Geist Mono", monospace; font-size: 12px; color: var(--mute);
  letter-spacing: 0.04em;
}
.slash::before { content: "// "; color: var(--amber); }

/* ─── philosophy / manifesto block ────────────────────── */
.philosophy { padding: 120px 0 110px; border-top: 1px solid var(--line); background: var(--paper); }
.philosophy .inner { max-width: 940px; margin: 0 auto; padding: 0 32px; text-align: center; }
.philosophy blockquote {
  font-family: "Instrument Serif", serif;
  font-size: clamp(34px, 4.6vw, 56px); line-height: 1.12; letter-spacing: -0.015em;
  margin: 22px 0 28px; color: var(--ink);
}
.philosophy blockquote em { font-style: italic; color: var(--mute); }
.philosophy .sig { font-size: 14px; color: var(--mute); line-height: 1.6; max-width: 60ch; margin: 0 auto; }
.philosophy .ops {
  margin-top: 56px; display: flex; gap: 36px; justify-content: center; flex-wrap: wrap;
  font-family: "Geist Mono", monospace; font-size: 11px; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--mute);
}
.philosophy .ops span { display: inline-flex; align-items: center; gap: 8px; }
.philosophy .ops span::before { content: ""; width: 14px; height: 1px; background: var(--line-2); }

/* ─── steps (how it works) ────────────────────────────── */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
@media (max-width: 980px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .steps { grid-template-columns: 1fr; } }
.step { padding: 36px 28px 32px; border-right: 1px solid var(--line); position: relative; min-height: 320px; display: flex; flex-direction: column; }
.step:last-child { border-right: none; }
@media (max-width: 980px) {
  .step:nth-child(2n) { border-right: none; }
  .step:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
}
@media (max-width: 560px) {
  .step { border-right: none; border-bottom: 1px solid var(--line); min-height: 0; }
  .step:last-child { border-bottom: none; }
}
.step .num { font-family: "Geist Mono", monospace; font-size: 11px; letter-spacing: 0.1em; color: var(--mute); }
.step h3 { font-family: "Instrument Serif", serif; font-weight: 400; font-size: 30px; line-height: 1.05; margin: 12px 0 10px; letter-spacing: -0.01em; }
.step p { font-size: 14px; color: var(--mute); line-height: 1.55; margin: 0 0 22px; }
.step .viz { margin-top: auto; height: 130px; position: relative; }

/* ─── QR + mini visuals ───────────────────────────────── */
.qr-grid { display: grid; grid-template-columns: repeat(21, 1fr); gap: 0; width: 100%; height: 100%; }
.qr-grid span { background: var(--ink); display: block; }
.qr-grid span.off { background: transparent; }
.mini-qr { width: 96px; height: 96px; border: 1px solid var(--line); border-radius: 10px; padding: 8px; background: #fff; }

/* ─── networking / scenario grid ──────────────────────── */
.net-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
}
@media (max-width: 980px) { .net-grid { grid-template-columns: 1fr; } }
.net-card {
  padding: 36px 32px 32px; border-right: 1px solid var(--line);
  display: flex; flex-direction: column; gap: 16px; min-height: 360px; position: relative;
}
.net-card:last-child { border-right: none; }
@media (max-width: 980px) {
  .net-card { border-right: none; border-bottom: 1px solid var(--line); }
  .net-card:last-child { border-bottom: none; }
}
.net-tag { font-family: "Geist Mono", monospace; font-size: 11px; letter-spacing: 0.1em; color: var(--mute); text-transform: uppercase; }
.net-quote { font-family: "Instrument Serif", serif; font-size: 26px; line-height: 1.15; letter-spacing: -0.005em; color: var(--ink); margin: 0; }
.net-quote em { font-style: italic; color: var(--mute); }
.net-body { font-size: 14.5px; color: var(--ink-soft); line-height: 1.6; margin: 0; max-width: 38ch; }
.net-meta { margin-top: auto; display: flex; align-items: center; gap: 6px; flex-wrap: wrap; padding-top: 12px; }
.net-chip {
  font-family: "Geist Mono", monospace; font-size: 10px; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 4px 9px; border-radius: 999px; border: 1px solid var(--line); background: #fff; color: var(--ink); white-space: nowrap;
}
.net-chip.k { background: var(--ink); color: #fff; border-color: var(--ink); }
.net-chip.c { color: var(--mute); }
.net-chip.arrow { border: none; padding: 4px 2px; color: var(--mute-2); background: transparent; font-family: inherit; font-size: 12px; letter-spacing: 0; }

/* ─── deployment / surfaces grid ──────────────────────── */
.deploy { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
@media (max-width: 1100px) { .deploy { grid-template-columns: repeat(2, 1fr) !important; } }
@media (max-width: 520px) { .deploy { grid-template-columns: 1fr !important; } }
.deploy-card { background: var(--paper); padding: 28px 26px 24px; min-height: 280px; display: flex; flex-direction: column; gap: 16px; }
.deploy-card .tag { font-family: "Geist Mono", monospace; font-size: 11px; color: var(--mute); letter-spacing: 0.1em; text-transform: uppercase; }
.deploy-card h4 { font-family: "Instrument Serif", serif; font-weight: 400; font-size: 26px; margin: 0; letter-spacing: -0.005em; line-height: 1.05; }
.deploy-card p { color: var(--mute); font-size: 13.5px; margin: 0; line-height: 1.5; }
.deploy-illu { flex: 1; min-height: 130px; position: relative; display: flex; align-items: flex-end; justify-content: center; }

/* ─── pricing card (single) ───────────────────────────── */
.price-card {
  max-width: 480px; margin: 0 auto; background: var(--card);
  border: 1px solid var(--line); border-radius: 20px; padding: 36px 36px 30px; position: relative;
  box-shadow: 0 1px 0 rgba(0,0,0,0.02), 0 30px 70px -40px rgba(20,20,15,0.22);
}
.price-card-head { display: flex; justify-content: space-between; align-items: center; }
.price-card .name { font-weight: 600; font-size: 17px; letter-spacing: -0.005em; color: var(--ink); }
.price-card .tag-mono {
  font-family: "Geist Mono", monospace; font-size: 10.5px; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--mute); border: 1px solid var(--line); padding: 4px 9px; border-radius: 999px;
}
.price-card .price { display: flex; align-items: baseline; gap: 6px; margin: 22px 0 30px; }
.price-card .price .amt { font-size: 72px; font-weight: 600; letter-spacing: -0.035em; line-height: 1; color: var(--ink); font-family: "Geist", sans-serif; }
.price-card .price .per { color: var(--mute); font-size: 18px; }
.price-features { list-style: none; padding: 0; margin: 0 0 30px; display: flex; flex-direction: column; gap: 14px; }
.price-features li { display: grid; grid-template-columns: 22px 1fr; gap: 12px; font-size: 15px; color: var(--ink-soft); align-items: center; letter-spacing: -0.003em; }
.price-features .chk { width: 20px; height: 20px; display: inline-grid; place-items: center; color: var(--blue); }
.price-cta {
  display: flex; align-items: center; justify-content: center; gap: 10px; width: 100%;
  background: var(--ink); color: #fff; padding: 17px 18px; border-radius: 12px; border: none;
  font-family: inherit; font-size: 15px; font-weight: 500; letter-spacing: -0.005em; cursor: pointer;
  transition: background .15s ease, transform .15s ease; text-decoration: none;
}
.price-cta:hover { background: #000; transform: translateY(-1px); }
.price-cta svg { transition: transform .2s ease; }
.price-cta:hover svg { transform: translateX(2px); }
.price-foot { margin-top: 20px; text-align: center; }
.price-foot-line { font-size: 14px; color: var(--ink); font-weight: 500; letter-spacing: -0.005em; }
.price-foot-sub { font-size: 13.5px; color: var(--mute-2); margin-top: 4px; }

/* ─── pricing: two-up plans (Capture Hub) ─────────────── */
.plans { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; max-width: 880px; margin: 0 auto; }
@media (max-width: 760px) { .plans { grid-template-columns: 1fr; } }
.plan {
  background: var(--card); border: 1px solid var(--line); border-radius: 20px; padding: 32px 30px 28px;
  display: flex; flex-direction: column;
  box-shadow: 0 1px 0 rgba(0,0,0,0.02), 0 30px 70px -44px rgba(20,20,15,0.18);
}
.plan.featured { border-color: var(--ink); box-shadow: 0 1px 0 rgba(0,0,0,0.02), 0 40px 80px -40px rgba(20,20,15,0.28); }
.plan-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 6px; }
.plan .name { font-weight: 600; font-size: 17px; color: var(--ink); }
.plan .flag { font-family: "Geist Mono", monospace; font-size: 9.5px; letter-spacing: 0.1em; text-transform: uppercase; color: #fff; background: var(--ink); padding: 4px 9px; border-radius: 999px; }
.plan .price { display: flex; align-items: baseline; gap: 5px; margin: 14px 0 6px; }
.plan .price .amt { font-size: 52px; font-weight: 600; letter-spacing: -0.03em; line-height: 1; color: var(--ink); }
.plan .price .per { color: var(--mute); font-size: 15px; }
.plan .desc { color: var(--mute); font-size: 14px; line-height: 1.5; margin: 0 0 22px; min-height: 42px; }
.plan ul { list-style: none; padding: 0; margin: 0 0 26px; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.plan li { display: grid; grid-template-columns: 20px 1fr; gap: 11px; font-size: 14px; color: var(--ink-soft); align-items: start; line-height: 1.4; }.plan li .chk { width: 18px; height: 18px; display: inline-grid; place-items: center; color: var(--blue); margin-top: 1px; }
.plan .plan-cta {
  display: flex; align-items: center; justify-content: center; gap: 9px; width: 100%; padding: 15px;
  border-radius: 12px; font-family: inherit; font-size: 14.5px; font-weight: 500; text-decoration: none; cursor: pointer;
  transition: background .15s ease, transform .15s ease, border-color .15s ease;
}
.plan .plan-cta.solid { background: var(--ink); color: #fff; border: none; }
.plan .plan-cta.solid:hover { background: #000; transform: translateY(-1px); }
.plan .plan-cta.outline { background: transparent; color: var(--ink); border: 1px solid var(--line-2); }
.plan .plan-cta.outline:hover { border-color: var(--ink); }

/* ─── stat row ────────────────────────────────────────── */
.stat-row { display: grid; grid-template-columns: repeat(4, 1fr); border: 1px solid var(--line); border-radius: 16px; overflow: hidden; background: var(--card); }
@media (max-width: 680px) { .stat-row { grid-template-columns: repeat(2, 1fr); } }
.stat { padding: 22px 24px; border-right: 1px solid var(--line); }
.stat:last-child { border-right: none; }
@media (max-width: 680px) { .stat:nth-child(2n) { border-right: none; } .stat:nth-child(-n+2) { border-bottom: 1px solid var(--line); } }
.stat .n { font-size: 34px; font-weight: 600; letter-spacing: -0.02em; line-height: 1; }
.stat .l { font-family: "Geist Mono", monospace; font-size: 10.5px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--mute); margin-top: 8px; }

/* ─── inline callout band (Tap Kit support block) ─────── */
.callout { border-top: 1px solid var(--line); }
.callout-inner {
  display: grid; grid-template-columns: 1.3fr 1fr; gap: 56px; align-items: center;
  background: var(--shadow); border-radius: 24px; padding: 48px 52px; color: var(--paper);
  position: relative; overflow: hidden;
}
@media (max-width: 860px) { .callout-inner { grid-template-columns: 1fr; gap: 32px; padding: 40px 32px; } }
.callout-inner .eyebrow { color: var(--amber-soft); }
.callout h3 { font-family: "Instrument Serif", serif; font-weight: 400; font-size: clamp(30px, 4vw, 44px); line-height: 1.05; letter-spacing: -0.01em; margin: 16px 0 16px; }
.callout h3 em { font-style: italic; color: rgba(250,250,247,0.6); }
.callout p { color: rgba(250,250,247,0.74); font-size: 16px; line-height: 1.6; margin: 0 0 26px; max-width: 46ch; }
.callout .btn-pill { background: var(--paper); color: var(--ink); }
.callout .btn-pill:hover { background: #fff; }
.callout-aside { display: flex; align-items: center; justify-content: center; }

/* ─── CTA ─────────────────────────────────────────────── */
.cta { padding: 110px 0 120px; text-align: center; border-top: 1px solid var(--line); }
.cta h2 { font-family: "Instrument Serif", serif; font-weight: 400; font-size: clamp(48px, 7vw, 96px); line-height: 1.0; letter-spacing: -0.02em; margin: 20px 0 24px; }
.cta h2 em { font-style: italic; color: var(--mute); }
.cta p { color: var(--mute); font-size: 17px; max-width: 52ch; margin: 0 auto 32px; line-height: 1.55; }
.cta-actions { display: inline-flex; align-items: center; gap: 20px; flex-wrap: wrap; justify-content: center; }

/* ─── dark section variant ────────────────────────────── */
.section-dark { background: var(--shadow); color: var(--paper); border-top: none !important; }
/* safety net: white cards nested in a dark section keep dark text */
.section-dark .plan, .section-dark .price-card, .section-dark .records, .section-dark .price-tab, .section-dark .formcard, .section-dark .board, .section-dark .cmp { color: var(--ink-soft); }
.section-dark h2 { color: var(--paper); }
.section-dark h2 em { color: rgba(250,250,247,0.50); }
.section-dark .head p { color: rgba(250,250,247,0.74); }
.section-dark .head p b { color: var(--paper); font-weight: 500; }
section.row.section-dark .head p a { color: var(--paper); border-bottom-color: rgba(250,250,247,0.3); }
.section-dark .eyebrow { color: rgba(250,250,247,0.55); }
.section-dark .eyebrow .line { background: rgba(250,250,247,0.20); }
.section-dark .steps { border-top: 1px solid rgba(250,250,247,0.10); border-bottom: 1px solid rgba(250,250,247,0.10); }
.section-dark .step { border-color: rgba(250,250,247,0.10); }
.section-dark .step h3 { color: var(--paper); }
.section-dark .step p { color: rgba(250,250,247,0.72); }
.section-dark .step .num { color: rgba(250,250,247,0.55); }
.section-dark .mini-qr { background: var(--paper); border-color: transparent; }
.section-dark .net-grid { border-top: 1px solid rgba(250,250,247,0.10); border-bottom: 1px solid rgba(250,250,247,0.10); }
.section-dark .net-card { border-color: rgba(250,250,247,0.10); }
.section-dark .net-tag { color: rgba(250,250,247,0.50); }
.section-dark .net-quote { color: var(--paper); }
.section-dark .net-quote em { color: rgba(250,250,247,0.55); }
.section-dark .net-body { color: rgba(250,250,247,0.72); }
.section-dark .net-chip { background: rgba(255,255,255,0.04); color: var(--paper); border-color: rgba(255,255,255,0.18); }
.section-dark .net-chip.k { background: var(--paper); color: var(--ink); border-color: var(--paper); }
.section-dark .net-chip.c { color: rgba(250,250,247,0.45); background: transparent; }
.section-dark .net-chip.arrow { color: rgba(250,250,247,0.32); background: transparent; }

/* ─── disclaimer caption ──────────────────────────────── */
.disclaimer { font-family: "Geist Mono", monospace; font-size: 11px; letter-spacing: 0.04em; color: var(--mute-2); line-height: 1.5; margin: 14px 0 0; }
.disclaimer.center { text-align: center; }
.section-dark .disclaimer { color: rgba(250,250,247,0.5); }
.foot-disclaimer { padding: 18px 0 0; color: var(--mute-2); font-size: 12px; line-height: 1.55; max-width: 80ch; }

/* ─── footer (rich, shared) ───────────────────────────── */
.site-footer { border-top: 1px solid var(--line); padding: 64px 0 40px; background: var(--paper); }
.foot-top { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 40px; padding-bottom: 44px; border-bottom: 1px solid var(--line); }
@media (max-width: 760px) { .foot-top { grid-template-columns: 1fr; gap: 32px; } }
.foot-brand .mark { font-weight: 600; font-size: 17px; letter-spacing: -0.01em; }
.foot-brand p { color: var(--mute); font-size: 14px; line-height: 1.6; margin: 12px 0 0; max-width: 40ch; }
.foot-col { display: flex; flex-direction: column; gap: 12px; }
.foot-label { font-family: "Geist Mono", monospace; font-size: 10.5px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--mute-2); margin-bottom: 2px; }
.foot-col a { color: var(--ink-soft); text-decoration: none; font-size: 14.5px; }
.foot-col a:hover { color: var(--amber); }
.foot-note { padding: 26px 0; border-bottom: 1px solid var(--line); color: var(--mute); font-size: 13.5px; line-height: 1.6; max-width: 70ch; }
.foot-note a { color: var(--ink); border-bottom: 1px solid var(--line-2); text-decoration: none; }
.foot-note a:hover { border-bottom-color: var(--ink); }
.foot-bottom { display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; padding-top: 24px; font-size: 13px; color: var(--mute); }
.foot-legal { display: flex; gap: 22px; }
.foot-legal a { color: var(--mute); text-decoration: none; }
.foot-legal a:hover { color: var(--ink); }
.foot-bottom .mono { font-size: 11.5px; color: var(--mute-2); }
