@font-face {
  font-family: Euclid;
  src: url("/fonts/euclid-Regular.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: Euclid;
  src: url("/fonts/euclid-Medium.woff2") format("woff2");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}
@font-face {
  font-family: Euclid;
  src: url("/fonts/euclid-Bold.woff2") format("woff2");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}
/* Layout and type scale follow docs/design.md. */
:root {
  --bg: #08090d;
  --surface: #14161e;
  --text: #f7f8fc;
  --muted: #b6bac8;
  --brand: #0065ff;
  --accent: #77b9ff;
  --line: #303442;
  --ease: cubic-bezier(0.2, 0, 0, 1);
  --display: clamp(2.25rem, 3.6vw, 3.5rem);
  --heading: clamp(1.65rem, 2.5vw, 2.25rem);
  --subheading: clamp(1.3rem, 1.8vw, 1.65rem);
  color-scheme: dark;
  font-family: Euclid, Arial, sans-serif;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 32px;
  scroll-padding-bottom: 110px;
  -webkit-text-size-adjust: 100%;
}
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
body.dialog-open {
  overflow: hidden;
}
h1,
h2,
h3,
p {
  margin: 0;
}
h1,
h2,
h3 {
  line-height: 1.12;
  letter-spacing: -0.035em;
  text-wrap: balance;
}
h1 {
  font-size: var(--display);
}
h2 {
  font-size: var(--heading);
}
h3 {
  font-size: var(--subheading);
}
p {
  text-wrap: pretty;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
button,
input,
a {
  font: inherit;
}
button,
a {
  touch-action: manipulation;
}
button {
  cursor: pointer;
  color: inherit;
}
a {
  color: inherit;
  text-decoration: none;
}
button:disabled {
  cursor: default;
  opacity: 0.3;
}
svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}
a:focus-visible,
button:focus-visible,
summary:focus-visible,
[tabindex]:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 5px;
}
::selection {
  background: #0065ff;
  color: white;
}
[hidden] {
  display: none !important;
}
.wrap {
  width: calc(100% - 112px);
  max-width: 1280px;
  margin-inline: auto;
}
.section {
  padding-block: 72px;
}
.section-kicker {
  font-size: 13px;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 14px;
}
.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 30px;
}
.section-head p:not(.section-kicker) {
  color: var(--muted);
  margin-top: 14px;
  max-width: 660px;
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  min-height: 44px;
}
.text-link:hover {
  color: var(--accent);
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  min-height: 56px;
  padding: 15px 24px;
  border: 0;
  border-radius: 12px;
  font-weight: 500;
  font-size: 16px;
  transition:
    background-color 150ms ease-out,
    transform 150ms var(--ease);
}
.button-primary {
  background: var(--brand);
  color: white;
}
.button-primary:hover {
  background: #257bff;
}
.button:active {
  transform: scale(0.96);
}
.round-button {
  border: 1px solid var(--line);
  background: #191c25;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  padding: 0;
}
.round-button:hover:not(:disabled) {
  background: #303646;
}
.skip-link {
  clip-path: inset(50%);
  position: fixed;
  top: 8px;
  left: 16px;
  padding: 12px;
  background: var(--brand);
  transform: translateY(-200%);
  z-index: 100;
}
.skip-link:focus {
  clip-path: none;
  transform: translateY(0);
}
.header {
  position: absolute;
  z-index: 5;
  top: 0;
  left: 0;
  right: 0;
  height: 96px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.logo {
  width: 156px;
  flex-shrink: 0;
}
.header nav {
  display: flex;
  gap: 28px;
  margin-left: auto;
  margin-right: 0;
  font-size: 14px;
  color: #d5d8e1;
}
.header nav a:hover {
  color: white;
}
.hero {
  min-height: 690px;
  position: relative;
  overflow: hidden;
  background: var(--bg);
}
.poster-wall {
  position: absolute;
  right: -70px;
  top: -175px;
  width: min(65vw, 940px);
  display: flex;
  gap: 16px;
  transform: rotate(9deg);
  isolation: isolate;
}
.poster-column {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.poster-column:nth-child(even) {
  padding-top: 115px;
}
.poster-column img {
  width: 100%;
  aspect-ratio: 2/3;
  object-fit: cover;
  border-radius: 10px;
}
.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      #08090d 13%,
      #08090df5 28%,
      #08090d88 48%,
      #08090d00 74%
    ),
    linear-gradient(
      0deg,
      #08090d 0%,
      transparent 25%,
      transparent 75%,
      #08090d88 100%
    );
}
@media (min-width: 901px) {
  .hero::after {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 150px;
    z-index: 1;
    pointer-events: none;
    background: linear-gradient(#08090de6, #08090d80 72px, transparent);
  }
}
.hero-content {
  position: relative;
  padding-top: 183px;
  padding-bottom: 85px;
  z-index: 2;
}
.hero-copy {
  max-width: 550px;
}
.eyebrow {
  font-size: 14px;
  color: #c5c9d4;
  margin-bottom: 22px;
}
.hero h1 {
  line-height: 1.08;
  letter-spacing: -0.045em;
}
.hero h1 span {
  color: var(--accent);
}
.hero-lead {
  font-size: 17px;
  line-height: 1.6;
  max-width: 455px;
  margin-block: 24px 28px;
  color: #d4d8e2;
}
.hero .button {
  min-width: 305px;
}
.hero-note {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.65;
  margin-top: 18px;
}
.hero-note a {
  text-decoration: underline;
  text-underline-offset: 3px;
}
.cinema {
  padding-bottom: 36px;
}
.catalogue-link {
  white-space: nowrap;
}
.catalogue-row + .catalogue-row {
  margin-top: 24px;
}
.row-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}
.row-head h3 {
  font-size: 18px;
  letter-spacing: -0.02em;
  font-weight: 500;
}
.rail-controls {
  display: flex;
  gap: 8px;
}
.poster-rail {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding: 8px max(56px, calc((100vw - 1280px) / 2)) 12px;
  scroll-padding-left: max(56px, calc((100vw - 1280px) / 2));
  overscroll-behavior-x: contain;
  overflow-anchor: none;
}
.poster-rail.is-repositioning {
  scroll-snap-type: none;
}
.poster-rail::-webkit-scrollbar {
  display: none;
}
.film {
  align-self: flex-start;
  flex: 0 0 174px;
  min-width: 0;
  padding: 0;
  border: 0;
  text-align: left;
  background: none;
  scroll-snap-align: start;
}
.film-image {
  display: block;
  position: relative;
  overflow: hidden;
  border-radius: 9px;
  aspect-ratio: 2/3;
  outline: 1px solid #ffffff12;
}
.film-image > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s var(--ease);
}
.film-action {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 12px 12px;
  background: linear-gradient(transparent, #000d);
  opacity: 0;
  font-size: 12px;
  transition: opacity 150ms ease-out;
}
.film:hover .film-action,
.film:focus-visible .film-action {
  opacity: 1;
}
.film:focus-visible img {
  transform: scale(1.035);
}
.film-title {
  display: block;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.4;
  margin-top: 10px;
  max-width: 174px;
}
.libraries {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 72px;
  align-items: center;
  padding-block: 45px 72px;
  border-bottom: 1px solid #ffffff14;
}
.library-intro p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
  max-width: 390px;
  margin-top: 18px;
}
.library-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.library {
  display: grid;
  place-items: center;
  aspect-ratio: 360 / 202;
  border-radius: 12px;
  overflow: hidden;
  background: #000;
}
.library img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.library-clicktv-catalogue img {
  width: 80%;
  height: auto;
}
.sport {
  padding-bottom: 32px;
}
.sport-stage {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  background: #142225;
}
.sport-stage > img {
  width: 100%;
  aspect-ratio: 1774/887;
  object-fit: contain;
}
.sport-disciplines {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  padding: 16px 24px;
  background: #102035;
  border-bottom: 1px solid #ffffff12;
  text-align: center;
  font-size: 14px;
  font-weight: 500;
}
.sport-caption {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 24px 28px;
  background: #122128;
}
.sport-caption > img {
  width: 120px;
  mix-blend-mode: screen;
}
.sport-caption h3 {
  font-size: 21px;
}
.sport-caption p {
  font-size: 14px;
  margin-top: 6px;
  color: #bbc7cc;
}
.feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 24px;
}
.feature-grid article {
  border-radius: 18px;
  overflow: hidden;
}
.feature-copy {
  padding: 30px;
}
.feature-copy p:not(.section-kicker) {
  font-size: 15px;
  line-height: 1.65;
  color: #c1c8d7;
  margin-top: 14px;
  max-width: 460px;
}
.feature-copy .text-link {
  margin-top: 12px;
}
.tv-feature {
  display: flex;
  flex-direction: column;
  background: linear-gradient(135deg, #152737, #131a2d);
}
.channel-grid {
  display: grid;
  flex: 1;
  align-content: space-between;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin: 0 30px 30px;
}
.channel-tile {
  border-radius: 9px;
  overflow: hidden;
}
.channel-tile > img {
  width: 100%;
  aspect-ratio: 360/203;
  object-fit: contain;
}
.family-feature {
  display: flex;
  flex-direction: column;
  background: #211c1a;
}
.family-feature > img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  object-position: center;
}
.family-feature .section-kicker {
  color: #edba91;
}
.family-feature .feature-copy {
  padding-top: 25px;
}
.devices {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  align-items: center;
  gap: 72px;
  padding-block: 72px 100px;
}
.devices-copy > p:not(.section-kicker) {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
  margin-top: 20px;
  max-width: 405px;
}
.device-labels {
  display: flex;
  gap: 18px;
  margin-top: 24px;
  flex-wrap: wrap;
  color: #d0d5e2;
  font-size: 12px;
}
.device-art {
  position: relative;
  padding-right: 34px;
  padding-bottom: 28px;
}
.tv-device {
  padding: 22px 22px 18px;
  border: 6px solid #353c4b;
  border-radius: 15px;
  background: #101622;
  box-shadow: 0 20px 60px #0005;
}
.screen-logo {
  width: 100px;
}
.screen-heading {
  font-size: 14px;
  margin-block: 20px 12px;
}
.screen-posters {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
.screen-posters img {
  border-radius: 5px;
  width: 100%;
  aspect-ratio: 2/3;
  object-fit: cover;
}
.phone-device {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 26%;
  border: 5px solid #586271;
  border-radius: 20px;
  background: #08090d;
  overflow: hidden;
  box-shadow: 0 10px 30px #0009;
}
.phone-device > img {
  width: 100%;
  aspect-ratio: 2/3;
  object-fit: cover;
}
.phone-device > span {
  font-size: 9px;
  display: block;
  text-align: center;
  padding: 12px 4px;
}
.final-offer {
  display: grid;
  grid-template-columns: minmax(0, 520px) minmax(220px, 260px);
  align-items: center;
  justify-content: start;
  gap: 48px;
  border-radius: 20px;
  padding: 46px 48px;
  background-color: #0b1426;
  background-image:
    linear-gradient(90deg, #050b14b3, #050b1480 65%, #050b1452),
    url("/assets/offer-home-films.webp");
  background-size: cover;
  background-position: center;
  box-shadow: inset 0 0 0 1px #ffffff0c;
}
.final-offer h2 {
  max-width: 440px;
}
.final-offer p:not(.section-kicker, .offer-price, .offer-footnote) {
  color: #c6d4e8;
  margin-top: 14px;
  font-size: 15px;
}
.offer-action {
  text-align: left;
  min-width: 0;
}
.offer-action .button {
  width: 100%;
}

.offer-price {
  font-size: 20px;
  margin-bottom: 18px;
  letter-spacing: -0.02em;
}
.offer-price strong {
  font-size: 40px;
  letter-spacing: -0.04em;
}
.offer-price > span {
  color: #b1c4e0;
  font-size: 15px;
}
.offer-footnote {
  font-size: 11px;
  color: #b7c7df;
  margin-top: 13px;
}
.faq {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 72px;
  padding-block: 90px 72px;
}
.faq-intro h2 {
  max-width: 270px;
}
.faq-art {
  display: block;
  width: 360px;
  height: auto;
  aspect-ratio: 3 / 2;
  object-fit: contain;
  margin-top: 12px;
}
.faq-intro > a {
  display: inline-flex;
  gap: 12px;
  align-items: center;
  font-size: 15px;
  margin-top: 10px;
  min-height: 44px;
}
.faq-intro > p {
  color: var(--muted);
  font-size: 12px;
  margin-top: 2px;
}
.faq-list details {
  border-bottom: 1px solid var(--line);
}
.faq-list details:first-child {
  border-top: 1px solid var(--line);
}
summary {
  list-style: none;
  cursor: pointer;
  min-height: 68px;
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  font-size: 16px;
}
summary::-webkit-details-marker {
  display: none;
}
summary span {
  width: 16px;
  height: 16px;
  position: relative;
  flex-shrink: 0;
}
summary span:before,
summary span:after {
  content: "";
  position: absolute;
  background: #c4cada;
  inset: 7px 0;
  height: 1px;
}
summary span:after {
  transform: rotate(90deg);
}
details[open] summary span:after {
  transform: rotate(0);
}
details > p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
  padding: 0 28px 22px 0;
}
details a {
  text-decoration: underline;
}
.footer {
  padding-block: 16px 88px;
  border-top: 1px solid #ffffff14;
  color: #a4aabb;
  font-size: 11px;
}
.footer-main {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px 24px;
}
.footer-main img {
  width: 104px;
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px 20px;
  margin-left: auto;
}
.footer-links a {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
}
.age {
  font-size: 11px;
}
.preview-note {
  font-size: 10px;
  color: #a4aabb;
  line-height: 1.5;
  margin-top: 4px;
}
.sticky-buy {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 32px;
  align-items: center;
  justify-content: space-between;
  padding: 12px 14px 12px 20px;
  border: 1px solid #434d60;
  border-radius: 16px;
  background: #141923f5;
  box-shadow: 0 8px 30px #0006;
  z-index: 10;
}
.sticky-buy > div {
  display: flex;
  flex-direction: column;
  white-space: nowrap;
}
.sticky-buy strong {
  font-size: 14px;
  font-weight: 500;
}
.sticky-buy span {
  color: var(--muted);
  font-size: 12px;
}
.sticky-buy .button {
  font-size: 14px;
  min-height: 46px;
  padding: 12px 18px;
  gap: 14px;
}
dialog {
  color: var(--text);
  background: #14161e;
  border: 1px solid #3a4050;
  border-radius: 24px;
  width: 500px;
  max-width: calc(100% - 32px);
  max-height: calc(100svh - 40px);
  overscroll-behavior: contain;
  padding: 36px;
  box-shadow: 0 30px 120px #000b;
  overflow-y: auto;
}
dialog::backdrop {
  background: #03050bcc;
  backdrop-filter: blur(9px);
}
.dialog-close {
  position: absolute;
  right: 12px;
  top: 12px;
  width: 44px;
  height: 44px;
  background: #181c25;
}
.dialog-close svg {
  width: 19px;
}
.checkout-head {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 30px;
}
.checkout-head > img {
  width: 118px;
}
.checkout-head > span {
  font-size: 11px;
  letter-spacing: 0.02em;
  color: #b4d6ff;
  border-left: 1px solid #41475a;
  padding-left: 13px;
}
dialog h2 {
  font-size: 37px;
}
.checkout-head ~ p {
  font-size: 14px;
  line-height: 1.5;
  margin-top: 16px;
}
.checkout-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  margin-block: 12px 20px;
  border-bottom: 1px solid var(--line);
}
.checkout-summary > span {
  font-size: 14px;
  color: var(--muted);
}
.checkout-summary > strong {
  font-size: 28px;
  letter-spacing: -0.045em;
}
.checkout-summary small {
  font-size: 14px;
  letter-spacing: 0;
  font-weight: 400;
}
form label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 9px;
}
.phone-field {
  display: flex;
  gap: 12px;
  align-items: center;
  border: 1px solid #555d70;
  border-radius: 10px;
  padding: 0 15px;
  min-height: 58px;
  background: #090c13;
}
.phone-field:focus-within {
  border-color: var(--accent);
  box-shadow: 0 0 0 2px #77b9ff35;
}
.phone-field > span {
  font-size: 18px;
  color: #c2c8d7;
}
.phone-field input {
  background: none;
  border: 0;
  border-radius: 0;
  color: white;
  min-width: 0;
  width: 100%;
  padding: 14px 0;
  font-size: 19px;
  line-height: 1.4;
  outline: none;
  font-variant-numeric: tabular-nums;
}
.phone-field:has([aria-invalid="true"]) {
  border-color: #ff989e;
}
#phone-hint {
  font-size: 11px;
  margin-top: 9px;
  color: #aab2c5;
}
.field-error {
  font-size: 12px;
  color: #ffb0b5;
  margin-top: 8px;
}
.field-error:empty {
  display: none;
}
.checkout-preview {
  margin-block: 20px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  border: 1px solid #3c4558;
  border-radius: 10px;
  padding: 13px;
  background: #1c2230;
}
.preview-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
  margin-top: 6px;
}
.checkout-preview strong {
  font-size: 12px;
  font-weight: 500;
}
.checkout-preview p {
  font-size: 11px;
  line-height: 1.6;
  margin-top: 4px;
}
.checkout-submit {
  width: 100%;
  font-size: 15px;
  min-height: 54px;
  gap: 20px;
}
.checkout-status {
  font-size: 13px;
  line-height: 1.6;
  padding: 14px;
  background: #202a40;
  border-left: 3px solid var(--accent);
  border-radius: 5px;
  margin-top: 16px;
}
.checkout-legal {
  font-size: 10px;
  line-height: 1.65;
  margin-top: 17px;
  color: #a3acbe;
}
.film-dialog {
  width: 690px;
  padding: 24px;
  overflow: hidden;
}
.film-dialog[open] {
  display: grid;
  grid-template-columns: 0.8fr 1fr;
  gap: 28px;
  align-items: center;
}
.film-dialog > img {
  border-radius: 12px;
  width: 100%;
  aspect-ratio: 2/3;
  object-fit: cover;
}
.film-dialog-copy h2 {
  font-size: 35px;
}
.film-dialog-copy > p:not(.section-kicker) {
  font-size: 14px;
  margin-block: 20px;
}
.film-dialog-copy .button {
  font-size: 14px;
  min-height: 48px;
  padding: 12px 20px;
}
.film-dialog-copy .text-link {
  font-size: 12px;
  margin-top: 12px;
}
.noscript-note {
  padding: 18px;
  background: #13213a;
  text-align: center;
  font-size: 14px;
}

