:root {
  --bg: #050810;
  --surface: #0c1220;
  --surface-2: #111b2e;
  --accent: #f59e0b;
  --accent-dim: #d97706;
  --fg: #e8e4d9;
  --fg-2: #9b9486;
  --fg-3: #5a5449;
}

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

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  line-height: 1.1;
}

a { color: var(--accent); text-decoration: none; }
a:hover { color: var(--accent-dim); }

/* HERO */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 80px 60px 60px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  left: -200px;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(245,158,11,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.hero-content { max-width: 580px; z-index: 1; }

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

.hero-headline {
  font-size: clamp(56px, 6vw, 80px);
  font-weight: 800;
  color: var(--fg);
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.hero-sub {
  font-size: 18px;
  color: var(--fg-2);
  max-width: 480px;
  margin-bottom: 48px;
  line-height: 1.7;
}

.hero-specs {
  display: flex;
  align-items: center;
  gap: 24px;
}

.spec { display: flex; flex-direction: column; gap: 4px; }

.spec-value {
  font-family: 'Syne', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--accent);
}

.spec-label {
  font-size: 12px;
  color: var(--fg-3);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.spec-divider {
  width: 1px;
  height: 40px;
  background: var(--fg-3);
}

/* ORBIT VISUAL */
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 480px;
}

.orbit-core {
  width: 40px;
  height: 40px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 40px rgba(245,158,11,0.6), 0 0 80px rgba(245,158,11,0.3);
  position: absolute;
  z-index: 2;
}

.orbit-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(245,158,11,0.15);
}

.orbit-ring-1 { width: 160px; height: 160px; }
.orbit-ring-2 { width: 280px; height: 280px; border-color: rgba(245,158,11,0.08); }
.orbit-ring-3 { width: 420px; height: 420px; border-color: rgba(245,158,11,0.05); }

/* MANIFESTO */
.manifesto {
  padding: 100px 60px;
  background: var(--surface);
  border-top: 1px solid rgba(245,158,11,0.1);
}

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

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

.manifesto-text {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 700;
  margin-bottom: 32px;
  line-height: 1.2;
}

.highlight { color: var(--accent); }

.manifesto-body {
  font-size: 18px;
  color: var(--fg-2);
  max-width: 640px;
  line-height: 1.75;
}

/* PROCESS */
.process {
  padding: 100px 60px;
  background: var(--bg);
}

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

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

.section-title {
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 700;
  max-width: 600px;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.04);
}

.process-step {
  padding: 48px 40px;
  background: var(--bg);
}

.step-number {
  font-family: 'Syne', sans-serif;
  font-size: 48px;
  font-weight: 800;
  color: rgba(245,158,11,0.15);
  margin-bottom: 16px;
}

.step-title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 12px;
}

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

/* OUTCOMES */
.outcomes {
  padding: 100px 60px;
  background: var(--surface);
  border-top: 1px solid rgba(255,255,255,0.04);
}

.outcomes-title { margin-bottom: 48px; }

.outcomes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.04);
}

.outcome-card {
  padding: 48px 36px;
  background: var(--surface);
}

.outcome-metric {
  font-family: 'Syne', sans-serif;
  font-size: 40px;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 8px;
}

.outcome-label {
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fg-3);
  margin-bottom: 16px;
}

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

/* CLOSING */
.closing {
  padding: 120px 60px;
  background: var(--bg);
  text-align: center;
}

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

.closing-eyebrow {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--fg-3);
  margin-bottom: 20px;
}

.closing-headline {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
}

.closing-sub {
  font-size: 16px;
  color: var(--fg-2);
  margin-bottom: 40px;
}

.closing-contact {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  font-size: 18px;
}

.contact-link { color: var(--fg); }
.contact-link:hover { color: var(--accent); }
.contact-sep { color: var(--fg-3); }

/* FOOTER */
.footer {
  padding: 32px 60px;
  background: var(--surface);
  border-top: 1px solid rgba(255,255,255,0.04);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-name {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 16px;
}

.footer-tagline {
  font-size: 13px;
  color: var(--fg-3);
}

.footer-brand { display: flex; flex-direction: column; gap: 4px; }

.footer-meta { display: flex; align-items: center; gap: 8px; }
.footer-link { font-size: 13px; color: var(--fg-2); }
.footer-link:hover { color: var(--accent); }
.footer-sep { color: var(--fg-3); }
.footer-note { font-size: 12px; color: var(--fg-3); }

/* MOBILE */
@media (max-width: 768px) {
  .hero { grid-template-columns: 1fr; padding: 80px 28px 60px; }
  .hero-visual { display: none; }
  .process-grid { grid-template-columns: 1fr; }
  .outcomes-grid { grid-template-columns: 1fr; }
  .manifesto, .process, .outcomes, .closing { padding: 72px 28px; }
  .footer { padding: 32px 28px; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
  .closing-contact { flex-direction: column; gap: 8px; }
  .contact-sep { display: none; }
  .hero-headline { font-size: 48px; }
}