/* ============================================================
   iTrek — Investor Site
   Design tokens
   ============================================================ */
:root {
  --ink: #141A26;
  --ink-2: #1D2635;
  --ink-3: #242F42;
  --paper: #FFFFFF;
  --mist: #F3F5F9;
  --line: #E1E6EE;
  --line-dark: #2E3A4E;
  --ember: #E8452F;
  --ember-soft: #FF8266;
  --teal: #2FA9B0;
  --teal-soft: #7FE0E6;
  --body: #33404F;
  --muted: #647089;
  --muted-dark: #9AA5B8;
  --paper-muted: #B7C2D6;

  --serif: "Fraunces", ui-serif, Georgia, serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --max: 1180px;
  --gutter: clamp(1.25rem, 4vw, 3rem);
  --radius: 10px;
  --ease: cubic-bezier(.22, .8, .28, 1);
}

/* ============================================================
   Reset & base
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

body {
  margin: 0;
  font-family: var(--sans);
  color: var(--body);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, p { margin: 0; }
button { font: inherit; cursor: pointer; }

.icon {
  width: 1em;
  height: 1em;
  display: inline-block;
  vertical-align: -0.125em;
}

:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 3px;
}

.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

.on-dark { color: var(--paper-muted); }

/* ============================================================
   Type scale
   ============================================================ */
.display {
  font-family: var(--serif);
  font-weight: 560;
  letter-spacing: -0.01em;
  line-height: 1.06;
  color: var(--ink);
}
.on-dark .display, .dark .display { color: var(--paper); }

.h1 { font-size: clamp(2.3rem, 4.1vw, 4rem); }
.h2 { font-size: clamp(1.7rem, 2.6vw, 2.35rem); }
.h3 { font-size: clamp(1.2rem, 1.6vw, 1.5rem); font-weight: 550; }

.lead {
  font-size: clamp(1.08rem, 1.5vw, 1.28rem);
  line-height: 1.6;
  color: var(--body);
}
.dark .lead { color: var(--paper-muted); }

.eyebrow {
  font-family: var(--sans);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--ember);
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
}
.dark .eyebrow { color: var(--ember-soft); }

.section-head { max-width: 640px; margin-bottom: clamp(2rem, 4vw, 3rem); }
.section-head .eyebrow { margin-bottom: 0.9rem; }
.section-head .h2 { margin-bottom: 0.7rem; }
.section-head .sub { color: var(--muted); font-size: 1.02rem; line-height: 1.55; }
.dark .section-head .sub { color: var(--paper-muted); }

/* ============================================================
   Sections
   ============================================================ */
section { position: relative; }
.dark { background: var(--ink); }
.light { background: var(--paper); }
.tint { background: var(--mist); }

.pad { padding-top: clamp(3.5rem, 7vw, 6.5rem); padding-bottom: clamp(3.5rem, 7vw, 6.5rem); }
.pad-sm { padding-top: clamp(2.5rem, 5vw, 4rem); padding-bottom: clamp(2.5rem, 5vw, 4rem); }
.pad-top-only { padding-top: clamp(3.5rem, 7vw, 6.5rem); padding-bottom: 0; }
.pad-mid { padding-top: clamp(3rem, 6vw, 5rem); padding-bottom: 0; }
.pad-last { padding-top: clamp(3rem, 6vw, 5rem); padding-bottom: clamp(3.5rem, 7vw, 6.5rem); }

.rule { border: none; border-top: 1px solid var(--line); }
.dark .rule { border-top-color: var(--line-dark); }

