:root {
  --navy: #08111f;
  --navy-2: #0d1a2b;
  --charcoal: #101318;
  --panel: #151b24;
  --panel-2: #1c2430;
  --line: rgba(255, 255, 255, 0.12);
  --text: #f7f9fc;
  --muted: #b8c0cc;
  --soft: #e8edf4;
  --ink: #111827;
  --gold: #f2ad3f;
  --gold-2: #ffd27a;
  --success: #3ddc97;
  --danger: #ff6b6b;
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.34);
  --radius: 8px;
  --space-section: clamp(64px, 8vw, 92px);
  --space-gutter: clamp(16px, 4vw, 40px);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

body {
  margin: 0;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  background: var(--navy);
  color: var(--text);
  font-family: Inter, Arial, sans-serif;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
  overflow-wrap: anywhere;
}

img {
  max-width: 100%;
  height: auto;
}

button,
input,
select,
textarea {
  font: inherit;
  font-size: 16px;
}

:focus-visible {
  outline: 3px solid rgba(242, 173, 63, 0.72);
  outline-offset: 4px;
}

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

.section-pad {
  padding: var(--space-section) 0;
}

.site-header {
  position: fixed;
  z-index: 50;
  top: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 22px;
  align-items: center;
  min-height: 78px;
  padding: 0 28px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(8, 17, 31, 0.82);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
  transition: min-height 180ms ease, background 180ms ease;
}

.site-header.is-compact {
  min-height: 64px;
  background: rgba(8, 17, 31, 0.96);
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  width: clamp(142px, 13vw, 188px);
  min-width: 0;
  line-height: 0;
}

.brand img,
.logo img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: clamp(10px, 1.5vw, 20px);
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.site-nav a {
  padding: 10px 0;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: #fff;
}

.header-cta,
.btn,
.whatsapp-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 900;
  line-height: 1.15;
  text-align: center;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease, color 160ms ease;
}

.btn:disabled,
button:disabled {
  cursor: not-allowed;
  opacity: 0.72;
  transform: none;
}

.header-cta,
.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  color: #111827;
  box-shadow: 0 14px 32px rgba(242, 173, 63, 0.22);
}

.btn-secondary {
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
}

.btn-full {
  width: 100%;
}

.header-cta:hover,
.btn:hover,
.whatsapp-link:hover {
  transform: translateY(-2px);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
}

.menu-toggle span {
  display: block;
  width: 19px;
  height: 2px;
  margin: 4px auto;
  border-radius: 2px;
  background: #fff;
}

.menu-toggle em {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.hero {
  min-height: 100vh;
  min-height: 100svh;
  display: grid;
  align-items: center;
  padding-top: 138px;
  background:
    radial-gradient(circle at 82% 20%, rgba(242, 173, 63, 0.18), transparent 30%),
    linear-gradient(180deg, #0b1728 0%, var(--navy) 78%);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.86fr);
  gap: clamp(36px, 5vw, 64px);
  align-items: center;
}

.hero-grid > *,
.test-grid > *,
.split-grid > *,
.footer-grid > *,
.pricing-grid > *,
.steps > *,
.device-grid > *,
.trust-strip-grid > * {
  min-width: 0;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold-2);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 800px;
  margin-bottom: 22px;
  font-size: clamp(34px, 5vw, 76px);
  line-height: 0.98;
  font-weight: 900;
  letter-spacing: 0;
  text-wrap: balance;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(28px, 3.6vw, 52px);
  line-height: 1.04;
  font-weight: 900;
  letter-spacing: 0;
  text-wrap: balance;
}

h3 {
  margin-bottom: 8px;
  font-size: clamp(20px, 1.7vw, 22px);
  line-height: 1.14;
}

.hero-text,
.section-heading p,
.test-grid > div > p,
.split-grid > div > p,
.support-panel p,
.final-panel p {
  color: var(--muted);
  font-size: 18px;
}

.hero-text {
  max-width: 700px;
  margin-bottom: 28px;
  font-size: clamp(18px, 1.7vw, 22px);
}

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

.trust-list,
.feature-list,
.price-card ul {
  padding: 0;
  list-style: none;
}

.trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 24px 0 0;
}

