:root {
  --movie-bg: #000000;
  --movie-bg-soft: #050000;
  --movie-surface: #0d0d0d;
  --movie-surface-2: #121212;
  --movie-surface-red: #170303;
  --movie-red: #d80000;
  --movie-red-hot: #ff2d24;
  --movie-red-dark: #8c1007;
  --movie-line: #2c1010;
  --movie-line-soft: rgba(255, 255, 255, 0.12);
  --movie-text: #ffffff;
  --movie-text-soft: rgba(255, 255, 255, 0.72);
  --movie-text-muted: rgba(255, 255, 255, 0.52);
  --movie-amber: #ffd166;
  --movie-blue: #8bd9ff;
  --movie-green: #9cffc0;
  --movie-shadow: 0 18px 60px rgba(0, 0, 0, 0.42);
  --movie-focus: 0 0 0 3px rgba(255, 255, 255, 0.92), 0 0 0 6px rgba(216, 0, 0, 0.7);
}

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

html {
  scroll-behavior: smooth;
}

body.movie-page {
  min-height: 100vh;
  margin: 0;
  background:
    linear-gradient(180deg, rgba(21, 0, 0, 0.9) 0%, rgba(8, 6, 6, 0.82) 28%, #000000 72%),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.018) 0, rgba(255, 255, 255, 0.018) 1px, transparent 1px, transparent 3px),
    #000000;
  color: var(--movie-text);
  font-family: "Poppins", "Inter", "Segoe UI", Arial, Helvetica, sans-serif;
  overflow-x: hidden;
}

body.movie-page::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(115deg, rgba(216, 0, 0, 0.18) 0%, transparent 32%),
    linear-gradient(245deg, rgba(255, 45, 36, 0.1) 0%, transparent 28%),
    linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.7) 78%);
}

