:root {
  color-scheme: light;
  --page-bg: #f4f7f5;
  --ink: #19211c;
  --muted: #536159;
  --accent: #21795b;
  --accent-soft: #d8eee4;
  --panel: #ffffff;
  --border: #ccd8d0;
}

* {
  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;
  color: var(--ink);
  background:
    linear-gradient(135deg, rgba(33, 121, 91, 0.14), transparent 32rem),
    var(--page-bg);
}

.site-shell {
  display: grid;
  min-height: 100vh;
  place-items: center;
  padding: 32px;
}

.intro {
  width: min(100%, 720px);
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  max-width: 11ch;
  font-size: clamp(3rem, 9vw, 6.5rem);
  line-height: 0.95;
  letter-spacing: 0;
}

.lede {
  max-width: 620px;
  margin: 24px 0 32px;
  color: var(--muted);
  font-size: 1.18rem;
  line-height: 1.6;
}

.page-link {
  margin: -10px 0 32px;
}

.page-link a {
  color: var(--accent);
  font-weight: 750;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
}

.status-panel {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  max-width: 100%;
  padding: 14px 18px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: 0 18px 50px rgba(25, 33, 28, 0.08);
  color: var(--ink);
  font-weight: 650;
}

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

@media (max-width: 560px) {
  .site-shell {
    place-items: start;
    padding: 28px 20px;
  }

  h1 {
    max-width: 10ch;
  }

  .lede {
    font-size: 1rem;
  }

  .status-panel {
    align-items: flex-start;
  }
}
