:root {
  --black: #050506;
  --surface: #101014;
  --line: rgba(255, 255, 255, 0.13);
  --text: #f5f4f2;
  --muted: #a9a7a7;
  --lime: #d9ff3f;
  --font: Inter, Arial, sans-serif;
  --mono: "DM Mono", monospace;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--black);
  color: var(--text);
  font-family: var(--font);
  line-height: 1.5;
}
.site-header {
  height: 76px;
  background: rgba(5, 5, 6, 0.9);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  position: sticky;
  top: 0;
  z-index: 20;
}
.header-inner,
.hero-inner,
.footer-inner {
  width: min(1260px, calc(100% - 48px));
  margin: auto;
}
.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  text-decoration: none;
  color: var(--text);
  font-size: 13px;
  letter-spacing: 0.14em;
}
.brand img {
  width: 34px;
  height: 34px;
  border-radius: 9px;
}
.brand b {
  font-weight: 800;
}
.header-inner nav {
  display: flex;
  gap: 29px;
  margin-left: 110px;
}
.header-inner nav a,
.footer-inner a {
  color: #c4c2bf;
  text-decoration: none;
  font-size: 12px;
  font-weight: 600;
}
.header-inner nav a:hover,
.header-inner nav a.active {
  color: #fff;
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}
.signin {
  font-size: 12px;
  color: #ddd;
  text-decoration: none;
}
.subscribe {
  border-radius: 5px;
  background: var(--lime);
  color: #0b0b0c;
  text-decoration: none;
  padding: 10px 16px;
  font-size: 12px;
  font-weight: 800;
}
.hero {
  height: 650px;
  position: relative;
  overflow: hidden;
}
.hero-backdrop {
  position: absolute;
  inset: 0;
  background-image: url("https://image.tmdb.org/t/p/original/twiVn9oFXOVR0uoYgawyEBlnFu8.jpg");
  background-size: cover;
  background-position: center 29%;
  filter: saturate(0.68) contrast(1.07);
  transform: scale(1.03);
  animation: hero-drift 22s ease-in-out infinite alternate;
  will-change: transform;
}
.hero-backdrop.is-changing {
  animation:
    hero-reveal 0.7s ease-out both,
    hero-drift 22s 0.7s ease-in-out infinite alternate;
}
.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      #050506 0%,
      rgba(5, 5, 6, 0.88) 27%,
      rgba(5, 5, 6, 0.23) 65%,
      rgba(5, 5, 6, 0.3)
    ),
    linear-gradient(0deg, #050506 0%, transparent 42%);
}
.hero-inner {
  height: 100%;
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 35px;
}
.hero-copy {
  padding-top: 24px;
  max-width: 650px;
}
.hero-kicker,
.section-kicker {
  font: 500 10px var(--mono);
  letter-spacing: 0.14em;
  color: var(--lime);
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 20px;
}
.hero-kicker i {
  height: 5px;
  width: 5px;
  background: var(--lime);
  border-radius: 50%;
}
.hero h1 {
  font-size: clamp(3.55rem, 5.5vw, 5.9rem);
  line-height: 0.94;
  letter-spacing: -0.085em;
  margin: 0;
}
.hero h1 em {
  color: var(--lime);
  font-style: normal;
}
.hero-copy > p:not(.hero-kicker) {
  max-width: 510px;
  font-size: 16px;
  line-height: 1.62;
  color: #dfdcda;
  margin: 25px 0;
}
.hero-buttons {
  display: flex;
  gap: 12px;
  align-items: center;
}
.button-white {
  background: #fff;
  color: #111;
  text-decoration: none;
  border-radius: 5px;
  font-size: 13px;
  font-weight: 800;
  padding: 14px 18px;
  transition: transform 0.2s;
}
.button-white:hover {
  transform: translateY(-2px);
}
.button-white span {
  font-size: 10px;
  margin-right: 7px;
}
.button-quiet {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.42);
  padding: 13px 17px;
  border-radius: 5px;
  font-size: 13px;
  text-decoration: none;
  font-weight: 700;
}
.button-quiet b {
  margin-left: 6px;
}
.hero-tags {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-top: 35px;
  font: 500 10px var(--mono);
  letter-spacing: 0.08em;
  color: #e6e5e2;
}
.hero-tags i {
  height: 3px;
  width: 3px;
  background: var(--lime);
  border-radius: 50%;
}
.quick-plan {
  width: 260px;
  padding: 25px 24px;
  background: rgba(18, 18, 20, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.21);
  border-radius: 8px;
  backdrop-filter: blur(12px);
  box-shadow: 0 25px 55px rgba(0, 0, 0, 0.28);
}
.plan-tag {
  font: 500 9px var(--mono);
  color: var(--lime);
  letter-spacing: 0.12em;
}
.quick-plan h2 {
  font-size: 26px;
  line-height: 1.01;
  letter-spacing: -0.06em;
  margin: 17px 0 25px;
}
.quick-plan > p {
  font-size: 11px;
  color: #b9b7b5;
  margin: 0;
}
.quick-plan > strong {
  font-size: 31px;
  letter-spacing: -0.06em;
  display: block;
}
.quick-plan > strong span {
  font-size: 11px;
  color: #b9b7b5;
  letter-spacing: 0;
  margin-left: 4px;
}
.quick-plan ul {
  list-style: none;
  padding: 17px 0;
  margin: 17px 0;
  border-block: 1px solid var(--line);
}
.quick-plan li {
  font-size: 11px;
  color: #d7d5d1;
  margin: 8px 0;
}
.quick-plan li i {
  font-style: normal;
  color: var(--lime);
  margin-right: 7px;
}
.quick-plan > a {
  color: #101010;
  background: var(--lime);
  display: flex;
  justify-content: space-between;
  text-decoration: none;
  border-radius: 4px;
  padding: 11px;
  font-size: 11px;
  font-weight: 800;
}
.catalog {
  padding: 108px 0 120px;
  display: grid;
  grid-template-columns: minmax(220px, 0.37fr) minmax(0, 1fr);
  gap: 50px;
  width: min(1260px, calc(100% - 48px));
  margin: auto;
}
.catalog-intro {
  position: sticky;
  top: 110px;
  height: max-content;
}
.catalog-intro p {
  color: var(--lime);
  font: 500 9px var(--mono);
  letter-spacing: 0.14em;
  margin: 0 0 20px;
}
.catalog-intro h2 {
  font-size: clamp(2.5rem, 3.4vw, 3.9rem);
  line-height: 0.97;
  letter-spacing: -0.075em;
  margin: 0;
}
.catalog-intro > span {
  display: block;
  color: #a4a19e;
  font-size: 13px;
  line-height: 1.6;
  margin-top: 22px;
  max-width: 190px;
}
.content-row + .content-row {
  margin-top: 64px;
}
.row-heading {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 16px;
}
.row-heading h3 {
  font-size: 18px;
  letter-spacing: -0.04em;
  margin: 0;
}
.row-heading a,
.row-heading span {
  font-size: 11px;
  color: #aaa7a4;
  text-decoration: none;
}
.row-heading a span {
  color: var(--lime);
  margin-left: 5px;
}
.poster-row {
  display: flex;
  gap: 10px;
  overflow: hidden;
}
.poster-card {
  width: 148px;
  min-width: 148px;
  height: 220px;
  position: relative;
  overflow: hidden;
  background: #252525;
  border-radius: 5px;
  transition:
    transform 0.25s,
    box-shadow 0.25s;
}
.poster-card:hover {
  transform: scale(1.04);
  z-index: 1;
  box-shadow: 0 13px 30px rgba(0, 0, 0, 0.5);
}
.poster-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.55s ease;
}
.poster-card:hover img {
  transform: scale(1.07);
}
.poster-card.is-live {
  animation: card-reveal 0.5s both;
  animation-delay: var(--delay, 0ms);
}
.poster-card:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.88) 0, transparent 58%);
}
.poster-card div {
  position: absolute;
  z-index: 1;
  bottom: 12px;
  left: 11px;
  right: 11px;
}
.poster-card strong,
.poster-card small,
.poster-card span {
  display: block;
}
.poster-card strong {
  font-size: 12px;
  line-height: 1.15;
}
.poster-card small {
  font-size: 9px;
  color: #d3d0ca;
  margin-top: 4px;
}
.poster-card span {
  font: 500 8px var(--mono);
  color: var(--lime);
  letter-spacing: 0.1em;
  margin-bottom: 5px;
}
.poster-card.wide {
  width: 326px;
  min-width: 326px;
}
.poster-card.wide img {
  object-position: center;
}
.poster-card.wide strong {
  font-size: 18px;
}
.plans-section {
  background: #e9e8e4;
  color: #0e0e0f;
  padding: 118px 0;
}
.plans-inner {
  width: min(1100px, calc(100% - 48px));
  margin: auto;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 92px;
  align-items: center;
}
.plans-copy .section-kicker {
  color: #4c5041;
}
.plans-copy h2 {
  font-size: clamp(2.6rem, 3.8vw, 4.2rem);
  line-height: 0.96;
  letter-spacing: -0.08em;
  margin: 0;
}
.plans-copy > p:not(.section-kicker) {
  font-size: 14px;
  color: #585858;
  line-height: 1.65;
  max-width: 350px;
  margin: 24px 0;
}
.payment-inline {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
  font: 500 9px var(--mono);
  letter-spacing: 0.09em;
}
.payment-inline i {
  width: 3px;
  height: 3px;
  background: #101010;
  border-radius: 50%;
}
.plans-panel {
  background: #fff;
  padding: 28px;
  border-radius: 8px;
  box-shadow: 0 20px 40px rgba(23, 22, 20, 0.14);
}
.plan-tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
.tab {
  font-family: var(--font);
  min-height: 128px;
  border: 1px solid #d8d7d3;
  background: #f8f8f6;
  color: #19191a;
  border-radius: 6px;
  padding: 15px 14px 13px;
  text-align: left;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition:
    border-color 0.2s,
    background 0.2s,
    transform 0.2s,
    box-shadow 0.2s;
}
.tab.active {
  background: #101011;
  color: #fff;
  border-color: #101011;
  box-shadow: 0 9px 18px rgba(16, 16, 17, 0.16);
}
.tab:hover {
  border-color: #101011;
  transform: translateY(-2px);
}
.tab:focus-visible,
.period-grid button:focus-visible,
.plan-footer a:focus-visible {
  outline: 3px solid #9aba00;
  outline-offset: 3px;
}
.tab-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}
.tab-top b,
.tab-top i {
  font: 600 10px var(--mono);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.tab-top i {
  font-style: normal;
  color: #858480;
}
.tab.active .tab-top i {
  color: var(--lime);
}
.tab > strong {
  display: block;
  font-size: 22px;
  line-height: 1;
  letter-spacing: -0.065em;
  margin-top: 19px;
}
.tab > strong span {
  font-size: 9px;
  letter-spacing: 0;
  font-weight: 600;
  margin-left: 3px;
  color: #787773;
}
.tab.active > strong span {
  color: #b8b7b3;
}
.tab > em {
  color: #74736f;
  font-size: 10px;
  font-style: normal;
  font-weight: 600;
}
.tab.active > em {
  color: #e5e4df;
}
.plan-summary {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: start;
  padding: 26px 0 21px;
}
.plan-summary p {
  font: 500 9px var(--mono);
  letter-spacing: 0.1em;
  color: #686764;
  margin: 0 0 8px;
  text-transform: uppercase;
}
.plan-summary h3 {
  font-size: 23px;
  letter-spacing: -0.055em;
  line-height: 1.08;
  margin: 0;
}
.plan-summary > span {
  font: 500 9px var(--mono);
  letter-spacing: 0.1em;
  background: var(--lime);
  padding: 7px 8px;
}
.period-heading {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 14px;
  border-top: 1px solid #deddda;
  padding: 18px 0 11px;
}
.period-heading > span {
  font: 600 9px var(--mono);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.period-heading small {
  color: #777572;
  font-size: 9px;
  text-align: right;
}
.period-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 7px;
}
.period-grid button {
  font-family: var(--font);
  position: relative;
  border: 1px solid #dddcd9;
  background: #fafaf8;
  text-align: left;
  padding: 16px 11px 12px;
  border-radius: 5px;
  cursor: pointer;
  min-height: 78px;
  transition:
    border-color 0.18s,
    background 0.18s,
    transform 0.18s;
}
.period-grid button:hover,
.period-grid button.selected {
  border-color: #161616;
  background: #f2ffbc;
}
.period-grid button:hover {
  transform: translateY(-2px);
}
.period-grid button.selected:after {
  content: "✓";
  position: absolute;
  top: 7px;
  right: 8px;
  width: 15px;
  height: 15px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #101011;
  color: var(--lime);
  font-size: 9px;
  font-weight: 800;
}
.period-grid.is-single {
  grid-template-columns: 1fr;
}
.period-grid.is-single button {
  min-height: 86px;
}
.period-grid button span,
.period-grid button b {
  display: block;
}
.period-grid button span {
  font-size: 10px;
  color: #6e6e6c;
}
.period-grid button b {
  font-size: 12px;
  margin-top: 4px;
}
.period-grid button em {
  position: absolute;
  top: -8px;
  left: 8px;
  background: #101011;
  color: #fff;
  padding: 3px 4px;
  font: 500 7px var(--mono);
  letter-spacing: 0.05em;
  font-style: normal;
  white-space: nowrap;
}
.plan-footer {
  display: flex;
  align-items: end;
  justify-content: space-between;
  border-top: 1px solid #deddda;
  margin-top: 23px;
  padding-top: 20px;
}
.plan-footer small {
  font: 500 8px var(--mono);
  letter-spacing: 0.1em;
  color: #72716f;
  display: block;
}
.plan-footer strong {
  font-size: 28px;
  letter-spacing: -0.06em;
  display: block;
  line-height: 1;
  margin-top: 5px;
}
.plan-footer p {
  font-size: 10px;
  color: #686764;
  margin: 5px 0 0;
}
.plan-footer a {
  background: #101011;
  color: #fff;
  text-decoration: none;
  padding: 14px 17px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 800;
}
.plan-footer a span {
  margin-left: 15px;
  color: var(--lime);
}
.checkout-copy {
  margin: 13px 0 0;
  color: #777572;
  font-size: 10px;
}
.steps {
  background: #0f0f11;
  padding: 112px 0;
}
.steps-inner {
  width: min(1100px, calc(100% - 48px));
  margin: auto;
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 90px;
}
.steps-title {
  position: sticky;
  top: 100px;
  height: max-content;
}
.steps-title h2 {
  font-size: clamp(2.5rem, 3.6vw, 4rem);
  letter-spacing: -0.075em;
  line-height: 0.97;
  margin: 0;
}
.steps-title a {
  color: var(--lime);
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
  display: inline-block;
  margin-top: 29px;
}
.steps-title a span {
  margin-left: 7px;
}
.steps ol {
  list-style: none;
  padding: 0;
  margin: 0;
  border-top: 1px solid var(--line);
}
.steps li {
  display: grid;
  grid-template-columns: 55px 1fr;
  gap: 17px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}
.steps li > span {
  font: 500 11px var(--mono);
  color: var(--lime);
  padding-top: 3px;
}
.steps h3 {
  font-size: 17px;
  letter-spacing: -0.04em;
  margin: 0 0 4px;
}
.steps li p {
  font-size: 13px;
  color: #aaa7a4;
  margin: 0;
  line-height: 1.55;
}
footer {
  background: #050506;
  border-top: 1px solid var(--line);
  padding: 32px 0 22px;
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.footer-inner > div {
  display: flex;
  gap: 22px;
}
.footer-inner small {
  font: 500 9px var(--mono);
  color: #777571;
}
.tmdb-attribution {
  width: min(1260px, calc(100% - 48px));
  margin: 27px auto 0;
  padding-top: 15px;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  color: #777571;
  font-size: 9px;
}
@keyframes hero-drift {
  from {
    transform: scale(1.03) translate3d(-0.4%, -0.25%, 0);
  }
  to {
    transform: scale(1.09) translate3d(0.6%, 0.35%, 0);
  }
}
@keyframes hero-reveal {
  from {
    opacity: 0.45;
  }
  to {
    opacity: 1;
  }
}
@keyframes card-reveal {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (max-width: 850px) {
  .header-inner,
  .hero-inner,
  .footer-inner,
  .catalog,
  .plans-inner,
  .steps-inner,
  .tmdb-attribution {
    width: min(calc(100% - 32px), 640px);
  }
  .site-header {
    height: 66px;
  }
  .header-inner nav {
    display: none;
  }
  .signin {
    display: none;
  }
  .hero {
    height: auto;
    min-height: 0;
  }
  .hero-inner {
    align-items: start;
    padding: 74px 0 44px;
    display: block;
  }
  .hero h1 {
    font-size: clamp(3.15rem, 14vw, 4.6rem);
    overflow-wrap: anywhere;
  }
  .hero-copy > p:not(.hero-kicker) {
    font-size: 15px;
  }
  .quick-plan {
    position: static;
    width: 100%;
    margin-top: 32px;
  }
  .catalog {
    display: block;
    padding-top: 80px;
  }
  .catalog-intro {
    position: static;
  }
  .catalog-intro > span {
    max-width: 100%;
    margin-bottom: 40px;
  }
  .content-row + .content-row {
    margin-top: 45px;
  }
  .poster-card {
    width: 130px;
    min-width: 130px;
    height: 194px;
  }
  .poster-card.wide {
    width: 270px;
    min-width: 270px;
  }
  .tab {
    min-height: 120px;
  }
  .plans-inner,
  .steps-inner {
    grid-template-columns: 1fr;
    gap: 45px;
  }
  .plans-section,
  .steps {
    padding: 78px 0;
  }
  .steps-title {
    position: static;
  }
  .footer-inner {
    align-items: flex-start;
    flex-wrap: wrap;
  }
  .footer-inner > div {
    order: 3;
    width: 100%;
    gap: 15px;
    flex-wrap: wrap;
  }
  .footer-inner small {
    margin-left: auto;
  }
}
@media (max-width: 460px) {
  .header-inner,
  .hero-inner,
  .footer-inner,
  .catalog,
  .plans-inner,
  .steps-inner,
  .tmdb-attribution {
    width: calc(100% - 32px);
  }
  .subscribe {
    font-size: 0;
    width: 37px;
    height: 34px;
    padding: 0;
    display: grid;
    place-items: center;
  }
  .subscribe:after {
    content: "+";
    font-size: 18px;
  }
  .hero-buttons {
    align-items: start;
    flex-direction: column;
  }
  .quick-plan {
    margin-top: 28px;
  }
  .period-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .period-heading {
    display: block;
  }
  .period-heading small {
    display: block;
    text-align: left;
    margin-top: 4px;
  }
  .plan-footer {
    display: block;
  }
  .plan-footer a {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
  }
  .footer-inner small {
    margin-left: 0;
  }
  .poster-card {
    width: 122px;
    min-width: 122px;
    height: 182px;
  }
  .poster-card.wide {
    width: 250px;
    min-width: 250px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .hero-backdrop,
  .hero-backdrop.is-changing,
  .poster-card.is-live {
    animation: none;
  }
  .poster-card,
  .poster-card img,
  .tab,
  .period-grid button,
  .button-white {
    transition: none;
  }
}
