body {
  margin: 0;
  padding: 80px 12% 60px;
  background: #0f172a;
  color: #fff;
  font-family: ui-sans-serif, system-ui, sans-serif;
}

/* Header */
.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 60px;
}

.logo-mark {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid #38bdf8;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: #38bdf8;
}

.nav {
  display: flex;
  gap: 20px;
}

.nav a {
  color: #94a3b8;
  text-decoration: none;
  font-size: 12px;
  letter-spacing: 0.1em;
}

/* Hero */
.hero {
  max-width: 680px;
  margin-bottom: 60px;
}

.hero h1 {
  font-size: 3.2rem;
  margin: 0 0 20px;
}

.hero-subtitle {
  font-size: 1.2rem;
  color: #cbd5e1;
  margin-bottom: 24px;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 32px;
}

.pill {
  padding: 6px 12px;
  border: 1px solid #38bdf8;
  border-radius: 999px;
  font-size: 10px;
  letter-spacing: 0.1em;
}

.cta {
  display: inline-block;
  padding: 14px 32px;
  background: #38bdf8;
  color: #0f172a;
  font-weight: 700;
  text-decoration: none;
  border-radius: 4px;
}

/* Status Card */
.status-section {
  margin-bottom: 80px;
}

.status-card {
  max-width: 320px;
  padding: 20px;
  border: 1px solid #334155;
  border-radius: 12px;
  background: #0f1b2e;
}

.status-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.status-card li {
  display: flex;
  justify-content: space-between;
  padding: 6px 0;
  border-top: 1px solid #1e293b;
}

.status-card li:first-child {
  border-top: none;
}

/* Sections */
.section {
  margin-bottom: 80px;
}

.section h2 {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: 12px;
}

.section-lead {
  max-width: 520px;
  color: #94a3b8;
  margin-bottom: 32px;
}

/* Grid */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.card {
  padding: 20px;
  border: 1px solid #334155;
  border-radius: 10px;
  background: #0f1b2e;
}

.card h3 {
  margin: 0 0 8px;
  font-size: 1rem;
}

.card p {
  margin: 0;
  color: #94a3b8;
}

/* Footer */
.site-footer {
  margin-top: 60px;
  padding-top: 20px;
  border-top: 1px solid #334155;
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: #94a3b8;
}

.footer-right {
  display: flex;
  gap: 10px;
}

.dot {
  opacity: 0.5;
}
