:root {
  color-scheme: dark;
  --bg: #09050d;
  --bg-soft: #12081a;
  --surface: #1a0d24;
  --surface-light: #251132;
  --text: #f7f6ff;
  --muted: #c1b8c8;
  --primary: #46146e;
  --primary-light: #6b2ea0;
  --primary-neon: #b026ff;
  --primary-dark: #2d0a47;
  --accent: #26d980;
  --border: rgba(255, 255, 255, 0.11);
  --shadow: 0 18px 55px rgba(0, 0, 0, 0.28);
  --radius: 1.25rem;
  --container: 70rem;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Roboto", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1rem;
  line-height: 1.6;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.container {
  width: min(calc(100% - 2rem), var(--container));
  margin-inline: auto;
}

.svg-filters {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.skip-link {
  position: fixed;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 100;
  padding: 0.65rem 1rem;
  border-radius: 0.5rem;
  background: white;
  color: black;
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  border-bottom: 1px solid rgba(176, 38, 255, 0.3);
  background: linear-gradient(to top right, rgba(45, 10, 71, 0.6), rgba(70, 20, 110, 0.6));
  box-shadow: 0 8px 28px rgba(20, 4, 32, 0.28);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
}

.header-content {
  display: grid;
  grid-template-columns: minmax(3.25rem, 1fr) auto minmax(3.25rem, 1fr);
  width: calc(100% - 1rem);
  min-height: 4.5rem;
  align-items: center;
}

.brand {
  display: inline-flex;
  justify-self: start;
  align-items: center;
}

.brand-logo {
  display: block;
  width: auto;
  height: 2.65rem;
  object-fit: contain;
}

.header-title {
  grid-column: 2;
  max-width: 62vw;
  color: white;
  font-size: clamp(0.9rem, 3.6vw, 1.08rem);
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  opacity: 1;
  transform: translateY(0);
  transition: opacity 220ms ease, transform 220ms ease;
}

.header-title.is-changing {
  opacity: 0;
  transform: translateY(-0.45rem);
}

.header-devices {
  display: flex;
  min-width: 6rem;
  align-items: center;
  justify-self: end;
  justify-content: flex-end;
  gap: clamp(0.2rem, 0.7vw, 0.38rem);
}

.header-device-icon {
  display: block;
  width: auto;
  height: 1.5rem;
  object-fit: contain;
}

.header-device-icon.device-smartphone {
  height: 1.6rem;
}

.header-device-icon.device-tvbox {
  height: 1.75rem;
}

.hero {
  position: relative;
  display: grid;
  min-height: min(46rem, calc(100svh - 4.5rem));
  place-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 80% 20%, rgba(176, 38, 255, 0.18), transparent 28rem),
    radial-gradient(circle at 10% 80%, rgba(107, 46, 160, 0.18), transparent 26rem),
    linear-gradient(180deg, #16091f 0%, var(--bg) 100%);
}

.hero::after {
  position: absolute;
  inset: auto -15% -13rem;
  height: 19rem;
  border-radius: 50%;
  background: rgba(176, 38, 255, 0.11);
  content: "";
  filter: blur(70px);
}

.hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  width: min(calc(100% - 2rem), 78rem);
  align-items: center;
  gap: clamp(2.5rem, 6vw, 5rem);
  padding-block: clamp(3.5rem, 8vw, 5.5rem);
  text-align: center;
}

.hero-copy {
  min-width: 0;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 0.85rem;
  color: var(--primary-neon);
  font-size: 0.73rem;
  font-weight: 900;
  letter-spacing: 0.16em;
}

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

h1,
h2 {
  line-height: 1.08;
  letter-spacing: -0.035em;
}

h1 {
  max-width: 16ch;
  margin-inline: auto;
  margin-bottom: 1.4rem;
  font-size: clamp(2.5rem, 9vw, 5.3rem);
}

.hero-highlight {
  color: var(--primary-neon);
  text-shadow: 0 0 34px rgba(176, 38, 255, 0.34);
}

h2 {
  margin-bottom: 1rem;
  font-size: clamp(2rem, 6vw, 3.4rem);
}

h3 {
  margin-bottom: 1.2rem;
  font-size: 1.2rem;
}

.hero-description {
  max-width: 42rem;
  margin: 0 auto 2rem;
  color: var(--muted);
  font-size: clamp(1.05rem, 3.5vw, 1.25rem);
}

.hero-actions {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.75rem;
}

.hero-note {
  margin: 1.1rem 0 0;
  color: #8d899f;
  font-size: 0.83rem;
}

.hero-visual {
  width: min(100%, 42rem);
  aspect-ratio: 3 / 2;
  margin: 0;
  justify-self: center;
  overflow: hidden;
  border: 1px solid rgba(176, 38, 255, 0.3);
  border-radius: clamp(1rem, 2vw, 1.5rem);
  background: var(--surface);
  box-shadow: 0 1.5rem 5rem rgba(45, 10, 71, 0.42);
}

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

.poster-reel-section {
  overflow: hidden;
  border-block: 1px solid rgba(176, 38, 255, 0.2);
  padding-block: 2.4rem;
  background:
    radial-gradient(circle at 50% 0%, rgba(70, 20, 110, 0.22), transparent 32rem),
    var(--bg-soft);
}

.poster-reel {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, black 5%, black 95%, transparent);
  mask-image: linear-gradient(90deg, transparent, black 5%, black 95%, transparent);
}

