/* ─────────────────────────────────────────────────────
   NEXORA LABS — style.css
   Fraunces (display) + DM Sans (body)
   Monochrome editorial — white background
───────────────────────────────────────────────────── */

/* ── RESET ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-text-size-adjust: 100%; }

/* ── TOKENS ─────────────────────────────────────────── */
:root {
  --ink:       #0e0d0c;
  --ink-80:    #2a2926;
  --ink-60:    #5a5751;
  --ink-40:    #8c8880;
  --ink-20:    #b8b5af;
  --ink-10:    #dbd9d5;
  --surface:   #f9f8f6;
  --surface-2: #f2f1ee;
  --rule:      #e6e3de;
  --rule-2:    #d4d1cb;
  --white:     #ffffff;

  --serif:  'Fraunces', Georgia, serif;
  --sans:   'DM Sans', system-ui, sans-serif;

  --radius:    8px;
  --radius-lg: 14px;
  --radius-xl: 20px;

  --nav-h: 64px;
  --max:   1120px;
  --pad:   48px;

  --shadow-sm: 0 1px 3px rgba(14,13,12,.06), 0 1px 2px rgba(14,13,12,.04);
  --shadow:    0 4px 12px rgba(14,13,12,.08), 0 2px 4px rgba(14,13,12,.04);
}

/* ── BASE ────────────────────────────────────────────── */
body {
  font-family: var(--sans);
  background: var(--white);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  line-height: 1.6;
}

a { text-decoration: none; color: inherit; }
button { font-family: var(--sans); cursor: pointer; }
img { display: block; max-width: 100%; height: auto; }
ul, ol { list-style: none; }

/* ── TYPOGRAPHY ──────────────────────────────────────── */
.eyebrow {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--ink-40);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: '';
  width: 18px;
  height: 1px;
  background: var(--rule-2);
  flex-shrink: 0;
}

h1.display {
  font-family: var(--serif);
  font-size: clamp(36px, 5vw, 76px);
  font-weight: 300;
  line-height: 1.06;
  letter-spacing: -.025em;
  color: var(--ink);
}
h1.display em {
  font-style: italic;
  color: var(--ink-40);
  font-weight: 300;
}

h2.title {
  font-family: var(--serif);
  font-size: clamp(26px, 3.2vw, 46px);
  font-weight: 300;
  line-height: 1.12;
  letter-spacing: -.02em;
  color: var(--ink);
  margin-bottom: 16px;
}
h2.title em {
  font-style: italic;
  color: var(--ink-40);
}

h3.heading {
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.4;
  color: var(--ink);
  margin-bottom: 8px;
}

.lead {
  font-size: clamp(15px, 1.4vw, 17px);
  font-weight: 300;
  line-height: 1.85;
  color: var(--ink-60);
}

.body-text {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.8;
  color: var(--ink-60);
}

/* ── LAYOUT ──────────────────────────────────────────── */
.section {
  padding: 72px var(--pad);
  max-width: var(--max);
  margin: 0 auto;
}
.section-sm {
  padding: 52px var(--pad);
  max-width: var(--max);
  margin: 0 auto;
}
.page-hero {
  padding: 88px var(--pad) 80px;
  max-width: var(--max);
  margin: 0 auto;
  border-bottom: 1.5px solid var(--rule);
}

.g2 { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.g3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.g4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }

.sec-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-bottom: 52px;
  align-items: end;
}

/* ── NAVBAR ──────────────────────────────────────────── */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1.5px solid var(--rule);
}

.nav-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  flex-shrink: 0;
  text-decoration: none;
}
.nav-logo-mark {
  width: 32px;
  height: 32px;
  background: var(--ink);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 18px;
  font-style: italic;
  font-weight: 300;
  color: var(--white);
  line-height: 1;
  flex-shrink: 0;
}
.nav-logo-text {
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -.01em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  list-style: none;
}
.nav-links a {
  font-size: 13px;
  font-weight: 400;
  color: var(--ink-60);
  padding: 6px 11px;
  border-radius: var(--radius);
  transition: color .15s, background .15s;
  white-space: nowrap;
}
.nav-links a:hover { color: var(--ink); background: var(--surface); }
.nav-links a.active { color: var(--ink); font-weight: 600; }

