:root {
  color-scheme: dark;
  --bg: #050b1c;
  --bg-soft: #09142e;
  --surface: rgba(12, 27, 62, 0.78);
  --surface-solid: #0c1b3e;
  --surface-light: #122858;
  --text: #f8fbff;
  --muted: #b9c7e5;
  --cyan: #2be0ff;
  --blue: #2985ff;
  --violet: #8d42ff;
  --magenta: #d248ff;
  --green: #4ce1a1;
  --border: rgba(138, 184, 255, 0.19);
  --border-strong: rgba(89, 203, 255, 0.42);
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.35);
  --radius: 24px;
  --container: 1180px;
}

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

html {
  scroll-behavior: smooth;
  background: var(--bg);
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--text);
  background:
    radial-gradient(circle at 85% 8%, rgba(41, 133, 255, 0.14), transparent 25rem),
    linear-gradient(180deg, #07132e 0, var(--bg) 26rem);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

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

button,
a,
summary {
  -webkit-tap-highlight-color: transparent;
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 10px;
  left: 10px;
  padding: 10px 16px;
  color: #041021;
  background: var(--cyan);
  border-radius: 8px;
  font-weight: 800;
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

:focus-visible {
  outline: 3px solid var(--cyan);
  outline-offset: 4px;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid rgba(148, 187, 255, 0.12);
  background: rgba(5, 11, 28, 0.88);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: flex;
  min-height: 76px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
}

.brand img {
  width: 208px;
  height: auto;
}

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 14px 25px;
  overflow: hidden;
  border: 0;
  border-radius: 999px;
  background-clip: border-box;
  color: #fff;
  font-size: 15px;
  font-weight: 850;
  line-height: 1.1;
  letter-spacing: 0.01em;
  text-align: center;
  text-transform: uppercase;
  backface-visibility: hidden;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
  will-change: transform;
}

.button:hover {
  transform: translateY(-2px);
}

.button:active {
  transform: translateY(0);
}

.button-primary {
  background: linear-gradient(115deg, var(--violet), var(--blue) 50%, var(--cyan));
  box-shadow: 0 14px 38px rgba(54, 117, 255, 0.35), inset 0 1px rgba(255, 255, 255, 0.25);
}

.button-secondary {
  background: rgba(18, 40, 88, 0.7);
  box-shadow: inset 0 0 0 1px var(--border-strong);
}

.button-small {
  min-height: 46px;
  padding: 12px 22px;
  font-size: 13px;
  background: linear-gradient(115deg, var(--violet), var(--blue), var(--cyan));
}

.button-wide {
  min-width: 330px;
}

.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 72px 0 76px;
}

.hero::before {
  position: absolute;
  z-index: -2;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 11, 28, 0.15), transparent 60%),
    linear-gradient(rgba(86, 143, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(86, 143, 255, 0.035) 1px, transparent 1px);
  background-size: auto, 54px 54px, 54px 54px;
  content: "";
  mask-image: linear-gradient(to bottom, black, transparent 92%);
}

.hero-glow {
  position: absolute;
  z-index: -1;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.23;
  pointer-events: none;
}

.hero-glow-one {
  top: -210px;
  right: 7%;
  background: var(--blue);
}

.hero-glow-two {
  bottom: -270px;
  left: 32%;
  background: var(--violet);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(480px, 1.08fr);
  align-items: center;
  gap: 72px;
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.eyebrow,
.section-kicker {
  margin: 0 0 16px;
  color: #7fe9ff;
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

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

.eyebrow > span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 18px var(--green);
}

h1,
h2,
h3,
p {
  text-wrap: pretty;
}

h1 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(44px, 5.1vw, 72px);
  font-weight: 900;
  line-height: 0.99;
  letter-spacing: -0.055em;
}