.poster-track {
  --poster-gap: 0.22rem;
  display: flex;
  width: max-content;
  transform: translate3d(0, 0, 0);
  will-change: transform;
}

.poster-set {
  display: flex;
  flex-shrink: 0;
  gap: var(--poster-gap);
  padding-right: var(--poster-gap);
}

.poster-card {
  position: relative;
  display: flex;
  width: clamp(8rem, 15vw, 11rem);
  aspect-ratio: 2 / 3;
  flex: 0 0 auto;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  border: 0;
  border-radius: 0;
  padding: 1.1rem 1.4rem;
  background: var(--primary-neon);
  clip-path: polygon(0 0, 88% 0, 100% 100%, 12% 100%);
  filter: drop-shadow(0 12px 18px rgba(0, 0, 0, 0.3));
  isolation: isolate;
}

.poster-card img {
  position: absolute;
  inset: 1px;
  z-index: -2;
  display: block;
  width: calc(100% - 2px);
  height: calc(100% - 2px);
  object-fit: cover;
  clip-path: polygon(0 0, 88% 0, 100% 100%, 12% 100%);
}

.poster-card::after {
  position: absolute;
  inset: 45% 0 0;
  z-index: -1;
  background: linear-gradient(transparent, rgba(5, 2, 9, 0.94));
  content: "";
}

.poster-card strong {
  position: relative;
  z-index: 1;
  display: -webkit-box;
  max-width: 100%;
  overflow: hidden;
  overflow-wrap: anywhere;
  font-size: clamp(0.8rem, 1.6vw, 1rem);
  line-height: 1.1;
  white-space: normal;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.button {
  display: inline-flex;
  min-height: 3.25rem;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 0.85rem;
  padding: 0.8rem 1.25rem;
  font-weight: 800;
  line-height: 1.2;
  transition: transform 160ms ease, background-color 160ms ease, border-color 160ms ease;
}

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

.button:focus-visible,
.download-card:focus-visible,
.brand:focus-visible,
.floating-whatsapp:focus-visible {
  outline: 3px solid var(--primary-neon);
  outline-offset: 3px;
}

.button-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  box-shadow: 0 12px 30px rgba(70, 20, 110, 0.42);
}

.button-secondary,
.button-outline,
.button-card {
  border-color: var(--border);
  background: rgba(255, 255, 255, 0.045);
}

.button-small {
  min-height: 2.65rem;
  padding: 0.62rem 0.8rem;
  font-size: 0.78rem;
}

.button-light {
  flex-shrink: 0;
  background: var(--text);
  color: #17112a;
}

.button-whatsapp {
  flex-shrink: 0;
  background: var(--accent);
  color: #05170e;
}

.section {
  padding-block: 4.75rem;
}

.section-alt {
  border-block: 1px solid var(--border);
  background: var(--bg-soft);
}

.section-heading {
  max-width: 42rem;
  margin: 0 auto 2.3rem;
  text-align: center;
}

.section-heading p,
.split-layout p,
.compatibility-layout p,
.trial-card p {
  color: var(--muted);
}

.pricing-grid {
  display: grid;
  gap: 1rem;
}

.pricing-note {
  max-width: 48rem;
  margin: 1.5rem auto 0;
  color: var(--muted);
  font-size: 0.9rem;
  text-align: center;
}

