:root {
  color-scheme: light;
  --navy: #102a43;
  --blue: #0066b3;
  --cyan: #00a7d6;
  --white: #ffffff;
  --font-display: "Barlow Condensed", "Arial Narrow", sans-serif;
  --font-body: "Inter", "Segoe UI", Arial, sans-serif;
}

* { box-sizing: border-box; }

html, body {
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: var(--font-body);
  background: var(--navy);
  color: var(--white);
  line-height: 1.55;
}

.coming-soon {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px 20px;
  background: radial-gradient(circle at 20% 20%, #163a5e 0%, var(--navy) 55%, #0b1c2e 100%);
  overflow: hidden;
  text-align: center;
}

.coming-soon::before {
  content: "";
  position: absolute;
  inset: -20% -10%;
  background: linear-gradient(115deg, transparent 40%, rgba(0, 167, 214, 0.12) 48%, transparent 56%);
  pointer-events: none;
}

.coming-soon__content {
  position: relative;
  max-width: 560px;
  width: 100%;
}

.coming-soon__logo {
  display: block;
  width: 320px;
  max-width: 70vw;
  height: auto;
  margin: 0 auto 32px;
}

.eyebrow {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 0.85rem;
  color: var(--cyan);
  margin-bottom: 12px;
}

h1 {
  font-family: var(--font-display);
  font-weight: 800;
  text-transform: uppercase;
  font-size: clamp(1.8rem, 5vw, 2.6rem);
  line-height: 1.1;
  margin: 0 0 16px;
  color: var(--white);
}

.lede {
  color: #cfe0ee;
  font-size: 1.05rem;
  margin: 0 0 32px;
}

.coming-soon__footnote {
  margin: 0;
  color: #8ba6bf;
  font-size: 0.9rem;
}

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}
