*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg: #000000;
  --red: #E50914;
  --red-hover: #F40612;
  --white: #FFFFFF;
  --gray: #A3A3A3;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --ease: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

html {
  font-family: var(--font);
  background: var(--bg);
  color: var(--white);
  scroll-behavior: smooth;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

body {
  background: var(--bg);
  color: var(--white);
  line-height: 1.4;
  min-height: 100vh;
  overflow-x: hidden;
}

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

button {
  border: none;
  background: transparent;
  font-family: inherit;
  cursor: pointer;
  color: inherit;
}

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

.desktop-only {
  display: block;
}

.mobile-only {
  display: none;
}

@media (max-width: 768px) {
  .desktop-only { display: none !important; }
  .mobile-only { display: block !important; }
}

.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  border-radius: 9999px;
  text-align: center;
  transition: var(--ease);
  cursor: pointer;
  user-select: none;
  white-space: nowrap;
}

.primary-red-btn {
  background: var(--red);
  color: var(--white);
  padding: 16px 44px;
  font-size: 1.15rem;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.6);
}

.primary-red-btn:hover {
  background: var(--red-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.75);
}

.primary-red-btn:active {
  transform: translateY(0);
}

.navbar {
  position: relative;
  width: 100%;
  height: 64px;
  background: #000000;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: center;
}

.navbar::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 55px;
  background: linear-gradient(to bottom, #000000 0%, rgba(0, 0, 0, 0.7) 40%, transparent 100%);
  pointer-events: none;
  z-index: 55;
}

.navbar-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.navbar-logo-link {
  display: inline-flex;
  transition: transform 0.2s ease;
}

.navbar-logo-link:hover {
  transform: scale(1.04);
}

.navbar-logo {
  height: 40px;
  width: auto;
}

@media (max-width: 768px) {
  .navbar { height: 52px; }
  .navbar::after { height: 42px; }
  .navbar-logo { height: 32px; }
}

.hero-section {
  position: relative;
  width: 100%;
  height: calc(100vh - 64px);
  min-height: 680px;
  max-height: 860px;
  overflow: hidden;
  background: var(--bg);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.hero-banners-container.desktop-only {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 68%;
  overflow: hidden;
}

.hero-carousel-viewport {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  height: 100%;
  overflow: hidden;
  position: relative;
  padding: 4px 16px 0 16px;
}

.hero-carousel-track {
  display: flex;
  gap: 18px;
  height: 100%;
  width: max-content;
  will-change: transform;
}

.hero-desktop-banner {
  height: 100%;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.85);
  position: relative;
}

.hero-desktop-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-banners-fade-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 260px;
  background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.4) 30%, rgba(0, 0, 0, 0.9) 70%, #000000 100%);
  pointer-events: none;
  z-index: 5;
}

