:root {
  --bg-0: #0a0a0a;
  --bg-1: #141414;
  --border: #27272a;
  --text-0: #f5f5f5;
  --text-1: #d4d4d8;
  --text-2: #9ca3af;
  --text-3: #52525b;
  --accent: #2a9d8f;
  --accent-bright: #4ebcad;
  --mono: 'JetBrains Mono', ui-monospace, SFMono-Regular, Menlo, monospace;
  --sans: 'Inter', system-ui, -apple-system, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html, body {
  background: var(--bg-0);
  color: var(--text-1);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

main {
  max-width: 720px;
  margin: 0 auto;
  padding: 6rem 1.5rem 3rem;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

a {
  color: var(--accent);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color 0.15s, border-color 0.15s;
}
a:hover {
  color: var(--accent-bright);
  border-bottom-color: var(--accent-bright);
}

.hero { padding: 2rem 0 3rem; }

.eyebrow {
  font-family: var(--mono);
  font-size: 0.8125rem;
  color: var(--accent);
  letter-spacing: 0.02em;
  margin-bottom: 1.5rem;
}

.hero h1 {
  font-family: var(--mono);
  font-size: clamp(3.5rem, 12vw, 6rem);
  font-weight: 700;
  color: var(--text-0);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 1.5rem;
}

.subhead {
  font-size: clamp(1.125rem, 2.5vw, 1.375rem);
  color: var(--text-1);
  font-weight: 500;
  margin-bottom: 1.5rem;
  max-width: 30ch;
}

.lede {
  font-size: 1.0625rem;
  color: var(--text-2);
  max-width: 56ch;
}

.status { padding: 1rem 0 4rem; }

.status-card {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--bg-1);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 0.875rem 1.25rem;
  font-family: var(--mono);
  font-size: 0.875rem;
  color: var(--text-2);
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

footer {
  margin-top: auto;
  padding: 2.5rem 0 0;
  border-top: 1px solid var(--border);
  font-size: 0.8125rem;
  color: var(--text-3);
}
footer a { color: var(--text-2); }
footer a:hover { color: var(--accent); border-bottom-color: var(--accent); }

@media (max-width: 640px) {
  main { padding: 3rem 1.25rem 2rem; }
  .hero { padding: 1rem 0 2rem; }
}
