/* ============================================================
   Thrilla — Landing Page Styles
   Brand: background #142C55, accent #FA6400
   Aesthetic: Dark, bold, clean (Framer-inspired)
   ============================================================ */

/* --- Reset & Base --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  background-color: #142C55;
  color: rgba(255, 255, 255, 0.80);
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img, svg {
  display: block;
  max-width: 100%;
}

a {
  color: #FA6400;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

a:hover {
  opacity: 0.85;
}

/* --- Container --- */
.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

.container--narrow {
  max-width: 680px;
}

/* --- Section defaults --- */
section {
  padding: 80px 0;
  position: relative;
}

/* --- Section headers --- */
.section-label {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #FA6400;
  margin-bottom: 16px;
}

.section-heading {
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 800;
  color: #FFFFFF;
  line-height: 1.15;
  margin-bottom: 20px;
}

.section-subtext {
  font-size: clamp(16px, 2vw, 18px);
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.7;
  max-width: 600px;
}

/* --- Navigation --- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0 24px;
  background: rgba(14, 33, 68, 0.80);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.nav-inner {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.nav-wordmark {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.nav-wordmark img {
  height: 28px;
  width: auto;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  padding: 10px 24px;
  background: #FA6400;
  color: #FFFFFF;
  font-size: 14px;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.15s ease;
}

.nav-cta:hover {
  background: #e85b00;
  opacity: 1;
  transform: translateY(-1px);
}

/* --- Hero --- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: 72px;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 500px;
  background: radial-gradient(ellipse, rgba(250, 100, 0, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
}

.hero-heading {
  font-size: clamp(40px, 7vw, 80px);
  font-weight: 900;
  color: #FFFFFF;
  line-height: 1.05;
  letter-spacing: -1px;
  margin-bottom: 24px;
}

.hero-subtext {
  font-size: clamp(18px, 2.5vw, 24px);
  color: rgba(255, 255, 255, 0.55);
  font-weight: 400;
  margin-bottom: 48px;
}

.hero-badges {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.store-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.50);
  font-size: 14px;
  font-weight: 500;
  transition: border-color 0.2s ease, background 0.2s ease;
  cursor: default;
}

.store-badge:hover {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.06);
}

.store-badge svg {
  display: inline;
  flex-shrink: 0;
}

/* --- About --- */
.about {
  text-align: center;
}

.about .section-subtext {
  margin: 0 auto;
  font-size: clamp(17px, 2.2vw, 20px);
  max-width: 720px;
}

/* --- How It Works --- */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 56px;
}

.step-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  padding: 40px 32px;
  transition: border-color 0.25s ease, background 0.25s ease;
}

.step-card:hover {
  border-color: rgba(250, 100, 0, 0.20);
  background: rgba(255, 255, 255, 0.06);
}

.step-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(250, 100, 0, 0.12);
  border: 1px solid rgba(250, 100, 0, 0.20);
  color: #FA6400;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 28px;
}

.step-title {
  font-size: 18px;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 12px;
  line-height: 1.3;
}

.step-desc {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.60);
  line-height: 1.65;
}

/* --- Sports --- */
.sports-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 56px;
}

.sport-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  padding: 40px 32px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.25s ease, background 0.25s ease;
}

.sport-card:hover {
  border-color: rgba(250, 100, 0, 0.20);
  background: rgba(255, 255, 255, 0.06);
}

.sport-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: #FA6400;
  opacity: 0;
  transition: opacity 0.25s ease;
}

.sport-card:hover::before {
  opacity: 1;
}

.sport-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 6px;
  background: rgba(250, 100, 0, 0.10);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #FA6400;
  margin-bottom: 20px;
}

.sport-badge--live::after {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #FA6400;
}

.sport-badge--soon {
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.40);
}

.sport-name {
  font-size: 22px;
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 12px;
}

.sport-desc {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.60);
  line-height: 1.65;
}

.sport-card--soon {
  opacity: 0.55;
}

.sport-card--soon:hover {
  border-color: rgba(255, 255, 255, 0.10);
  background: rgba(255, 255, 255, 0.04);
}

.sport-card--soon::before {
  display: none;
}

/* --- Waitlist --- */
.waitlist {
  text-align: center;
}

.waitlist .section-subtext {
  margin: 0 auto 48px;
}

.form-wrapper {
  max-width: 480px;
  margin: 0 auto;
  background: #FFFFFF;
  border-radius: 16px;
  padding: 32px;
}

/* --- Contact --- */
.contact {
  text-align: center;
}

.contact .section-subtext {
  margin: 0 auto 48px;
}

.contact .form-wrapper {
  max-width: 560px;
  padding: 32px;
}

/* --- Footer --- */
.footer {
  padding: 48px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

.footer-socials {
  display: flex;
  align-items: center;
  gap: 24px;
}

.footer-social-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, 0.50);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-social-link:hover {
  color: #FA6400;
  opacity: 1;
}

.footer-social-link svg {
  display: inline;
  flex-shrink: 0;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 24px;
}

.footer-link {
  color: rgba(255, 255, 255, 0.40);
  font-size: 14px;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-link:hover {
  color: #FA6400;
  opacity: 1;
}

.footer-copy {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.30);
}

/* --- Divider --- */
.section-divider {
  width: 100%;
  max-width: 80px;
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
  margin: 0 auto;
  border: none;
}

/* --- Responsive --- */

/* Tablet */
@media (max-width: 900px) {
  section {
    padding: 64px 0;
  }

  .steps-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 40px;
  }

  .step-card {
    padding: 32px 28px;
  }

  .sports-grid {
    gap: 20px;
    margin-top: 40px;
  }
}

/* Mobile */
@media (max-width: 640px) {
  section {
    padding: 56px 0;
  }

  .container {
    padding: 0 20px;
  }

  .nav {
    padding: 0 20px;
  }

  .nav-inner {
    height: 64px;
  }

  .nav-cta {
    padding: 8px 18px;
    font-size: 13px;
  }

  .hero {
    min-height: calc(100vh - 40px);
    min-height: calc(100svh - 40px);
    padding-top: 64px;
  }

  .hero::before {
    width: 400px;
    height: 300px;
  }

  .hero-heading {
    letter-spacing: -0.5px;
  }

  .hero-subtext {
    margin-bottom: 36px;
  }

  .hero-badges {
    flex-direction: column;
    gap: 12px;
  }

  .store-badge {
    width: 100%;
    max-width: 260px;
    justify-content: center;
  }

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

  .sport-card {
    padding: 32px 24px;
  }

  .form-wrapper {
    padding: 24px 20px;
  }

  .footer-socials {
    gap: 20px;
  }

  .footer-links {
    gap: 20px;
  }
}