/* ============================================================
   Nav
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0.9rem 0;
  background: rgba(20, 26, 38, 0);
  border-bottom: 1px solid transparent;
  transition: background .35s var(--ease), border-color .35s var(--ease), padding .35s var(--ease);
}
.nav.scrolled {
  background: rgba(20, 26, 38, 0.92);
  backdrop-filter: blur(10px);
  border-bottom-color: var(--line-dark);
  padding: 0.65rem 0;
}
.nav .wrap { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; }
.nav-brand { display: flex; align-items: center; gap: 0.55rem; }
.nav-brand img { height: 26px; width: auto; }
.nav-brand span {
  font-family: var(--serif); font-style: italic; font-weight: 600;
  font-size: 1.2rem; color: var(--paper);
}
.nav-links { display: flex; align-items: center; gap: 1.9rem; }
.nav-links a {
  font-size: 0.88rem; color: var(--paper-muted); font-weight: 500;
  transition: color .2s;
}
.nav-links a:hover { color: var(--paper); }
.nav-cta {
  background: var(--ember); color: #fff; font-size: 0.85rem; font-weight: 600;
  padding: 0.55rem 1.1rem; border-radius: 999px; border: none;
  transition: background .2s, transform .2s;
}
.nav-cta:hover { background: #d43a24; transform: translateY(-1px); }
.nav-toggle { display: none; background: none; border: none; color: var(--paper); padding: 0.3rem; }
.nav-toggle .icon { width: 22px; height: 22px; }

/* ============================================================
   Buttons
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; gap: 0.5em;
  font-family: var(--sans); font-weight: 600; font-size: 0.96rem;
  padding: 0.85rem 1.5rem; border-radius: 999px; border: 1.5px solid transparent;
  transition: transform .2s var(--ease), background .2s, border-color .2s, color .2s;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--ember); color: #fff; }
.btn-primary:hover { background: #d43a24; }
.btn-ghost-dark { border-color: var(--line-dark); color: var(--paper); }
.btn-ghost-dark:hover { border-color: var(--paper-muted); }
.btn-ghost-light { border-color: var(--line); color: var(--ink); }
.btn-ghost-light:hover { border-color: var(--muted); }
.btn-row { display: flex; gap: 0.9rem; flex-wrap: wrap; align-items: center; }
.btn .icon { width: 1.05em; height: 1.05em; }

/* ============================================================
   Hero
   ============================================================ */
.hero {
  padding-top: clamp(7.5rem, 12vw, 10rem);
  padding-bottom: clamp(4rem, 8vw, 6rem);
  overflow: hidden;
  position: relative;
}
.hero .wrap {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.hero-eyebrow-pill {
  display: inline-flex; align-items: center; gap: 0.55em;
  background: var(--ink-2); border: 1px solid var(--line-dark);
  color: var(--teal-soft); font-size: 0.78rem; font-weight: 600;
  padding: 0.4rem 0.85rem; border-radius: 999px; margin-bottom: 1.6rem;
}
.hero-eyebrow-pill .dot {
  width: 6px; height: 6px; border-radius: 50%; background: var(--teal-soft);
  box-shadow: 0 0 0 3px rgba(127,224,230,0.18);
}
.hero h1 { margin-bottom: 1.5rem; }
.hero .lead { margin-bottom: 2rem; max-width: 54ch; }
.hero .lead b { color: var(--paper); font-weight: 600; }
.hero .lead .num { color: var(--ember-soft); font-weight: 650; }
.hero-proof {
  margin-top: 2.4rem; display: flex; gap: 2.2rem; flex-wrap: wrap;
  padding-top: 1.8rem; border-top: 1px solid var(--line-dark);
}
.hero-proof-item { display: flex; align-items: baseline; gap: 0.5rem; }
.hero-proof-item .icon { color: var(--teal-soft); width: 1.1em; height: 1.1em; align-self: center; }
.hero-proof-item span { font-size: 0.87rem; color: var(--paper-muted); }
.hero-proof-item strong { font-family: var(--serif); font-size: 1.05rem; color: var(--paper); font-weight: 600; }

.hero-art { position: relative; max-width: 480px; margin: 0 auto; width: 100%; }
.video-embed {
  position: relative; width: 100%; aspect-ratio: 16 / 9;
  border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--line-dark); background: var(--ink-2);
  box-shadow: 0 20px 50px rgba(0,0,0,0.35);
  display: block;
}
.video-thumb img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  transition: transform .4s var(--ease), filter .4s var(--ease);
}
.video-thumb::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(20,26,38,0.05) 0%, rgba(20,26,38,0.55) 100%);
  transition: background .3s var(--ease);
}
.video-thumb:hover img { transform: scale(1.04); filter: brightness(0.85); }
.video-thumb:hover::after { background: linear-gradient(180deg, rgba(20,26,38,0.15) 0%, rgba(20,26,38,0.6) 100%); }
.play-btn {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 62px; height: 62px; border-radius: 50%;
  background: rgba(232, 69, 47, 0.92); color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 24px rgba(0,0,0,0.35);
  transition: transform .25s var(--ease), background .25s var(--ease);
  z-index: 1;
}
.play-btn svg { width: 24px; height: 24px; margin-left: 3px; }
.video-thumb:hover .play-btn { transform: translate(-50%, -50%) scale(1.08); background: var(--ember); }
.video-caption {
  margin-top: 0.9rem; font-size: 0.78rem; color: var(--muted-dark); line-height: 1.5;
}
.video-caption strong { color: var(--paper-muted); }
.video-caption a { color: var(--teal-soft); text-decoration: underline; text-underline-offset: 2px; white-space: nowrap; }
.video-caption a:hover { color: var(--paper); }