.nav-cta {
  background: var(--ink);
  color: var(--white);
  border: none;
  border-radius: var(--radius);
  padding: 9px 20px;
  font-size: 13px;
  font-weight: 600;
  transition: background .15s;
  white-space: nowrap;
  flex-shrink: 0;
}
.nav-cta:hover { background: var(--ink-80); }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  border: none;
  background: none;
  cursor: pointer;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--ink);
  border-radius: 2px;
  transition: all .2s;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

#mobile-menu {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0; right: 0;
  background: var(--white);
  border-bottom: 1.5px solid var(--rule);
  z-index: 999;
  padding: 16px var(--pad) 20px;
  box-shadow: var(--shadow);
}
#mobile-menu.open { display: block; }
#mobile-menu a {
  display: block;
  font-size: 15px;
  font-weight: 400;
  color: var(--ink-60);
  padding: 13px 0;
  border-bottom: 1px solid var(--rule);
  transition: color .15s;
}
#mobile-menu a:last-child {
  border-bottom: none;
  padding-top: 16px;
}
#mobile-menu a:hover { color: var(--ink); }

/* ── PAGES ───────────────────────────────────────────── */
.page { display: none; padding-top: var(--nav-h); }
.page.active { display: block; }

/* ── TAGS / BADGES ───────────────────────────────────── */
.tag {
  display: inline-flex;
  align-items: center;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .04em;
  padding: 3px 9px;
  border-radius: 20px;
  border: 1px solid var(--rule);
  color: var(--ink-60);
  background: var(--white);
  white-space: nowrap;
  line-height: 1.4;
}
.tag.dark   { background: var(--ink); color: var(--white); border-color: var(--ink); }
.tag.muted  { background: var(--surface); color: var(--ink-60); border-color: var(--rule); }
.tag.alert  { background: #fff7ed; color: #c2410c; border-color: #fed7aa; }

/* ── BUTTONS ─────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .01em;
  padding: 11px 22px;
  border-radius: var(--radius);
  transition: all .18s ease;
  border: 1.5px solid transparent;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
}
.btn svg { width: 14px; height: 14px; flex-shrink: 0; }

.btn-dark {
  background: var(--ink);
  color: var(--white);
  border-color: var(--ink);
}
.btn-dark:hover { background: var(--ink-80); border-color: var(--ink-80); }

.btn-outline {
  background: transparent;
  color: var(--ink-60);
  border-color: var(--rule-2);
}
.btn-outline:hover { border-color: var(--ink-60); color: var(--ink); }

.btn-cta-white {
  display: inline-block;
  background: var(--white);
  color: var(--ink);
  border: none;
  border-radius: var(--radius);
  padding: 13px 26px;
  font-size: 13px;
  font-family: var(--sans);
  font-weight: 700;
  cursor: pointer;
  transition: background .15s;
  white-space: nowrap;
  flex-shrink: 0;
}
.btn-cta-white:hover { background: var(--surface-2); }

/* ── STATS ROW ───────────────────────────────────────── */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1.5px solid var(--rule);
  margin-top: 60px;
  padding-top: 44px;
}
.stat-item { padding-right: 24px; }
.stat-item + .stat-item {
  padding-left: 24px;
  border-left: 1.5px solid var(--rule);
}
.stat-val {
  font-family: var(--serif);
  font-size: clamp(24px, 2.6vw, 36px);
  font-weight: 300;
  color: var(--ink);
  letter-spacing: -.025em;
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label {
  font-size: 12px;
  font-weight: 400;
  color: var(--ink-60);
  line-height: 1.5;
}

/* ── NOTICE ──────────────────────────────────────────── */
.notice {
  background: var(--surface);
  border: 1.5px solid var(--rule);
  border-radius: var(--radius);
  padding: 14px 18px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.notice-icon {
  font-size: 10px;
  font-weight: 700;
  font-family: monospace;
  color: var(--ink-40);
  white-space: nowrap;
  padding-top: 2px;
  flex-shrink: 0;
  letter-spacing: .04em;
}
.notice p {
  font-size: 13px;
  font-weight: 400;
  line-height: 1.7;
  color: var(--ink-60);
}
.notice p strong { font-weight: 600; color: var(--ink-80); }

/* ── WARN STRIP ──────────────────────────────────────── */
.warn-strip {
  background: #fffbeb;
  border: 1.5px solid #fde68a;
  border-radius: var(--radius);
  padding: 16px 20px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.warn-strip p { font-size: 14px; font-weight: 400; line-height: 1.7; color: #78350f; }
.warn-strip p strong { font-weight: 700; color: #92400e; }

/* ── CARDS ───────────────────────────────────────────── */
.card {
  background: var(--white);
  border: 1.5px solid var(--rule);
  border-radius: var(--radius-lg);
  padding: 28px;
}
.card-off {
  background: var(--surface);
  border: 1.5px solid var(--rule);
  border-radius: var(--radius-lg);
  padding: 28px;
}
.card.accent-top { border-top: 2.5px solid var(--ink); }

/* ── DASHBOARD ───────────────────────────────────────── */
.dash {
  background: var(--white);
  border: 1.5px solid var(--rule);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.dash-header {
  padding: 14px 20px;
  border-bottom: 1.5px solid var(--rule);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--surface);
}
.dash-header-label {
  font-size: 10px;
  font-weight: 700;
  color: var(--ink-60);
  letter-spacing: .1em;
  font-family: monospace;
}
.dash-header-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  color: var(--ink-40);
}
.dash-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--ink-20);
}

/* ── DASHBOARD DISCLAIMER (prominent) ───────────────── */
.dash-disclaimer {
  padding: 12px 20px;
  background: #fffbeb;
  border-bottom: 1.5px solid #fde68a;
  display: flex;
  align-items: center;
  gap: 8px;
}
.dash-disclaimer-icon {
  font-size: 13px;
  flex-shrink: 0;
}
.dash-disclaimer p {
  font-size: 11px;
  font-weight: 600;
  color: #92400e;
  letter-spacing: .02em;
  line-height: 1.4;
}

.dash-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 13px 20px;
  border-bottom: 1px solid var(--rule);
  background: var(--white);
}
.dash-row:last-of-type { border-bottom: none; }
.dash-label { font-size: 13px; font-weight: 400; color: var(--ink-60); }
.dash-val { font-size: 13px; font-weight: 600; color: var(--ink); font-variant-numeric: tabular-nums; }
.dash-val.pos { color: #15803d; }
.dash-val.neu { color: #d97706; }
.dash-footer {
  padding: 10px 20px;
  border-top: 1.5px solid var(--rule);
  font-size: 10px;
  font-weight: 600;
  font-family: monospace;
  color: var(--ink-40);
  text-align: center;
  letter-spacing: .06em;
  background: var(--surface);
}

/* ── STEPS ───────────────────────────────────────────── */
.steps { list-style: none; }
.step-item {
  display: flex;
  gap: 20px;
  padding: 22px 0;
  border-bottom: 1.5px solid var(--rule);
}
.step-item:last-child { border-bottom: none; }
.step-num {
  font-size: 11px;
  font-weight: 700;
  color: var(--ink-20);
  min-width: 28px;
  padding-top: 3px;
  letter-spacing: .04em;
  flex-shrink: 0;
  font-family: monospace;
}
.step-body h4 {
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 7px;
  display: flex;
  align-items: center;
  gap: 9px;
  flex-wrap: wrap;
  line-height: 1.35;
}
.step-body p {
  font-size: 14px;
  font-weight: 400;
  color: var(--ink-60);
  line-height: 1.75;
}

/* ── CTA STRIP ───────────────────────────────────────── */
.cta-strip {
  background: var(--ink);
  border-radius: var(--radius-xl);
  padding: 48px 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.cta-strip h3 {
  font-family: var(--serif);
  font-size: clamp(22px, 2.4vw, 30px);
  font-weight: 300;
  color: var(--white);
  margin-bottom: 6px;
  letter-spacing: -.02em;
  line-height: 1.2;
}
.cta-strip p {
  font-size: 14px;
  font-weight: 400;
  color: rgba(255,255,255,.5);
}

/* ── LANE CARDS ──────────────────────────────────────── */
.lane-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.lane {
  background: var(--white);
  border: 1.5px solid var(--rule);
  border-radius: var(--radius-lg);
  padding: 26px;
  position: relative;
}
.lane.featured { border-color: var(--ink); border-width: 2px; }
.lane-num {
  font-family: var(--serif);
  font-size: 42px;
  font-weight: 300;
  font-style: italic;
  color: var(--rule-2);
  position: absolute;
  top: 18px;
  right: 22px;
  line-height: 1;
  pointer-events: none;
}
.lane-eyebrow {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ink-40);
  margin-bottom: 8px;
  font-family: monospace;
}
.lane-title {
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 10px;
  line-height: 1.3;
}
.lane-desc {
  font-size: 13px;
  font-weight: 400;
  color: var(--ink-60);
  line-height: 1.65;
}
.lane-meta {
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1.5px solid var(--rule);
}
.lane-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 9px;
  font-size: 12px;
}
.lane-row:last-child { margin-bottom: 0; }
.lane-key { color: var(--ink-40); font-weight: 400; }
.lane-val {
  color: var(--ink-80);
  font-weight: 600;
  font-family: monospace;
  font-size: 11px;
  letter-spacing: .02em;
}

/* ── DATA TABLE ──────────────────────────────────────── */
.data-table { width: 100%; border-collapse: collapse; }
.data-table thead th {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--ink-40);
  padding: 12px 18px;
  text-align: left;
  border-bottom: 1.5px solid var(--rule);
  background: var(--surface);
  font-family: monospace;
}
.data-table tbody td {
  padding: 14px 18px;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--ink-60);
  border-bottom: 1px solid var(--rule);
  vertical-align: top;
}
.data-table tbody td:first-child { font-weight: 600; color: var(--ink-80); }
.data-table tbody tr:last-child td { border-bottom: none; }
.data-table tbody tr:hover td { background: var(--surface); }

