/* ─── TOKENS ─────────────────────────────────────────────────────────────── */
:root {
  --bg:        #060E08;
  --bg-alt:    #070F09;
  --bg-deep:   #040A06;

  --g-900: #0B1C14;
  --g-800: #0E2A1C;
  --g-700: #1A3A2A;
  --g-600: #24543E;
  --g-500: #4A9170;
  --g-400: #6AAE90;
  --g-300: #97C3AC;
  --g-200: #C5DDD0;
  --g-100: #E0EFE8;
  --g-050: #EBF5F0;

  --amber: #E8A838;

  --border:     rgba(74, 145, 112, 0.12);
  --border-mid: rgba(74, 145, 112, 0.22);
  --border-glow:rgba(74, 145, 112, 0.40);

  --text:       #EBF5F0;
  --text-soft:  rgba(235, 245, 240, 0.70);
  --text-muted: rgba(235, 245, 240, 0.42);
  --text-dim:   rgba(235, 245, 240, 0.22);

  --ff-sans: 'Instrument Sans', system-ui, sans-serif;
  --ff-mono: 'Space Mono', monospace;

  --r-xs: 4px;
  --r-sm: 6px;
  --r-md: 10px;
  --r-lg: 14px;
  --r-xl: 18px;
  --r-2xl:24px;

  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --max-w: 1080px;
  --section-pad: 130px;

  /* Alternating section transparency — stars visible through both */
  --sec-light: rgba(4, 10, 6, 0.14);  /* odd sections — stars clearly visible */
  --sec-dark:  rgba(4, 10, 6, 0.64);  /* even sections — stars faintly visible */
}

/* ─── RESET ──────────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; background: var(--bg); }
body {
  font-family: var(--ff-sans);
  background: transparent;
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  line-height: 1.6;
}
img { display: block; max-width: 100%; }
a   { color: inherit; text-decoration: none; }
ul  { list-style: none; }

/* ─── NAV ────────────────────────────────────────────────────────────────── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: 60px;
  display: flex;
  align-items: center;
  padding: 0 40px;
  background: rgba(4, 10, 6, 0.80);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 0.5px solid var(--border);
}

.nav-tagline {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--ff-sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: var(--g-200);
  white-space: nowrap;
  pointer-events: none;
}

.nav-logo { display: flex; align-items: center; opacity: 0.9; transition: opacity 180ms var(--ease); }
.nav-logo:hover { opacity: 1; }

.nav-right { margin-left: auto; display: flex; align-items: center; gap: 28px; }

nav a.nav-link {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: -0.01em;
  transition: color 180ms var(--ease);
}
nav a.nav-link:hover { color: var(--text-soft); }

.btn-nav {
  display: inline-flex;
  align-items: center;
  height: 30px;
  padding: 0 14px;
  border-radius: var(--r-sm);
  border: 0.5px solid var(--border-mid);
  background: rgba(74, 145, 112, 0.10);
  color: var(--g-300);
  font-size: 12px;
  font-weight: 600;
  font-family: var(--ff-sans);
  letter-spacing: 0.01em;
  text-decoration: none;
  transition: all 180ms var(--ease);
}
.btn-nav:hover {
  background: rgba(74, 145, 112, 0.18);
  color: var(--g-100);
  border-color: var(--border-glow);
}

/* ─── HERO ───────────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  overflow: hidden;
  padding: 112px 60px 88px;
  background: var(--bg-deep);
}

#bg-canvas {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.48;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: radial-gradient(ellipse 46% 88% at 78% 50%, transparent 44%, rgba(4,10,6,0.50) 100%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: var(--max-w);
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.hero-left { /* text column — left-aligned by default */ }

.hero-right {
  position: relative;
  aspect-ratio: 1 / 1;
  width: 100%;
  max-width: 520px;
  justify-self: end;
}

#exchange-viz {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: var(--r-xl);
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 28px;
  padding: 0 14px;
  border-radius: 100px;
  border: 0.5px solid rgba(74, 145, 112, 0.30);
  background: rgba(74, 145, 112, 0.08);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: var(--g-300);
  margin-bottom: 30px;
  font-family: var(--ff-sans);
  white-space: nowrap;
}
.hero-eyebrow::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--g-500);
  box-shadow: 0 0 8px var(--g-500);
  animation: pulse-dot 2.4s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1;   box-shadow: 0 0 8px var(--g-500); }
  50%       { opacity: 0.4; box-shadow: 0 0 3px var(--g-500); }
}

.hero-mark {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 44px;
}
.hero-wordmark {
  height: 96px;
  width: auto;
  animation: hero-breathe 4s ease-in-out infinite;
  filter: drop-shadow(0 0 12px rgba(255,255,255,0.20));
}
@keyframes hero-breathe {
  0%, 100% { filter: drop-shadow(0 0 10px rgba(255,255,255,0.18)); }
  50%       { filter: drop-shadow(0 0 28px rgba(255,255,255,0.42)); }
}

.hero h1 {
  font-size: clamp(34px, 4.8vw, 64px);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.02;
  color: var(--text);
  margin-bottom: 24px;
}
.hero h1 em { font-style: normal; color: var(--g-400); }

