:root {
  --ink: #10243a;
  --muted: #65717d;
  --paper: #f5f2eb;
  --white: #fff;
  --line: #d9d9d3;
  --red: #a91f38;
  --blue: #1f5f86;
  --green: #277657;
  --gold: #c48b2b;
}

* { box-sizing: border-box; }
body { margin: 0; color: var(--ink); background: var(--paper); font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; line-height: 1.5; }
a { color: inherit; }
.topbar { height: 6px; background: var(--red); }
.wrap { width: min(1040px, calc(100% - 40px)); margin: 0 auto; padding: 54px 0 80px; }
.zone-nav { margin-bottom: 28px; }
.zone-nav a { color: var(--blue); font-size: 14px; font-weight: 700; text-decoration: none; }
.zone-nav a:hover { text-decoration: underline; }
.eyebrow { margin: 0 0 8px; color: var(--red); font-size: 12px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
h1, h2 { font-family: Georgia, "Times New Roman", serif; font-weight: 500; line-height: 1.08; }
h1 { max-width: 760px; margin: 0 0 14px; font-size: clamp(40px, 7vw, 68px); letter-spacing: -.035em; }
h2 { margin: 0 0 8px; font-size: 25px; }
.lede { max-width: 720px; margin: 0; color: var(--muted); font-size: 18px; }
.status-row { display: flex; flex-wrap: wrap; gap: 8px; margin: 24px 0 34px; }
.pill { padding: 5px 10px; border: 1px solid var(--line); border-radius: 999px; background: var(--white); color: var(--muted); font-size: 12px; font-weight: 700; }
.pill.live { color: var(--green); background: #e9f3ed; border-color: #c9dfd2; }
.progress { margin-top: 34px; }
.progress-head { display: flex; justify-content: space-between; gap: 20px; align-items: end; margin-bottom: 12px; }
.progress-head p { margin: 0; color: var(--muted); font-size: 13px; }
.bar { height: 10px; overflow: hidden; border-radius: 999px; background: #deddd8; }
.bar > div { width: 100%; height: 100%; background: var(--green); transition: width .4s ease; }
.steps { display: grid; grid-template-columns: repeat(5, 1fr); gap: 10px; margin-top: 20px; }
.step { min-height: 124px; padding: 16px; border: 1px solid var(--line); border-radius: 8px; background: var(--white); }
.step .num { display: inline-grid; width: 24px; height: 24px; place-items: center; border-radius: 50%; color: var(--muted); background: #ecebe7; font-size: 11px; font-weight: 700; }
.step strong { display: block; margin: 12px 0 5px; font-size: 14px; }
.step p { margin: 0; color: var(--muted); font-size: 12px; }
.step.active { border-color: #9dc0d2; box-shadow: inset 0 4px 0 var(--blue); }
.step.active .num { color: var(--white); background: var(--blue); }
.step.done { box-shadow: inset 0 4px 0 var(--green); }
.step.done .num { color: var(--white); background: var(--green); }
.current { margin-top: 28px; padding: 18px 20px; border-left: 4px solid var(--gold); background: #fbf5e8; }
.current strong { display: block; margin-bottom: 3px; }
.current p { margin: 0; color: #5d584d; }
.presentations { margin-top: 54px; border-top: 1px solid var(--line); }
.presentation { display: grid; grid-template-columns: 130px 1fr auto; align-items: center; gap: 20px; padding: 25px 0; border-bottom: 1px solid var(--line); text-decoration: none; }
.presentation .date { color: var(--muted); font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; }
.presentation p { margin: 0; color: var(--muted); font-size: 14px; }
.presentation .arrow { color: var(--red); font-size: 24px; }
.updated { margin-top: 18px; color: var(--muted); font-size: 12px; }
@media (max-width: 760px) {
  .steps { grid-template-columns: 1fr; }
  .step { min-height: auto; }
  .presentation { grid-template-columns: 1fr auto; }
  .presentation .date { grid-column: 1 / -1; }
}