h1 em {
  display: block;
  color: transparent;
  background: linear-gradient(90deg, #fff 5%, #77e7ff 48%, #a970ff);
  background-clip: text;
  -webkit-background-clip: text;
  font-style: normal;
}

.hero-lead {
  max-width: 620px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(17px, 1.6vw, 21px);
  line-height: 1.55;
}

.hero-lead strong {
  color: #fff;
}

.hero-price {
  display: flex;
  margin: 26px 0 20px;
  align-items: center;
  width: fit-content;
}

.hero-price .currency {
  align-self: flex-start;
  margin: 17px 7px 0 0;
  font-size: 21px;
  font-weight: 850;
}

.hero-price strong {
  font-size: 76px;
  font-weight: 950;
  line-height: 0.9;
  letter-spacing: -0.06em;
}

.hero-price .period {
  display: grid;
  gap: 3px;
  margin-left: 12px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 750;
  line-height: 1.15;
}

.hero-price .period small {
  color: #8beaff;
  font-size: 11px;
  font-weight: 850;
}

.checkout-route-note {
  display: flex;
  max-width: 430px;
  margin: 13px 0 0;
  color: #b9c9e8;
  font-size: 11px;
  line-height: 1.45;
  gap: 7px;
  align-items: flex-start;
}

.checkout-route-note span {
  color: var(--green);
  font-weight: 900;
}

.trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 9px 18px;
  margin: 12px 0 0;
  padding: 0;
  color: #c6d2eb;
  font-size: 12px;
  list-style: none;
}

.trust-list li::before {
  margin-right: 7px;
  color: var(--green);
  content: "✓";
  font-weight: 900;
}

.hero-showcase {
  position: relative;
}

.hero-showcase::before {
  position: absolute;
  z-index: -1;
  inset: 10% 5%;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--violet), var(--cyan));
  content: "";
  filter: blur(80px);
  opacity: 0.28;
}

.showcase-window {
  position: relative;
  overflow: hidden;
  padding: 18px;
  border: 1px solid var(--border-strong);
  border-radius: 29px;
  background: linear-gradient(145deg, rgba(18, 42, 92, 0.96), rgba(5, 14, 38, 0.95));
  box-shadow: var(--shadow), inset 0 1px rgba(255, 255, 255, 0.08);
  transform: perspective(1400px) rotateY(-4deg) rotateX(1.5deg);
}

.showcase-top,
.showcase-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
}

.showcase-top {
  padding: 2px 3px 16px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 750;
}

.live-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 11px;
  border: 1px solid rgba(255, 86, 118, 0.34);
  border-radius: 999px;
  color: #ffdce4;
  background: rgba(255, 62, 102, 0.12);
}

.live-badge i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #ff456e;
  box-shadow: 0 0 12px #ff456e;
}

.showcase-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.showcase-grid figure {
  position: relative;
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(142, 187, 255, 0.18);
  border-radius: 14px;
  background: var(--surface-solid);
}

.showcase-grid img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.showcase-grid .brand-tile {
  display: grid;
  min-height: 0;
  place-items: center;
}

.showcase-grid .brand-tile > img {
  width: 58%;
  height: 46%;
  aspect-ratio: auto;
  object-fit: contain;
}

.showcase-grid .brand-tile-premiere {
  background: #29933a;
}

.showcase-grid .brand-tile-espn {
  background:
    radial-gradient(circle at 50% 0, rgba(51, 130, 255, 0.25), transparent 65%),
    #071020;
}

.showcase-grid figcaption {
  position: absolute;
  right: 8px;
  bottom: 8px;
  padding: 4px 8px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 999px;
  color: #fff;
  background: rgba(2, 8, 23, 0.74);
  font-size: 10px;
  font-weight: 750;
  backdrop-filter: blur(7px);
}

.showcase-footer {
  margin-top: 15px;
  padding: 13px 15px;
  border: 1px solid rgba(86, 180, 255, 0.21);
  border-radius: 14px;
  background: rgba(39, 114, 255, 0.12);
}

.showcase-footer strong {
  font-size: 15px;
}

.showcase-footer span {
  color: var(--muted);
  font-size: 12px;
}

.proof-strip {
  border-block: 1px solid var(--border);
  background: rgba(8, 20, 48, 0.7);
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.proof-grid > .proof-item {
  display: flex;
  min-height: 142px;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  padding: 19px 22px;
  border-left: 1px solid var(--border);
  text-align: center;
}

.proof-grid > .proof-item:last-child {
  border-right: 1px solid var(--border);
}

.proof-grid strong {
  margin-top: 11px;
  font-size: 16px;
  line-height: 1.2;
}

.proof-grid > .proof-item > span:last-child {
  margin-top: 3px;
  color: var(--muted);
  font-size: 11px;
}

.proof-channel-logos {
  display: flex;
  width: 100%;
  height: 34px;
  align-items: center;
  justify-content: center;
  gap: 7px;
}

.proof-channel-logos > img,
.proof-channel-logos .telecine-mini {
  display: grid;
  width: 45px;
  height: 27px;
  flex: 0 0 45px;
  place-items: center;
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.07);
}

