:root {
  --purple: #552b86;
  --purple-dark: #2a103f;
  --orange: #ff681f;
  --orange-deep: #e94f13;
  --ink: #171321;
  --muted: #67616f;
  --border: rgba(85, 43, 134, 0.15);
  --surface: #ffffff;
  --soft: #f7f4fb;
  --display: "Barlow Condensed", Impact, sans-serif;
  --body: "Outfit", system-ui, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: linear-gradient(180deg, #fbf9ff 0%, #ffffff 48%, #f7f4fb 100%);
  font-family: var(--body);
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  min-height: 88px;
  padding: 14px clamp(18px, 4vw, 56px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(85, 43, 134, 0.96);
  box-shadow: 0 14px 34px rgba(42, 16, 63, 0.18);
  backdrop-filter: blur(14px);
}

.brand img {
  width: clamp(230px, 28vw, 370px);
  max-height: 72px;
  display: block;
  object-fit: contain;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  color: white;
  font-size: 0.86rem;
  font-weight: 800;
}

.nav-actions a {
  text-decoration: none;
  opacity: 0.92;
}

.nav-cta {
  padding: 10px 16px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--orange), var(--orange-deep));
  box-shadow: 0 10px 24px rgba(233, 79, 19, 0.28);
}

.hero {
  min-height: calc(100vh - 88px);
  position: relative;
  overflow: hidden;
  display: grid;
  align-items: center;
  padding: clamp(42px, 8vw, 96px) clamp(22px, 6vw, 86px);
  color: white;
}

.hero-slides,
.hero-slide,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-slide {
  background-size: cover;
  background-position: center;
  opacity: 0;
  animation: heroFade 30s ease-in-out infinite;
}

.slide-1 { background-image: url("assets/hero_images/01-stadium-golden-hour.png"); animation-delay: 0s; }
.slide-2 { background-image: url("assets/hero_images/02-fans-phones-live-moment.png"); animation-delay: 6s; }
.slide-3 { background-image: url("assets/hero_images/03-rewards-confetti-celebration.png"); animation-delay: 12s; }
.slide-4 { background-image: url("assets/hero_images/04-stadium-tunnel-concourse.png"); animation-delay: 18s; }
.slide-5 { background-image: url("assets/hero_images/05-live-prediction-phone-tap.png"); animation-delay: 24s; }

@keyframes heroFade {
  0% { opacity: 0; }
  8% { opacity: 1; }
  26% { opacity: 1; }
  35% { opacity: 0; }
  100% { opacity: 0; }
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(33, 11, 66, 0.9) 0%, rgba(85, 43, 134, 0.62) 38%, rgba(255, 104, 31, 0.18) 100%),
    radial-gradient(circle at 24% 18%, rgba(255,255,255,0.14), transparent 34%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 9px 16px;
  background: linear-gradient(135deg, var(--orange), var(--orange-deep));
  color: white;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  box-shadow: 0 12px 26px rgba(233, 79, 19, 0.3);
}

.hero h1 {
  margin: 24px 0 20px;
  font-family: var(--display);
  font-size: clamp(5rem, 11vw, 10rem);
  font-style: italic;
  font-weight: 900;
  line-height: 0.78;
  letter-spacing: -0.055em;
  text-transform: uppercase;
  text-shadow: 0 12px 40px rgba(10, 4, 24, 0.64), 4px 4px 0 rgba(255, 104, 31, 0.34);
  -webkit-text-stroke: 2px rgba(36, 16, 66, 0.85);
  transform: skewX(-6deg);
  transform-origin: left center;
}

.hero p {
  max-width: 680px;
  margin: 0;
  font-size: clamp(1.08rem, 2vw, 1.45rem);
  font-weight: 800;
  line-height: 1.36;
  text-shadow: 0 8px 28px rgba(10, 4, 24, 0.48);
}

.hero-actions,
.final-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  min-height: 48px;
  padding: 14px 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-weight: 900;
  text-decoration: none;
  transition: transform 140ms ease, box-shadow 140ms ease, background 140ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button.primary {
  color: white;
  background: linear-gradient(135deg, var(--orange), var(--orange-deep));
  box-shadow: 0 14px 28px rgba(233, 79, 19, 0.32);
}

.button.secondary {
  color: white;
  background: rgba(255,255,255,0.14);
  border: 1px solid rgba(255,255,255,0.24);
}

.button.secondary.dark {
  color: var(--purple);
  background: #f3eef8;
  border: 1px solid var(--border);
}

