/* MOB.TV — Premium minimal landing
   Type system: Onest (sans) for everything; Instrument Serif for an occasional accent display word.
   Color system: pure black canvas, near-white text, soft yellow accent.
*/

:root {
  --bg: #020202;
  --bg-elev: #070707;
  --bg-soft: #0c0c0c;
  --fg: #ffffff;
  --fg-dim: #a1a1aa;
  --fg-faint: #52525b;
  --accent: #facc15;
  --accent-warm: #f59e0b;
  --accent-deep: #b45309;
  --rule: rgba(255, 255, 255, 0.07);
  --rule-strong: rgba(255, 255, 255, 0.14);
  --glow: rgba(250, 204, 21, 0.35);

  --font-sans: 'Onest', -apple-system, system-ui, sans-serif;
  --font-display: 'Instrument Serif', 'Onest', serif;
  --font-mono: 'JetBrains Mono', ui-monospace, monospace;

  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-expo: cubic-bezier(0.19, 1, 0.22, 1);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

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

html,
body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-sans);
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  -webkit-tap-highlight-color: transparent;
}

body {
  min-height: 100vh;
  line-height: 1.45;
  letter-spacing: -0.005em;
}

::selection {
  background: var(--accent);
  color: #000;
}

img {
  display: block;
  max-width: 100%;
}

button {
  font: inherit;
  color: inherit;
  background: none;
  border: 0;
  cursor: pointer;
}

/* ─── Layout shells ──────────────────────────────────────────────── */
.shell {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 22px;
}

@media (min-width: 768px) {
  .shell {
    padding: 0 56px;
  }
}

@media (min-width: 1200px) {
  .shell {
    padding: 0 88px;
  }
}

section {
  position: relative;
}

.section-pad {
  padding: clamp(96px, 18vw, 220px) 0;
}

.section-pad-tight {
  padding: clamp(64px, 10vw, 140px) 0;
}

/* ─── Scroll progress bar ───────────────────────────────────────── */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  background: var(--accent);
  width: 0;
  z-index: 200;
  transform-origin: left;
  transition: width 80ms linear, opacity 300ms var(--ease);
  box-shadow: 0 0 12px rgba(250, 204, 21, 0.5);
}

/* ─── Nav (mobile-first) ─────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  justify-content: center;
  pointer-events: none;
  padding: 12px 14px;
  transition: padding 300ms var(--ease);
}

.nav.scrolled {
  padding: 8px 14px;
}

.nav-inner {
  pointer-events: auto;
  width: 100%;
  max-width: 760px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 10px 10px 18px;
  background: rgba(10, 10, 10, 0.55);
  backdrop-filter: saturate(180%) blur(24px);
  -webkit-backdrop-filter: saturate(180%) blur(24px);
  border: 1px solid var(--rule);
  border-radius: 100px;
  font-size: 13px;
  letter-spacing: 0.01em;
  transition: background 300ms var(--ease), border-color 300ms var(--ease);
}

.nav.scrolled .nav-inner {
  background: rgba(8, 8, 8, 0.78);
  border-color: var(--rule-strong);
}

.nav-brand {
  font-weight: 600;
  letter-spacing: -0.02em;
  font-size: 15px;
  color: var(--fg);
  text-decoration: none;
  flex-shrink: 0;
}

.nav-brand .dot {
  color: var(--accent);
}

/* Inline scroll-spy track (desktop) */
.nav-track {
  display: none;
  position: relative;
  flex: 1;
  justify-content: center;
  align-items: center;
  gap: 4px;
}

.nav-track a {
  position: relative;
  color: var(--fg-dim);
  text-decoration: none;
  padding: 8px 14px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  transition: color 220ms var(--ease);
  z-index: 2;
}

.nav-track a.active {
  color: var(--fg);
}

.nav-track a:hover {
  color: var(--fg);
}

.nav-indicator {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  height: calc(100% - 0px);
  background: rgba(255, 255, 255, 0.08);
  border-radius: 100px;
  z-index: 1;
  transition: left 520ms var(--ease-out), width 520ms var(--ease-out), opacity 220ms var(--ease);
  pointer-events: none;
}

@media (min-width: 820px) {
  .nav-track {
    display: flex;
  }
}

.nav-cta {
  background: var(--fg);
  color: #000;
  padding: 9px 16px;
  border-radius: 100px;
  font-weight: 500;
  font-size: 13px;
  letter-spacing: -0.005em;
  text-decoration: none;
  transition: transform 220ms var(--ease), background 220ms var(--ease);
  display: none;
}

@media (min-width: 820px) {
  .nav-cta {
    display: inline-flex;
  }
}

.nav-cta:hover {
  transform: translateY(-1px);
  background: var(--accent);
}

/* Hamburger trigger (mobile) */
.nav-menu-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--rule);
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  transition: background 220ms var(--ease);
  flex-shrink: 0;
}

.nav-menu-btn:hover {
  background: rgba(255, 255, 255, 0.1);
}

.nav-menu-btn span {
  display: block;
  width: 16px;
  height: 1.5px;
  background: var(--fg);
  border-radius: 2px;
  transition: transform 380ms var(--ease-out), opacity 200ms var(--ease);
  transform-origin: center;
}

.nav-menu-btn[data-open="true"] span:nth-child(1) {
  transform: translateY(3.25px) rotate(45deg);
}

.nav-menu-btn[data-open="true"] span:nth-child(2) {
  transform: translateY(-3.25px) rotate(-45deg);
}

@media (min-width: 820px) {
  .nav-menu-btn {
    display: none;
  }
}

/* Mobile fullscreen menu */
.menu-sheet {
  position: fixed;
  inset: 0;
  z-index: 99;
  background: rgba(0, 0, 0, 0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 380ms var(--ease);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 28px;
}

.menu-sheet.open {
  opacity: 1;
  pointer-events: auto;
}

.menu-sheet ol {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.menu-sheet li {
  overflow: hidden;
  border-bottom: 1px solid var(--rule);
}

.menu-sheet ol a {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  text-decoration: none;
  color: var(--fg);
  font-size: clamp(40px, 11vw, 64px);
  font-weight: 600;
  letter-spacing: -0.035em;
  padding: 18px 0;
  line-height: 1;
  transform: translateY(80%);
  opacity: 0;
  transition: transform 700ms var(--ease-out), opacity 500ms var(--ease-out), color 220ms var(--ease);
}

.menu-sheet ol a .idx {
  font-size: 12px;
  letter-spacing: 0.12em;
  color: var(--fg-faint);
  font-weight: 500;
  font-family: ui-monospace, monospace;
}

.menu-sheet.open ol a {
  transform: translateY(0);
  opacity: 1;
}

.menu-sheet.open li:nth-child(1) a {
  transition-delay: 120ms;
}

.menu-sheet.open li:nth-child(2) a {
  transition-delay: 180ms;
}

.menu-sheet.open li:nth-child(3) a {
  transition-delay: 240ms;
}

.menu-sheet.open li:nth-child(4) a {
  transition-delay: 300ms;
}

.menu-sheet.open li:nth-child(5) a {
  transition-delay: 360ms;
}

.menu-sheet ol a:active {
  color: var(--accent);
}

.menu-sheet-cta {
  margin-top: 48px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 500ms var(--ease-out) 480ms, transform 500ms var(--ease-out) 480ms;
}

.menu-sheet.open .menu-sheet-cta {
  opacity: 1;
  transform: translateY(0);
}

.menu-sheet-foot {
  position: absolute;
  bottom: 32px;
  left: 28px;
  right: 28px;
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--fg-faint);
  opacity: 0;
  transition: opacity 400ms var(--ease) 600ms;
}

.menu-sheet.open .menu-sheet-foot {
  opacity: 1;
}

body.menu-open {
  overflow: hidden;
}

/* ─── Type scale ─────────────────────────────────────────────────── */
.eyebrow {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg-dim);
}

