/* ============================================================
   SnapFlow — shared design system
   One accent (gold), one proof color (green), one trust color (blue).
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --gold: #f5c518;
  --gold-dim: rgba(245,197,24,0.10);
  --gold-border: rgba(245,197,24,0.24);
  --bg: #08080a;
  --bg-elevated: #0e0e11;
  --bg-card: rgba(255,255,255,0.035);
  --bg-card-hover: rgba(255,255,255,0.06);
  --border: rgba(255,255,255,0.08);
  --border-strong: rgba(255,255,255,0.15);
  --text: #f2f2f7;
  --text-muted: rgba(242,242,247,0.58);
  --text-faint: rgba(242,242,247,0.36);
  --green: #30d158;
  --green-dim: rgba(48,209,88,0.10);
  --green-border: rgba(48,209,88,0.26);
  --blue: #4da3ff;
  --blue-dim: rgba(10,132,255,0.10);
  --blue-border: rgba(10,132,255,0.26);
  --amber: #f0a83a;
  --amber-dim: rgba(240,168,58,0.10);
  --amber-border: rgba(240,168,58,0.26);
  --red: #ff453a;
  --radius: 16px;
  --radius-sm: 10px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.025'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
}

/* ── Nav ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5vw;
  height: 64px;
  background: rgba(8,8,10,0.72);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 0.5px solid var(--border);
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.nav-brand img {
  width: 26px;
  height: 26px;
  object-fit: contain;
  filter: invert(1);
}

.nav-brand-name {
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.3px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
  list-style: none;
}

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
}

.nav-links a:hover, .nav-links a.active { color: var(--text); }

.nav-cta {
  background: var(--gold);
  color: #111 !important;
  padding: 8px 20px;
  border-radius: 999px;
  font-weight: 700 !important;
  font-size: 13px !important;
  transition: opacity 0.2s, transform 0.15s !important;
}

.nav-cta:hover { opacity: 0.88; transform: translateY(-1px); color: #111 !important; }

.nav-mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
}

.nav-mobile-toggle span {
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ── Page hero (subpages) ── */
.page-hero {
  padding: 156px 5vw 72px;
  max-width: 1200px;
  margin: 0 auto;
}