/* One motion language, without moving the page continuously. */
.scroll-enter {
  translate: 0 12px;
  transition: translate 420ms var(--ease);
}
.scroll-enter.is-visible {
  translate: none;
}

.header a,
.text-link,
.footer a,
.hero-note a,
summary {
  transition: color 150ms ease-out;
}
.round-button {
  transition:
    background-color 150ms ease-out,
    border-color 150ms ease-out,
    transform 150ms var(--ease);
}
.round-button:active:not(:disabled) {
  transform: scale(0.96);
}
.button svg,
.text-link svg {
  transition: transform 150ms var(--ease);
}
.library img,
.channel-tile img {
  transition: transform 300ms var(--ease);
}
.film-image {
  transition: transform 150ms var(--ease);
}
.film:active .film-image {
  transform: scale(0.96);
}
summary span::after {
  transition: transform 240ms var(--ease);
}
summary:hover,
details[open] summary {
  color: var(--accent);
}
@media (hover: hover) and (pointer: fine) {
  .button:hover svg,
  .text-link:hover svg {
    transform: translateX(3px);
  }
  .film:hover img {
    transform: scale(1.035);
  }
  .library:hover img,
  .channel-tile:hover img {
    transform: scale(1.035);
  }
}
/* Keep native details grouping and keyboard behavior, with an instant
   fallback in engines that cannot interpolate intrinsic content height. */
