:root {
  color-scheme: light;
  --bg: #f7f7f4;
  --ink: #172019;
  --muted: #5f685f;
  --line: #d8ddd5;
  --panel: #ffffff;
  --accent: #176c4a;
  --accent-2: #0f172a;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.5;
}

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

.topbar,
main,
footer {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
}

nav {
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--muted);
  font-size: 15px;
}

nav a[aria-current="page"],
nav a:hover {
  color: var(--ink);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: 48px;
  align-items: center;
  min-height: calc(100vh - 180px);
  padding: 44px 0 72px;
}

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

.eyebrow,
.tile-kicker {
  margin: 0 0 14px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  max-width: 780px;
  font-size: clamp(38px, 6vw, 72px);
  line-height: 0.98;
  letter-spacing: 0;
}

.lead {
  max-width: 660px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 19px;
}

.panel {
  margin: 0;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: 0 20px 50px rgb(15 23 42 / 0.08);
}

.panel-row,
.status-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 64px;
  padding: 0 18px;
  border-bottom: 1px solid var(--line);
}

.panel-row:last-child,
.status-row:last-child {
  border-bottom: 0;
}

.panel-row span,
.status-row span {
  color: var(--muted);
}

.panel-row strong,
.status-row strong {
  color: var(--accent);
  font-size: 15px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  padding: 0 0 72px;
}

.tile {
  min-height: 184px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}

.tile strong {
  display: block;
  font-size: 21px;
}

.tile p,
.note {
  margin: 12px 0 0;
  color: var(--muted);
}

.narrow {
  max-width: 760px;
  padding: 88px 0 96px;
}

.narrow h1 {
  font-size: clamp(36px, 7vw, 58px);
}

.status-list,
.entry {
  margin-top: 32px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}

.entry {
  padding: 24px;
}

.entry time {
  color: var(--muted);
  font-size: 14px;
}

.entry h2 {
  margin: 8px 0;
  font-size: 24px;
}

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

.center {
  text-align: center;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  margin-top: 28px;
  padding: 0 18px;
  border-radius: 8px;
  background: var(--accent-2);
  color: white;
  font-weight: 700;
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 28px 0 36px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
}

@media (max-width: 760px) {
  .topbar,
  main,
  footer {
    width: min(100% - 28px, 1120px);
  }

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

  nav {
    flex-wrap: wrap;
  }

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

  .hero {
    gap: 28px;
    min-height: 0;
    padding: 42px 0 48px;
  }

  h1 {
    font-size: 42px;
  }
}