.page-kicker {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.page-hero h1 {
  font-size: clamp(32px, 4.6vw, 56px);
  font-weight: 800;
  letter-spacing: -1.5px;
  line-height: 1.1;
  max-width: 780px;
  margin-bottom: 20px;
}

.page-hero .sub {
  font-size: clamp(16px, 1.6vw, 19px);
  color: var(--text-muted);
  max-width: 640px;
  font-weight: 400;
  line-height: 1.7;
}

/* ── Hero (home) ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 5vw 80px;
  overflow: hidden;
}

.hero-glow {
  position: absolute;
  top: -20%;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 600px;
  background: radial-gradient(ellipse at center, rgba(245,197,24,0.11) 0%, transparent 70%);
  pointer-events: none;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: 999px;
  background: var(--gold-dim);
  border: 0.5px solid var(--gold-border);
  font-size: 12px;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 28px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.hero-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.85); }
}

.hero h1 {
  font-size: clamp(36px, 5.6vw, 74px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -2px;
  color: var(--text);
  max-width: 880px;
  margin-bottom: 24px;
}

.hero h1 span { color: var(--gold); }

.hero-sub {
  font-size: clamp(16px, 2vw, 20px);
  color: var(--text-muted);
  max-width: 620px;
  margin-bottom: 14px;
  font-weight: 400;
}

.hero-sub2 {
  font-size: 15px;
  color: var(--text-faint);
  max-width: 560px;
  margin-bottom: 40px;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 64px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: 999px;
  background: var(--gold);
  color: #111;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 4px 28px rgba(245,197,24,0.24);
}

.btn-primary:hover {
  opacity: 0.88;
  transform: translateY(-2px);
  box-shadow: 0 8px 36px rgba(245,197,24,0.32);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: 999px;
  background: transparent;
  color: var(--text);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  border: 0.5px solid var(--border-strong);
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
}

.btn-secondary:hover {
  background: var(--bg-card-hover);
  transform: translateY(-2px);
}

/* ── Email capture ── */
.email-capture {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.email-capture-row {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 999px;
  padding: 6px 6px 6px 22px;
  backdrop-filter: blur(8px);
  width: 100%;
  max-width: 460px;
}
.email-capture-row input[type="email"] {
  flex: 1;
  background: none;
  border: none;
  outline: none;
  color: var(--text);
  font-size: 15px;
  font-family: inherit;
  min-width: 0;
}
.email-capture-row input[type="email"]::placeholder {
  color: rgba(255,255,255,0.35);
}
.email-capture-msg {
  font-size: 14px;
  min-height: 20px;
  transition: opacity 0.3s;
}
.email-capture-msg.success { color: #34d399; }
.email-capture-msg.error   { color: #f87171; }

/* ── Section layout ── */
section {
  position: relative;
  padding: 100px 5vw;
}

section + section { border-top: 0.5px solid var(--border); }

.section-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

.section-title {
  font-size: clamp(26px, 3.6vw, 44px);
  font-weight: 800;
  letter-spacing: -1px;
  line-height: 1.15;
  margin-bottom: 18px;
}

.section-desc {
  font-size: 16.5px;
  color: var(--text-muted);
  max-width: 620px;
  margin-bottom: 56px;
  font-weight: 400;
  line-height: 1.75;
}

.container { max-width: 1200px; margin: 0 auto; }

/* ── Stat cards ── */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
  margin-top: 56px;
}

.stat-card {
  background: var(--bg-card);
  border: 0.5px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
}

.stat-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-strong);
  transform: translateY(-3px);
}

.stat-number {
  font-size: 32px;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -1px;
  line-height: 1;
  margin-bottom: 10px;
}

.stat-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.55;
}

/* ── Feature / how cards ── */
.features-grid, .how-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
}

.feature-card, .how-card {
  background: var(--bg-card);
  border: 0.5px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
}

.feature-card:hover, .how-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-strong);
  transform: translateY(-3px);
}

.feature-icon {
  width: 42px;
  height: 42px;
  border-radius: 11px;
  background: rgba(255,255,255,0.05);
  border: 0.5px solid var(--border-strong);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 19px;
  margin-bottom: 18px;
}

.feature-icon.gold { background: var(--gold-dim); border-color: var(--gold-border); }
.feature-icon.green { background: var(--green-dim); border-color: var(--green-border); }
.feature-icon.blue { background: var(--blue-dim); border-color: var(--blue-border); }

.feature-title, .how-title {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
}

.feature-desc, .how-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
}

.how-number {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 12px;
}

/* ── The Loop diagram ── */
.loop-diagram {
  display: flex;
  align-items: stretch;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 20px;
}

.loop-step {
  flex: 1 1 120px;
  background: var(--bg-card);
  border: 0.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 16px 14px;
  text-align: center;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
}

.loop-step.gate { border-color: var(--amber-border); background: var(--amber-dim); color: var(--amber); }
.loop-step.verify { border-color: var(--green-border); background: var(--green-dim); color: var(--green); }
.loop-step.human { border-color: var(--blue-border); background: var(--blue-dim); color: var(--blue); }

.loop-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-faint);
  font-size: 14px;
  flex: 0 0 auto;
  padding: 0 2px;
}

@media (max-width: 900px) {
  .loop-diagram { flex-direction: column; }
  .loop-arrow { transform: rotate(90deg); padding: 2px 0; }
}

.loop-footnotes {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
  margin-top: 32px;
}

.loop-footnote {
  background: var(--bg-card);
  border: 0.5px solid var(--border);
  border-left: 3px solid var(--gold);
  border-radius: var(--radius-sm);
  padding: 20px 22px;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
}

.loop-footnote strong { color: var(--text); }

