:root {
  --bg: #08080b;
  --ink: #ffffff;
  --muted: #c7cbd6;
  --line: rgba(255, 255, 255, .12);
  --panel: rgba(17, 18, 24, .76);
  --yellow: #ffe34f;
  --orange: #ff7a1a;
  --cyan: #51d6ff;
  --green: #4ce090;
  --red: #ff4d6d;
  --max: 1160px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(8, 8, 11, .36), #08080b 760px),
    #08080b;
  font-size: 16px;
  line-height: 1.5;
  overflow-x: hidden;
  padding-bottom: 92px;
}

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

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

.shell {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.topbar {
  position: fixed;
  z-index: 20;
  top: 0;
  right: 0;
  left: 0;
  background: linear-gradient(180deg, rgba(8, 8, 11, .88), rgba(8, 8, 11, .36), transparent);
  backdrop-filter: blur(10px);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 900;
  letter-spacing: .02em;
  font-size: 20px;
}

.brand img {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  object-fit: contain;
  background: rgba(255, 255, 255, .08);
}

.brand em {
  font-style: normal;
  color: var(--red);
}

.nav-links {
  display: flex;
  gap: 26px;
  color: rgba(255, 255, 255, .78);
  font-size: 14px;
  font-weight: 700;
}

.nav-links a:hover {
  color: var(--yellow);
}

.nav-cta,
.btn-primary,
.btn-secondary,
.sticky-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 999px;
  font-weight: 900;
  white-space: nowrap;
}

.nav-cta {
  min-height: 42px;
  padding: 0 18px;
  background: #ffffff;
  color: #121212;
  box-shadow: 0 12px 26px rgba(255, 255, 255, .16);
}

.hero {
  position: relative;
  min-height: 100vh;
  padding: 116px 0 64px;
  overflow: hidden;
  isolation: isolate;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(8, 8, 11, .96) 0%, rgba(8, 8, 11, .78) 42%, rgba(8, 8, 11, .26) 100%),
    url("../images/movie-ballerina.webp") center / cover no-repeat;
  transform: scale(1.03);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  z-index: -1;
  height: 190px;
  background: linear-gradient(180deg, transparent, var(--bg));
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 430px);
  align-items: center;
  gap: 56px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, .08);
  color: var(--yellow);
  font-size: 13px;
  font-weight: 900;
}

.eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 16px var(--green);
}

h1 {
  max-width: 740px;
  margin: 24px 0 18px;
  font-size: clamp(42px, 6.4vw, 82px);
  line-height: .97;
  letter-spacing: 0;
}

h1 em {
  font-style: normal;
  background: linear-gradient(90deg, var(--yellow), var(--orange));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.lead {
  max-width: 620px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(17px, 2vw, 21px);
}

.lead strong {
  color: #ffffff;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-top: 34px;
}

.btn-primary {
  min-height: 58px;
  padding: 0 28px;
  color: #17100a;
  background: linear-gradient(180deg, var(--yellow), var(--orange));
  box-shadow: 0 18px 40px rgba(255, 122, 26, .34);
}

.btn-secondary {
  min-height: 58px;
  padding: 0 24px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .08);
  color: #ffffff;
}

.trust {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  max-width: 640px;
  margin-top: 38px;
}

.metric {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 16px;
  background: rgba(8, 8, 11, .58);
}

.metric strong {
  display: block;
  font-size: 24px;
  line-height: 1;
}

.metric span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.phone {
  position: relative;
  width: min(100%, 360px);
  margin-left: auto;
  padding: 13px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 46px;
  background: linear-gradient(145deg, rgba(255, 255, 255, .22), rgba(255, 255, 255, .04));
  box-shadow: 0 34px 90px rgba(0, 0, 0, .62);
}

.screen {
  position: relative;
  aspect-ratio: 9 / 18.8;
  overflow: hidden;
  border-radius: 36px;
  background: #0a0a0e;
}

.screen-bg {
  position: absolute;
  inset: 0;
  background: url("../images/phone-screen.jpg") center / cover no-repeat;
  filter: blur(26px) brightness(.45);
  transform: scale(1.25);
}

.screen-media {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.screen::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 50%;
  z-index: 2;
  width: 116px;
  height: 24px;
  border-radius: 0 0 18px 18px;
  background: #07070a;
  transform: translateX(-50%);
}

.screen-shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(0, 0, 0, .12), rgba(0, 0, 0, .18) 52%, rgba(0, 0, 0, .78));
}