.proof-channel-logos > img {
  padding: 5px;
  object-fit: contain;
}

.proof-channel-logos > img:first-child {
  padding: 4px;
  background: #29933a;
}

.proof-channel-logos .telecine-mini {
  background: #fff;
}

.proof-channel-logos .telecine-mini img {
  width: 31px;
  max-height: 22px;
}

.proof-streamings {
  width: min(100%, 190px);
  height: 34px;
  object-fit: contain;
  object-position: center;
}

.device-icons {
  display: flex;
  width: 100%;
  height: 34px;
  align-items: flex-end;
  justify-content: center;
  gap: 10px;
  color: #8beaff;
}

.device-icons i {
  position: relative;
  display: block;
  border: 2px solid currentColor;
  box-shadow: 0 0 18px rgba(43, 224, 255, 0.14);
}

.icon-tv {
  width: 42px;
  height: 25px;
  border-radius: 5px;
}

.icon-tv::after {
  position: absolute;
  bottom: -6px;
  left: 50%;
  width: 18px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
  content: "";
  transform: translateX(-50%);
}

.icon-phone {
  width: 15px;
  height: 27px;
  border-radius: 4px;
}

.icon-phone::after {
  position: absolute;
  bottom: 2px;
  left: 50%;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: currentColor;
  content: "";
  transform: translateX(-50%);
}

.icon-laptop {
  width: 34px;
  height: 23px;
  border-radius: 4px 4px 1px 1px;
}

.icon-laptop::after {
  position: absolute;
  right: -5px;
  bottom: -5px;
  left: -5px;
  height: 3px;
  border-radius: 0 0 5px 5px;
  background: currentColor;
  content: "";
}

.calendar-icon {
  position: relative;
  display: grid;
  width: 40px;
  height: 34px;
  place-items: center;
  border: 2px solid #8beaff;
  border-radius: 8px;
  color: #fff;
  background: rgba(43, 224, 255, 0.08);
}

.calendar-icon::before,
.calendar-icon::after {
  position: absolute;
  top: -5px;
  width: 3px;
  height: 8px;
  border-radius: 3px;
  background: #8beaff;
  content: "";
}

.calendar-icon::before {
  left: 9px;
}

.calendar-icon::after {
  right: 9px;
}

.calendar-icon i {
  position: absolute;
  top: 7px;
  right: 0;
  left: 0;
  height: 1px;
  background: rgba(139, 234, 255, 0.38);
}

.calendar-icon b {
  padding-top: 6px;
  font-size: 14px;
}

.channel-marquee {
  overflow: hidden;
  padding: 28px 0 34px;
  border-bottom: 1px solid var(--border);
  background: rgba(4, 11, 28, 0.74);
}

.marquee-label {
  margin: 0 0 17px;
  color: #8fa3ca;
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.13em;
  text-align: center;
  text-transform: uppercase;
}

.marquee-viewport {
  position: relative;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
}

.logo-marquee-track,
.logo-marquee-group {
  display: flex;
  width: max-content;
}

.logo-marquee-track {
  animation: channel-flow 34s linear infinite;
  will-change: transform;
}

.logo-marquee-group {
  gap: 14px;
  padding-right: 14px;
}

.channel-marquee:hover .logo-marquee-track,
.content-marquee:hover .content-marquee-track {
  animation-play-state: paused;
}

.channel-pill {
  display: grid;
  width: 152px;
  height: 64px;
  flex: 0 0 152px;
  place-items: center;
  padding: 14px 24px;
  border: 1px solid rgba(149, 188, 255, 0.17);
  border-radius: 15px;
  background:
    linear-gradient(145deg, rgba(20, 43, 89, 0.92), rgba(7, 18, 42, 0.96));
}

.channel-pill img {
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 32px;
  object-fit: contain;
}

.channel-pill-premiere {
  padding: 14px 22px;
  background: #29933a;
}

