:root {
  --bg: #0d0d12;
  --bg-alt: #121219;
  --bg-card: #16161e;
  --fg: #f0ede6;
  --fg-muted: #8a8799;
  --accent: #f59e0b;
  --accent-dim: rgba(245,158,11,0.12);
  --border: rgba(240,237,230,0.07);
  --radius: 12px;
}

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

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 70% at 70% 40%, rgba(245,158,11,0.06) 0%, transparent 60%),
    radial-gradient(ellipse 50% 50% at 20% 80%, rgba(245,158,11,0.04) 0%, transparent 50%),
    linear-gradient(160deg, #0d0d12 0%, #111118 40%, #0f0e14 100%);
  z-index: 0;
}

.hero-bg::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0.4;
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 860px;
  margin: 0 auto;
  padding: 80px 40px;
  text-align: center;
}

.hero-kicker {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
}

.hero-headline {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(42px, 7vw, 80px);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--fg);
  margin-bottom: 28px;
}

.hero-sub {
  font-size: 18px;
  color: var(--fg-muted);
  max-width: 560px;
  margin: 0 auto;
  font-weight: 300;
}

/* ── MODES ── */
.modes {
  background: var(--bg-alt);
  padding: 100px 40px;
  border-top: 1px solid var(--border);
}

.modes-header {
  text-align: center;
  margin-bottom: 64px;
}

.modes-header h2 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 12px;
}

.modes-header p {
  color: var(--fg-muted);
  font-size: 17px;
}

.modes-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  max-width: 900px;
  margin: 0 auto;
}

.mode-card {
  background: var(--bg-card);
  padding: 48px 40px;
  position: relative;
}

.mode-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 40px;
  right: 40px;
  height: 2px;
  background: var(--accent);
  opacity: 0;
  transition: opacity 0.3s;
}

.mode-card:hover::after { opacity: 0.6; }

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

.mode-card h3 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 6px;
}

.mode-tag {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
}

.mode-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mode-list li {
  font-size: 15px;
  color: var(--fg-muted);
  padding-left: 20px;
  position: relative;
}

.mode-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}

/* ── HOW IT WORKS ── */
.howitworks {
  background: var(--bg);
  padding: 100px 40px;
  border-top: 1px solid var(--border);
}

.section-headline {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(26px, 4vw, 40px);
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 8px;
  text-align: center;
}

.section-sub {
  text-align: center;
  color: var(--fg-muted);
  font-size: 17px;
  margin-bottom: 72px;
}

.steps {
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 24px;
  padding: 40px 0;
  border-bottom: 1px solid var(--border);
  align-items: start;
}

.step:last-child { border-bottom: none; }

.step-number {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 52px;
  font-weight: 300;
  color: var(--accent);
  opacity: 0.5;
  line-height: 1;
  padding-top: 4px;
}

.step-content h4 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--fg);
}

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

/* ── PHILOSOPHY ── */
.philosophy {
  background: var(--bg-alt);
  padding: 100px 40px;
  border-top: 1px solid var(--border);
}

.philosophy-inner {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.philosophy-quote {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(22px, 3vw, 32px);
  font-style: italic;
  font-weight: 300;
  color: var(--fg);
  line-height: 1.4;
  margin-bottom: 12px;
}

.philosophy-attribution {
  font-size: 13px;
  color: var(--accent);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 48px;
}

.philosophy-body p {
  font-size: 16px;
  color: var(--fg-muted);
  line-height: 1.8;
  margin-bottom: 20px;
  text-align: left;
}

/* ── OUTCOMES ── */
.outcomes {
  background: var(--bg);
  padding: 100px 40px;
  border-top: 1px solid var(--border);
}

.outcomes-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  max-width: 1000px;
  margin: 0 auto;
}

.outcome {
  background: var(--bg-card);
  padding: 40px 28px;
  text-align: center;
}

.outcome-stat {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 12px;
  line-height: 1;
}

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

/* ── CLOSING ── */
.closing {
  background: var(--bg-alt);
  padding: 120px 40px;
  border-top: 1px solid var(--border);
}

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

.closing-inner h2 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 600;
  line-height: 1.15;
  color: var(--fg);
  margin-bottom: 20px;
}

.closing-inner p {
  font-size: 17px;
  color: var(--fg-muted);
  line-height: 1.75;
}

/* ── FOOTER ── */
footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 48px 40px;
}

.footer-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-logo {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--fg);
}

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

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

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .hero-inner { padding: 60px 24px; }
  .modes, .howitworks, .philosophy, .outcomes, .closing { padding: 72px 24px; }
  .modes-grid { grid-template-columns: 1fr; }
  .outcomes-grid { grid-template-columns: repeat(2, 1fr); }
  .step { grid-template-columns: 56px 1fr; gap: 16px; }
  .step-number { font-size: 38px; }
  .footer-inner { flex-direction: column; gap: 16px; text-align: center; }
}

@media (max-width: 480px) {
  .outcomes-grid { grid-template-columns: 1fr 1fr; }
}