:root {
  color-scheme: light dark;
  --bg: #f8f8f5;
  --panel: #ffffff;
  --fg: #1d2026;
  --muted: #606774;
  --line: #d9dcd4;
  --accent: #1c6b55;
  --accent-soft: #dfeee8;
}

@media (prefers-color-scheme: dark) {
  :root {
    --bg: #111412;
    --panel: #171b18;
    --fg: #f2f4ef;
    --muted: #a8aea5;
    --line: #2d342e;
    --accent: #7bc8a4;
    --accent-soft: #1f342b;
  }
}

* {
  box-sizing: border-box;
}

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

a {
  color: inherit;
  text-decoration-color: color-mix(in srgb, var(--accent), transparent 35%);
  text-underline-offset: 4px;
}

.site-header,
footer,
main {
  width: min(1040px, calc(100% - 48px));
  margin: 0 auto;
}

.site-header {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-bottom: 1px solid var(--line);
}

.brand {
  font-weight: 700;
  letter-spacing: 0;
  text-decoration: none;
}

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

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

.hero {
  padding: 86px 0 56px;
}

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

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

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

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

article {
  background: var(--panel);
  padding: 28px;
  min-height: 230px;
}

article h2 {
  margin: 0 0 12px;
  font-size: 20px;
}

article p,
.page p {
  color: var(--muted);
  line-height: 1.65;
}

article a {
  display: inline-block;
  margin-top: 12px;
  color: var(--accent);
  font-weight: 650;
}

.page {
  max-width: 760px;
  padding: 78px 0;
}

.page h1 {
  font-size: clamp(34px, 6vw, 58px);
}

.status-list {
  margin-top: 34px;
  border-top: 1px solid var(--line);
}

.status-row {
  display: flex;
  gap: 16px;
  align-items: center;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.status-row p {
  margin: 4px 0 0;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 6px var(--accent-soft);
  flex: 0 0 auto;
}

footer {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  color: var(--muted);
  border-top: 1px solid var(--line);
  font-size: 14px;
}

@media (max-width: 760px) {
  .site-header,
  footer {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    padding: 18px 0;
  }

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

  .hero {
    padding-top: 58px;
  }
}
