:root {
  --bg: #0c0e14;
  --surface: #13161f;
  --surface-2: #1a1f2e;
  --amber: #f5a623;
  --amber-dim: rgba(245, 166, 35, 0.12);
  --cyan: #00d4ff;
  --text: #e8e4dc;
  --text-dim: rgba(232, 228, 220, 0.45);
  --border: rgba(245, 166, 35, 0.15);
  --font-head: 'Syne', system-ui, sans-serif;
  --font-body: 'Outfit', system-ui, sans-serif;
}

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

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* Nav */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 48px;
  border-bottom: 1px solid var(--border);
}

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

.nav-logo {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 15px;
  background: var(--amber);
  color: var(--bg);
  padding: 4px 8px;
  letter-spacing: 0.05em;
}

.nav-name {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.02em;
}

.nav-tag {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-dim);
}

/* Hero */
.hero {
  padding: 80px 48px 64px;
  border-bottom: 1px solid var(--border);
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 48px;
}

.eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--amber);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.hero-headline {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(52px, 7vw, 96px);
  line-height: 0.95;
  letter-spacing: -0.03em;
  color: var(--text);
}

.hero-right {
  padding-top: 12px;
}

.hero-sub {
  font-size: 17px;
  line-height: 1.65;
  color: var(--text-dim);
  margin-bottom: 40px;
  font-weight: 300;
}

.hero-credentials {
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
}

.cred-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 20px;
  border-bottom: 1px solid var(--border);
  font-size: 13px;
}

.cred-row:last-child { border-bottom: none; }

.cred-label {
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 11px;
  color: var(--text-dim);
}

.cred-val {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 14px;
  color: var(--amber);
}

.hero-ticker {
  display: flex;
  align-items: center;
  gap: 0;
  margin-top: 48px;
  padding: 16px 0;
  border-top: 1px solid var(--border);
  overflow: hidden;
}

.ticker-item {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dim);
  white-space: nowrap;
  padding: 0 28px;
}

.ticker-sep {
  color: var(--amber);
  font-size: 8px;
  opacity: 0.6;
}

/* Manifesto */
.manifesto {
  padding: 80px 48px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 48px;
  align-items: start;
  border-bottom: 1px solid var(--border);
}

.manifesto-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 20px;
}

.manifesto-label--right { text-align: right; }

.manifesto-statement {
  font-size: 15px;
  line-height: 1.75;
  color: var(--text-dim);
  font-weight: 300;
}

.manifesto-statement p + p { margin-top: 16px; }

.manifesto-statement--right p { color: var(--text); }

.manifesto-divider {
  width: 1px;
  background: linear-gradient(to bottom, transparent, var(--amber), transparent);
  align-self: stretch;
  margin-top: 40px;
}

/* Architecture */
.architecture {
  padding: 80px 48px;
  border-bottom: 1px solid var(--border);
}

.arch-header {
  margin-bottom: 56px;
}

.arch-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 16px;
}

.arch-title {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(28px, 4vw, 44px);
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.arch-pipeline {
  display: flex;
  align-items: stretch;
  gap: 0;
}

.arch-node {
  flex: 1;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 28px 24px;
}

.node-icon {
  margin-bottom: 16px;
}

.node-num {
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--amber);
  margin-bottom: 8px;
}

.node-name {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}

.node-desc {
  font-size: 13px;
  line-height: 1.6;
  color: var(--text-dim);
  font-weight: 300;
}

.arch-connector {
  display: flex;
  align-items: center;
  padding: 0 4px;
  min-width: 48px;
}

.connector-line {
  flex: 1;
  height: 1px;
  background: var(--border);
}

.connector-arrow { padding: 8px 0; }

.arch-built {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}

.built-tag {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dim);
}

.built-tools {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  background: var(--surface-2);
  border: 1px solid var(--border);
  padding: 4px 10px;
  border-radius: 3px;
}

.built-sep {
  color: var(--border);
  font-size: 14px;
}

/* Outcomes */
.outcomes {
  padding: 80px 48px;
  border-bottom: 1px solid var(--border);
}

.outcomes-header {
  margin-bottom: 56px;
}

.outcomes-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 16px;
}

.outcomes-title {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(28px, 4vw, 44px);
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.outcomes-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 6px;
  overflow: hidden;
  margin-bottom: 48px;
}

.outcome-card {
  background: var(--surface);
  padding: 32px 24px;
}

.outcome-stat {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 40px;
  color: var(--amber);
  letter-spacing: -0.03em;
  margin-bottom: 12px;
}

.outcome-desc {
  font-size: 13px;
  line-height: 1.6;
  color: var(--text-dim);
  font-weight: 300;
}

.outcomes-service {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.service-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dim);
}

.service-list {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.service-tag {
  font-size: 12px;
  font-weight: 500;
  color: var(--text);
  background: var(--surface-2);
  border: 1px solid var(--border);
  padding: 6px 14px;
  border-radius: 20px;
}

/* Closing */
.closing {
  padding: 96px 48px;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
}

.closing-inner {
  max-width: 760px;
}

.closing-statement {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: clamp(20px, 2.8vw, 30px);
  line-height: 1.4;
  letter-spacing: -0.01em;
  color: var(--text);
}

.closing-statement--sub {
  font-size: 17px;
  font-weight: 300;
  color: var(--text-dim);
  margin-top: 16px;
}

.closing-divider {
  width: 48px;
  height: 2px;
  background: var(--amber);
  margin: 40px 0;
}

.closing-price {
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--text-dim);
}

/* Footer */
.footer {
  padding: 32px 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-brand {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 14px;
}

.footer-slash { color: var(--text-dim); margin: 0 4px; }

.footer-tag {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 12px;
  color: var(--text-dim);
}

.footer-copy {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dim);
}

/* Responsive */
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .manifesto { grid-template-columns: 1fr; gap: 32px; }
  .manifesto-divider { display: none; }
  .manifesto-label--right { text-align: left; }
  .arch-pipeline { flex-direction: column; gap: 16px; }
  .arch-connector { display: none; }
  .outcomes-grid { grid-template-columns: 1fr 1fr; }
  .nav, .hero, .manifesto, .architecture, .outcomes, .closing, .footer { padding-left: 24px; padding-right: 24px; }
}

@media (max-width: 600px) {
  .outcomes-grid { grid-template-columns: 1fr; }
  .nav-tag { display: none; }
}