.hero-sub {
  font-size: clamp(14px, 1.55vw, 17px);
  color: var(--text-muted);
  line-height: 1.68;
  letter-spacing: -0.01em;
  max-width: 500px;
  margin: 0 0 44px;
}

.hero-ctas {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  flex-wrap: wrap;
}

.scroll-hint {
  position: absolute;
  bottom: 28px; left: 50%; transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
  color: var(--text-dim);
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-family: var(--ff-mono);
}
.scroll-hint-line {
  width: 1px;
  height: 36px;
  background: linear-gradient(to bottom, rgba(74,145,112,0.5), transparent);
  animation: scroll-line 2s ease-in-out infinite;
}
@keyframes scroll-line {
  0%   { transform: scaleY(0); transform-origin: top; opacity: 0; }
  50%  { transform: scaleY(1); transform-origin: top; opacity: 1; }
  100% { transform: scaleY(1); transform-origin: bottom; opacity: 0; }
}

/* ─── BUTTONS ────────────────────────────────────────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  height: 50px;
  padding: 0 28px;
  border-radius: var(--r-md);
  background: var(--g-500);
  border: none;
  color: #050E07;
  font-size: 15px;
  font-weight: 700;
  font-family: var(--ff-sans);
  letter-spacing: -0.01em;
  text-decoration: none;
  transition: all 200ms var(--ease);
  box-shadow: 0 0 0 1px rgba(74,145,112,0.55),
              0 4px 20px rgba(74,145,112,0.35),
              0 1px 0 rgba(255,255,255,0.08) inset;
}
.btn-primary:hover {
  background: var(--g-400);
  color: #040A06;
  box-shadow: 0 0 0 1px rgba(106,174,144,0.80),
              0 8px 36px rgba(74,145,112,0.55),
              0 1px 0 rgba(255,255,255,0.12) inset;
  transform: translateY(-2px);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  height: 44px;
  padding: 0 24px;
  border-radius: var(--r-sm);
  background: transparent;
  border: 0.5px solid rgba(255,255,255,0.10);
  color: var(--text-muted);
  font-size: 14px;
  font-weight: 500;
  font-family: var(--ff-sans);
  letter-spacing: -0.01em;
  text-decoration: none;
  transition: all 180ms var(--ease);
}
.btn-ghost:hover {
  border-color: rgba(255,255,255,0.22);
  color: var(--text-soft);
}

/* ─── STATS BAR ──────────────────────────────────────────────────────────── */
.stats-bar {
  background: var(--sec-light);
  border-top:    0.5px solid var(--border);
  border-bottom: 0.5px solid var(--border);
  padding: 0 40px;
  display: flex;
  justify-content: center;
}
.stats-inner {
  max-width: var(--max-w);
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border-left:  1px solid var(--border);
  border-right: 1px solid var(--border);
}
.stat {
  background: rgba(4, 10, 6, 0.22);
  padding: 36px 28px;
  text-align: center;
}
.stat-num {
  font-family: var(--ff-mono);
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 700;
  letter-spacing: -0.04em;
  color: var(--g-500);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label {
  font-size: 12px;
  color: var(--text-muted);
  letter-spacing: -0.01em;
  line-height: 1.4;
}

/* ─── EXCHANGE DUALITY SECTION ───────────────────────────────────────────── */
.duality-section {
  padding: 90px 40px 100px;
  position: relative;
  overflow: hidden;
  background: var(--sec-dark);
  border-bottom: 0.5px solid var(--border);
}
.duality-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 90% at 50% 50%, rgba(74,145,112,0.07) 0%, transparent 65%);
  pointer-events: none;
}

.duality-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 72px 1fr;
  align-items: center;
  position: relative;
}

/* Cards */
.duality-card {
  padding: 40px 36px 34px;
  border-radius: 18px;
  background: linear-gradient(155deg, rgba(14,32,20,0.97) 0%, rgba(7,16,10,0.99) 100%);
  border: 0.5px solid rgba(74,145,112,0.15);
  position: relative;
  overflow: hidden;
  transition: transform 550ms cubic-bezier(0.23,1,0.32,1),
              box-shadow 550ms cubic-bezier(0.23,1,0.32,1),
              border-color 400ms var(--ease);
}

/* Top accent shimmer */
.duality-card::before {
  content: '';
  position: absolute;
  top: 0; left: 28px; right: 28px; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(74,145,112,0.55), transparent);
  border-radius: 1px;
}
/* Subtle inner corner glow */
.duality-card::after {
  content: '';
  position: absolute;
  inset: 0; border-radius: 18px;
  background: radial-gradient(ellipse 60% 40% at 50% 0%, rgba(74,145,112,0.06) 0%, transparent 60%);
  pointer-events: none;
}

.duality-card--enterprise { transform: rotate(2.5deg); transform-origin: 50% 55%; }
.duality-card--provider   { transform: rotate(-2.5deg); transform-origin: 50% 55%; }
.duality-card:hover {
  transform: rotate(0deg) translateY(-8px);
  box-shadow: 0 40px 80px rgba(0,0,0,0.55), 0 0 0 0.5px rgba(74,145,112,0.28);
  border-color: rgba(74,145,112,0.28);
}

