:root {
  --bg: #08080A;
  --surface: #111114;
  --surface-2: #1a1a1e;
  --fg: #F0EEE8;
  --fg-muted: #8A8A8E;
  --lime: #C8F135;
  --lime-dim: #8AAF1F;
  --lime-glow: rgba(200, 241, 53, 0.15);
  --border: rgba(240, 238, 232, 0.08);
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* NAV */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(8, 8, 10, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 18px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 20px;
  letter-spacing: -0.03em;
  color: var(--fg);
}
.nav-badge {
  font-size: 12px;
  color: var(--fg-muted);
  background: var(--surface-2);
  border: 1px solid var(--border);
  padding: 4px 10px;
  border-radius: 100px;
  letter-spacing: 0.02em;
}

/* HERO */
.hero {
  min-height: 90vh;
  display: flex;
  align-items: center;
  padding: 80px 32px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -80px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--lime-glow) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
}
.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--lime);
  margin-bottom: 28px;
  font-family: 'Syne', sans-serif;
  font-weight: 600;
}
.label-dot {
  width: 6px;
  height: 6px;
  background: var(--lime);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}
.hero-headline {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(48px, 7vw, 88px);
  line-height: 1.0;
  letter-spacing: -0.04em;
  color: var(--fg);
  margin-bottom: 28px;
}
.hero-lede {
  font-size: 18px;
  color: var(--fg-muted);
  max-width: 540px;
  line-height: 1.65;
  margin-bottom: 56px;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
}
.stat {
  padding: 0 32px 0 0;
}
.stat:first-child { padding-left: 0; }
.stat-value {
  display: block;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 28px;
  color: var(--lime);
  letter-spacing: -0.03em;
}
.stat-label {
  display: block;
  font-size: 13px;
  color: var(--fg-muted);
  margin-top: 4px;
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
  margin-right: 32px;
}

/* MANIFESTO */
.manifesto {
  padding: 100px 32px;
  border-top: 1px solid var(--border);
}
.manifesto-inner { max-width: 1100px; margin: 0 auto; }
.manifesto-label {
  font-family: 'Syne', sans-serif;
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 48px;
}
.manifesto-cols {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 60px;
  align-items: start;
}
.manifesto-col h3 {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 22px;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}
.manifesto-col--old h3 { color: var(--fg-muted); }
.manifesto-col--new h3 { color: var(--lime); }
.manifesto-col p { font-size: 15px; color: var(--fg-muted); line-height: 1.7; margin-bottom: 24px; }
.manifesto-divider {
  width: 1px;
  background: var(--border);
  height: 200px;
  align-self: center;
}
.manifesto-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.tag {
  font-size: 11px;
  padding: 4px 10px;
  border-radius: 100px;
  font-family: 'Syne', sans-serif;
  font-weight: 500;
  letter-spacing: 0.04em;
}
.tag--old { background: var(--surface-2); color: var(--fg-muted); border: 1px solid var(--border); }
.tag--new { background: var(--lime-glow); color: var(--lime); border: 1px solid rgba(200,241,53,0.2); }

/* CAPABILITIES */
.capabilities {
  padding: 100px 32px;
  border-top: 1px solid var(--border);
  background: var(--surface);
}
.cap-inner { max-width: 1100px; margin: 0 auto; }
.cap-label {
  font-family: 'Syne', sans-serif;
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 20px;
}
.cap-headline {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: clamp(32px, 4vw, 52px);
  letter-spacing: -0.03em;
  margin-bottom: 56px;
  line-height: 1.1;
}
.cap-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
}
.cap-card {
  background: var(--surface);
  padding: 40px;
  transition: background 0.2s;
}
.cap-card:hover { background: var(--surface-2); }
.cap-icon {
  width: 48px;
  height: 48px;
  background: var(--lime-glow);
  border: 1px solid rgba(200,241,53,0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--lime);
  margin-bottom: 20px;
}
.cap-card h3 {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.cap-card p {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.65;
}

/* COMPARE */
.compare {
  padding: 100px 32px;
  border-top: 1px solid var(--border);
}
.compare-inner { max-width: 1100px; margin: 0 auto; }
.compare-label {
  font-family: 'Syne', sans-serif;
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 32px;
}
.compare-table { width: 100%; }
.compare-header {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  padding: 12px 20px;
  border-bottom: 1px solid var(--border);
  font-family: 'Syne', sans-serif;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--fg-muted);
}
.compare-col--fluxr { color: var(--lime); }
.compare-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  padding: 18px 20px;
  border-bottom: 1px solid var(--border);
  align-items: center;
}
.compare-row:last-child { border-bottom: none; }
.compare-feature { font-size: 14px; color: var(--fg); }
.compare-val { font-size: 13px; }
.compare-val--old { color: var(--fg-muted); }
.compare-val--new { color: var(--lime); font-weight: 500; }

/* CLOSING */
.closing {
  padding: 120px 32px;
  border-top: 1px solid var(--border);
  text-align: center;
}
.closing-inner { max-width: 800px; margin: 0 auto; }
.closing-headline {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(28px, 4vw, 52px);
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 24px;
}
.closing-sub {
  font-size: 18px;
  color: var(--fg-muted);
  line-height: 1.65;
  max-width: 560px;
  margin: 0 auto;
}

/* FOOTER */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 32px;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-brand {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 16px;
  color: var(--fg);
}
.footer-tagline { font-size: 13px; color: var(--fg-muted); }

/* MOBILE */
@media (max-width: 768px) {
  .hero { padding: 60px 24px; min-height: 80vh; }
  .hero-stats { flex-wrap: wrap; gap: 24px; }
  .stat { padding: 0; }
  .stat-divider { display: none; }
  .manifesto-cols { grid-template-columns: 1fr; gap: 40px; }
  .manifesto-divider { display: none; }
  .cap-grid { grid-template-columns: 1fr; }
  .compare-header { grid-template-columns: 1fr 0.8fr 0.8fr; }
  .compare-row { grid-template-columns: 1fr 0.8fr 0.8fr; }
  .compare-feature { font-size: 12px; }
  .compare-val { font-size: 11px; }
  .closing { padding: 80px 24px; }
}
@media (max-width: 480px) {
  .hero-headline { font-size: 40px; }
  .compare-header { font-size: 10px; }
  .compare-row { padding: 14px 12px; }
}