.hero-content-wrapper {
  position: relative;
  z-index: 10;
  max-width: 1040px;
  width: 100%;
  margin: 0 auto;
  padding: 0 24px 36px 24px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.hero-text-block {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  max-width: 580px;
}

.hero-pill-badge {
  background: var(--red);
  color: var(--white);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  padding: 5px 16px;
  border-radius: 9999px;
  text-transform: uppercase;
  display: inline-block;
}

.hero-title {
  font-size: clamp(2.1rem, 2.7vw, 2.6rem);
  font-weight: 400;
  line-height: 1.2;
  color: var(--white);
  letter-spacing: -0.015em;
  margin: 0;
}

.hero-line {
  display: block;
}

.hero-title strong {
  font-weight: 800;
}

.hero-subtitle {
  font-size: clamp(1rem, 1.2vw, 1.12rem);
  font-weight: 400;
  color: #FFFFFF;
  line-height: 1.35;
  margin: 0;
}

.sub-muted {
  color: #A8A8A8;
}

.hero-subtitle strong {
  font-weight: 700;
  color: var(--white);
}

.hero-brand-block {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  padding: 0;
  margin-right: 24px;
}

.hero-m-logo {
  height: clamp(230px, 29vh, 280px);
  width: auto;
  max-width: 240px;
  object-fit: contain;
  filter: drop-shadow(0 12px 28px rgba(229, 9, 20, 0.35));
}

@media (max-width: 768px) {
  .hero-section {
    height: calc(100vh - 52px);
    height: calc(100dvh - 52px);
    min-height: calc(100vh - 52px);
    min-height: calc(100dvh - 52px);
    max-height: calc(100vh - 52px);
    max-height: calc(100dvh - 52px);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding-bottom: 24px;
    position: relative;
    overflow: hidden;
  }
  .hero-banners-container.mobile-only {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 68%;
    overflow: hidden;
  }
  .hero-slider-track {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
  }
  .hero-mobile-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transform: translateX(100%);
    transition: opacity 0.65s ease, transform 0.65s ease;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .hero-mobile-slide.active {
    opacity: 1;
    transform: translateX(0);
  }
  .hero-mobile-slide.prev-slide {
    opacity: 0;
    transform: translateX(-100%);
  }
  .hero-mobile-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
  }
  .hero-banners-fade-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 260px;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.3) 25%, rgba(0, 0, 0, 0.85) 60%, #000000 100%);
    pointer-events: none;
    z-index: 5;
  }
  .hero-content-wrapper {
    margin: 0;
    padding: 0 18px 8px 18px;
    text-align: center;
    width: 100%;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
  }
  .hero-text-block {
    align-items: center;
    text-align: center;
    gap: 12px;
    width: 100%;
    max-width: 100%;
  }
  .hero-pill-badge {
    font-size: 0.72rem;
    padding: 4px 14px;
  }
  .hero-title {
    font-size: clamp(1.18rem, 3.7vw, 1.38rem);
    line-height: 1.25;
    max-width: 380px;
    margin: 0 auto;
    text-align: center;
    width: 100%;
  }
  .hero-line {
    display: block;
    white-space: nowrap;
  }
  .hero-subtitle {
    font-size: 0.92rem;
    line-height: 1.4;
    max-width: 320px;
    margin: 0 auto;
    text-align: center;
  }
  .desk-sub-break {
    display: none;
  }
  .primary-red-btn {
    width: 100%;
    max-width: 320px;
    padding: 14px 24px;
    font-size: 1.05rem;
    margin: 2px auto 0 auto;
  }
  .hero-brand-block {
    display: none;
  }
}

.icons-section {
  width: 100%;
  padding: 22px 0;
  background: var(--bg);
  overflow: hidden;
  position: relative;
}

.icons-section::before,
.icons-section::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 60px;
  z-index: 10;
  pointer-events: none;
}

.icons-section::before {
  left: 0;
  background: linear-gradient(to right, var(--bg) 0%, transparent 100%);
}

.icons-section::after {
  right: 0;
  background: linear-gradient(to left, var(--bg) 0%, transparent 100%);
}

.icons-row {
  width: 100%;
  overflow: hidden;
  display: flex;
  padding: 8px 0;
}

.icons-inner {
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
  will-change: transform;
}

.icons-inner img {
  display: block;
  object-fit: contain;
  max-height: 52px;
  max-width: 120px;
}

.icon-item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 90px;
  height: 56px;
  flex-shrink: 0;
}

.icon-img {
  display: block;
  object-fit: contain;
}

.icon-espn {
  height: 34px;
  width: auto;
  max-width: 110px;
}

.icon-discovery-kids {
  height: 52px;
  width: auto;
  max-width: 100px;
}

.icon-sportv {
  height: 28px;
  width: auto;
  max-width: 120px;
}

.icon-cartoon-network {
  height: 36px;
  width: auto;
  max-width: 95px;
  background: #ffffff;
  border-radius: 6px;
  padding: 4px 6px;
  margin: 0 12px;
}

.icon-nikelodeon {
  height: 42px;
  width: auto;
  max-width: 110px;
}

.icon-ch209-425-305 {
  height: 46px;
  width: auto;
  max-width: 100px;
}

.icon-megapix {
  height: 28px;
  width: auto;
  max-width: 120px;
}