.duality-eyebrow {
  display: inline-block;
  font-family: var(--ff-sans);
  font-size: 10px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--g-500);
  background: rgba(74,145,112,0.10);
  border: 0.5px solid rgba(74,145,112,0.22);
  border-radius: 4px;
  padding: 3px 9px;
  margin-bottom: 20px;
}

.duality-headline {
  font-size: clamp(26px, 2.8vw, 34px);
  font-weight: 700; line-height: 1.1;
  color: var(--g-050);
  margin-bottom: 14px;
  letter-spacing: -0.01em;
}
.duality-headline em { font-style: italic; color: var(--g-200); }

.duality-body {
  font-size: 14px; line-height: 1.72;
  color: var(--text-muted);
  margin-bottom: 28px;
}

/* Metrics list */
.duality-metrics {
  list-style: none; margin: 0; padding: 0;
  display: flex; flex-direction: column;
  border-top: 0.5px solid rgba(74,145,112,0.10);
}
.duality-metrics li {
  display: flex; align-items: center; gap: 10px;
  padding: 9px 0;
  border-bottom: 0.5px solid rgba(74,145,112,0.07);
  font-size: 12px;
}
.duality-metrics li:last-child { border-bottom: none; }
.dm-dot {
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--g-600); flex-shrink: 0;
}
.dm-label { color: var(--text-muted); flex: 1; }
.dm-val {
  font-family: var(--ff-mono); font-size: 11px;
  color: var(--text-dim); text-align: right; white-space: nowrap;
}
.dm-val.ok { color: var(--g-400); }

/* Centre pivot */
.duality-pivot {
  display: flex; flex-direction: column;
  align-items: center; gap: 14px;
  z-index: 2;
}
.duality-k {
  width: 52px; height: 52px; border-radius: 50%;
  background: rgba(6,14,8,0.98);
  border: 0.5px solid rgba(74,145,112,0.35);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0 0 6px rgba(74,145,112,0.05),
              0 0 30px rgba(74,145,112,0.18);
}
.duality-k img { opacity: 0.9; }
.duality-arrow {
  color: rgba(74,145,112,0.38);
  display: flex; align-items: center; justify-content: center;
  width: 28px; height: 20px;
  transition: color 300ms var(--ease);
}
.duality-pivot:hover .duality-arrow { color: rgba(74,145,112,0.65); }

/* Responsive */
@media (max-width: 800px) {
  .duality-section { padding: 72px 28px 80px; }
  .duality-inner { grid-template-columns: 1fr; gap: 24px; }
  .duality-card--enterprise,
  .duality-card--provider { transform: none; }
  .duality-pivot { flex-direction: row; justify-content: center; }
}

/* ─── FEATURE SECTIONS ───────────────────────────────────────────────────── */
.feature-section {
  padding: var(--section-pad) 40px;
  position: relative;
  border-bottom: 0.5px solid var(--border);
  background: var(--sec-light);
}
.feature-alt { background: var(--sec-dark); }

.feature-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 88px;
  align-items: center;
}
.feature-grid.reverse .feature-text   { order: 2; }
.feature-grid.reverse .feature-visual { order: 1; }

/* Text side */
.feature-eyebrow {
  display: block;
  font-family: var(--ff-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--g-500);
  margin-bottom: 18px;
}
.feature-text h2 {
  font-size: clamp(28px, 3.2vw, 46px);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.07;
  color: var(--text);
  margin-bottom: 20px;
}
.feature-text p {
  font-size: 15.5px;
  line-height: 1.72;
  color: var(--text-muted);
  max-width: 420px;
  margin-bottom: 32px;
}
.feature-list {
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.feature-list li {
  font-size: 14px;
  color: var(--g-200);
  padding-left: 18px;
  position: relative;
  line-height: 1.5;
}
.feature-list li::before {
  content: '';
  position: absolute;
  left: 0; top: 7px;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--g-500);
}

/* Feature callout — inline highlight block beneath the bullet list */
.feature-callout {
  margin-top: 24px;
  padding: 18px 20px;
  border-radius: var(--r-md);
  border: 0.5px solid rgba(74,145,112,0.22);
  background: rgba(74,145,112,0.06);
  position: relative;
}
.feature-callout-label {
  display: inline-block;
  font-family: var(--ff-mono);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--g-500);
  background: rgba(74,145,112,0.12);
  border: 0.5px solid rgba(74,145,112,0.28);
  border-radius: var(--r-xs);
  padding: 2px 7px;
  margin-bottom: 10px;
}
.feature-callout p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.55;
  margin: 0;
}

/* ─── MOCK PANEL (product UI hints) ─────────────────────────────────────── */
.feature-visual { position: relative; }