/* ============================================================
   Problem — extractor cards on dark
   ============================================================ */
.extractor-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.1rem;
}
.extractor-card {
  border: 1px solid var(--line-dark); border-radius: var(--radius);
  padding: 1.9rem 1.7rem; background: var(--ink-2);
}
.extractor-card .icon-badge { margin-bottom: 1.3rem; }
.extractor-card h3 { color: var(--paper); margin-bottom: 0.3rem; }
.extractor-card .tag { color: var(--teal-soft); font-size: 0.85rem; font-style: italic; margin-bottom: 0.9rem; display: block; }
.extractor-card p { color: var(--paper-muted); font-size: 0.94rem; line-height: 1.55; }

.icon-badge {
  width: 46px; height: 46px; border-radius: 50%;
  border: 1.5px solid var(--ember); display: flex; align-items: center; justify-content: center;
  color: var(--paper); font-size: 1.25rem;
}
.icon-badge.teal { border-color: var(--teal); }

.callout-row {
  margin-top: 1.1rem; display: flex; gap: 1rem; align-items: center;
  border: 1px solid var(--line-dark); border-radius: var(--radius);
  padding: 1.2rem 1.5rem; background: var(--ink-3);
}
.callout-row .icon-badge { flex-shrink: 0; width: 40px; height: 40px; font-size: 1.05rem; }
.callout-row p { color: var(--paper); font-size: 0.98rem; line-height: 1.5; }

/* ============================================================
   Why now — quote + enabling conditions
   ============================================================ */
.quote-grid { display: grid; grid-template-columns: 1.5fr 1fr; gap: 1.1rem; margin-bottom: 1.1rem; }
.quote-card, .stat-card-dark {
  border: 1px solid var(--line-dark); border-radius: var(--radius); background: var(--ink-2);
  padding: 1.9rem 2rem;
}
.quote-card .icon-badge { margin-bottom: 1.1rem; }
.quote-card blockquote {
  font-family: var(--serif); font-style: italic; font-size: 1.25rem; color: var(--paper);
  line-height: 1.45; margin-bottom: 1.2rem;
}
.quote-card cite { font-style: normal; }
.quote-card cite .name { color: var(--teal-soft); font-weight: 600; font-size: 0.92rem; display: block; margin-bottom: 0.2rem; }
.quote-card cite .role { color: var(--muted-dark); font-size: 0.82rem; }

.stat-card-dark .big { font-family: var(--serif); font-size: clamp(2.2rem, 4vw, 2.8rem); color: var(--ember-soft); font-weight: 600; margin-bottom: 0.6rem; }
.stat-card-dark p { color: var(--paper-muted); font-size: 0.94rem; line-height: 1.5; }