body.movie-page a {
  color: var(--movie-red-hot);
  transition: color 180ms ease, transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

body.movie-page a:hover {
  color: #ffffff;
  text-decoration: none;
}

.movie-container {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.movie-nav.navbar {
  position: sticky;
  top: 0;
  z-index: 20;
  padding: 12px 0;
  background: rgba(0, 0, 0, 0.82) !important;
  border-bottom: 1px solid rgba(216, 0, 0, 0.28);
  box-shadow: 0 14px 38px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(18px);
}

.movie-nav .navbar-brand,
.movie-nav .nav-link {
  color: var(--movie-text) !important;
}

.movie-nav .navbar-brand {
  gap: 10px;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-icon {
  display: inline-grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 8px;
  background: linear-gradient(180deg, #181818 0%, #070707 100%);
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: inset 0 0 0 1px rgba(216, 0, 0, 0.28), 0 10px 28px rgba(216, 0, 0, 0.16);
}

.brand-icon img {
  width: 31px;
  height: 24px;
  object-fit: contain;
}

.movie-nav .nav-link {
  min-height: 40px;
  margin-left: 4px;
  padding: 9px 12px !important;
  border-radius: 8px;
  color: var(--movie-text-soft) !important;
  font-size: 0.95rem;
}

.movie-nav .nav-link:hover,
.movie-nav .nav-link.active {
  color: #ffffff !important;
  background: rgba(216, 0, 0, 0.18);
}

.movie-nav .navbar-toggler {
  border-color: rgba(255, 255, 255, 0.18);
  border-radius: 8px;
}

.page-hero {
  position: relative;
  min-height: 520px;
  display: grid;
  align-items: center;
  padding: 86px 0 72px;
  overflow: hidden;
  border-bottom: 1px solid rgba(216, 0, 0, 0.28);
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 36%;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.9) 100%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 860px;
}

.hero-lockup {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}

.hero-logo-plate {
  display: inline-grid;
  width: 88px;
  height: 88px;
  place-items: center;
  border-radius: 8px;
  background: linear-gradient(180deg, #181818 0%, #070707 100%);
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: inset 0 0 0 1px rgba(216, 0, 0, 0.32), 0 24px 60px rgba(0, 0, 0, 0.42);
}

.hero-logo-plate img {
  width: 72px;
  height: 54px;
  object-fit: contain;
}

.eyebrow,
.movie-chip {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 5px 10px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  color: var(--movie-text-soft);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.eyebrow::before,
.movie-chip.is-red::before {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 8px;
  border-radius: 50%;
  background: var(--movie-red);
  box-shadow: 0 0 14px rgba(216, 0, 0, 0.8);
}

.movie-chip.is-amber::before {
  background: var(--movie-amber);
  box-shadow: 0 0 14px rgba(255, 209, 102, 0.55);
}

.page-hero h1 {
  max-width: 780px;
  margin: 0;
  color: #ffffff;
  font-size: 3rem;
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: 0;
}

.hero-accent {
  width: 184px;
  height: 2px;
  margin: 22px 0 24px;
  border-radius: 2px;
  background: linear-gradient(90deg, transparent, var(--movie-red), transparent);
}

.hero-copy {
  max-width: 710px;
  margin: 0 0 28px;
  color: var(--movie-text-soft);
  font-size: 1.08rem;
  line-height: 1.72;
}

.hero-actions,
.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.btn-movie {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 11px 18px;
  border-radius: 8px;
  border: 1px solid transparent;
  color: #ffffff !important;
  font-weight: 800;
  line-height: 1.1;
}

.btn-movie:hover,
.btn-movie:focus {
  color: #ffffff !important;
  transform: translateY(-1px);
  text-decoration: none;
}

.btn-movie-primary {
  background: linear-gradient(180deg, var(--movie-red-hot), var(--movie-red-dark));
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: 0 12px 32px rgba(216, 0, 0, 0.32);
}

.btn-movie-secondary {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.18);
}

.btn-movie-ghost {
  background: rgba(0, 0, 0, 0.22);
  border-color: rgba(216, 0, 0, 0.5);
}

.hero-stats,
.feature-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 34px;
}

.stat-pill,
.feature-pill {
  min-height: 78px;
  padding: 14px 16px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(180deg, rgba(18, 18, 18, 0.92), rgba(5, 0, 0, 0.88));
  box-shadow: var(--movie-shadow);
}

.stat-pill strong,
.feature-pill strong {
  display: block;
  color: #ffffff;
  font-size: 1rem;
}

.stat-pill span,
.feature-pill span {
  display: block;
  margin-top: 4px;
  color: var(--movie-text-muted);
  font-size: 0.86rem;
}

.movie-band {
  position: relative;
  padding: 56px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.movie-band[id] {
  scroll-margin-top: 124px;
}

.movie-band.is-raised {
  background: linear-gradient(180deg, rgba(7, 0, 0, 0.72), rgba(0, 0, 0, 0.86));
}

.section-heading {
  max-width: 820px;
  margin-bottom: 24px;
}

.section-heading h2 {
  margin: 0 0 10px;
  color: #ffffff;
  font-size: 1.8rem;
  font-weight: 900;
  letter-spacing: 0;
}

.section-heading p {
  margin: 0;
  color: var(--movie-text-soft);
  line-height: 1.65;
}

.plan-grid,
.info-grid,
.download-grid,
.payment-grid,
.steps-grid {
  display: grid;
  gap: 14px;
}

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

.info-grid,
.payment-grid,
.steps-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.download-grid {
  grid-template-columns: 1.1fr 0.9fr;
}

.install-guide-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.55fr);
  gap: 24px;
  align-items: start;
}

.install-guide-layout > .reveal:first-child {
  max-width: 860px;
}

.install-steps-gallery {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 26px;
}

.install-step-card {
  position: relative;
  min-width: 0;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid rgba(216, 0, 0, 0.28);
  background:
    linear-gradient(135deg, rgba(216, 0, 0, 0.13), transparent 42%),
    rgba(5, 0, 0, 0.72);
  box-shadow: var(--movie-shadow), 0 0 34px rgba(216, 0, 0, 0.08);
}

.install-step-card picture,
.install-step-card img {
  display: block;
  width: 100%;
}

.install-step-card img {
  height: auto;
  transition: transform 220ms ease, filter 220ms ease;
}

.install-step-card:hover img,
.install-step-card:focus-visible img {
  filter: saturate(1.08) brightness(1.04);
  transform: scale(1.018);
}

.plan-card,
.info-card,
.payment-card,
.step-card,
.media-frame,
.notice-panel {
  border-radius: 8px;
  border: 1px solid var(--movie-line-soft);
  background: linear-gradient(180deg, rgba(18, 18, 18, 0.94), rgba(5, 0, 0, 0.9));
  box-shadow: var(--movie-shadow);
}

.plan-card,
.info-card,
.payment-card,
.step-card,
.notice-panel {
  padding: 18px;
}

.plan-card {
  position: relative;
  display: flex;
  min-height: 300px;
  flex-direction: column;
  overflow: hidden;
}

.plan-card::before,
.info-card::before,
.payment-card::before,
.step-card::before {
  content: "";
  display: block;
  width: 74px;
  height: 2px;
  margin-bottom: 18px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--movie-red), transparent);
}