/* ── CATEGORY GRID ───────────────────────────────────── */
.cat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.cat {
  background: var(--white);
  border: 1.5px solid var(--rule);
  border-radius: var(--radius-lg);
  padding: 24px;
  position: relative;
  transition: border-color .15s, box-shadow .15s;
  display: flex;
  flex-direction: column;
}
.cat:hover { border-color: var(--rule-2); box-shadow: var(--shadow-sm); }
.cat.future { border-color: var(--ink); border-width: 2px; }
.cat-future-badge { position: absolute; top: 14px; right: 14px; }
.cat-icon { font-size: 28px; margin-bottom: 14px; display: block; }
.cat-header { display: flex; align-items: center; gap: 8px; margin-bottom: 4px; }
.cat-header h3 {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 0;
  line-height: 1.3;
}
.cat-desc {
  font-size: 12px;
  font-weight: 400;
  color: var(--ink-60);
  line-height: 1.65;
  margin-bottom: 0;
  flex: 1;
}
.cat-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--rule);
  border-radius: var(--radius);
  overflow: hidden;
  margin-top: 18px;
}
.cat-metric {
  background: var(--surface);
  padding: 9px 6px;
  text-align: center;
}
.cat-metric-lbl {
  font-size: 9px;
  font-weight: 700;
  color: var(--ink-40);
  margin-bottom: 3px;
  letter-spacing: .06em;
  text-transform: uppercase;
  font-family: monospace;
}
.cat-metric-val {
  font-size: 11px;
  font-weight: 700;
  color: var(--ink-80);
}

