:root {
  --bg: #070707;
  --bg-elevated: #111111;
  --text: #f7f7f7;
  --muted: #9a9a9a;
  --gold: #d4af37;
  --gold-bright: #e8c547;
  --gold-deep: #b8922a;
  --line: rgba(255, 255, 255, 0.12);
  --font-display: "Oswald", "Arial Narrow", sans-serif;
  --font-body: "Inter", system-ui, sans-serif;
}

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

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

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  color: var(--text);
  background: var(--bg);
  font-family: var(--font-body);
  overflow-x: hidden;
}

.atmosphere {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(ellipse 42% 28% at 18% -4%, rgba(232, 197, 71, 0.16), transparent 70%),
    radial-gradient(ellipse 36% 24% at 78% -6%, rgba(255, 255, 255, 0.1), transparent 68%),
    radial-gradient(ellipse 28% 20% at 50% -8%, rgba(255, 255, 255, 0.08), transparent 65%),
    radial-gradient(ellipse 50% 40% at 88% 58%, rgba(80, 58, 28, 0.35), transparent 70%),
    #070707;
}

.lights {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 12% 6%, rgba(255, 255, 255, 0.55) 0 1px, transparent 2px),
    radial-gradient(circle at 22% 3%, rgba(232, 197, 71, 0.7) 0 1.2px, transparent 3px),
    radial-gradient(circle at 38% 5%, rgba(255, 255, 255, 0.4) 0 1px, transparent 2px),
    radial-gradient(circle at 61% 2%, rgba(255, 255, 255, 0.5) 0 1px, transparent 2px),
    radial-gradient(circle at 74% 6%, rgba(232, 197, 71, 0.55) 0 1.4px, transparent 3px),
    radial-gradient(circle at 88% 4%, rgba(255, 255, 255, 0.45) 0 1px, transparent 2px);
}

.football {
  position: absolute;
  right: -4%;
  top: 58%;
  width: min(46vw, 560px);
  height: auto;
  transform: translateY(-50%) rotate(-18deg);
  opacity: 0.94;
  filter: drop-shadow(0 28px 36px rgba(0, 0, 0, 0.55));
  pointer-events: none;
  user-select: none;
}

.page {
  position: relative;
  z-index: 1;
  width: min(720px, calc(100% - 48px));
  margin: 0 auto;
  padding: 36px 0 32px;
  text-align: center;
  flex: 1;
}

.logo {
  display: block;
  width: min(210px, 52vw);
  height: auto;
  margin: 0 auto 18px;
}

h1 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 8vw, 5.2rem);
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 0.92;
  text-transform: uppercase;
  white-space: nowrap;
}

.gold-line {
  margin: 14px 0 0;
  color: var(--gold-bright);
  font-family: var(--font-display);
  font-size: clamp(0.92rem, 2.4vw, 1.18rem);
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.lede {
  max-width: 34rem;
  margin: 14px auto 0;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.55;
}

.notify {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  width: min(520px, 100%);
  margin: 26px auto 0;
  position: relative;
}

.notify input {
  flex: 1 1 240px;
  height: 52px;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(17, 17, 17, 0.86);
  color: var(--text);
  font: 500 0.95rem/1 var(--font-body);
  outline: none;
}

.notify input::placeholder {
  color: #7d7d7d;
}

.notify input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.18);
}

.notify button {
  height: 52px;
  padding: 0 28px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--gold-bright), var(--gold));
  color: #111;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
}

.notify button:hover {
  background: var(--gold-bright);
}

.notify button:disabled {
  cursor: default;
  opacity: 0.7;
}

.form-message {
  flex-basis: 100%;
  min-height: 1.4em;
  margin: 4px 0 0;
  font-size: 0.9rem;
}

.form-message.error {
  color: #f0b4b4;
}

.form-message.success {
  color: var(--gold-bright);
}

.features {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  list-style: none;
  margin: 40px 0 0;
  padding: 0;
}

.features li {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  color: #d8d8d8;
  font-size: 0.86rem;
  font-weight: 500;
  line-height: 1.35;
}

.icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(212, 175, 55, 0.28);
  border-radius: 50%;
  color: var(--gold);
}

.icon svg {
  width: 22px;
  height: 22px;
}

footer {
  position: relative;
  z-index: 1;
  padding: 20px 24px 24px;
  border-top: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.35);
}

.sports {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 28px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.sports li {
  color: var(--muted);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
}

.sports strong {
  display: block;
  color: var(--text);
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.08em;
}

.legal {
  margin: 22px 0 0;
  color: #6b6b6b;
  font-size: 0.78rem;
  text-align: center;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 800px) {
  .football {
    opacity: 0.28;
    right: -22%;
    width: 70vw;
  }

  .features {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px 16px;
  }
}

@media (max-width: 560px) {
  .page {
    width: min(100% - 32px, 720px);
    padding-top: 28px;
  }

  h1 {
    font-size: 1.95rem;
    letter-spacing: 0.03em;
  }

  .notify {
    flex-direction: column;
  }

  .notify input,
  .notify button {
    width: 100%;
    flex-basis: auto;
  }

  .gold-line {
    max-width: 18rem;
    margin-left: auto;
    margin-right: auto;
    letter-spacing: 0.04em;
    font-size: 0.86rem;
  }

  .gold-line .edge {
    display: block;
  }

  .football {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .notify button,
  .notify input {
    transition: none;
  }
}
