:root {
  --bg: #0a0a0b;
  --surface: #111113;
  --fg: #f7f3ee;
  --fg-muted: #9a9389;
  --accent: #e8a94b;
  --accent-dim: rgba(232, 169, 75, 0.12);
  --border: rgba(247, 243, 238, 0.08);
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
}

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

html { font-size: 16px; scroll-behavior: smooth; }

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

/* ─── HERO ─────────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  gap: 0;
  padding: 80px 64px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 80% 50%, rgba(232,169,75,0.06) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 20% 80%, rgba(232,169,75,0.03) 0%, transparent 60%);
  pointer-events: none;
}

.hero-inner {
  max-width: 680px;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.hero-eyebrow {
  margin-bottom: 32px;
}

.eyebrow-tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid rgba(232,169,75,0.3);
  padding: 6px 14px;
  border-radius: 2px;
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(52px, 6.5vw, 88px);
  font-weight: 900;
  line-height: 1.04;
  letter-spacing: -0.02em;
  color: var(--fg);
  margin-bottom: 28px;
}

.hero-headline em {
  font-style: italic;
  color: var(--accent);
}

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

.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
  gap: 0;
}

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

.stat:first-child { padding-left: 0; }

.stat-number {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 6px;
}

.stat-label {
  font-size: 12px;
  font-weight: 400;
  color: var(--fg-muted);
  letter-spacing: 0.02em;
  white-space: nowrap;
}

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

/* ─── VISUAL RINGS (right side) ───────────────────────────────── */
.hero-visual {
  position: absolute;
  right: 80px;
  top: 50%;
  transform: translateY(-50%);
  width: 480px;
  height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  z-index: 0;
}

.visual-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(232,169,75,0.12);
}

.visual-ring-1 { width: 320px; height: 320px; animation: spin 30s linear infinite; }
.visual-ring-2 { width: 420px; height: 420px; animation: spin 45s linear infinite reverse; border-color: rgba(232,169,75,0.07); }
.visual-ring-3 { width: 480px; height: 480px; border-style: dashed; border-color: rgba(232,169,75,0.05); animation: spin 60s linear infinite; }

@keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }

.visual-center {
  position: relative;
  z-index: 1;
}

.visual-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232,169,75,0.15) 0%, transparent 70%);
  border: 1px solid rgba(232,169,75,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
}

.visual-icon::after {
  content: '';
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 20px rgba(232,169,75,0.6);
}

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

.outcomes-inner { max-width: 1200px; margin: 0 auto; }

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

.outcomes-headline {
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--fg);
  margin-bottom: 64px;
}

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

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

.outcome-card:hover { border-color: rgba(232,169,75,0.2); }

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

.outcome-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

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

/* ─── HOW ──────────────────────────────────────────────────────── */
.how {
  padding: 120px 64px;
  border-top: 1px solid var(--border);
}

.how-inner { max-width: 1200px; margin: 0 auto; }

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

.how-headline {
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--fg);
  margin-bottom: 72px;
}

.steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
}

.step {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.step-num {
  font-family: var(--font-display);
  font-size: 72px;
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 24px;
  opacity: 0.3;
}

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

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

.step-connector {
  width: 80px;
  flex-shrink: 0;
  height: 1px;
  background: var(--border);
  margin: 36px 40px 0;
  align-self: flex-start;
  margin-top: 56px;
}

/* ─── MANIFESTO ────────────────────────────────────────────────── */
.manifesto {
  padding: 140px 64px;
  background: var(--surface);
  border-top: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.manifesto::before {
  content: '';
  position: absolute;
  top: -100px;
  left: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(232,169,75,0.04) 0%, transparent 60%);
  pointer-events: none;
}

.manifesto-inner { max-width: 900px; margin: 0 auto; position: relative; z-index: 1; }

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

.manifesto-quote {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: var(--fg);
  font-style: italic;
  margin-bottom: 40px;
  border-left: 3px solid var(--accent);
  padding-left: 32px;
}

.manifesto-body {
  font-size: 18px;
  line-height: 1.75;
  color: var(--fg-muted);
  margin-bottom: 24px;
  padding-left: 32px;
}

.manifesto-body em { color: var(--fg); font-style: normal; }

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

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

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

.footer-name {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--fg);
}

.footer-tagline {
  font-size: 12px;
  color: var(--fg-muted);
  letter-spacing: 0.05em;
}

.footer-copy {
  font-size: 14px;
  color: var(--fg-muted);
  text-align: right;
}

/* ─── RESPONSIVE ───────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-visual { display: none; }
  .hero { padding: 80px 40px; }
}

@media (max-width: 768px) {
  .hero { padding: 60px 24px; min-height: auto; padding-top: 100px; padding-bottom: 80px; }
  .hero-headline { font-size: 44px; }
  .hero-sub { font-size: 16px; margin-bottom: 40px; }
  .hero-stats { gap: 24px; }
  .stat-divider { display: none; }
  .stat { padding: 0; flex: 1 1 45%; }
  .outcomes { padding: 80px 24px; }
  .outcomes-grid { grid-template-columns: 1fr; }
  .outcome-card { padding: 32px; }
  .how { padding: 80px 24px; }
  .steps { flex-direction: column; gap: 0; }
  .step-connector { display: none; }
  .step { padding-bottom: 48px; }
  .step-num { font-size: 48px; }
  .manifesto { padding: 80px 24px; }
  .manifesto-quote { font-size: 26px; padding-left: 20px; }
  .manifesto-body { padding-left: 20px; }
  .footer { padding: 40px 24px; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
  .footer-copy { text-align: left; }
}