/* Ambient glow behind panel */
.feature-visual::before {
  content: '';
  position: absolute;
  inset: -30px;
  background: radial-gradient(ellipse 80% 70% at 50% 50%, rgba(74,145,112,0.06) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.mock {
  position: relative;
  z-index: 1;
  background: #05100A;
  border: 0.5px solid var(--border-mid);
  border-radius: var(--r-xl);
  padding: 22px;
  font-size: 13px;
  /* Top shimmer line */
  overflow: hidden;
}
.mock::after {
  content: '';
  position: absolute;
  top: 0; left: 12%; right: 12%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(74,145,112,0.45), transparent);
}

/* Mock: header row */
.mock-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 0.5px solid var(--border);
}
.mock-title {
  font-family: var(--ff-mono);
  font-size: 11px;
  color: var(--g-200);
  letter-spacing: 0.04em;
}
.mock-badge {
  font-family: var(--ff-sans);
  font-size: 11px;
  font-weight: 500;
  color: var(--text-muted);
  background: rgba(74,145,112,0.08);
  border: 0.5px solid var(--border);
  padding: 3px 9px;
  border-radius: 100px;
  letter-spacing: 0.01em;
}
.mock-badge.green   { color: var(--g-300); border-color: rgba(74,145,112,0.28); }
.mock-badge.amber   { color: var(--amber); border-color: rgba(232,168,56,0.28); background: rgba(232,168,56,0.06); }
.mock-badge.running { color: var(--g-400); border-color: rgba(74,145,112,0.32); }

/* Mock: shared atoms */
.mock-divider { height: 0.5px; background: var(--border); margin: 14px 0; }

.mock-footer-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 2px;
}
.mock-footer-label { font-size: 12px; color: var(--text-muted); }
.mock-footer-val   { font-family: var(--ff-mono); font-size: 12px; color: var(--g-300); }

/* ── SPEND mock ───────────────────────────────────────────────────── */
.mock-spend-rows { display: flex; flex-direction: column; gap: 9px; }

.mock-spend-row {
  display: grid;
  grid-template-columns: 80px 1fr 58px;
  align-items: center;
  gap: 10px;
}
.mock-row-label  { font-size: 12px; color: var(--text-muted); white-space: nowrap; }
.mock-bar-wrap   { height: 5px; background: rgba(74,145,112,0.10); border-radius: 3px; overflow: hidden; }
.mock-bar        { height: 100%; background: linear-gradient(90deg, var(--g-600), var(--g-400)); border-radius: 3px; }
.mock-row-amount { font-family: var(--ff-mono); font-size: 11px; color: var(--g-200); text-align: right; }

.mock-split-row {
  display: flex;
  gap: 14px;
  margin: 14px 0 10px;
}
.mock-split-item  { display: flex; align-items: center; gap: 6px; }
.mock-split-tag {
  font-family: var(--ff-sans);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 2px 7px;
  border-radius: var(--r-xs);
}
.mock-split-tag.capex { background: rgba(74,145,112,0.14); color: var(--g-300); }
.mock-split-tag.opex  { background: rgba(197,221,208,0.09); color: var(--g-200); }
.mock-split-val { font-family: var(--ff-mono); font-size: 12px; color: var(--text); }

.mock-alert {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 11px;
  color: var(--amber);
  background: rgba(232,168,56,0.07);
  border: 0.5px solid rgba(232,168,56,0.18);
  border-radius: var(--r-sm);
  padding: 8px 11px;
  margin-top: 4px;
}

/* ── KEYS mock ────────────────────────────────────────────────────── */
.mock-table { display: flex; flex-direction: column; }
.mock-table-row {
  display: grid;
  grid-template-columns: 1fr 90px 68px;
  align-items: center;
  padding: 8px 4px;
  border-bottom: 0.5px solid rgba(74,145,112,0.07);
  gap: 8px;
}
.mock-table-row:last-child { border-bottom: none; }
.mock-table-row.hdr span  {
  font-family: var(--ff-sans);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--text-dim);
}
.mock-key    { font-family: var(--ff-mono); font-size: 11px; color: var(--g-300); }
.mock-team   { font-size: 12px; color: var(--text-muted); }
.mock-status { font-size: 12px; font-weight: 500; }
.mock-status.active  { color: var(--g-400); }
.mock-status.rotating{ color: var(--amber); }