.offline-pill {
  position: absolute;
  z-index: 2;
  top: 46px;
  left: 18px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(76, 224, 144, .16);
  border: 1px solid rgba(76, 224, 144, .45);
  color: var(--green);
  font-size: 12px;
  font-weight: 900;
  backdrop-filter: blur(8px);
}

.offline-pill::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 12px var(--green);
}

.episode-ui {
  position: absolute;
  right: 18px;
  bottom: 112px;
  display: grid;
  gap: 12px;
}

.ui-dot {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .17);
  backdrop-filter: blur(10px);
  font-size: 18px;
  font-weight: 900;
}

.episode-copy {
  position: absolute;
  right: 18px;
  bottom: 22px;
  left: 18px;
}

.episode-copy strong {
  display: block;
  font-size: 20px;
  line-height: 1.15;
}

.episode-copy span {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, .76);
  font-size: 13px;
}

section {
  padding: 86px 0;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 30px;
}

.section-head h2 {
  max-width: 680px;
  margin: 0;
  font-size: clamp(30px, 4.5vw, 54px);
  line-height: 1.02;
  letter-spacing: 0;
}

.section-head p {
  max-width: 400px;
  margin: 0;
  color: var(--muted);
  font-weight: 600;
}

.row-title {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 44px 0 18px;
  font-size: 15px;
  font-weight: 900;
  color: rgba(255, 255, 255, .85);
  text-transform: uppercase;
  letter-spacing: .08em;
}

.row-title::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--line);
}

.row-title .chip {
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 11px;
  letter-spacing: .04em;
  color: #07100c;
  background: var(--green);
}

.poster-strip {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
}

.poster {
  position: relative;
  min-height: 260px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .09);
  border-radius: 8px;
  background: #16171d;
  cursor: pointer;
}

.poster:nth-child(even) {
  transform: translateY(26px);
}

.poster img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
  transition: transform .35s ease;
}

.poster:hover img {
  transform: scale(1.06);
}

.poster span {
  position: absolute;
  right: 10px;
  bottom: 10px;
  left: 10px;
  padding: 8px 10px;
  border-radius: 6px;
  background: rgba(0, 0, 0, .66);
  color: #ffffff;
  font-size: 12px;
  font-weight: 900;
  backdrop-filter: blur(10px);
}

.poster .free-tag {
  position: absolute;
  top: 10px;
  left: 10px;
  right: auto;
  bottom: auto;
  padding: 4px 9px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--yellow), var(--orange));
  color: #17100a;
  font-size: 11px;
  font-weight: 900;
}

.novela-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.novela {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .09);
  border-radius: 8px;
  background: #16171d;
  cursor: pointer;
}

.novela img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  transition: transform .35s ease;
}

.novela:hover img {
  transform: scale(1.06);
}

.novela span {
  position: absolute;
  right: 10px;
  bottom: 10px;
  left: 10px;
  padding: 7px 10px;
  border-radius: 6px;
  background: rgba(0, 0, 0, .66);
  color: #ffffff;
  font-size: 12px;
  font-weight: 900;
  backdrop-filter: blur(10px);
}

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

.feature-card {
  min-height: 230px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}

.feature-card .icon {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-bottom: 44px;
  border-radius: 50%;
  color: #07100c;
  background: var(--green);
  font-weight: 1000;
}

.feature-card:nth-child(2) .icon {
  background: var(--cyan);
  color: #031118;
}

.feature-card:nth-child(3) .icon {
  background: var(--red);
  color: #190307;
}

.feature-card h3 {
  margin: 0 0 10px;
  font-size: 22px;
}

.feature-card p {
  margin: 0;
  color: var(--muted);
}

.compare-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}

.compare {
  width: 100%;
  min-width: 560px;
  border-collapse: collapse;
  font-size: 15px;
}

.compare th,
.compare td {
  padding: 16px 20px;
  border-bottom: 1px solid var(--line);
  text-align: left;
}

.compare tr:last-child th,
.compare tr:last-child td {
  border-bottom: 0;
}

.compare thead th {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--muted);
}

.compare thead th.mix {
  color: var(--yellow);
}

.compare td.yes {
  color: var(--green);
  font-weight: 900;
}

.compare td.no {
  color: var(--red);
  font-weight: 700;
}

.conversion {
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(8, 8, 11, .94), rgba(8, 8, 11, .62)),
    url("../images/tv-the-witcher.webp") center 26% / cover no-repeat;
}

.conversion-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 30px;
  min-height: 330px;
}

