:root {
  --blue: #071c63;
  --blue-deep: #030716;
  --red: #d80b0b;
  --gold: #ffb000;
  --yellow: #ffe13a;
  --white: #ffffff;
  --ink: #050505;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--blue-deep);
}

body {
  min-height: 100vh;
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--white);
  background:
    radial-gradient(circle at 20% 15%, rgba(255, 224, 58, 0.18), transparent 28rem),
    radial-gradient(circle at 85% 20%, rgba(216, 11, 11, 0.2), transparent 24rem),
    linear-gradient(135deg, #020617 0%, #081f66 42%, #030716 100%);
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.3;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(circle at center, black, transparent 72%);
}

.page-shell {
  min-height: calc(100vh - 72px);
  display: grid;
  place-items: center;
  padding: 48px 18px 24px;
}

.hero-card {
  position: relative;
  width: min(760px, 100%);
  padding: clamp(28px, 5vw, 56px);
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 36px;
  background: rgba(3, 7, 22, 0.72);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255,255,255,0.12);
  overflow: hidden;
  backdrop-filter: blur(18px);
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: 14px;
  border: 2px solid rgba(255, 176, 0, 0.18);
  border-radius: 28px;
  pointer-events: none;
}

.glow {
  position: absolute;
  border-radius: 999px;
  filter: blur(10px);
  opacity: 0.75;
  pointer-events: none;
}

.glow-one {
  width: 220px;
  height: 220px;
  top: -90px;
  right: -70px;
  background: rgba(255, 176, 0, 0.28);
}

.glow-two {
  width: 260px;
  height: 260px;
  bottom: -110px;
  left: -100px;
  background: rgba(216, 11, 11, 0.28);
}

.logo {
  position: relative;
  width: min(360px, 82vw);
  aspect-ratio: 1 / 1;
  object-fit: contain;
  display: block;
  margin: 0 auto 28px;
  border-radius: 50%;
  filter: drop-shadow(0 24px 32px rgba(0, 0, 0, 0.38));
  animation: float 5.5s ease-in-out infinite;
}

.eyebrow {
  position: relative;
  margin: 0 0 12px;
  color: var(--yellow);
  font-size: clamp(0.78rem, 1.6vw, 0.95rem);
  font-weight: 900;
  letter-spacing: 0.34em;
  text-transform: uppercase;
}

h1 {
  position: relative;
  margin: 0;
  font-size: clamp(3.4rem, 12vw, 7.4rem);
  line-height: 0.86;
  letter-spacing: -0.075em;
  text-transform: uppercase;
  text-shadow: 0 8px 0 var(--ink), 0 18px 38px rgba(0,0,0,0.45);
}

.tagline {
  position: relative;
  margin: 24px auto 0;
  max-width: 560px;
  color: rgba(255,255,255,0.9);
  font-size: clamp(1.05rem, 2.7vw, 1.45rem);
  font-weight: 700;
}

.status-bar {
  position: relative;
  width: min(420px, 100%);
  height: 12px;
  margin: 34px auto 0;
  border: 2px solid rgba(255,255,255,0.72);
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  overflow: hidden;
}

.status-bar span {
  display: block;
  width: 46%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--red), var(--gold), var(--yellow));
  animation: load 2.6s ease-in-out infinite alternate;
}

.microcopy {
  position: relative;
  margin: 22px 0 0;
  color: rgba(255,255,255,0.74);
  font-size: 0.98rem;
  letter-spacing: 0.04em;
}


.social-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 24px;
  padding: 12px 20px;
  color: var(--ink);
  font-size: 0.95rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
  border: 2px solid rgba(255,255,255,0.85);
  border-radius: 999px;
  background: linear-gradient(135deg, var(--yellow), var(--gold));
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.28);
  transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease;
}

.social-link:hover,
.social-link:focus-visible {
  transform: translateY(-2px);
  filter: brightness(1.05);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.36);
  outline: none;
}

footer {
  min-height: 72px;
  display: grid;
  place-items: center;
  padding: 0 18px 24px;
  color: rgba(255,255,255,0.62);
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes load {
  0% { transform: translateX(-10%); width: 36%; }
  100% { transform: translateX(140%); width: 54%; }
}

@media (max-width: 560px) {
  .page-shell {
    padding-top: 28px;
  }

  .hero-card {
    border-radius: 28px;
  }

  .hero-card::before {
    inset: 10px;
    border-radius: 22px;
  }

  .eyebrow {
    letter-spacing: 0.22em;
  }

  h1 {
    text-shadow: 0 6px 0 var(--ink), 0 14px 30px rgba(0,0,0,0.45);
  }
}

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