.icon-globo {
  height: 76px;
  width: 76px;
  max-height: none;
  max-width: none;
  flex-shrink: 0;
}

.icon-telecineicon-1 {
  height: 48px;
  width: auto;
  max-width: 60px;
  border-radius: 8px;
}

.icons-row-top .icons-inner {
  animation: marqueeLeft 22s linear infinite;
}

.icons-row-bottom .icons-inner {
  animation: marqueeRight 22s linear infinite;
}

@keyframes marqueeLeft {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes marqueeRight {
  0% { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}

.watch-section {
  width: 100%;
  padding: 170px 24px 120px;
  background: var(--bg);
}

.watch-container {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  align-items: center;
  gap: 54px;
}

.watch-player-column {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: center;
  width: 100%;
}

.watch-player-card {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.65);
  background: #0d0e15;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.watch-player-card:hover {
  transform: scale(1.015);
  box-shadow: 0 18px 48px rgba(229, 9, 20, 0.2);
}

.player-media-wrap {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.player-thumbnail {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  pointer-events: none;
}

.player-thumbnail.active {
  opacity: 1;
}

.player-overlay-gradient {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(0, 0, 0, 0.05) 0%, rgba(0, 0, 0, 0.45) 100%);
  pointer-events: none;
}

.player-play-btn-wrapper {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 68px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  filter: drop-shadow(0 4px 16px rgba(0, 0, 0, 0.6));
  transition: transform 0.25s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.watch-player-card:hover .player-play-btn-wrapper {
  transform: translate(-50%, -50%) scale(1.1);
}

.player-play-svg {
  width: 100%;
  height: 100%;
  display: block;
}

.watch-live-counter {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-size: 0.9rem;
  color: #bbb;
  font-weight: 500;
  width: 100%;
  text-align: center;
}

.live-pulse-dot {
  width: 10px;
  height: 10px;
  background: #22C55E;
  border-radius: 50%;
  box-shadow: 0 0 8px #22C55E;
  animation: pulse 1.8s infinite;
}

@keyframes pulse {
  0% { transform: scale(0.9); opacity: 0.7; }
  50% { transform: scale(1.35); opacity: 1; box-shadow: 0 0 14px #22C55E; }
  100% { transform: scale(0.9); opacity: 0.7; }
}

.watch-text-column {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.watch-title {
  font-size: clamp(1.75rem, 2.3vw, 2.15rem);
  line-height: 1.25;
  color: var(--text-white);
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.watch-title-line-1 {
  font-weight: 400;
  color: #e4e4e7;
  display: block;
  white-space: nowrap;
}

.watch-title-line-2,
.watch-title-line-3 {
  font-weight: 800;
  color: #ffffff;
  display: block;
  white-space: nowrap;
}

@media (max-width: 768px) {
  .watch-section {
    padding: 72px 16px 48px;
  }
  .watch-container {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .watch-text-column {
    align-items: center;
    text-align: center;
    gap: 22px;
  }
  .watch-title {
    font-size: clamp(1.1rem, 5.1vw, 1.35rem);
    line-height: 1.25;
    text-align: center;
    align-items: center;
  }
  .watch-title-line-1,
  .watch-title-line-2,
  .watch-title-line-3 {
    white-space: nowrap;
  }
}

.watch-anywhere-section {
  width: 100%;
  padding: 80px 0 160px;
  position: relative;
  overflow: visible;
  background: var(--bg);
}

.watch-anywhere-bg-block {
  width: 100%;
  background: var(--red);
  padding: 60px 0;
  position: relative;
  overflow: visible;
  min-height: 500px;
  display: flex;
  align-items: center;
}

.watch-anywhere-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 40px;
  width: 100%;
  position: relative;
  z-index: 5;
}

.watch-anywhere-text-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  max-width: 560px;
}

.watch-anywhere-badges {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}

.badges-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.anywhere-pill {
  background: #000;
  color: var(--white);
  font-size: 0.76rem;
  font-weight: 800;
  padding: 8px 16px;
  border-radius: 9999px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
}

.check-icon {
  font-size: 0.85rem;
  font-weight: 900;
}

.watch-anywhere-title {
  font-size: clamp(1.85rem, 2.8vw, 2.45rem);
  font-weight: 900;
  line-height: 1.18;
  color: var(--white);
  font-style: normal;
}

.watch-anywhere-line {
  display: block;
  white-space: nowrap;
}

.watch-anywhere-description {
  font-size: 1.05rem;
  line-height: 1.45;
  color: var(--white);
}

.watch-anywhere-description strong {
  font-weight: 700;
}

.anywhere-black-btn {
  background: #000;
  color: var(--white);
  padding: 16px 44px;
  font-size: 1.05rem;
  font-weight: 800;
  border-radius: 9999px;
  border: none;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.anywhere-black-btn:hover {
  background: #18181b;
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.6);
}

.watch-anywhere-mockups-wrapper {
  position: absolute;
  right: -25px;
  top: 50%;
  transform: translateY(-50%);
  width: 780px;
  height: 540px;
  pointer-events: none;
  z-index: 6;
}

.mockup-notebook {
  position: absolute;
  top: -65px;
  left: 0;
  width: 640px;
  max-width: none;
  z-index: 1;
  filter: drop-shadow(0 25px 45px rgba(0, 0, 0, 0.65));
}

.mockup-phone {
  position: absolute;
  top: 145px;
  right: 0;
  width: 490px;
  max-width: none;
  z-index: 2;
  filter: drop-shadow(0 35px 65px rgba(0, 0, 0, 0.75));
}

@media (max-width: 1024px) {
  .watch-anywhere-section {
    padding: 70px 0 50px;
  }
  .watch-anywhere-bg-block {
    flex-direction: column;
    padding: 0 16px 44px;
    min-height: auto;
  }
  .watch-anywhere-mockups-wrapper {
    position: relative;
    right: auto;
    top: auto;
    bottom: auto;
    transform: none;
    width: 100%;
    max-width: 380px;
    height: clamp(260px, 75vw, 290px);
    margin: -70px auto 10px auto;
    display: block;
    overflow: visible;
  }
  .watch-anywhere-container {
    max-width: 100%;
    padding: 0;
    text-align: center;
  }
  .watch-anywhere-text-content {
    align-items: center;
    text-align: center;
    gap: 16px;
    max-width: 100%;
  }
  .watch-anywhere-badges {
    align-items: center;
    width: 100%;
    gap: 8px;
  }
  .badges-row {
    justify-content: center;
    gap: 8px;
  }
  .anywhere-pill {
    font-size: 0.72rem;
    padding: 7px 14px;
  }
  .mockup-notebook {
    position: absolute;
    left: -20px;
    top: 0;
    width: clamp(280px, 85vw, 320px);
    max-width: none;
    z-index: 1;
    filter: drop-shadow(0 16px 36px rgba(0, 0, 0, 0.6));
  }
  .mockup-phone {
    position: absolute;
    right: -15px;
    top: clamp(35px, 10vw, 45px);
    width: clamp(235px, 72vw, 275px);
    max-width: none;
    z-index: 2;
    filter: drop-shadow(0 20px 45px rgba(0, 0, 0, 0.75));
  }
  .watch-anywhere-title {
    font-size: clamp(1.25rem, 5.4vw, 1.55rem);
    font-style: normal;
    text-align: center;
  }
  .watch-anywhere-description {
    font-size: 0.95rem;
    text-align: center;
  }
  .anywhere-black-btn {
    width: 100%;
    max-width: 310px;
    padding: 16px 28px;
    font-size: 1.02rem;
  }
}

.social-proof-section {
  width: 100%;
  padding: 60px 24px 100px;
  background: var(--bg);
  text-align: center;
}

.social-proof-container {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  width: 100%;
}

.social-proof-title {
  font-size: 2rem;
  font-weight: 800;
  line-height: 1.25;
}

.social-proof-pill-badge {
  background: var(--red);
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  padding: 8px 22px;
  border-radius: 9999px;
}

.social-proof-carousel-wrapper {
  position: relative;
  width: fit-content;
  max-width: min(90vw, 480px);
  margin: 4px auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.social-proof-viewport {
  width: fit-content;
  max-width: 100%;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.7);
}

.social-proof-track {
  display: flex;
  width: 100%;
  transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.social-proof-slide {
  min-width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.social-print-img {
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 70vh;
  object-fit: contain;
  display: block;
  border-radius: 24px;
}

.carousel-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  font-weight: 700;
  z-index: 10;
  box-shadow: 0 4px 14px rgba(229, 9, 20, 0.4);
  transition: var(--ease);
}

.carousel-nav-btn:hover {
  background: var(--red-hover);
  transform: translateY(-50%) scale(1.1);
}

.prev-btn { left: -22px; }
.next-btn { right: -22px; }

.social-proof-cta-wrapper {
  margin-top: 14px;
}

.social-cta-btn {
  min-width: 280px;
}

@media (max-width: 768px) {
  .social-proof-section {
    padding: 44px 16px 80px;
  }
  .social-proof-title {
    font-size: clamp(1.4rem, 6vw, 1.8rem);
  }
  .social-proof-carousel-wrapper {
    width: fit-content;
    max-width: calc(100vw - 44px);
    padding: 0;
    margin: 4px auto;
  }
  .social-proof-viewport {
    width: fit-content;
    max-width: 100%;
    border-radius: 20px;
  }
  .social-print-img {
    width: auto;
    max-width: 100%;
    height: auto;
    max-height: 65vh;
    border-radius: 20px;
  }
  .prev-btn {
    left: -18px;
    width: 38px;
    height: 38px;
    font-size: 1rem;
  }
  .next-btn {
    right: -18px;
    width: 38px;
    height: 38px;
    font-size: 1rem;
  }
  .social-proof-cta-wrapper {
    margin-top: 12px;
  }
  .social-cta-btn {
    width: 100%;
    max-width: 340px;
  }
}

.cta-grid-section {
  position: relative;
  width: 100%;
  height: 680px;
  background: var(--bg);
  overflow: hidden;
}

.cta-grid-background {
  position: absolute;
  inset: 0;
  display: flex;
  gap: 16px;
  justify-content: center;
  padding: 0 16px;
}

.grid-column {
  flex: 0 0 220px;
  overflow: hidden;
}

.grid-column-track {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.grid-column-track img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: 14px;
}

.column-scroll-down .grid-column-track {
  animation: gridDown 28s linear infinite;
}

.column-scroll-up .grid-column-track {
  animation: gridUp 28s linear infinite;
}

@keyframes gridDown {
  0% { transform: translateY(-50%); }
  100% { transform: translateY(0); }
}

@keyframes gridUp {
  0% { transform: translateY(0); }
  100% { transform: translateY(-50%); }
}

.cta-grid-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom,
      rgba(0, 0, 0, 0) 0%,
      rgba(0, 0, 0, 0.05) 15%,
      rgba(0, 0, 0, 0.45) 40%,
      rgba(0, 0, 0, 0.88) 62%,
      #000000 85%,
      #000000 100%
    ),
    radial-gradient(ellipse 65% 55% at 20% 72%,
      rgba(0, 0, 0, 0.95) 0%,
      rgba(0, 0, 0, 0.7) 48%,
      transparent 100%
    );
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  z-index: 10;
  padding: 0 40px 60px;
}

.cta-grid-content {
  max-width: 650px;
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  padding-left: 20px;
}

.cta-offer-badge {
  background: var(--red);
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 800;
  padding: 6px 18px;
  border-radius: 9999px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.cta-grid-title {
  font-size: 2.15rem;
  font-weight: 400;
  line-height: 1.25;
  color: var(--white);
}

.cta-title-line {
  display: block;
}

.cta-grid-title strong {
  font-weight: 800;
}

.cta-grid-subtitle {
  font-size: 0.98rem;
  font-weight: 400;
  line-height: 1.5;
  color: #e4e4e7;
  max-width: 560px;
}

.cta-grid-subtitle strong {
  font-weight: 700;
  color: var(--white);
}

.cta-grid-content .cta-button {
  align-self: flex-start;
  padding: 13px 26px;
  font-size: 0.95rem;
  font-weight: 800;
  border-radius: 9999px;
  width: auto;
  max-width: fit-content;
  text-align: center;
}

@media (max-width: 768px) {
  .cta-grid-section {
    height: 620px;
  }
  .cta-grid-background {
    gap: 10px;
    padding: 0 4px;
  }
  .grid-column {
    flex: 0 0 132px;
  }
  .grid-column-track {
    gap: 10px;
  }
  .grid-column-track img {
    height: 195px;
    border-radius: 12px;
  }
  .cta-grid-overlay {
    background: linear-gradient(to bottom,
      rgba(0, 0, 0, 0.05) 0%,
      rgba(0, 0, 0, 0.12) 18%,
      rgba(0, 0, 0, 0.55) 38%,
      rgba(0, 0, 0, 0.9) 56%,
      #000000 75%,
      #000000 100%
    );
    align-items: flex-end;
    justify-content: flex-start;
    padding: 0 18px 36px;
  }
  .cta-grid-content {
    padding-left: 0;
    max-width: 100%;
    gap: 14px;
    width: 100%;
    align-items: stretch;
  }
  .cta-offer-badge {
    font-size: 0.74rem;
    padding: 6px 16px;
    width: fit-content;
  }
  .cta-grid-title {
    font-size: clamp(1.3rem, 5.6vw, 1.6rem);
    line-height: 1.25;
  }
  .cta-grid-subtitle {
    font-size: clamp(0.85rem, 3.6vw, 0.94rem);
    line-height: 1.45;
  }
  .cta-grid-content .cta-button {
    display: block;
    margin-left: 0;
    margin-right: auto;
    width: fit-content;
    min-width: 220px;
    max-width: 80%;
    padding: 14px 28px;
    font-size: 0.95rem;
    font-weight: 800;
    border-radius: 9999px;
    text-align: center;
  }
}

.footer {
  width: 100%;
  background: #000000;
  padding: 34px 32px;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer-logo {
  height: 38px;
  width: auto;
  display: block;
}

.footer-right {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
}

.footer-download-text {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.01em;
}

.footer-store-badges {
  display: flex;
  align-items: center;
  gap: 8px;
}

.store-badge-img {
  height: 35px;
  width: auto;
  display: block;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.store-badge-link:last-child .store-badge-img {
  height: 29px;
}

.store-badge-img:hover {
  transform: translateY(-2px);
  opacity: 0.9;
}

@media (max-width: 768px) {
  .footer {
    padding: 20px 16px;
  }
  .footer-container {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
  }
  .footer-logo {
    height: 24px;
  }
  .footer-right {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }
  .footer-download-text {
    font-size: 0.68rem;
  }
  .footer-store-badges {
    gap: 6px;
  }
  .store-badge-img {
    height: 24px;
  }
  .store-badge-link:last-child .store-badge-img {
    height: 20px;
  }
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.82);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.modal-backdrop.active {
  opacity: 1;
  visibility: visible;
}

.modal-card {
  position: relative;
  width: 95%;
  max-width: 920px;
  min-height: 520px;
  background: #000000;
  border-radius: 28px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 43% 57%;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.95);
  transform: scale(0.92) translateY(12px);
  opacity: 0;
  transition: transform 0.38s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.32s ease;
}

.modal-backdrop.active .modal-card {
  transform: scale(1) translateY(0);
  opacity: 1;
}

.modal-close-btn {
  position: absolute;
  top: 20px;
  right: 24px;
  color: #ffffff;
  font-size: 1.45rem;
  font-weight: 800;
  font-family: inherit;
  line-height: 1;
  z-index: 100;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: color 0.2s ease, transform 0.2s ease;
}

.modal-close-btn:hover {
  color: var(--red);
  transform: scale(1.2);
}

.modal-body-content {
  grid-column: 1;
  grid-row: 1;
  padding: 44px 36px 36px 44px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #000000;
  z-index: 2;
}

.modal-streaming-brands {
  grid-column: 2;
  grid-row: 1;
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 480px;
  overflow: hidden;
  display: flex;
  background: #000000;
  z-index: 1;
}

.pillars-track {
  position: absolute;
  inset: 0;
  display: flex;
  width: 100%;
  height: 100%;
}

.brand-pillar {
  flex: 1;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  cursor: pointer;
  transition: filter 0.3s ease;
}

.brand-pillar:hover {
  filter: brightness(1.18);
}

.pillar-prime {
  background: linear-gradient(180deg, #0076be 0%, #0088d0 35%, #00609c 70%, #003e68 100%);
  box-shadow: -10px 0 25px rgba(0, 0, 0, 0.6);
  z-index: 1;
}

.pillar-netflix {
  background: linear-gradient(180deg, #161616 0%, #0e0e0e 50%, #050505 100%);
  border-left: 1px solid rgba(255, 255, 255, 0.05);
  border-right: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.8);
  z-index: 2;
}

.pillar-hbo {
  background: linear-gradient(180deg, #141a28 0%, #0c111c 50%, #060910 100%);
  z-index: 3;
}

.brand-pillar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding: 0 16px;
  transition: transform 0.3s ease;
}

.brand-pillar:hover .brand-pillar-inner {
  transform: scale(1.08);
}

.brand-logo {
  object-fit: contain;
  user-select: none;
  pointer-events: none;
}

.prime-logo {
  width: 100%;
  max-width: 140px;
  max-height: 80px;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.4));
}

.netflix-logo {
  width: 100%;
  max-width: 65px;
  max-height: 100px;
  filter: drop-shadow(0 4px 16px rgba(0, 0, 0, 0.6));
}

.hbo-logo {
  width: 100%;
  max-width: 130px;
  max-height: 80px;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.5));
}

.modal-offer-header {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 20px;
}

.modal-title {
  font-size: 1.45rem;
  font-weight: 500;
  line-height: 1.25;
  color: #ffffff;
}

.modal-title strong {
  font-weight: 800;
  display: block;
}

.modal-pricing-strike {
  font-size: 0.92rem;
  color: #cfcfcf;
  margin-top: 4px;
}

.modal-pricing-strike del {
  color: #888888;
  text-decoration: line-through;
}

.modal-price-highlight {
  font-size: 3.2rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.02em;
  color: #ffffff;
  margin: 4px 0 8px;
}

.modal-trial-info {
  font-size: 0.88rem;
  color: #cfcfcf;
  line-height: 1.45;
}

.modal-trial-info strong {
  color: #ffffff;
  font-weight: 800;
}

.modal-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.form-input {
  width: 100%;
  background: #1e1e20;
  border: 1px solid transparent;
  border-radius: 10px;
  padding: 13px 16px;
  font-size: 0.92rem;
  font-family: inherit;
  color: #ffffff;
  font-weight: 500;
  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
  outline: none;
}

.form-input::placeholder {
  color: #737378;
  font-weight: 500;
}

.form-input:hover {
  background: #232326;
}

.form-input:focus {
  border-color: rgba(229, 9, 20, 0.8);
  background: #252528;
  box-shadow: 0 0 0 3px rgba(229, 9, 20, 0.2);
}

.form-input.is-invalid {
  border-color: #EF4444;
}

.field-error {
  font-size: 0.72rem;
  color: #EF4444;
  min-height: 14px;
  padding-left: 2px;
}

.modal-submit-btn {
  width: 100%;
  padding: 15px;
  font-size: 1.05rem;
  font-weight: 800;
  margin-top: 4px;
  position: relative;
  border-radius: 9999px;
  background: #e50914;
  color: #ffffff;
  box-shadow: 0 6px 20px rgba(229, 9, 20, 0.35);
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.modal-submit-btn:hover {
  background: #f40612;
  transform: translateY(-2px);
  box-shadow: 0 8px 26px rgba(229, 9, 20, 0.5);
}

.modal-submit-btn:active {
  transform: translateY(0);
}

.modal-secondary-link-wrapper {
  text-align: center;
  margin-top: 10px;
}

.modal-decline-link {
  font-size: 0.88rem;
  color: #8e8e93;
  text-decoration: none;
  transition: color 0.2s ease;
  cursor: pointer;
}

.modal-decline-link:hover {
  color: #d1d1d6;
}

.btn-spinner {
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 3px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  border-top-color: var(--white);
  animation: spin 0.8s linear infinite;
}

.hidden {
  display: none !important;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

@media (max-width: 768px) {
  .modal-backdrop {
    padding: 16px 12px;
    align-items: center;
    justify-content: center;
  }
  .modal-card {
    display: flex;
    flex-direction: column;
    max-width: 375px;
    width: 100%;
    border-radius: 26px;
    max-height: calc(100dvh - 24px);
    max-height: calc(100vh - 24px);
    overflow: hidden;
    min-height: unset;
    margin: auto;
  }
  .modal-streaming-brands {
    position: relative;
    top: auto;
    right: auto;
    bottom: auto;
    width: 100%;
    height: clamp(140px, 22vh, 165px);
    min-height: unset;
    overflow: hidden;
    flex-shrink: 0;
  }
  .modal-streaming-brands::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 45px;
    background: linear-gradient(to bottom, transparent, #000000);
    pointer-events: none;
    z-index: 10;
  }
  .pillars-track {
    inset: -10px -20px -10px -20px;
    width: calc(100% + 40px);
    height: calc(100% + 20px);
    transform: skewX(-7deg);
    transform-origin: 50% 50%;
  }
  .brand-pillar {
    flex: 1 1 0;
    min-width: 0;
    width: 33.333%;
  }
  .pillar-prime {
    z-index: 1;
    box-shadow: none;
  }
  .pillar-netflix {
    z-index: 2;
  }
  .pillar-hbo {
    z-index: 1;
  }
  .brand-pillar-inner {
    transform: skewX(7deg);
    padding: 0 6px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .prime-logo {
    max-width: 76px;
    max-height: 40px;
    width: 100%;
    height: auto;
    object-fit: contain;
  }
  .netflix-logo {
    max-width: 32px;
    max-height: 52px;
    width: 100%;
    height: auto;
    object-fit: contain;
  }
  .hbo-logo {
    max-width: 74px;
    max-height: 40px;
    width: 100%;
    height: auto;
    object-fit: contain;
  }
  .modal-body-content {
    position: relative;
    width: 100%;
    max-width: 100%;
    padding: 14px 20px 20px;
    background: transparent;
  }
  .modal-offer-header {
    gap: 3px;
    margin-bottom: 8px;
  }
  .modal-title {
    font-size: clamp(1.08rem, 3.6vw, 1.25rem);
    line-height: 1.22;
  }
  .modal-pricing-strike {
    font-size: 0.8rem;
    margin-top: 2px;
  }
  .modal-price-highlight {
    font-size: clamp(2.2rem, 7vw, 2.7rem);
    margin: 2px 0 4px;
  }
  .modal-trial-info {
    font-size: 0.8rem;
    line-height: 1.35;
  }
  .modal-form {
    gap: 7px;
  }
  .form-group {
    gap: 1px;
  }
  .form-input {
    padding: 10px 14px;
    font-size: 0.86rem;
    border-radius: 9px;
  }
  .field-error {
    font-size: 0.68rem;
    min-height: 0;
  }
  .modal-submit-btn {
    font-size: 0.98rem;
    padding: 13px;
    margin-top: 2px;
  }
  .modal-secondary-link-wrapper {
    margin-top: 6px;
  }
  .modal-decline-link {
    font-size: 0.8rem;
  }
  .modal-close-btn {
    top: 14px;
    right: 16px;
    width: 28px;
    height: 28px;
    font-size: 1.3rem;
  }
}