/* ── ROADMAP ─────────────────────────────────────────── */
.roadmap-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.roadmap-card {
  background: var(--white);
  border: 1.5px solid var(--rule);
  border-radius: var(--radius-lg);
  padding: 24px;
}
.roadmap-q {
  font-family: var(--serif);
  font-size: 52px;
  font-weight: 300;
  font-style: italic;
  color: var(--rule-2);
  line-height: 1;
  margin-bottom: 2px;
}
.roadmap-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--ink-40);
  margin-bottom: 18px;
  font-family: monospace;
}
.roadmap-items { list-style: none; }
.roadmap-item {
  display: flex;
  gap: 8px;
  font-size: 12px;
  font-weight: 400;
  color: var(--ink-60);
  line-height: 1.55;
  padding: 6px 0;
  border-bottom: 1px solid var(--rule);
}
.roadmap-item:last-child { border-bottom: none; }
.roadmap-item::before {
  content: '/';
  color: var(--ink-20);
  flex-shrink: 0;
  font-family: monospace;
}

/* ── TIMELINE ────────────────────────────────────────── */
.timeline-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.timeline-card {
  background: var(--white);
  border: 1.5px solid var(--rule);
  border-radius: var(--radius-lg);
  padding: 24px;
}
.timeline-hour {
  font-family: var(--serif);
  font-size: 44px;
  font-weight: 300;
  font-style: italic;
  color: var(--rule-2);
  line-height: 1;
  margin-bottom: 2px;
}
.timeline-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--ink-40);
  margin-bottom: 12px;
  font-family: monospace;
}
.timeline-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 8px;
  line-height: 1.3;
}
.timeline-desc {
  font-size: 12px;
  font-weight: 400;
  color: var(--ink-60);
  line-height: 1.65;
}