.condition-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.1rem; }
.condition-card { padding: 1.7rem 0 0; border-top: 1px solid var(--line-dark); }
.condition-card .icon-badge { margin-bottom: 1.1rem; }
.condition-card h3 { color: var(--paper); margin-bottom: 0.5rem; font-size: 1.06rem; }
.condition-card p { color: var(--paper-muted); font-size: 0.92rem; line-height: 1.5; }

/* ============================================================
   Solution — registry flow diagram
   ============================================================ */
.flow {
  display: grid; grid-template-columns: 1fr auto 1fr auto 1fr; gap: 1.2rem; align-items: stretch;
}
.flow-step {
  border: 1px solid var(--line-dark); border-radius: var(--radius); background: var(--ink-2);
  padding: 1.8rem 1.6rem; text-align: left;
}
.flow-step .step-num {
  font-family: var(--serif); font-size: 0.85rem; color: var(--ember-soft); font-weight: 600;
  margin-bottom: 1rem; letter-spacing: 0.02em;
}
.flow-step .icon-badge { margin-bottom: 1.1rem; }
.flow-step h3 { color: var(--paper); margin-bottom: 0.5rem; font-size: 1.08rem; }
.flow-step p { color: var(--paper-muted); font-size: 0.92rem; line-height: 1.5; }
.flow-arrow { display: flex; align-items: center; justify-content: center; color: var(--ember); }
.flow-arrow .icon { width: 22px; height: 22px; }

/* ============================================================
   Market — big typographic stats (light section)
   ============================================================ */
.stat-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2.5rem; }
.stat-row + .stat-row { margin-top: 2.5rem; padding-top: 2.5rem; border-top: 1px solid var(--line); }
.stat-block .num {
  font-family: var(--serif); font-weight: 600; font-size: clamp(2.4rem, 4.6vw, 3.4rem);
  color: var(--ink); line-height: 1; margin-bottom: 0.65rem;
  font-variant-numeric: tabular-nums;
}
.stat-block .num .accent { color: var(--ember); }
.stat-block .lbl { color: var(--muted); font-size: 0.95rem; line-height: 1.4; max-width: 22ch; }
.source-note { margin-top: 2.5rem; font-size: 0.8rem; color: var(--muted); font-style: italic; }

/* ============================================================
   Product — category rows
   ============================================================ */
.category-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.category-item {
  padding: 1.9rem 1.8rem; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line);
  display: flex; gap: 1.1rem;
}
.category-item .icon-badge { flex-shrink: 0; }
.category-item h3 { font-size: 1.02rem; margin-bottom: 0.35rem; color: var(--ink); }
.category-item p { font-size: 0.88rem; color: var(--muted); line-height: 1.45; }

/* ============================================================
   Go-to-market — horizontal timeline
   ============================================================ */
