:root {
  --bg: #020617;
  --bg-elev: #0b1120;
  --text: #f1f5f9;
  --muted: #94a3b8;
  --muted-dim: #64748b;
  --accent: #38bdf8;
  --border: #1e293b;
}

* {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  min-height: 100vh;
  background-color: var(--bg);
  color: var(--text);
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  display: flex;
  align-items: center;
  justify-content: center;
}

.wrap {
  width: 100%;
  max-width: 40rem;
  padding: 3rem 1.5rem;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.site-header {
  display: flex;
  justify-content: center;
}

.mark {
  display: block;
  width: auto;
  height: 88px;
  max-width: 100%;
}

.site-main {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.85rem;
}

h1 {
  margin: 0;
  font-size: clamp(2.25rem, 6vw, 3.25rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text);
}

.tagline {
  margin: 0;
  font-size: clamp(1.05rem, 2.6vw, 1.3rem);
  font-weight: 500;
  color: var(--text);
  max-width: 32rem;
}

.compliance {
  margin: 0.25rem 0 0;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--muted);
}

.launch {
  margin: 0.75rem 0 0;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
}

.site-footer {
  margin-top: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  width: 100%;
}

.site-footer p {
  margin: 0;
  font-size: 0.8rem;
  color: var(--muted-dim);
}