/* ── THESIS / PRINCIPLE CARDS ────────────────────────── */
.thesis-card {
  background: var(--white);
  border: 1.5px solid var(--rule);
  border-radius: var(--radius-lg);
  padding: 28px;
}
.thesis-num {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--ink-20);
  margin-bottom: 14px;
  font-family: monospace;
}
.principle-card {
  background: var(--white);
  border: 1.5px solid var(--rule);
  border-radius: var(--radius-lg);
  padding: 28px;
  position: relative;
  overflow: hidden;
}
.principle-card::after {
  content: attr(data-num);
  position: absolute;
  bottom: -10px;
  right: 16px;
  font-family: var(--serif);
  font-size: 72px;
  font-weight: 300;
  font-style: italic;
  color: var(--surface);
  line-height: 1;
  pointer-events: none;
}
.principle-sub {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--ink-40);
  margin-bottom: 10px;
  font-family: monospace;
}
.principle-title {
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 10px;
  line-height: 1.35;
}

/* ── INVEST CTA ──────────────────────────────────────── */
.invest-cta {
  background: var(--surface);
  border: 1.5px solid var(--rule);
  border-radius: var(--radius-xl);
  padding: 52px;
  text-align: center;
}

/* ── COMPLIANCE LIST ─────────────────────────────────── */
.compliance-list { list-style: none; }
.compliance-item {
  display: flex;
  gap: 10px;
  padding: 9px 0;
  border-bottom: 1px solid var(--rule);
  font-size: 13px;
  font-weight: 400;
  color: var(--ink-60);
  line-height: 1.5;
}
.compliance-item:last-child { border-bottom: none; }
.compliance-mark { color: var(--ink-20); flex-shrink: 0; }

/* ── CONTACT ─────────────────────────────────────────── */
.contact-item {
  display: flex;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1.5px solid var(--rule);
}
.contact-item:last-child { border-bottom: none; }
.contact-icon {
  width: 38px;
  height: 38px;
  border-radius: var(--radius);
  border: 1.5px solid var(--rule);
  background: var(--surface);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  color: var(--ink-40);
  flex-shrink: 0;
  letter-spacing: .03em;
  font-family: monospace;
}
.contact-lbl {
  font-size: 10px;
  font-weight: 700;
  color: var(--ink-40);
  margin-bottom: 3px;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-family: monospace;
}
.contact-val { font-size: 15px; font-weight: 600; color: var(--ink); }
.contact-sub { font-size: 12px; font-weight: 400; color: var(--ink-40); margin-top: 2px; }