.timeline { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; position: relative; }
.timeline::before {
  content: ""; position: absolute; top: 11px; left: 5%; right: 5%; height: 2px; background: var(--line);
}
.tl-step { padding-right: 2rem; position: relative; }
.tl-dot {
  width: 24px; height: 24px; border-radius: 50%; background: var(--paper); border: 2.5px solid var(--ember);
  margin-bottom: 1.4rem; position: relative; z-index: 1;
}
.tl-step:nth-child(2) .tl-dot { border-color: #F0B429; }
.tl-step:nth-child(3) .tl-dot { border-color: var(--teal); }
.tl-when { font-size: 0.8rem; color: var(--muted); font-weight: 600; margin-bottom: 0.4rem; }
.tl-title { font-family: var(--serif); font-size: 1.25rem; font-weight: 600; color: var(--ink); margin-bottom: 0.6rem; }
.tl-body { font-size: 0.92rem; color: var(--muted); line-height: 1.55; }

/* ============================================================
   Competitive quadrant
   ============================================================ */
.quadrant-wrap { display: grid; grid-template-columns: 1fr 2.2fr; gap: clamp(3.5rem, 6vw, 5rem); align-items: center; }
.quadrant-notes { display: flex; flex-direction: column; gap: 1.5rem; }
.qnote { display: flex; gap: 0.9rem; }
.qnote .icon-badge { flex-shrink: 0; width: 38px; height: 38px; font-size: 1rem; border-color: var(--line); color: var(--ink); }
.qnote h4 { font-size: 0.95rem; color: var(--ink); margin-bottom: 0.25rem; }
.qnote p { font-size: 0.85rem; color: var(--muted); line-height: 1.5; }

.quadrant { position: relative; aspect-ratio: 4 / 3; }
.qaxis-label {
  position: absolute; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--muted);
  text-align: center; z-index: 2;
}
.qaxis-top { top: -1.6rem; left: 0; right: 0; }
.qaxis-bottom { bottom: -1.6rem; left: 0; right: 0; }
.qaxis-label { font-size: 0.66rem; line-height: 1.3; }
.qaxis-left, .qaxis-right {
  top: 50%; transform: translateY(-50%); width: 92px;
  background: rgba(243,245,249,0.9); padding: 0.2rem 0.3rem; border-radius: 4px;
}
.qaxis-left { left: 0.6rem; text-align: left; }
.qaxis-right { right: 0.6rem; text-align: right; }
.qgrid { position: absolute; inset: 0; border: 1px solid var(--line); border-radius: var(--radius); background: var(--mist); z-index: 0; }
.qgrid::before, .qgrid::after { content: ""; position: absolute; background: var(--line); }
.qgrid::before { left: 50%; top: 0; bottom: 0; width: 1px; }
.qgrid::after { top: 50%; left: 0; right: 0; height: 1px; }
.qpill {
  position: absolute; transform: translate(-50%, -50%);
  background: var(--paper); border: 1px solid var(--line); border-radius: 999px;
  padding: 0.4rem 0.85rem; font-size: 0.8rem; color: var(--muted); font-weight: 500;
  white-space: nowrap;
}
.qpill.self { background: var(--ember); color: #fff; border-color: var(--ember); font-weight: 700; }

/* ============================================================
   Traction — checklist
   ============================================================ */
.check-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.6rem 2.5rem; }
.check-item { display: flex; gap: 1.1rem; }
.check-item .tick {
  flex-shrink: 0; width: 28px; height: 28px; border-radius: 50%; background: var(--ember);
  color: #fff; display: flex; align-items: center; justify-content: center; font-size: 0.85rem; margin-top: 0.1rem;
}
.check-item h3 { font-size: 1.02rem; color: var(--ink); margin-bottom: 0.35rem; }
.check-item p { font-size: 0.92rem; color: var(--muted); line-height: 1.5; }

/* ============================================================
   Team
   ============================================================ */
.team-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1.6rem; }
.team-card { text-align: left; }
.team-photo {
  width: 100%; aspect-ratio: 1; border-radius: 50%; overflow: hidden; margin-bottom: 1rem;
  border: 1px solid var(--line);
}
.team-photo img { width: 100%; height: 100%; object-fit: cover; }
.team-card h3 { font-size: 0.98rem; color: var(--ink); margin-bottom: 0.15rem; }
.team-card .role { font-size: 0.82rem; color: var(--teal); font-weight: 600; margin-bottom: 0.55rem; }
.team-card p { font-size: 0.82rem; color: var(--muted); line-height: 1.45; }

/* ============================================================
   Business model
   ============================================================ */
.tier-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.1rem; }
.tier-card {
  border: 1px solid var(--line); border-radius: var(--radius); padding: 1.9rem 1.7rem;
  background: var(--paper);
}
.tier-card.featured { border-color: var(--ember); box-shadow: 0 0 0 1px var(--ember); }
.tier-name { font-size: 0.78rem; font-weight: 700; letter-spacing: 0.07em; text-transform: uppercase; color: var(--muted); margin-bottom: 0.9rem; }
.tier-card.featured .tier-name { color: var(--ember); }
.tier-price { font-family: var(--serif); font-size: 2.1rem; font-weight: 600; color: var(--ink); margin-bottom: 1.3rem; }
.tier-list li { font-size: 0.88rem; color: var(--body); padding: 0.5rem 0; border-top: 1px solid var(--line); }
.tier-list li:first-child { border-top: none; }

