:root {
  --bg: #05060a;
  --bg-2: #090b12;
  --panel: rgba(15, 18, 27, 0.78);
  --panel-strong: rgba(20, 24, 36, 0.92);
  --line: rgba(255, 255, 255, 0.11);
  --line-strong: rgba(255, 255, 255, 0.18);
  --text: #f7f4ed;
  --muted: #a4acba;
  --soft: #dfe5ef;
  --accent: #8c61ff;
  --accent-2: #2ec7ff;
  --gold: #efd08a;
  --violet: #9c6cff;
  --shadow: 0 22px 70px rgba(0, 0, 0, 0.42);
  --radius: 18px;
  --max: 1160px;
  --ease: cubic-bezier(0.2, 0.8, 0.2, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 50% -10%, rgba(156, 108, 255, 0.26), transparent 34%),
    radial-gradient(circle at 100% 6%, rgba(107, 184, 255, 0.14), transparent 26%),
    linear-gradient(180deg, #05060a 0%, #090b12 48%, #05060a 100%);
  font-family: "Manrope", system-ui, sans-serif;
  line-height: 1.5;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.026) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.026) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(180deg, #000, transparent 72%);
  pointer-events: none;
}

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

button {
  font: inherit;
}

img,
video,
svg {
  display: block;
}

img,
video {
  max-width: 100%;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 40;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 16px;
  padding: 12px clamp(16px, 4vw, 44px);
  background: rgba(5, 6, 10, 0.58);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(20px);
  transition: background 220ms var(--ease), border-color 220ms var(--ease), box-shadow 220ms var(--ease);
}

.site-header.is-scrolled {
  background: rgba(5, 6, 10, 0.86);
  border-color: var(--line);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.24);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  min-width: 0;
}

.brand-mark {
  width: 42px;
  height: 42px;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: 13px;
  box-shadow: 0 0 28px rgba(156, 108, 255, 0.24);
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand-copy {
  display: grid;
  gap: 1px;
}

.brand-copy strong,
h1,
h2,
h3 {
  font-family: "Sora", system-ui, sans-serif;
  letter-spacing: 0;
}

.brand-copy strong {
  font-size: 0.98rem;
}

.brand-copy small {
  color: var(--muted);
  font-size: 0.72rem;
}

.nav {
  display: flex;
  align-items: center;
  gap: 2px;
  padding: 4px;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid var(--line);
  border-radius: 999px;
}

.nav a {
  padding: 8px 12px;
  color: var(--muted);
  border-radius: 999px;
  font-size: 0.84rem;
  font-weight: 700;
  transition: color 180ms var(--ease), background 180ms var(--ease);
}

.nav a:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.08);
}

.header-cta {
  position: relative;
  justify-self: end;
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 15px;
  color: #ffffff;
  background: linear-gradient(135deg, #8c61ff, #5e73ff 58%, #2ec7ff);
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 13px;
  box-shadow: 0 16px 34px rgba(94, 115, 255, 0.3);
  font-size: 0.88rem;
  font-weight: 900;
  transition: transform 180ms var(--ease), box-shadow 180ms var(--ease);
}

.header-cta:hover {
  transform: translateY(-1px) scale(1.015);
  box-shadow: 0 20px 44px rgba(94, 115, 255, 0.38);
}

.cta-badge {
  position: absolute;
  top: -9px;
  right: -9px;
  padding: 3px 7px;
  color: #17110a;
  background: var(--gold);
  border-radius: 999px;
  font-size: 0.58rem;
  font-weight: 900;
  line-height: 1;
}

.wa-icon {
  width: 18px;
  height: 18px;
  fill: currentColor;
  flex: 0 0 auto;
}

.section {
  position: relative;
  max-width: calc(var(--max) + 48px);
  margin: 0 auto;
  padding: clamp(42px, 6vw, 76px) 24px;
}

.section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 24px;
  right: 24px;
  height: 3px;
  background:
    linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.16) 28%, rgba(255, 255, 255, 0.16) 72%, transparent 100%),
    linear-gradient(90deg, transparent 0%, rgba(140, 97, 255, 0.42) 35%, rgba(46, 199, 255, 0.5) 50%, rgba(140, 97, 255, 0.42) 65%, transparent 100%),
    repeating-linear-gradient(90deg, transparent 0 18px, rgba(255, 255, 255, 0.15) 18px 21px, transparent 21px 38px);
  background-size: 100% 100%, 260% 100%, 120% 100%;
  background-position: 0 0, 0 0, 0 0;
  box-shadow: 0 0 18px rgba(140, 97, 255, 0.18);
  animation: dividerFlow 7.2s linear infinite, dividerPulse 3.4s ease-in-out infinite;
}

