/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; }
body {
  font-family: 'DM Sans', sans-serif;
  background: #0D1B2A;
  color: #E8E4DC;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4 { font-family: 'Sora', sans-serif; font-weight: 700; }
a { color: inherit; text-decoration: none; }

/* ===== COLORS ===== */
:root {
  --bg: #0D1B2A;
  --bg2: #121E2E;
  --bg3: #1A2A3A;
  --amber: #F59E0B;
  --amber-dim: #C27803;
  --text: #E8E4DC;
  --text-muted: #8A9BB0;
  --green: #34D399;
  --border: rgba(255,255,255,0.08);
}

/* ===== NAV ===== */
.site-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 48px;
  border-bottom: 1px solid var(--border);
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: -0.02em;
}
.nav-links { display: flex; align-items: center; gap: 8px; }
.nav-link { font-size: 0.85rem; color: var(--text-muted); padding: 8px 16px; border-radius: 8px; transition: color 0.2s; }
.nav-link:hover { color: var(--text); }
.nav-link-cta { background: var(--amber); color: #0D1B2A; font-weight: 600; }
.nav-link-cta:hover { background: #D97706; }

/* ===== HERO ===== */
.hero { padding: 80px 48px 64px; }
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 64px;
  align-items: start;
  max-width: 1200px;
  margin: 0 auto;
}
.hero-eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 20px;
}
.hero-headline {
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
  color: #fff;
}
.hero-sub {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 480px;
  margin-bottom: 48px;
  line-height: 1.7;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 32px;
}
.stat-value {
  display: block;
  font-family: 'Sora', sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--amber);
  line-height: 1;
}
.stat-label {
  display: block;
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 4px;
}
.stat-divider { width: 1px; height: 36px; background: var(--border); }

/* ===== WIDGET ===== */
.hero-widget {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}
.widget-header {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
  background: var(--bg3);
}
.widget-dot { width: 10px; height: 10px; border-radius: 50%; background: var(--border); }
.widget-dot.amber { background: var(--amber); }
.widget-title { font-size: 0.7rem; color: var(--text-muted); margin-left: 8px; }
.widget-body { padding: 16px; }
.activity-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
}
.activity-item:last-of-type { border-bottom: none; }
.activity-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.activity-dot.green { background: var(--green); }
.activity-dot.amber { background: var(--amber); }
.activity-text { display: flex; flex-direction: column; }
.activity-name { font-size: 0.85rem; font-weight: 600; color: var(--text); }
.activity-action { font-size: 0.75rem; color: var(--text-muted); }
.widget-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0 0;
  margin-top: 8px;
  border-top: 1px solid var(--border);
}
.live-label { font-size: 0.7rem; font-weight: 700; color: var(--green); }
.live-count { font-size: 0.75rem; color: var(--text-muted); }

/* ===== PROOF ===== */
.proof {
  padding: 80px 48px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.proof-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.proof-label { font-size: 0.7rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--amber); margin-bottom: 16px; }
.proof-text blockquote { font-size: 1.25rem; line-height: 1.6; color: #fff; font-style: italic; margin-bottom: 16px; }
.proof-attr { font-size: 0.8rem; color: var(--text-muted); }
.proof-numbers { display: flex; flex-direction: column; gap: 32px; }
.proof-metric { border-left: 2px solid var(--amber); padding-left: 20px; }
.proof-value { font-family: 'Sora', sans-serif; font-size: 2rem; font-weight: 800; color: #fff; }
.proof-desc { font-size: 0.85rem; color: var(--text-muted); margin-top: 4px; }

/* ===== HOW ===== */
.how { padding: 96px 48px; }
.how-header { max-width: 1200px; margin: 0 auto 56px; }
.section-title { font-size: 2rem; letter-spacing: -0.02em; color: #fff; }
.section-sub { color: var(--text-muted); font-size: 1rem; margin-top: 8px; }
.steps { max-width: 1200px; margin: 0 auto; display: flex; flex-direction: column; gap: 0; }
.step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 32px;
  padding: 40px 0;
  border-bottom: 1px solid var(--border);
  align-items: start;
}
.step:first-child { border-top: 1px solid var(--border); }
.step-num { font-family: 'Sora', sans-serif; font-size: 3rem; font-weight: 800; color: var(--bg3); line-height: 1; }
.step-content h3 { font-size: 1.2rem; color: #fff; margin-bottom: 8px; }
.step-content p { font-size: 0.95rem; color: var(--text-muted); line-height: 1.7; max-width: 540px; }

/* ===== FEATURES ===== */
.features { padding: 96px 48px; background: var(--bg2); }
.features-header { max-width: 1200px; margin: 0 auto 48px; }
.feature-grid { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(2, 1fr); gap: 2px; }
.feature-card {
  padding: 40px;
  background: var(--bg);
  border: 1px solid var(--border);
  transition: border-color 0.2s;
}
.feature-card:hover { border-color: var(--amber-dim); }
.feature-icon { color: var(--amber); margin-bottom: 20px; }
.feature-card h3 { font-size: 1.1rem; color: #fff; margin-bottom: 10px; }
.feature-card p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.7; }

/* ===== MANIFESTO ===== */
.manifesto { padding: 96px 48px; border-top: 1px solid var(--border); }
.manifesto-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr; gap: 80px; }
.manifesto-content h2 { font-size: 2rem; color: #fff; margin-bottom: 24px; }
.manifesto-content p { color: var(--text-muted); font-size: 1rem; line-height: 1.8; margin-bottom: 16px; }
.manifesto-content em { color: var(--text); font-style: normal; }
.manifesto-quote blockquote { font-size: 1.2rem; line-height: 1.6; color: var(--text-muted); border-left: 2px solid var(--amber); padding-left: 24px; font-style: italic; }

/* ===== CLOSING ===== */
.closing { padding: 96px 48px; border-top: 1px solid var(--border); background: var(--bg2); }
.closing-inner { max-width: 760px; margin: 0 auto; text-align: center; }
.closing h2 { font-size: 2.4rem; letter-spacing: -0.02em; color: #fff; margin-bottom: 24px; }
.closing p { font-size: 1.05rem; color: var(--text-muted); line-height: 1.8; margin-bottom: 16px; }

/* ===== FOOTER ===== */
.site-footer { padding: 32px 48px; border-top: 1px solid var(--border); }
.footer-inner { max-width: 1200px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; }
.footer-brand { display: flex; align-items: center; gap: 8px; font-family: 'Sora', sans-serif; font-weight: 700; font-size: 0.95rem; }
.footer-copy { font-size: 0.8rem; color: var(--text-muted); }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-widget { margin-top: 16px; }
  .proof-inner { grid-template-columns: 1fr; gap: 40px; }
  .manifesto-inner { grid-template-columns: 1fr; gap: 40px; }
  .feature-grid { grid-template-columns: 1fr; }
  .site-nav, .hero, .proof, .how, .features, .manifesto, .closing, .site-footer { padding-left: 24px; padding-right: 24px; }
  .hero { padding-top: 48px; }
}
@media (max-width: 600px) {
  .hero-stats { flex-direction: column; align-items: flex-start; gap: 16px; }
  .stat-divider { display: none; }
  .step { grid-template-columns: 48px 1fr; gap: 16px; }
  .step-num { font-size: 2rem; }
}