:root {
  color-scheme: dark;
  --navy: #07111f;
  --navy-soft: #0d1b2d;
  --white: #f7f9fc;
  --muted: #aab6c8;
  --lime: #c9ff37;
  --orange: #ff6b21;
}

* {
  box-sizing: border-box;
}

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

body {
  background: var(--navy);
  color: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.hero {
  position: relative;
  display: flex;
  min-height: 100vh;
  flex-direction: column;
  overflow: hidden;
  isolation: isolate;
  background:
    linear-gradient(90deg, rgba(7, 17, 31, .98) 0%, rgba(7, 17, 31, .9) 48%, rgba(7, 17, 31, .58) 100%),
    radial-gradient(circle at 82% 40%, #1b2c43 0%, var(--navy) 58%);
}

.hero::before {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image: linear-gradient(rgba(255, 255, 255, .025) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .025) 1px, transparent 1px);
  background-size: 54px 54px;
  content: "";
  mask-image: linear-gradient(to right, transparent 10%, #000 90%);
}

.topbar,
.hero-content,
footer {
  width: min(1180px, calc(100% - 48px));
  margin-inline: auto;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 34px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  font-size: 1.05rem;
  font-weight: 900;
  letter-spacing: .18em;
  text-decoration: none;
}

.brand-ball {
  width: 34px;
  height: 34px;
  border: 3px solid var(--lime);
  border-radius: 50%;
  background:
    linear-gradient(90deg, transparent 45%, var(--lime) 46%, var(--lime) 54%, transparent 55%),
    linear-gradient(28deg, transparent 46%, var(--lime) 47%, var(--lime) 53%, transparent 54%);
  box-shadow: 0 0 24px rgba(201, 255, 55, .24);
  transform: rotate(-18deg);
}

.season {
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 999px;
  padding: 8px 13px;
  color: var(--muted);
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .16em;
}

.hero-content {
  display: grid;
  flex: 1;
  grid-template-columns: minmax(0, 1.05fr) minmax(380px, .95fr);
  align-items: center;
  gap: 28px;
  padding: 38px 0 64px;
}

.copy {
  position: relative;
  z-index: 2;
  max-width: 680px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 22px;
  color: var(--lime);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .22em;
}

.eyebrow::before {
  width: 42px;
  height: 3px;
  background: var(--lime);
  content: "";
}

h1 {
  margin: 0;
  font-size: clamp(3.25rem, 6.3vw, 6.2rem);
  font-weight: 900;
  letter-spacing: -.065em;
  line-height: .92;
}

h1 span {
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(247, 249, 252, .82);
}

.lead {
  max-width: 590px;
  margin: 30px 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.5vw, 1.18rem);
  line-height: 1.65;
}

.return-card {
  display: inline-flex;
  align-items: center;
  gap: 22px;
  border-left: 4px solid var(--orange);
  padding: 8px 0 8px 18px;
}

.return-label {
  max-width: 62px;
  color: var(--muted);
  font-size: .65rem;
  font-weight: 800;
  letter-spacing: .12em;
  line-height: 1.35;
}

.return-card strong {
  font-size: clamp(1.7rem, 3vw, 2.65rem);
  letter-spacing: -.035em;
}

.return-card em {
  color: var(--lime);
  font-style: normal;
}

.signoff {
  margin: 28px 0 0;
  color: var(--white);
  font-size: .9rem;
  font-weight: 700;
}

.visual {
  position: relative;
  align-self: stretch;
  min-height: 560px;
}

.visual img {
  position: absolute;
  right: -5%;
  bottom: 1%;
  z-index: 2;
  width: min(610px, 115%);
  height: auto;
  filter: drop-shadow(0 34px 38px rgba(0, 0, 0, .5));
}

.number {
  position: absolute;
  top: 45%;
  left: 48%;
  color: rgba(255, 255, 255, .04);
  font-size: 30rem;
  font-weight: 950;
  line-height: .7;
  transform: translate(-50%, -50%);
}

.orbit {
  position: absolute;
  top: 48%;
  left: 52%;
  border: 1px solid rgba(201, 255, 55, .18);
  border-radius: 50%;
  transform: translate(-50%, -50%) rotate(-18deg);
}

.orbit-one {
  width: 430px;
  height: 430px;
}

.orbit-two {
  width: 510px;
  height: 310px;
}

.glow {
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  filter: blur(100px);
  opacity: .12;
}

.glow-one {
  top: 18%;
  right: 8%;
  width: 340px;
  height: 340px;
  background: var(--lime);
}

.glow-two {
  right: 30%;
  bottom: -10%;
  width: 300px;
  height: 300px;
  background: var(--orange);
}

footer {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, .1);
  padding: 20px 0 24px;
  color: #77859a;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

@media (max-width: 900px) {
  .hero-content {
    grid-template-columns: 1fr;
    padding-top: 44px;
  }

  .copy {
    max-width: 720px;
  }

  .visual {
    min-height: 430px;
  }

  .visual img {
    right: 2%;
    width: min(560px, 95%);
  }

  .number {
    left: 55%;
    font-size: 23rem;
  }
}

@media (max-width: 560px) {
  .topbar,
  .hero-content,
  footer {
    width: calc(100% - 32px);
  }

  .topbar {
    padding-top: 24px;
  }

  .season {
    display: none;
  }

  h1 {
    max-width: 100%;
    font-size: clamp(2.65rem, 13vw, 3.35rem);
    letter-spacing: -.07em;
  }

  .lead {
    font-size: .98rem;
  }

  .return-card {
    gap: 15px;
  }

  .visual {
    min-height: 350px;
    margin-top: 12px;
  }

  .visual img {
    right: -10%;
    bottom: -4%;
    width: 112%;
  }

  .orbit-one {
    width: 310px;
    height: 310px;
  }

  .orbit-two {
    width: 350px;
    height: 220px;
  }

  footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }
}

@media (prefers-reduced-motion: no-preference) {
  .visual img {
    animation: float 6s ease-in-out infinite;
  }

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