.section::after {
  content: "";
  position: absolute;
  top: -2px;
  left: 24px;
  right: 24px;
  height: 6px;
  border-radius: 999px;
  background:
    radial-gradient(ellipse 120px 3px at 0% 50%, rgba(46, 199, 255, 0.95) 0%, rgba(140, 97, 255, 0.58) 38%, rgba(140, 97, 255, 0) 82%);
  background-size: 180px 100%;
  background-repeat: no-repeat;
  background-position: -180px 0;
  filter: blur(0.4px);
  opacity: 0.72;
  animation: dividerSweep 6.8s linear infinite;
}

.hero {
  position: relative;
  max-width: none;
  margin: 0;
  padding-left: clamp(24px, 5vw, 74px);
  padding-right: clamp(24px, 5vw, 74px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.7fr);
  min-height: 90vh;
  align-items: center;
  gap: clamp(28px, 6vw, 72px);
  padding-top: 116px;
  overflow: hidden;
}

.hero::before {
  display: none;
}

.hero::after {
  display: none;
}

.hero-bg-video {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.hero-bg-video::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    radial-gradient(circle at 22% 24%, rgba(140, 97, 255, 0.2), transparent 40%),
    radial-gradient(circle at 76% 18%, rgba(46, 199, 255, 0.16), transparent 38%),
    linear-gradient(180deg, rgba(7, 8, 14, 0.24), rgba(5, 6, 10, 0.44));
}

.eyebrow {
  margin: 0 0 13px;
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 760px;
  margin-bottom: 18px;
  font-size: clamp(2.7rem, 6vw, 5.5rem);
  line-height: 0.94;
}

h2 {
  margin-bottom: 13px;
  font-size: clamp(1.7rem, 3.1vw, 3rem);
  line-height: 1.04;
}

h3 {
  margin-bottom: 9px;
  font-size: 1.05rem;
}

.lead,
.section-head p,
.demo-copy p,
.final-panel p {
  color: var(--muted);
  font-size: clamp(1rem, 1.4vw, 1.12rem);
}

.lead {
  max-width: 690px;
  margin-bottom: 24px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 11px;
  margin-bottom: 24px;
}

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 13px;
  cursor: pointer;
  font-weight: 900;
  transition: transform 180ms var(--ease), border-color 180ms var(--ease), box-shadow 180ms var(--ease), background 180ms var(--ease);
}

.button:hover {
  transform: translateY(-2px) scale(1.01);
}

.button.primary {
  color: #ffffff;
  background: linear-gradient(135deg, #8c61ff, #5e73ff 58%, #2ec7ff);
  border-color: rgba(255, 255, 255, 0.34);
  box-shadow: 0 18px 42px rgba(94, 115, 255, 0.32);
}

.button.primary:hover {
  box-shadow: 0 22px 52px rgba(94, 115, 255, 0.42);
}

.button.secondary {
  color: var(--text);
  background: rgba(255, 255, 255, 0.055);
}

.button.large {
  min-height: 52px;
  padding: 0 22px;
}

.proof-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.proof-row span,
.demo-metrics span,
.plan-strip span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 12px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.86rem;
  font-weight: 700;
}

.proof-row strong,
.demo-metrics strong {
  color: var(--text);
}

.hero-card {
  position: relative;
  overflow: hidden;
  padding: 14px;
  background:
    radial-gradient(circle at 50% 12%, rgba(156, 108, 255, 0.18), transparent 44%),
    linear-gradient(180deg, rgba(19, 22, 33, 0.56), rgba(7, 9, 14, 0.46));
  border: 1px solid var(--line-strong);
  border-radius: 28px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(6px);
}