@supports (interpolate-size: allow-keywords) and selector(::details-content) {
  .faq-list details {
    interpolate-size: allow-keywords;
  }
  .faq-list details::details-content {
    height: 0;
    opacity: 0;
    overflow: clip;
    transition:
      height 300ms var(--ease),
      opacity 150ms ease-out,
      content-visibility 300ms allow-discrete;
  }
  .faq-list details[open]::details-content {
    height: auto;
    opacity: 1;
  }
}
/* Native close()/Escape keep ownership of focus; CSS handles only visuals. */
@supports (transition-behavior: allow-discrete) {
  dialog {
    opacity: 0;
    transform: translateY(8px);
    transition:
      opacity 150ms ease-out,
      transform 150ms ease-out,
      display 150ms allow-discrete,
      overlay 150ms allow-discrete;
  }
  dialog[open] {
    opacity: 1;
    transform: translateY(0);
    transition-duration: 280ms;
  }
  dialog::backdrop {
    opacity: 0;
    transition:
      opacity 150ms ease-out,
      display 150ms allow-discrete,
      overlay 150ms allow-discrete;
  }
  dialog[open]::backdrop {
    opacity: 1;
    transition-duration: 280ms;
  }
  @starting-style {
    dialog[open] {
      opacity: 0;
      transform: translateY(12px);
    }
    dialog[open]::backdrop {
      opacity: 0;
    }
  }
}

