/* ===== TOKENS ===== */
:root {
  --bg: #0f1117;
  --surface: #161b27;
  --surface2: #1e2536;
  --border: #2a3147;
  --fg: #e8eaf0;
  --fg-muted: #7a8499;
  --accent: #f59e0b;
  --accent-dim: #b47208;
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'DM Sans', sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3 { font-family: 'Syne', sans-serif; line-height: 1.15; }

/* ===== HEADER ===== */
.site-header {
  padding: 20px 40px;
  border-bottom: 1px solid var(--border);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
}
.wordmark {
  font-family: 'Syne', sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--fg);
  letter-spacing: -0.02em;
}
.wordmark .accent { color: var(--accent); }
.tagline {
  font-size: 0.8rem;
  color: var(--fg-muted);
  font-weight: 300;
}

/* ===== HERO ===== */
.hero {
  padding: 80px 40px 100px;
}
.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.eyebrow {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 16px;
}
.hero-copy h1 {
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 800;
  color: var(--fg);
  margin-bottom: 20px;
  letter-spacing: -0.03em;
}
.hero-copy h1 .highlight {
  color: var(--accent);
}
.lede {
  font-size: 1.1rem;
  color: var(--fg-muted);
  max-width: 480px;
  line-height: 1.7;
}

/* ===== WIDGET ===== */
.hero-widget { display: flex; justify-content: center; }
.widget-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
  width: 100%;
  max-width: 340px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.4);
}
.widget-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}
.widget-title {
  font-family: 'Syne', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--fg);
}
.widget-status {
  font-size: 0.65rem;
  font-weight: 600;
  background: #10b981;
  color: #fff;
  border-radius: 99px;
  padding: 3px 10px;
  letter-spacing: 0.08em;
}
.widget-stats {
  display: flex;
  gap: 0;
  margin-bottom: 20px;
}
.stat {
  flex: 1;
  text-align: center;
  border-right: 1px solid var(--border);
}
.stat:last-child { border-right: none; }
.stat-value {
  display: block;
  font-family: 'Syne', sans-serif;
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--accent);
}
.stat-label {
  display: block;
  font-size: 0.7rem;
  color: var(--fg-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 2px;
}
.widget-bar {
  height: 4px;
  background: var(--surface2);
  border-radius: 99px;
  overflow: hidden;
  margin-bottom: 16px;
}
.bar-fill {
  height: 100%;
  width: 68%;
  background: linear-gradient(90deg, var(--accent-dim), var(--accent));
  border-radius: 99px;
}
.widget-footer {
  font-size: 0.72rem;
  color: var(--fg-muted);
  text-align: center;
}

/* ===== PROOF ===== */
.proof {
  padding: 40px 40px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--surface);
}
.proof-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 40px;
}
.proof-item {
  flex: 1;
  text-align: center;
}
.proof-number {
  display: block;
  font-family: 'Syne', sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--accent);
}
.proof-label {
  font-size: 0.8rem;
  color: var(--fg-muted);
  margin-top: 4px;
  display: block;
}
.proof-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
  flex-shrink: 0;
}

/* ===== FEATURES ===== */
.features { padding: 100px 40px; }
.features-inner { max-width: 1200px; margin: 0 auto; }
.features h2 {
  font-size: clamp(1.6rem, 3vw, 2.25rem);
  font-weight: 800;
  color: var(--fg);
  text-align: center;
  margin-bottom: 60px;
  letter-spacing: -0.02em;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.feature-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 36px;
  transition: border-color 0.2s;
}
.feature-card:hover { border-color: var(--accent-dim); }
.feature-icon {
  width: 48px;
  height: 48px;
  background: var(--surface2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-bottom: 20px;
}
.feature-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 10px;
}
.feature-card p {
  font-size: 0.88rem;
  color: var(--fg-muted);
  line-height: 1.65;
}

/* ===== MANIFESTO ===== */
.manifesto {
  padding: 80px 40px;
  background: var(--surface);
}
.manifesto-inner {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}
.manifesto blockquote {
  font-family: 'Syne', sans-serif;
  font-size: clamp(1.1rem, 2.5vw, 1.6rem);
  font-weight: 700;
  color: var(--fg);
  line-height: 1.4;
  margin-bottom: 28px;
  font-style: italic;
  border-left: 3px solid var(--accent);
  padding-left: 24px;
  text-align: left;
}
.manifesto-body {
  font-size: 0.95rem;
  color: var(--fg-muted);
  line-height: 1.75;
  margin-bottom: 16px;
}
.manifesto-body:last-child {
  color: var(--fg);
  font-weight: 500;
}

/* ===== CLOSING ===== */
.closing {
  padding: 80px 40px;
  text-align: center;
}
.closing-inner { max-width: 600px; margin: 0 auto; }
.closing h2 {
  font-size: clamp(1.6rem, 3vw, 2.25rem);
  font-weight: 800;
  color: var(--fg);
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}
.closing p {
  font-size: 0.95rem;
  color: var(--fg-muted);
  line-height: 1.75;
}

/* ===== FOOTER ===== */
.site-footer {
  padding: 24px 40px;
  border-top: 1px solid var(--border);
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-note {
  font-size: 0.75rem;
  color: var(--fg-muted);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-widget { justify-content: flex-start; }
  .widget-card { max-width: 100%; }
  .features-grid { grid-template-columns: 1fr; }
  .proof-inner { flex-direction: column; gap: 24px; }
  .proof-divider { width: 40px; height: 1px; }
  .site-header, .hero, .features, .manifesto, .closing { padding-left: 24px; padding-right: 24px; }
  .footer-inner { flex-direction: column; gap: 8px; }
}