:root {
  --bg-deep: #1a1a2e;
  --bg-section: #16213e;
  --bg-card: #1e2a4a;
  --fg: #e8e6e3;
  --fg-muted: #9a9590;
  --fg-dim: #6b6560;
  --accent: #c9a84c;
  --accent-soft: rgba(201, 168, 76, 0.15);
  --accent-glow: rgba(201, 168, 76, 0.08);
  --warm: #d4a574;
  --serif: 'Playfair Display', Georgia, serif;
  --sans: 'Plus Jakarta Sans', -apple-system, sans-serif;
  --max-w: 1120px;
  --space-xl: clamp(80px, 10vw, 140px);
  --space-lg: clamp(48px, 6vw, 80px);
  --space-md: clamp(24px, 3vw, 40px);
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg-deep);
  color: var(--fg);
  font-family: var(--sans);
  font-size: clamp(16px, 1.1vw, 18px);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
}

/* ---- HERO ---- */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--space-xl) 0;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -20%;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
  pointer-events: none;
}

.hero-eyebrow {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 32px;
}

.hero h1 {
  font-family: var(--serif);
  font-size: clamp(40px, 5.5vw, 72px);
  font-weight: 700;
  line-height: 1.1;
  color: var(--fg);
  max-width: 800px;
  margin-bottom: 32px;
}

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

.hero-sub {
  font-size: clamp(18px, 1.5vw, 22px);
  line-height: 1.6;
  color: var(--fg-muted);
  max-width: 560px;
}

.hero-stat {
  display: inline-flex;
  align-items: baseline;
  gap: 12px;
  margin-top: 48px;
  padding: 20px 28px;
  background: var(--accent-soft);
  border-left: 3px solid var(--accent);
  border-radius: 0 8px 8px 0;
}

.hero-stat strong {
  font-family: var(--serif);
  font-size: 28px;
  color: var(--accent);
}

.hero-stat span {
  color: var(--fg-muted);
  font-size: 15px;
}

/* ---- DIVIDER ---- */
.section-divider {
  width: 60px;
  height: 1px;
  background: var(--accent);
  opacity: 0.4;
  margin: var(--space-xl) auto;
}

/* ---- SCOPE ---- */
.scope {
  padding: var(--space-lg) 0;
}

.scope-header {
  margin-bottom: var(--space-lg);
}

.scope-header h2 {
  font-family: var(--serif);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
}

.scope-header p {
  color: var(--fg-muted);
  max-width: 520px;
  font-size: 17px;
}

.scope-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.scope-card {
  padding: 32px;
  background: var(--bg-card);
  border-radius: 12px;
  border: 1px solid rgba(201, 168, 76, 0.1);
  transition: border-color 0.3s;
}

.scope-card:hover {
  border-color: rgba(201, 168, 76, 0.3);
}

.scope-card-icon {
  font-size: 28px;
  margin-bottom: 16px;
  display: block;
}

.scope-card h3 {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--fg);
}

.scope-card p {
  color: var(--fg-muted);
  font-size: 15px;
  line-height: 1.6;
}

/* ---- PROCESS ---- */
.process {
  padding: var(--space-xl) 0;
  background: var(--bg-section);
}

.process-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
}

.process h2 {
  font-family: var(--serif);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 700;
  margin-bottom: var(--space-lg);
}

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

.process-steps::before {
  content: '';
  position: absolute;
  top: 32px;
  left: 15%;
  right: 15%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0.25;
}

.step {
  text-align: center;
}

.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--accent-soft);
  border: 2px solid var(--accent);
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}

.step h3 {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
}

.step p {
  color: var(--fg-muted);
  font-size: 15px;
  max-width: 280px;
  margin: 0 auto;
}

/* ---- BURDEN (stats) ---- */
.burden {
  padding: var(--space-xl) 0;
}

.burden-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  align-items: center;
}

.burden-text h2 {
  font-family: var(--serif);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
}

.burden-text p {
  color: var(--fg-muted);
  font-size: 17px;
  max-width: 480px;
}

.burden-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.stat-block {
  padding: 28px;
  background: var(--bg-card);
  border-radius: 12px;
  text-align: center;
}

.stat-block .num {
  font-family: var(--serif);
  font-size: clamp(32px, 3vw, 48px);
  font-weight: 700;
  color: var(--accent);
  display: block;
  line-height: 1.1;
}

.stat-block .label {
  font-size: 13px;
  color: var(--fg-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 8px;
  display: block;
}

/* ---- CLOSING ---- */
.closing {
  padding: var(--space-xl) 0;
  text-align: center;
  position: relative;
}

.closing::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 400px;
  background: radial-gradient(ellipse, var(--accent-glow) 0%, transparent 70%);
  pointer-events: none;
}

.closing blockquote {
  font-family: var(--serif);
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 400;
  font-style: italic;
  line-height: 1.4;
  color: var(--fg);
  max-width: 700px;
  margin: 0 auto 24px;
  position: relative;
}

.closing-sub {
  color: var(--fg-muted);
  font-size: 17px;
  max-width: 500px;
  margin: 0 auto;
}

/* ---- FOOTER ---- */
footer {
  padding: 48px 0;
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-brand {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 8px;
}

footer p {
  color: var(--fg-dim);
  font-size: 13px;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 768px) {
  .process-steps {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .process-steps::before { display: none; }
  
  .burden-layout {
    grid-template-columns: 1fr;
  }
  
  .burden-stats {
    grid-template-columns: 1fr 1fr;
  }
  
  .scope-grid {
    grid-template-columns: 1fr;
  }
}

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