.model-note {
  margin-top: 1.6rem; padding: 1.2rem 1.5rem; background: var(--mist); border-radius: var(--radius);
  font-size: 0.92rem; color: var(--muted); font-style: italic; line-height: 1.5;
}

/* ============================================================
   Ask — closing banner
   ============================================================ */
.ask-grid {
  display: grid; grid-template-columns: 0.9fr 1.7fr; gap: clamp(2rem, 4vw, 3.5rem); align-items: start;
}
.ask-amount { font-family: var(--serif); font-size: clamp(3rem, 6vw, 4.4rem); font-weight: 600; color: var(--paper); line-height: 1; margin: 0.6rem 0 0.7rem; }
.ask-sub { color: var(--paper-muted); font-size: 1rem; margin-bottom: 1.8rem; }
.use-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; margin-bottom: 2rem; }
.use-item { border-left: 2px solid var(--ember); padding-left: 0.9rem; }
.use-pct { font-family: var(--serif); font-size: 1.7rem; color: var(--ember-soft); font-weight: 600; }
.use-amt { font-size: 0.88rem; color: var(--paper); font-weight: 600; margin: 0.3rem 0 0.35rem; }
.use-lbl { font-size: 0.8rem; color: var(--muted-dark); line-height: 1.3; }
.milestones-block { border-top: 1px solid var(--line-dark); padding-top: 1.5rem; }
.milestones-block h4 { color: var(--teal-soft); font-size: 0.85rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 0.7rem; }
.milestones-block p { color: var(--paper-muted); font-size: 0.92rem; line-height: 1.6; }

/* ============================================================
   Footer
   ============================================================ */
.footer { background: var(--ink); border-top: 1px solid var(--line-dark); }
.footer .wrap { padding-top: 3rem; padding-bottom: 2rem; }
.footer-top { display: flex; justify-content: space-between; align-items: flex-start; gap: 2rem; flex-wrap: wrap; margin-bottom: 2.5rem; }
.footer-brand { display: flex; align-items: center; gap: 0.6rem; }
.footer-brand img { height: 24px; }
.footer-brand span { font-family: var(--serif); font-style: italic; font-weight: 600; font-size: 1.1rem; color: var(--paper); }
.footer-links { display: flex; gap: 2.5rem; flex-wrap: wrap; }
.footer-col h5 { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--muted-dark); margin-bottom: 0.9rem; }
.footer-col a, .footer-col p { display: block; font-size: 0.9rem; color: var(--paper-muted); margin-bottom: 0.55rem; }
.footer-col a:hover { color: var(--paper); }
.footer-bottom {
  border-top: 1px solid var(--line-dark); padding-top: 1.5rem;
  display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap;
  font-size: 0.78rem; color: var(--muted-dark);
}

/* ============================================================
   Reveal-on-load (hero only — one orchestrated moment)
   ============================================================ */
.reveal { opacity: 0; transform: translateY(14px); }
.reveal.in { opacity: 1; transform: none; transition: opacity .7s var(--ease), transform .7s var(--ease); }

/* ============================================================
   Legal legends & disclosures
   ============================================================ */
.legal-legend {
  margin-top: 1rem; font-size: 0.78rem; color: var(--muted-dark); line-height: 1.5; max-width: 54ch;
}
.legal-legend a { color: var(--paper-muted); text-decoration: underline; text-underline-offset: 2px; }
.legal-legend a:hover { color: var(--paper); }
.legal-legend.dark-variant { margin-top: 2rem; padding-top: 1.5rem; border-top: 1px solid var(--line-dark); max-width: 72ch; }

