:root {
  --surface: #0e0e0e;
  --surface-2: #131313;
  --surface-3: #201f1f;
  --navy: #0a1128;
  --blue: #10224f;
  --yellow: #ffd700;
  --yellow-2: #e9c400;
  --white: #ffffff;
  --muted: #c6c6ce;
  --soft-blue: #d8e2ff;
  --line: rgba(255,255,255,.13);
  --line-yellow: rgba(255,215,0,.55);
  --font-display: "Anton", Impact, sans-serif;
  --font-body: "Plus Jakarta Sans", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { min-height: 100%; background: var(--surface); }
body {
  margin: 0;
  min-height: 100vh;
  color: var(--white);
  font-family: var(--font-body);
  background: var(--surface);
  overflow-x: hidden;
}

body::selection { background: var(--yellow); color: var(--surface); }

.site-shell {
  position: relative;
  min-height: 100vh;
  display: grid;
  grid-template-rows: auto 1fr auto;
  isolation: isolate;
  overflow: hidden;
}

.hero-bg {
  position: fixed;
  inset: 0;
  z-index: -4;
  background-image:
    linear-gradient(90deg, rgba(14,14,14,.98) 0%, rgba(14,14,14,.72) 36%, rgba(10,17,40,.35) 70%, rgba(14,14,14,.86) 100%),
    linear-gradient(0deg, rgba(14,14,14,.95) 0%, rgba(14,14,14,.42) 38%, rgba(10,17,40,.45) 100%),
    url("assets/hero-stadium.png");
  background-size: cover;
  background-position: center;
  transform: scale(1.03);
}

.hero-bg::before {
  content: "";
  position: absolute;
  inset: -12% -20% auto auto;
  width: 620px;
  height: 620px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(255,255,255,.28), rgba(255,255,255,.08) 28%, rgba(255,215,0,.09) 43%, transparent 67%);
  filter: blur(18px);
  opacity: .9;
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: auto -15% -24% -15%;
  height: 360px;
  background: radial-gradient(ellipse at center, rgba(255,215,0,.16), rgba(255,215,0,.04) 30%, transparent 65%);
  filter: blur(26px);
}

.noise {
  position: fixed;
  inset: 0;
  z-index: -3;
  pointer-events: none;
  opacity: .12;
  background-image:
    repeating-radial-gradient(circle at 0 0, rgba(255,255,255,.08) 0 1px, transparent 1px 4px);
  mix-blend-mode: overlay;
}

.topbar {
  width: min(100% - 48px, 1220px);
  margin: 0 auto;
  padding: 16px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand-mini {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--white);
  text-transform: uppercase;
  font-family: var(--font-display);
  font-size: 20px;
  font-style: italic;
  letter-spacing: .02em;
}

.brand-mini img {
  width: 42px;
  height: 42px;
  object-fit: contain;
  filter: drop-shadow(0 0 18px rgba(255,215,0,.25));
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--line);
  color: var(--soft-blue);
  background: rgba(19,19,19,.62);
  backdrop-filter: blur(18px);
  padding: 10px 14px;
  border-radius: 999px;
  font-size: 12px;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-weight: 800;
}

.status-pill span {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--yellow);
  box-shadow: 0 0 18px var(--yellow);
}

.coming-card {
  width: min(100% - 40px, 1050px);
  margin: 32px auto 40px;
  position: relative;
  text-align: center;
  padding: clamp(32px, 5vw, 60px);
  border: 1px solid var(--line);
  border-radius: 24px;
  background:
    linear-gradient(145deg, rgba(10,17,40,.86), rgba(19,19,19,.82) 42%, rgba(14,14,14,.92)),
    radial-gradient(circle at 50% 0%, rgba(255,215,0,.18), transparent 34%);
  box-shadow:
    0 32px 120px rgba(0,0,0,.58),
    inset 0 1px 0 rgba(255,255,255,.08);
  overflow: hidden;
}

.coming-card::before,
.coming-card::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.coming-card::before {
  inset: 0 0 auto 0;
  height: 5px;
  background: linear-gradient(90deg, transparent, var(--yellow), transparent);
}

.coming-card::after {
  width: 170%;
  height: 120px;
  left: -35%;
  bottom: 16%;
  border-top: 3px solid var(--yellow);
  transform: rotate(-3deg);
  opacity: .98;
  box-shadow: 0 0 30px rgba(255,215,0,.22);
}

.logo-stage {
  width: clamp(180px, 22vw, 270px);
  height: clamp(165px, 20vw, 250px);
  margin: 0 auto 8px;
  display: grid;
  place-items: center;
  position: relative;
}

.main-logo {
  width: 100%;
  max-height: 100%;
  object-fit: contain;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 22px 38px rgba(0,0,0,.68)) drop-shadow(0 0 22px rgba(255,215,0,.22));
}

.ring {
  position: absolute;
  border-radius: 999px;
  inset: 16%;
  border: 1px solid rgba(255,215,0,.32);
  transform: skewX(-10deg);
}