.signal-band {
  max-width: 1120px;
  margin: -42px auto 0;
  padding: 0 clamp(18px, 4vw, 28px);
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.signal-band div,
.feature-card {
  background: rgba(255,255,255,0.94);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 18px 42px rgba(42, 16, 63, 0.1);
}

.signal-band strong,
.feature-card h3 {
  display: block;
  font-family: var(--display);
  font-size: 1.28rem;
  font-weight: 900;
  color: var(--ink);
}

.signal-band span,
.feature-card p,
.section-copy p,
.partner-panel p,
.final-cta p {
  color: var(--muted);
  line-height: 1.55;
}

.section {
  max-width: 1120px;
  margin: 0 auto;
  padding: clamp(58px, 8vw, 92px) clamp(18px, 4vw, 28px);
}

.split-section {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 44px;
  align-items: start;
}

.section h2 {
  margin: 16px 0 14px;
  font-family: var(--display);
  font-size: clamp(2.6rem, 5vw, 4.4rem);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: 0;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.feature-card span {
  display: inline-flex;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: var(--purple);
  color: white;
  font-weight: 900;
}

.partner-section {
  max-width: 100%;
  background:
    linear-gradient(135deg, rgba(85,43,134,0.94), rgba(233,79,19,0.82)),
    url("assets/hero_images/04-stadium-tunnel-concourse.png") center/cover;
  color: white;
}

.partner-panel {
  max-width: 960px;
  margin: 0 auto;
}

.partner-panel p {
  color: rgba(255,255,255,0.86);
  max-width: 720px;
}

.partner-stats {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.partner-stats div {
  padding: 18px;
  border-radius: 18px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.18);
}

.partner-stats strong {
  display: block;
  font-family: var(--display);
  font-size: 1.45rem;
  font-weight: 900;
}

.partner-stats span {
  color: rgba(255,255,255,0.8);
}

.final-cta {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 22px;
  align-items: center;
}

.final-cta img {
  width: 72px;
  height: 92px;
  object-fit: contain;
}

.final-cta h2 {
  margin: 0 0 6px;
}

.final-cta p {
  margin: 0;
}

.site-footer {
  min-height: 82px;
  padding: 24px clamp(18px, 4vw, 56px);
  display: flex;
  justify-content: space-between;
  gap: 18px;
  background: var(--purple-dark);
  color: white;
  font-weight: 800;
}

.coming-soon-page {
  min-height: 100vh;
  background:
    linear-gradient(120deg, rgba(42,16,63,0.92), rgba(85,43,134,0.78), rgba(233,79,19,0.58)),
    url("assets/hero_images/02-fans-phones-live-moment.png") center/cover fixed;
}

.coming-soon {
  min-height: calc(100vh - 88px);
  padding: clamp(34px, 8vw, 88px) clamp(18px, 5vw, 64px);
  display: grid;
  place-items: center;
}

.coming-soon-card {
  width: min(760px, 100%);
  padding: clamp(30px, 6vw, 58px);
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 30px;
  color: white;
  background: rgba(32, 12, 58, 0.72);
  box-shadow: 0 30px 80px rgba(10, 4, 24, 0.42);
  backdrop-filter: blur(18px);
}

.coming-soon-card img {
  width: 70px;
  height: 90px;
  object-fit: contain;
  margin-bottom: 22px;
}

.coming-soon-card h1 {
  margin: 22px 0 18px;
  font-family: var(--display);
  font-size: clamp(4.6rem, 12vw, 8.8rem);
  font-style: italic;
  font-weight: 900;
  line-height: 0.82;
  letter-spacing: -0.045em;
  text-transform: uppercase;
  text-shadow: 0 12px 36px rgba(10, 4, 24, 0.62), 4px 4px 0 rgba(255, 104, 31, 0.34);
  -webkit-text-stroke: 1.5px rgba(36, 16, 66, 0.78);
}

.coming-soon-card p {
  max-width: 620px;
  margin: 0;
  color: rgba(255,255,255,0.88);
  font-size: clamp(1.04rem, 2.2vw, 1.28rem);
  font-weight: 700;
  line-height: 1.55;
}

@media (max-width: 860px) {
  .site-header {
    position: static;
  }

  .nav-actions a:not(.nav-cta) {
    display: none;
  }

  .hero {
    min-height: auto;
    padding-top: 72px;
    padding-bottom: 96px;
  }

  .hero h1 {
    font-size: clamp(4rem, 18vw, 6.2rem);
    -webkit-text-stroke-width: 1.3px;
  }

  .signal-band,
  .split-section,
  .feature-grid,
  .partner-stats,
  .final-cta {
    grid-template-columns: 1fr;
  }

  .signal-band {
    margin-top: -36px;
  }

  .final-actions {
    width: 100%;
  }

  .button {
    width: 100%;
  }
}

@media (max-width: 520px) {
  .site-header {
    min-height: 78px;
  }

  .brand img {
    width: 235px;
  }

  .hero {
    padding-left: 18px;
    padding-right: 18px;
  }

  .hero h1 {
    font-size: clamp(3.3rem, 20vw, 4.8rem);
    line-height: 0.84;
  }

  .hero p {
    font-size: 1.02rem;
  }

  .site-footer {
    flex-direction: column;
  }

  .coming-soon-card {
    border-radius: 24px;
  }

  .coming-soon-card h1 {
    font-size: clamp(3.7rem, 19vw, 5.4rem);
    -webkit-text-stroke-width: 1px;
  }
}