/* ── TEAMS & BUDGETS mock ────────────────────────────────────────── */
.mock-budget-bar-track { flex: 1; height: 5px; background: rgba(74,145,112,0.10); border-radius: 3px; overflow: hidden; }
.mock-budget-bar-fill  { height: 100%; border-radius: 3px; }
.mock-budget-bar-fill.ok   { background: linear-gradient(90deg, var(--g-600), var(--g-400)); }
.mock-budget-bar-fill.warn { background: linear-gradient(90deg, #c0651a, #e8a838); }

/* Org summary banner */
.mock-org-summary {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  background: rgba(74,145,112,0.05);
  border: 0.5px solid var(--border);
  border-radius: var(--r-sm);
  padding: 12px 14px;
}
.mock-org-label {
  font-family: var(--ff-sans);
  font-size: 9px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--text-dim);
  margin-bottom: 4px;
}
.mock-org-amount {
  font-family: var(--ff-mono);
  font-size: 17px; font-weight: 600;
  color: var(--g-100); line-height: 1.2;
}
.mock-org-cap  { font-size: 11px; color: var(--text-muted); font-weight: 400; }
.mock-org-meta { font-size: 9px; color: var(--text-dim); margin-top: 2px; }
.mock-org-pacing { display: flex; flex-direction: column; justify-content: center; }
.mock-org-pace-text { font-size: 11px; color: var(--text-muted); margin-top: 4px; line-height: 1.55; }
.mock-saving { color: var(--g-400); font-weight: 600; }

/* Team rows */
.mock-team-table { display: flex; flex-direction: column; }
.mock-team-hdr {
  display: grid;
  grid-template-columns: 26px 1fr 110px 72px;
  gap: 8px;
  padding: 4px 2px 7px;
  font-family: var(--ff-sans);
  font-size: 9px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.07em;
  color: var(--text-dim);
  border-bottom: 0.5px solid var(--border);
  margin-bottom: 2px;
}
.mock-team-row {
  display: grid;
  grid-template-columns: 26px 1fr 110px 72px;
  gap: 8px;
  align-items: center;
  padding: 7px 2px;
  border-bottom: 0.5px solid rgba(74,145,112,0.07);
}
.mock-team-row:last-child { border-bottom: none; }
.mock-av {
  width: 22px; height: 22px; border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--ff-sans); font-size: 10px; font-weight: 700;
  color: rgba(255,255,255,0.88); flex-shrink: 0;
}
.mock-tn { font-size: 12px; font-weight: 600; color: var(--g-100); }
.mock-tl { font-size: 10px; color: var(--text-dim); margin-top: 1px; }
.mock-tb span { font-family: var(--ff-mono); font-size: 11px; color: var(--text-muted); }
.mock-tb em { color: var(--text-dim); font-style: normal; }
.mock-pill {
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 10px; font-weight: 500;
  padding: 2px 8px; border-radius: 20px;
  background: rgba(74,145,112,0.08); color: var(--text-muted);
  white-space: nowrap;
}
.mock-pill.ok   { background: rgba(74,145,112,0.14); color: var(--g-400); }
.mock-pill.warn { background: rgba(192,101,26,0.15); color: #e8a838; }

/* ── OBSERVABILITY Capex/Opex hero cards ──────────────────────────── */
.mock-cx-split {
  display: grid; grid-template-columns: 1fr 1fr; gap: 10px;
  margin-bottom: 4px;
}
.mock-cx-card {
  background: rgba(74,145,112,0.06);
  border: 0.5px solid var(--border);
  border-radius: var(--r-sm);
  padding: 12px 13px;
}
.mock-cx-tag {
  display: inline-block;
  font-family: var(--ff-sans);
  font-size: 9px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.08em;
  padding: 2px 7px; border-radius: 3px;
  margin-bottom: 7px;
}
.mock-cx-tag.capex { background: rgba(59,79,160,0.20); color: #8899dd; }
.mock-cx-tag.opex  { background: rgba(74,145,112,0.18); color: var(--g-400); }
.mock-cx-amount {
  font-family: var(--ff-mono); font-size: 17px; font-weight: 600;
  color: var(--g-100); line-height: 1.1; margin-bottom: 4px;
}
.mock-cx-meta { font-size: 9px; color: var(--text-dim); margin-bottom: 7px; }
.mock-cx-bar { height: 4px; background: rgba(74,145,112,0.10); border-radius: 2px; overflow: hidden; }
.mock-cx-bar-fill { height: 100%; border-radius: 2px; }
.mock-cx-bar-fill.capex { background: linear-gradient(90deg, #3b4fa0, #6677cc); }
.mock-cx-bar-fill.opex  { background: linear-gradient(90deg, var(--g-600), var(--g-400)); }

/* ── QUALITY / EVALS mock ─────────────────────────────────────────── */
.mock-qa-hero {
  display: grid; grid-template-columns: 1fr auto;
  gap: 12px; align-items: center;
}
.mock-qa-big-score {
  font-family: var(--ff-mono); font-size: 26px; font-weight: 600;
  color: var(--g-200); line-height: 1; margin: 4px 0;
}
.mock-qa-sparkline { display: flex; flex-direction: column; align-items: flex-end; gap: 4px; }
.mock-qa-trend-label { font-size: 9px; color: var(--g-500); font-family: var(--ff-sans); }
.mock-qual-table { display: flex; flex-direction: column; }
.mock-qual-hdr {
  display: grid; grid-template-columns: 1fr 1fr 48px;
  gap: 8px; padding: 4px 0 7px;
  font-family: var(--ff-sans); font-size: 9px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.07em;
  color: var(--text-dim);
  border-bottom: 0.5px solid var(--border);
}
.mock-qual-row {
  display: grid; grid-template-columns: 1fr 1fr 48px;
  gap: 8px; align-items: center;
  padding: 7px 0;
  border-bottom: 0.5px solid rgba(74,145,112,0.07);
}
.mock-qual-row:last-child { border-bottom: none; }
.mock-qual-bar-track { flex: 1; height: 4px; background: rgba(74,145,112,0.10); border-radius: 2px; overflow: hidden; }
.mock-qual-bar-fill  { height: 100%; border-radius: 2px; background: linear-gradient(90deg, var(--g-600), var(--g-400)); }
.mock-qual-score { font-family: var(--ff-mono); font-size: 11px; color: var(--g-400); text-align: right; }

/* ── OMS / ORDER BOOK mock ────────────────────────────────────────── */
.mock-oms-overview {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 12px; align-items: start;
  background: rgba(74,145,112,0.05);
  border: 0.5px solid var(--border);
  border-radius: var(--r-sm);
  padding: 11px 13px;
}
.mock-oms-trend-up {
  font-family: var(--ff-mono); font-size: 11px;
  color: var(--g-400); margin-top: 4px;
}
.mock-oms-book { display: flex; flex-direction: column; }
.mock-oms-hdr {
  display: grid; grid-template-columns: 1fr 64px 40px 56px;
  gap: 6px; padding: 4px 0 7px;
  font-family: var(--ff-sans); font-size: 9px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.07em;
  color: var(--text-dim);
  border-bottom: 0.5px solid var(--border);
}
.mock-oms-row {
  display: grid; grid-template-columns: 1fr 64px 40px 56px;
  gap: 6px; align-items: center;
  padding: 7px 0;
  border-bottom: 0.5px solid rgba(74,145,112,0.07);
}
.mock-oms-row:last-child { border-bottom: none; }
.mock-oms-row.best { background: rgba(74,145,112,0.04); border-radius: 4px; padding: 7px 4px; }
.mock-oms-bar-wrap { height: 4px; background: rgba(74,145,112,0.10); border-radius: 2px; overflow: hidden; }
.mock-oms-bar-fill { height: 100%; border-radius: 2px; background: linear-gradient(90deg, var(--g-600), var(--g-400)); }
.mock-oms-bar-fill.warn { background: linear-gradient(90deg, #6b3e1a, #c07030); }
.mock-oms-price { font-family: var(--ff-mono); font-size: 10px; color: var(--text-muted); }
.mock-oms-rev { font-family: var(--ff-mono); font-size: 10px; color: var(--text-muted); text-align: right; }
.mock-oms-rev.ok   { color: var(--g-400); }
.mock-oms-rev.warn { color: var(--text-dim); font-size: 9px; }

/* ── HERO secondary paragraph ─────────────────────────────────────── */
.hero-sub--secondary {
  margin-top: 12px;
  font-size: clamp(13px, 1.5vw, 15px);
  color: var(--text-dim);
}

/* ── EXCHANGE mock ────────────────────────────────────────────────── */
.mock-model-table { display: flex; flex-direction: column; gap: 2px; }
.mock-model-row {
  display: grid;
  grid-template-columns: 1fr 76px 68px;
  align-items: center;
  padding: 8px 10px;
  border-radius: var(--r-sm);
  gap: 6px;
}
.mock-model-row.hdr span {
  font-family: var(--ff-sans);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--text-dim);
  padding: 0 2px;
}
.mock-model-row.best { background: rgba(74,145,112,0.09); border: 0.5px solid rgba(74,145,112,0.18); }
.mock-model-name { display: flex; align-items: center; gap: 7px; font-size: 13px; color: var(--g-100); }
.mock-dot { width: 5px; height: 5px; border-radius: 50%; background: rgba(74,145,112,0.3); flex-shrink: 0; }
.mock-dot.on { background: var(--g-500); }
.mock-model-row span.price { font-family: var(--ff-mono); font-size: 12px; color: var(--text-muted); }
.mock-latency { font-family: var(--ff-mono); font-size: 12px; color: var(--text-muted); }
.mock-latency.fast { color: var(--g-400); }

/* ── ROUTING mock ─────────────────────────────────────────────────── */
.mock-routing-table { display: flex; flex-direction: column; gap: 2px; }
.mock-routing-row {
  display: grid;
  grid-template-columns: 1fr 1fr 56px;
  align-items: center;
  padding: 8px 10px;
  border-radius: var(--r-sm);
  gap: 8px;
  font-size: 12px;
  color: var(--g-100);
}
.mock-routing-row.hdr span {
  font-family: var(--ff-sans);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--text-dim);
}
.mock-routing-row.active { background: rgba(74,145,112,0.09); border: 0.5px solid rgba(74,145,112,0.18); }
.mock-routing-model { font-family: var(--ff-mono); font-size: 12px; color: var(--text-muted); }
.mock-routing-status{ font-family: var(--ff-sans); font-size: 12px; font-weight: 500; color: var(--g-400); }

.mock-stat-callout {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-top: 2px;
}
.mock-stat-num   { font-family: var(--ff-mono); font-size: 20px; color: var(--text); letter-spacing: -0.03em; }
.mock-stat-label { font-size: 12px; color: var(--text-muted); }

/* ── DEADLINE mock ────────────────────────────────────────────────── */
.mock-task-name {
  font-size: 12.5px;
  color: var(--g-100);
  line-height: 1.45;
  font-style: italic;
  margin-bottom: 14px;
}
.mock-meta-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 7px;
  margin-bottom: 16px;
}
.mock-meta-cell {
  background: rgba(74,145,112,0.07);
  border: 0.5px solid rgba(74,145,112,0.12);
  border-radius: var(--r-sm);
  padding: 8px 10px;
}
.mock-meta-label { font-size: 10px; font-family: var(--ff-sans); font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: var(--text-dim); margin-bottom: 5px; }
.mock-meta-val   { font-family: var(--ff-mono); font-size: 12px; color: var(--g-300); }

.mock-progress-header { display: flex; justify-content: space-between; font-family: var(--ff-sans); font-size: 11px; font-weight: 500; color: var(--text-muted); margin-bottom: 6px; }
.mock-progress-track  { height: 5px; background: rgba(74,145,112,0.10); border-radius: 3px; overflow: hidden; }
.mock-progress-fill   { height: 100%; background: linear-gradient(90deg, var(--g-600), var(--g-400)); border-radius: 3px; }

/* ── ENTERPRISE mock ──────────────────────────────────────────────── */
.mock-deploy-cols {
  display: grid;
  grid-template-columns: 1fr 0.5px 1fr;
  gap: 0;
  margin-bottom: 14px;
}
.mock-deploy-col { padding: 8px 10px 10px; }
.mock-deploy-sep { background: var(--border); }
.mock-deploy-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--g-200);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.mock-deploy-items { display: flex; flex-direction: column; gap: 5px; }
.mock-deploy-item  { font-size: 12px; color: var(--text-muted); display: flex; align-items: center; gap: 6px; }
.mock-deploy-item::before {
  content: '';
  width: 3px; height: 3px;
  border-radius: 50%;
  background: var(--g-500);
  flex-shrink: 0;
}
.mock-cert-row { display: flex; gap: 6px; flex-wrap: wrap; }
.mock-cert {
  font-family: var(--ff-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--g-300);
  background: rgba(74,145,112,0.09);
  border: 0.5px solid rgba(74,145,112,0.20);
  padding: 4px 9px;
  border-radius: var(--r-xs);
}

/* ─── QUOTE SECTION ──────────────────────────────────────────────────────── */
.quote-section {
  background: var(--sec-light);
  border-top:    0.5px solid var(--border);
  border-bottom: 0.5px solid var(--border);
  padding: 110px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.quote-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 55% 80% at 50% 50%, rgba(74,145,112,0.10) 0%, transparent 70%);
  pointer-events: none;
}
.quote-mark {
  font-size: 88px;
  color: rgba(74,145,112,0.18);
  line-height: 0.6;
  font-family: Georgia, serif;
  display: block;
  margin-bottom: 28px;
  position: relative;
  z-index: 1;
}
.quote-text {
  font-size: clamp(18px, 2.6vw, 28px);
  font-weight: 600;
  letter-spacing: -0.03em;
  color: rgba(235,245,240,0.82);
  line-height: 1.35;
  max-width: 700px;
  margin: 0 auto 22px;
  position: relative;
  z-index: 1;
}
.quote-text em { font-style: normal; color: var(--g-300); }
.quote-attr {
  font-family: var(--ff-mono);
  font-size: 10px;
  color: var(--text-dim);
  letter-spacing: 0.07em;
  position: relative;
  z-index: 1;
}

/* ─── CTA SECTION ────────────────────────────────────────────────────────── */
.cta-section {
  padding: 120px 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--sec-dark);
}
.cta-card {
  max-width: 600px;
  width: 100%;
  background: var(--g-050);
  border-radius: var(--r-2xl);
  padding: 64px 56px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.cta-card h2 {
  font-size: clamp(26px, 3.5vw, 38px);
  font-weight: 700;
  letter-spacing: -0.04em;
  color: var(--g-900);
  margin-bottom: 14px;
  line-height: 1.1;
}
.cta-card p {
  font-size: 15px;
  color: var(--g-700);
  line-height: 1.62;
  margin-bottom: 36px;
}
.cta-row { display: flex; justify-content: center; }
.btn-cta-primary {
  display: inline-flex;
  align-items: center;
  height: 48px;
  padding: 0 30px;
  border-radius: var(--r-sm);
  background: var(--g-900);
  border: 0.5px solid rgba(74,145,112,0.28);
  color: var(--g-050);
  font-size: 14px;
  font-weight: 600;
  font-family: var(--ff-sans);
  letter-spacing: -0.01em;
  text-decoration: none;
  transition: all 180ms var(--ease);
}
.btn-cta-primary:hover {
  background: var(--g-700);
  color: var(--g-050);
  border-color: rgba(74,145,112,0.50);
  box-shadow: 0 4px 22px rgba(26,58,42,0.22);
  transform: translateY(-1px);
}

/* ─── FOOTER ─────────────────────────────────────────────────────────────── */
footer {
  border-top: 0.5px solid var(--border);
  padding: 32px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--bg-deep);
}
.footer-left { display: flex; align-items: center; gap: 22px; }
.footer-logo-text {
  font-size: 15px;
  font-family: var(--ff-sans);
  letter-spacing: -0.03em;
}
.footer-logo-text b { font-weight: 700; color: var(--g-400); }
.footer-copy { font-size: 11px; color: var(--text-dim); letter-spacing: -0.01em; }

