:root {
  --font-sans: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --red: #e1192d;
}

html[data-theme="light"] {
  --bg: #f7f5f2;
  --text: #111111;
  --text-muted: #66666c;
  --line: rgba(17, 17, 17, .11);
  --glow: rgba(225, 25, 45, .12);
}

html[data-theme="dark"] {
  --bg: #0d0d0e;
  --text: #f5f5f7;
  --text-muted: #b1b1b9;
  --line: rgba(255, 255, 255, .12);
  --glow: rgba(225, 25, 45, .2);
}

* {
  box-sizing: border-box;
}

html,
body {
  min-height: 100%;
}

body {
  min-height: 100svh;
  margin: 0;
  display: grid;
  grid-template-rows: auto 1fr auto;
  overflow: hidden;
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

.coming-soon-header,
.coming-soon-footer {
  width: min(100% - 2rem, 82.5rem);
  margin-inline: auto;
}

.coming-soon-header {
  min-height: 4.625rem;
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--line);
}

/* The menu is appended without placing this header in the shared .nav-shell,
   preserving the original wordmark styling and header layout. */
.coming-soon-header .coming-soon-menu {
  display: inline-flex;
  align-items: center;
  gap: .62rem;
  margin-left: auto;
}

.coming-soon-header .coming-soon-menu::before {
  content: "";
  width: 1px;
  height: 22px;
  flex: 0 0 auto;
  background: #111111;
  opacity: .72;
}

html[data-theme="dark"] .coming-soon-header .coming-soon-menu::before {
  background: #5c0712;
  opacity: 1;
}

/* Anchor the panel at the hamburger's left edge so it drops down and extends
   toward the page rather than away from the viewport. */
.coming-soon-header .coming-soon-menu > .site-menu-list {
  top: calc(100% + .6rem);
  right: 38px;
  left: auto;
  transform-origin: top right;
}

.coming-soon-header .coming-soon-menu > summary {
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  transition: transform .2s ease;
}

.coming-soon-header .coming-soon-menu > summary:hover,
.coming-soon-header .coming-soon-menu > summary:active {
  background: transparent;
  box-shadow: none;
  outline: none;
  transform: translateY(-2px);
}

.coming-soon-header .coming-soon-menu > summary:focus-visible {
  border-radius: 2px;
  background: transparent;
  outline: 2px solid currentColor;
  outline-offset: 2px;
  transform: translateY(-2px);
}

.brand {
  font-size: 1rem;
  font-weight: 850;
  letter-spacing: -.02em;
}

.brand:focus-visible {
  outline: 3px solid color-mix(in srgb, var(--red), transparent 22%);
  outline-offset: .35rem;
  border-radius: .125rem;
}

.coming-soon-main {
  position: relative;
  isolation: isolate;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 3rem 1.5rem;
  text-align: center;
}

.coming-soon-glow {
  position: absolute;
  z-index: -1;
  width: min(38rem, 90vw);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, var(--glow) 0, transparent 68%);
  filter: blur(12px);
}

.eyebrow {
  margin: 0 0 1rem;
  color: var(--red);
  font-size: .78rem;
  font-weight: 850;
  letter-spacing: .16em;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  font-size: clamp(3.6rem, 12vw, 9rem);
  line-height: .88;
  letter-spacing: -.075em;
}

.coming-soon-footer {
  min-height: 4.625rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border-top: 1px solid var(--line);
  color: var(--text-muted);
  font-size: .72rem;
  font-weight: 780;
  letter-spacing: .12em;
  text-transform: uppercase;
}

@media (prefers-reduced-motion: no-preference) {
  .eyebrow,
  h1 {
    animation: enter .8s cubic-bezier(.22, 1, .36, 1) both;
  }

  h1 {
    animation-delay: .08s;
  }
}

@keyframes enter {
  from {
    opacity: 0;
    transform: translateY(1rem);
  }
}