.display-xxl {
  font-size: clamp(64px, 14vw, 220px);
  line-height: 0.92;
  letter-spacing: -0.045em;
  font-weight: 600;
}

.display-xl {
  font-size: clamp(48px, 9vw, 132px);
  line-height: 0.96;
  letter-spacing: -0.035em;
  font-weight: 600;
}

.display-l {
  font-size: clamp(40px, 6.4vw, 96px);
  line-height: 1.02;
  letter-spacing: -0.03em;
  font-weight: 600;
}

.display-m {
  font-size: clamp(32px, 4.4vw, 64px);
  line-height: 1.08;
  letter-spacing: -0.025em;
  font-weight: 600;
}

.lede {
  font-size: clamp(18px, 1.6vw, 22px);
  line-height: 1.5;
  color: var(--fg-dim);
  letter-spacing: -0.005em;
  max-width: 38ch;
}

.lede-wide {
  max-width: 56ch;
}

.kicker {
  font-size: clamp(15px, 1.2vw, 17px);
  line-height: 1.55;
  color: var(--fg-dim);
}

/* ─── Buttons ────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 28px;
  border-radius: 100px;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: -0.005em;
  transition: transform 220ms var(--ease), background 220ms var(--ease), color 220ms var(--ease), box-shadow 300ms var(--ease);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  -webkit-user-select: none;
  user-select: none;
  touch-action: manipulation;
  min-height: 48px;
}

.btn-primary {
  background: var(--accent);
  color: #0a0a0a;
}

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

.btn-primary:active {
  transform: translateY(0) scale(0.97);
}

/* Subtle shine reflection */
.btn-primary::before,
.cta-cinematic::before {
  content: '';
  position: absolute;
  top: 0;
  left: -120%;
  width: 60%;
  height: 100%;
  background: linear-gradient(115deg, transparent 0%, rgba(255, 255, 255, 0.25) 50%, transparent 100%);
  transform: skewX(-18deg);
  z-index: 1;
  animation: shine 5s ease-in-out infinite;
  pointer-events: none;
}

@keyframes shine {

  0%,
  35% {
    left: -120%;
  }

  60%,
  100% {
    left: 160%;
  }
}

.btn-ghost {
  color: var(--fg);
  border: 1px solid var(--rule-strong);
}

.btn-ghost:hover {
  background: var(--bg-soft);
}

.btn-ghost:active {
  transform: scale(0.97);
}

/* Ripple injected by JS on press */
.btn .ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.2);
  transform: scale(0);
  animation: rippleAnim 620ms var(--ease-out);
  pointer-events: none;
}

.btn-ghost .ripple {
  background: rgba(255, 255, 255, 0.14);
}

@keyframes rippleAnim {
  to {
    transform: scale(2.4);
    opacity: 0;
  }
}

.btn-link {
  color: var(--accent);
  font-weight: 500;
  font-size: 15px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 220ms var(--ease);
  text-decoration: none;
  padding: 8px 0;
}

.btn-link:hover {
  gap: 12px;
}

.btn-link .arrow {
  display: inline-block;
  transition: transform 220ms var(--ease);
}

.btn-link:hover .arrow {
  transform: translateX(2px);
}

/* ─── Hero ───────────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 120px 22px 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

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

.hero-bg canvas {
  width: 100%;
  height: 100%;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
}

.hero-eyebrow {
  margin-bottom: 28px;
  opacity: 0;
  transform: translateY(12px);
  animation: rise 1100ms var(--ease-out) 200ms forwards;
}

/* Wordmark with per-letter staggered reveal */
.hero-wordmark {
  font-size: clamp(72px, 22vw, 280px);
  font-weight: 600;
  letter-spacing: -0.055em;
  line-height: 0.85;
  margin: 0 0 28px;
  display: flex;
  justify-content: center;
  align-items: baseline;
  flex-wrap: nowrap;
}

.hero-wordmark .letter {
  display: inline-block;
  opacity: 0;
  transform: translateY(60%) scale(1.4);
  animation: letterRise 1100ms var(--ease-out) forwards;
}

.hero-wordmark .dot {
  color: var(--accent);
  transform: translateY(-0.04em);
}

@keyframes letterRise {
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.hero-pitch {
  font-size: clamp(20px, 5.2vw, 34px);
  line-height: 1.25;
  letter-spacing: -0.02em;
  max-width: 20ch;
  margin: 0 auto 16px;
  opacity: 0;
  transform: translateY(20px);
  animation: rise 1300ms var(--ease-out) 900ms forwards;
}

.hero-sub {
  color: var(--fg-dim);
  font-size: clamp(14px, 3.6vw, 17px);
  max-width: 44ch;
  margin: 0 auto 40px;
  opacity: 0;
  transform: translateY(16px);
  animation: rise 1200ms var(--ease-out) 1100ms forwards;
}

.hero-cta-row {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  opacity: 0;
  transform: translateY(16px);
  animation: rise 1200ms var(--ease-out) 1300ms forwards;
}

@media (min-width: 560px) {
  .hero-cta-row {
    flex-direction: row;
    gap: 24px;
  }
}

.hero-scroll-cue {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--fg-faint);
  opacity: 0;
  animation: rise 1200ms var(--ease-out) 1700ms forwards;
}

.hero-scroll-cue .line {
  width: 1px;
  height: 36px;
  background: linear-gradient(180deg, transparent, var(--fg-faint));
  position: relative;
  overflow: hidden;
}

.hero-scroll-cue .line::after {
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  right: 0;
  height: 60%;
  background: linear-gradient(180deg, transparent, var(--accent));
  animation: slide 2200ms ease-in-out infinite;
}

@keyframes slide {
  0% {
    top: -100%;
  }

  100% {
    top: 100%;
  }
}

@keyframes rise {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ─── Statement section ──────────────────────────────────────────── */
.statement {
  padding: clamp(140px, 22vw, 260px) 0;
  text-align: center;
}

.statement h2 {
  max-width: 18ch;
  margin: 0 auto 36px;
}

.statement p {
  margin: 0 auto;
}

.marquee-row {
  margin-top: clamp(80px, 12vw, 160px);
  overflow: hidden;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  padding: 28px 0;
  white-space: nowrap;
}

.marquee-track {
  display: inline-flex;
  gap: 56px;
  animation: marquee 38s linear infinite;
  font-size: clamp(20px, 2.2vw, 32px);
  font-weight: 500;
  letter-spacing: -0.02em;
}

.marquee-track .dim {
  color: var(--fg-faint);
}

.marquee-track .accent {
  color: var(--accent);
}

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

/* ─── Feature storytelling ───────────────────────────────────────── */
.feature {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
}

@media (min-width: 960px) {
  .feature {
    grid-template-columns: 1fr 1.1fr;
  }

  .feature.reverse .feature-text {
    order: 2;
  }
}

.feature+.feature {
  margin-top: clamp(120px, 16vw, 200px);
}

.feature-text {
  max-width: 480px;
}

.feature-text h3 {
  margin: 16px 0 20px;
}

.feature-meta {
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid var(--rule);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.feature-meta dt {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg-faint);
  margin-bottom: 6px;
}

.feature-meta dd {
  font-size: 17px;
  color: var(--fg);
  font-weight: 500;
  letter-spacing: -0.01em;
}

/* visual stage */
.stage {
  aspect-ratio: 4/3;
  background: var(--bg-soft);
  border-radius: 24px;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--rule);
}

.stage.tall {
  aspect-ratio: 5/6;
}

.stage.wide {
  aspect-ratio: 16/10;
}

/* Football scoreboard visual */
.viz-football {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  padding: 28px;
  gap: 16px;
  background: radial-gradient(110% 60% at 50% 110%, rgba(250, 204, 21, 0.06), transparent 60%), #0a0a0a;
}