.hero-card::after {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: 27px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), transparent 36%, rgba(120, 244, 189, 0.05));
  pointer-events: none;
}

.hero-card-top,
.video-overlay {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 12px;
}

.hero-card-top span,
.video-overlay span {
  padding: 7px 10px;
  color: var(--soft);
  background: rgba(5, 6, 10, 0.54);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 800;
}

.hero-card img {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 1 / 0.76;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.34);
}

.hero-cinematic {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.7;
  filter: blur(0.7px) contrast(1.05) saturate(1.08);
}

.hero-signal {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 2px;
  margin-top: 12px;
  padding: 13px;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid var(--line);
  border-radius: 16px;
}

.hero-copy,
.hero-card {
  position: relative;
  z-index: 1;
}

.hero-signal span {
  color: var(--muted);
  font-size: 0.78rem;
}

.hero-signal strong {
  font-family: "Sora", system-ui, sans-serif;
}

.section-head {
  max-width: 760px;
  margin-bottom: 24px;
}

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

.feature-card,
.review-card,
.final-panel,
.trial-popup {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), transparent 120%),
    var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 16px 52px rgba(0, 0, 0, 0.24);
}

.feature-card,
.review-card {
  padding: 20px;
  transition: transform 220ms var(--ease), border-color 220ms var(--ease), box-shadow 220ms var(--ease);
}

.feature-card:hover,
.review-card:hover {
  transform: translateY(-4px);
  border-color: rgba(140, 97, 255, 0.28);
  box-shadow: 0 24px 68px rgba(0, 0, 0, 0.34);
}

.feature-icon {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  margin-bottom: 16px;
  color: var(--accent);
  background: rgba(140, 97, 255, 0.14);
  border: 1px solid rgba(140, 97, 255, 0.28);
  border-radius: 13px;
}

.feature-icon svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.feature-card p,
.review-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.demo {
  display: grid;
  grid-template-columns: minmax(0, 0.76fr) minmax(300px, 0.9fr);
  align-items: center;
  gap: clamp(24px, 5vw, 58px);
}

.demo-list {
  display: grid;
  gap: 10px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.demo-list li {
  color: var(--soft);
  font-size: 0.95rem;
}

.demo-list li::before {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 10px;
  background: var(--accent);
  border-radius: 999px;
  box-shadow: 0 0 14px rgba(120, 244, 189, 0.55);
}

.demo-frame {
  width: min(100%, 580px);
  justify-self: end;
}

.video-shell {
  position: relative;
  overflow: hidden;
  padding: 10px;
  background:
    radial-gradient(circle at 70% 0%, rgba(107, 184, 255, 0.18), transparent 32%),
    linear-gradient(180deg, rgba(28, 32, 46, 0.96), rgba(10, 12, 18, 0.98));
  border: 1px solid var(--line-strong);
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.demo-video {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  overflow: hidden;
  background: #07080d;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 17px;
}

.video-overlay {
  position: absolute;
  inset: 20px 20px auto;
  margin-bottom: 0;
  pointer-events: none;
}

.demo-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 9px;
  margin-top: 10px;
}

.demo-metrics span {
  justify-content: center;
  border-radius: 14px;
}

.channel-showcase .section-head,
.compare .section-head,
.pricing .section-head,
.devices .section-head {
  margin-bottom: 20px;
}

.slider-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 12px;
}

.slider-note {
  color: var(--muted);
  font-size: 0.85rem;
  font-weight: 700;
}

.slider-controls {
  display: flex;
  gap: 8px;
}

.slider-controls button {
  width: 38px;
  height: 38px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--line);
  border-radius: 11px;
  cursor: pointer;
  font-size: 1.3rem;
  line-height: 1;
}

.channel-slider {
  margin: 0 -24px;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
}

.channel-track {
  display: flex;
  width: max-content;
  gap: 12px;
  padding: 4px 24px 8px;
  animation: channelLoop 36s linear infinite;
}

