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

:root {
  --black: #000000;
  --white: #FFFFFF;
  --gray-50: #F9FAFB;
  --gray-100: #F3F4F6;
  --gray-200: #E5E7EB;
  --gray-400: #9CA3AF;
  --gray-600: #4B5563;
  --gray-800: #1F2937;
  --gray-900: #111827;
  --blue: #3B82F6;
  --blue-light: #EFF6FF;
  --green: #10B981;
  --orange: #F97316;
  --purple: #8B5CF6;
}

html { scroll-behavior: smooth; }

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  color: var(--gray-900);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--blue); text-decoration: none; }
a:hover { text-decoration: underline; }

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

/* === Layout === */
.container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 80px 0;
}

.section--dark {
  background: var(--black);
  color: var(--white);
}

.section--gray {
  background: var(--gray-50);
}

/* === Navigation === */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gray-200);
}

.nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.nav__logo {
  font-size: 20px;
  font-weight: 700;
  color: var(--black);
  text-decoration: none;
}

.nav__links {
  display: flex;
  gap: 32px;
  list-style: none;
}

.nav__links a {
  color: var(--gray-600);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
}

.nav__links a:hover {
  color: var(--black);
  text-decoration: none;
}

/* === Hero === */
.hero {
  padding: 100px 0 80px;
  text-align: center;
}

.hero__badge {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  color: var(--blue);
  background: var(--blue-light);
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 24px;
}

.hero h1 {
  font-size: clamp(40px, 6vw, 64px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

.hero p {
  font-size: 20px;
  color: var(--gray-600);
  max-width: 560px;
  margin: 0 auto 40px;
  line-height: 1.5;
}

.hero__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--black);
  color: var(--white);
  padding: 16px 32px;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.15s, box-shadow 0.15s;
}

.hero__cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  text-decoration: none;
}

.hero__hint {
  font-size: 13px;
  color: var(--gray-400);
  margin-top: 12px;
}

/* === Sports bar === */
.sports {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  padding: 32px 0 0;
}

.sports__tag {
  font-size: 13px;
  font-weight: 500;
  color: var(--gray-600);
  background: var(--gray-100);
  padding: 8px 16px;
  border-radius: 20px;
}

/* === Features === */
.features__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.feature {
  padding: 32px;
  border-radius: 16px;
  border: 1px solid var(--gray-200);
  background: var(--white);
}

.feature__icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 16px;
}

.feature__icon--blue { background: var(--blue-light); }
.feature__icon--green { background: #ecfdf5; }
.feature__icon--orange { background: #fff7ed; }
.feature__icon--purple { background: #f5f3ff; }
.feature__icon--black { background: var(--gray-100); }

.feature h3 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 8px;
}

.feature p {
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.5;
}

.section__title {
  text-align: center;
  margin-bottom: 48px;
}

.section__title h2 {
  font-size: 36px;
  font-weight: 800;
  letter-spacing: -0.01em;
  margin-bottom: 12px;
}

.section__title p {
  font-size: 17px;
  color: var(--gray-600);
  max-width: 480px;
  margin: 0 auto;
}

.section--dark .section__title p {
  color: var(--gray-400);
}

/* === How it works === */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  text-align: center;
}

.step__number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--white);
  color: var(--black);
  font-weight: 800;
  font-size: 18px;
  margin-bottom: 16px;
}

.step h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
}

.step p {
  font-size: 14px;
  color: var(--gray-400);
  line-height: 1.5;
}

/* === Pricing === */
.pricing__cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 640px;
  margin: 0 auto;
}

.pricing__card {
  border: 2px solid var(--gray-200);
  border-radius: 16px;
  padding: 32px;
  text-align: center;
  position: relative;
}

.pricing__card--featured {
  border-color: var(--black);
}

.pricing__badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--black);
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.pricing__price {
  font-size: 40px;
  font-weight: 800;
  margin: 16px 0 4px;
}

.pricing__period {
  font-size: 14px;
  color: var(--gray-400);
  margin-bottom: 8px;
}

.pricing__note {
  font-size: 13px;
  color: var(--gray-600);
}

.pricing__label {
  font-size: 16px;
  font-weight: 600;
  color: var(--gray-600);
}

.pricing__footer {
  text-align: center;
  margin-top: 32px;
  font-size: 14px;
  color: var(--gray-400);
}

/* === CTA Banner === */
.cta-banner {
  text-align: center;
}

.cta-banner h2 {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 16px;
}

.cta-banner p {
  font-size: 17px;
  color: var(--gray-400);
  margin-bottom: 32px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.cta-banner__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  color: var(--black);
  padding: 16px 32px;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.15s, box-shadow 0.15s;
}

.cta-banner__btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(255,255,255,0.1);
  text-decoration: none;
}

/* === Footer === */
.footer {
  border-top: 1px solid var(--gray-200);
  padding: 40px 0;
}

.footer .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer__copy {
  font-size: 13px;
  color: var(--gray-400);
}

.footer__links {
  display: flex;
  gap: 24px;
  list-style: none;
}

.footer__links a {
  font-size: 13px;
  color: var(--gray-400);
}

.footer__links a:hover {
  color: var(--gray-600);
}

/* === Legal pages === */
.legal {
  padding: 60px 0 80px;
  max-width: 720px;
  margin: 0 auto;
}

.legal h1 {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 8px;
}

.legal__date {
  font-size: 14px;
  color: var(--gray-400);
  margin-bottom: 40px;
}

.legal h2 {
  font-size: 20px;
  font-weight: 700;
  margin-top: 40px;
  margin-bottom: 12px;
}

.legal p, .legal li {
  font-size: 15px;
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 12px;
}

.legal ul {
  padding-left: 24px;
  margin-bottom: 16px;
}

.legal li {
  margin-bottom: 6px;
}

.legal a {
  color: var(--blue);
}

/* === Responsive === */
@media (max-width: 768px) {
  .section { padding: 60px 0; }

  .nav__links { display: none; }

  .features__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .steps {
    grid-template-columns: 1fr;
    gap: 32px;
  }

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

  .footer .container {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  .hero h1 { font-size: 36px; }
  .hero p { font-size: 17px; }
}
