/* Chordonaut prelaunch — palette aligned with site tokens */
:root {
  --bg: #0e1220;
  --amber: #f4b860;
  --cream: #f5e9d3;
  --text-dim: #cbb99b;
  --muted: #8a8aa3;
  --border: #27304c;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  height: 100%;
}

body {
  margin: 0;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: clamp(1.5rem, 5vw, 3rem);
  font-family:
    system-ui,
    -apple-system,
    "Segoe UI",
    Roboto,
    sans-serif;
  background: radial-gradient(
      ellipse 120% 80% at 50% -20%,
      color-mix(in srgb, var(--amber) 12%, transparent),
      transparent 55%
    ),
    var(--bg);
  color: var(--cream);
  text-align: center;
}

.wrap {
  max-width: 36rem;
}

.wordmark {
  margin: 0;
  font-size: clamp(2.25rem, 8vw, 3.25rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.05;
  background: linear-gradient(
    180deg,
    var(--cream) 0%,
    var(--cream) 55%,
    color-mix(in srgb, var(--amber) 85%, var(--cream)) 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.tagline {
  margin: 1rem 0 0;
  font-size: clamp(0.95rem, 2.5vw, 1.1rem);
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--amber);
}

.sub {
  margin: 1.75rem 0 0;
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--text-dim);
}

.footer {
  margin-top: 2.5rem;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  color: var(--muted);
}
