:root {
  --bg: #f7f5f0;
  --surface: #ffffff;
  --navy: #0d1f2d;
  --amber: #e8a838;
  --amber-dark: #c9891f;
  --text: #1a1a1a;
  --text-muted: #5a6474;
  --border: #e0dbd0;
  --code-bg: #0d1f2d;
  --code-text: #e8a838;
}

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

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

/* ── NAVBAR ── */
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 48px;
  border-bottom: 1px solid var(--border);
  background: var(--surface);
}
.nav-brand {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
  display: flex;
  align-items: center;
  gap: 10px;
}
.brand-mark {
  width: 20px;
  height: 20px;
  background: var(--amber);
  border-radius: 2px;
  display: inline-block;
}
.nav-tagline {
  font-size: 13px;
  color: var(--text-muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* ── HERO ── */
.hero {
  padding: 80px 48px 80px;
  background: var(--navy);
  color: var(--bg);
}
.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero-eyebrow {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 20px;
  font-weight: 600;
}
.hero-headline {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 700;
  line-height: 1.15;
  color: var(--bg);
  margin-bottom: 24px;
}
.hero-lede {
  font-size: 17px;
  color: rgba(247, 245, 240, 0.75);
  line-height: 1.7;
  max-width: 440px;
}

/* Report Card */
.hero-report {
  display: flex;
  justify-content: center;
}
.report-card {
  background: var(--surface);
  border-radius: 8px;
  overflow: hidden;
  width: 100%;
  max-width: 360px;
  box-shadow: 0 24px 64px rgba(0,0,0,0.3);
}
.report-header {
  background: var(--navy);
  padding: 14px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.report-label { color: rgba(247,245,240,0.6); font-size: 11px; text-transform: uppercase; letter-spacing: 0.08em; }
.report-badge {
  background: var(--amber);
  color: var(--navy);
  font-size: 11px;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 20px;
}
.report-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 20px;
  border-bottom: 1px solid var(--border);
}
.report-item.ok { background: #f0faf4; }
.report-item.dispute { background: #fff8f0; }
.item-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  flex-shrink: 0;
}
.report-item.dispute .item-icon { background: #e8a838; color: white; }
.report-item.ok .item-icon { background: #3aaa6e; color: white; }
.item-info { flex: 1; min-width: 0; }
.item-name { display: block; font-size: 13px; font-weight: 600; color: var(--text); }
.item-meta { display: block; font-size: 11px; color: var(--text-muted); margin-top: 2px; }
.item-code {
  font-size: 10px;
  font-weight: 600;
  background: var(--navy);
  color: var(--amber);
  padding: 3px 7px;
  border-radius: 4px;
  white-space: nowrap;
  font-family: monospace;
  flex-shrink: 0;
}
.report-footer {
  padding: 12px 20px;
  background: var(--amber);
  font-size: 12px;
  font-weight: 600;
  color: var(--navy);
  text-align: center;
}

/* ── SHARED SECTION STYLES ── */
.section-inner { max-width: 1100px; margin: 0 auto; }
.section-eyebrow {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber);
  font-weight: 600;
  margin-bottom: 14px;
}
.section-headline {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 20px;
}
.section-sub {
  color: var(--text-muted);
  font-size: 16px;
  max-width: 560px;
  margin-bottom: 48px;
}

/* ── HOW IT WORKS ── */
.how-it-works { padding: 80px 48px; background: var(--surface); }
.steps-grid {
  display: grid;
  grid-template-columns: auto auto auto;
  gap: 0;
  align-items: start;
  margin-top: 0;
}
.step { padding: 0 40px 0 0; }
.step-divider {
  width: 1px;
  background: var(--border);
  align-self: stretch;
  margin: 0 40px;
}
.step-num {
  font-size: 48px;
  font-weight: 700;
  color: var(--amber);
  font-family: 'Playfair Display', serif;
  margin-bottom: 16px;
  line-height: 1;
}
.step h3 {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  color: var(--navy);
  margin-bottom: 10px;
}
.step p { color: var(--text-muted); font-size: 15px; line-height: 1.6; }

/* ── SCENARIOS ── */
.scenarios { padding: 80px 48px; background: var(--bg); }
.scenario-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
}
.scenario {
  background: var(--surface);
  padding: 28px 32px;
}
.scenario-icon {
  font-size: 18px;
  color: var(--amber);
  font-weight: 700;
  margin-bottom: 12px;
}
.scenario h4 {
  font-size: 16px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 8px;
}
.scenario p { font-size: 14px; color: var(--text-muted); line-height: 1.6; }

/* ── EDUCATION ── */
.education { padding: 80px 48px; background: var(--surface); }
.edu-grid {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 64px;
  align-items: start;
}
.edu-main h3 {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  color: var(--navy);
  margin-bottom: 14px;
}
.edu-main > p { color: var(--text-muted); margin-bottom: 28px; font-size: 16px; }
.edu-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.edu-list li {
  font-size: 15px;
  color: var(--text);
  padding-left: 20px;
  position: relative;
}
.edu-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 8px;
  height: 8px;
  background: var(--amber);
  border-radius: 2px;
}
.edu-stat {
  background: var(--navy);
  color: var(--bg);
  padding: 40px 32px;
  border-radius: 8px;
  text-align: center;
}
.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 64px;
  font-weight: 700;
  color: var(--amber);
  line-height: 1;
  margin-bottom: 16px;
}
.stat-label {
  font-size: 14px;
  color: rgba(247,245,240,0.7);
  line-height: 1.5;
}

/* ── MANIFESTO ── */
.manifesto {
  padding: 80px 48px;
  background: var(--bg);
  text-align: center;
}
.manifesto-inner { max-width: 680px; margin: 0 auto; }
.manifesto-quote {
  font-family: 'Playfair Display', serif;
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 600;
  color: var(--navy);
  line-height: 1.4;
  margin-bottom: 20px;
  font-style: italic;
}
.manifesto-sub { font-size: 15px; color: var(--text-muted); line-height: 1.7; }

/* ── FOOTER ── */
.footer {
  padding: 40px 48px;
  border-top: 1px solid var(--border);
  background: var(--surface);
}
.footer-inner { max-width: 1100px; margin: 0 auto; }
.footer-brand {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}
.footer-note {
  font-size: 12px;
  color: var(--text-muted);
  max-width: 560px;
  line-height: 1.6;
  margin-bottom: 16px;
}
.footer-copy { font-size: 12px; color: var(--text-muted); }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .navbar { padding: 16px 24px; }
  .hero { padding: 56px 24px; }
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .steps-grid { grid-template-columns: 1fr; gap: 32px; }
  .step-divider { display: none; }
  .step { padding: 0; }
  .scenario-grid { grid-template-columns: 1fr; }
  .edu-grid { grid-template-columns: 1fr; }
  .how-it-works, .scenarios, .education, .manifesto { padding: 56px 24px; }
  .footer { padding: 32px 24px; }
}