.trust-list li,
.feature-list li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--soft);
  font-size: 14px;
  font-weight: 800;
}

.trust-list li::before,
.feature-list li::before,
.price-card li::before {
  content: "";
  flex: 0 0 auto;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 0 4px rgba(61, 220, 151, 0.12);
}

.device-showcase {
  position: relative;
  min-height: 500px;
  width: min(100%, 640px);
  justify-self: center;
}

.screen {
  position: absolute;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: #05080d;
  box-shadow: var(--shadow);
}

.screen img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.tv-screen {
  left: 0;
  top: 28px;
  width: 88%;
  aspect-ratio: 16 / 10;
}

.tv-screen::after {
  content: "";
  position: absolute;
  left: 18%;
  right: 18%;
  bottom: -18px;
  height: 18px;
  border-radius: 0 0 8px 8px;
  background: #263244;
}

.screen-overlay {
  position: absolute;
  left: 18px;
  bottom: 18px;
  display: grid;
  gap: 3px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(8, 17, 31, 0.78);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.screen-overlay span {
  color: var(--muted);
  font-size: 13px;
}

.tablet-screen {
  right: 0;
  bottom: 78px;
  width: 34%;
  aspect-ratio: 3 / 4;
}

.device-note {
  position: absolute;
  right: 18px;
  top: 0;
  max-width: 240px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(21, 27, 36, 0.88);
  box-shadow: var(--shadow);
}

.device-note span {
  display: block;
  color: var(--gold-2);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.trust-strip {
  border-block: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.035);
}

.trust-strip-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}

.trust-strip-grid div {
  display: flex;
  gap: 10px;
  align-items: center;
  min-height: 86px;
  padding: 0 18px;
  border-left: 1px solid var(--line);
  color: var(--soft);
}

.trust-strip-grid div:last-child {
  border-right: 1px solid var(--line);
}

.icon {
  position: relative;
  flex: 0 0 auto;
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(242, 173, 63, 0.28);
  border-radius: 8px;
  background: rgba(242, 173, 63, 0.11);
}

.icon::before,
.icon::after {
  content: "";
  position: absolute;
}

.icon-time::before {
  width: 17px;
  height: 17px;
  border: 2px solid var(--gold-2);
  border-radius: 50%;
}

.icon-time::after {
  width: 7px;
  height: 2px;
  background: var(--gold-2);
  transform: translate(4px, 1px) rotate(35deg);
}

.icon-bolt::before {
  width: 12px;
  height: 21px;
  background: var(--gold-2);
  clip-path: polygon(54% 0, 18% 47%, 48% 47%, 32% 100%, 86% 36%, 56% 36%);
}

.icon-lock::before {
  width: 18px;
  height: 14px;
  bottom: 9px;
  border-radius: 3px;
  background: var(--gold-2);
}

.icon-lock::after {
  width: 13px;
  height: 12px;
  top: 8px;
  border: 2px solid var(--gold-2);
  border-bottom: 0;
  border-radius: 12px 12px 0 0;
}

.icon-chat::before {
  width: 20px;
  height: 15px;
  border-radius: 5px;
  background: var(--gold-2);
}

.icon-chat::after {
  left: 12px;
  bottom: 10px;
  border: 5px solid transparent;
  border-top-color: var(--gold-2);
}

.icon-device::before,
.icon-tv::before {
  width: 22px;
  height: 15px;
  border: 2px solid var(--gold-2);
  border-radius: 3px;
}

.icon-device::after,
.icon-tv::after {
  bottom: 8px;
  width: 13px;
  height: 2px;
  background: var(--gold-2);
}

.icon-play::before {
  border-left: 15px solid var(--gold-2);
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  transform: translateX(2px);
}

.icon-trophy::before {
  width: 17px;
  height: 15px;
  border-radius: 3px 3px 8px 8px;
  background: var(--gold-2);
}

.icon-trophy::after {
  bottom: 8px;
  width: 20px;
  height: 3px;
  background: var(--gold-2);
}

.icon-box::before {
  width: 22px;
  height: 16px;
  border: 2px solid var(--gold-2);
  border-radius: 4px;
}

.icon-box::after {
  right: 10px;
  bottom: 13px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold-2);
}

