/* ─── Variables ─── */
:root {
  --bg: #0C0C14;
  --bg-alt: #13131F;
  --fg: #F5F0E8;
  --fg-muted: #9CA3AF;
  --amber: #F59E0B;
  --teal: #06B6D4;
  --surface: #1C1C2E;
  --border: rgba(245,158,11,0.15);
}

/* ─── Reset & Base ─── */
*, *::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;
  overflow-x: hidden;
}
h1, h2, h3, h4 {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  line-height: 1.15;
}
a { color: inherit; text-decoration: none; }

/* ─── Navbar ─── */
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 48px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(12,12,20,0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-brand { display: flex; align-items: center; gap: 10px; }
.brand-mark { font-size: 20px; color: var(--amber); }
.brand-name { font-family: 'Syne', sans-serif; font-weight: 700; font-size: 18px; }
.nav-links { display: flex; gap: 32px; }
.nav-links a { font-size: 14px; color: var(--fg-muted); transition: color 0.2s; }
.nav-links a:hover { color: var(--amber); }

/* ─── Hero ─── */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 120px 48px 80px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  left: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(245,158,11,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(6,182,212,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner { position: relative; z-index: 1; max-width: 560px; }
.hero-label {
  display: inline-block;
  font-family: 'Syne', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--amber);
  border: 1px solid rgba(245,158,11,0.3);
  padding: 6px 14px;
  border-radius: 40px;
  margin-bottom: 28px;
}
.hero-headline {
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 800;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}
.hero-sub {
  font-size: 18px;
  color: var(--fg-muted);
  max-width: 480px;
  line-height: 1.7;
}
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 400px;
}
.hero-shapes {
  position: relative;
  width: 300px;
  height: 300px;
}
.shape-amber {
  position: absolute;
  width: 180px; height: 180px;
  background: var(--amber);
  border-radius: 50%;
  top: 20px; left: 0;
  opacity: 0.9;
}
.shape-teal {
  position: absolute;
  width: 140px; height: 140px;
  background: var(--teal);
  border-radius: 50%;
  bottom: 20px; right: 0;
  opacity: 0.8;
}
.shape-dark {
  position: absolute;
  width: 120px; height: 120px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 50%;
  top: 60px; right: 40px;
}

/* ─── Impact ─── */
.impact {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 48px 48px;
}
.impact-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 900px;
  margin: 0 auto;
  gap: 24px;
}
.impact-item { text-align: center; }
.impact-number {
  font-family: 'Syne', sans-serif;
  font-size: 48px;
  font-weight: 800;
  color: var(--amber);
  line-height: 1;
}
.impact-plus { font-size: 32px; }
.impact-label {
  font-size: 13px;
  color: var(--fg-muted);
  margin-top: 6px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.impact-divider {
  width: 1px;
  height: 50px;
  background: var(--border);
}

/* ─── Programs ─── */
.programs { padding: 96px 48px; max-width: 1100px; margin: 0 auto; }
.section-header { margin-bottom: 56px; }
.section-tag {
  font-family: 'Syne', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--teal);
  display: block;
  margin-bottom: 12px;
}
.section-title {
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 800;
}
.programs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2px;
}
.program-card {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 36px 28px;
  position: relative;
}
.program-icon { font-size: 32px; margin-bottom: 16px; }
.program-card h3 {
  font-size: 20px;
  margin-bottom: 8px;
}
.program-tagline {
  font-size: 13px;
  color: var(--amber);
  font-weight: 500;
  margin-bottom: 16px;
}
.program-desc {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.7;
  margin-bottom: 20px;
}
.program-stat {
  font-size: 11px;
  color: var(--teal);
  font-weight: 600;
  letter-spacing: 0.05em;
}
.programs-extra {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  margin-top: 2px;
}
.extra-card {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 24px 28px;
}
.extra-card h4 {
  font-size: 15px;
  color: var(--amber);
  margin-bottom: 8px;
}
.extra-card p {
  font-size: 13px;
  color: var(--fg-muted);
  line-height: 1.6;
}