@media (min-width: 1800px) {
  .hero {
    min-height: 750px;
  }
  .hero-content {
    padding-top: 210px;
  }
  .poster-wall {
    right: calc((100vw - 1600px) / 2 - 70px);
  }
}
@media (max-width: 1050px) {
  .wrap {
    width: calc(100% - 64px);
  }
  .header nav {
    gap: 20px;
  }
  .poster-wall {
    width: 75vw;
    right: -160px;
  }
  .hero-shade {
    background:
      linear-gradient(90deg, #08090d 0%, #08090de0 35%, #08090d10 100%),
      linear-gradient(
        0deg,
        #08090d,
        transparent 35%,
        transparent 80%,
        #08090d88
      );
  }
  .hero-copy {
    max-width: 460px;
  }
  .hero {
    min-height: 650px;
  }
  .hero-content {
    padding-top: 172px;
    padding-bottom: 70px;
  }
  .hero-lead {
    max-width: 370px;
  }
  .libraries,
  .devices,
  .faq {
    gap: 35px;
  }
  .poster-rail {
    padding-inline: 32px;
    scroll-padding-left: 32px;
  }
  .feature-copy {
    padding: 24px;
  }
  .sport-stage > img {
    aspect-ratio: 1774/887;
  }
  .final-offer {
    padding: 36px;
    gap: 24px;
  }
  .final-offer h2 {
    font-size: 30px;
  }
  .offer-price strong {
    font-size: 36px;
  }
}
/* Navigation stops fitting on one line below this width. */
@media (max-width: 900px) {
  .header {
    height: 72px;
    gap: 12px;
  }
  .header .logo {
    display: flex;
    align-items: center;
    width: 142px;
    min-height: 44px;
  }
  .header nav {
    display: none;
  }
}
@media (max-width: 700px) {
  :root {
    --display: 2.25rem;
    --heading: 1.75rem;
    --subheading: 1.4rem;
  }
  .wrap {
    width: calc(100% - 40px);
  }
  .hero {
    min-height: 0;
    padding-top: 0;
  }
  .poster-wall {
    top: -160px;
    right: 50%;
    width: 660px;
    transform: translateX(50%) rotate(9deg);
    gap: 10px;
  }
  .poster-column {
    gap: 10px;
  }
  .poster-column:nth-child(even) {
    padding-top: 80px;
  }
  .poster-column img {
    border-radius: 8px;
  }
  .hero-shade {
    background: linear-gradient(
      0deg,
      #08090d 0%,
      #08090d 50%,
      #08090d00 78%,
      #08090d88 100%
    );
  }
  .hero-content {
    padding-top: 324px;
    padding-bottom: 30px;
    text-align: center;
  }
  .hero-copy {
    max-width: 430px;
    margin-inline: auto;
  }
  .eyebrow {
    font-size: 12px;
    margin-bottom: 14px;
    color: #c5c9d4;
  }
  .hero h1 {
    line-height: 1.08;
    letter-spacing: -0.04em;
  }
  .hero-lead {
    font-size: 15px;
    line-height: 1.55;
    max-width: 350px;
    margin: 20px auto 24px;
  }
  .hero .button {
    width: 100%;
    min-width: 0;
    max-width: 350px;
    font-size: 15px;
    gap: 25px;
  }
  .hero-note {
    font-size: 11px;
    margin-top: 15px;
  }
  .section {
    padding-block: 48px;
  }
  .section-head {
    display: block;
    margin-bottom: 24px;
  }
  .section-head p:not(.section-kicker) {
    font-size: 15px;
    line-height: 1.6;
    margin-top: 12px;
  }
  .section-kicker {
    font-size: 12px;
    margin-bottom: 12px;
  }
  .catalogue-link {
    margin-top: 10px;
  }
  .row-head {
    margin-bottom: 8px;
    gap: 8px;
  }
  .row-head h3 {
    font-size: 15px;
    max-width: 230px;
  }
  .rail-controls {
    flex-shrink: 0;
    gap: 5px;
  }
  .rail-controls .round-button {
    width: 44px;
    height: 44px;
  }
  .rail-controls svg,
  .dialog-close svg,
  .text-link svg {
    width: 18px;
    height: 18px;
  }
  .poster-rail {
    gap: 12px;
    padding: 8px 20px 12px;
    scroll-padding-left: 20px;
  }
  .film {
    align-self: flex-start;
    flex-basis: 136px;
  }
  .film-title {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 36px;
    font-size: 12px;
    line-height: 18px;
    margin-top: 9px;
  }
  .film-image {
    border-radius: 8px;
  }
  .catalogue-row + .catalogue-row {
    margin-top: 18px;
  }
  .cinema {
    padding-bottom: 20px;
  }
  .libraries {
    grid-template-columns: 1fr;
    gap: 26px;
    padding-block: 28px 48px;
  }
  .library-intro p {
    font-size: 15px;
    max-width: 350px;
    margin-top: 15px;
  }
  .library-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .library {
    border-radius: 9px;
  }
  .sport {
    padding-bottom: 0;
  }
  .sport-stage {
    border-radius: 14px;
  }
  .sport-stage > img {
    aspect-ratio: 1774/887;
    object-position: center;
  }
  .sport-caption {
    padding: 20px;
    display: block;
  }
  .sport-caption > img {
    width: 108px;
    margin-bottom: 16px;
  }
  .sport-caption h3 {
    font-size: 20px;
    max-width: 270px;
  }
  .sport-caption p {
    font-size: 13px;
    margin-top: 9px;
  }
  .feature-grid {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-top: 18px;
  }
  .feature-copy {
    padding: 24px;
  }
  .feature-copy p:not(.section-kicker) {
    font-size: 14px;
  }
  .channel-grid {
    margin: 0 24px 24px;
  }
  .family-feature .feature-copy {
    padding: 24px;
  }
  .devices {
    grid-template-columns: 1fr;
    gap: 34px;
    padding-block: 56px;
  }
  .devices-copy > p:not(.section-kicker) {
    font-size: 15px;
    margin-top: 17px;
  }
  .device-labels {
    margin-top: 20px;
  }
  .device-art {
    padding-right: 20px;
  }
  .tv-device {
    padding: 16px;
    border-width: 4px;
    border-radius: 12px;
  }
  .screen-heading {
    font-size: 11px;
    margin-block: 16px 10px;
  }
  .screen-logo {
    width: 85px;
  }
  .screen-posters {
    gap: 7px;
  }
  .phone-device {
    border-width: 4px;
    border-radius: 15px;
    width: 27%;
  }
  .phone-device > span {
    font-size: 7px;
    padding: 10px 2px;
  }
  .final-offer {
    display: block;
    padding: 30px 24px;
    border-radius: 16px;
    background-image:
      linear-gradient(90deg, #050b14b8, #050b1499),
      url("/assets/offer-home-films.webp");
    background-position: 76% center;
  }
  .final-offer h2 {
    font-size: 28px;
    max-width: 270px;
  }
  .final-offer p:not(.section-kicker, .offer-price, .offer-footnote) {
    font-size: 14px;
  }
  .offer-action {
    text-align: left;
    margin-top: 24px;
  }
  .offer-price {
    margin-bottom: 18px;
  }
  .offer-price strong {
    font-size: 38px;
  }
  .offer-action .button {
    width: 100%;
    font-size: 15px;
    gap: 18px;
  }
  .offer-footnote {
    font-size: 10px;
    text-align: left;
  }
  .faq {
    grid-template-columns: 1fr;
    gap: 24px;
    padding-block: 56px 40px;
  }
  .faq-intro h2 {
    max-width: none;
  }
  .faq-intro > a {
    margin-top: 8px;
    gap: 8px;
    font-size: 14px;
  }
  .faq-intro > p {
    margin-top: 0;
  }
  .faq-list summary {
    font-size: 15px;
    padding-block: 19px;
    min-height: 64px;
    gap: 16px;
  }
  .faq-list details > p {
    font-size: 14px;
    padding-right: 12px;
  }
  .faq-art {
    width: 280px;
    height: auto;
    margin: 12px auto 4px;
  }
  .footer {
    padding-top: 12px;
    padding-bottom: calc(96px + env(safe-area-inset-bottom));
  }
  .footer-main {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 4px 12px;
  }
  .footer-main img {
    width: 90px;
  }
  .footer-copyright {
    grid-row: 2;
    grid-column: 1 / -1;
    margin-top: 6px;
    font-size: 10px;
  }
  .footer-links {
    grid-row: 3;
    grid-column: 1 / -1;
    margin-left: 0;
    gap: 4px 16px;
  }
  .age {
    grid-row: 1;
    grid-column: 2;
  }
  .sticky-buy {
    width: calc(100% - 24px);
    max-width: 430px;
    bottom: max(12px, env(safe-area-inset-bottom));
    padding: 10px 10px 10px 15px;
    gap: 10px;
    border-radius: 14px;
  }
  .sticky-buy .button {
    font-size: 13px;
    gap: 12px;
    padding-inline: 14px;
  }
  .sticky-buy strong {
    font-size: 12px;
  }
  .sticky-buy span {
    font-size: 11px;
  }
  dialog {
    padding: 28px 22px;
    max-width: calc(100% - 24px);
    max-height: calc(100svh - 24px);
    border-radius: 18px;
  }
  dialog h2 {
    font-size: 28px;
  }
  .checkout-head {
    margin-bottom: 24px;
  }
  .checkout-summary > strong {
    font-size: 26px;
  }
  .checkout-legal {
    font-size: 11px;
  }
  .checkout-submit {
    padding-inline: 14px;
    font-size: 14px;
    gap: 10px;
  }
  .film-dialog {
    overflow-y: auto;
    padding: 24px;
  }
  .film-dialog[open] {
    display: block;
  }
  .film-dialog > img {
    width: 135px;
    margin-bottom: 20px;
  }
  .film-dialog-copy h2 {
    font-size: 26px;
  }
  .film-dialog-copy > p:not(.section-kicker) {
    margin-block: 16px;
  }
  .film-dialog-copy .button {
    width: 100%;
  }
}
@media (max-width: 360px) {
  :root {
    --display: 2rem;
    --heading: 1.6rem;
  }
  .hero-content {
    padding-top: 292px;
  }
  .hero-shade {
    background: linear-gradient(
      0deg,
      #08090d 0%,
      #08090d 52%,
      transparent 83%,
      #08090d88 100%
    );
  }
  .hero-lead {
    font-size: 14px;
  }
  .row-head h3 {
    font-size: 14px;
    max-width: 170px;
  }
  .film {
    align-self: flex-start;
    flex-basis: 125px;
  }
  .library-grid {
    gap: 8px;
  }
  .final-offer {
    padding: 28px 20px;
  }
  .final-offer h2 {
    font-size: 26px;
  }
  .offer-action .button {
    font-size: 14px;
  }
  .sticky-buy .button svg {
    display: none;
  }
  .sticky-buy .button {
    padding-inline: 14px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .scroll-enter {
    translate: none;
  }
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    transition: none !important;
    animation: none !important;
    scroll-behavior: auto !important;
  }
}

.family-carousel {
  margin-top: auto;
  padding-bottom: 24px;
}
.family-rail-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 0 30px 12px;
  font-size: 14px;
  font-weight: 500;
}
.family-carousel .poster-rail {
  padding: 6px 30px 10px;
  scroll-padding-left: 30px;
  gap: 12px;
}
.family-carousel .film {
  flex-basis: 116px;
}
.family-carousel .film-title {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 36px;
  font-size: 12px;
  line-height: 18px;
}
.film-age {
  position: absolute;
  inset-block-start: 7px;
  inset-inline-end: 7px;
  z-index: 1;
  display: grid;
  place-items: center;
  min-width: 27px;
  min-height: 23px;
  padding: 2px 5px;
  border: 1px solid #ffffff30;
  border-radius: 6px;
  background: #08090de6;
  color: #fff;
  font-size: 11px;
  font-weight: 500;
  line-height: 17px;
  pointer-events: none;
}
@media (max-width: 1050px) {
  .family-rail-head {
    padding-inline: 24px;
  }
  .family-carousel .poster-rail {
    padding-inline: 24px;
    scroll-padding-left: 24px;
  }
  .family-carousel .film {
    flex-basis: 104px;
  }
}

@media (max-width: 700px) {
  .sport-disciplines {
    font-size: 11px;
    padding: 13px 10px;
    gap: 4px;
  }
  .sticky-buy .button {
    white-space: nowrap;
  }
  .sticky-buy .button svg {
    width: 16px;
    height: 16px;
  }
}

@media (max-width: 700px) {
  .family-carousel .film {
    flex-basis: 124px;
  }
}
@media (max-width: 360px) {
  .family-carousel .film {
    flex-basis: 116px;
  }
}

/* Checkout states use the existing dialog and button scale. */
#checkout [hidden] {
  display: none !important;
}
#renewal-terms {
  color: #c0c7d6;
  font-size: 13px;
  line-height: 1.6;
}
.terms-consent {
  display: flex !important;
  align-items: flex-start;
  gap: 12px;
  margin: 18px 0;
  font-size: 13px !important;
  line-height: 1.55;
  cursor: pointer;
}
.terms-consent input {
  margin-top: 3px;
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  accent-color: #0065ff;
}
.billing-secondary {
  min-height: 44px;
  padding: 10px 0;
  background: none;
  color: #77b9ff;
  border: 0;
  cursor: pointer;
  font: inherit;
  font-size: 13px;
}
#click-pay {
  margin-bottom: 12px;
  width: 100%;
}
.checkout-submit {
  white-space: normal;
}

#checkout-status:empty {
  padding: 0;
  margin: 0;
  border: 0;
  min-height: 0;
}