.icon-phone::before {
  width: 14px;
  height: 24px;
  border: 2px solid var(--gold-2);
  border-radius: 5px;
}

.icon-tablet::before {
  width: 19px;
  height: 24px;
  border: 2px solid var(--gold-2);
  border-radius: 5px;
}

.icon-laptop::before {
  width: 22px;
  height: 14px;
  border: 2px solid var(--gold-2);
  border-radius: 3px;
}

.icon-laptop::after {
  bottom: 8px;
  width: 28px;
  height: 3px;
  background: var(--gold-2);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 38px;
}

.section-heading.compact {
  margin-inline: auto;
  text-align: center;
}

.movie-slider-section {
  overflow: hidden;
}

.movie-marquee {
  position: relative;
  width: 100%;
  max-width: 100%;
  margin-left: 0;
  overflow: hidden;
  padding: 8px 0 18px;
  -webkit-overflow-scrolling: touch;
}

.movie-marquee::before,
.movie-marquee::after {
  content: "";
  position: absolute;
  z-index: 2;
  top: 0;
  bottom: 0;
  width: min(120px, 18vw);
  pointer-events: none;
}

.movie-marquee::before {
  left: 0;
  background: linear-gradient(90deg, var(--navy), transparent);
}

.movie-marquee::after {
  right: 0;
  background: linear-gradient(270deg, var(--navy), transparent);
}

.movie-track {
  display: flex;
  width: max-content;
  max-width: none;
  gap: clamp(14px, 2vw, 26px);
  padding-inline: clamp(18px, 4vw, 56px);
  animation: movieSlide 38s linear infinite;
}

.movie-marquee:hover .movie-track {
  animation-play-state: paused;
}

.movie-card {
  flex: 0 0 clamp(150px, 15vw, 240px);
  aspect-ratio: 2 / 3;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: #111827;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.26);
}

.movie-card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

@keyframes movieSlide {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.benefit-grid,
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.card,
.price-card,
.test-form,
.trust-cards article,
.device-grid article,
.steps article {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.025));
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.18);
}

.card {
  min-height: 210px;
  padding: 26px;
}

.card p,
.steps p,
.price-card li,
.trust-cards p,
.faq-list p,
.page-faq p {
  color: var(--muted);
}

.muted-section {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.015));
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.steps article {
  position: relative;
  padding: 30px;
}

.steps span {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 22px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--ink);
  font-weight: 900;
}

.center-action {
  margin-top: 32px;
  text-align: center;
}

.test-section {
  background:
    linear-gradient(135deg, rgba(242, 173, 63, 0.13), transparent 38%),
    var(--charcoal);
}

.test-grid,
.split-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 1fr);
  gap: 54px;
  align-items: center;
}

.feature-list {
  display: grid;
  gap: 12px;
  margin: 26px 0;
}

.whatsapp-link {
  border-color: rgba(61, 220, 151, 0.4);
  background: rgba(61, 220, 151, 0.12);
  color: #d9ffed;
}

.test-form {
  padding: 28px;
  background: #f8fafc;
  color: var(--ink);
}

.test-form h3 {
  margin-bottom: 22px;
  font-size: 26px;
}

.form-field {
  display: grid;
  gap: 7px;
  margin-bottom: 16px;
}

.form-field label {
  font-size: 14px;
  font-weight: 900;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  border: 1px solid #ccd5e1;
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  min-height: 48px;
  padding: 0 14px;
  font-size: 16px;
}

.form-field textarea {
  min-height: 104px;
  padding-top: 12px;
  resize: vertical;
}

.form-field.has-error input,
.form-field.has-error select {
  border-color: var(--danger);
}

.error-message {
  min-height: 18px;
  color: #b42318;
  font-size: 13px;
}

.hp-field {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  border: 0;
  padding: 0;
  white-space: nowrap;
}

.form-status {
  min-height: 22px;
  margin: 14px 0 0;
  color: #08613a;
  font-weight: 800;
}

.form-note {
  margin: 12px 0 0;
  color: #667085;
  font-size: 13px;
}

.pricing-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
}

.price-card {
  display: grid;
  grid-template-rows: auto 1fr auto auto;
  gap: 22px;
  align-content: start;
  padding: clamp(20px, 2.2vw, 24px);
  height: 100%;
}

