:root {
  --bg: #0f172a;
  --fg: #e2e8f0;
  --accent: #38bdf8;
  --muted: #64748b;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  background: var(--bg);
  color: var(--fg);
  min-height: 100vh;
}

body {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem 1rem;
  text-align: center;
}

.splash {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  max-width: 480px;
}

.logo {
  width: 120px;
  height: 120px;
}

.status {
  font-size: 1.05rem;
  color: var(--fg);
  margin: 0;
}

.status::after {
  content: " ";
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-left: 4px;
  border: 2px solid var(--accent);
  border-top-color: transparent;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  vertical-align: middle;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.disclosure {
  font-size: 0.8rem;
  color: var(--muted);
  max-width: 420px;
  line-height: 1.4;
}

.about {
  max-width: 560px;
  text-align: left;
}

.about h1 {
  font-size: 1.6rem;
  color: var(--accent);
  margin-bottom: 0.5rem;
}

.about p {
  line-height: 1.5;
}

.about a {
  color: var(--accent);
  text-decoration: none;
  border-bottom: 1px solid currentColor;
}

.about a:hover {
  color: var(--fg);
}

.cta {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.75rem 1.5rem;
  background: var(--accent);
  color: var(--bg);
  text-decoration: none;
  font-weight: 600;
  border-radius: 8px;
  border-bottom: none;
}

.cta:hover {
  background: #0ea5e9;
  color: var(--bg);
}