/* ── FORM ────────────────────────────────────────────── */
.form-group { margin-bottom: 18px; }
.form-label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--ink-60);
  margin-bottom: 7px;
  font-family: monospace;
}
.form-input, .form-select, .form-textarea {
  width: 100%;
  background: var(--white);
  border: 1.5px solid var(--rule);
  border-radius: var(--radius);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 400;
  padding: 12px 15px;
  outline: none;
  transition: border-color .15s, box-shadow .15s;
  min-height: 46px;
  appearance: none;
  -webkit-appearance: none;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--ink-60);
  box-shadow: 0 0 0 3px rgba(14,13,12,.06);
}
.form-input::placeholder, .form-textarea::placeholder { color: var(--ink-20); }
.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='none' stroke='%238c8880' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}
.form-textarea { resize: vertical; min-height: 130px; line-height: 1.65; }
.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 0; }

/* ── SUCCESS STATE ───────────────────────────────────── */
.success-state { text-align: center; padding: 60px 0; }
.success-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--surface);
  border: 1.5px solid var(--rule);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 22px;
  color: var(--ink-60);
}
.success-state h3 {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 300;
  color: var(--ink);
  margin-bottom: 8px;
}
.success-state p { font-size: 14px; font-weight: 400; color: var(--ink-60); }

/* ── FOOTER ──────────────────────────────────────────── */
footer {
  border-top: 1.5px solid var(--rule);
  padding: 56px var(--pad) 40px;
  max-width: var(--max);
  margin: 0 auto;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-col-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--ink-40);
  margin-bottom: 14px;
  font-family: monospace;
}
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links a {
  font-size: 13px;
  font-weight: 400;
  color: var(--ink-60);
  transition: color .15s;
}
.footer-links a:hover { color: var(--ink); }
.footer-bottom {
  border-top: 1px solid var(--rule);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-copy { font-size: 12px; font-weight: 400; color: var(--ink-40); }

/* ── ANIMATIONS ──────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}
.anim-1 { animation: fadeUp .5s ease forwards; }
.anim-2 { animation: fadeUp .5s .08s ease both; }
.anim-3 { animation: fadeUp .5s .16s ease both; }
.anim-4 { animation: fadeUp .5s .24s ease both; }

/* ── RESPONSIVE ──────────────────────────────────────── */
@media (max-width: 1024px) {
  :root { --pad: 32px; }
  .cat-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 900px) {
  :root { --pad: 24px; }

  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }

  h1.display { font-size: 34px; }
  h2.title   { font-size: 26px; }

  .stats-row { grid-template-columns: 1fr 1fr; gap: 20px; padding-top: 32px; }
  .stat-item { padding-right: 0; }
  .stat-item + .stat-item { padding-left: 0; border-left: none; }

  .g2 { grid-template-columns: 1fr; }
  .g3 { grid-template-columns: 1fr 1fr; }
  .g4 { grid-template-columns: 1fr 1fr; }
  .sec-header { grid-template-columns: 1fr; gap: 14px; }

  .lane-grid  { grid-template-columns: 1fr; }
  .cat-grid   { grid-template-columns: 1fr 1fr; }
  .roadmap-grid   { grid-template-columns: 1fr 1fr; }
  .timeline-grid  { grid-template-columns: 1fr 1fr; }

  .form-row-2 { grid-template-columns: 1fr; }
  .cta-strip  { padding: 32px 28px; flex-direction: column; align-items: flex-start; }
  .invest-cta { padding: 36px 28px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; gap: 8px; align-items: flex-start; }

  .page-hero { padding: 52px var(--pad) 56px; }
}

@media (max-width: 560px) {
  :root { --pad: 18px; }
  h1.display { font-size: 30px; }
  h2.title   { font-size: 24px; }
  .stats-row { grid-template-columns: 1fr 1fr; gap: 14px; }
  .g3 { grid-template-columns: 1fr; }
  .cat-grid { grid-template-columns: 1fr; }
  .roadmap-grid  { grid-template-columns: 1fr; }
  .timeline-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .cta-strip { padding: 28px 22px; }
  .invest-cta { padding: 28px 22px; }
  .section { padding: 52px var(--pad); }
  .page-hero { padding: 40px var(--pad) 48px; }
}