/* ── Mission Receipt visual ── */
.receipt {
  background: var(--bg-elevated);
  border: 0.5px solid var(--border-strong);
  border-radius: var(--radius);
  padding: 26px 26px 22px;
  max-width: 380px;
  width: 100%;
  margin: 0 auto;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
  font-family: 'JetBrains Mono', 'SF Mono', ui-monospace, monospace;
}

.receipt-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
  padding-bottom: 16px;
  border-bottom: 0.5px dashed var(--border-strong);
}

.receipt-head-label {
  font-size: 10.5px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-faint);
}

.receipt-stamp {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: var(--green);
  border: 1px solid var(--green-border);
  background: var(--green-dim);
  padding: 4px 10px;
  border-radius: 999px;
  opacity: 0;
  transform: scale(0.85) rotate(-4deg);
  transition: opacity 0.5s ease, transform 0.5s cubic-bezier(.2,1.4,.4,1);
}

.receipt.stamped .receipt-stamp { opacity: 1; transform: scale(1) rotate(-4deg); }

.receipt-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  padding: 7px 0;
  color: var(--text-muted);
}

.receipt-row strong { color: var(--text); font-weight: 600; }
.receipt-row.refund strong { color: var(--green); }
.receipt-row.charge strong { color: var(--text); }

.receipt-divider { height: 0.5px; background: var(--border); margin: 14px 0; }

.receipt-resources {
  font-size: 12px;
  color: var(--text-faint);
  line-height: 1.9;
  margin: 10px 0 14px;
}

.receipt-resources span { color: var(--text-muted); }

.receipt-hash {
  font-size: 11px;
  color: var(--text-faint);
  word-break: break-all;
  padding-top: 12px;
  border-top: 0.5px dashed var(--border-strong);
}

.receipt-hash strong { color: var(--text-muted); font-weight: 600; }

/* ── Moat / numbered list ── */
.moat-list { display: flex; flex-direction: column; gap: 14px; }

.moat-item {
  display: flex;
  gap: 20px;
  background: var(--bg-card);
  border: 0.5px solid var(--border);
  border-radius: var(--radius);
  padding: 26px 28px;
  transition: background 0.2s, border-color 0.2s;
}

.moat-item:hover { background: var(--bg-card-hover); border-color: var(--border-strong); }

.moat-num {
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: var(--gold-dim);
  border: 0.5px solid var(--gold-border);
  color: var(--gold);
  font-weight: 700;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.moat-body-title { font-size: 16px; font-weight: 700; margin-bottom: 6px; }
.moat-body-desc { font-size: 14.5px; color: var(--text-muted); line-height: 1.7; }

/* ── Capability groups ── */
.cap-groups {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 16px;
}

.cap-group {
  background: var(--bg-card);
  border: 0.5px solid var(--border);
  border-radius: var(--radius);
  padding: 26px 28px;
}

.cap-group-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.6px;
  margin-bottom: 14px;
}

.cap-group ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cap-group li {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
  display: flex;
  gap: 10px;
}

.cap-group li::before {
  content: '—';
  color: var(--text-faint);
  flex-shrink: 0;
}

/* ── Security checklist ── */
.security-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 16px;
}

.security-item {
  background: var(--bg-card);
  border: 0.5px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 26px;
  display: flex;
  gap: 16px;
}

.security-icon {
  flex: 0 0 auto;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: var(--blue-dim);
  border: 0.5px solid var(--blue-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}

.security-title { font-size: 15px; font-weight: 700; margin-bottom: 6px; }
.security-desc { font-size: 13.5px; color: var(--text-muted); line-height: 1.65; }

/* ── Settlement outcomes ── */
.settlement-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
}

.settlement-card {
  border-radius: var(--radius);
  padding: 28px;
  border: 0.5px solid var(--border);
  background: var(--bg-card);
}

.settlement-card.success { border-color: var(--green-border); background: var(--green-dim); }
.settlement-card.refund { border-color: var(--blue-border); background: var(--blue-dim); }
.settlement-card.partial { border-color: var(--amber-border); background: var(--amber-dim); }