.viz-football .live-pill {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--rule);
  border-radius: 100px;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg);
}

.viz-football .live-pill .pulse {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #ef4444;
  box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.7);
  animation: pulse 1.6s infinite;
}

@keyframes pulse {
  70% {
    box-shadow: 0 0 0 8px rgba(239, 68, 68, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(239, 68, 68, 0);
  }
}

.viz-football .score {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  margin-top: auto;
}

.viz-football .team {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.viz-football .team.right {
  text-align: right;
  align-items: flex-end;
}

.viz-football .team .crest {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--rule-strong);
  background: #161616;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.viz-football .team .name {
  font-size: 13px;
  color: var(--fg-dim);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.viz-football .digits {
  display: flex;
  align-items: baseline;
  gap: 12px;
  font-size: clamp(48px, 6vw, 84px);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.viz-football .digits .sep {
  color: var(--fg-faint);
  font-weight: 300;
}

.viz-football .clock {
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--fg-dim);
  font-variant-numeric: tabular-nums;
}

/* Library grid for films */
.viz-library {
  position: absolute;
  inset: 0;
  padding: 24px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(3, 1fr);
  gap: 10px;
  background: #050505;
}

.viz-library .tile {
  border-radius: 8px;
  background: linear-gradient(150deg, #1a1a1a 0%, #0d0d0d 100%);
  position: relative;
  overflow: hidden;
  transition: transform 600ms var(--ease);
}

.viz-library .tile::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0, 0, 0, 0.7));
}

.viz-library .tile.featured {
  grid-column: span 2;
  grid-row: span 2;
  background: linear-gradient(135deg, #1f1f1f, #0a0a0a);
}

.viz-library .tile.featured::after {
  content: '';
  position: absolute;
  top: 12px;
  left: 12px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.9;
}

.viz-library .tile-label {
  position: absolute;
  bottom: 8px;
  left: 10px;
  right: 10px;
  font-size: 9px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--fg-dim);
  z-index: 2;
}

/* Channel list */
.viz-channels {
  position: absolute;
  inset: 0;
  padding: 28px;
  display: flex;
  flex-direction: column;
  background: #060606;
}

.viz-channels .row {
  display: grid;
  grid-template-columns: 36px 1fr auto;
  align-items: center;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid var(--rule);
}

.viz-channels .num {
  font-size: 13px;
  color: var(--fg-faint);
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.04em;
}

.viz-channels .name {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: -0.01em;
}

.viz-channels .now {
  font-size: 12px;
  color: var(--fg-dim);
  letter-spacing: 0.02em;
}

.viz-channels .row.active {
  position: relative;
}

.viz-channels .row.active::before {
  content: '';
  position: absolute;
  left: -28px;
  top: 50%;
  transform: translateY(-50%);
  width: 3px;
  height: 24px;
  background: var(--accent);
  border-radius: 2px;
}

.viz-channels .row.active .name {
  color: var(--accent);
}

/* Device matrix */
.viz-devices-grid {
  position: absolute;
  inset: 0;
  padding: 32px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 14px;
}

.viz-devices-grid .cell {
  border: 1px solid var(--rule);
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 16px;
  background: #0a0a0a;
}

.viz-devices-grid .cell .icon {
  width: 100%;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--fg-faint);
}

.viz-devices-grid .cell .icon svg {
  width: 56%;
  height: auto;
}

.viz-devices-grid .cell .label {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg-dim);
}

/* Uptime / performance visual */
.viz-uptime {
  position: absolute;
  inset: 0;
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background:
    radial-gradient(60% 40% at 80% 20%, rgba(250, 204, 21, 0.08), transparent 70%),
    #060606;
}

.viz-uptime .big {
  font-size: clamp(56px, 8vw, 120px);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.viz-uptime .big .pct {
  font-size: 0.5em;
  color: var(--fg-dim);
  vertical-align: top;
  margin-left: 4px;
}

.viz-uptime .bars {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  height: 64px;
}

.viz-uptime .bars span {
  flex: 1;
  background: var(--fg);
  opacity: 0.18;
  border-radius: 2px;
  transition: height 400ms var(--ease);
}

.viz-uptime .legend {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-faint);
}

/* ─── Plans ──────────────────────────────────────────────────────── */
.plans {
  padding: clamp(140px, 18vw, 220px) 0;
}

.plans-head {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-bottom: clamp(64px, 8vw, 120px);
}

@media (min-width: 900px) {
  .plans-head {
    grid-template-columns: 1.2fr 1fr;
    align-items: end;
  }
}

.plans-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: var(--rule);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}

@media (min-width: 900px) {
  .plans-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.plan {
  background: var(--bg);
  padding: clamp(48px, 6vw, 88px) clamp(28px, 4vw, 56px);
  display: flex;
  flex-direction: column;
  gap: 32px;
  position: relative;
  transition: background 400ms var(--ease);
}

.plan:hover {
  background: #050505;
}

.plan-tag {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fg-faint);
}

.plan.featured .plan-tag {
  color: var(--accent);
}

.plan-name {
  font-size: clamp(48px, 6vw, 88px);
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 0.95;
}

.plan-price {
  display: flex;
  align-items: baseline;
  gap: 10px;
}

.plan-price .currency {
  font-size: 16px;
  color: var(--fg-dim);
  letter-spacing: 0.02em;
}

.plan-price .amount {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 500;
  letter-spacing: -0.03em;
  font-variant-numeric: tabular-nums;
  line-height: 1;
}

.plan-price .suffix {
  font-size: 13px;
  color: var(--fg-faint);
  letter-spacing: 0.04em;
}

.plan-includes {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.plan-includes li {
  font-size: 15px;
  color: var(--fg-dim);
  letter-spacing: -0.005em;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  line-height: 1.35;
}

.plan-includes li::before {
  content: '';
  width: 14px;
  height: 1px;
  background: var(--fg-faint);
  margin-top: 11px;
  flex: 0 0 14px;
}

.plan-cta {
  margin-top: auto;
}

.plan-cta a {
  font-size: 15px;
  letter-spacing: -0.005em;
}

/* ─── Device ecosystem section ───────────────────────────────────── */
.devices {
  padding: clamp(140px, 18vw, 220px) 0;
  text-align: center;
}

.devices h2 {
  max-width: 16ch;
  margin: 0 auto 32px;
}

.devices-lede {
  margin: 0 auto clamp(80px, 10vw, 140px);
}

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

@media (min-width: 768px) {
  .device-row {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1100px) {
  .device-row {
    grid-template-columns: repeat(6, 1fr);
  }
}

.device-cell {
  aspect-ratio: 3/4;
  border: 1px solid var(--rule);
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding: 28px 16px 22px;
  background: linear-gradient(180deg, #0a0a0a 0%, #050505 100%);
  position: relative;
  transition: border-color 300ms var(--ease), transform 400ms var(--ease);
}

.device-cell:hover {
  border-color: var(--rule-strong);
  transform: translateY(-4px);
}

.device-cell .render {
  flex: 1;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--fg-dim);
  padding: 8px;
}

.device-cell .render svg {
  width: 70%;
  height: auto;
  max-height: 120px;
}

.device-cell .label {
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--fg-dim);
  margin-top: 18px;
}

/* ─── Final CTA ──────────────────────────────────────────────────── */
.final-cta {
  padding: clamp(160px, 24vw, 280px) 0;
  text-align: center;
  position: relative;
}

.final-cta-inner {
  position: relative;
}

.final-cta h2 {
  max-width: 14ch;
  margin: 0 auto 28px;
}

.final-cta p {
  margin: 0 auto 48px;
}

/* ─── Footer ─────────────────────────────────────────────────────── */
.footer {
  padding-top: 72px;
  padding-bottom: 56px;
  border-top: 1px solid var(--rule);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 1.4fr repeat(3, 1fr);
  }
}

.footer-brand {
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1;
}

