/* === RESET & BASE === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #0F0F0F;
  --bg-2: #161616;
  --bg-card: #1A1A1A;
  --fg: #F4F4F0;
  --fg-muted: #8A8A85;
  --accent: #F59E0B;
  --accent-dim: #D97706;
  --accent-glow: rgba(245, 158, 11, 0.15);
  --border: rgba(244, 244, 240, 0.08);
  --font-display: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* === NAVBAR === */
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 48px;
  border-bottom: 1px solid var(--border);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-brand {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  color: var(--fg);
}

.nav-tagline {
  font-size: 13px;
  color: var(--fg-muted);
  letter-spacing: 0.03em;
}

/* === HERO === */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  padding: 96px 48px 80px;
  min-height: 85vh;
  background: radial-gradient(ellipse 60% 50% at 75% 50%, rgba(245, 158, 11, 0.06) 0%, transparent 70%), var(--bg);
  position: relative;
}

.hero-eyebrow {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(48px, 6vw, 80px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--fg);
  margin-bottom: 24px;
}

.hero-lede {
  font-size: 18px;
  line-height: 1.7;
  color: var(--fg-muted);
  max-width: 480px;
}

.hero-right {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
}

.hero-sun {
  width: 240px;
  height: 240px;
  animation: sunPulse 4s ease-in-out infinite;
}

@keyframes sunPulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.05); opacity: 0.85; }
}

.sun-core { width: 100%; height: 100%; }

.hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px 28px;
  width: 100%;
  max-width: 480px;
}

.stat { text-align: center; flex: 1; }

.stat-value {
  display: block;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--accent);
}

.stat-label {
  display: block;
  font-size: 11px;
  color: var(--fg-muted);
  margin-top: 4px;
  line-height: 1.4;
}

.stat-divider {
  width: 1px;
  height: 36px;
  background: var(--border);
}

/* === MANIFESTO === */
.manifesto {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 80px 48px;
}

.manifesto-inner { max-width: 1100px; margin: 0 auto; }

.manifesto-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 32px;
}

.manifesto-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

.manifesto-text {
  font-size: 17px;
  line-height: 1.7;
  color: var(--fg-muted);
}

.manifesto-bold { color: var(--fg); font-weight: 500; }

/* === OUTCOMES === */
.outcomes {
  padding: 96px 48px;
  background: var(--bg);
}

.section-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}

.outcomes-header { max-width: 700px; margin-bottom: 64px; }

.outcomes-headline {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--fg);
}

.outcomes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1100px;
}

.outcome-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 36px;
  transition: border-color 0.2s;
}

.outcome-card:hover { border-color: rgba(245, 158, 11, 0.3); }

.outcome-icon {
  margin-bottom: 24px;
}

.outcome-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 12px;
}

.outcome-desc {
  font-size: 15px;
  line-height: 1.65;
  color: var(--fg-muted);
}

/* === PROCESS === */
.process {
  padding: 96px 48px;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
}

.process-header { max-width: 700px; margin-bottom: 64px; }

.process-headline {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: var(--fg);
}

.process-steps {
  display: flex;
  align-items: center;
  gap: 0;
  max-width: 1100px;
}

.step {
  display: flex;
  gap: 20px;
  flex: 1;
  align-items: flex-start;
}

.step-num {
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 800;
  color: var(--accent);
  opacity: 0.4;
  line-height: 1;
  flex-shrink: 0;
}

.step-content { flex: 1; }

.step-title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 8px;
}

.step-desc {
  font-size: 14px;
  line-height: 1.65;
  color: var(--fg-muted);
}

.step-connector {
  width: 48px;
  height: 1px;
  background: linear-gradient(90deg, var(--accent) 0%, transparent 100%);
  opacity: 0.4;
  flex-shrink: 0;
  margin-top: 24px;
}

/* === CLOSING === */
.closing {
  padding: 112px 48px;
  background: var(--bg);
  text-align: center;
  background: radial-gradient(ellipse 50% 60% at 50% 50%, rgba(245, 158, 11, 0.05) 0%, transparent 70%), var(--bg);
}

.closing-inner { max-width: 760px; margin: 0 auto; }

.closing-statement {
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 36px);
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: -0.02em;
  color: var(--fg);
  margin-bottom: 24px;
}

.closing-tagline {
  font-size: 14px;
  color: var(--fg-muted);
  letter-spacing: 0.04em;
}

/* === FOOTER === */
.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 48px;
  border-top: 1px solid var(--border);
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  color: var(--fg);
}

.footer-note {
  font-size: 12px;
  color: var(--fg-muted);
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
  .navbar { padding: 20px 24px; }
  .nav-tagline { display: none; }

  .hero {
    grid-template-columns: 1fr;
    padding: 64px 24px 56px;
    gap: 48px;
    min-height: auto;
  }

  .hero-right { order: -1; }
  .hero-sun { width: 160px; height: 160px; }
  .hero-stats { padding: 16px 20px; gap: 16px; }
  .stat-value { font-size: 18px; }

  .manifesto { padding: 56px 24px; }
  .manifesto-content { grid-template-columns: 1fr; gap: 24px; }

  .outcomes { padding: 64px 24px; }
  .outcomes-grid { grid-template-columns: 1fr; }

  .process { padding: 64px 24px; }
  .process-steps { flex-direction: column; gap: 32px; }
  .step-connector { width: 1px; height: 32px; background: linear-gradient(180deg, var(--accent) 0%, transparent 100%); }

  .closing { padding: 72px 24px; }

  .footer { flex-direction: column; gap: 12px; padding: 24px; text-align: center; }
}