.footer-right {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-left: auto;
}
.social-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px; height: 30px;
  border-radius: var(--r-sm);
  border: 0.5px solid rgba(74,145,112,0.14);
  color: var(--g-700);
  transition: all 180ms var(--ease);
}
.social-link:hover {
  color: var(--g-300);
  border-color: rgba(74,145,112,0.32);
  background: rgba(74,145,112,0.07);
}
.footer-contact {
  font-family: var(--ff-mono);
  font-size: 11px;
  color: var(--g-700);
  letter-spacing: 0.02em;
  transition: color 180ms var(--ease);
}
.footer-contact:hover { color: var(--g-300); }

/* ─── SCROLL REVEAL ──────────────────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.visible        { opacity: 1; transform: translateY(0); }
.reveal-delay-1        { transition-delay: 90ms; }
.reveal-delay-2        { transition-delay: 180ms; }
.reveal-delay-3        { transition-delay: 270ms; }

/* ─── RESPONSIVE ─────────────────────────────────────────────────────────── */
@media (max-width: 960px) {
  :root { --section-pad: 90px; }
  .hero { padding: 112px 40px 72px; }
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 44px;
  }
  .hero-right {
    max-width: 100%;
    aspect-ratio: 4 / 3;
    justify-self: stretch;
  }
  .hero h1 { font-size: clamp(32px, 5.5vw, 52px); }
  .feature-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .feature-grid.reverse .feature-text   { order: 1; }
  .feature-grid.reverse .feature-visual { order: 2; }
  .feature-text p { max-width: 100%; }
  .feature-section { padding: 90px 28px; }
}

