:root {
  --bg: #0A1628;
  --surface: #111e33;
  --surface-2: #162440;
  --fg: #f0f4ff;
  --fg-muted: #8898b0;
  --accent: #F59E0B;
  --accent-dim: rgba(245, 158, 11, 0.12);
  --border: rgba(240, 244, 255, 0.08);
}

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

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

h1, h2, h3, h4 {
  font-family: 'Sora', sans-serif;
  line-height: 1.15;
}

/* HERO */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 64px 64px;
  max-width: 960px;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 32px;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 12px var(--accent);
}

.eyebrow-label {
  font-size: 13px;
  font-weight: 500;
  color: var(--fg-muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

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

.hero-lede {
  font-size: clamp(16px, 1.8vw, 20px);
  color: var(--fg-muted);
  max-width: 580px;
  margin-bottom: 56px;
  line-height: 1.7;
}

.hero-stat-row {
  display: flex;
  align-items: center;
  gap: 0;
}

.stat {
  display: flex;
  flex-direction: column;
  padding: 0 40px 0 0;
}

.stat-number {
  font-family: 'Sora', sans-serif;
  font-size: 40px;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 6px;
}

.stat-label {
  font-size: 13px;
  color: var(--fg-muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.stat-divider {
  width: 1px;
  height: 56px;
  background: var(--border);
  margin: 0 40px 0 0;
}

/* PHILOSOPHY */
.philosophy {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.philosophy-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  padding: 80px 64px;
  max-width: 1200px;
}

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

.philosophy-quote {
  padding-left: 40px;
  border-left: 2px solid var(--accent);
  position: relative;
}

.quote-mark {
  font-family: 'Sora', sans-serif;
  font-size: 80px;
  color: var(--accent);
  line-height: 1;
  display: block;
  margin-bottom: -16px;
  opacity: 0.4;
}

.philosophy-quote blockquote {
  font-size: 18px;
  font-style: italic;
  color: var(--fg);
  line-height: 1.7;
  margin-bottom: 20px;
}

.philosophy-quote cite {
  font-size: 13px;
  color: var(--fg-muted);
  font-style: normal;
}

/* PROCESS */
.process {
  padding: 96px 64px;
  max-width: 1200px;
}

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

.section-headline {
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 64px;
  max-width: 600px;
  letter-spacing: -0.02em;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}

.process-step {
  padding: 36px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 4px;
}

.step-number {
  font-family: 'Sora', sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.06em;
  margin-bottom: 20px;
}

.step-title {
  font-size: 22px;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 14px;
}

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

/* OUTCOMES */
.outcomes {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 96px 64px;
}

.outcomes-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  max-width: 960px;
}

.outcome {
  padding: 32px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 4px;
}

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

.outcome-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 10px;
}

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

/* CLOSING */
.closing {
  padding: 80px 64px;
  max-width: 960px;
  border-bottom: 1px solid var(--border);
}

.closing-statement {
  font-size: clamp(18px, 2.2vw, 26px);
  color: var(--fg-muted);
  line-height: 1.8;
  max-width: 700px;
}

/* FOOTER */
.footer {
  padding: 40px 64px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

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

.footer-name {
  font-family: 'Sora', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--fg);
}

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

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

/* MOBILE */
@media (max-width: 768px) {
  .hero { padding: 60px 28px 48px; }
  .philosophy-inner { grid-template-columns: 1fr; gap: 40px; padding: 60px 28px; }
  .philosophy-quote { padding-left: 0; border-left: none; border-top: 2px solid var(--accent); padding-top: 32px; }
  .process { padding: 60px 28px; }
  .process-steps { grid-template-columns: 1fr; }
  .outcomes { padding: 60px 28px; }
  .outcomes-grid { grid-template-columns: 1fr; }
  .closing { padding: 60px 28px; }
  .footer { padding: 32px 28px; flex-direction: column; gap: 16px; align-items: flex-start; }
  .hero-stat-row { flex-direction: column; gap: 24px; align-items: flex-start; }
  .stat-divider { display: none; }
}