.footer-brand .dot {
  color: var(--accent);
}

.footer-tag {
  margin-top: 14px;
  font-size: 14px;
  color: var(--fg-dim);
}

.footer-col h4 {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--fg-faint);
  margin-bottom: 18px;
  font-weight: 500;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col a {
  color: var(--fg-dim);
  text-decoration: none;
  font-size: 14px;
  transition: color 200ms var(--ease);
}

.footer-col a:hover {
  color: var(--fg);
}

.footer-bottom {
  margin-top: 72px;
  padding-top: 28px;
  border-top: 1px solid var(--rule);
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: space-between;
  font-size: 12px;
  color: var(--fg-faint);
  letter-spacing: 0.04em;
}

/* ─── Reveal motion ─────────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 1000ms var(--ease-out), transform 1000ms var(--ease-out);
}

.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

.reveal[data-delay="1"] {
  transition-delay: 80ms;
}

.reveal[data-delay="2"] {
  transition-delay: 160ms;
}

.reveal[data-delay="3"] {
  transition-delay: 240ms;
}

.reveal[data-delay="4"] {
  transition-delay: 320ms;
}

/* Reduce motion preference */
@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }

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

/* Subtle dim of accent variant */
body[data-accent="ember"] {
  --accent: #f59e0b;
}

body[data-accent="violet"] {
  --accent: #c4b5fd;
}

body[data-accent="lime"] {
  --accent: #d4f33b;
}

body[data-accent="ice"] {
  --accent: #cbd5e1;
}

/* Motion intensity tweak */
body[data-motion="calm"] .reveal {
  transition-duration: 1400ms;
}

body[data-motion="off"] .reveal {
  transition: none;
  opacity: 1;
  transform: none;
}

body[data-motion="off"] .hero-bg {
  display: none;
}

body[data-motion="off"] .hero-wordmark .letter {
  opacity: 1;
  transform: none;
  animation: none;
}

/* ─── Mobile-first overrides ─────────────────────────────────────── */
@media (max-width: 720px) {
  .statement {
    padding-top: 96px;
    padding-bottom: 64px;
  }

  .statement h2 {
    margin-bottom: 28px;
  }

  .marquee-row {
    margin-top: 72px;
    padding: 22px 0;
  }

  .marquee-track {
    gap: 36px;
  }

  .feature+.feature {
    margin-top: 88px;
  }

  .feature-text h3 {
    margin: 12px 0 16px;
  }

  .feature-meta {
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-top: 22px;
    padding-top: 18px;
  }

  .feature-meta dd {
    font-size: 15px;
  }

  .stage {
    border-radius: 18px;
  }

  .stage.tall {
    aspect-ratio: 4/5;
  }

  .viz-football {
    padding: 20px;
  }

  .viz-football .live-pill {
    font-size: 10px;
    padding: 5px 10px;
  }

  .viz-football .digits {
    font-size: clamp(44px, 14vw, 64px);
    gap: 8px;
  }

  .viz-football .clock {
    font-size: 11px;
  }

  .viz-library {
    padding: 14px;
    gap: 6px;
  }

  .viz-library .tile-label {
    font-size: 8px;
    letter-spacing: 0.14em;
  }

  .viz-channels {
    padding: 20px;
  }

  .viz-channels .row {
    padding: 11px 0;
    grid-template-columns: 30px 1fr auto;
    gap: 12px;
  }

  .viz-channels .name {
    font-size: 14px;
  }

  .viz-channels .now {
    font-size: 11px;
  }

  .viz-channels .row.active::before {
    left: -20px;
  }

  .viz-devices-grid {
    padding: 20px;
    gap: 8px;
  }

  .viz-devices-grid .cell {
    padding: 12px;
    border-radius: 10px;
  }

  .viz-devices-grid .cell .label {
    font-size: 9px;
  }

  .viz-uptime {
    padding: 24px;
  }

  .viz-uptime .bars {
    height: 48px;
  }

  .plans {
    padding-top: 96px;
    padding-bottom: 96px;
  }

  .plan {
    padding: 48px 22px;
  }

  .plan-includes li {
    font-size: 14px;
  }

  .devices {
    padding-top: 96px;
    padding-bottom: 96px;
  }

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

  .device-cell {
    padding: 18px 8px 14px;
    border-radius: 14px;
  }

  .device-cell .render svg {
    width: 56%;
    max-height: 60px;
  }

  .device-cell .label {
    font-size: 10px;
    margin-top: 12px;
    letter-spacing: 0.12em;
  }

  .final-cta {
    padding-top: 112px;
    padding-bottom: 112px;
  }

  .final-cta h2 {
    margin-bottom: 22px;
  }

  .final-cta p {
    margin-bottom: 36px;
  }

  .footer {
    padding-top: 56px;
    padding-bottom: 44px;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 24px;
  }

  .footer-brand-wrap {
    grid-column: 1 / -1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
  }

  .benefits-grid,
  .catalog-grid,
  .testimonial-grid {
    display: grid !important;
  }

  .footer-grid>div:last-child {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    margin-top: 48px;
    flex-direction: column;
    gap: 16px;
    align-items: center;
    justify-content: center;
    text-align: center;
  }

  .footer-bottom span {
    text-align: center;
  }
}