@media (max-width: 768px) {
  nav { padding: 0 20px; }
  .nav-tagline { display: none; }
  nav .nav-right .nav-link { display: none; }
  .hero { padding: 100px 24px 64px; }
  .stats-bar { padding: 0 20px; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .cta-section { padding: 80px 20px; }
  .cta-card { padding: 48px 28px; }
  .quote-section { padding: 80px 24px; }
  footer { flex-direction: column; gap: 20px; align-items: flex-start; padding: 28px 24px; }
  .footer-right { margin-left: 0; }
  .footer-left  { gap: 14px; }
  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .hero-right { display: none; } /* hide viz on small phones, keep text full-width */
  .hero-eyebrow { font-size: 11px; white-space: normal; text-align: center; justify-content: center; }
  .hero-left { text-align: center; }
  .hero h1 { font-size: clamp(28px, 8vw, 36px); }
  .hero-sub { font-size: 14px; max-width: 100%; margin: 0 auto 40px; }
  .hero-ctas { justify-content: center; }
}

/* ─── INTEREST FORM ──────────────────────────────────────────────────────── */

/* The CTA card is already light (#EBF5F0) — inputs sit on that bg */
#interest-card {
  max-width: 580px;
  text-align: left;
}
#interest-card h2,
#interest-card p {
  text-align: left;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}