.channel-slider:hover .channel-track {
  animation-play-state: paused;
}

.channel-track.channel-burst {
  animation-duration: 16s;
}

.channel-track.channel-reverse {
  animation-direction: reverse;
  animation-duration: 18s;
}

.channel-card {
  display: grid;
  width: 196px;
  gap: 10px;
  align-content: space-between;
  padding: 14px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), transparent 130%),
    var(--panel);
  border: 1px solid var(--line);
  border-radius: 15px;
}

.channel-card span {
  width: fit-content;
  padding: 5px 9px;
  color: var(--accent);
  background: rgba(120, 244, 189, 0.11);
  border: 1px solid rgba(120, 244, 189, 0.22);
  border-radius: 999px;
  font-size: 0.65rem;
  font-weight: 900;
  letter-spacing: 0.04em;
}

.channel-logo {
  display: grid;
  min-height: 74px;
  place-items: center;
  padding: 10px;
  background: rgba(255, 255, 255, 0.96);
  border-radius: 12px;
}

.channel-logo img {
  max-width: 128px;
  max-height: 44px;
  object-fit: contain;
}

.channel-card strong {
  font-size: 0.92rem;
}

.movie-slider {
  margin: 0 -24px;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
}

.movie-track {
  display: flex;
  width: max-content;
  gap: 12px;
  padding: 4px 24px 8px;
  animation: channelLoop 34s linear infinite;
}

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

.movie-track.movie-burst {
  animation-duration: 15s;
}

.movie-track.movie-reverse {
  animation-direction: reverse;
  animation-duration: 17s;
}

.movie-card {
  width: 228px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), transparent 130%),
    var(--panel);
  border: 1px solid var(--line);
  border-radius: 15px;
}

.movie-poster {
  position: relative;
  display: flex;
  min-height: 260px;
  flex-direction: column;
  justify-content: space-between;
  padding: 14px;
}

.movie-poster img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.movie-poster::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.06), rgba(0, 0, 0, 0.76)),
    linear-gradient(135deg, rgba(140, 97, 255, 0.18), rgba(46, 199, 255, 0.12));
}

.movie-poster span,
.movie-poster strong {
  position: relative;
  z-index: 1;
}

.movie-poster span {
  width: fit-content;
  padding: 6px 9px;
  color: #ffffff;
  background: linear-gradient(135deg, #8c61ff, #5e73ff 58%, #2ec7ff);
  border-radius: 999px;
  font-size: 0.66rem;
  font-weight: 900;
}

.movie-poster strong {
  font-size: 1rem;
  line-height: 1.08;
}

.movie-meta {
  display: grid;
  gap: 6px;
  padding: 12px 14px 14px;
}

.movie-meta span {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
}

.movie-meta p {
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
}

.vs-board {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: 1060px;
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 20px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent 120%),
    rgba(13, 15, 24, 0.9);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.34);
}

.vs-divider {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 3px;
  transform: translateX(-50%);
  background: linear-gradient(180deg, rgba(46, 199, 255, 0.95), rgba(140, 97, 255, 0.95));
  box-shadow: 0 0 24px rgba(46, 199, 255, 0.3);
  z-index: 3;
}