.conversion h2 {
  max-width: 720px;
  margin: 0 0 14px;
  font-size: clamp(32px, 5vw, 64px);
  line-height: 1;
}

.conversion p {
  max-width: 560px;
  margin: 0;
  color: var(--muted);
  font-size: 18px;
}

.footer {
  padding: 42px 0 34px;
  color: rgba(255, 255, 255, .68);
  font-size: 13px;
}

.footer-row {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid var(--line);
  padding-top: 24px;
}

.sticky-download {
  position: fixed;
  z-index: 30;
  right: 16px;
  bottom: 16px;
  left: 16px;
}

.sticky-inner {
  display: flex;
  align-items: center;
  gap: 12px;
  width: min(680px, 100%);
  margin: 0 auto;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: 8px;
  background: rgba(18, 20, 28, .94);
  box-shadow: 0 20px 52px rgba(0, 0, 0, .48);
  backdrop-filter: blur(16px);
}

.sticky-inner img {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  object-fit: contain;
  background: rgba(255, 255, 255, .08);
}

.sticky-copy {
  flex: 1;
  min-width: 0;
}

.sticky-copy strong,
.sticky-copy span {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.sticky-copy strong {
  color: #ffffff;
  font-size: 16px;
  line-height: 1.2;
}

.sticky-copy span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.sticky-btn {
  min-height: 46px;
  padding: 0 18px;
  color: #17100a;
  background: linear-gradient(180deg, var(--yellow), var(--orange));
}

.dl-modal {
  position: fixed;
  z-index: 50;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(4, 4, 7, .72);
  backdrop-filter: blur(8px);
}

.dl-modal.show {
  display: flex;
}

.dl-card {
  width: min(420px, 100%);
  padding: 30px 26px 24px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 8px;
  background: #14151c;
  box-shadow: 0 30px 80px rgba(0, 0, 0, .6);
  text-align: center;
}

.dl-card img {
  width: 72px;
  height: 72px;
  margin: 0 auto 16px;
  border-radius: 16px;
  object-fit: contain;
  background: rgba(255, 255, 255, .08);
}

.dl-card h3 {
  margin: 0 0 10px;
  font-size: 24px;
  line-height: 1.1;
}

.dl-card p {
  margin: 0 0 22px;
  color: var(--muted);
  font-size: 15px;
}

.dl-card p strong {
  color: #ffffff;
}

.dl-card .btn-primary {
  width: 100%;
  cursor: pointer;
}

.dl-cancel {
  display: block;
  margin-top: 14px;
  color: rgba(255, 255, 255, .55);
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
}

.dl-cancel:hover {
  color: #ffffff;
}

@media (max-width: 900px) {
  .hero-grid,
  .conversion-inner {
    grid-template-columns: 1fr;
  }

  .phone {
    margin: 10px auto 0;
  }

  .poster-strip {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

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

  .section-head {
    display: block;
  }

  .section-head p {
    margin-top: 14px;
  }
}

@media (max-width: 620px) {
  body {
    padding-bottom: 82px;
  }

  .shell {
    width: min(100% - 28px, var(--max));
  }

  .nav {
    min-height: 66px;
  }

  .nav-links {
    display: none;
  }

  .nav-cta {
    min-height: 38px;
    padding: 0 14px;
    font-size: 13px;
  }

  .brand img {
    width: 36px;
    height: 36px;
  }

  .hero {
    min-height: auto;
    padding: 94px 0 48px;
  }

  .hero::before {
    background:
      linear-gradient(180deg, rgba(8, 8, 11, .6), rgba(8, 8, 11, .94) 70%),
      url("../images/movie-ballerina.webp") center top / cover no-repeat;
  }

  h1 {
    font-size: clamp(38px, 13vw, 56px);
  }

  .hero-actions {
    display: grid;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
  }

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

  .phone {
    width: min(100%, 310px);
  }

  section {
    padding: 58px 0;
  }

  .poster-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .poster,
  .poster img {
    min-height: 220px;
  }

  .poster:nth-child(even) {
    transform: none;
  }

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

  .conversion-inner {
    min-height: 300px;
  }

  .footer-row {
    display: block;
  }

  .footer-row div + div {
    margin-top: 10px;
  }

  .sticky-inner {
    padding: 8px;
  }

  .sticky-inner img {
    width: 44px;
    height: 44px;
  }

  .sticky-copy strong {
    font-size: 14px;
  }

  .sticky-btn {
    min-height: 42px;
    padding: 0 14px;
    font-size: 13px;
  }
}
