:root {
  --bg: #0a0a0f;
  --surface: #12121a;
  --surface-2: #1a1a26;
  --border: rgba(255,255,255,0.07);
  --accent: #e8651a;
  --accent-dim: rgba(232, 101, 26, 0.12);
  --teal: #2dd4bf;
  --text: #eceae3;
  --text-2: rgba(236,234,227,0.55);
  --text-3: rgba(236,234,227,0.28);
  --font-head: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

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

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* Nav */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 56px;
  border-bottom: 1px solid var(--border);
}
.nav-logo { display: flex; align-items: center; gap: 10px; }
.logo-mark {
  width: 32px; height: 32px;
  background: var(--accent);
  color: #fff;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 18px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 6px;
}
.logo-text, .nav-logo .logo-text { font-family: var(--font-head); font-weight: 700; font-size: 16px; }
.nav-for { font-size: 13px; color: var(--text-3); font-weight: 300; }

/* Hero */
.hero { padding: 80px 56px 72px; }
.hero-grid { display: grid; grid-template-columns: 1fr 340px; gap: 80px; align-items: start; }
.hero-eyebrow {
  font-size: 12px; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 20px;
}
.hero-title {
  font-family: var(--font-head);
  font-size: clamp(48px, 6vw, 80px);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}
.hero-accent { color: var(--accent); }
.hero-body {
  font-size: 17px; line-height: 1.65; color: var(--text-2);
  max-width: 480px; font-weight: 300;
}
.hero-right { display: flex; flex-direction: column; gap: 12px; }
.stat-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px 24px;
}
.stat-number {
  font-family: var(--font-head);
  font-size: 36px;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 4px;
}
.stat-label { font-size: 13px; color: var(--text-2); margin-bottom: 2px; }
.stat-note { font-size: 11px; color: var(--text-3); }
.hero-stat .stat-number { color: var(--teal); }
.hero-stat-2 .stat-number { color: var(--text); }
.hero-stat-3 .stat-number { color: var(--accent); }

/* Capabilities */
.capabilities { padding: 72px 56px; }
.cap-header { margin-bottom: 48px; }
.cap-tag {
  font-size: 11px; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--text-3); margin-bottom: 12px;
}
.cap-title {
  font-family: var(--font-head);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
}
.cap-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
}
.cap-card {
  background: var(--surface);
  padding: 32px 28px;
}
.cap-card--primary { background: var(--surface-2); }
.cap-icon { color: var(--accent); margin-bottom: 16px; }
.cap-card-title {
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 10px;
}
.cap-card-body { font-size: 14px; color: var(--text-2); line-height: 1.6; font-weight: 300; }

/* Live Stats */
.live-stats {
  padding: 0 56px;
  margin-bottom: 72px;
}
.live-stats-inner {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 24px 36px;
  display: flex;
  align-items: center;
  gap: 28px;
}
.live-badge {
  display: flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 500; letter-spacing: 0.1em;
  color: #22c55e; text-transform: uppercase;
  flex-shrink: 0;
}
.live-dot {
  width: 7px; height: 7px; border-radius: 50%; background: #22c55e;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }
.stats-row { display: flex; align-items: center; gap: 0; flex: 1; }
.live-stat { padding: 0 28px; }
.live-stat:first-child { padding-left: 0; }
.live-value {
  font-family: var(--font-head);
  font-size: 22px; font-weight: 800;
  display: block; line-height: 1;
  margin-bottom: 4px;
}
.live-label { font-size: 12px; color: var(--text-3); display: block; margin-bottom: 2px; }
.live-change { font-size: 11px; font-weight: 500; }
.live-change.up { color: #22c55e; }
.live-change.ok { color: var(--teal); }
.live-divider { width: 1px; height: 40px; background: var(--border); flex-shrink: 0; }

/* Manifesto */
.manifesto { padding: 80px 56px; background: var(--surface); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.manifesto-inner { max-width: 760px; }
.manifesto-eyebrow { font-size: 11px; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-3); margin-bottom: 24px; }
.manifesto-quote {
  font-family: var(--font-head);
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 28px;
  color: var(--text);
}
.manifesto-body { font-size: 16px; color: var(--text-2); line-height: 1.65; max-width: 560px; font-weight: 300; margin-bottom: 32px; }
.manifesto-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.tag {
  font-size: 12px; font-weight: 500;
  background: var(--accent-dim);
  color: var(--accent);
  border: 1px solid rgba(232,101,26,0.2);
  border-radius: 20px;
  padding: 5px 12px;
}

/* Closing */
.closing { padding: 80px 56px; }
.closing-inner { max-width: 640px; }
.closing-title {
  font-family: var(--font-head);
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}
.closing-body { font-size: 17px; color: var(--text-2); line-height: 1.65; font-weight: 300; }

/* Footer */
.footer { border-top: 1px solid var(--border); padding: 32px 56px; }
.footer-inner { display: flex; align-items: center; gap: 32px; flex-wrap: wrap; }
.footer-brand { display: flex; align-items: center; gap: 8px; }
.footer-logo {
  width: 24px; height: 24px;
  background: var(--accent); color: #fff;
  font-family: var(--font-head); font-weight: 800; font-size: 14px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 4px;
}
.footer-name { font-family: var(--font-head); font-weight: 700; font-size: 14px; }
.footer-info { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--text-3); }
.footer-sep { color: var(--text-3); }
.footer-tagline { font-size: 12px; color: var(--text-3); margin-left: auto; }

/* Responsive */
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-right { display: grid; grid-template-columns: repeat(3, 1fr); }
  .stat-card { padding: 16px; }
  .stat-number { font-size: 24px; }
}
@media (max-width: 640px) {
  .nav { padding: 20px 24px; }
  .hero { padding: 48px 24px 40px; }
  .capabilities { padding: 48px 24px; }
  .cap-grid { grid-template-columns: 1fr; }
  .live-stats { padding: 0 24px; margin-bottom: 48px; }
  .live-stats-inner { flex-direction: column; align-items: start; gap: 16px; }
  .stats-row { flex-direction: column; width: 100%; }
  .live-divider { width: 100%; height: 1px; }
  .manifesto { padding: 56px 24px; }
  .closing { padding: 56px 24px; }
  .footer { padding: 24px; }
  .footer-inner { flex-direction: column; align-items: start; gap: 16px; }
  .footer-tagline { margin-left: 0; }
  .hero-right { grid-template-columns: 1fr 1fr; }
}
/* Portal CTA link */
.nav-portal-link {
  margin-left: 20px;
  padding: 6px 14px;
  background: var(--accent-dim);
  color: var(--accent);
  border: 1px solid rgba(232, 101, 26, 0.25);
  border-radius: 6px;
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.15s;
}
.nav-portal-link:hover {
  background: var(--accent);
  color: #fff;
}
