:root {
  --pink: #ea3788;
  --blue: #005eab;
  --ink: #041127;
  --ink-soft: rgba(4, 17, 39, 0.7);
  --white: #f8fbff;
  --white-soft: rgba(248, 251, 255, 0.78);
  --card: rgba(7, 17, 45, 0.26);
  --card-border: rgba(255, 255, 255, 0.18);
  --shadow: 0 24px 80px rgba(3, 9, 24, 0.35);
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
}

body {
  min-height: 100vh;
  margin: 0;
  font-family: "Avenir Next", "Segoe UI", sans-serif;
  color: var(--white);
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.2), transparent 28%),
    radial-gradient(circle at bottom right, rgba(0, 0, 0, 0.25), transparent 24%),
    linear-gradient(135deg, var(--pink) 30%, var(--blue) 70%);
  overflow: hidden;
}

body::before,
body::after {
  position: fixed;
  content: "";
  inset: auto;
  border-radius: 999px;
  filter: blur(18px);
  opacity: 0.5;
  pointer-events: none;
}

body::before {
  width: 18rem;
  height: 18rem;
  top: 8vh;
  left: -4rem;
  background: rgba(255, 255, 255, 0.18);
  /* Disabled temporarily to isolate the performance issue reported on macOS. */
  animation: none;
}

body::after {
  width: 22rem;
  height: 22rem;
  right: -8rem;
  bottom: -2rem;
  background: rgba(5, 18, 59, 0.24);
  animation: none;
}

.page-shell {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 2rem;
}

.hero-card {
  width: min(100%, 48rem);
  padding: clamp(1.5rem, 4vw, 3rem);
  border: 1px solid var(--card-border);
  border-radius: 2rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.02)),
    var(--card);
  backdrop-filter: blur(22px);
  box-shadow: var(--shadow);
  text-align: center;
}

.eyebrow {
  margin: 0 0 1rem;
  color: var(--white-soft);
  font-size: 0.82rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.hero-logo {
  width: min(14rem, 52vw);
  height: auto;
  display: block;
  margin: 0 auto 1.75rem;
  filter: drop-shadow(0 14px 30px rgba(3, 10, 28, 0.38));
  animation: none;
}

.hero-copy {
  display: grid;
  gap: 1rem;
}

.status-pill {
  justify-self: center;
  padding: 0.5rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  font-size: 0.82rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  font-size: clamp(3rem, 8vw, 5.4rem);
  line-height: 0.94;
  letter-spacing: -0.06em;
}

.hero-text {
  width: min(100%, 31rem);
  margin: 0 auto;
  color: var(--white-soft);
  font-size: clamp(1rem, 2.8vw, 1.25rem);
  line-height: 1.6;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

@keyframes drift {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }

  50% {
    transform: translate3d(20px, -14px, 0) scale(1.05);
  }
}

@media (max-width: 640px) {
  .page-shell {
    padding: 1rem;
  }

  .hero-card {
    border-radius: 1.5rem;
    padding: 1.4rem;
  }

  .eyebrow {
    letter-spacing: 0.2em;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    scroll-behavior: auto !important;
  }
}
