:root {
  color-scheme: light dark;
  --bg: #0b1020;
  --surface: #111827;
  --surface-2: #162033;
  --text: #f8fafc;
  --muted: #cbd5e1;
  --line: #334155;
  --accent: #2dd4bf;
  --accent-2: #84cc16;
  --warn: #fbbf24;
  --shadow: rgba(0, 0, 0, 0.24);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-height: 100vh;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--text);
}
a { color: inherit; text-decoration: none; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(20px, 5vw, 64px);
  background: rgba(11, 16, 32, 0.92);
  border-bottom: 1px solid var(--line);
}
.brand { display: inline-flex; align-items: center; gap: 10px; font-weight: 800; }
.brand-mark {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border: 1px solid var(--accent);
  border-radius: 8px;
  color: var(--accent);
  font-size: 13px;
}
.site-nav { display: flex; gap: 18px; color: var(--muted); font-size: 14px; }
.site-nav a:hover { color: var(--text); }
main { width: min(1120px, calc(100% - 40px)); margin: 0 auto; }
.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
  gap: clamp(28px, 5vw, 56px);
  align-items: center;
  min-height: calc(100vh - 76px);
  padding: 56px 0;
}
.eyebrow {
  margin: 0 0 12px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}
h1, h2, h3, p { margin-top: 0; }
h1 {
  max-width: 780px;
  margin-bottom: 22px;
  font-size: clamp(44px, 7vw, 76px);
  line-height: 1.02;
  letter-spacing: 0;
}
h2 { margin-bottom: 14px; font-size: 30px; line-height: 1.18; letter-spacing: 0; }
h3 { margin-bottom: 10px; font-size: 18px; letter-spacing: 0; }
.lead { max-width: 680px; color: var(--muted); font-size: 19px; line-height: 1.7; }
.status-board {
  display: grid;
  gap: 12px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 20px 60px var(--shadow);
}
.status-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 52px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface-2);
}
.status-row span { color: var(--muted); }
.status-row.good strong { color: var(--accent-2); }
.status-row.pending strong { color: var(--warn); }
.section { padding: 32px 0 72px; }
.section-heading { max-width: 680px; margin-bottom: 24px; }
.service-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.service-card {
  min-height: 190px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}
.service-card p, .compact p { color: var(--muted); line-height: 1.65; }
.icon-dot { display: block; width: 12px; height: 12px; margin-bottom: 18px; border-radius: 50%; background: var(--accent); }
.compact {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid var(--line);
}
.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 24px clamp(20px, 5vw, 64px);
  color: var(--muted);
  border-top: 1px solid var(--line);
}
@media (max-width: 780px) {
  .site-header, .site-footer { align-items: flex-start; flex-direction: column; }
  .site-nav { flex-wrap: wrap; }
  .hero { grid-template-columns: 1fr; min-height: auto; padding: 44px 0; }
  .service-grid { grid-template-columns: 1fr; }
  h1 { font-size: 42px; }
}