.settlement-badge {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  margin-bottom: 12px;
}

.settlement-card.success .settlement-badge { color: var(--green); }
.settlement-card.refund .settlement-badge { color: var(--blue); }
.settlement-card.partial .settlement-badge { color: var(--amber); }

.settlement-title { font-size: 17px; font-weight: 700; margin-bottom: 10px; }
.settlement-desc { font-size: 14px; color: var(--text-muted); line-height: 1.65; }

/* ── Research callout ── */
.research-callout {
  margin-top: 20px;
  padding: 22px 26px;
  background: rgba(255,255,255,0.03);
  border: 0.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.7;
}

.research-callout strong { color: var(--text); }
.research-callout .tag {
  display: inline-block;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--text-faint);
  border: 0.5px solid var(--border-strong);
  padding: 2px 8px;
  border-radius: 999px;
  margin-bottom: 10px;
}

.research-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 12px;
  margin-top: 24px;
}

.rs-card {
  background: var(--bg-card);
  border: 0.5px solid var(--border);
  border-left: 3px solid var(--gold);
  border-radius: var(--radius-sm);
  padding: 18px 20px;
}

.rs-value { font-size: 26px; font-weight: 800; color: var(--gold); letter-spacing: -0.5px; margin-bottom: 4px; }
.rs-label { font-size: 12px; color: var(--text-muted); line-height: 1.5; }

/* ── Pricing ── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
  margin-bottom: 48px;
}

.pricing-card {
  background: var(--bg-card);
  border: 0.5px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  transition: transform 0.2s, border-color 0.2s;
}

.pricing-card.featured {
  border-color: var(--gold-border);
  background: linear-gradient(160deg, rgba(245,197,24,0.06) 0%, var(--bg-card) 60%);
  position: relative;
}

.pricing-card:hover { transform: translateY(-4px); }

.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: #111;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 999px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.pricing-tier {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.pricing-price {
  font-size: 38px;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -1.5px;
  line-height: 1;
  margin: 8px 0;
}

.pricing-price span {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0;
}

.pricing-target {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.pricing-divider {
  height: 0.5px;
  background: var(--border);
  margin: 16px 0;
}

.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
  margin-bottom: 24px;
}

.pricing-features li {
  font-size: 14px;
  color: var(--text-muted);
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.pricing-features li::before {
  content: '✓';
  color: var(--green);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

.pricing-cta {
  display: block;
  width: 100%;
  padding: 12px;
  text-align: center;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: opacity 0.2s, transform 0.15s;
  cursor: pointer;
  border: none;
}

.pricing-card.featured .pricing-cta {
  background: var(--gold);
  color: #111;
}

.pricing-card:not(.featured) .pricing-cta {
  background: transparent;
  color: var(--text);
  border: 0.5px solid var(--border-strong);
}

.pricing-cta:hover { opacity: 0.85; transform: translateY(-1px); }

/* ── Comparison table ── */
.table-wrap {
  overflow-x: auto;
  border-radius: var(--radius);
  border: 0.5px solid var(--border);
}

table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  min-width: 700px;
}

thead th {
  padding: 16px 20px;
  background: rgba(255,255,255,0.03);
  font-weight: 700;
  font-size: 13px;
  text-align: left;
  border-bottom: 0.5px solid var(--border);
  white-space: nowrap;
}

thead th:first-child { color: var(--text-muted); font-weight: 600; }
thead th:nth-child(2) { color: var(--gold); }

tbody tr {
  border-bottom: 0.5px solid var(--border);
  transition: background 0.15s;
}

tbody tr:last-child { border-bottom: none; }
tbody tr:hover { background: rgba(255,255,255,0.02); }

tbody td {
  padding: 15px 20px;
  color: var(--text-muted);
}

tbody td:first-child { color: var(--text); font-weight: 500; }

