:root {
  color-scheme: light;
  --bg: #f6f7fb;
  --card: #ffffff;
  --text: #1f2937;
  --muted: #64748b;
  --line: #e5e7eb;
  --accent: #2563eb;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(37, 99, 235, .12), transparent 32rem),
    var(--bg);
}

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

.page {
  width: min(1080px, calc(100% - 40px));
  margin: 0 auto;
  padding: 56px 0 32px;
}

.narrow {
  width: min(760px, calc(100% - 40px));
}

.hero {
  min-height: 320px;
  display: flex;
  align-items: center;
}

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

h1 {
  margin: 0;
  font-size: clamp(36px, 6vw, 72px);
  line-height: 1;
  letter-spacing: -0.05em;
}

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

p {
  color: var(--muted);
  line-height: 1.7;
}

.lead {
  max-width: 660px;
  font-size: 19px;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin: 28px 0;
}

.card,
.panel {
  background: rgba(255,255,255,.88);
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: 0 16px 40px rgba(15, 23, 42, .06);
}

.card {
  display: block;
  padding: 26px;
  transition: transform .16s ease, box-shadow .16s ease;
}

.card:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 50px rgba(15, 23, 42, .09);
}

.panel {
  padding: 30px;
  margin: 24px 0;
}

.topbar {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 32px;
  font-weight: 700;
}

.status-row {
  display: flex;
  gap: 14px;
  padding: 16px 0;
  border-top: 1px solid var(--line);
}

.status-row:first-of-type {
  border-top: 0;
}

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

.dot {
  width: 11px;
  height: 11px;
  margin-top: 7px;
  border-radius: 999px;
  background: #22c55e;
  box-shadow: 0 0 0 5px rgba(34,197,94,.12);
}

.dot.muted {
  background: #94a3b8;
  box-shadow: 0 0 0 5px rgba(148,163,184,.14);
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-top: 40px;
  color: var(--muted);
  font-size: 14px;
}

@media (max-width: 760px) {
  .cards {
    grid-template-columns: 1fr;
  }

  footer {
    flex-direction: column;
  }
}