.vs-divider span {
  position: absolute;
  top: 14px;
  left: 50%;
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  color: #ffffff;
  background: linear-gradient(135deg, #2ec7ff, #8c61ff);
  border-radius: 50%;
  transform: translateX(-50%);
  font-family: "Sora", system-ui, sans-serif;
  font-size: 1.35rem;
  font-weight: 800;
  box-shadow: 0 0 26px rgba(46, 199, 255, 0.34);
}

.vs-side {
  position: relative;
  z-index: 1;
}

.vs-side-left {
  background: rgba(18, 20, 29, 0.78);
}

.vs-side-right {
  background:
    radial-gradient(circle at 40% 18%, rgba(46, 199, 255, 0.16), transparent 46%),
    radial-gradient(circle at 88% 12%, rgba(140, 97, 255, 0.2), transparent 40%),
    rgba(25, 18, 33, 0.7);
}

.vs-side-head {
  display: grid;
  min-height: 104px;
  align-content: center;
  justify-items: center;
  gap: 7px;
  padding: 14px;
  border-bottom: 1px solid var(--line);
}

.vs-side-head h3 {
  margin: 0;
  font-size: clamp(1.2rem, 2.15vw, 1.75rem);
  line-height: 1;
}

.vs-side-right h3 {
  background: linear-gradient(90deg, #2ec7ff, #8c61ff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.vs-side-head img {
  width: 38px;
  height: 38px;
  object-fit: cover;
  border: 1px solid var(--line-strong);
  border-radius: 10px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.35);
}

.vs-row {
  display: flex;
  min-height: 62px;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 0 16px;
  border-bottom: 1px solid var(--line);
}

.vs-row:last-child {
  border-bottom: 0;
}

.vs-row span {
  color: #b8becc;
  font-size: 0.86rem;
  font-weight: 700;
}

.vs-row strong {
  color: #7e8594;
  font-size: 1.26rem;
  font-weight: 700;
  line-height: 1;
}

.vs-row .is-negative {
  color: #8f283b;
}

.vs-row .is-positive {
  color: #6de8ff;
}

.vs-row .is-check {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  color: #ffffff;
  background: linear-gradient(135deg, #2ec7ff, #8c61ff);
  border-radius: 50%;
  font-size: 1.05rem;
}

.vs-row em {
  display: inline-flex;
  margin-left: 6px;
  padding: 4px 8px;
  color: #ffffff;
  background: linear-gradient(135deg, #3e96ff, #8d44ff);
  border-radius: 9px;
  font-style: normal;
  font-size: 0.74rem;
  font-weight: 800;
}

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

.price-card {
  display: grid;
  align-content: start;
  gap: 12px;
  min-height: 390px;
  padding: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), transparent 130%),
    var(--panel);
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: 0 14px 42px rgba(0, 0, 0, 0.28);
}

.price-card.is-highlight {
  border-color: rgba(140, 97, 255, 0.38);
  box-shadow: 0 20px 58px rgba(94, 115, 255, 0.24), 0 18px 44px rgba(0, 0, 0, 0.3);
}

.price-badge-wrap {
  display: grid;
  justify-items: start;
  gap: 4px;
}

.price-badge {
  width: fit-content;
  padding: 6px 9px;
  color: #ffffff;
  background: linear-gradient(135deg, #8c61ff, #5e73ff 58%, #2ec7ff);
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 900;
}

.price-badge.is-limited {
  background: linear-gradient(135deg, #ffc64f, #ff7f50 46%, #8c61ff);
  box-shadow: 0 10px 22px rgba(255, 156, 78, 0.34);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  animation: limitedPulse 2.4s ease-in-out infinite;
}

.price-badge-note {
  display: inline-flex;
  align-items: center;
  padding: 3px 8px;
  color: #ffd89a;
  background: rgba(255, 176, 86, 0.08);
  border: 1px solid rgba(255, 176, 86, 0.3);
  border-radius: 999px;
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.03em;
}

.device-stepper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 6px 8px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line);
  border-radius: 12px;
}

.device-stepper-label {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
}

.device-stepper-controls {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.device-stepper-btn {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line);
  border-radius: 10px;
  cursor: pointer;
  font-size: 1.05rem;
  font-weight: 900;
  line-height: 1;
  transition: transform 160ms var(--ease), border-color 160ms var(--ease), background 160ms var(--ease);
}

.device-stepper-btn:hover:not(:disabled) {
  transform: translateY(-1px);
  border-color: rgba(140, 97, 255, 0.42);
  background: rgba(140, 97, 255, 0.14);
}

.device-stepper-btn:disabled {
  opacity: 0.42;
  cursor: not-allowed;
}

.device-stepper-count {
  min-width: 28px;
  text-align: center;
  font-family: "Sora", system-ui, sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
}

.device-stepper-note {
  margin: -5px 0 0;
  color: var(--muted);
  font-size: 0.79rem;
}

.price-sub {
  margin: -5px 0 0;
  color: var(--muted);
  font-size: 0.86rem;
}

.price-value {
  display: flex;
  align-items: baseline;
  gap: 7px;
}

.price-value strong {
  font-family: "Sora", system-ui, sans-serif;
  font-size: 1.75rem;
}

.price-value span {
  color: var(--muted);
  font-size: 0.82rem;
}

.price-average {
  margin: -6px 0 2px;
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 700;
}

.price-card ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.price-card li {
  color: var(--soft);
  font-size: 0.87rem;
}

.price-card li::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-right: 9px;
  background: var(--accent-2);
  border-radius: 999px;
}

