:root {
  --ink: #1c2230;
  --muted: #6a7385;
  --line: #e7eaf0;
  --bg: #ffffff;
  --panel: #f7f9fc;
  --accent: #2f6bff;
  --ok: #21a366;
}

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
  max-width: 60rem;
  margin: 0 auto;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--line);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-weight: 650;
  font-size: 1.05rem;
  color: var(--ink);
  text-decoration: none;
}

.logo {
  width: 18px; height: 18px;
  border-radius: 5px;
  background: linear-gradient(135deg, var(--accent), #6a9bff);
  display: inline-block;
}

nav a {
  color: var(--muted);
  text-decoration: none;
  margin-left: 1.25rem;
  font-size: 0.92rem;
}
nav a:hover { color: var(--ink); }

main {
  max-width: 60rem;
  margin: 0 auto;
  padding: 3rem 1.5rem 3.5rem;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.72rem;
  font-weight: 650;
  color: var(--accent);
  margin: 0 0 0.75rem;
}

.hero h1 {
  font-size: 2.3rem;
  line-height: 1.15;
  margin: 0 0 1rem;
  max-width: 28ch;
}
.hero.compact h1 { font-size: 1.9rem; }

.lede {
  color: var(--muted);
  font-size: 1.1rem;
  max-width: 52ch;
  margin: 0 0 1.75rem;
}

.button {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  text-decoration: none;
  padding: 0.6rem 1.15rem;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 550;
}
.button:hover { background: #2559e0; }

.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
  gap: 1rem;
  margin-top: 3.5rem;
}

.feature {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 1.35rem;
}
.feature h3 { margin: 0 0 0.5rem; font-size: 1.05rem; }
.feature p { margin: 0; color: var(--muted); font-size: 0.95rem; }

.status-list {
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  margin-top: 1rem;
}
.status-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.9rem 1.15rem;
  border-top: 1px solid var(--line);
}
.status-row:first-child { border-top: none; }
.dot {
  width: 9px; height: 9px; border-radius: 50%;
  background: var(--muted); flex: none;
}
.dot.ok { background: var(--ok); }
.svc { font-weight: 550; }
.state { margin-left: auto; color: var(--ok); font-size: 0.9rem; }

.note {
  color: var(--muted);
  font-size: 0.85rem;
  margin-top: 1.25rem;
}

.site-footer {
  max-width: 60rem;
  margin: 0 auto;
  padding: 1.5rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.85rem;
}
.site-footer p { margin: 0; }
