:root {
  --bg: #0b0b0f;
  --bg-soft: #12131a;
  --bg-card: #171820;
  --bg-card-strong: #1c1d26;
  --text: #f3f3f5;
  --muted: #a8adbd;
  --accent: #e50914;
  --accent-2: #ff4d3c;
  --gold: #f4c542;
  --stroke: rgba(255, 255, 255, 0.08);
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-sm: 10px;
  --transition: all 0.3s ease;
  --font-body: 'Manrope', sans-serif;
  --font-display: 'Bebas Neue', sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: radial-gradient(circle at 20% 20%, rgba(229, 9, 20, 0.15), transparent 55%),
    radial-gradient(circle at 80% 0%, rgba(255, 77, 60, 0.18), transparent 45%),
    #0b0b0f;
  color: var(--text);
  overflow-x: hidden;
}

body::before,
body::after {
  content: '';
  position: fixed;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.35;
  z-index: -1;
}

body::before {
  background: #ff3a2d;
  top: -120px;
  left: -140px;
}

body::after {
  background: #ff9b3c;
  bottom: -160px;
  right: -140px;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1200px, 92%);
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(11, 11, 15, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--stroke);
}

.nav-wrap {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
  padding: 18px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  font-size: 1.1rem;
}

.brand-logo {
  width: 36px;
  height: 36px;
}

.brand-name {
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: 18px;
  font-size: 0.95rem;
  color: var(--muted);
  justify-content: center;
}

.nav-links a {
  transition: var(--transition);
}

.nav-links a:hover {
  color: var(--text);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: flex-end;
}

.subnav {
  display: none;
  border-top: 1px solid var(--stroke);
  background: rgba(11, 11, 15, 0.72);
}

.subnav-links {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 0;
  font-size: 0.8rem;
  color: var(--muted);
  justify-content: center;
  flex-wrap: wrap;
}

.subnav-links a {
  padding: 4px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.06);
  color: var(--muted);
  white-space: nowrap;
  transition: var(--transition);
}

.subnav-links a:hover {
  border-color: rgba(255, 255, 255, 0.25);
  color: #fff;
}

.lang-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 52px;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid var(--stroke);
  background: rgba(255, 255, 255, 0.06);
  color: var(--muted);
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
  transition: var(--transition);
}

.lang-option {
  font-weight: 700;
  letter-spacing: 0.06em;
}

.lang-divider {
  margin: 0 4px;
  opacity: 0.5;
}

.lang-option.is-active {
  color: #fff;
}

.lang-toggle:hover {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.25);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: var(--transition);
  border: 1px solid transparent;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #fff;
  box-shadow: 0 12px 30px rgba(229, 9, 20, 0.35);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(229, 9, 20, 0.45);
}

.btn-ghost {
  border: 1px solid var(--stroke);
  color: var(--muted);
}

.btn-ghost:hover {
  border-color: rgba(255, 255, 255, 0.25);
  color: #fff;
}

.btn-outline {
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  background: transparent;
}

.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent-2);
}

.btn-app {
  padding: 14px 26px;
  font-size: 0.95rem;
  font-weight: 700;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
  gap: 10px;
}

.btn-app:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.35);
}

.btn-app .btn-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.btn-app-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.1;
}

.btn-app-title {
  font-size: 0.95rem;
}

.btn-app-sub {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.7);
}

.hero {
  padding: 80px 0 40px;
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 40px;
  align-items: center;
}

.hero-copy {
  max-width: 540px;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 14px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  font-size: 0.85rem;
  color: var(--muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 5vw, 4.5rem);
  line-height: 0.9;
  letter-spacing: 0.04em;
  margin: 18px 0 16px;
}

.hero-title span {
  display: inline-block;
}

.hero-title .hero-highlight {
  color: var(--accent-2);
}

.hero-text {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 26px 0 28px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  border-top: 1px solid var(--stroke);
  padding-top: 24px;
}

.hero-stat {
  display: grid;
  gap: 4px;
}

.hero-stat strong {
  font-size: 1.4rem;
  letter-spacing: 0.04em;
}

.hero-stat span {
  font-size: 0.75rem;
  text-transform: uppercase;
  color: var(--muted);
  letter-spacing: 0.12em;
}

.hero-visual {
  position: relative;
  min-height: 360px;
}

.screen {
  position: absolute;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
  border: 1px solid var(--stroke);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.screen.main {
  inset: 0;
  padding: 24px;
  backdrop-filter: blur(12px);
}

.screen.main .screen-title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
}

.screen.main .screen-sub {
  margin-top: 12px;
  color: var(--muted);
  font-size: 0.95rem;
}

