:root {
  --navy: #07111f;
  --navy-2: #0b1728;
  --graphite: #121a24;
  --panel: #101c2c;
  --panel-2: #172332;
  --line: #2a3646;
  --paper: #f1f1e8;
  --muted: #a7b0b9;
  --lime: #caff3d;
  --coral: #ff6f61;
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, Arial, Helvetica, sans-serif;
  --shadow: 0 28px 70px rgba(0, 0, 0, 0.36);
  --radius: 22px;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--navy);
  color: var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.13;
  background-image:
    repeating-linear-gradient(
      90deg,
      transparent 0,
      transparent calc(20% - 1px),
      rgba(255, 255, 255, 0.08) 20%
    ),
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size:
    100% 100%,
    100% 5px;
  z-index: 10;
}
a {
  color: inherit;
}
button,
input,
textarea,
select {
  font: inherit;
}
button,
a {
  -webkit-tap-highlight-color: transparent;
}
img,
svg {
  max-width: 100%;
}
h1,
h2,
h3,
h4,
p {
  margin-top: 0;
}
h1,
h2,
h3 {
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.04;
  letter-spacing: -0.035em;
}
h1 {
  font-size: clamp(3.35rem, 8vw, 7.8rem);
}
h2 {
  font-size: clamp(2.45rem, 5vw, 5rem);
}
h3 {
  font-size: clamp(1.45rem, 2.2vw, 2rem);
}
p {
  color: var(--muted);
}
.container {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}
.narrow {
  width: min(800px, calc(100% - 40px));
  margin-inline: auto;
}
.section {
  padding: 110px 0;
}
.section-tight {
  padding: 75px 0;
}
.section-header {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 40px;
  margin-bottom: 46px;
}
.section-header h2 {
  max-width: 800px;
  margin: 0;
}
.section-header p {
  max-width: 480px;
  margin: 0;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--lime);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.eyebrow::before {
  content: "";
  width: 22px;
  height: 2px;
  background: var(--coral);
}
.display-accent {
  color: var(--lime);
  font-style: italic;
}
.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  padding: 10px 16px;
  background: var(--lime);
  color: var(--navy);
  z-index: 100;
  transform: translateY(-150%);
}
.skip-link:focus {
  transform: none;
}
.site-header {
  height: 82px;
  position: sticky;
  top: 0;
  background: rgba(7, 17, 31, 0.84);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  z-index: 50;
}
.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 34px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-size: 1.28rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  white-space: nowrap;
}
.brand svg {
  width: 35px;
  color: var(--lime);
}
.brand > span > span {
  color: var(--lime);
}
.site-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 28px;
}
.site-nav a {
  position: relative;
  text-decoration: none;
  color: #d3d7d8;
  font-size: 0.88rem;
  font-weight: 700;
}
.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -9px;
  height: 2px;
  background: var(--coral);
  transition: 0.2s;
}
.site-nav a:hover::after,
.site-nav a:focus-visible::after,
.site-nav a.active::after {
  right: 0;
}
.header-cta {
  margin-left: 10px;
}
.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  min-height: 52px;
  padding: 13px 25px;
  border: 1px solid var(--lime);
  border-radius: 100px;
  background: var(--lime);
  color: var(--navy);
  font-weight: 850;
  text-decoration: none;
  cursor: pointer;
  transition:
    transform 0.2s,
    background 0.2s,
    color 0.2s,
    box-shadow 0.2s;
}
.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(202, 255, 61, 0.18);
}
.button:focus-visible,
.choice-button:focus-visible,
.menu-toggle:focus-visible,
.footer-consent:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 3px solid var(--coral);
  outline-offset: 3px;
}
.button-small {
  min-height: 42px;
  padding: 8px 18px;
  font-size: 0.82rem;
}
.button-ghost {
  background: transparent;
  color: var(--paper);
  border-color: #718093;
}
.button-coral {
  background: var(--coral);
  border-color: var(--coral);
}
.text-link {
  font-weight: 800;
  text-decoration-color: var(--coral);
  text-underline-offset: 5px;
}
.menu-toggle {
  display: none;
  margin-left: auto;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  background: transparent;
  border-radius: 50%;
  padding: 11px;
  color: #fff;
}
.menu-toggle span:not(.sr-only) {
  display: block;
  height: 2px;
  margin: 4px 0;
  background: currentColor;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.hero {
  position: relative;
  min-height: 790px;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: 80px 0;
}
.hero::after {
  content: "";
  position: absolute;
  width: 700px;
  height: 700px;
  right: -250px;
  top: -150px;
  border: 1px solid rgba(202, 255, 61, 0.18);
  border-radius: 50%;
  box-shadow:
    0 0 0 80px rgba(202, 255, 61, 0.025),
    0 0 0 160px rgba(255, 111, 97, 0.025);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  align-items: center;
  gap: 60px;
  position: relative;
  z-index: 1;
}
.hero h1 {
  margin: 17px 0 26px;
}
.hero-copy > p {
  font-size: 1.12rem;
  max-width: 600px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-top: 36px;
}
.micro-proof {
  display: flex;
  gap: 27px;
  margin-top: 55px;
}
.micro-proof span {
  color: var(--muted);
  font-size: 0.83rem;
}
.micro-proof strong {
  display: block;
  color: var(--paper);
  font-size: 1.15rem;
}
.hero-visual {
  position: relative;
}
.poster-frame {
  position: relative;
  aspect-ratio: 4/5.15;
  max-width: 490px;
  margin-left: auto;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 260px 260px 18px 18px;
  overflow: hidden;
  background:
    radial-gradient(
      circle at 35% 25%,
      rgba(255, 111, 97, 0.75) 0 2%,
      transparent 3%
    ),
    linear-gradient(
      125deg,
      transparent 0 40%,
      rgba(202, 255, 61, 0.12) 41% 42%,
      transparent 43%
    ),
    radial-gradient(ellipse at 40% 48%, #243d50 0 18%, transparent 19%),
    radial-gradient(ellipse at 47% 52%, #070b11 0 34%, transparent 35%),
    linear-gradient(155deg, #17364a, #090f1b 55%, #1e1018);
  box-shadow: var(--shadow);
}
.poster-frame::before {
  content: "";
  position: absolute;
  inset: 6% 8%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 220px 220px 6px 6px;
}
.poster-title {
  position: absolute;
  left: 9%;
  bottom: 9%;
  font-family: var(--serif);
  font-size: clamp(2.7rem, 5vw, 5rem);
  line-height: 0.78;
}
.poster-title small {
  display: block;
  margin-bottom: 13px;
  font-family: var(--sans);
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--lime);
}
.poster-badge {
  position: absolute;
  right: -22px;
  top: 22%;
  width: 112px;
  height: 112px;
  border-radius: 50%;
  background: var(--coral);
  color: var(--navy);
  display: grid;
  place-items: center;
  text-align: center;
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
  transform: rotate(9deg);
  box-shadow: var(--shadow);
}
.poster-index {
  position: absolute;
  right: 7%;
  bottom: 8%;
  font-size: 4rem;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.11);
}
.player-section {
  background: var(--paper);
  color: var(--navy);
}
.player-section p {
  color: #52606d;
}
.player-wrap {
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) minmax(280px, 0.7fr);
  gap: 26px;
}
.video-placeholder {
  position: relative;
  aspect-ratio: 16/9;
  border-radius: var(--radius);
  overflow: hidden;
  background:
    radial-gradient(
      circle at 75% 30%,
      rgba(255, 111, 97, 0.8) 0 1.5%,
      transparent 2%
    ),
    linear-gradient(135deg, rgba(202, 255, 61, 0.12), transparent 30%),
    radial-gradient(
      ellipse at 52% 54%,
      #263d4c 0 12%,
      #0b111a 13% 27%,
      transparent 28%
    ),
    linear-gradient(135deg, #101d2a, #070a10);
  box-shadow: 0 25px 55px rgba(7, 17, 31, 0.23);
}
.video-placeholder::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent 60%, rgba(0, 0, 0, 0.75));
}
.play-button {
  position: absolute;
  z-index: 2;
  left: 50%;
  top: 50%;
  width: 88px;
  height: 88px;
  transform: translate(-50%, -50%);
  border: 0;
  border-radius: 50%;
  background: var(--lime);
  color: var(--navy);
  cursor: pointer;
  box-shadow: 0 0 0 12px rgba(202, 255, 61, 0.12);
}
.play-button svg {
  width: 34px;
  margin: 5px 0 0 4px;
}
.play-button:hover {
  transform: translate(-50%, -50%) scale(1.06);
}
.video-label {
  position: absolute;
  z-index: 2;
  left: 24px;
  bottom: 20px;
  color: white;
}
.video-label strong {
  display: block;
  font-family: var(--serif);
  font-size: 1.6rem;
}
.video-label span {
  font-size: 0.8rem;
}
.episode-notes {
  border: 1px solid #cad0cf;
  border-radius: var(--radius);
  padding: 30px;
  display: flex;
  flex-direction: column;
}
.episode-notes h3 {
  font-size: 2rem;
}
.episode-notes .button {
  margin-top: auto;
}
.tag {
  display: inline-block;
  width: max-content;
  padding: 5px 10px;
  border-radius: 50px;
  background: var(--navy);
  color: var(--lime);
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.branch {
  position: relative;
  background: var(--graphite);
}
.branch-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 80px;
  align-items: center;
}
.branch-map {
  min-height: 510px;
  position: relative;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    radial-gradient(
      circle at 50% 20%,
      rgba(202, 255, 61, 0.12),
      transparent 25%
    ),
    linear-gradient(145deg, #142131, #090f18);
  overflow: hidden;
}
.branch-map svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.node {
  position: absolute;
  width: 98px;
  height: 98px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 10px;
  background: var(--navy);
  border: 2px solid var(--lime);
  font-size: 0.72rem;
  font-weight: 800;
  box-shadow: 0 10px 30px #000;
}
.node:nth-of-type(1) {
  top: 7%;
  left: 50%;
  transform: translateX(-50%);
}
.node:nth-of-type(2) {
  top: 43%;
  left: 14%;
  border-color: var(--coral);
}
.node:nth-of-type(3) {
  top: 43%;
  right: 14%;
  border-color: var(--coral);
}
.node:nth-of-type(4) {
  bottom: 5%;
  left: 29%;
}
.node:nth-of-type(5) {
  bottom: 5%;
  right: 29%;
}
.choice-box {
  margin-top: 30px;
  padding: 26px;
  border-left: 3px solid var(--coral);
  background: rgba(255, 255, 255, 0.035);
}
.choice-box strong {
  display: block;
  margin-bottom: 15px;
}
.choice-buttons {
  display: grid;
  gap: 10px;
}
.choice-button {
  padding: 15px 18px;
  text-align: left;
  background: transparent;
  color: var(--paper);
  border: 1px solid #435165;
  border-radius: 11px;
  cursor: pointer;
  transition: 0.2s;
}
.choice-button:hover,
.choice-button.selected {
  border-color: var(--lime);
  background: rgba(202, 255, 61, 0.08);
}
.choice-result {
  min-height: 26px;
  margin: 13px 0 0;
  color: var(--lime);
  font-size: 0.84rem;
}
.series-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.series-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  transition:
    transform 0.25s,
    border-color 0.25s;
}
.series-card:hover {
  transform: translateY(-6px);
  border-color: #536277;
}
.series-art {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
}
.series-art > span {
  position: absolute;
  left: 15px;
  top: 10px;
  font: 700 3.5rem var(--serif);
  color: rgba(255, 255, 255, 0.17);
}
.series-art svg {
  position: absolute;
  width: 42px;
  right: 17px;
  bottom: 17px;
  color: var(--lime);
}
.art-one {
  background:
    radial-gradient(circle at 58% 38%, #ff7569 0 2%, transparent 3%),
    linear-gradient(
      110deg,
      transparent 45%,
      rgba(202, 255, 61, 0.35) 46% 47%,
      transparent 48%
    ),
    radial-gradient(ellipse at 52% 61%, #05090f 0 22%, transparent 23%),
    linear-gradient(150deg, #213d51, #080b10);
}
.art-two {
  background:
    linear-gradient(
      70deg,
      transparent 48%,
      rgba(255, 255, 255, 0.23) 49% 50%,
      transparent 51%
    ),
    radial-gradient(circle at 35% 48%, #ff6f61 0 8%, transparent 9%),
    linear-gradient(150deg, #162635, #070b11);
}
.art-three {
  background:
    repeating-linear-gradient(
      90deg,
      transparent 0 18%,
      rgba(202, 255, 61, 0.08) 19% 20%
    ),
    radial-gradient(ellipse at 50% 70%, #ff6f61 0 5%, transparent 6%),
    linear-gradient(#10283d, #060a12);
}
.art-four {
  background:
    radial-gradient(
      circle at 27% 35%,
      rgba(202, 255, 61, 0.7) 0 1.5%,
      transparent 2%
    ),
    radial-gradient(ellipse at 50% 80%, #263f47 0 27%, transparent 28%),
    linear-gradient(#172339, #ff6f6140);
}
.art-five {
  background:
    linear-gradient(90deg, transparent 44%, #020509 45% 58%, transparent 59%),
    linear-gradient(160deg, #2e2331, #09111d);
}
.art-six {
  background:
    linear-gradient(
      35deg,
      transparent 0 40%,
      rgba(255, 111, 97, 0.55) 41% 43%,
      transparent 44%
    ),
    radial-gradient(circle at 60% 40%, #caff3d 0 2%, transparent 3%),
    linear-gradient(150deg, #183340, #080d17);
}
.art-seven {
  background:
    radial-gradient(circle at 65% 35%, #caff3d 0 10%, transparent 11%),
    linear-gradient(125deg, rgba(255, 111, 97, 0.8), transparent 43%),
    linear-gradient(#17283a, #07101d);
}
.art-eight {
  background:
    repeating-radial-gradient(
      ellipse at 50% 72%,
      transparent 0 20px,
      rgba(202, 255, 61, 0.12) 21px 22px
    ),
    linear-gradient(#182b3a, #05080c);
}
.series-card-body {
  padding: 20px;
}
.series-card-body .eyebrow {
  font-size: 0.6rem;
}
.series-card-body h3 {
  margin: 8px 0 12px;
}
.series-card-body p {
  font-size: 0.86rem;
  min-height: 70px;
}
.series-meta {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.73rem;
}
.series-meta a {
  color: var(--lime);
  font-weight: 800;
  text-decoration: none;
}
.genres-strip {
  background: var(--lime);
  color: var(--navy);
  overflow: hidden;
  padding: 25px 0;
}
.marquee {
  display: flex;
  gap: 25px;
  width: max-content;
  font: 700 clamp(1.4rem, 3vw, 2.4rem) var(--serif);
}
.marquee span::after {
  content: "/";
  padding-left: 25px;
  color: var(--coral);
}
.genre-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.genre-card {
  min-height: 260px;
  position: relative;
  padding: 27px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: linear-gradient(145deg, var(--panel-2), #09111c);
  text-decoration: none;
}
.genre-card::before {
  content: "";
  position: absolute;
  width: 150px;
  height: 150px;
  border: 1px solid currentColor;
  border-radius: 50%;
  right: -45px;
  top: -45px;
  opacity: 0.25;
}
.genre-card span {
  color: var(--coral);
  font-weight: 900;
}
.genre-card h3 {
  margin-top: 65px;
  font-size: 2.2rem;
}
.genre-card p {
  max-width: 310px;
}
.pricing {
  background: var(--paper);
  color: var(--navy);
}
.pricing p {
  color: #56616a;
}
.price-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}
.price-card {
  position: relative;
  padding: 45px;
  border: 1px solid #c2c9c7;
  border-radius: var(--radius);
  background: #fff;
}
.price-card.featured {
  background: var(--navy);
  color: var(--paper);
  border-color: var(--navy);
  transform: rotate(1deg);
}
.price-card.featured p {
  color: var(--muted);
}
.price-badge {
  position: absolute;
  right: 25px;
  top: 25px;
  background: var(--coral);
  padding: 6px 11px;
  border-radius: 40px;
  color: var(--navy);
  font-size: 0.7rem;
  font-weight: 900;
}
.price {
  font: 500 4rem var(--serif);
  letter-spacing: -0.05em;
}
.price small {
  font: 700 0.85rem var(--sans);
  letter-spacing: 0;
}
.features {
  list-style: none;
  padding: 0;
  margin: 27px 0;
}
.features li {
  padding: 9px 0;
  border-bottom: 1px solid rgba(120, 130, 135, 0.24);
}
.features li::before {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 12px;
  border-radius: 50%;
  background: var(--coral);
}
.reviews-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 24px;
}
.review-main {
  padding: 50px;
  border-radius: var(--radius);
  background: var(--panel);
  border: 1px solid var(--line);
}
.review-main blockquote {
  margin: 0 0 40px;
  font: italic clamp(1.8rem, 3.5vw, 3rem)/1.2 var(--serif);
}
.review-stack {
  display: grid;
  gap: 24px;
}
.review-small {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.review-author {
  display: flex;
  align-items: center;
  gap: 13px;
}
.avatar {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--coral);
  color: var(--navy);
  font-weight: 900;
}
.stars {
  color: var(--lime);
  letter-spacing: 4px;
}
.faq-list {
  border-top: 1px solid var(--line);
}
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 25px 0;
  border: 0;
  background: transparent;
  color: var(--paper);
  text-align: left;
  font: 500 1.35rem var(--serif);
  cursor: pointer;
}
.faq-question span:last-child {
  color: var(--coral);
  font: 400 2rem var(--sans);
  transition: 0.2s;
}
.faq-question[aria-expanded="true"] span:last-child {
  transform: rotate(45deg);
}
.faq-answer {
  max-width: 780px;
  padding: 0 0 25px;
}
.cta-band {
  padding: 70px 0;
  background: var(--coral);
  color: var(--navy);
}
.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.cta-inner h2 {
  margin: 0;
  max-width: 800px;
}
.cta-inner .button {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--paper);
  white-space: nowrap;
}
.page-hero {
  position: relative;
  padding: 125px 0 90px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}
.page-hero::after {
  content: attr(data-index);
  position: absolute;
  right: 3%;
  top: 0;
  font: 700 17rem/1 var(--serif);
  color: rgba(255, 255, 255, 0.035);
}
.page-hero h1 {
  max-width: 1000px;
  margin: 16px 0 24px;
  font-size: clamp(3.5rem, 7vw, 7rem);
}
.page-hero p {
  font-size: 1.15rem;
  max-width: 690px;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.stat {
  padding: 34px;
  background: var(--navy);
}
.stat strong {
  display: block;
  font: 500 3rem var(--serif);
  color: var(--lime);
}
.filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 35px;
}
.filter-button {
  padding: 9px 16px;
  border: 1px solid var(--line);
  border-radius: 50px;
  background: transparent;
  color: var(--paper);
  cursor: pointer;
}
.filter-button.active,
.filter-button:hover {
  background: var(--coral);
  border-color: var(--coral);
  color: var(--navy);
}
.steps {
  counter-reset: steps;
  display: grid;
  gap: 0;
}
.step {
  counter-increment: steps;
  display: grid;
  grid-template-columns: 120px 1fr 1fr;
  gap: 40px;
  padding: 55px 0;
  border-top: 1px solid var(--line);
  align-items: center;
}
.step::before {
  content: "0" counter(steps);
  font: 500 4rem var(--serif);
  color: var(--coral);
}
.step-visual {
  min-height: 230px;
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 50% 50%, var(--coral) 0 5%, transparent 6%),
    repeating-radial-gradient(
      circle at 50% 50%,
      transparent 0 28px,
      rgba(202, 255, 61, 0.16) 29px 30px
    ),
    linear-gradient(145deg, var(--panel-2), #080e17);
}
.content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 65px;
  align-items: start;
}
.content-card {
  padding: 35px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.value-card {
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.value-card b {
  display: block;
  margin-bottom: 30px;
  color: var(--coral);
  font-size: 0.78rem;
}
.contact-grid {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 50px;
}
.contact-details {
  display: grid;
  gap: 18px;
}
.contact-detail {
  padding: 25px;
  border: 1px solid var(--line);
  border-radius: 16px;
}
.contact-detail a {
  color: var(--lime);
}
.form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.form-group {
  display: grid;
  gap: 7px;
}
.form-group.full {
  grid-column: 1/-1;
}
.form label {
  font-weight: 800;
  font-size: 0.82rem;
}
.form input,
.form textarea,
.form select {
  width: 100%;
  border: 1px solid #445064;
  border-radius: 11px;
  background: #0a1422;
  color: var(--paper);
  padding: 14px;
}
.form textarea {
  min-height: 150px;
  resize: vertical;
}
.form-status {
  color: var(--lime);
}
.legal {
  padding: 90px 0;
}
.legal h1 {
  font-size: clamp(3rem, 6vw, 5rem);
}
.legal h2 {
  margin-top: 55px;
  font-size: 2.1rem;
}
.legal h3 {
  margin-top: 35px;
  font-size: 1.4rem;
}
.legal p,
.legal li {
  color: #b7bec5;
}
.legal a {
  color: var(--lime);
}
.legal-meta {
  padding: 18px 0;
  margin-bottom: 40px;
  border-block: 1px solid var(--line);
  color: var(--muted);
}
.site-footer {
  padding: 75px 0 25px;
  background: #040a12;
  border-top: 1px solid var(--line);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr repeat(3, 1fr);
  gap: 55px;
}
.footer-grid h2 {
  font: 800 0.75rem var(--sans);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--lime);
}
.footer-grid a,
.footer-consent {
  display: block;
  width: max-content;
  margin: 9px 0;
  color: var(--muted);
  text-decoration: none;
  font-size: 0.86rem;
}
.footer-grid a:hover,
.footer-consent:hover {
  color: var(--paper);
}
.footer-grid > div:first-child p {
  max-width: 330px;
  margin-top: 20px;
}
.footer-consent {
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 55px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  color: #75808c;
  font-size: 0.72rem;
}
.cookie-banner {
  position: fixed;
  z-index: 90;
  left: 20px;
  right: 20px;
  bottom: 20px;
  max-width: 1120px;
  margin: auto;
  padding: 22px 24px;
  display: flex;
  align-items: center;
  gap: 30px;
  background: #f5f3e9;
  color: var(--navy);
  border-radius: 16px;
  box-shadow: 0 25px 80px #000;
}
.cookie-banner[hidden] {
  display: none;
}
.cookie-copy {
  flex: 1;
}
.cookie-copy strong {
  font: 500 1.4rem var(--serif);
}
.cookie-copy p {
  margin: 4px 0;
  color: #505b64;
  font-size: 0.82rem;
}
.cookie-copy a {
  font-size: 0.76rem;
}
.cookie-actions {
  display: flex;
  gap: 10px;
}
.cookie-actions .button-ghost {
  color: var(--navy);
  border-color: #81909b;
}
.notice {
  padding: 16px 20px;
  border-left: 3px solid var(--lime);
  background: rgba(202, 255, 61, 0.07);
}
@media (max-width: 1050px) {
  .header-cta {
    display: none;
  }
  .site-nav {
    gap: 20px;
  }
  .hero-grid {
    gap: 35px;
  }
  .series-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1.4fr repeat(3, 1fr);
    gap: 30px;
  }
}
@media (max-width: 820px) {
  .section {
    padding: 80px 0;
  }
  .menu-toggle {
    display: block;
  }
  .site-nav {
    position: absolute;
    top: 82px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 25px 20px;
    background: var(--navy);
    border-bottom: 1px solid var(--line);
  }
  .site-nav.open {
    display: flex;
  }
  .site-nav a {
    padding: 9px;
  }
  .hero {
    padding: 65px 0;
  }
  .hero-grid,
  .branch-grid,
  .player-wrap,
  .reviews-grid,
  .content-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .hero-copy {
    text-align: center;
  }
  .hero-copy > p {
    margin-inline: auto;
  }
  .hero-actions,
  .micro-proof {
    justify-content: center;
  }
  .hero-visual {
    max-width: 490px;
    margin: 20px auto 0;
  }
  .poster-frame {
    margin: 0;
  }
  .branch-grid {
    gap: 45px;
  }
  .genre-grid,
  .values-grid {
    grid-template-columns: 1fr 1fr;
  }
  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }
  .step {
    grid-template-columns: 90px 1fr;
  }
  .step-visual {
    grid-column: 2;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .cookie-banner {
    align-items: stretch;
    flex-direction: column;
    gap: 15px;
  }
  .cookie-actions {
    justify-content: flex-end;
  }
}
@media (max-width: 560px) {
  .container,
  .narrow {
    width: min(100% - 28px, 1180px);
  }
  h1 {
    font-size: 3.3rem;
  }
  .section-header,
  .cta-inner {
    display: block;
  }
  .section-header p {
    margin-top: 20px;
  }
  .cta-inner .button {
    margin-top: 25px;
  }
  .hero {
    min-height: auto;
  }
  .hero-grid {
    display: flex;
    flex-direction: column;
  }
  .hero-copy {
    order: 1;
  }
  .hero-visual {
    order: 2;
  }
  .micro-proof {
    gap: 14px;
  }
  .micro-proof span {
    font-size: 0.7rem;
  }
  .poster-badge {
    right: -4px;
    width: 90px;
    height: 90px;
  }
  .series-grid,
  .genre-grid,
  .price-grid,
  .values-grid,
  .form {
    grid-template-columns: 1fr;
  }
  .series-card-body p {
    min-height: 0;
  }
  .price-card {
    padding: 32px;
  }
  .price-card.featured {
    transform: none;
  }
  .stats-grid {
    grid-template-columns: 1fr;
  }
  .step {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  .step-visual {
    grid-column: 1;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    display: block;
  }
  .footer-bottom span {
    display: block;
    margin-top: 7px;
  }
  .cookie-banner {
    left: 8px;
    right: 8px;
    bottom: 8px;
    padding: 18px;
  }
  .cookie-actions {
    display: grid;
  }
  .page-hero {
    padding: 90px 0 65px;
  }
  .page-hero::after {
    font-size: 9rem;
  }
  .branch-map {
    min-height: 430px;
  }
  .node {
    width: 82px;
    height: 82px;
  }
  .node:nth-of-type(2) {
    left: 5%;
  }
  .node:nth-of-type(3) {
    right: 5%;
  }
  .node:nth-of-type(4) {
    left: 17%;
  }
  .node:nth-of-type(5) {
    right: 17%;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