.check { color: var(--green); font-weight: 700; font-size: 15px; }
.cross { color: rgba(255,255,255,0.2); font-size: 15px; }
.partial { color: var(--text-faint); font-size: 13px; font-style: italic; }

.table-note {
  margin-top: 20px;
  padding: 18px 24px;
  background: var(--blue-dim);
  border: 0.5px solid var(--blue-border);
  border-radius: var(--radius-sm);
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

.table-note strong { color: var(--text); }

/* ── Honesty / callout blocks ── */
.callout {
  margin-top: 20px;
  padding: 22px 26px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
  border: 0.5px solid var(--border);
  background: var(--bg-card);
}

.callout.gold { border-color: var(--gold-border); background: var(--gold-dim); }
.callout strong { color: var(--text); }

/* ── Flywheel ── */
.flywheel {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.8;
  padding: 28px;
  background: var(--bg-card);
  border: 0.5px solid var(--border);
  border-radius: var(--radius);
}

.flywheel strong { color: var(--gold); font-weight: 700; }

/* ── CTA band (subpages) ── */
.cta-band {
  padding: 80px 5vw;
  text-align: center;
  background: linear-gradient(160deg, rgba(245,197,24,0.05) 0%, transparent 60%);
}

.cta-band h2 { font-size: clamp(24px, 3vw, 34px); font-weight: 800; letter-spacing: -0.8px; margin-bottom: 14px; }
.cta-band p { font-size: 15px; color: var(--text-muted); max-width: 480px; margin: 0 auto 28px; line-height: 1.7; }

/* ── CTA section (home) ── */
.cta-section {
  text-align: center;
  padding: 120px 5vw;
  background: linear-gradient(160deg, rgba(245,197,24,0.05) 0%, transparent 60%);
}

.cta-section .section-title { max-width: 700px; margin: 0 auto 18px; }
.cta-section .section-desc { margin: 0 auto 40px; }

.cta-cards {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.cta-card {
  background: var(--bg-card);
  border: 0.5px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 28px;
  text-align: left;
  max-width: 260px;
  flex: 1;
  min-width: 200px;
}

.cta-card-label {
  font-size: 11px;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.cta-card-title {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 6px;
}

.cta-card-desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ── Footer ── */
footer {
  padding: 32px 5vw;
  border-top: 0.5px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

.footer-brand img {
  width: 22px;
  height: 22px;
  object-fit: contain;
  filter: invert(1);
  opacity: 0.6;
}

.footer-brand-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-muted);
}

.footer-copy {
  font-size: 13px;
  color: var(--text-faint);
}

.footer-links {
  display: flex;
  gap: 24px;
  list-style: none;
}

.footer-links a {
  font-size: 13px;
  color: var(--text-faint);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--text-muted); }

/* ── Scroll-reveal ──
   Visible by default: content must never depend on JS to be seen.
   Only once app.js confirms it's running (html.js) do elements hide
   and wait for the scroll observer to reveal them. ── */
.reveal {
  opacity: 1;
  transform: none;
  transition: opacity 0.5s ease, transform 0.5s ease;
}

html.js .reveal {
  opacity: 0;
  transform: translateY(20px);
}

html.js .reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }

/* ── Responsive ── */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-mobile-toggle { display: flex; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 64px;
    left: 0; right: 0;
    background: rgba(8,8,10,0.97);
    backdrop-filter: blur(20px);
    padding: 24px 5vw 32px;
    border-bottom: 0.5px solid var(--border);
    gap: 20px;
    z-index: 99;
  }
  .hero h1 { letter-spacing: -1px; }
  section { padding: 72px 5vw; }
  .cta-section, .cta-band { padding: 72px 5vw; }
  .page-hero { padding: 128px 5vw 56px; }
  footer { flex-direction: column; align-items: flex-start; gap: 12px; }
}

/* ── Shimmer line accent ── */
.accent-line {
  width: 48px;
  height: 3px;
  background: var(--gold);
  border-radius: 2px;
  margin-bottom: 20px;
}