.plan-card.featured {
  border-color: rgba(216, 0, 0, 0.75);
  background: linear-gradient(180deg, rgba(23, 3, 3, 0.98), rgba(7, 0, 0, 0.98));
}

.plan-card h3,
.info-card h3,
.payment-card h3,
.step-card h3 {
  margin: 0 0 8px;
  color: #ffffff;
  font-size: 1.05rem;
  font-weight: 850;
}

.plan-price {
  margin-bottom: 14px;
  color: #ffffff;
  font-size: 1.6rem;
  font-weight: 950;
  line-height: 1.1;
}

.plan-price-old {
  display: block;
  margin-bottom: 4px;
  color: var(--movie-text-muted);
  font-size: 0.96rem;
  font-weight: 800;
  text-decoration-color: rgba(255, 255, 255, 0.46);
}

.plan-price-new {
  display: block;
  color: #ffffff;
  font-size: 1.78rem;
  font-weight: 950;
  line-height: 1;
}

.plan-price small {
  display: block;
  margin-top: 5px;
  color: var(--movie-text-muted);
  font-size: 0.82rem;
  font-weight: 700;
}

.plan-discount-badge {
  align-self: flex-start;
  margin: 0 0 12px;
  border-color: rgba(216, 0, 0, 0.54);
  background: rgba(216, 0, 0, 0.16);
  color: #ffffff;
}

.plan-card.has-promo-discount {
  border-color: rgba(216, 0, 0, 0.66);
}

.plan-promo-note {
  margin: -2px 0 12px;
  color: #ffffff;
  font-size: 0.92rem;
  font-weight: 850;
}

.plan-card p,
.info-card p,
.payment-card p,
.step-card p,
.notice-panel p {
  color: var(--movie-text-soft);
  line-height: 1.55;
}

.plan-card p {
  flex: 1;
}

.plan-card .btn-movie {
  width: 100%;
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.badge-soft {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 5px 10px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  color: var(--movie-text-soft);
  font-size: 0.82rem;
  font-weight: 700;
}

.notice-panel {
  background: linear-gradient(180deg, rgba(23, 3, 3, 0.95), rgba(5, 0, 0, 0.92));
}

.notice-panel.is-warning {
  border-color: rgba(255, 209, 102, 0.35);
}

.notice-panel.is-info {
  border-color: rgba(139, 217, 255, 0.32);
}

.notice-panel.is-success {
  border-color: rgba(156, 255, 192, 0.32);
}

.notice-panel strong,
.payment-value {
  color: #ffffff;
}

.payment-value {
  display: block;
  margin-top: 8px;
  font-size: 1.25rem;
  font-weight: 900;
}

.media-frame {
  overflow: hidden;
  background: #070707;
}

.brand-showcase {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.8fr);
  gap: 18px;
  align-items: center;
  padding: 18px;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid rgba(216, 0, 0, 0.34);
  background:
    linear-gradient(135deg, rgba(216, 0, 0, 0.16), transparent 36%),
    linear-gradient(180deg, rgba(18, 18, 18, 0.96), rgba(5, 0, 0, 0.92));
  box-shadow: var(--movie-shadow), 0 0 42px rgba(216, 0, 0, 0.12);
}

