:root {
  font-family: Inter, ui-sans-serif, system-ui, -apple-system,
               BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #111827;
  background: #f8fafc;
}
* { box-sizing: border-box; }
body {
  margin: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
header, footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 24px clamp(24px, 6vw, 88px);
}
header {
  background: rgba(255,255,255,.92);
  border-bottom: 1px solid #e5e7eb;
}
.brand {
  color: #111827;
  font-weight: 750;
  text-decoration: none;
}
nav { display: flex; gap: 20px; }
nav a {
  color: #475569;
  text-decoration: none;
}
main {
  width: min(1120px, calc(100% - 48px));
  margin: auto;
  flex: 1;
}
.hero { padding: 100px 0 70px; max-width: 780px; }
.eyebrow {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .18em;
  color: #64748b;
}
h1 {
  margin: 12px 0 20px;
  font-size: clamp(42px, 7vw, 76px);
  line-height: .98;
  letter-spacing: -.045em;
}
h2 { margin-top: 0; }
.lead {
  color: #475569;
  font-size: 21px;
  line-height: 1.6;
}
.button {
  display: inline-block;
  margin-top: 22px;
  padding: 13px 18px;
  color: white;
  background: #111827;
  border-radius: 10px;
  text-decoration: none;
}
.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  padding-bottom: 80px;
}
.grid article, .status {
  padding: 24px;
  background: white;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
}
.grid p, .page p {
  color: #64748b;
  line-height: 1.7;
}
.page {
  max-width: 760px;
  padding: 100px 0;
}
.page h1 { font-size: clamp(42px, 7vw, 68px); }
.status {
  margin-top: 36px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #16a34a;
}
footer {
  color: #64748b;
  font-size: 13px;
  border-top: 1px solid #e5e7eb;
}
@media (max-width: 760px) {
  nav { display: none; }
  .grid { grid-template-columns: 1fr; }
  .hero { padding-top: 70px; }
}
