:root {
  --navy: #0d1b2a;
  --navy-deep: #07111c;
  --navy-mid: #152536;
  --accent: #3d8bfd;
  --accent-soft: #7eb6ff;
  --gold: #c49a2a;
  --gold-soft: #d4b45a;
  --text: #f4f1ea;
  --text-muted: rgba(244, 241, 234, 0.72);
  --panel: rgba(255, 248, 235, 0.06);
  --panel-border: rgba(255, 248, 235, 0.12);
  --font-display: "Fraunces", "Times New Roman", serif;
  --font-body: "Sora", system-ui, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

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

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--navy-deep);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.page {
  position: relative;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.atmosphere {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(ellipse 90% 60% at 50% -10%, rgba(61, 139, 253, 0.22), transparent 55%),
    radial-gradient(ellipse 70% 50% at 100% 100%, rgba(21, 70, 90, 0.35), transparent 50%),
    radial-gradient(ellipse 60% 40% at 0% 80%, rgba(13, 27, 42, 0.9), transparent 45%),
    linear-gradient(165deg, var(--navy-deep) 0%, var(--navy) 45%, var(--navy-mid) 100%);
  animation: atmosphere-drift 18s ease-in-out infinite alternate;
}

.atmosphere::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 72px 72px;
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, black, transparent 85%);
  mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, black, transparent 85%);
  opacity: 0.45;
  pointer-events: none;
}

.glow {
  position: absolute;
  width: 42vmax;
  height: 42vmax;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(61, 139, 253, 0.16), transparent 70%);
  top: 55%;
  left: 50%;
  transform: translate(-50%, -40%);
  filter: blur(8px);
  animation: glow-pulse 8s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}

.content {
  position: relative;
  z-index: 1;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: clamp(2rem, 6vw, 4rem) clamp(1.25rem, 4vw, 3rem) 2rem;
  max-width: min(100%, 52rem);
  margin: 0 auto;
  width: 100%;
}

.brand {
  margin: 0 0 2.5rem;
  display: flex;
  justify-content: center;
  width: 100%;
  opacity: 0;
  transform: translateY(12px) scale(0.98);
  animation: rise-in 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.1s forwards;
}

.brand img {
  width: min(100%, 24rem);
  height: auto;
  display: block;
  margin-inline: auto;
  filter: drop-shadow(0 12px 40px rgba(0, 0, 0, 0.35));
}

.eyebrow {
  margin: 0 0 1rem;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent-soft);
  opacity: 0;
  animation: rise-in 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.3s forwards;
}

.headline {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.75rem, 4.4vw, 3.1rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  max-width: 18em;
  text-wrap: balance;
  opacity: 0;
  animation: rise-in 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.42s forwards;
}

.support {
  margin: 1.25rem 0 0;
  font-size: clamp(1rem, 2vw, 1.125rem);
  line-height: 1.55;
  color: var(--text-muted);
  max-width: 36rem;
  text-wrap: balance;
  opacity: 0;
  animation: rise-in 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.55s forwards;
}

.eta {
  margin-top: 1.85rem;
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.9375rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--text);
  opacity: 0;
  animation: rise-in 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.68s forwards;
}

.eta::before {
  content: "";
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 #3d8bfd8c;
  animation: pulse-dot 2.4s ease-out infinite;
}

.cta {
  margin-top: 1.35rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.5rem 0.7rem;
  opacity: 0;
  animation: rise-in 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.78s forwards;
}

.cta-link {
  color: var(--accent-soft);
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition:
    color 0.2s ease,
    border-color 0.2s ease;
}

.cta-link:hover,
.cta-link:focus-visible {
  color: #fff;
  border-bottom-color: rgba(255, 255, 255, 0.55);
  outline: none;
}

.cta-sep {
  color: rgba(244, 241, 234, 0.35);
  user-select: none;
}

.related {
  margin-top: 3rem;
  width: min(100%, 48rem);
  padding-top: 1.75rem;
  border-top: 1px solid var(--panel-border);
  opacity: 0;
  animation: rise-in 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.9s forwards;
}

.related--platforms {
  margin-top: 1.75rem;
  animation-delay: 1.02s;
}

.related-label {
  margin: 0 0 1rem;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.related-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.85rem;
}

.related-list--two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 28rem;
  margin-inline: auto;
}

.related-list--three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.related-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.7rem;
  padding: 1rem 0.85rem 0.95rem;
  text-decoration: none;
  color: var(--text-muted);
  background: var(--panel);
  border: 1px solid var(--panel-border);
  border-radius: 2px;
  transition:
    border-color 0.2s ease,
    background 0.2s ease,
    color 0.2s ease,
    transform 0.2s ease;
}

.related-link:hover,
.related-link:focus-visible {
  border-color: rgba(61, 139, 253, 0.45);
  background: rgba(61, 139, 253, 0.08);
  color: var(--text);
  transform: translateY(-2px);
  outline: none;
}

.related-link img {
  display: block;
  width: auto;
  max-width: 9.5rem;
  max-height: 3.75rem;
  height: auto;
  object-fit: contain;
}

.related-link span {
  font-size: 0.78rem;
  letter-spacing: 0.02em;
}

.footer {
  position: relative;
  z-index: 1;
  padding: 1.35rem 1.25rem 1.75rem;
  text-align: center;
  font-size: 0.8125rem;
  color: var(--text-muted);
  letter-spacing: 0.02em;
  opacity: 0;
  animation: rise-in 0.8s ease 1s forwards;
}

.footer p {
  margin: 0;
}

.footer .disclosure {
  margin-top: 0.65rem;
  max-width: 40rem;
  margin-left: auto;
  margin-right: auto;
  font-size: 0.7rem;
  line-height: 1.45;
  color: rgba(244, 241, 234, 0.48);
}

.footer a {
  color: var(--accent-soft);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.footer a:hover,
.footer a:focus-visible {
  color: #fff;
  outline: none;
}

@keyframes rise-in {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes atmosphere-drift {
  from {
    filter: hue-rotate(0deg) saturate(1);
  }
  to {
    filter: hue-rotate(-8deg) saturate(1.08);
  }
}

@keyframes glow-pulse {
  0%,
  100% {
    opacity: 0.55;
    transform: translate(-50%, -40%) scale(1);
  }
  50% {
    opacity: 0.9;
    transform: translate(-50%, -42%) scale(1.08);
  }
}

@keyframes pulse-dot {
  0% {
    box-shadow: 0 0 #3d8bfd8c;
  }
  70% {
    box-shadow: 0 0 0 12px #3d8bfd00;
  }
  100% {
    box-shadow: 0 0 #3d8bfd00;
  }
}

@media (prefers-reduced-motion: reduce) {
  .atmosphere,
  .glow,
  .brand,
  .eyebrow,
  .headline,
  .support,
  .eta,
  .cta,
  .related,
  .related--platforms,
  .footer,
  .eta::before {
    animation: none !important;
  }

  .brand,
  .eyebrow,
  .headline,
  .support,
  .eta,
  .cta,
  .related,
  .related--platforms,
  .footer {
    opacity: 1;
    transform: none;
  }

  .related-link:hover,
  .related-link:focus-visible {
    transform: none;
  }
}

@media (max-width: 720px) {
  .related-list--two,
  .related-list--three {
    grid-template-columns: 1fr;
    max-width: 22rem;
    margin-inline: auto;
  }
}

@media (max-width: 560px) {
  .brand img {
    width: min(100%, 17rem);
  }

  .cta {
    flex-direction: column;
    gap: 0.75rem;
  }

  .cta-sep {
    display: none;
  }
}