.brand-showcase::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(216, 0, 0, 0.18), transparent 42%);
}

.brand-showcase-copy,
.brand-showcase-media {
  position: relative;
  z-index: 1;
}

.brand-showcase-copy {
  padding: 10px;
}

.brand-showcase-copy h2 {
  margin: 12px 0 10px;
  color: #ffffff;
  font-size: 1.7rem;
  font-weight: 900;
}

.brand-showcase-copy p {
  margin: 0;
  color: var(--movie-text-soft);
  line-height: 1.62;
}

.brand-showcase-media img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 18px 52px rgba(0, 0, 0, 0.42);
}

.brand-showcase-media picture {
  display: block;
  width: 100%;
}

.brand-showcase-media.is-descriptive {
  display: grid;
  min-height: 280px;
  place-items: center;
  overflow: hidden;
  padding: 10px;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(216, 0, 0, 0.18), transparent 44%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.48), rgba(0, 0, 0, 0.84));
}

.brand-showcase-media.is-descriptive::after {
  content: "";
  position: absolute;
  inset: 10px;
  pointer-events: none;
  border-radius: 8px;
  box-shadow: inset 0 0 42px rgba(216, 0, 0, 0.18);
}

.brand-showcase-media.is-descriptive picture,
.brand-showcase-media.is-descriptive img {
  position: relative;
  z-index: 1;
}

.brand-showcase-media.is-descriptive img {
  max-height: 420px;
  object-fit: contain;
  filter: saturate(1.08) contrast(1.05) brightness(0.95);
}

.brand-showcase.is-premium-poster {
  grid-template-columns: 1fr;
  gap: 22px;
}

.brand-showcase.is-premium-poster .brand-showcase-copy {
  max-width: 860px;
}

.brand-showcase.is-premium-poster .brand-showcase-media.is-descriptive {
  width: min(100%, 900px);
  min-height: auto;
  justify-self: center;
  padding: 12px;
}

.brand-showcase.is-premium-poster .brand-showcase-media.is-descriptive img {
  max-height: none;
}

.media-frame img,
.media-frame video {
  display: block;
  width: 100%;
  height: auto;
}

.media-frame img {
  object-fit: cover;
}

.video-frame {
  aspect-ratio: 16 / 9;
}

.video-frame video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-frame.is-portrait {
  justify-self: center;
  width: min(100%, 420px);
  aspect-ratio: 9 / 16;
  padding: 10px;
  background:
    linear-gradient(180deg, rgba(18, 18, 18, 0.98), rgba(5, 0, 0, 0.96)),
    #050000;
}

.video-frame.is-portrait video {
  border-radius: 8px;
  background: #000000;
  object-fit: contain;
}

.promo-band[hidden] {
  display: none !important;
}

.promo-card {
  padding: 22px;
  border-radius: 8px;
  border: 1px solid rgba(216, 0, 0, 0.52);
  background:
    linear-gradient(135deg, rgba(216, 0, 0, 0.2), transparent 34%),
    linear-gradient(180deg, rgba(23, 3, 3, 0.98), rgba(5, 0, 0, 0.96));
  box-shadow: var(--movie-shadow), 0 0 52px rgba(216, 0, 0, 0.15);
}

.promo-banner {
  overflow: hidden;
  margin: 0 0 18px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(0, 0, 0, 0.36);
}

.promo-banner img {
  display: block;
  width: 100%;
  max-height: 420px;
  object-fit: contain;
}

.promo-card h2 {
  margin: 10px 0 8px;
  color: #ffffff;
  font-size: 1.8rem;
  font-weight: 950;
}

.promo-card p {
  color: var(--movie-text-soft);
}

.promo-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
}

.promo-countdown {
  min-width: 190px;
  padding: 16px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(0, 0, 0, 0.32);
  color: #ffffff;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 1.35rem;
  font-weight: 900;
  text-align: center;
}

.promo-code-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-top: 16px;
}

.promo-code {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  padding: 8px 13px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(0, 0, 0, 0.36);
  color: #ffffff;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-weight: 950;
}