.price-card .button {
  width: 100%;
  margin-top: auto;
}

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

.device-card {
  display: flex;
  min-height: 82px;
  align-items: center;
  gap: 12px;
  padding: 14px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), transparent 130%),
    var(--panel);
  border: 1px solid var(--line);
  border-radius: 14px;
}

.device-card span {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  color: #06120c;
  background: var(--gold);
  border-radius: 10px;
  font-size: 0.78rem;
  font-weight: 900;
}

.device-card strong {
  font-size: 0.92rem;
}

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

.review-top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.review-top img {
  width: 48px;
  height: 48px;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
}

.review-top div {
  display: grid;
  gap: 1px;
}

.review-top strong {
  font-family: "Sora", system-ui, sans-serif;
}

.review-top span {
  color: var(--muted);
  font-size: 0.82rem;
}

.stars {
  margin-bottom: 11px;
  color: var(--gold);
  font-size: 0.86rem;
  letter-spacing: 0.08em;
}

.final-cta {
  padding-bottom: clamp(48px, 7vw, 88px);
}

.final-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 22px;
  padding: clamp(24px, 4vw, 38px);
  background:
    radial-gradient(circle at 92% 0%, rgba(120, 244, 189, 0.15), transparent 30%),
    radial-gradient(circle at 0% 100%, rgba(156, 108, 255, 0.18), transparent 34%),
    linear-gradient(180deg, rgba(21, 25, 38, 0.94), rgba(8, 10, 16, 0.96));
  border-color: rgba(255, 255, 255, 0.15);
}

.final-panel h2 {
  max-width: 680px;
}

.final-panel p {
  max-width: 660px;
  margin-bottom: 0;
}

.plan-strip {
  display: flex;
  flex-wrap: wrap;
  grid-column: 1 / -1;
  gap: 9px;
}

.footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  max-width: calc(var(--max) + 48px);
  margin: 0 auto;
  padding: 24px;
  color: var(--muted);
  border-top: 1px solid var(--line);
  font-size: 0.88rem;
}

.trial-popup {
  position: fixed;
  right: clamp(14px, 3vw, 28px);
  bottom: clamp(14px, 3vw, 28px);
  z-index: 60;
  width: min(358px, calc(100vw - 28px));
  padding: 18px;
  opacity: 0;
  transform: translateY(16px) scale(0.98);
  transition: opacity 220ms var(--ease), transform 220ms var(--ease);
}

.trial-popup.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.popup-close {
  position: absolute;
  top: 10px;
  right: 10px;
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--line);
  border-radius: 10px;
  cursor: pointer;
  font-size: 1.15rem;
}

