:root {
  color-scheme: light;
  --ink: #15171a;
  --muted: #5c6470;
  --line: #d9dee5;
  --paper: #f7f3ea;
  --panel: #ffffff;
  --accent: #1e6f5c;
  --accent-2: #c45f2d;
  --soft: #e6edf0;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  line-height: 1.5;
}

a {
  color: inherit;
  text-decoration: none;
}

.hero {
  min-height: 76vh;
  display: flex;
  flex-direction: column;
  background:
    linear-gradient(115deg, rgba(21, 23, 26, 0.82), rgba(21, 23, 26, 0.32)),
    url("https://images.unsplash.com/photo-1517976487492-5750f3195933?auto=format&fit=crop&w=1800&q=80");
  background-position: center;
  background-size: cover;
  color: #fff;
}

.topbar {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  font-weight: 800;
  letter-spacing: 0;
}

.navlinks {
  display: flex;
  gap: 18px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.95rem;
}

.hero-grid {
  width: min(1120px, calc(100% - 32px));
  margin: auto;
  padding: 64px 0 86px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 44px;
  align-items: end;
}

.hero-copy {
  max-width: 760px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--accent-2);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #ffc997;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 20px;
  font-size: clamp(2.4rem, 7vw, 5.9rem);
  line-height: 0.98;
  letter-spacing: 0;
  max-width: 900px;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1.05;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 8px;
  font-size: 1.05rem;
}

.lede {
  max-width: 680px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1.05rem, 2vw, 1.25rem);
}

.status-panel {
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.11);
  backdrop-filter: blur(14px);
  border-radius: 8px;
  padding: 22px;
  min-height: 170px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.panel-label {
  margin-bottom: 16px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.status-panel strong {
  display: block;
  font-size: 1.55rem;
  line-height: 1.1;
}

.status-panel span {
  color: rgba(255, 255, 255, 0.78);
}

.band {
  padding: 68px max(16px, calc((100vw - 1120px) / 2));
}

.band.alt {
  background: var(--soft);
}

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

.metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.metric,
.rules article,
.timeline li {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.metric {
  min-height: 126px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.metric span {
  color: var(--muted);
  font-size: 0.9rem;
}

.metric strong {
  font-size: clamp(1.45rem, 3vw, 2.15rem);
  line-height: 1.1;
}

.timeline {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.timeline li {
  padding: 20px;
}

.timeline time {
  display: block;
  margin-bottom: 8px;
  color: var(--accent);
  font-size: 0.86rem;
  font-weight: 800;
}

.timeline h3 {
  margin-bottom: 6px;
}

.timeline p {
  margin-bottom: 0;
  color: var(--muted);
}

.rules {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.rules article {
  padding: 20px;
}

.rules p {
  margin-bottom: 0;
  color: var(--muted);
}

footer {
  padding: 28px max(16px, calc((100vw - 1120px) / 2));
  display: flex;
  justify-content: space-between;
  gap: 18px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.9rem;
}

@media (max-width: 780px) {
  .topbar,
  footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .navlinks {
    width: 100%;
    justify-content: space-between;
  }

  .hero-grid,
  .metrics,
  .rules {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    padding-top: 34px;
    gap: 28px;
  }

  .band {
    padding-top: 48px;
    padding-bottom: 48px;
  }
}