.compat-list,
.check-list {
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.compat-list li,
.check-list li {
  position: relative;
  margin-top: 10px;
  padding-left: 18px;
  color: var(--movie-text-soft);
}

.compat-list li::before,
.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 7px;
  height: 7px;
  border-radius: 2px;
  background: var(--movie-red);
}

.appgallery-panel {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: center;
}

.movie-footer {
  padding: 34px 0;
  color: var(--movie-text-muted);
  background: #000000;
}

.movie-footer a {
  color: var(--movie-text-soft);
}

.article-shell {
  max-width: 920px;
}

.article-card {
  padding: 24px;
  border-radius: 8px;
  border: 1px solid var(--movie-line-soft);
  background: linear-gradient(180deg, rgba(18, 18, 18, 0.94), rgba(5, 0, 0, 0.9));
  box-shadow: var(--movie-shadow);
}

.article-card + .article-card,
.content-stack > * + * {
  margin-top: 18px;
}

.article-card h2,
.article-card h3,
.article-card h4 {
  color: #ffffff;
  font-weight: 850;
  letter-spacing: 0;
}

.article-card p,
.article-card li {
  color: var(--movie-text-soft);
  line-height: 1.72;
}

.article-card strong {
  color: #ffffff;
}

.article-card a:not(.btn-movie) {
  font-weight: 750;
}

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

.image-gallery.is-phone {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.image-gallery a,
.image-gallery figure {
  display: block;
  margin: 0;
}

.image-gallery img,
.article-card img,
.article-card video {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: #070707;
}

.image-gallery.is-phone img {
  display: block;
  max-height: 680px;
  margin: 0 auto;
  object-fit: contain;
}

.code-panel {
  display: grid;
  gap: 10px;
  padding: 18px;
  border-radius: 8px;
  border: 1px solid rgba(216, 0, 0, 0.38);
  background: rgba(216, 0, 0, 0.1);
}

.code-panel code,
.inline-code {
  display: inline-flex;
  padding: 3px 7px;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(0, 0, 0, 0.32);
  color: #ffffff;
  font-weight: 800;
}

.movie-form label {
  color: var(--movie-text-soft);
  font-weight: 750;
}

.movie-form .form-control,
.movie-form .custom-select,
.movie-form .form-select,
.movie-form textarea,
.movie-form select,
.movie-form input {
  min-height: 44px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(0, 0, 0, 0.32);
  color: #ffffff;
}

.movie-form textarea.form-control {
  min-height: 112px;
}

.movie-form .form-control::placeholder,
.movie-form input::placeholder,
.movie-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.42);
}

.movie-form .form-control:focus,
.movie-form .custom-select:focus,
.movie-form .form-select:focus,
.movie-form textarea:focus,
.movie-form select:focus,
.movie-form input:focus {
  border-color: rgba(216, 0, 0, 0.75);
  background: rgba(0, 0, 0, 0.46);
  box-shadow: var(--movie-focus);
  color: #ffffff;
}

.redirect-shell {
  display: grid;
  min-height: 100vh;
  place-items: center;
  padding: 24px;
}

.redirect-card {
  width: min(920px, 100%);
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid var(--movie-line-soft);
  background: linear-gradient(180deg, rgba(18, 18, 18, 0.96), rgba(5, 0, 0, 0.94));
  box-shadow: var(--movie-shadow);
}

