:root {
  --black: #050505;
  --dark: #0b0b0f;
  --red: #dd0000;
  --red-dark: #630006;
  --green: #13d82e;
  --green-dark: #079b21;
  --text: #ffffff;
  --muted: #c8c8c8;
  --line: rgba(255, 255, 255, 0.14);
  --card: #121216;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--black);
  color: var(--text);
  font-family: "Inter", Arial, sans-serif;
}

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

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1120px, calc(100% - 34px));
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 16px;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1120px, calc(100% - 28px));
  margin: 16px auto -104px;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  background: rgba(0, 0, 0, 0.78);
  backdrop-filter: blur(14px);
}

.brand img {
  width: 64px;
  height: 64px;
  object-fit: contain;
}

.top-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--green), var(--green-dark));
  box-shadow: 0 14px 30px rgba(17, 214, 66, 0.32);
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.button {
  min-height: 54px;
  padding: 0 28px;
  font-size: 15px;
}

.button.center {
  display: flex;
  width: max-content;
  margin: 28px auto 0;
}

section {
  position: relative;
  overflow: hidden;
  padding: 76px 0;
}

.section-dark {
  background:
    radial-gradient(circle at 70% 20%, rgba(224, 0, 18, 0.2), transparent 28%),
    linear-gradient(180deg, #070707 0%, #111115 50%, #050505 100%);
}

.section-red {
  background:
    radial-gradient(circle at 20% 15%, rgba(255, 255, 255, 0.12), transparent 22%),
    linear-gradient(160deg, var(--red-dark), #120003 48%, #050505 100%);
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Bebas Neue", Impact, sans-serif;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 0.95;
  text-transform: uppercase;
}

h1 {
  font-size: clamp(54px, 8vw, 96px);
}

h2 {
  max-width: 900px;
  margin: 0 auto 24px;
  text-align: center;
  font-size: clamp(42px, 5.6vw, 74px);
}

h3 {
  font-size: 34px;
}

h1 span,
h2 span {
  color: var(--red);
}

p {
  margin: 0;
}

.lead,
.hero-copy p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.6;
}

.hero {
  min-height: 760px;
  padding-top: 150px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 30px;
  align-items: center;
}

.hero-logo {
  width: 180px;
  height: auto;
  margin-bottom: 12px;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.8));
}

.hero-copy p {
  max-width: 570px;
  margin: 20px 0 26px;
}

.hero-media {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.04);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.48);
}

.hero-media img,
.video-box img,
.split > img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.demo h2 {
  max-width: 760px;
}

.video-box {
  position: relative;
  max-width: 820px;
  margin: 0 auto;
  overflow: hidden;
  border: 6px solid #250006;
  border-radius: 26px;
  background: #000;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.55);
}

.video-box img {
  width: 100%;
  height: auto;
  object-fit: contain;
  opacity: 0.9;
}

.play {
  position: absolute;
  inset: 50% auto auto 50%;
  width: 82px;
  height: 82px;
  border: 0;
  border-radius: 50%;
  background: #fff;
  transform: translate(-50%, -50%);
}

.play::after {
  content: "";
  position: absolute;
  top: 25px;
  left: 33px;
  width: 0;
  height: 0;
  border-top: 16px solid transparent;
  border-bottom: 16px solid transparent;
  border-left: 24px solid var(--red);
}

.mini-plan {
  max-width: 580px;
  margin: 30px auto 0;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 20px;
  background: rgba(0, 0, 0, 0.5);
  text-align: center;
}

.mini-plan p {
  margin: 10px 0;
  color: var(--muted);
  line-height: 1.55;
}

.mini-plan strong {
  display: block;
  margin-bottom: 18px;
  color: #fff;
}

.brand-strip {
  width: 100%;
  height: auto;
  margin: 0 auto 24px;
  object-fit: contain;
}

.poster-marquee,
.testimonial-row {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  padding: 8px 0 18px;
  scroll-snap-type: x mandatory;
}

.poster-marquee img {
  flex: 0 0 170px;
  width: 170px;
  aspect-ratio: 2 / 3;
  height: auto;
  border: 1px solid var(--line);
  border-radius: 14px;
  object-fit: cover;
  scroll-snap-align: start;
}

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

.feature-grid article {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 18px;
  background: rgba(0, 0, 0, 0.38);
}

.feature-grid img {
  width: 100%;
  height: 170px;
  object-fit: cover;
}

.feature-grid h3,
.feature-grid p {
  padding: 0 18px;
}

.feature-grid h3 {
  margin-top: 18px;
}

.feature-grid p {
  margin: 8px 0 20px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.sports-grid,
.platform-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.sports-grid img,
.platform-grid img {
  width: 100%;
  height: auto;
  border: 1px solid var(--line);
  border-radius: 16px;
  object-fit: contain;
  background: #111;
}

.sports-grid img {
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.platform-grid img {
  aspect-ratio: 16 / 9;
  padding: 6px;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px;
  align-items: center;
}

.split h2 {
  margin-left: 0;
  text-align: left;
}

.split .lead {
  margin-bottom: 24px;
}

.comparison h2 {
  max-width: 860px;
}

.saving {
  display: grid;
  gap: 12px;
  max-width: 760px;
  margin: 28px auto 0;
  text-align: center;
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1;
}

.saving strong {
  color: var(--green);
  font-weight: 400;
}

.testimonial-row img {
  flex: 0 0 300px;
  width: 300px;
  height: auto;
  border-radius: 18px;
  scroll-snap-align: start;
}

.testimonials .testimonial-row {
  justify-content: center;
}

.plans-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}

.plan {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 34px 26px 26px;
  border: 2px solid rgba(255, 255, 255, 0.14);
  border-radius: 24px;
  background: #fff;
  color: #111;
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.45);
}