.screen-grid {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.screen-item {
  height: 80px;
  border-radius: var(--radius-sm);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 255, 255, 0.05);
  overflow: hidden;
  display: grid;
  place-items: center;
}

.screen-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.screen.small {
  width: 180px;
  height: 120px;
  right: -18px;
  bottom: -18px;
  transform: rotate(4deg);
}

.screen.small.two {
  width: 150px;
  height: 90px;
  left: -20px;
  top: -18px;
  transform: rotate(-6deg);
}

.logo-strip {
  margin-top: 36px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 12px;
  opacity: 0.8;
}

.logo-chip {
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid var(--stroke);
  text-align: center;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.section {
  padding: 80px 0;
}

.section-head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
  margin-bottom: 40px;
}

.eyebrow {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--muted);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: 0.08em;
}

.section-title span {
  color: var(--accent-2);
}

.poster-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 18px;
}

.poster-slider {
  grid-auto-flow: column;
  grid-auto-columns: minmax(160px, 1fr);
  overflow-x: auto;
  padding-bottom: 12px;
  scroll-snap-type: x mandatory;
}

.poster-slider::-webkit-scrollbar {
  height: 8px;
}

.poster-slider::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.15);
  border-radius: 999px;
}

.poster-card {
  scroll-snap-align: start;
}

.media-block {
  margin-bottom: 38px;
}

.media-title {
  font-size: 1.2rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.media-sub {
  color: var(--muted);
  margin-bottom: 16px;
}

.poster-empty {
  padding: 16px;
  border-radius: var(--radius-sm);
  border: 1px dashed var(--stroke);
  color: var(--muted);
  text-align: center;
  margin-bottom: 16px;
}

.poster-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--stroke);
  background: linear-gradient(165deg, #2b2d38, #111218);
  display: grid;
  min-height: 320px;
  transition: var(--transition);
}

.poster-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 255, 255, 0.2);
}

.poster-image {
  height: 220px;
  background-size: cover;
  background-position: center;
}

.poster-info {
  padding: 12px 14px 16px;
  display: grid;
  gap: 6px;
}

.poster-info h4 {
  font-size: 0.95rem;
  line-height: 1.3;
}

.poster-meta {
  font-size: 0.75rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.poster-desc {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.5;
}

.poster {
  position: relative;
  height: 230px;
  border-radius: var(--radius-md);
  background: linear-gradient(165deg, #2b2d38, #111218);
  border: 1px solid var(--stroke);
  overflow: hidden;
  transition: var(--transition);
}

.poster::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0, 0, 0, 0.8));
}

.poster:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 255, 255, 0.2);
}

.poster span {
  position: absolute;
  bottom: 16px;
  left: 14px;
  z-index: 1;
  font-weight: 600;
  font-size: 0.9rem;
}

.poster.badge::before {
  content: 'NEW';
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--accent);
  color: #fff;
  font-size: 0.65rem;
  padding: 4px 8px;
  border-radius: 999px;
  letter-spacing: 0.1em;
  z-index: 1;
}

.sports-strip {
  margin-top: 26px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 12px;
}

.sports-chip {
  background: var(--bg-card);
  border: 1px solid var(--stroke);
  border-radius: var(--radius-sm);
  padding: 10px 12px;
  text-align: center;
  font-size: 0.85rem;
  color: var(--muted);
}

.feature-split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px;
  align-items: center;
}

.feature-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 26px;
  border: 1px solid var(--stroke);
}

.feature-card h3 {
  font-family: var(--font-display);
  letter-spacing: 0.08em;
  font-size: 1.4rem;
  margin-bottom: 12px;
}

.feature-card ul {
  list-style: none;
  display: grid;
  gap: 10px;
  color: var(--muted);
}

.feature-card li::before {
  content: '*';
  color: var(--accent-2);
  margin-right: 8px;
}

.feature-media {
  position: relative;
  border-radius: var(--radius-lg);
  border: 1px solid var(--stroke);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
  padding: 24px;
  min-height: 260px;
}