.disclosures { padding-top: clamp(3rem, 5vw, 4rem); padding-bottom: clamp(3rem, 5vw, 4rem); border-top: 1px solid var(--line-dark); }
.disclosures-title {
  font-family: var(--sans); font-size: 0.82rem; font-weight: 700; letter-spacing: 0.07em; text-transform: uppercase;
  color: var(--muted-dark); margin-bottom: 1.4rem;
}
.disclosures-body { max-width: 78ch; }
.disclosures-body p {
  font-size: 0.82rem; line-height: 1.7; color: var(--muted-dark); margin-bottom: 1rem;
}
.disclosures-body .disclosures-note { color: var(--paper-muted); font-style: italic; }
.disclosures-body a { color: var(--paper-muted); text-decoration: underline; text-underline-offset: 2px; }
.disclosures-body a:hover { color: var(--paper); }

/* ============================================================
   Accredited-investor gate modal
   ============================================================ */
.gate-overlay {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(10, 13, 20, 0.72); backdrop-filter: blur(3px);
  display: flex; align-items: center; justify-content: center; padding: 1.25rem;
}
.gate-overlay[hidden] { display: none; }
.gate-modal {
  background: var(--ink-2); border: 1px solid var(--line-dark); border-radius: 12px;
  max-width: 480px; width: 100%; padding: 1.9rem 2rem 1.7rem;
  box-shadow: 0 24px 60px rgba(0,0,0,0.4);
}
.gate-modal h3 { font-family: var(--serif); font-size: 1.3rem; color: var(--paper); margin-bottom: 0.8rem; font-weight: 600; }
.gate-intro { font-size: 0.85rem; color: var(--paper-muted); line-height: 1.55; margin-bottom: 1.4rem; }
.gate-intro a { color: var(--teal-soft); }
.gate-check {
  display: flex; align-items: flex-start; gap: 0.7rem; margin-bottom: 1rem; cursor: pointer;
}
.gate-check input {
  margin-top: 0.2rem; flex-shrink: 0; width: 16px; height: 16px; accent-color: var(--ember);
}
.gate-check span { font-size: 0.83rem; color: var(--paper-muted); line-height: 1.45; }
.gate-actions { display: flex; justify-content: flex-end; gap: 0.7rem; margin-top: 1.5rem; }
.gate-actions .btn { padding: 0.65rem 1.3rem; font-size: 0.88rem; }
.gate-actions .btn-primary:disabled { opacity: 0.4; cursor: not-allowed; transform: none; }
.gate-actions .btn-primary:disabled:hover { transform: none; background: var(--ember); }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 980px) {
  .nav-links { display: none; }
  .nav-toggle { display: inline-flex; }
  .hero .wrap { grid-template-columns: 1fr; }
  .hero-art { order: -1; max-width: 480px; }
  .extractor-grid, .condition-grid, .stat-row, .category-grid, .timeline, .check-grid, .use-grid { grid-template-columns: repeat(2, 1fr); }
  .quote-grid { grid-template-columns: 1fr; }
  .flow { grid-template-columns: 1fr; }
  .flow-arrow { transform: rotate(90deg); padding: 0.3rem 0; }
  .quadrant-wrap { grid-template-columns: 1fr; }
  .quadrant { max-width: 480px; margin: 0 auto; }
  .team-grid { grid-template-columns: repeat(3, 1fr); }
  .tier-grid { grid-template-columns: 1fr; max-width: 420px; }
  .ask-grid { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .extractor-grid, .condition-grid, .stat-row, .category-grid, .check-grid, .use-grid, .timeline { grid-template-columns: 1fr; }
  .timeline::before { display: none; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-row + .stat-row { margin-top: 1.5rem; padding-top: 1.5rem; }
  .quadrant { display: none; }
  .quadrant-legend-mobile { display: block !important; }
  .gate-modal { padding: 1.5rem 1.4rem 1.4rem; }
  .gate-actions { flex-direction: column-reverse; }
  .gate-actions .btn { width: 100%; justify-content: center; }
}