/* Devices ecosystem on tablet+ */
@media (min-width: 600px) and (max-width: 1099px) {
  .device-row {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Tap states (mobile-friendly) */
@media (hover: none) {

  .device-cell:active,
  .plan:active {
    transform: scale(0.985);
  }

  .feature-text .lede {
    line-height: 1.55;
  }
}

/* Plans — interactive selected state */
.plan.selected {
  background: linear-gradient(180deg, #060606 0%, #040404 100%);
}

.plan {
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

.plan .plan-name {
  transition: transform 500ms var(--ease-out);
}

.plan.selected .plan-name {
  transform: translateX(6px);
}

.plan.selected .plan-tag {
  color: var(--accent);
}

/* Floating CTA dock on mobile (appears after hero) */
.mobile-dock {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 12px 14px calc(12px + env(safe-area-inset-bottom));
  z-index: 90;
  transform: translateY(140%);
  transition: transform 500ms var(--ease-out);
  pointer-events: none;
  display: flex;
  justify-content: center;
}

.mobile-dock.visible {
  transform: translateY(0);
  pointer-events: auto;
}

.mobile-dock .dock-inner {
  width: 100%;
  max-width: 540px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 8px 8px 18px;
  background: rgba(8, 8, 8, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--rule-strong);
  border-radius: 100px;
  box-shadow: 0 12px 32px -8px rgba(0, 0, 0, 0.6);
}

.mobile-dock .dock-label {
  flex: 1;
  font-size: 13px;
  color: var(--fg-dim);
  letter-spacing: -0.005em;
}

.mobile-dock .dock-label strong {
  color: var(--fg);
  font-weight: 500;
}

.mobile-dock .dock-btn {
  background: var(--accent);
  color: #0a0a0a;
  font-size: 13px;
  font-weight: 500;
  padding: 10px 16px;
  border-radius: 100px;
  text-decoration: none;
  white-space: nowrap;
  transition: transform 200ms var(--ease);
}

.mobile-dock .dock-btn:active {
  transform: scale(0.95);
}

@media (min-width: 820px) {
  .mobile-dock {
    display: none;
  }
}

/* Section anchor offset (so smooth-scroll lands below sticky nav) */
section[id] {
  scroll-margin-top: 80px;
}

/* Marquee pause on touch */
.marquee-row:active .marquee-track {
  animation-play-state: paused;
}

/* Live counter for uptime */
.viz-uptime .big {
  transition: color 600ms var(--ease);
}

.viz-uptime.counting .big {
  color: var(--accent);
}

.viz-uptime .bars span {
  transition: height 600ms var(--ease-out), opacity 400ms var(--ease);
}

/* Make the nav-cta also support ripple */
.nav-cta {
  position: relative;
  overflow: hidden;
}

/* ═════════════════════════════════════════════════════════════════
   CINEMATIC SECTIONS — v2 content
   ═════════════════════════════════════════════════════════════════ */

/* Global ambient noise overlay (very subtle) */

/* ─── Cinematic hero with typing animation ──────────────────────── */
.hero-v2 {
  min-height: 100vh;
  min-height: 100dvh;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 120px 22px 100px;
}

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

.hero-v2 .grid-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse at center, #000 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse at center, #000 30%, transparent 80%);
  opacity: 0.35;
}

@keyframes floatA {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  50% {
    transform: translate(8vw, -5vw) scale(1.08);
  }
}

@keyframes floatB {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  50% {
    transform: translate(-6vw, 6vw) scale(1.1);
  }
}

.hero-v2 .inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
}

.hero-logo {
  font-size: clamp(72px, 21vw, 240px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.055em;
  margin-bottom: clamp(24px, 4vw, 36px);
  color: white;
  text-shadow: 0 0 60px rgba(250, 204, 21, 0.18);
  filter: drop-shadow(0 8px 32px rgba(250, 204, 21, 0.12));
  text-align: center;
  padding-bottom: 0.1em;
}

.hero-logo .word {
  display: inline-block;
  color: white;
  animation: heroLogoRise 900ms var(--ease-expo) both;
}

.hero-logo .dot {
  display: inline-block;
  color: var(--accent);
  vertical-align: 0.08em;
  margin: 0 0.06em;
}

.hero-logo .word.b {
  animation-delay: 150ms;
}

@keyframes heroLogoRise {
  from {
    opacity: 0;
    transform: translateY(35%);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Typing rotator */
.typewriter {
  font-size: clamp(28px, 8vw, 64px);
  line-height: 1.1;
  letter-spacing: -0.025em;
  font-weight: 600;
  color: var(--fg);
  margin: 0 0 clamp(28px, 4vw, 40px);
  min-height: 1.2em;
  display: flex;
  flex-wrap: wrap;
  gap: 0.25em;
  align-items: baseline;
  opacity: 0;
  transform: translateY(20px);
  animation: rise 1100ms var(--ease-expo) 500ms forwards;
}

.typewriter .static {
  color: var(--fg-dim);
}

.typewriter .rotor {
  color: var(--accent);
  position: relative;
  text-shadow: 0 0 24px rgba(250, 204, 21, 0.35);
  filter: blur(0px);
  transition: filter 200ms var(--ease);
}

.typewriter .rotor.swapping {
  filter: blur(6px);
}

.typewriter .caret {
  display: inline-block;
  width: 3px;
  height: 0.95em;
  background: var(--accent);
  margin-left: 2px;
  vertical-align: -0.08em;
  animation: blink 1s steps(2) infinite;
  box-shadow: 0 0 12px rgba(250, 204, 21, 0.7);
}

@keyframes blink {
  50% {
    opacity: 0;
  }
}

.hero-v2 .description {
  font-size: clamp(15px, 3.6vw, 18px);
  color: var(--fg-dim);
  max-width: 56ch;
  line-height: 1.6;
  margin: 0 0 clamp(36px, 5vw, 52px);
  opacity: 0;
  transform: translateY(20px);
  animation: rise 1100ms var(--ease-expo) 800ms forwards;
}

/* Primary cinematic CTA */
.cta-cinematic {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 20px 36px;
  border-radius: 100px;
  font-size: clamp(15px, 3.8vw, 17px);
  font-weight: 600;
  letter-spacing: -0.005em;
  background: linear-gradient(140deg, #fde047 0%, #facc15 45%, #f59e0b 100%);
  color: #1a1100;
  text-decoration: none;
  overflow: hidden;
  isolation: isolate;
  transition: transform 280ms var(--ease-expo);
  opacity: 0;
  transform: translateY(20px);
  animation: rise 1100ms var(--ease-expo) 1000ms forwards;
  touch-action: manipulation;
  -webkit-user-select: none;
  user-select: none;
}

.cta-cinematic .label {
  position: relative;
  z-index: 2;
}

.cta-cinematic .ico {
  position: relative;
  z-index: 2;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(26, 17, 0, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
}

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

.cta-cinematic:active {
  transform: translateY(0) scale(0.98);
}

/* Hero bottom hint */
.hero-hint {
  position: absolute;
  bottom: 28px;
  left: 22px;
  right: 22px;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--fg-faint);
  opacity: 0;
  animation: rise 1100ms var(--ease-expo) 1400ms forwards;
}

.hero-hint .scroll-dot {
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 12px var(--accent);
  animation: pulse 2s ease-in-out infinite;
}

/* ─── Streaming services marquee (subtle) ───────────────────────── */
.streaming-strip {
  position: relative;
  padding: 56px 0 80px;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  background:
    radial-gradient(50% 100% at 50% 0%, rgba(250, 204, 21, 0.04), transparent 70%),
    var(--bg);
  overflow: hidden;
}

.streaming-strip .label {
  text-align: center;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--fg-faint);
  margin-bottom: 32px;
}

.streaming-track-wrap {
  position: relative;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
}

.streaming-track {
  display: inline-flex;
  align-items: center;
  gap: clamp(40px, 6vw, 72px);
  animation: marquee 50s linear infinite;
  white-space: nowrap;
  padding: 0 20px;
}

.streaming-track .svc {
  font-size: clamp(20px, 4vw, 28px);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: rgba(255, 255, 255, 0.42);
  transition: color 380ms var(--ease), text-shadow 380ms var(--ease);
  cursor: default;
  font-family: var(--font-sans);
}

.streaming-track .svc.italic {
  font-style: italic;
}

.streaming-track .svc.serif {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: 0;
}

.streaming-track .svc.mono {
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: clamp(16px, 3.2vw, 22px);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.streaming-track .svc:hover,
.streaming-track .svc.glow {
  color: var(--accent);
  text-shadow: 0 0 24px rgba(250, 204, 21, 0.55);
}

body[data-motion="off"] .streaming-track {
  animation: none;
}

/* Comparison card inside marquee */
.marquee-comparison {
  max-width: 800px;
  margin: 40px auto 0;
  padding: 0 20px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}

@media (min-width: 600px) {
  .marquee-comparison {
    flex-direction: row;
    justify-content: center;
    gap: 80px;
  }
}

.comp-side {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  justify-content: center;
}

.comp-desc {
  font-size: 13px;
  color: var(--fg-faint);
  margin-bottom: 6px;
  line-height: 1.4;
  letter-spacing: -0.01em;
}

.comp-desc.highlight {
  color: var(--fg-dim);
}

.comp-price {
  font-size: 48px;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1;
  margin: 0;
}

.comp-price.grey {
  color: rgba(255, 255, 255, 0.22);
}

.comp-price.gold {
  color: var(--accent);
  text-shadow: 0 0 28px rgba(250, 204, 21, 0.22);
}

.comp-price small {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0;
  color: var(--fg-faint);
  margin-left: 2px;
}

/* ─── Eyebrow + section heads ──────────────────────────────────── */
.section-head {
  text-align: center;
  margin: 0 auto clamp(56px, 8vw, 96px);
  max-width: 720px;
}

.section-head .eyebrow {
  justify-content: center;
  margin-bottom: 24px;
}

.section-head h2 {
  margin-bottom: 24px;
}

.section-head p {
  margin: 0 auto;
  color: var(--fg-dim);
}

/* ─── Benefits grid (8 items) ──────────────────────────────────── */
.benefits {
  padding: clamp(96px, 14vw, 180px) 0;
  position: relative;
}

.benefits-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: var(--rule);
  border: 1px solid var(--rule);
  border-radius: 24px;
  overflow: hidden;
}

@media (min-width: 600px) {
  .benefits-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 1000px) {
  .benefits-grid {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
}

.benefit {
  background: var(--bg-elev);
  padding: clamp(28px, 4vw, 40px);
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  overflow: hidden;
  transition: background 400ms var(--ease);
  min-height: 220px;
}

.benefit:hover {
  background: #0a0a0a;
}

.benefit .num {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--fg-faint);
  letter-spacing: 0.12em;
}

.benefit h4 {
  font-size: clamp(20px, 2.8vw, 26px);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.15;
  margin: 0;
}

.benefit p {
  font-size: 14px;
  line-height: 1.55;
  color: var(--fg-dim);
  margin: 0;
}

.benefit .glyph {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(250, 204, 21, 0.18), rgba(245, 158, 11, 0.08));
  border: 1px solid rgba(250, 204, 21, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-bottom: 4px;
}

.benefit .glyph svg {
  width: 14px;
  height: 14px;
}

/* ─── Catalog (4 categories, large posters) ────────────────────── */
.catalog {
  padding: clamp(96px, 14vw, 180px) 0;
}

.catalog-grid {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 440px;
  margin: 0 auto;
  padding: 0 16px;
}

.cat-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 3/4;
  background: #0a0a0a;
  border: 1px solid var(--rule);
  cursor: pointer;
  transition: transform 500ms var(--ease-expo), border-color 400ms var(--ease), box-shadow 400ms var(--ease);
  -webkit-tap-highlight-color: transparent;
}

.cat-card:hover {
  transform: translateY(-4px) scale(1.01);
  border-color: rgba(250, 204, 21, 0.25);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.6);
}

.cat-card:active {
  transform: scale(0.99);
}

.cat-card .bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  transition: transform 800ms var(--ease-expo);
}

.cat-card:hover .bg {
  transform: scale(1.03);
}

.cat-card .grad {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, transparent 30%, rgba(0, 0, 0, 0.75) 70%, rgba(0, 0, 0, 0.96) 100%);
}

.cat-card .content {
  position: absolute;
  inset: 0;
  z-index: 2;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 12px;
}

@media (min-width: 768px) {
  .cat-card .content {
    padding: 32px;
  }
}

.cat-card .num {
  position: absolute;
  top: 20px;
  left: 24px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--accent);
  z-index: 2;
}

