:root {
  color-scheme: dark;
  --background: #000;
  --text: #fff;
  --accent: #39ebff;
}

* { box-sizing: border-box; }

html { min-height: 100%; background: var(--background); }

body {
  min-height: 100vh;
  min-height: 100dvh;
  margin: 0;
  background: var(--background);
  color: var(--text);
}

.holding {
  display: grid;
  min-height: 100vh;
  min-height: 100dvh;
  place-items: center;
  padding: 40px 24px;
}

.holding-content {
  max-width: 900px;
  text-align: center;
}

h1 {
  margin: 0;
  font: 400 clamp(18px, 3vw, 32px)/1.7 Michroma, sans-serif;
  letter-spacing: .02em;
}

h1 span { white-space: nowrap; }

.cta {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  margin-top: 34px;
  padding: 12px 24px;
  border: 1px solid var(--accent);
  color: var(--accent);
  font: 600 16px/1.25 "Roboto Condensed", sans-serif;
  text-decoration: none;
  transition: color .2s ease, background-color .2s ease;
}

.cta:hover { background: var(--accent); color: var(--background); }
.cta:focus-visible { outline: 2px solid var(--text); outline-offset: 4px; }

@media (max-width: 600px) {
  h1 { line-height: 1.6; }
  .cta { margin-top: 28px; }
}

@media (prefers-reduced-motion: reduce) {
  .cta { transition: none; }
}