.channel-pill-premiere img {
  width: 100%;
  max-width: 100%;
  max-height: 28px;
}

.channel-pill-light {
  background: #fff;
}

.channel-pill-light img {
  width: auto;
  max-height: 32px;
}

.channel-pill-sportv {
  border-color: rgba(94, 224, 255, 0.52);
  background: linear-gradient(135deg, #0758c8 0%, #0a9be8 48%, #a9199c 100%);
}

.channel-pill-espn {
  border-color: rgba(255, 255, 255, 0.78);
  background: #fff;
}

.channel-pill-espn img {
  filter: brightness(0) saturate(100%) invert(17%) sepia(89%) saturate(4061%) hue-rotate(347deg) brightness(92%) contrast(102%);
}

.channel-pill-globonews {
  border-color: rgba(255, 93, 105, 0.48);
  background: linear-gradient(135deg, #e3232e 0%, #a90c3f 48%, #271251 100%);
}

.channel-pill-multishow {
  border-color: rgba(255, 110, 188, 0.52);
  background: linear-gradient(135deg, #ff6a00 0%, #f20f76 48%, #5422c8 100%);
}

.channel-pill-gnt {
  border-color: rgba(255, 157, 91, 0.52);
  background: linear-gradient(135deg, #ff8a39 0%, #ef476f 54%, #8324aa 100%);
}

.channel-pill-gloob {
  border-color: rgba(102, 227, 255, 0.52);
  background: linear-gradient(135deg, #009ce6 0%, #6244db 52%, #f02d98 100%);
}

.channel-pill-discovery {
  border-color: rgba(70, 186, 255, 0.52);
  background: linear-gradient(135deg, #005caa 0%, #008fd5 54%, #52c6d8 100%);
}

.channel-pill-cartoon {
  border-color: rgba(255, 255, 255, 0.78);
  background: #fff;
}

.channel-pill-cartoon img {
  filter: brightness(0);
}

@keyframes channel-flow {
  to {
    transform: translateX(-50%);
  }
}

.section {
  padding: 108px 0;
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 50px;
  text-align: center;
}

.section-heading-left {
  margin: 0;
  text-align: left;
}

.section-heading h2,
.offer-copy h2,
.final-cta h2 {
  margin: 0;
  font-size: clamp(35px, 4vw, 54px);
  font-weight: 900;
  line-height: 1.04;
  letter-spacing: -0.045em;
}

.section-heading > p:last-child,
.offer-copy > p,
.final-cta p {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 18px;
}

.steps {
  border-block: 1px solid var(--border);
  background:
    radial-gradient(circle at 15% 40%, rgba(114, 61, 255, 0.16), transparent 22rem),
    rgba(9, 20, 46, 0.58);
}

.steps-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  align-items: center;
  gap: 90px;
}

.steps .button {
  margin-top: 30px;
}

.step-list {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: none;
}

.step-list li {
  display: grid;
  grid-template-columns: 58px 1fr;
  align-items: center;
  gap: 22px;
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: rgba(7, 17, 41, 0.72);
}

.step-list > li > span {
  display: inline-flex;
  width: 58px;
  height: 58px;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  color: #fff;
  background: linear-gradient(145deg, var(--violet), var(--blue));
  font-size: 21px;
  font-weight: 900;
  box-shadow: 0 12px 30px rgba(48, 100, 255, 0.25);
}

.step-list h3 {
  margin: 0 0 5px;
  font-size: 19px;
}

.step-list p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.content-preview {
  overflow: hidden;
  background: linear-gradient(180deg, rgba(4, 10, 26, 0.4), rgba(10, 22, 51, 0.45));
}

.monthly-highlights {
  display: grid;
  grid-template-columns: minmax(230px, 0.72fr) minmax(0, 1.28fr);
  align-items: center;
  gap: 30px;
  margin-bottom: 34px;
  padding: 24px 27px;
  border: 1px solid var(--border-strong);
  border-radius: 22px;
  background:
    radial-gradient(circle at 85% 0, rgba(141, 66, 255, 0.18), transparent 16rem),
    rgba(11, 27, 62, 0.76);
}

.monthly-highlights > div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 9px;
}

.monthly-highlights > div > strong {
  font-size: 17px;
}

.fresh-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #8beaff;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.fresh-badge i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 14px var(--green);
}

.monthly-highlights ul {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.monthly-highlights li {
  padding: 7px 11px;
  border: 1px solid rgba(143, 198, 255, 0.2);
  border-radius: 999px;
  color: #dce8ff;
  background: rgba(18, 44, 91, 0.65);
  font-size: 12px;
  font-weight: 720;
}

.content-marquee {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, black 5%, black 95%, transparent);
}

.content-marquee-track,
.content-marquee-group {
  display: flex;
  width: max-content;
}

.content-marquee-track {
  animation: content-flow 54s linear infinite;
  will-change: transform;
}

.content-marquee-group {
  gap: 16px;
  padding-right: 16px;
}

.content-marquee figure {
  position: relative;
  width: 290px;
  flex: 0 0 290px;
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(142, 187, 255, 0.18);
  border-radius: 18px;
  background: var(--surface-solid);
}

.content-marquee img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.showcase-grid .artwork-band-fix {
  object-position: center top;
  transform: scale(1.45);
  transform-origin: center top;
}

.content-marquee .artwork-crop {
  display: block;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: #06132e;
}

.content-marquee .artwork-crop .artwork-band-fix {
  height: 100%;
  aspect-ratio: auto;
  object-position: center top;
  transform: scale(1.45);
  transform-origin: center top;
}

.content-marquee figcaption {
  display: flex;
  min-height: 58px;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 14px;
}

.content-marquee figcaption strong {
  font-size: 13px;
}

.content-marquee figcaption span {
  color: #84dfff;
  font-size: 10px;
  text-align: right;
}

.catalog-action {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  margin-top: 31px;
}

.catalog-note {
  margin: 0;
  color: #8192b7;
  font-size: 12px;
}

.catalog-action .button {
  min-height: 47px;
  padding: 12px 20px;
  font-size: 12px;
}

@keyframes content-flow {
  to {
    transform: translateX(-50%);
  }
}

.offer {
  position: relative;
}

.offer-card {
  display: grid;
  grid-template-columns: 1fr 430px;
  align-items: center;
  gap: 70px;
  padding: 65px;
  border: 1px solid var(--border-strong);
  border-radius: 34px;
  background:
    radial-gradient(circle at 95% 15%, rgba(52, 196, 255, 0.15), transparent 19rem),
    radial-gradient(circle at 5% 90%, rgba(141, 66, 255, 0.18), transparent 20rem),
    linear-gradient(145deg, #10295a, #081631 58%, #071127);
  box-shadow: var(--shadow);
}

.offer-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px 25px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}

.offer-list li {
  position: relative;
  padding-left: 29px;
  color: #dce7fb;
  font-size: 15px;
}

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

.checkout-card {
  padding: 33px;
  border: 1px solid rgba(168, 206, 255, 0.28);
  border-radius: 26px;
  background: rgba(3, 10, 27, 0.82);
  box-shadow: 0 25px 65px rgba(0, 0, 0, 0.32);
  text-align: center;
}

.checkout-label {
  margin: 0;
  color: #dbe9ff;
  font-size: 14px;
  font-weight: 800;
}

.checkout-card > img {
  width: 100%;
  max-width: 310px;
  margin: 22px auto 12px;
}

.checkout-price {
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.checkout-price span {
  margin: 17px 7px 0 0;
  font-size: 22px;
  font-weight: 850;
}

.checkout-price strong {
  font-size: 84px;
  font-weight: 950;
  line-height: 0.95;
  letter-spacing: -0.07em;
}

.checkout-price small {
  margin-top: 15px;
  font-size: 22px;
  font-weight: 850;
}

.checkout-period {
  margin: 8px 0 22px;
  color: var(--muted);
  font-size: 13px;
}

.checkout-card .button {
  width: 100%;
  min-width: 0;
}

.secure-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
  color: #9eafd0;
  font-size: 11px;
}

.secure-note span {
  color: var(--green);
  font-weight: 900;
}

.checkout-assurance {
  display: grid;
  margin-top: 18px;
  border-top: 1px solid rgba(168, 206, 255, 0.16);
  padding-top: 14px;
  gap: 7px;
}

.checkout-assurance p {
  display: flex;
  margin: 0;
  color: #96a8c9;
  font-size: 10px;
  line-height: 1.4;
  gap: 7px;
  align-items: baseline;
  justify-content: center;
}

.checkout-assurance strong {
  color: #d4e2f8;
  font-size: 10px;
}

.checkout-assurance a {
  color: #8beaff;
  overflow-wrap: anywhere;
}

.faq {
  border-top: 1px solid var(--border);
  background: rgba(7, 16, 38, 0.76);
}

.faq-layout {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  align-items: start;
  gap: 90px;
}

.faq-intro {
  position: sticky;
  top: 120px;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 17px;
  background: rgba(11, 25, 58, 0.7);
}

.faq-list details[open] {
  border-color: var(--border-strong);
  background: rgba(15, 35, 76, 0.8);
}

.faq-list summary {
  position: relative;
  padding: 22px 58px 22px 23px;
  font-weight: 780;
  cursor: pointer;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  position: absolute;
  top: 50%;
  right: 23px;
  color: var(--cyan);
  content: "+";
  font-size: 25px;
  font-weight: 500;
  line-height: 1;
  transform: translateY(-50%);
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list details p {
  margin: 0;
  padding: 0 23px 23px;
  color: var(--muted);
  font-size: 15px;
}

.final-cta {
  padding: 65px 0;
  border-bottom: 1px solid var(--border);
  background:
    linear-gradient(115deg, rgba(127, 62, 255, 0.19), rgba(33, 133, 255, 0.19), rgba(36, 210, 255, 0.11)),
    #091a3a;
}

.final-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 55px;
}

.final-cta h2 {
  font-size: clamp(32px, 3.7vw, 49px);
}

.final-cta p {
  font-size: 16px;
}

.final-cta .button {
  flex: 0 0 auto;
  min-width: 245px;
}

.site-footer {
  padding: 48px 0 110px;
  background: #030817;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #8392b1;
  text-align: center;
}

.footer-inner > img {
  width: 190px;
  margin-bottom: 27px;
  opacity: 0.86;
}

.footer-inner nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px 24px;
}

.footer-inner nav a {
  color: #c2cde4;
  font-size: 13px;
}

.footer-inner nav a:hover {
  color: #fff;
}

.footer-inner p {
  margin: 22px 0 4px;
  font-size: 12px;
}

.footer-inner small {
  max-width: 620px;
  font-size: 10px;
}

.footer-inner .business-identity {
  margin: 3px 0 2px;
  color: #a8b6d0;
  font-size: 10px;
}

.footer-support,
.legal-assurance {
  margin-top: 3px;
}

.footer-support a {
  color: #9fdff3;
}

.footer-support a:hover {
  color: #fff;
}

.legal-assurance {
  color: #a8b6d0;
}

@media (max-width: 1050px) {
  .hero-grid {
    grid-template-columns: minmax(0, 0.94fr) minmax(400px, 1.06fr);
    gap: 38px;
  }

  .showcase-window {
    transform: none;
  }

  .offer-card {
    grid-template-columns: 1fr 380px;
    gap: 38px;
    padding: 45px;
  }
}

@media (max-width: 820px) {
  .hero {
    padding: 58px 0 65px;
  }

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

  .hero-copy {
    max-width: 680px;
    margin-inline: auto;
    text-align: center;
  }

  .eyebrow {
    justify-content: center;
  }

  .hero-lead,
  .hero-price {
    margin-inline: auto;
  }

  .trust-list {
    justify-content: center;
  }

  .hero-showcase {
    display: none;
  }

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

  .proof-grid > .proof-item,
  .proof-grid > .proof-item:last-child {
    border-right: 0;
    border-bottom: 1px solid var(--border);
  }

  .proof-grid > .proof-item:nth-child(odd) {
    border-left: 0;
  }

  .section {
    padding: 82px 0;
  }

  .steps-layout,
  .faq-layout {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .section-heading-left {
    text-align: center;
  }

  .faq-intro {
    position: static;
  }

  .monthly-highlights {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .offer-card {
    grid-template-columns: 1fr;
  }

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

  .offer-list {
    text-align: left;
  }

  .checkout-card {
    width: min(100%, 440px);
    margin-inline: auto;
  }

  .final-cta-inner {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 620px) {
  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .header-inner {
    min-height: 64px;
    gap: 12px;
  }

  .brand img {
    width: 142px;
  }

  .button-small {
    min-height: 40px;
    padding: 10px 15px;
    font-size: 11px;
  }

  .hero {
    padding: 39px 0 48px;
  }

  h1 {
    font-size: clamp(39px, 12vw, 53px);
    line-height: 1.01;
  }

  .eyebrow {
    margin-bottom: 13px;
    font-size: 11px;
    letter-spacing: 0.08em;
  }

  .hero-lead {
    margin-top: 18px;
    font-size: 16px;
  }

  .hero-price {
    margin-top: 20px;
  }

  .hero-price strong {
    font-size: 65px;
  }

  .hero-price .currency {
    margin-top: 12px;
    font-size: 18px;
  }

  .button-wide {
    width: 100%;
    min-width: 0;
  }

  .trust-list {
    display: grid;
    gap: 5px;
    font-size: 11px;
  }

  .checkout-route-note {
    margin-inline: auto;
    justify-content: center;
    text-align: left;
  }

  .proof-grid > .proof-item {
    min-height: 122px;
    padding: 15px 13px;
  }

  .proof-grid strong {
    margin-top: 9px;
    font-size: 14px;
  }

  .proof-grid > .proof-item > span:last-child {
    font-size: 10.5px;
  }

  .proof-channel-logos {
    justify-content: center;
    gap: 4px;
  }

  .proof-channel-logos > img,
  .proof-channel-logos .telecine-mini {
    width: 34px;
    height: 24px;
    flex-basis: 34px;
  }

  .proof-channel-logos .telecine-mini img {
    width: 26px;
  }

  .proof-streamings {
    width: 142px;
    object-position: center;
  }

  .channel-marquee {
    padding: 23px 0 28px;
  }

  .marquee-label {
    padding-inline: 14px;
    font-size: 9px;
  }

  .channel-pill {
    width: 128px;
    height: 56px;
    flex-basis: 128px;
    padding: 12px 20px;
  }

  .section {
    padding: 68px 0;
  }

  .section-heading {
    margin-bottom: 34px;
  }

  .section-heading h2,
  .offer-copy h2,
  .final-cta h2 {
    font-size: 34px;
  }

  .section-heading > p:last-child,
  .offer-copy > p,
  .final-cta p {
    font-size: 16px;
  }

  .steps .button {
    width: 100%;
  }

  .step-list li {
    grid-template-columns: 47px 1fr;
    gap: 15px;
    padding: 19px;
  }

  .step-list > li > span {
    width: 47px;
    height: 47px;
    border-radius: 14px;
  }

  .monthly-highlights {
    margin-bottom: 25px;
    padding: 20px;
  }

  .monthly-highlights > div > strong {
    font-size: 15px;
  }

  .monthly-highlights li {
    padding: 6px 9px;
    font-size: 10px;
  }

  .content-marquee figure {
    width: 242px;
    flex-basis: 242px;
  }

  .content-marquee figcaption {
    min-height: 53px;
    padding: 10px 12px;
  }

  .content-marquee figcaption strong {
    font-size: 12px;
  }

  .catalog-action {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }

  .catalog-action .button {
    width: 100%;
  }

  .offer-card {
    gap: 32px;
    padding: 25px 17px 17px;
    border-radius: 25px;
  }

  .offer-list {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .checkout-card {
    padding: 28px 18px;
  }

  .checkout-assurance p {
    flex-direction: column;
    gap: 1px;
    align-items: center;
  }

  .checkout-price strong {
    font-size: 76px;
  }

  .faq-list summary {
    padding: 20px 49px 20px 18px;
    font-size: 15px;
  }

  .faq-list summary::after {
    right: 18px;
  }

  .faq-list details p {
    padding: 0 18px 20px;
    font-size: 14px;
  }

  .final-cta {
    padding: 52px 0;
  }

  .final-cta .button {
    width: 100%;
    min-width: 0;
  }

  .site-footer {
    padding-bottom: 45px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .logo-marquee-track,
  .content-marquee-track {
    animation: none;
  }

  .marquee-viewport,
  .content-marquee {
    overflow-x: auto;
    mask-image: none;
    scrollbar-width: none;
  }

  .marquee-viewport::-webkit-scrollbar,
  .content-marquee::-webkit-scrollbar {
    display: none;
  }
}

.site-footer nav button {
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  cursor: pointer;
}

.site-footer nav button:hover,
.site-footer nav button:focus-visible {
  color: #6de8ff;
}

.consent-banner {
  position: fixed;
  z-index: 1200;
  right: 18px;
  bottom: 18px;
  left: 18px;
  display: flex;
  width: min(1040px, calc(100% - 36px));
  margin-inline: auto;
  padding: 18px;
  border: 1px solid rgba(109, 232, 255, 0.34);
  border-radius: 20px;
  background: rgba(5, 15, 39, 0.97);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.45);
  color: #f7fbff;
  gap: 22px;
  align-items: center;
  justify-content: space-between;
  backdrop-filter: blur(16px);
}

.consent-banner[hidden],
.consent-modal[hidden] {
  display: none;
}

.consent-banner strong {
  display: block;
  margin-bottom: 5px;
  font-size: 15px;
}

.consent-banner p {
  max-width: 650px;
  margin: 0;
  color: #b8c8e7;
  font-size: 13px;
  line-height: 1.5;
}

.consent-banner a {
  color: #6de8ff;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.consent-actions {
  display: flex;
  gap: 8px;
  flex: 0 0 auto;
}

.consent-button {
  min-height: 42px;
  padding: 10px 16px;
  border: 1px solid rgba(109, 232, 255, 0.34);
  border-radius: 999px;
  font: 800 12px/1 inherit;
  color: #f7fbff;
  cursor: pointer;
}

.consent-button-ghost {
  background: #0d2047;
}

.consent-button-primary {
  border-color: transparent;
  background: linear-gradient(110deg, #6f42ff, #16c9e8);
}

.consent-button:hover,
.consent-button:focus-visible {
  filter: brightness(1.1);
}

.consent-modal {
  position: fixed;
  z-index: 1300;
  inset: 0;
  display: grid;
  padding: 18px;
  place-items: center;
}

.consent-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 6, 20, 0.78);
  backdrop-filter: blur(6px);
}

.consent-modal-card {
  position: relative;
  z-index: 1;
  width: min(540px, 100%);
  max-height: calc(100vh - 36px);
  overflow-y: auto;
  padding: 30px;
  border: 1px solid rgba(109, 232, 255, 0.35);
  border-radius: 25px;
  background: #07152f;
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.55);
}

.consent-modal-card h2 {
  margin: 7px 38px 10px 0;
  font-size: clamp(24px, 5vw, 34px);
}

.consent-modal-card > p:not(.section-kicker) {
  margin: 0 0 20px;
  color: #b8c8e7;
  font-size: 14px;
}

.consent-modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(109, 232, 255, 0.28);
  border-radius: 50%;
  background: #0d2047;
  color: #fff;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}

.consent-option {
  display: flex;
  min-height: 78px;
  margin-top: 10px;
  padding: 15px;
  border: 1px solid rgba(109, 232, 255, 0.18);
  border-radius: 16px;
  background: #0a1b3b;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
}

.consent-option strong,
.consent-option small {
  display: block;
}

.consent-option small {
  margin-top: 4px;
  color: #aabada;
  font-size: 12px;
  line-height: 1.45;
}

.consent-option input {
  width: 20px;
  height: 20px;
  accent-color: #22c8e8;
  flex: 0 0 auto;
}

.consent-save {
  width: 100%;
  margin-top: 18px;
}

.consent-modal-open {
  overflow: hidden;
}

@media (max-width: 760px) {
  .consent-banner {
    bottom: 8px;
    left: 8px;
    right: 8px;
    width: calc(100% - 16px);
    padding: 10px 12px;
    border-radius: 14px;
    gap: 8px;
    align-items: stretch;
    flex-direction: column;
    backdrop-filter: blur(10px);
  }

  .consent-banner strong {
    margin-bottom: 2px;
    font-size: 13px;
  }

  .consent-banner p {
    font-size: 11.5px;
    line-height: 1.35;
  }

  .consent-actions {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 6px;
  }

  .consent-button-primary {
    grid-column: auto;
  }

  .consent-actions .consent-button {
    min-height: 34px;
    padding: 7px 6px;
    font-size: 10.5px;
  }

  .consent-modal-card {
    padding: 24px 18px;
    border-radius: 20px;
  }
}