.ring-one {
  background: radial-gradient(circle, rgba(255,215,0,.08), transparent 65%);
  box-shadow: 0 0 45px rgba(255,215,0,.14);
}

.ring-two {
  inset: 2%;
  border-color: rgba(216,226,255,.10);
  transform: skewX(-10deg) rotate(9deg);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--yellow);
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: 12px;
  font-weight: 900;
  margin: 8px 0 18px;
}

.eyebrow span {
  width: 44px;
  height: 4px;
  background: var(--yellow);
  display: inline-block;
}

h1 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 400;
  font-style: italic;
  letter-spacing: .015em;
  text-transform: uppercase;
  line-height: .92;
  font-size: clamp(54px, 8vw, 112px);
  text-shadow: 0 12px 35px rgba(0,0,0,.45);
}

h1 strong {
  color: var(--yellow);
  font-weight: 400;
}

.tagline {
  color: var(--white);
  margin: 22px auto 0;
  font-family: var(--font-display);
  text-transform: uppercase;
  font-style: italic;
  font-size: clamp(24px, 3.4vw, 46px);
  line-height: 1;
}

.intro {
  color: var(--soft-blue);
  max-width: 720px;
  margin: 18px auto 0;
  font-size: clamp(16px, 1.7vw, 20px);
  line-height: 1.65;
}

.lead-form {
  margin: 32px auto 0;
  max-width: 680px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  padding: 8px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 14px;
  background: rgba(14,14,14,.72);
  backdrop-filter: blur(18px);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.07);
  position: relative;
  z-index: 2;
}

.lead-form input[type="email"] {
  width: 100%;
  min-height: 58px;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--white);
  padding: 0 18px;
  font-size: 16px;
  font-family: var(--font-body);
}

.lead-form input[type="email"]::placeholder { color: rgba(216,226,255,.58); }

.lead-form button {
  border: 0;
  min-height: 58px;
  padding: 0 28px;
  border-radius: 9px;
  color: var(--surface);
  background: linear-gradient(90deg, var(--yellow), var(--yellow-2));
  font-family: var(--font-display);
  font-size: 22px;
  text-transform: uppercase;
  font-style: italic;
  letter-spacing: .02em;
  cursor: pointer;
  box-shadow: 0 0 24px rgba(255,215,0,.26);
  transition: transform .2s ease, filter .2s ease;
}

.lead-form button:hover { transform: translateY(-1px) scale(1.015); filter: brightness(1.04); }
.lead-form button:active { transform: translateY(0) scale(.99); }

.hidden-field { display: none !important; }
.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;
}

.form-message {
  max-width: 680px;
  margin: 16px auto 0;
  padding: 14px 18px;
  border-radius: 10px;
  font-weight: 800;
  font-size: 14px;
  position: relative;
  z-index: 2;
}

.form-message.success {
  color: var(--surface);
  background: var(--yellow);
}

.form-message.error {
  color: #ffdad6;
  background: rgba(147,0,10,.58);
  border: 1px solid rgba(255,180,171,.45);
}

.quick-grid {
  margin: 38px auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  text-align: left;
  position: relative;
  z-index: 2;
}

.quick-grid article {
  min-height: 150px;
  padding: 20px;
  border: 1px solid rgba(174,198,255,.24);
  background:
    radial-gradient(circle at 100% 0%, rgba(255,215,0,.11), transparent 40%),
    rgba(19,19,19,.72);
  border-radius: 12px;
  overflow: hidden;
}

.quick-grid span {
  display: inline-block;
  color: var(--yellow);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .12em;
  margin-bottom: 18px;
}

.quick-grid h2 {
  margin: 0 0 8px;
  color: var(--white);
  font-family: var(--font-display);
  font-size: 26px;
  line-height: 1;
  text-transform: uppercase;
  font-style: italic;
  font-weight: 400;
}

.quick-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
  font-size: 14px;
}

.footer-line {
  width: min(100% - 48px, 1220px);
  margin: 0 auto;
  padding: 18px 0 26px;
  border-top: 1px solid rgba(255,255,255,.12);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  color: var(--muted);
  font-size: 13px;
}

.footer-line strong {
  color: var(--yellow);
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: 12px;
}

@media (max-width: 780px) {
  .topbar {
    width: min(100% - 28px, 1220px);
    padding-top: 14px;
  }

  .brand-mini span { display: none; }
  .status-pill { font-size: 10px; padding: 9px 11px; }

  .coming-card {
    width: min(100% - 28px, 1050px);
    margin-top: 10px;
    border-radius: 18px;
    padding: 28px 18px;
  }

  .coming-card::after { bottom: 24%; opacity: .6; }

  .logo-stage {
    width: 190px;
    height: 180px;
  }

  .lead-form {
    grid-template-columns: 1fr;
    padding: 8px;
  }

  .lead-form button { width: 100%; }

  .quick-grid { grid-template-columns: 1fr; }

  .footer-line {
    width: min(100% - 28px, 1220px);
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 430px) {
  h1 { font-size: 48px; }
  .tagline { font-size: 24px; }
  .intro { font-size: 15px; }
}