@media (min-width: 768px) {
  .cat-card .num {
    top: 24px;
    left: 32px;
    font-size: 12px;
  }
}

.cat-card .text-block {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.cat-card h4 {
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.1;
  margin: 0;
}

.cat-card p {
  font-size: 12px;
  color: var(--fg-dim);
  max-width: 32ch;
  line-height: 1.45;
  margin: 0;
}

@media (min-width: 768px) {
  .cat-card p {
    font-size: 13px;
  }
}

.cat-card .arrow-pill {
  align-self: flex-start;
  margin-top: 8px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 11px;
  letter-spacing: 0.04em;
  color: var(--fg);
  transition: background 320ms var(--ease), gap 320ms var(--ease), color 320ms var(--ease), border-color 320ms var(--ease);
}

@media (min-width: 768px) {
  .cat-card .arrow-pill {
    font-size: 12px;
  }
}

.cat-card:hover .arrow-pill {
  background: var(--accent);
  color: #0a0a0a;
  border-color: var(--accent);
  gap: 12px;
}

/* Cat-card backgrounds using user images */
.cat-bg-films {
  background: url('assets/filmes.jpg') center/cover no-repeat;
}

.cat-bg-series {
  background: url('assets/Series.jpg') center/cover no-repeat;
}

.cat-bg-sports {
  background: url('assets/futebol.jpg') center/cover no-repeat;
  position: relative;
}

.cat-bg-sports::after {
  content: '';
  position: absolute;
  inset: 0;
}

.cat-bg-ufc {
  background: url('assets/lutas.jpg') 76% 63%/cover no-repeat;
}

/* ─── Technology / Stability section ───────────────────────────── */
.tech {
  padding: clamp(120px, 16vw, 200px) 0;
  position: relative;
  overflow: hidden;
}

.tech-stage {
  position: relative;
  overflow: hidden;
  background: transparent;
  padding: clamp(40px, 6vw, 80px) 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(40px, 6vw, 80px);
}

@media (min-width: 960px) {
  .tech-stage {
    grid-template-columns: 1fr 1.2fr;
    align-items: center;
  }
}

@media (max-width: 959px) {
  .tech-copy {
    text-align: center;
    padding: 0 16px;
  }

  .tech-copy .eyebrow {
    justify-content: center;
  }
}

.tech-copy h2 {
  margin-bottom: 24px;
  background: linear-gradient(180deg, #ffffff 0%, #d4d4d8 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.tech-copy p {
  color: var(--fg-dim);
}

.tech-stats {
  margin-top: 36px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 12px;
  padding-top: 28px;
  border-top: 1px solid var(--rule);
}

.tech-stats dt {
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg-faint);
  margin-bottom: 6px;
}

.tech-stats dd {
  font-size: clamp(20px, 3vw, 26px);
  font-weight: 600;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.02em;
  color: var(--accent);
  text-shadow: 0 0 16px rgba(250, 204, 21, 0.3);
}

.tech-viz {
  position: relative;
  aspect-ratio: 16/10;
  border-radius: 18px;
  overflow: hidden;
  background: #050505;
  border: 1px solid var(--rule);
}

.tech-viz canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.tech-viz .nodes {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.tech-viz .node {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 18px var(--accent), 0 0 4px #fff inset;
  transform: translate(-50%, -50%);
}

.tech-viz .node.pulse::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid var(--accent);
  animation: nodePulse 2.4s ease-out infinite;
}

@keyframes nodePulse {
  0% {
    transform: scale(1);
    opacity: 0.9;
  }

  100% {
    transform: scale(4);
    opacity: 0;
  }
}

.tech-viz .meta {
  position: absolute;
  top: 18px;
  left: 18px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  color: var(--fg-dim);
  text-transform: uppercase;
}

.tech-viz .meta .dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #22c55e;
  margin-right: 8px;
  vertical-align: middle;
  box-shadow: 0 0 8px #22c55e;
  animation: pulse 1.8s ease-in-out infinite;
}

.tech-viz .reading {
  position: absolute;
  bottom: 18px;
  left: 18px;
  right: 18px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.04em;
  color: var(--fg-dim);
}

.tech-viz .reading .num {
  font-size: clamp(28px, 5vw, 40px);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--fg);
  font-variant-numeric: tabular-nums;
  font-family: var(--font-sans);
}

/* ─── Devices carousel (continuous horizontal) ─────────────────── */
.devices-v2 {
  padding: clamp(96px, 14vw, 180px) 0 clamp(80px, 10vw, 140px);
  overflow: hidden;
}

.devices-carousel {
  position: relative;
  mask-image: linear-gradient(90deg, transparent 0%, #000 6%, #000 94%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 6%, #000 94%, transparent 100%);
  margin: 0 -22px;
}

.devices-track {
  display: inline-flex;
  gap: clamp(14px, 2vw, 22px);
  padding: 12px 14px;
}

.device-card {
  flex: 0 0 auto;
  width: clamp(240px, 36vw, 320px);
  aspect-ratio: 4/5;
  border-radius: 22px;
  overflow: hidden;
  position: relative;
  border: 1px solid var(--rule);
  background:
    radial-gradient(60% 50% at 50% 0%, rgba(250, 204, 21, 0.06), transparent 70%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04) 0%, transparent 50%),
    linear-gradient(180deg, #0a0a0a 0%, #040404 100%);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: transform 500ms var(--ease-expo), border-color 400ms var(--ease);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(20px, 3vw, 28px);
}

.device-card:hover {
  transform: translateY(-6px);
  border-color: rgba(250, 204, 21, 0.25);
}

.device-card .device-num {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  color: var(--fg-faint);
  text-transform: uppercase;
}

.device-card .device-render {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  color: var(--fg-dim);
}

.device-card .device-render svg {
  width: 70%;
  height: auto;
  max-height: 140px;
  filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.6));
}