.plan.featured {
  border-color: var(--red);
  transform: translateY(-12px);
}

.trial-plan {
  background:
    radial-gradient(circle at center top, rgba(19, 216, 46, 0.28), transparent 38%),
    linear-gradient(180deg, #101010, #050505);
  color: #fff;
  box-shadow:
    0 0 0 3px rgba(19, 216, 46, 0.18),
    0 25px 70px rgba(19, 216, 46, 0.24);
}

.trial-plan .plan-label,
.trial-plan strong {
  color: var(--green);
}

.trial-plan li {
  color: #e8e8e8;
}

.trial-plan li::before {
  color: var(--green);
}

.badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: max-content;
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--red);
  color: #fff;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.plan-label {
  color: var(--red);
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
}

.plan h3 {
  margin-bottom: 16px;
  text-align: center;
  font-size: 48px;
}

.plan ul {
  display: grid;
  gap: 12px;
  margin: 0 0 22px;
  padding: 0;
  list-style: none;
}

.plan li {
  position: relative;
  padding-left: 24px;
  color: #303030;
  font-size: 14px;
  line-height: 1.35;
}

.plan li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--green-dark);
  font-weight: 900;
}

.plan strong {
  display: block;
  margin: auto 0 20px;
  color: var(--red);
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: 64px;
  font-weight: 400;
  line-height: 0.92;
  text-align: center;
}

.plan .button {
  width: 100%;
}

.guarantee img {
  width: min(360px, 100%);
  height: auto;
  justify-self: center;
}

.accordion {
  display: grid;
  gap: 12px;
  max-width: 820px;
  margin: 0 auto;
}

details {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.05);
}

summary {
  cursor: pointer;
  padding: 18px 20px;
  font-weight: 900;
}

details p {
  padding: 0 20px 18px;
  color: var(--muted);
  line-height: 1.55;
}

.footer {
  padding: 58px 0 100px;
  border-top: 1px solid var(--line);
  background: #030303;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 28px;
  align-items: center;
}

.footer-logo {
  width: 100px;
  height: auto;
  margin-bottom: 10px;
}

.footer h3 {
  margin-bottom: 12px;
  font-size: 28px;
}

.footer p,
.copyright {
  color: var(--muted);
  font-size: 13px;
}

.copyright {
  margin-top: 34px;
  text-align: center;
}

.whatsapp-fixed {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 30;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 18px;
  border-radius: 999px;
  background: var(--green);
  box-shadow: 0 16px 38px rgba(17, 214, 66, 0.36);
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

@media (max-width: 860px) {
  .topbar {
    top: 10px;
    margin-top: 10px;
    margin-bottom: -92px;
  }

  .hero {
    min-height: auto;
    padding-top: 132px;
  }

  .hero-grid,
  .split,
  .plans-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    text-align: center;
  }

  .hero-logo {
    margin-right: auto;
    margin-left: auto;
  }

  .hero-copy p {
    margin-right: auto;
    margin-left: auto;
  }

  .feature-grid,
  .sports-grid,
  .platform-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .split h2 {
    text-align: center;
  }

  .plan.featured {
    transform: none;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-logo,
  .footer img {
    margin-right: auto;
    margin-left: auto;
  }
}

@media (max-width: 520px) {
  .container {
    width: min(100% - 28px, 430px);
  }

  .topbar {
    width: calc(100% - 20px);
    border-radius: 14px;
  }

  .brand img {
    width: 56px;
    height: 56px;
  }

  .top-cta {
    min-height: 42px;
    padding: 0 16px;
    font-size: 12px;
  }

  section {
    padding: 58px 0;
  }

  .hero {
    padding-top: 118px;
  }

  .hero-logo {
    width: 158px;
  }

  h1 {
    font-size: 52px;
  }

  h2 {
    font-size: 40px;
  }

  .lead,
  .hero-copy p {
    font-size: 16px;
  }

  .button {
    width: 100%;
  }

  .button.center {
    width: 100%;
  }

  .hero-media,
  .video-box {
    border-radius: 18px;
  }

  .poster-marquee img {
    flex-basis: 132px;
    width: 132px;
  }

  .feature-grid,
  .sports-grid,
  .platform-grid {
    gap: 10px;
  }

  .feature-grid img {
    height: 128px;
  }

  .feature-grid h3 {
    font-size: 28px;
  }

  .testimonial-row img {
    flex-basis: 260px;
    width: 260px;
  }

  .testimonials .testimonial-row {
    justify-content: flex-start;
  }

  .plan {
    padding: 30px 18px 20px;
  }

  .plan strong {
    font-size: 58px;
  }
}