.price-card.accent {
  border-color: rgba(242, 173, 63, 0.48);
  box-shadow: 0 24px 70px rgba(242, 173, 63, 0.12);
}

.price {
  margin-bottom: 3px;
  color: #fff;
  font-size: 34px;
  line-height: 1;
  font-weight: 900;
}

.duration {
  margin: 0;
  color: var(--gold-2);
  font-weight: 800;
}

.duration-note {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.price-card ul {
  display: grid;
  gap: 12px;
  margin: 0;
}

.price-card li {
  display: flex;
  gap: 9px;
  align-items: flex-start;
  font-size: 14px;
}

.price-card li::before {
  margin-top: 6px;
}

.text-cta {
  color: var(--gold-2);
  font-weight: 900;
  text-align: center;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.section-note {
  margin: 28px auto 0;
  max-width: 780px;
  color: var(--muted);
  text-align: center;
}

.section-note a {
  color: var(--gold-2);
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.device-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.device-grid article {
  min-height: 132px;
  display: grid;
  place-items: center;
  gap: 10px;
  padding: 18px;
  text-align: center;
}

.trust-cards {
  display: grid;
  gap: 16px;
}

.trust-cards article {
  padding: 22px;
}

.support-band {
  padding-block: 58px;
  background: #f7f9fc;
  color: var(--ink);
}

.support-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.support-panel p {
  max-width: 720px;
  color: #475467;
}

.support-panel .eyebrow {
  color: #966814;
}

.faq-list {
  max-width: 920px;
  margin: 0 auto;
}

.faq-list details,
.page-faq details {
  border-top: 1px solid var(--line);
}

.faq-list details:last-child,
.page-faq details:last-child {
  border-bottom: 1px solid var(--line);
}

.faq-list summary,
.page-faq summary {
  cursor: pointer;
  padding: 22px 0;
  font-size: 18px;
  font-weight: 900;
}

.faq-list p,
.page-faq p {
  margin-top: -8px;
  padding-bottom: 22px;
}

.final-cta {
  background:
    radial-gradient(circle at 50% 0%, rgba(242, 173, 63, 0.18), transparent 38%),
    #0a1322;
}

.final-panel {
  display: grid;
  place-items: center;
  text-align: center;
}

.final-panel p {
  max-width: 640px;
}

.final-panel small {
  display: block;
  margin-top: 18px;
  color: var(--muted);
}

.site-footer,
.simple-footer {
  border-top: 1px solid var(--line);
  background: #070d17;
}

.site-footer {
  padding: 44px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.7fr 0.9fr;
  gap: 34px;
}

.site-footer,
.simple-footer,
.policy-content,
.page-hero,
.page-faq {
  overflow-wrap: anywhere;
}

.footer-brand {
  width: 176px;
  margin-bottom: 16px;
}

.site-footer p,
.site-footer a {
  color: var(--muted);
}

.site-footer nav,
.site-footer .footer-grid > div:last-child {
  display: grid;
  gap: 10px;
  align-content: start;
}

.site-footer a:hover {
  color: #fff;
}

.mobile-action-bar {
  position: fixed;
  z-index: 45;
  left: 12px;
  right: 12px;
  bottom: 12px;
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(8, 17, 31, 0.94);
  box-shadow: var(--shadow);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
}

.mobile-action-bar.is-hidden {
  opacity: 0;
  pointer-events: none;
}

.mobile-action-bar a {
  display: grid;
  place-items: center;
  min-height: 44px;
  border-radius: 8px;
  background: var(--gold);
  color: var(--ink);
  font-size: 13px;
  font-weight: 900;
  text-align: center;
}

.mobile-action-bar a:last-child {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.page-main,
.policy-main {
  min-height: 100vh;
  min-height: 100svh;
  padding: 132px 0 76px;
  background:
    radial-gradient(circle at 15% 20%, rgba(242, 173, 63, 0.13), transparent 28%),
    radial-gradient(circle at 88% 10%, rgba(61, 220, 151, 0.1), transparent 26%),
    var(--navy);
}

.page-hero,
.policy-content {
  width: min(980px, calc(100% - 40px));
  margin: 0 auto;
}

.page-kicker {
  display: inline-flex;
  margin: 0 0 18px;
  color: var(--gold-2);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.page-hero h1,
.policy-content h1 {
  margin: 0 0 22px;
  font-size: clamp(40px, 6vw, 72px);
  line-height: 0.98;
}

.page-hero > p,
.policy-content > p,
.policy-content li {
  max-width: 760px;
  color: var(--muted);
  font-size: 18px;
}

.page-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.page-actions .activate {
  margin: 0;
}

.activate,
.login {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-weight: 900;
}

.activate.filled,
.login {
  border-color: transparent;
  background: var(--gold);
  color: var(--ink);
}

.topbar {
  position: fixed;
  z-index: 50;
  top: 0;
  left: 0;
  right: 0;
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 28px;
  border-bottom: 1px solid var(--line);
  background: rgba(8, 17, 31, 0.94);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
}

.logo {
  display: inline-flex;
  align-items: center;
  width: clamp(146px, 15vw, 190px);
  line-height: 0;
}

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

.header-link {
  color: var(--muted);
  font-weight: 800;
}

.support-grid-page {
  width: min(1120px, calc(100% - 40px));
  margin: 64px auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.support-grid-page article {
  min-height: 220px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
}

.support-grid-page span {
  color: var(--gold-2);
  font-weight: 900;
}

.page-faq {
  width: min(980px, calc(100% - 40px));
  margin: 64px auto 0;
}

.policy-content h2 {
  margin-top: 42px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.policy-content a {
  color: #fff;
  text-decoration: underline;
}

.simple-footer {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 22px;
  padding: 32px 20px;
  color: var(--muted);
  font-weight: 800;
}

@media (max-width: 1180px) {
  .site-header {
    gap: 14px;
    padding-inline: 20px;
  }

  .site-nav {
    font-size: 13px;
  }

  .header-cta {
    padding-inline: 16px;
    font-size: 14px;
  }

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

@media (max-width: 1060px) {
  .site-header {
    grid-template-columns: auto 1fr auto;
  }

  .menu-toggle {
    display: block;
    order: 3;
  }

  .header-cta {
    justify-self: end;
  }

  .site-nav {
    position: fixed;
    top: 72px;
    left: 14px;
    right: 14px;
    display: none;
    max-height: calc(100vh - 92px);
    overflow-y: auto;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: rgba(8, 17, 31, 0.98);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: grid;
    gap: 8px;
  }

  .site-nav a {
    padding: 13px 10px;
    border-radius: 8px;
  }

  .site-nav a:hover {
    background: rgba(255, 255, 255, 0.06);
  }

  .site-nav a[href*="wa.me"] {
    display: grid;
    place-items: center;
    min-height: 46px;
    margin-top: 6px;
    border-radius: 999px;
    background: var(--gold);
    color: var(--ink);
  }

  .hero-grid,
  .test-grid,
  .split-grid {
    grid-template-columns: 1fr;
  }

  .device-showcase {
    min-height: 440px;
    width: min(680px, 100%);
  }

  .hero-copy {
    max-width: 780px;
  }
}

@media (max-width: 820px) {
  .section-pad {
    padding: 72px 0;
  }

  .hero {
    min-height: auto;
    padding-top: 126px;
  }

  .hero-grid {
    gap: 42px;
  }

  .hero-copy {
    text-align: left;
  }

  .trust-strip-grid,
  .benefit-grid,
  .steps,
  .footer-grid,
  .support-grid-page {
    grid-template-columns: 1fr;
  }

  .trust-strip-grid div {
    min-height: 66px;
    border-right: 1px solid var(--line);
  }

  .support-panel {
    display: grid;
  }

  .test-grid,
  .split-grid {
    gap: 34px;
  }

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

@media (max-width: 640px) {
  .container {
    width: min(100% - 28px, 1180px);
  }

  .site-header,
  .topbar {
    min-height: 64px;
    padding: 0 14px;
  }

  .site-nav {
    top: 64px;
  }

  .brand {
    width: 136px;
  }

  .logo {
    width: 142px;
  }

  .header-cta {
    min-height: 40px;
    padding: 0 12px;
    max-width: 132px;
    font-size: 12px;
  }

  h1 {
    font-size: 38px;
  }

  h2 {
    font-size: 31px;
  }

  .hero {
    padding-top: 106px;
  }

  .hero-text,
  .section-heading p,
  .test-grid > div > p,
  .split-grid > div > p,
  .support-panel p,
  .final-panel p {
    font-size: 16px;
  }

  .hero-actions .btn,
  .btn {
    width: 100%;
  }

  .trust-list {
    display: grid;
  }

  .device-showcase {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(104px, 34%);
    grid-template-areas:
      "note note"
      "tv tv"
      ". poster";
    gap: 12px;
    min-height: 0;
    width: 100%;
  }

  .tv-screen {
    grid-area: tv;
    position: relative;
    width: 100%;
    top: auto;
    left: auto;
    aspect-ratio: 16 / 9;
  }

  .tv-screen::after {
    display: none;
  }

  .tablet-screen {
    grid-area: poster;
    position: relative;
    right: auto;
    bottom: auto;
    justify-self: end;
    width: 100%;
    margin-top: -42%;
    z-index: 2;
  }

  .device-note {
    grid-area: note;
    position: relative;
    right: auto;
    top: auto;
    max-width: none;
    padding: 14px;
    font-size: 13px;
  }

  .screen-overlay {
    left: 12px;
    bottom: 12px;
    padding: 10px 12px;
    max-width: calc(100% - 124px);
  }

  .movie-card {
    flex-basis: 138px;
  }

  .pricing-grid,
  .device-grid {
    grid-template-columns: 1fr;
  }

  .price {
    font-size: 31px;
  }

  .test-form {
    padding: 20px;
  }

  .mobile-action-bar {
    display: grid;
  }

  body {
    padding-bottom: 78px;
  }

  .top-actions .header-link {
    display: none;
  }

  .page-main,
  .policy-main {
    padding-top: 104px;
    padding-bottom: 56px;
  }

  .page-hero,
  .policy-content,
  .support-grid-page,
  .page-faq {
    width: min(100% - 28px, 980px);
  }

  .page-hero h1,
  .policy-content h1 {
    font-size: clamp(34px, 10vw, 48px);
  }

  .page-hero > p,
  .policy-content > p,
  .policy-content li,
  .support-grid-page p,
  .page-faq p {
    font-size: 16px;
  }

  .page-actions .activate {
    width: 100%;
  }

  .topbar .login {
    min-height: 40px;
    max-width: 160px;
    padding: 0 12px;
    font-size: 12px;
  }
}

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

  .site-header {
    grid-template-columns: auto auto auto;
    gap: 8px;
  }

  .brand {
    width: 122px;
  }

  .logo {
    width: 130px;
  }

  .header-cta {
    max-width: 116px;
    padding-inline: 10px;
    font-size: 11px;
  }

  .menu-toggle {
    width: 40px;
    height: 40px;
  }

  h1 {
    font-size: 34px;
  }

  h2 {
    font-size: 28px;
  }

  .device-showcase {
    grid-template-columns: minmax(0, 1fr) minmax(96px, 38%);
  }

  .device-note {
    padding: 12px;
  }

  .device-note strong {
    font-size: 15px;
  }

  .screen-overlay {
    max-width: calc(100% - 116px);
  }

  .tablet-screen {
    margin-top: -38%;
  }

  .price-card,
  .steps article,
  .trust-cards article,
  .card {
    padding: 20px;
  }
}

@media (max-width: 360px) {
  .header-cta {
    display: none;
  }

  .site-header {
    grid-template-columns: auto auto;
  }

  .menu-toggle {
    justify-self: end;
  }

  .device-showcase {
    grid-template-columns: minmax(0, 1fr) minmax(90px, 40%);
  }

  .device-note {
    width: 100%;
  }

  .tablet-screen {
    margin-top: -34%;
  }

  .topbar .login {
    max-width: 128px;
  }
}

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

  .movie-track {
    animation: none;
    overflow-x: auto;
    width: auto;
  }
}

@media (hover: none) and (pointer: coarse) {
  .movie-marquee {
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x proximity;
    scrollbar-width: none;
  }

  .movie-marquee::-webkit-scrollbar {
    display: none;
  }

  .movie-track {
    animation: none;
    transform: none;
  }

  .movie-card {
    scroll-snap-align: start;
  }
}