.device-card .device-name {
  font-size: clamp(18px, 2.6vw, 22px);
  font-weight: 600;
  letter-spacing: -0.02em;
  margin: 0 0 4px;
}

.device-card .device-os {
  font-size: 12px;
  color: var(--fg-dim);
  font-family: var(--font-mono);
  letter-spacing: 0.04em;
}

/* ─── Testimonials ─────────────────────────────────────────────── */
.testimonials {
  padding: clamp(96px, 14vw, 180px) 0;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

@media (min-width: 720px) {
  .testimonial-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .testimonial-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.testimonial {
  padding: clamp(28px, 4vw, 40px);
  border-radius: 20px;
  border: 1px solid var(--rule);
  background:
    radial-gradient(40% 60% at 100% 0%, rgba(250, 204, 21, 0.05), transparent 60%),
    linear-gradient(180deg, #0a0a0a 0%, #050505 100%);
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: border-color 400ms var(--ease), transform 400ms var(--ease);
}

.testimonial:hover {
  border-color: rgba(250, 204, 21, 0.18);
  transform: translateY(-3px);
}

.testimonial .quote-mark {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 56px;
  line-height: 0.6;
  color: var(--accent);
  opacity: 0.7;
}

.testimonial blockquote {
  font-size: clamp(17px, 2.2vw, 19px);
  line-height: 1.45;
  letter-spacing: -0.01em;
  color: var(--fg);
  margin: 0;
  flex: 1;
}

.testimonial .author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 18px;
  border-top: 1px solid var(--rule);
}

.testimonial .avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(250, 204, 21, 0.3), rgba(245, 158, 11, 0.1));
  border: 1px solid var(--rule);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: -0.01em;
}

.testimonial .author-meta {
  font-size: 12px;
}

.testimonial .name {
  color: var(--fg);
  font-weight: 500;
}

.testimonial .city {
  color: var(--fg-faint);
}

/* ─── How it works (3 steps) ───────────────────────────────────── */
.howto {
  padding: clamp(96px, 14vw, 180px) 0;
}

.howto-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  position: relative;
}

@media (min-width: 720px) {
  .howto-steps {
    grid-template-columns: repeat(3, 1fr);
  }
}

.howto-step {
  padding: clamp(28px, 4vw, 40px);
  border-radius: 20px;
  border: 1px solid var(--rule);
  background: var(--bg-elev);
  position: relative;
  overflow: hidden;
  transition: border-color 400ms var(--ease), background 400ms var(--ease);
}

.howto-step:hover {
  border-color: rgba(250, 204, 21, 0.25);
  background: #0c0c0c;
}

.howto-step .step-num {
  font-size: clamp(56px, 8vw, 88px);
  font-weight: 600;
  font-family: var(--font-display);
  font-style: italic;
  line-height: 1;
  background: linear-gradient(180deg, #facc15 0%, rgba(245, 158, 11, 0.4) 70%, transparent 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  margin-bottom: 28px;
}

.howto-step h4 {
  font-size: clamp(20px, 3vw, 26px);
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}

.howto-step p {
  font-size: 14px;
  color: var(--fg-dim);
  line-height: 1.55;
}

/* ─── Final CTA cinematic ──────────────────────────────────────── */
.final-cta-v2 {
  padding: clamp(140px, 22vw, 240px) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.final-cta-v2 .inner {
  position: relative;
}

.final-cta-v2 h2 {
  max-width: 18ch;
  margin: 0 auto 24px;
  background: linear-gradient(180deg, #ffffff 0%, #fde68a 70%, #facc15 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.final-cta-v2 p {
  margin: 0 auto 48px;
  max-width: 50ch;
  color: var(--fg-dim);
}

/* Section dividers and rhythm */
.section-rule {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--rule-strong), transparent);
  margin: 0;
}

/* Update legacy hero animation off for letters when motion off */
body[data-motion="off"] .hero-logo .word {
  opacity: 1;
  transform: none;
  animation: none;
}

body[data-motion="off"] .typewriter,
body[data-motion="off"] .hero-v2 .description,
body[data-motion="off"] .cta-cinematic,
body[data-motion="off"] .hero-hint {
  opacity: 1;
  transform: none;
  animation: none;
}

/* ═════════════════════════════════════════════════════════════════
   MOBILE-FIRST · marquee carrosséis, layout e espaçamento
   ═════════════════════════════════════════════════════════════════ */

/* ─── Hero mobile: centralizado e compacto ──────────────────────── */
@media (max-width: 719px) {
  .hero-v2 {
    padding: 96px 20px 72px;
    align-items: center;
  }

  .hero-v2 .inner {
    text-align: center;
  }

  .typewriter {
    justify-content: center;
  }

  .hero-v2 .description {
    margin-left: auto;
    margin-right: auto;
    max-width: 30ch;
    font-size: 15px;
  }

  .cta-cinematic {
    margin: 0 auto;
  }

  .hero-hint {
    font-size: 10px;
    letter-spacing: 0.12em;
  }

  .hero-logo {
    font-size: clamp(56px, 17vw, 110px);
    filter: none;
    padding-bottom: 0.12em;
  }
}

/* ─── Devices: ininterrupto (sem pause no hover) ────────────────── */
.devices-track:hover {
  animation-play-state: running !important;
}

/* ─── Footer mobile: compacto e integrado ───────────────────────── */
@media (max-width: 719px) {
  .footer {
    padding-top: 44px;
    padding-bottom: 32px;
    border-top: none;
    position: relative;
  }

  .footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px 20px;
  }

  .footer-grid>div:first-child {
    grid-column: 1 / -1;
  }

  .footer-brand {
    font-size: clamp(26px, 7vw, 40px);
  }

  .footer-tag {
    font-size: 13px;
    margin-top: 6px;
  }

  .footer-col h4 {
    margin-bottom: 10px;
    font-size: 10px;
  }

  .footer-col ul {
    gap: 8px;
  }

  .footer-col a {
    font-size: 13px;
  }

  .footer-col:nth-child(3) {
    text-align: right;
  }

  .footer-col:nth-child(3) ul {
    align-items: flex-end;
  }

  .footer-bottom {
    margin-top: 28px;
    flex-direction: column;
    gap: 4px;
    font-size: 11px;
  }
}

/* ─── Final CTA mobile ───────────────────────────────────────────── */
@media (max-width: 719px) {
  .final-cta-v2 {
    padding: 88px 0 80px;
  }

  .final-cta-v2 h2 {
    font-size: clamp(28px, 8vw, 42px);
    max-width: 22ch;
    margin-left: auto;
    margin-right: auto;
  }

  .final-cta-v2 p {
    font-size: 15px;
  }
}

