:root {
  --navy: #071428;
  --navy-soft: #0d1f3c;
  --orange: #f97316;
  --orange-bright: #fb923c;
  --orange-glow: rgba(249, 115, 22, 0.55);
  --white: #f8fafc;
  --muted: #cbd5e1;
  --line: rgba(255, 255, 255, 0.14);
  --font: "Roboto Condensed", "Segoe UI", system-ui, sans-serif;
}

* {
  box-sizing: border-box;
}

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

body {
  font-family: var(--font);
  color: var(--white);
  background: var(--navy);
  overflow-x: hidden;
}

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

.bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.bg-stadium {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 120% 80% at 50% 100%, rgba(15, 23, 42, 0.2), transparent 55%),
    linear-gradient(180deg, #020617 0%, #0b1730 38%, #111827 100%);
}

.bg-stadium::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 18% 12%, rgba(255, 255, 255, 0.22), transparent 18%),
    radial-gradient(circle at 82% 12%, rgba(255, 255, 255, 0.22), transparent 18%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), transparent 28%),
    repeating-linear-gradient(
      90deg,
      transparent 0,
      transparent 48px,
      rgba(255, 255, 255, 0.015) 48px,
      rgba(255, 255, 255, 0.015) 49px
    );
  opacity: 0.9;
}

.bg-lights {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 35% 22% at 15% 0%, rgba(255, 255, 255, 0.28), transparent 70%),
    radial-gradient(ellipse 35% 22% at 85% 0%, rgba(255, 255, 255, 0.28), transparent 70%);
}

.bg-streak {
  position: absolute;
  bottom: -8%;
  width: 55%;
  height: 70%;
  filter: blur(2px);
  opacity: 0.85;
}

.bg-streak-left {
  left: -8%;
  background: linear-gradient(32deg, transparent 35%, rgba(249, 115, 22, 0.18) 48%, rgba(251, 146, 60, 0.42) 58%, transparent 72%);
  transform: skewX(-8deg);
}

.bg-streak-right {
  right: -8%;
  background: linear-gradient(-32deg, transparent 35%, rgba(249, 115, 22, 0.18) 48%, rgba(251, 146, 60, 0.42) 58%, transparent 72%);
  transform: skewX(8deg);
}

.bg-vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 35%, rgba(2, 6, 23, 0.72) 100%);
}

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

.brand {
  margin-bottom: 28px;
}

.brand-logo {
  width: min(560px, 92vw);
  height: auto;
  filter: drop-shadow(0 18px 40px rgba(0, 0, 0, 0.45));
}

.hero-title {
  margin: 0 0 18px;
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-style: italic;
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  text-shadow: 0 8px 24px rgba(0, 0, 0, 0.45);
}

.hero-title-main {
  display: block;
  color: var(--white);
}

.hero-title-accent {
  display: block;
  color: var(--orange-bright);
  text-shadow: 0 0 28px var(--orange-glow);
}

.hero-copy {
  margin: 0 auto 34px;
  max-width: 760px;
  font-size: clamp(1rem, 2.2vw, 1.2rem);
  line-height: 1.65;
  color: var(--muted);
}

.cta-form {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  gap: 12px;
  margin-bottom: 14px;
}

.email-field {
  position: relative;
  display: flex;
  align-items: center;
  min-width: min(360px, 100%);
  flex: 1 1 320px;
  max-width: 420px;
}

.email-icon {
  position: absolute;
  left: 16px;
  width: 20px;
  height: 20px;
  fill: #94a3b8;
  pointer-events: none;
}

.email-field input {
  width: 100%;
  height: 54px;
  padding: 0 18px 0 48px;
  border: 1px solid rgba(148, 163, 184, 0.45);
  border-radius: 6px;
  background: rgba(15, 23, 42, 0.72);
  color: var(--white);
  font: inherit;
  font-size: 1rem;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.email-field input::placeholder {
  color: #94a3b8;
}

.email-field input:focus {
  border-color: rgba(249, 115, 22, 0.75);
  box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.18);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 54px;
  padding: 0 22px;
  border-radius: 6px;
  border: 2px solid transparent;
  font: inherit;
  font-size: 0.98rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.btn svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.btn-primary {
  background: linear-gradient(180deg, #fb923c 0%, #ea580c 100%);
  color: #fff;
  box-shadow: 0 10px 28px rgba(234, 88, 12, 0.35);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 32px rgba(234, 88, 12, 0.42);
}

.btn-secondary {
  background: rgba(15, 23, 42, 0.35);
  border-color: var(--orange);
  color: var(--orange-bright);
}

.btn-secondary:hover {
  transform: translateY(-1px);
  background: rgba(249, 115, 22, 0.08);
}

.cta-note {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  color: #fdba74;
  font-size: 0.95rem;
}

.cta-note svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
  flex-shrink: 0;
}

.cta-note-success {
  color: #86efac;
}

.cta-note-error {
  color: #fca5a5;
}

.features {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin-top: 56px;
  padding-top: 34px;
  border-top: 1px solid var(--line);
}

.feature {
  padding: 0 18px;
  border-right: 1px solid var(--line);
}

.feature:last-child {
  border-right: 0;
}

.feature-icon {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  margin: 0 auto 14px;
  border-radius: 12px;
  background: rgba(249, 115, 22, 0.12);
  box-shadow: inset 0 0 0 1px rgba(249, 115, 22, 0.22);
}

.feature-icon svg {
  width: 28px;
  height: 28px;
  fill: var(--orange-bright);
}

.feature h3 {
  margin: 0 0 10px;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.feature p {
  margin: 0;
  color: #94a3b8;
  font-size: 0.95rem;
  line-height: 1.55;
}

.footer {
  margin-top: 42px;
  padding-top: 22px;
  border-top: 1px solid rgba(249, 115, 22, 0.35);
  color: #94a3b8;
  font-size: 0.95rem;
}

.footer-brand {
  color: var(--white);
  font-weight: 700;
  letter-spacing: 0.04em;
}

@media (max-width: 960px) {
  .features {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px 0;
  }

  .feature {
    border-right: 0;
    padding: 0 12px;
  }
}

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

  .cta-form {
    flex-direction: column;
    align-items: stretch;
  }

  .email-field,
  .btn {
    max-width: none;
    width: 100%;
  }

  .features {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}