.form-field:last-of-type { margin-bottom: 0; }

.form-field label {
  font-size: 13px;
  font-weight: 600;
  color: var(--g-700);
  display: flex;
  align-items: center;
  gap: 6px;
}
.form-optional {
  font-size: 11px;
  font-weight: 400;
  color: var(--g-600);
  opacity: 0.6;
}

.form-field input,
.form-field textarea {
  font-family: var(--ff-sans);
  font-size: 14px;
  color: var(--g-900);
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid rgba(26, 58, 42, 0.18);
  border-radius: var(--r-sm);
  padding: 10px 13px;
  outline: none;
  transition: border-color 160ms var(--ease), box-shadow 160ms var(--ease), background 160ms var(--ease);
  resize: none;
  width: 100%;
  -webkit-font-smoothing: antialiased;
}
.form-field input::placeholder,
.form-field textarea::placeholder {
  color: rgba(26, 58, 42, 0.35);
}
.form-field input:focus,
.form-field textarea:focus {
  border-color: var(--g-500);
  background: rgba(255, 255, 255, 0.90);
  box-shadow: 0 0 0 3px rgba(74, 145, 112, 0.12);
}
.form-field input:invalid:not(:placeholder-shown),
.form-field input.touched:invalid {
  border-color: #c0392b;
}

.form-error {
  font-size: 13px;
  color: #b33a2a;
  background: rgba(179, 58, 42, 0.07);
  border: 0.5px solid rgba(179, 58, 42, 0.20);
  border-radius: var(--r-sm);
  padding: 10px 13px;
  margin-top: 14px;
}

.btn-form-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 46px;
  padding: 0 28px;
  margin-top: 20px;
  border-radius: var(--r-sm);
  background: var(--g-900);
  border: 0.5px solid rgba(74, 145, 112, 0.30);
  color: var(--g-050);
  font-size: 14px;
  font-weight: 600;
  font-family: var(--ff-sans);
  letter-spacing: -0.01em;
  cursor: pointer;
  width: 100%;
  transition: all 180ms var(--ease);
}
.btn-form-submit:hover:not(:disabled) {
  background: var(--g-700);
  border-color: rgba(74, 145, 112, 0.55);
  box-shadow: 0 4px 18px rgba(26, 58, 42, 0.20);
  transform: translateY(-1px);
}
.btn-form-submit:disabled {
  opacity: 0.65;
  cursor: not-allowed;
  transform: none;
}

/* Success state */
.form-success-icon {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}
#success-state {
  text-align: center;
}
#success-state h2,
#success-state p {
  text-align: center;
}
#success-state p {
  margin-bottom: 0;
}

@media (max-width: 480px) {
  .stats-inner { grid-template-columns: 1fr 1fr; }
  .hero h1 { font-size: 26px; }
  .hero-wordmark { height: 72px; }
  .footer-left { flex-direction: column; align-items: flex-start; gap: 8px; }
  .mock-meta-grid { grid-template-columns: 1fr 1fr; }
  .mock-deploy-cols { grid-template-columns: 1fr; }
  .mock-deploy-sep { display: none; }
}
