:root {
  color-scheme: dark;
  --black: #02040a;
  --ink: #060815;
  --blue-soft: #82a7ff;
  --violet: #a855f7;
  --white: #f7f8ff;
  --muted: #aeb7cf;
  --line: rgba(139, 123, 255, 0.35);
  --display: Impact, Haettenschweiler, "Arial Narrow Bold", "Arial Narrow", sans-serif;
  --body: "Avenir Next", Avenir, "Helvetica Neue", Arial, sans-serif;
  font-family: var(--body);
  color: var(--white);
  background: var(--black);
  font-synthesis: none;
  text-rendering: geometricPrecision;
}

* {
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  height: 100%;
  min-width: 320px;
  margin: 0;
  overflow: hidden;
  background: var(--black);
}

body {
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  max-width: 100%;
}

.page-shell {
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  width: 100%;
  height: 100vh;
  height: 100svh;
  overflow: hidden;
  padding-inline: clamp(1.25rem, 5vw, 6rem);
  background: var(--ink);
}

.masthead,
.coming-soon,
.site-footer {
  width: min(100%, 1320px);
  margin-inline: auto;
}

.masthead {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding-block: clamp(1rem, 3svh, 2.25rem);
  border-bottom: 1px solid var(--line);
}

.masthead__logo {
  width: min(32vw, 220px);
  height: clamp(2.3rem, 6svh, 3.5rem);
  object-fit: cover;
  object-position: center;
}

.signal-status,
.eyebrow,
.site-footer {
  font-size: clamp(0.62rem, 1vw, 0.72rem);
  font-weight: 900;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.signal-status {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin: 0;
  color: var(--muted);
}

.signal-status span {
  flex: 0 0 auto;
  width: 0.62rem;
  height: 0.62rem;
  border-radius: 50%;
  background: var(--violet);
  box-shadow: 0 0 1rem var(--violet);
  animation: signal-pulse 1.8s ease-in-out infinite;
}

.coming-soon {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  min-height: 0;
  padding-block: clamp(1.25rem, 4svh, 3.5rem);
}

.eyebrow {
  margin: 0 0 clamp(0.8rem, 2svh, 1.5rem);
  color: var(--violet);
}

.coming-soon h1 {
  max-width: 1100px;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(3.8rem, min(11vw, 16svh), 10rem);
  font-weight: 900;
  line-height: 0.82;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  text-wrap: balance;
}

.coming-soon h1 span {
  display: block;
  color: var(--violet);
  text-shadow: 0 0 1.6rem rgba(168, 85, 247, 0.4);
}

.coming-soon__lead {
  max-width: 650px;
  margin: clamp(1.25rem, 3svh, 2.25rem) 0 0;
  color: #d7dced;
  font-size: clamp(0.95rem, min(1.4vw, 2.4svh), 1.25rem);
  line-height: 1.65;
}

.site-footer {
  padding-block: clamp(0.9rem, 2.5svh, 1.75rem);
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.site-footer p {
  margin: 0;
}

@keyframes signal-pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.35;
  }
}

@media (max-width: 620px) {
  .page-shell {
    padding-inline: 1.25rem;
  }

  .masthead {
    align-items: flex-start;
  }

  .masthead__logo {
    width: 155px;
    height: 2.55rem;
  }

  .signal-status {
    max-width: 8.5rem;
    line-height: 1.4;
    text-align: right;
  }

  .coming-soon h1 {
    font-size: clamp(3.6rem, min(19vw, 14svh), 6rem);
  }

  .coming-soon__lead {
    max-width: 31rem;
  }
}

@media (max-height: 560px) {
  .masthead {
    padding-block: 0.75rem;
  }

  .masthead__logo {
    height: 2.15rem;
  }

  .coming-soon {
    padding-block: 0.75rem;
  }

  .coming-soon h1 {
    font-size: clamp(3rem, min(9vw, 15svh), 7rem);
  }

  .coming-soon__lead {
    margin-top: 0.9rem;
  }

  .site-footer {
    padding-block: 0.65rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