/* ─── Ethos ─── */
.ethos {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 96px 48px;
}
.ethos-inner { max-width: 760px; margin: 0 auto; }
.ethos-badge {
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--teal);
  font-weight: 600;
  margin-bottom: 28px;
}
.ethos-title {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 800;
  margin-bottom: 28px;
  line-height: 1.2;
}
.ethos-body {
  font-size: 18px;
  color: var(--fg-muted);
  line-height: 1.7;
  margin-bottom: 48px;
}
.ethos-pillars {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 32px;
}
.pillar { display: flex; gap: 16px; }
.pillar-icon { font-size: 24px; flex-shrink: 0; margin-top: 2px; }
.pillar h4 { font-size: 14px; margin-bottom: 6px; }
.pillar p { font-size: 13px; color: var(--fg-muted); line-height: 1.5; }

/* ─── Incubator ─── */
.incubator {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-bottom: 1px solid var(--border);
}
.incubator-left {
  padding: 96px 48px;
  border-right: 1px solid var(--border);
}
.incubator-left h2 {
  font-size: clamp(24px, 3vw, 36px);
  margin-bottom: 20px;
  max-width: 380px;
}
.incubator-left p {
  font-size: 15px;
  color: var(--fg-muted);
  line-height: 1.7;
  max-width: 400px;
  margin-bottom: 40px;
}
.incubator-2026 {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.goal-item {
  display: flex;
  align-items: baseline;
  gap: 16px;
  border-top: 1px solid var(--border);
  padding-top: 16px;
}
.goal-metric {
  font-family: 'Syne', sans-serif;
  font-size: 28px;
  font-weight: 800;
  color: var(--amber);
  min-width: 80px;
}
.goal-desc { font-size: 14px; color: var(--fg-muted); }
.incubator-right {
  padding: 96px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  background: var(--bg-alt);
}
.stat-large {
  font-family: 'Syne', sans-serif;
  font-size: 96px;
  font-weight: 800;
  color: var(--teal);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label {
  font-size: 13px;
  color: var(--fg-muted);
  margin-bottom: 40px;
}
.incubator-logos { width: 100%; }
.partner-label {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 12px;
}
.partner-list {
  font-family: 'Syne', sans-serif;
  font-size: 13px;
  color: var(--amber);
  line-height: 1.8;
}

/* ─── Closing ─── */
.closing {
  padding: 120px 48px;
  text-align: center;
}
.closing-inner { max-width: 700px; margin: 0 auto; }
.closing-headline {
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 800;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}
.closing-sub {
  font-size: 18px;
  color: var(--fg-muted);
  line-height: 1.7;
  margin-bottom: 40px;
}
.closing-meta {
  font-size: 12px;
  color: #6B7280;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}
.meta-sep { color: var(--amber); }

/* ─── Footer ─── */
.footer {
  border-top: 1px solid var(--border);
  padding: 40px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
  background: var(--bg-alt);
}
.footer-brand { display: flex; align-items: center; gap: 10px; font-family: 'Syne', sans-serif; font-weight: 700; }
.footer-info { text-align: center; }
.footer-info p { font-size: 12px; color: var(--fg-muted); }
.footer-links { display: flex; gap: 24px; }
.footer-links a { font-size: 13px; color: var(--fg-muted); transition: color 0.2s; }
.footer-links a:hover { color: var(--amber); }

/* ─── Responsive ─── */
@media (max-width: 768px) {
  .navbar { padding: 16px 24px; }
  .nav-links { display: none; }
  .hero { grid-template-columns: 1fr; padding: 100px 24px 60px; min-height: auto; }
  .hero-visual { display: none; }
  .impact-grid { flex-wrap: wrap; justify-content: center; }
  .impact-divider { display: none; }
  .programs { padding: 64px 24px; }
  .programs-grid { grid-template-columns: 1fr; }
  .programs-extra { grid-template-columns: 1fr; }
  .ethos { padding: 64px 24px; }
  .ethos-pillars { grid-template-columns: 1fr; }
  .incubator { grid-template-columns: 1fr; }
  .incubator-left { padding: 64px 24px; border-right: none; border-bottom: 1px solid var(--border); }
  .incubator-right { padding: 64px 24px; }
  .closing { padding: 80px 24px; }
  .footer { padding: 32px 24px; flex-direction: column; text-align: center; }
  .footer-info { order: -1; }
  .footer-links { flex-wrap: wrap; justify-content: center; }
}

@media (max-width: 480px) {
  .impact-number { font-size: 36px; }
  .stat-large { font-size: 64px; }
}