.feature-media .media-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.media-tile {
  height: 110px;
  border-radius: var(--radius-md);
  background: linear-gradient(160deg, #2d2f3d, #151620);
  border: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
  display: grid;
  place-items: center;
}

.media-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.plan-toggle {
  display: inline-flex;
  gap: 10px;
  padding: 6px;
  border-radius: 999px;
  border: 1px solid var(--stroke);
  background: rgba(255, 255, 255, 0.04);
}

.plan-toggle button {
  background: transparent;
  border: none;
  color: var(--muted);
  font-weight: 600;
  padding: 8px 18px;
  border-radius: 999px;
  cursor: pointer;
}

.plan-toggle .is-active {
  background: linear-gradient(135deg, rgba(229, 9, 20, 0.4), rgba(255, 77, 60, 0.4));
  color: #fff;
}

.plan-grid {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}

.plan-card {
  background: var(--bg-card-strong);
  border-radius: var(--radius-lg);
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  display: grid;
  gap: 14px;
  min-height: 360px;
}

.plan-card.popular {
  border-color: rgba(229, 9, 20, 0.7);
  box-shadow: 0 14px 40px rgba(229, 9, 20, 0.2);
}

.plan-title {
  font-size: 0.9rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--muted);
}

.plan-price {
  font-family: var(--font-display);
  font-size: 2.2rem;
  letter-spacing: 0.08em;
}

.plan-price span {
  font-size: 1rem;
  color: var(--muted);
}

.plan-list {
  list-style: none;
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 0.92rem;
}

.plan-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(229, 9, 20, 0.15);
  color: var(--accent-2);
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.compat-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  align-items: center;
}

.device-list {
  list-style: none;
  display: grid;
  gap: 10px;
  color: var(--muted);
}

.device-list li::before {
  content: '>';
  color: var(--gold);
  margin-right: 8px;
}

.device-stack {
  display: grid;
  gap: 16px;
}

.device-card {
  padding: 18px;
  border-radius: var(--radius-md);
  border: 1px solid var(--stroke);
  background: var(--bg-card);
}

.testimonials {
  padding-top: 40px;
}

.is-hidden {
  display: none !important;
}

.phone-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 18px;
}

.phone {
  height: 280px;
  border-radius: 24px;
  border: 2px solid rgba(255, 255, 255, 0.15);
  background: linear-gradient(160deg, #232535, #11131a);
  position: relative;
  overflow: hidden;
}

.phone::after {
  content: '';
  position: absolute;
  inset: 12px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 60%);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}

.why-card {
  border-radius: var(--radius-md);
  border: 1px solid var(--stroke);
  padding: 20px;
  background: var(--bg-card);
}

.why-card h4 {
  font-size: 0.95rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.why-card p {
  color: var(--muted);
  font-size: 0.92rem;
}

.sitemap-list {
  list-style: none;
  display: grid;
  gap: 8px;
  margin-top: 12px;
}

.sitemap-list a {
  color: var(--muted);
  text-decoration: none;
  transition: var(--transition);
}

.sitemap-list a:hover {
  color: #fff;
}

.cta-panel {
  margin-top: 36px;
  padding: 28px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--stroke);
  background: linear-gradient(135deg, rgba(229, 9, 20, 0.15), rgba(255, 77, 60, 0.08));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer {
  padding: 40px 0 30px;
  border-top: 1px solid var(--stroke);
  color: var(--muted);
  font-size: 0.85rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 18px;
}

.footer strong {
  color: #fff;
  display: block;
  margin-bottom: 8px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.8rem;
}

.footer a {
  color: var(--muted);
  display: inline-block;
  margin-top: 6px;
}


@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-copy,
.hero-visual,
.logo-strip,
.poster-grid,
.feature-split,
.plan-grid {
  animation: fadeUp 0.8s ease both;
}

.logo-strip {
  animation-delay: 0.2s;
}

.poster-grid {
  animation-delay: 0.25s;
}

.feature-split {
  animation-delay: 0.3s;
}

.plan-grid {
  animation-delay: 0.35s;
}

@media (prefers-reduced-motion: reduce) {
  .hero-copy,
  .hero-visual,
  .logo-strip,
  .poster-grid,
  .feature-split,
  .plan-grid {
    animation: none;
  }
}

@media (max-width: 960px) {
  .hero-grid,
  .feature-split,
  .compat-grid {
    grid-template-columns: 1fr;
  }

  .nav-wrap {
    grid-template-columns: 1fr;
    justify-items: center;
    row-gap: 14px;
  }

  .nav-links {
    flex-wrap: wrap;
    gap: 12px;
  }

  .nav-cta {
    justify-content: center;
    flex-wrap: wrap;
  }

  .nav-cta .lang-toggle,
  .nav-cta .btn {
    display: none;
  }

  .subnav {
    display: none;
  }
}

@media (max-width: 640px) {
  .nav-cta {
    width: 100%;
    justify-content: flex-end;
  }

  .hero {
    padding-top: 60px;
  }

  .hero-stats {
    grid-template-columns: 1fr;
  }

  .screen.small,
  .screen.small.two {
    display: none;
  }

  .cta-panel {
    align-items: flex-start;
  }
}