.redirect-media {
  display: grid;
  grid-template-columns: 190px 1fr;
  gap: 22px;
  padding: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.redirect-media img {
  width: 100%;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.redirect-action {
  padding: 24px;
  text-align: center;
}

.social-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.license-list {
  display: grid;
  gap: 14px;
}

.license-item {
  padding: 18px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
}

.license-item p:last-child,
.notice-panel p:last-child,
.article-card p:last-child {
  margin-bottom: 0;
}

.reveal {
  opacity: 1;
  transform: none;
}

.js-ready .reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 600ms ease, transform 600ms ease;
}

.js-ready .reveal.is-visible {
  opacity: 1;
  transform: none;
}

.btn-movie:focus-visible,
.movie-nav .nav-link:focus-visible,
.navbar-toggler:focus-visible,
.brand-showcase:focus-visible,
.promo-card:focus-visible,
.plan-card:focus-visible,
.info-card:focus-visible,
.payment-card:focus-visible,
.step-card:focus-visible,
.install-step-card:focus-visible {
  outline: none;
  box-shadow: var(--movie-focus);
}

.plan-card,
.info-card,
.payment-card,
.step-card,
.install-step-card {
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.plan-card:hover,
.info-card:hover,
.payment-card:hover,
.step-card:hover,
.install-step-card:hover,
.plan-card:focus-visible,
.info-card:focus-visible,
.payment-card:focus-visible,
.step-card:focus-visible,
.install-step-card:focus-visible {
  transform: translateY(-3px);
  border-color: rgba(216, 0, 0, 0.62);
}

@media (min-width: 1400px) {
  .movie-container {
    width: min(1280px, calc(100% - 80px));
  }

  .page-hero {
    min-height: 620px;
  }

  .page-hero h1 {
    font-size: 3.55rem;
  }
}

@media (max-width: 991.98px) {
  .movie-nav .navbar-collapse {
    padding-top: 12px;
  }

  .movie-nav .nav-link {
    margin: 4px 0;
  }

  .page-hero {
    min-height: auto;
    padding: 68px 0 52px;
  }

  .page-hero h1 {
    font-size: 2.35rem;
  }

  .hero-stats,
  .feature-strip,
  .plan-grid,
  .info-grid,
  .payment-grid,
  .steps-grid,
  .download-grid,
  .install-guide-layout,
  .install-steps-gallery {
    grid-template-columns: 1fr 1fr;
  }

  .appgallery-panel {
    grid-template-columns: 1fr;
  }

  .brand-showcase,
  .promo-layout {
    grid-template-columns: 1fr 1fr;
  }

  .brand-showcase-media.is-descriptive img {
    max-height: 360px;
  }
}

@media (max-width: 575.98px) {
  .movie-container {
    width: min(100% - 24px, 1180px);
  }

  .page-hero {
    padding: 48px 0 42px;
  }

  .hero-logo-plate {
    width: 76px;
    height: 76px;
  }

  .hero-logo-plate img {
    width: 62px;
    height: 46px;
  }

  .page-hero h1 {
    font-size: 2rem;
  }

  .hero-copy {
    font-size: 1rem;
  }

  .hero-actions,
  .button-row {
    align-items: stretch;
    flex-direction: column;
  }

  .btn-movie {
    width: 100%;
  }

  .hero-stats,
  .feature-strip,
  .plan-grid,
  .info-grid,
  .payment-grid,
  .steps-grid,
  .download-grid,
  .install-guide-layout,
  .brand-showcase,
  .promo-layout {
    grid-template-columns: 1fr;
  }

  .install-steps-gallery {
    display: flex;
    gap: 14px;
    margin-inline: -12px;
    overflow-x: auto;
    padding: 0 12px 8px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  .install-step-card {
    flex: 0 0 min(82vw, 360px);
    scroll-snap-align: center;
  }

  .brand-showcase-media.is-descriptive {
    min-height: auto;
  }

  .brand-showcase.is-premium-poster {
    padding: 8px;
  }

  .brand-showcase.is-premium-poster .brand-showcase-copy {
    padding: 6px;
  }

  .brand-showcase.is-premium-poster .brand-showcase-media.is-descriptive {
    padding: 4px;
  }

  .promo-countdown {
    min-width: 0;
    width: 100%;
  }

  .movie-band {
    padding: 42px 0;
  }

  .section-heading h2 {
    font-size: 1.45rem;
  }

  .article-card {
    padding: 18px;
  }

  .image-gallery,
  .image-gallery.is-phone {
    grid-template-columns: 1fr;
  }

  .redirect-shell {
    padding: 12px;
  }

  .redirect-media {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .redirect-media img {
    max-width: 220px;
    margin: 0 auto;
  }
}

@media (hover: none) {
  .plan-card:hover,
  .info-card:hover,
  .payment-card:hover,
  .step-card:hover,
  .install-step-card:hover,
  .btn-movie:hover {
    transform: none;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }
}