.price-card {
  position: relative;
  display: flex;
  min-width: 0;
  flex-direction: column;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  background: var(--surface);
  box-shadow: var(--shadow);
  cursor: pointer;
  transform: translateY(0);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.price-card:hover,
.price-card:focus-visible {
  border-color: var(--primary-neon);
  outline: none;
  box-shadow: 0 18px 55px rgba(176, 38, 255, 0.2);
  transform: translateY(-0.15rem);
}

.price-card > p:not(.price) {
  margin-bottom: 1.5rem;
  color: var(--muted);
}

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

.price-card-featured {
  background: linear-gradient(160deg, rgba(70, 20, 110, 0.78), var(--surface) 62%);
  box-shadow: 0 18px 55px rgba(176, 38, 255, 0.16);
}

.price-badge {
  position: absolute;
  top: 0;
  right: 1rem;
  border-radius: 0 0 0.6rem 0.6rem;
  padding: 0.35rem 0.65rem;
  background: var(--primary-neon);
  color: #17051f;
  font-size: 0.65rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.price {
  margin-bottom: 0.15rem;
  color: var(--primary-neon);
  font-size: 2.5rem;
  font-weight: 900;
  line-height: 1.28;
  letter-spacing: -0.04em;
  text-align: center;
  animation: price-color-cycle 4.8s ease-in-out infinite;
}

.price span {
  font-size: 0.9rem;
  letter-spacing: 0;
}

.plan-duration {
  width: 50%;
  align-self: flex-end;
  text-align: center;
  transform: translateY(0.55rem);
}

.price-card:nth-child(2) .price {
  animation-delay: -1.2s;
}

.price-card:nth-child(3) .price {
  animation-delay: -2.4s;
}

.price-card:nth-child(4) .price {
  animation-delay: -3.6s;
}

@keyframes price-color-cycle {
  0%,
  100% {
    color: var(--primary-light);
    text-shadow: 0 0 12px rgba(107, 46, 160, 0.16);
  }

  50% {
    color: var(--primary-neon);
    text-shadow: 0 0 22px rgba(176, 38, 255, 0.38);
  }
}

.split-layout {
  display: grid;
  gap: 2rem;
}

.content-highlight {
  display: block;
  color: var(--primary-neon);
  text-shadow: 0 0 28px rgba(176, 38, 255, 0.22);
}

.content-carousel {
  min-width: 0;
}

.content-carousel-stage {
  position: relative;
}

.content-carousel-viewport {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: 0 20px 55px rgba(0, 0, 0, 0.32);
}

.content-carousel-track {
  display: flex;
  transform: translateX(0);
  transition: transform 420ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.content-slide {
  position: relative;
  min-width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.content-slide::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(9, 5, 13, 0.46));
  content: "";
  pointer-events: none;
}

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

.content-slide:nth-child(2) img {
  object-position: 42% center;
}

.content-slide:nth-child(3) img {
  object-position: 58% center;
}

.content-slide:nth-child(4) img {
  object-position: 68% center;
}

.content-slide:nth-child(5) img {
  object-position: 32% center;
}

.content-carousel-control {
  position: absolute;
  top: 50%;
  z-index: 2;
  display: grid;
  width: 2.25rem;
  height: 2.25rem;
  border: 0;
  border-radius: 50%;
  padding: 0;
  place-items: center;
  background: transparent;
  color: white;
  cursor: pointer;
  transform: translateY(-50%);
}

.content-carousel-control::before {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  background: rgba(18, 8, 26, 0.78);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
  content: "";
  transform: scale(1);
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}

.content-carousel-control:hover::before,
.content-carousel-control:focus-visible::before {
  border-color: var(--primary-neon);
  background: var(--primary);
  transform: scale(1.08);
}

.content-carousel-control svg {
  position: relative;
  z-index: 1;
  display: block;
  width: 1.2rem;
  height: 1.2rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.5;
  transform: scale(1);
  transition: transform 180ms ease;
}

.content-carousel-control:hover svg,
.content-carousel-control:focus-visible svg {
  transform: scale(1.08);
}

.content-carousel-previous {
  left: 0;
  transform: translate(-50%, -50%);
}

.content-carousel-next {
  right: 0;
  transform: translate(50%, -50%);
}

.content-carousel-caption {
  display: flex;
  min-height: 3.5rem;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border-bottom: 1px solid var(--border);
  padding: 0.9rem 0.1rem 0.75rem;
}

.content-carousel-title {
  color: white;
  font-size: clamp(1.05rem, 3.5vw, 1.3rem);
}

.content-carousel-counter {
  flex-shrink: 0;
  color: var(--primary-neon);
  font-size: 0.8rem;
  font-weight: 700;
}

.content-carousel-dots {
  display: flex;
  justify-content: center;
  gap: 0.45rem;
  padding-top: 0.85rem;
}

.content-carousel-dots button {
  width: 0.5rem;
  height: 0.5rem;
  border: 0;
  border-radius: 999px;
  padding: 0;
  background: rgba(255, 255, 255, 0.28);
  cursor: pointer;
  transition: width 180ms ease, background 180ms ease;
}

.content-carousel-dots button.is-active {
  width: 1.5rem;
  background: var(--primary-neon);
}

.content-carousel-dots button:focus-visible {
  outline: 2px solid white;
  outline-offset: 3px;
}

.support-section {
  padding-block: 4.75rem;
  border-bottom: 0;
}

.compatibility-section {
  border-top: 0;
}

.support-layout {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.support-copy,
.support-action {
  min-width: 0;
}

.support-copy p {
  max-width: 42rem;
  margin-bottom: 0;
  color: var(--muted);
}

.support-action {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.85rem;
}

.support-badge {
  color: #e8c8ff;
  font-size: 0.82rem;
  font-weight: 700;
}

.referral-card,
.trial-card {
  border: 1px solid var(--border);
  border-radius: calc(var(--radius) + 0.25rem);
  padding: 1.6rem;
}

.compatibility-layout {
  display: grid;
  gap: 2rem;
  align-items: center;
}

.compatibility-logos {
  display: grid;
  min-height: 11rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
  gap: 0.65rem;
  border: 1px dashed rgba(176, 38, 255, 0.62);
  border-radius: 1rem;
  padding: 0.8rem;
  background: rgba(9, 5, 13, 0.2);
}

.compatibility-logo-card {
  display: grid;
  min-width: 0;
  min-height: 4.5rem;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(176, 38, 255, 0.13);
  border-radius: 0.7rem;
  background: rgba(176, 38, 255, 0.045);
}

.compatibility-logo {
  display: block;
  width: 76%;
  height: 3.5rem;
  object-fit: contain;
  filter: brightness(0) saturate(100%) invert(23%) sepia(100%) saturate(6428%) hue-rotate(278deg) brightness(116%) contrast(120%);
}

.compatibility-logo-google {
  width: 58%;
  height: 4rem;
  filter: url("#google-play-recolor");
}

.compatibility-logo-lg {
  width: 82%;
}

.compatibility-logo-samsung {
  width: 118%;
  height: 5.2rem;
}

.compatibility-logo-roku {
  width: 94%;
  height: 4.7rem;
}

.compatibility-logo-windows,
.compatibility-logo-chromecast {
  width: 62%;
  height: 3.4rem;
}

.trial-section {
  padding-top: 0;
}

.trial-card {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
  justify-content: space-between;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  box-shadow: 0 22px 60px rgba(70, 20, 110, 0.38);
}

.trial-card .eyebrow {
  color: #f1dfff;
}

.trial-card p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.82);
}

@property --referral-flare-angle {
  syntax: "<angle>";
  inherits: false;
  initial-value: 0deg;
}

.referral-card {
  --referral-flare-angle: 0deg;
  position: relative;
  isolation: isolate;
  display: grid;
  gap: 1.5rem;
  border-color: rgba(255, 61, 222, 0.72);
  background: var(--surface);
  box-shadow: 0 0 0 1px rgba(176, 38, 255, 0.08), 0 18px 48px rgba(45, 10, 71, 0.24);
}

.referral-card::before {
  position: absolute;
  inset: -1px;
  z-index: 2;
  border-radius: inherit;
  padding: 2px;
  background: conic-gradient(
    from var(--referral-flare-angle),
    transparent 0deg 300deg,
    rgba(255, 61, 222, 0.12) 316deg,
    #ff65e6 332deg,
    #ffd6ff 340deg,
    var(--primary-neon) 348deg,
    transparent 360deg
  );
  content: "";
  filter: drop-shadow(0 0 6px rgba(255, 61, 222, 0.72));
  pointer-events: none;
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask-composite: exclude;
  animation: referral-border-flare 4.5s linear infinite;
}

@keyframes referral-border-flare {
  to {
    --referral-flare-angle: 360deg;
  }
}

.referral-card p:last-child {
  margin-bottom: 0;
}

.referral-icon {
  display: grid;
  width: 5rem;
  aspect-ratio: 1;
  place-items: center;
  border-radius: 1.2rem;
  background: var(--surface-light);
  font-size: 2.5rem;
}

.download-grid {
  display: grid;
  gap: 0.8rem;
}

.download-card {
  display: flex;
  min-height: 5.4rem;
  align-items: center;
  gap: 1rem;
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 1rem;
  background: var(--surface);
  transition: border-color 160ms ease, transform 160ms ease;
}

.download-card:hover {
  border-color: var(--primary-neon);
  transform: translateY(-2px);
}

.download-card small {
  display: block;
  color: var(--muted);
}

.download-icon {
  display: block;
  width: 1.8rem;
  height: 1.8rem;
  flex: 0 0 1.8rem;
  object-fit: contain;
  filter: brightness(0) saturate(100%) invert(23%) sepia(100%) saturate(6428%) hue-rotate(278deg) brightness(116%) contrast(120%);
}

.download-icon-google {
  filter: url("#google-play-recolor");
}

.download-icon-wide {
  width: 2.2rem;
  flex-basis: 2.2rem;
}

.site-footer {
  border-top: 1px solid var(--border);
  padding-block: 2rem 6.5rem;
  color: var(--muted);
  font-size: 0.85rem;
}

.footer-content p {
  margin-bottom: 0.45rem;
}

.floating-whatsapp {
  position: fixed;
  right: 1rem;
  bottom: max(1rem, env(safe-area-inset-bottom));
  z-index: 25;
  display: block;
  width: 3.8rem;
  height: 3.8rem;
  border-radius: 50%;
  filter: drop-shadow(0 12px 18px rgba(3, 18, 10, 0.45));
  transform: scale(1);
  transform-origin: center;
  transition: transform 180ms ease, filter 180ms ease;
}

.floating-whatsapp img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.floating-whatsapp:hover,
.floating-whatsapp:focus-visible {
  filter: drop-shadow(0 15px 24px rgba(3, 18, 10, 0.56));
  transform: scale(1.12);
}

.floating-whatsapp:active {
  transform: scale(1.04);
}

@media (min-width: 40rem) {
  .container {
    width: min(calc(100% - 3rem), var(--container));
  }

  .hero-actions {
    flex-direction: row;
  }

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

  .compatibility-layout {
    grid-template-columns: minmax(12rem, 0.75fr) minmax(0, 1.4fr);
  }

  .referral-card {
    grid-template-columns: minmax(12rem, 0.75fr) minmax(0, 1.4fr);
    padding: 2.5rem;
  }

  .referral-card {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .trial-card {
    flex-direction: row;
    align-items: center;
    padding: 2.5rem;
  }

  .support-layout {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .support-action {
    flex: 0 0 auto;
    align-items: flex-end;
  }

}

@media (max-width: 34rem) {
  .content-carousel {
    width: calc(100% - 1rem);
    margin-inline: auto;
  }

  .header-content {
    grid-template-columns: minmax(4.8rem, 1fr) auto minmax(4.8rem, 1fr);
  }

  .brand-logo {
    height: 2.15rem;
  }

  .header-title {
    max-width: 40vw;
    font-size: 0.84rem;
  }

  .header-devices {
    min-width: 4.8rem;
    gap: 0.15rem;
  }

  .header-device-icon {
    height: 1rem;
  }

  .header-device-icon.device-smartphone {
    height: 1.08rem;
  }

  .header-device-icon.device-tvbox {
    height: 1.18rem;
  }
}

@media (min-width: 60rem) {
  .hero-content {
    grid-template-columns: minmax(0, 0.88fr) minmax(28rem, 1.12fr);
    text-align: left;
  }

  .hero-content h1 {
    margin-inline: 0;
    font-size: clamp(3.5rem, 5.2vw, 4.7rem);
  }

  .hero-description {
    margin-inline: 0;
  }

  .hero-actions {
    justify-content: flex-start;
  }

  .section {
    padding-block: 6.5rem;
  }

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

  .split-layout {
    grid-template-columns: 0.85fr 1.15fr;
    gap: 5rem;
    align-items: center;
  }

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

  .site-footer {
    padding-bottom: 2rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .price {
    color: var(--primary-neon);
    animation: none;
  }

  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .referral-card::before {
    animation: none;
  }
}
