:root {
  --bg: #0f172a;
  --bg-soft: #111c35;
  --card: rgba(255,255,255,0.06);
  --card-strong: rgba(255,255,255,0.1);
  --line: rgba(255,255,255,0.12);
  --text: #f8fafc;
  --muted: #cbd5e1;
  --accent: #f97316;
  --accent-soft: rgba(249,115,22,0.18);
  --success: #22c55e;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: radial-gradient(circle at top, #172554 0%, #0f172a 55%, #09101f 100%);
  color: var(--text);
}

.page-shell {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding: 24px 0 72px;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 28px 28px 34px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(249,115,22,0.16), rgba(249,115,22,0.02)),
    linear-gradient(160deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
  box-shadow: 0 28px 60px rgba(0,0,0,0.28);
}

.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  margin-bottom: 52px;
}

.brand {
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}

.jam-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  border: 1px solid rgba(249,115,22,0.35);
  border-radius: 999px;
  color: var(--text);
  text-decoration: none;
  background: rgba(249,115,22,0.1);
  font-size: 14px;
}

.eyebrow,
.section-kicker {
  display: inline-block;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  color: #fde68a;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero h1 {
  font-size: clamp(44px, 7vw, 76px);
  line-height: 0.96;
  margin: 18px 0 18px;
  max-width: 720px;
}

.hero-text {
  max-width: 720px;
  font-size: 19px;
  line-height: 1.65;
  color: var(--muted);
}

.stats-grid,
.card-grid {
  display: grid;
  gap: 18px;
}

.stats-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 34px;
}

.stat-card,
.info-card,
.highlight-box,
.evidence-box,
.stats-band,
.timeline-item {
  border: 1px solid var(--line);
  background: var(--card);
  backdrop-filter: blur(10px);
}

.stat-card {
  padding: 22px;
  border-radius: 22px;
}

.stat-number {
  display: block;
  font-size: 34px;
  font-weight: 800;
  color: #fff7ed;
}

.stat-label {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  line-height: 1.45;
}

.section {
  margin-top: 22px;
  padding: 32px 28px;
  border-radius: 28px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.02));
}

.section-head {
  margin-bottom: 22px;
}

.section h2 {
  margin: 14px 0 0;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.08;
}

.highlight-box,
.evidence-box {
  padding: 22px 24px;
  border-radius: 22px;
}

.highlight-box p,
.evidence-box,
.info-card p,
.info-card li,
.timeline-body p {
  color: var(--muted);
  line-height: 1.7;
}

.highlight-box {
  background: linear-gradient(135deg, rgba(249,115,22,0.18), rgba(249,115,22,0.04));
}

.highlight-box.subtle {
  background: rgba(255,255,255,0.04);
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.pill {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--line);
  color: #e2e8f0;
  font-size: 14px;
}

.two-col { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.three-col { grid-template-columns: repeat(3, minmax(0, 1fr)); }

.info-card {
  padding: 22px;
  border-radius: 22px;
}

.info-card h3,
.timeline-body h3 {
  margin: 0 0 10px;
  font-size: 22px;
}

.info-card ul {
  margin: 0;
  padding-left: 18px;
}

.info-card.accent {
  background: linear-gradient(135deg, rgba(249,115,22,0.2), rgba(255,255,255,0.05));
}

.timeline {
  display: grid;
  gap: 16px;
}

.timeline-item {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 18px;
  padding: 20px;
  border-radius: 22px;
}

.timeline-date {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fdba74;
}

.stats-band {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  padding: 20px;
  border-radius: 22px;
}

.stats-band div {
  padding: 8px 10px;
}

.stats-band strong {
  display: block;
  font-size: 34px;
  color: #fff7ed;
}

.stats-band span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  line-height: 1.5;
}

.caution-section {
  border-color: rgba(249,115,22,0.25);
}

.info-card.caution {
  background: rgba(249,115,22,0.08);
}

@media (max-width: 960px) {
  .page-shell { width: min(100% - 24px, 1180px); }
  .stats-grid,
  .three-col,
  .two-col,
  .stats-band {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 720px) {
  .topbar,
  .timeline-item,
  .stats-grid,
  .three-col,
  .two-col,
  .stats-band {
    grid-template-columns: 1fr;
    display: grid;
  }

  .topbar {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }

  .hero,
  .section {
    padding: 22px 18px;
    border-radius: 22px;
  }

  .hero-text {
    font-size: 17px;
  }

  .timeline-item {
    gap: 10px;
  }
}