/* ─── Espaçamentos mobile gerais ────────────────────────────────── */
@media (max-width: 719px) {
  .section-head {
    margin-bottom: 40px;
  }

  .section-head h2 {
    font-size: clamp(24px, 5.8vw, 34px);
  }

  .display-l {
    font-size: clamp(24px, 5.8vw, 34px) !important;
    line-height: 1.1;
  }

  .display-m {
    font-size: clamp(22px, 5.2vw, 30px) !important;
    line-height: 1.15;
  }

  .lede {
    font-size: 14px;
    max-width: 100%;
  }

  .streaming-strip {
    padding: 36px 0;
  }

  .tech {
    padding: 64px 0;
  }

  .tech-stage {
    padding: 28px 20px;
  }

  .howto {
    padding: 64px 0;
  }

  .howto-steps {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  /* ─── Benefits mobile: automatic marquee carousel ───────────────── */
  .benefits-grid {
    display: none !important;
  }

  .benefits-marquee-outer {
    display: block !important;
    overflow: hidden !important;
    mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
    margin: 0 -22px !important;
  }

  .benefits-marquee {
    display: inline-flex !important;
    gap: 14px !important;
    padding: 8px 22px !important;
    animation: marquee 34s linear infinite !important;
    will-change: transform;
  }

  .benefits-marquee:hover {
    animation-play-state: paused !important;
  }

  .benefits-marquee .benefit {
    flex: 0 0 260px !important;
    border-radius: 18px !important;
    border: 1px solid var(--rule) !important;
    background: var(--bg-elev) !important;
    padding: 24px 20px !important;
    min-height: 180px !important;
  }
}

.benefits-marquee-outer {
  display: none;
}

/* ─── Pricing Section ───────────────────────────────────────────── */
.pricing {
  padding: clamp(96px, 14vw, 180px) 0;
  position: relative;
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}
@media (min-width: 900px) {
  .pricing-grid {
    grid-template-columns: 1fr 1.1fr 1.15fr;
    align-items: stretch;
  }
}

.pricing-features {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-right: 16px;
}

.pricing-features h3 {
  font-size: 24px;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
  color: var(--fg);
}

.pricing-features ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  line-height: 1.4;
  color: var(--fg-dim);
}

.pricing-features .check-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--accent);
}

/* Pricing Cards */
.pricing-card {
  position: relative;
  background: var(--bg-elev);
  border: 1px solid var(--rule);
  border-radius: 28px;
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  transition: border-color 300ms var(--ease), transform 400ms var(--ease-expo), box-shadow 400ms var(--ease);
}
@media (min-width: 900px) {
  .pricing-card {
    padding: 40px 32px;
  }
}

.pricing-card:hover {
  border-color: rgba(255, 255, 255, 0.15);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.pricing-card.highlighted {
  border-color: rgba(250, 204, 21, 0.25);
  background: radial-gradient(100% 100% at 50% 0%, rgba(250, 204, 21, 0.03) 0%, transparent 80%), var(--bg-elev);
}
.pricing-card.highlighted:hover {
  border-color: rgba(250, 204, 21, 0.4);
  box-shadow: 0 24px 48px rgba(250, 204, 21, 0.08);
}

.pricing-card .card-badge {
  position: absolute;
  top: -12px;
  left: 32px;
  font-family: var(--font-mono);
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  background: var(--accent);
  color: #0a0a0a;
  padding: 4px 12px;
  border-radius: 100px;
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(250, 204, 21, 0.2);
}

.pricing-card .card-head {
  margin-bottom: 24px;
}

.pricing-card .plan-name {
  font-size: 28px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--fg);
  display: block;
  margin-bottom: 12px;
}

.pricing-card .plan-desc {
  font-size: 13px;
  color: var(--fg-dim);
  line-height: 1.45;
  margin: 0;
}

/* Screens selector */
.screens-selector {
  margin-bottom: 28px;
  border-top: 1px solid var(--rule);
  padding-top: 24px;
}

.screens-selector .sel-label {
  font-size: 11px;
  color: var(--fg-faint);
  display: block;
  margin-bottom: 12px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.screens-selector .sel-pills {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  background: rgba(255, 255, 255, 0.02);
  padding: 4px;
  border-radius: 12px;
  border: 1px solid var(--rule);
}

.screens-selector .sel-pill {
  border: none;
  background: transparent;
  color: var(--fg-dim);
  font-size: 12px;
  font-weight: 500;
  padding: 8px 4px;
  border-radius: 8px;
  cursor: pointer;
  transition: background 240ms var(--ease), color 240ms var(--ease);
}
.screens-selector .sel-pill:hover {
  color: var(--fg);
}
.screens-selector .sel-pill.active {
  background: rgba(255, 255, 255, 0.08);
  color: var(--fg);
  font-weight: 600;
}
.pricing-card.highlighted .screens-selector .sel-pill.active {
  background: rgba(250, 204, 21, 0.1);
  color: var(--accent);
}

/* Price Wrap */
.card-price-wrap {
  margin-top: auto;
  margin-bottom: 24px;
}

.pricing-card .price {
  display: flex;
  align-items: baseline;
  color: var(--fg);
}
.pricing-card .price.gold {
  color: var(--accent);
}

.pricing-card .price .currency {
  font-size: 18px;
  font-weight: 600;
  margin-right: 4px;
}

.pricing-card .price .amount {
  font-size: 42px;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1;
}

.pricing-card .price .period {
  font-size: 14px;
  font-weight: 500;
  color: var(--fg-faint);
  margin-left: 4px;
}

/* Button */
.pricing-btn {
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.06);
  color: var(--fg);
  font-size: 13px;
  font-weight: 600;
  padding: 12px 24px;
  border-radius: 12px;
  cursor: pointer;
  transition: background 280ms var(--ease), border-color 280ms var(--ease), color 280ms var(--ease);
  width: 100%;
  text-align: center;
}
.pricing-btn:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.25);
}

.pricing-btn.gold {
  background: var(--accent);
  border-color: var(--accent);
  color: #0a0a0a;
  box-shadow: 0 4px 16px rgba(250, 204, 21, 0.15);
}
.pricing-btn.gold:hover {
  background: #f5cf15;
  border-color: #f5cf15;
  box-shadow: 0 6px 20px rgba(250, 204, 21, 0.25);
}

/* Mobile optimizations for pricing cards and features */
@media (max-width: 899px) {
  .pricing-grid {
    gap: 20px;
    padding: 0 16px;
  }

  .pricing-features {
    text-align: center;
    align-items: center;
    padding-right: 0;
    margin-bottom: 12px;
  }

  .pricing-features h3 {
    text-align: center;
    font-size: 20px;
    margin-bottom: 16px;
  }

  .pricing-features ul {
    align-items: center;
    gap: 14px;
  }

  .pricing-features li {
    justify-content: center;
    text-align: center;
    font-size: 13px;
    gap: 8px;
  }

  .pricing-card {
    padding: 24px 20px;
    border-radius: 20px;
  }

  .pricing-card .plan-name {
    font-size: 22px;
    margin-bottom: 8px;
  }

  .pricing-card .plan-desc {
    font-size: 12px;
  }

  .screens-selector {
    margin-bottom: 20px;
    padding-top: 16px;
  }

  .screens-selector .sel-label {
    margin-bottom: 8px;
  }

  .screens-selector .sel-pill {
    padding: 6px 2px;
    font-size: 11px;
  }

  .pricing-card .price .amount {
    font-size: 34px;
  }

  .pricing-card .price .currency {
    font-size: 16px;
  }

  .pricing-btn {
    padding: 10px 18px;
    font-size: 12px;
    border-radius: 10px;
  }
}

/* Hot Highlight */
.hot-highlight {
  color: #ff6f3c;
  font-weight: 600;
  text-shadow: 0 0 12px rgba(255, 111, 60, 0.15);
}

/* ─── Elegant continuous reflection / shimmer effect for main CTA buttons ─── */

.cta-cinematic,
.pricing-btn {
  position: relative;
  overflow: hidden !important;
}

/* Shimmer pseudo-element */
.cta-cinematic::after,
.pricing-btn::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -60%;
  width: 30%;
  height: 200%;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.4) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: rotate(25deg);
  pointer-events: none;
  animation: shimmerSweep 4.5s cubic-bezier(0.25, 1, 0.5, 1) infinite;
  mix-blend-mode: overlay;
  z-index: 5;
}

/* Adjust shimmer brightness on gold / yellow buttons for high contrast */
.cta-cinematic::after,
.pricing-btn.gold::after {
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.65) 50%,
    rgba(255, 255, 255, 0) 100%
  );
}

@keyframes shimmerSweep {
  0% {
    left: -60%;
  }
  30% {
    left: 140%;
  }
  100% {
    left: 140%;
  }
}