.popup-kicker {
  display: inline-flex;
  margin-bottom: 10px;
  padding: 6px 10px;
  color: #ffffff;
  background: linear-gradient(135deg, #8c61ff, #5e73ff 58%, #2ec7ff);
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 900;
}

.trial-popup strong {
  display: block;
  max-width: 260px;
  margin-bottom: 7px;
  font-family: "Sora", system-ui, sans-serif;
}

.trial-popup p {
  margin-bottom: 14px;
  color: var(--muted);
  font-size: 0.9rem;
}

.trial-popup .button {
  width: 100%;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 520ms var(--ease), transform 520ms var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.text-motion {
  opacity: 0;
  transform: translateY(11px);
  filter: blur(4px);
  transition: opacity 580ms var(--ease), transform 580ms var(--ease), filter 580ms var(--ease);
  transition-delay: var(--text-delay, 0ms);
}

.reveal.is-visible .text-motion {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }

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

  .text-motion {
    opacity: 1;
    transform: none;
    filter: none;
  }
}

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

  .nav {
    display: none;
  }

  .hero,
  .demo,
  .final-panel {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-left: 20px;
    padding-right: 20px;
  }

  .hero-card,
  .demo-frame {
    width: min(100%, 520px);
    justify-self: center;
  }

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

  .vs-row {
    min-height: 60px;
    padding: 0 14px;
  }

  .vs-row strong {
    font-size: 1.18rem;
  }

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

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

@media (max-width: 720px) {
  .site-header {
    padding: 12px 14px;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .brand-copy small {
    display: none;
  }

  .header-cta {
    min-height: 38px;
    padding: 0 11px;
    font-size: 0.82rem;
  }

  .cta-badge {
    top: -8px;
    right: -4px;
  }

  .section {
    padding-left: 16px;
    padding-right: 16px;
  }

  .section::before {
    left: 16px;
    right: 16px;
  }

  .section::after {
    left: 16px;
  }

  .hero {
    min-height: auto;
    gap: 24px;
    padding-top: 92px;
    padding-left: 16px;
    padding-right: 16px;
  }

  h1 {
    font-size: clamp(2.45rem, 14vw, 3.25rem);
  }

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

  .button,
  .proof-row span {
    width: 100%;
  }

  .hero-card {
    border-radius: 22px;
    width: min(100%, 330px);
    padding: 10px;
  }

  .hero-card-top,
  .hero-signal {
    display: none;
  }

  .hero-card img {
    aspect-ratio: 1 / 0.7;
    border-radius: 16px;
  }

  .hero-cinematic {
    opacity: 0.62;
    filter: blur(1px) contrast(1.04) saturate(1.06);
  }

  .feature-grid,
  .reviews .review-grid,
  .demo-metrics,
  .price-grid,
  .device-grid {
    grid-template-columns: 1fr;
  }

  .vs-board {
    grid-template-columns: 1fr;
  }

  .vs-divider {
    display: none;
  }

  .vs-side-head {
    min-height: 96px;
    padding: 14px 12px;
  }

  .vs-side-head h3 {
    font-size: 1.35rem;
  }

  .vs-row {
    min-height: 56px;
    padding: 0 12px;
  }

  .vs-row span {
    font-size: 0.84rem;
  }

  .vs-row strong {
    font-size: 1.12rem;
  }

  .vs-row .is-check {
    width: 34px;
    height: 34px;
    font-size: 0.98rem;
  }

  .vs-row em {
    margin-left: 6px;
    padding: 4px 8px;
    font-size: 0.74rem;
  }

  .channel-slider {
    margin: 0 -16px;
  }

  .channel-track,
  .movie-track {
    padding-left: 16px;
    padding-right: 16px;
  }

  .movie-slider {
    margin: 0 -16px;
  }

  .slider-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .video-overlay {
    inset: 16px 16px auto;
  }

  .video-overlay span:last-child {
    display: none;
  }

  .final-panel {
    padding: 22px;
  }

  .trial-popup {
    right: 12px;
    bottom: 12px;
    width: calc(100vw - 24px);
  }
}

@keyframes channelLoop {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(-50%, 0, 0);
  }
}

@keyframes dividerFlow {
  from {
    background-position: 0 0, 0 0, 0 0;
  }
  to {
    background-position: 0 0, 260% 0, 120% 0;
  }
}

@keyframes dividerSweep {
  from {
    background-position: -180px 0;
  }
  to {
    background-position: calc(100% + 180px) 0;
  }
}

@keyframes dividerPulse {
  0%,
  100% {
    opacity: 0.62;
  }
  50% {
    opacity: 1;
  }
}

@keyframes limitedPulse {
  0%,
  100% {
    transform: translateY(0);
    box-shadow: 0 10px 22px rgba(255, 156, 78, 0.34);
  }
  50% {
    transform: translateY(-1px);
    box-shadow: 0 14px 28px rgba(255, 156, 78, 0.45);
  }
}
