:root {
  color-scheme: light;
  --bg: #f7f8f5;
  --text: #1f2528;
  --muted: #657078;
  --line: #d8ded7;
  --panel: #ffffff;
  --accent: #1f7a64;
  --accent-2: #b25e2b;
  --ink-soft: #edf2ee;
}

* {
  box-sizing: border-box;
}

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

a {
  color: inherit;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  max-width: 1120px;
  margin: 0 auto;
  padding: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-weight: 700;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 8px;
  background: var(--text);
  color: #fff;
  font-size: 13px;
  letter-spacing: 0;
}

nav {
  display: flex;
  gap: 18px;
  color: var(--muted);
  font-size: 14px;
}

nav a {
  text-decoration: none;
}

main {
  max-width: 1120px;
  margin: 0 auto;
  padding: 28px 24px 56px;
}

.intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 40px;
  align-items: end;
  min-height: 360px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 64px 0;
}

.eyebrow,
.date,
.status-label {
  margin: 0 0 12px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  max-width: 760px;
  margin-bottom: 22px;
  font-size: clamp(42px, 7vw, 78px);
  line-height: 0.98;
  letter-spacing: 0;
}

.lead {
  max-width: 680px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 20px;
}

.status-card {
  min-height: 260px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}

.status-dot {
  display: block;
  width: 12px;
  height: 12px;
  margin-bottom: 24px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 8px var(--ink-soft);
}

.status-card strong {
  display: block;
  margin-bottom: 22px;
  font-size: 24px;
  line-height: 1.15;
}

dl {
  margin: 0;
}

dl div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 0;
  border-top: 1px solid var(--line);
}

dt {
  color: var(--muted);
}

dd {
  margin: 0;
  font-weight: 650;
}

.metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin: 32px 0;
  background: var(--line);
  border: 1px solid var(--line);
}

.metrics div {
  min-height: 140px;
  padding: 24px;
  background: var(--panel);
}

.metrics span {
  display: block;
  margin-bottom: 10px;
  color: var(--accent-2);
  font-size: 34px;
  font-weight: 800;
}

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

.content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

article {
  padding-top: 24px;
  border-top: 3px solid var(--text);
}

article h2 {
  margin-bottom: 12px;
  font-size: 24px;
  line-height: 1.15;
}

article p:last-child {
  margin-bottom: 0;
  color: var(--muted);
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  max-width: 1120px;
  margin: 0 auto;
  padding: 24px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
}

footer p {
  margin: 0;
}

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

  .intro,
  .metrics,
  .content {
    grid-template-columns: 1fr;
  }

  .intro {
    min-height: 0;
    padding: 42px 0;
  }

  h1 {
    font-size: 44px;
  }

  .lead {
    font-size: 18px;
  }
}
