:root {
  --bg: #0f0f12;
  --fg: #f4f4f5;
  --accent: #f59e0b;
  --accent-dim: rgba(245, 158, 11, 0.12);
  --muted: #9ca3af;
  --subtle: #27272a;
  --surface: #18181b;
}

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

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

/* HERO */
.hero {
  position: relative;
  padding: 120px 24px 100px;
  overflow: hidden;
}
.hero-glow {
  position: absolute;
  top: -100px;
  right: -100px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(245,158,11,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner {
  max-width: 860px;
  position: relative;
  z-index: 1;
}
.eyebrow {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 28px;
}
.eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}
h1 {
  font-family: 'Sora', system-ui, sans-serif;
  font-size: clamp(42px, 7vw, 72px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
  color: var(--fg);
}
.lede {
  font-size: 18px;
  color: var(--muted);
  max-width: 600px;
  line-height: 1.7;
  margin-bottom: 56px;
}
.stats-row {
  display: flex;
  align-items: center;
  gap: 32px;
}
.stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.stat-number {
  font-family: 'Sora', system-ui, sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--accent);
}
.stat-label {
  font-size: 13px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--subtle);
}

/* FEATURES */
.features {
  padding: 80px 24px;
  border-top: 1px solid var(--subtle);
}
.features-inner { max-width: 1100px; margin: 0 auto; }
.features h2 {
  font-family: 'Sora', system-ui, sans-serif;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 48px;
  color: var(--fg);
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  background: var(--subtle);
  border: 1px solid var(--subtle);
  border-radius: 16px;
  overflow: hidden;
}
.feature-card {
  background: var(--bg);
  padding: 36px 32px;
  transition: background 0.2s;
}
.feature-card:hover { background: var(--surface); }
.feature-icon {
  width: 44px;
  height: 44px;
  background: var(--accent-dim);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--accent);
}
.feature-card h3 {
  font-family: 'Sora', system-ui, sans-serif;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--fg);
}
.feature-card p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.65;
}

/* MANIFESTO */
.manifesto {
  padding: 100px 24px;
  background: var(--surface);
}
.manifesto-inner { max-width: 760px; margin: 0 auto; }
.manifesto-quote p {
  font-family: 'Sora', system-ui, sans-serif;
  font-size: 26px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--fg);
}
.manifesto-quote p:first-child { font-style: italic; color: var(--muted); }
.manifesto-attribution {
  font-size: 15px;
  color: var(--accent) !important;
  margin-top: 24px;
  font-style: normal !important;
}

/* PROCESS */
.process {
  padding: 80px 24px;
  border-top: 1px solid var(--subtle);
}
.process-inner { max-width: 960px; margin: 0 auto; }
.process h2 {
  font-family: 'Sora', system-ui, sans-serif;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 56px;
  color: var(--fg);
}
.process-steps {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.step {
  flex: 1;
  background: var(--surface);
  border: 1px solid var(--subtle);
  border-radius: 12px;
  padding: 28px 24px;
}
.step-number {
  font-family: 'Sora', system-ui, sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 12px;
}
.step h3 {
  font-family: 'Sora', system-ui, sans-serif;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--fg);
}
.step p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
}
.step-arrow {
  display: flex;
  align-items: center;
  padding-top: 28px;
  color: var(--subtle);
  flex-shrink: 0;
}

/* CLOSING */
.closing {
  padding: 100px 24px;
  background: var(--surface);
  border-top: 1px solid var(--subtle);
  text-align: center;
}
.closing-inner { max-width: 700px; margin: 0 auto; }
.closing h2 {
  font-family: 'Sora', system-ui, sans-serif;
  font-size: 40px;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
  color: var(--fg);
}
.closing p {
  font-size: 17px;
  color: var(--muted);
  margin-bottom: 36px;
  line-height: 1.7;
}
.closing-statement {
  font-family: 'Sora', system-ui, sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: var(--accent);
  line-height: 1.6;
  border: 1px solid var(--accent-dim);
  background: var(--accent-dim);
  border-radius: 10px;
  padding: 20px 28px;
}

/* FOOTER */
.footer {
  padding: 40px 24px;
  border-top: 1px solid var(--subtle);
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-logo {
  font-family: 'Sora', system-ui, sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--fg);
}
.footer-tagline {
  font-size: 13px;
  color: var(--muted);
  margin-left: 16px;
}
.footer-brand { display: flex; align-items: baseline; }
.footer-links span { font-size: 13px; color: var(--muted); }

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero { padding: 80px 20px 64px; }
  h1 { font-size: 38px; }
  .stats-row { flex-wrap: wrap; gap: 20px; }
  .features-grid { grid-template-columns: 1fr; }
  .process-steps { flex-direction: column; }
  .step-arrow { transform: rotate(90deg); padding: 8px 0; }
  .manifesto-quote p { font-size: 20px; }
  .closing h2 { font-size: 28px; }
  .footer-inner { flex-direction: column; gap: 12px; align-items: flex-start; }
}

@media (max-width: 480px) {
  .hero { padding: 60px 16px 48px; }
  h1 { font-size: 32px; }
  .lede { font-size: 16px; }
  .stat-number { font-size: 22px; }
  .feature-card { padding: 24px 20px; }
}