/* ==========================================================================
   TVWILL — main stylesheet
   Dark cinematic streaming UI. Colors, type & spacing ported 1:1 from the
   approved Claude Design homepage.
   ========================================================================== */

/* ---- Fonts (self-hosted variable fonts, no external requests) ---------- */
@font-face {
  font-family: 'Archivo';
  font-style: normal;
  font-weight: 100 900;
  font-stretch: 100%;
  font-display: swap;
  src: url('../fonts/archivo-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Archivo';
  font-style: normal;
  font-weight: 100 900;
  font-stretch: 100%;
  font-display: swap;
  src: url('../fonts/archivo-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url('../fonts/inter-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url('../fonts/inter-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

/* ---- Design tokens ------------------------------------------------------ */
:root {
  --tv-bg: #08080a;
  --tv-surface: #151517;
  --tv-surface-2: #17171a;
  --tv-frame: #1c1c1f;
  --tv-accent: #FFDD00;
  --tv-ink: #f2f1ec;
  --tv-ink-strong: #ffffff;
  --tv-ink-dim: #d4d4d8;
  --tv-ink-mid: #c9c9ce;
  --tv-ink-soft: #a8a8ae;
  --tv-ink-faint: #8a8a90;
  --tv-ink-ghost: #7f7f86;
  --tv-black: #0b0b0c;
  --tv-line: rgba(255, 255, 255, 0.08);
  --tv-radius: 12px;
  --tv-pad-x: 56px;
  --tv-font-display: 'Archivo', sans-serif;
  --tv-font-body: 'Inter', sans-serif;
}

/* ---- Base --------------------------------------------------------------- */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--tv-bg);
  color: var(--tv-ink);
  font-family: var(--tv-font-body);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip; /* no stray sideways scroll, ever */
}
::selection { background: var(--tv-accent); color: var(--tv-black); }
img { max-width: 100%; height: auto; }
a { color: var(--tv-accent); }
.screen-reader-text {
  border: 0; clip: rect(1px, 1px, 1px, 1px); clip-path: inset(50%);
  height: 1px; margin: -1px; overflow: hidden; padding: 0;
  position: absolute; width: 1px; word-wrap: normal !important;
}

h1, h2, h3, h4 { font-family: var(--tv-font-display); color: var(--tv-ink); }

.tv-container { max-width: 1440px; margin: 0 auto; }

/* ---- Buttons ------------------------------------------------------------ */
.tv-btn {
  display: inline-block;
  background: var(--tv-accent);
  color: var(--tv-black);
  padding: 11px 22px;
  border: 0;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 700;
  font-size: 13.5px;
  font-family: var(--tv-font-body);
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease;
}
.tv-btn:hover { transform: translateY(-1px); box-shadow: 0 10px 30px -8px rgba(255, 221, 0, .45); }
.tv-btn--lg {
  padding: 18px 34px;
  border-radius: 8px;
  font-weight: 800;
  font-size: 16.5px;
  white-space: nowrap;
  box-shadow: 0 12px 40px -8px rgba(255, 221, 0, .5);
  position: relative;
  overflow: hidden;
}
.tv-btn--lg::after {
  content: '';
  position: absolute; top: 0; left: -80%;
  width: 50%; height: 100%;
  background: linear-gradient(105deg, transparent, rgba(255, 255, 255, .45), transparent);
  transform: skewX(-20deg);
  animation: tvShine 4.5s ease-in-out infinite;
}
@keyframes tvShine {
  0%, 60% { left: -80%; }
  100% { left: 130%; }
}
@media (prefers-reduced-motion: reduce) {
  .tv-btn--lg::after { animation: none; display: none; }
}
.tv-btn--dark {
  background: var(--tv-black);
  color: var(--tv-accent);
  padding: 20px 40px;
  border-radius: 8px;
  font-weight: 800;
  font-size: 17px;
  white-space: nowrap;
  font-family: var(--tv-font-display);
}
.tv-btn--ghost {
  background: transparent;
  color: var(--tv-ink);
  border: 1px solid rgba(255, 255, 255, .18);
}
.tv-btn--ghost:hover { box-shadow: none; border-color: var(--tv-accent); color: var(--tv-accent); }

/* ---- Header / Nav ------------------------------------------------------- */
.site-header {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px var(--tv-pad-x);
}
.site-header--solid {
  background: rgba(8, 8, 10, .92);
  -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--tv-line);
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 16px var(--tv-pad-x);
}
.site-brand { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.site-brand img.custom-logo, .site-brand img { height: 34px; width: auto; display: block; }
.site-brand__mark {
  width: 38px; height: 30px;
  background: var(--tv-accent);
  border-radius: 4px;
  transform: skewX(-8deg);
  display: flex; align-items: center; justify-content: center;
}
.site-brand__mark span {
  transform: skewX(8deg);
  font-family: var(--tv-font-display);
  font-weight: 900;
  color: var(--tv-black);
  font-size: 15px;
}
.site-brand__name {
  font-family: var(--tv-font-display);
  font-weight: 800;
  font-size: 22px;
  letter-spacing: -.02em;
  color: var(--tv-ink);
}
.site-nav { display: flex; align-items: center; gap: 36px; }
.site-nav ul { display: flex; align-items: center; gap: 36px; list-style: none; margin: 0; padding: 0; }
.site-nav a:not(.tv-btn) {
  color: #e4e4e8;
  text-decoration: none;
  font-size: 14.5px;
  font-weight: 500;
  transition: color .15s;
}
.site-nav a:not(.tv-btn):hover { color: var(--tv-accent); }
.nav-toggle { display: none; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--tv-ink); margin: 5px 0; transition: .2s; }

/* Header tools: account + cart */
.site-tools { display: flex; align-items: center; gap: 6px; margin-left: 18px; }
.tv-tool {
  position: relative;
  display: flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; border-radius: 10px;
  color: var(--tv-ink-mid);
  transition: color .15s, background .15s;
}
.tv-tool:hover { color: var(--tv-accent); background: rgba(255, 255, 255, .06); }
.tv-tool svg { width: 21px; height: 21px; }
.tv-cart__count {
  position: absolute; top: 2px; right: 0;
  min-width: 17px; height: 17px; padding: 0 4px;
  background: var(--tv-accent); color: var(--tv-black);
  border-radius: 100px;
  font-size: 10.5px; font-weight: 800; font-style: normal;
  display: flex; align-items: center; justify-content: center;
}
.tv-cart__count.is-empty { display: none; }

/* ---- Hero ---------------------------------------------------------------- */
.hero {
  position: relative;
  height: 94vh;
  min-height: 640px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.hero__collage {
  position: absolute; inset: 0;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: repeat(3, 1fr);
  filter: blur(38px);
  opacity: .65;
}
.hero__collage--posters {
  filter: blur(3px) saturate(1.1);
  opacity: .38;
  gap: 8px;
  transform: scale(1.06) rotate(-1.2deg);
}
.hero__cell { overflow: hidden; border-radius: 6px; }
.hero__cell img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  animation: tvKenburns 26s ease-in-out infinite alternate;
}
.hero__cell--1 img { animation-duration: 32s; animation-delay: -8s; }
.hero__cell--2 img { animation-duration: 38s; animation-delay: -16s; }
@keyframes tvKenburns {
  from { transform: scale(1) translateY(0); }
  to   { transform: scale(1.14) translateY(-3%); }
}
.hero__shade {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(8,8,10,.55) 0%, rgba(8,8,10,.35) 30%, rgba(8,8,10,.85) 78%, #08080a 100%);
}
.hero__glow {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 50% at 20% 30%, rgba(255,221,0,.14), transparent 70%);
}
.hero__inner {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex: 1;
  min-height: 550px;
  padding: 0 var(--tv-pad-x);
  max-width: 820px;
}
.hero__badge { display: inline-flex; align-items: center; gap: 8px; margin-bottom: 22px; }
.hero__badge i { width: 7px; height: 7px; border-radius: 50%; background: var(--tv-accent); }
.hero__badge span {
  font-size: 12.5px; font-weight: 700; color: var(--tv-accent);
  letter-spacing: .1em; white-space: nowrap;
}
.hero__title {
  font-weight: 900;
  font-size: clamp(44px, 6vw, 74px);
  line-height: .98;
  letter-spacing: -.035em;
  margin: 0 0 22px;
  text-shadow: 0 6px 40px rgba(0, 0, 0, .5);
}
.hero__sub {
  font-size: 18px; line-height: 1.55; color: var(--tv-ink-dim);
  max-width: 480px; margin: 0 0 34px;
}
.hero__cta-note { margin-left: 18px; font-size: 13px; color: #9a9aa0; }

/* ---- Content rows -------------------------------------------------------- */
.row-section { padding: 20px 0 8px; }
.row-section--first { padding-top: 44px; }
.row-section--last .hscroll { padding-bottom: 32px; }
.row-head {
  padding: 0 var(--tv-pad-x);
  display: flex; align-items: baseline; justify-content: space-between;
  margin-bottom: 16px;
}
.row-head h2 { font-weight: 800; font-size: 23px; letter-spacing: -.01em; margin: 0; }
.row-head span { font-size: 13px; color: var(--tv-ink-ghost); }

.hscroll {
  display: flex; gap: 16px;
  overflow-x: auto;
  padding: 4px var(--tv-pad-x) 20px;
  scrollbar-width: none;
  scroll-snap-type: x proximity;
}
.hscroll::-webkit-scrollbar { display: none; }
.hscroll > * { scroll-snap-align: start; }

/* Auto-scrolling marquee variant */
.hscroll--marquee {
  overflow: hidden;
  scroll-snap-type: none;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 4%, #000 96%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0, #000 4%, #000 96%, transparent 100%);
}
.hscroll--marquee .row-track {
  display: flex; gap: 16px;
  will-change: transform;
}
.hscroll--marquee .row-track > * { flex-shrink: 0; }
@media (prefers-reduced-motion: reduce) {
  .hscroll--marquee { overflow-x: auto; mask-image: none; -webkit-mask-image: none; }
  .hero__cell img { animation: none; }
}

/* Generic icon sizing */
.tv-icon { width: 1em; height: 1em; display: inline-block; vertical-align: -0.12em; }
.tv-stars { display: inline-flex; gap: 2px; color: var(--tv-accent); }
.tv-stars .tv-icon { width: 13px; height: 13px; }

/* Scroll reveal */
.tv-reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s ease, transform .7s cubic-bezier(.16,1,.3,1); }
.tv-reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .tv-reveal { opacity: 1; transform: none; transition: none; }
}

/* ---- Scroll progress bar -------------------------------------------------------- */
.tv-progress {
  position: fixed; top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--tv-accent), #ffe74d);
  transform-origin: 0 50%;
  transform: scaleX(0);
  z-index: 400;
  pointer-events: none;
  box-shadow: 0 0 12px rgba(255, 221, 0, .5);
}

/* ---- Floating header (front page, appears after hero) ---------------------------- */
.site-header--floating {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 300;
  transform: translateY(-110%);
  transition: transform .35s cubic-bezier(.16,1,.3,1);
}
.site-header--floating.is-shown { transform: none; }

/* ---- Tilt interaction --------------------------------------------------------------- */
.tv-tilt, .feature-card { --tilt: none; }
.plan.is-tilting { transform: var(--tilt); transition: transform .08s linear; }
.plan--popular.is-tilting { transform: var(--tilt) scale(1.06); }
.feature-card.is-tilting { transform: var(--tilt) translateY(-4px); transition: transform .08s linear, border-color .25s; }
.pillar.is-tilting, .promo__ticket.is-tilting, .pass.is-tilting { transform: var(--tilt) translateY(-4px); transition: transform .08s linear, border-color .25s; }

/* ---- Section headings (centered) ----------------------------------------- */
.sec-head { text-align: center; max-width: 640px; margin: 0 auto 56px; }
.sec-head__kicker {
  font-size: 13px; font-weight: 700; color: var(--tv-accent);
  letter-spacing: .08em; margin-bottom: 12px; text-transform: uppercase;
}
.sec-head h1, .sec-head h2 { font-weight: 900; font-size: clamp(30px, 4vw, 38px); letter-spacing: -.02em; margin: 0; }
.sec-head--lg h1, .sec-head--lg h2 { font-size: clamp(32px, 4.5vw, 42px); margin-bottom: 14px; }
.sec-head p { font-size: 16.5px; color: var(--tv-ink-soft); margin: 0; }
.checkout-hero .sec-head__kicker { display: inline-flex; align-items: center; gap: 7px; }
.checkout-hero .sec-head__kicker .tv-icon { width: 13px; height: 13px; }

/* ---- Feature icon boxes --------------------------------------------------- */
/* Full-bleed section: glows and the brand wall run edge-to-edge,
   content stays centered — no visible “box” seam. */
.features { padding: 70px 0 30px; }
.features .sec-head { padding: 0 var(--tv-pad-x); }
.features__grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  max-width: 1288px; margin: 0 auto;
  padding: 0 var(--tv-pad-x);
}
.feature-card {
  background: var(--tv-surface);
  border: 1px solid var(--tv-line);
  border-radius: 18px;
  padding: 34px 30px;
  transition: transform .25s, border-color .25s;
}
.feature-card:hover { transform: translateY(-4px); border-color: rgba(255, 221, 0, .4); }
.feature-card__icon {
  width: 52px; height: 52px; border-radius: 12px;
  background: rgba(255, 221, 0, .1);
  border: 1px solid rgba(255, 221, 0, .35);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  color: var(--tv-accent);
}
.feature-card__icon svg { width: 26px; height: 26px; }
.feature-card h3 {
  font-weight: 800; font-size: 18px; letter-spacing: -.01em; margin: 0 0 10px;
}
.feature-card p { font-size: 14.5px; line-height: 1.6; color: var(--tv-ink-soft); margin: 0; }

/* ---- Devices -------------------------------------------------------------- */
.devices { padding: 70px var(--tv-pad-x) 100px; max-width: 1440px; margin: 0 auto; }
.devices__stage {
  display: flex; align-items: flex-end; justify-content: center;
  gap: 64px; flex-wrap: wrap;
}
.devices__stage .device { animation: tvFloat 7s ease-in-out infinite; }
.devices__stage .device:nth-child(2) { animation-delay: -1.8s; }
.devices__stage .device:nth-child(3) { animation-delay: -3.5s; }
.devices__stage .device:nth-child(4) { animation-delay: -5.2s; }
@keyframes tvFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
@media (prefers-reduced-motion: reduce) {
  .devices__stage .device { animation: none; }
}
.device { text-align: center; }
.device__label { font-size: 13.5px; font-weight: 600; color: var(--tv-ink-mid); margin-top: 16px; }
.device__screen {
  background:
    radial-gradient(120% 90% at 22% 0%, rgba(255, 221, 0, .10), transparent 55%),
    linear-gradient(165deg, #1c1c20, #08080a 75%);
  border-radius: 4px; overflow: hidden; position: relative;
}
.device__dim { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,.15), rgba(0,0,0,.45)); }
.device__ui { position: absolute; inset: 0; padding: 12px; display: flex; flex-direction: column; }
.device__tag { display: flex; align-items: center; gap: 6px; margin-bottom: 10px; }
.device__tag i { width: 6px; height: 6px; border-radius: 50%; background: var(--tv-accent); }
.device__tag span { font-size: 9px; font-weight: 800; color: var(--tv-accent); letter-spacing: .08em; }
.device__thumbs { display: flex; gap: 6px; flex: 1; }
.device__thumbs > div { flex: 1; border-radius: 4px; overflow: hidden; position: relative; border: 1px solid rgba(255,255,255,.15); }
.device__thumbs > div.is-active { border-color: var(--tv-accent); }
/* Illustrated "content tile" swatches — replace stock photography on every
   fake screen (device mockups + showcase) with self-drawn gradient tiles. */
.tv-swatch {
  position: relative;
  background-size: cover;
}
.tv-swatch::after {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle at 30% 20%, rgba(255,255,255,.10), transparent 60%);
}
.tv-swatch--1 { background: linear-gradient(135deg, #6b5400, #221a00); }
.tv-swatch--2 { background: linear-gradient(135deg, #0d3b42, #04141a); }
.tv-swatch--3 { background: linear-gradient(135deg, #4a1020, #180608); }
.tv-swatch--4 { background: linear-gradient(135deg, #2a1b4a, #0f0a1c); }

.device--tv .device__frame {
  width: 320px; background: var(--tv-frame); border-radius: 10px; padding: 10px;
  box-shadow: 0 30px 60px -18px rgba(0, 0, 0, .7);
}
.device--tv .device__screen { aspect-ratio: 16/10; }
.device--tv .device__neck { width: 70px; height: 8px; background: var(--tv-frame); margin: 0 auto; border-radius: 0 0 4px 4px; }
.device--tv .device__base { width: 110px; height: 6px; background: #111113; margin: 0 auto; border-radius: 3px; }

.device--stick .device__pair { display: flex; align-items: center; gap: 18px; }
.device--stick .device__frame {
  width: 190px; background: var(--tv-frame); border-radius: 8px; padding: 7px;
  box-shadow: 0 24px 50px -18px rgba(0, 0, 0, .7); position: relative;
}
.device--stick .device__screen { border-radius: 3px; aspect-ratio: 16/10; }
.device--stick .device__dim { background: linear-gradient(180deg, rgba(0,0,0,.15), rgba(0,0,0,.55)); }
.device--stick .device__ui { padding: 8px; }
.device--stick .device__live { font-size: 7.5px; font-weight: 800; color: var(--tv-accent); letter-spacing: .06em; margin-bottom: 6px; }
.device--stick .device__thumbs { gap: 4px; }
.device--stick .device__thumbs > div { border: 0; border-radius: 3px; }
.device--stick .device__hdmi {
  position: absolute; right: -9px; top: 50%; transform: translateY(-50%);
  width: 16px; height: 34px; background: #0e0e10; border-radius: 4px;
}
.device--stick .device__remote {
  width: 44px; height: 120px; background: var(--tv-frame); border-radius: 20px;
  box-shadow: 0 20px 40px -16px rgba(0, 0, 0, .7);
  display: flex; flex-direction: column; align-items: center; padding: 12px 0; gap: 8px;
}
.device--stick .device__remote i { display: block; }
.device--stick .r-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--tv-accent); }
.device--stick .r-ring { width: 26px; height: 26px; border-radius: 50%; border: 2px solid #3a3a3e; }
.device--stick .r-bar { width: 18px; height: 4px; border-radius: 2px; background: #3a3a3e; }

.device--tablet .device__frame {
  width: 172px; background: var(--tv-frame); border-radius: 20px; padding: 9px 9px 16px;
  box-shadow: 0 26px 55px -18px rgba(0, 0, 0, .7);
}
.device--tablet .device__screen { border-radius: 6px; aspect-ratio: 3/4; }
.device--tablet .device__dim { background: linear-gradient(180deg, rgba(0,0,0,.15), rgba(0,0,0,.72)); }
.device--tablet .device__ui { padding: 10px; }
.device--tablet .device__guide { font-size: 8px; font-weight: 800; color: var(--tv-accent); letter-spacing: .06em; margin-bottom: 8px; }
.device--tablet .device__thumbs { display: grid; grid-template-columns: 1fr 1fr; gap: 6px; }
.device--tablet .device__home { width: 26px; height: 3px; background: #3a3a3e; border-radius: 2px; margin: 8px auto 0; }

.device--phone .device__frame {
  width: 104px; background: var(--tv-frame); border-radius: 22px; padding: 8px 8px 14px;
  box-shadow: 0 24px 50px -18px rgba(0, 0, 0, .7); position: relative;
}
.device--phone .device__notch {
  position: absolute; top: 8px; left: 50%; transform: translateX(-50%);
  width: 34px; height: 8px; background: var(--tv-frame); border-radius: 4px; z-index: 2;
}
.device--phone .device__screen { border-radius: 12px; aspect-ratio: 9/18; }
.device--phone .device__dim { background: linear-gradient(180deg, rgba(0,0,0,.15), rgba(0,0,0,.75)); }
.device--phone .device__ui { padding: 14px 8px 8px; display: flex; flex-direction: column; }
.device--phone .device__guide { font-size: 7px; font-weight: 800; color: var(--tv-accent); letter-spacing: .05em; margin-bottom: 8px; }
.device--phone .device__thumbs { display: block; flex: 1; }
.device--phone .device__thumbs > div { border-radius: 4px; overflow: hidden; margin-bottom: 5px; height: 22%; }
.device--phone .device__home { width: 24px; height: 3px; background: #3a3a3e; border-radius: 2px; margin: 8px auto 0; }

/* ---- Pricing --------------------------------------------------------------- */
.pricing { position: relative; padding: 90px var(--tv-pad-x); overflow: hidden; }
.pricing__glow {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 50% 60% at 50% 20%, rgba(255, 221, 0, .08), transparent 70%);
}
.pricing__inner { position: relative; max-width: 1200px; margin: 0 auto; }
.pricing__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; align-items: center; }
.pricing__grid--3 { grid-template-columns: repeat(3, 1fr); max-width: 980px; margin: 0 auto; }
.pricing__grid--2 { grid-template-columns: repeat(2, 1fr); max-width: 820px; margin: 0 auto; }
.pricing__grid--1 { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; }
.plan {
  background:
    radial-gradient(ellipse 120% 60% at 50% -10%, rgba(255,221,0,.05), transparent 60%),
    var(--tv-surface);
  border: 1px solid var(--tv-line);
  border-radius: 18px;
  padding: 40px 30px 34px;
  position: relative;
  overflow: hidden;
  transition: border-color .3s ease, box-shadow .3s ease;
}
.plan::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, transparent, rgba(255,221,0,.55), transparent);
  opacity: 0; transition: opacity .3s ease;
}
.plan:hover { border-color: rgba(255, 221, 0, .3); box-shadow: 0 24px 60px -24px rgba(0,0,0,.7); }
.plan:hover::before { opacity: 1; }
.plan--popular {
  background:
    radial-gradient(ellipse 130% 70% at 50% -10%, rgba(255,221,0,.14), transparent 62%),
    linear-gradient(160deg, #1c1c0a, #151510);
  border: 1.5px solid var(--tv-accent);
  transform: scale(1.06);
  box-shadow: 0 30px 70px -20px rgba(255, 221, 0, .35);
  z-index: 2;
}
.plan--popular::before { opacity: 1; background: linear-gradient(90deg, transparent, var(--tv-accent), transparent); height: 3px; }
.plan__flag {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--tv-accent); color: var(--tv-black);
  font-size: 12px; font-weight: 800; padding: 6px 16px;
  border-radius: 100px; font-family: var(--tv-font-display); white-space: nowrap;
}
.plan__name { font-family: var(--tv-font-display); font-weight: 700; font-size: 16px; color: var(--tv-ink-mid); margin-bottom: 8px; }
.plan--popular .plan__name { color: var(--tv-ink); }
.plan__price { display: flex; align-items: baseline; gap: 4px; margin-bottom: 4px; }
.plan__amount { font-family: var(--tv-font-display); font-weight: 900; font-size: 46px; color: var(--tv-ink); }
.plan--popular .plan__amount { color: var(--tv-accent); }
.plan__amount .woocommerce-Price-amount { font: inherit; color: inherit; }
.plan__per { font-size: 14px; color: var(--tv-ink-ghost); }
.plan--popular .plan__per { color: #c9c188; }
.plan__billed { font-size: 13px; color: var(--tv-ink-ghost); margin-bottom: 26px; }
.plan--popular .plan__billed { color: #c9c188; }
.plan__divider { height: 1px; background: var(--tv-line); margin-bottom: 22px; }
.plan--popular .plan__divider { background: rgba(255, 221, 0, .2); }
.plan__feature { display: flex; align-items: center; gap: 10px; margin-bottom: 13px; }
.plan__feature i { color: var(--tv-accent); font-size: 13px; font-weight: 800; font-style: normal; display: flex; }
.plan__feature .tv-icon { width: 14px; height: 14px; }
.plan__feature span { font-size: 14px; color: var(--tv-ink-mid); }
.plan--popular .plan__feature span { color: var(--tv-ink); }
.plan__cta {
  display: block; text-align: center; margin-top: 24px;
  background: transparent; color: var(--tv-ink);
  border: 1px solid rgba(255, 255, 255, .18);
  padding: 15px; border-radius: 9px; text-decoration: none;
  font-weight: 700; font-size: 14.5px;
  transition: border-color .2s, color .2s, background .2s, transform .15s;
  width: 100%; cursor: pointer; font-family: var(--tv-font-body);
}
.plan__cta:hover { border-color: var(--tv-accent); color: var(--tv-accent); }
.plan--popular .plan__cta {
  background: linear-gradient(135deg, #ffe97a, var(--tv-accent) 60%, #e8c400);
  color: var(--tv-black); border-color: var(--tv-accent);
  box-shadow: 0 12px 26px -10px rgba(255,221,0,.55);
}
.plan--popular .plan__cta:hover { transform: translateY(-1px); box-shadow: 0 16px 32px -10px rgba(255,221,0,.7); }
.plan__tier {
  position: absolute; top: 20px; right: 22px;
  font-size: 10px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase;
  padding: 4px 9px; border-radius: 100px;
  background: rgba(255, 255, 255, .06); color: var(--tv-ink-ghost);
  border: 1px solid rgba(255, 255, 255, .1);
}
.plan__tier--premium { background: rgba(255, 221, 0, .12); color: var(--tv-accent); border-color: rgba(255, 221, 0, .3); }
.plan__note { display: block; text-align: center; margin-top: 10px; font-size: 11.5px; color: var(--tv-ink-ghost); }

/* Digital access pass — the pricing section's product mockup. A virtual
   membership card (not a physical box) since this is a digital service. */
.pass {
  position: relative;
  max-width: 420px;
  margin: 0 auto 44px;
  padding: 22px 26px 20px;
  border-radius: 18px;
  background: linear-gradient(135deg, #1c1c10 0%, #131316 55%, #17171d 100%);
  border: 1px solid rgba(255, 221, 0, .22);
  box-shadow: 0 30px 70px -24px rgba(0, 0, 0, .7), inset 0 1px 0 rgba(255, 255, 255, .06);
  overflow: hidden;
  transform: var(--tilt, none);
  transition: transform .08s linear;
}
.pass__shine {
  position: absolute; inset: -40%;
  background: conic-gradient(from 210deg, transparent 0deg, rgba(255,221,0,.16) 40deg, transparent 90deg);
  animation: tvPassShine 5s linear infinite;
  pointer-events: none;
}
@keyframes tvPassShine { to { transform: rotate(360deg); } }
.pass__row { position: relative; z-index: 1; display: flex; align-items: center; justify-content: space-between; }
.pass__chip {
  width: 34px; height: 24px; border-radius: 5px;
  background: linear-gradient(155deg, #e8c94a, #a9860f);
  box-shadow: inset 0 0 0 1px rgba(0,0,0,.25);
}
.pass__brand { display: inline-flex; align-items: center; gap: 6px; font-family: var(--tv-font-display); font-weight: 800; font-size: 13px; letter-spacing: .03em; }
.pass__brand-mark { width: 18px; height: 18px; }
.pass__mid { position: relative; z-index: 1; text-align: center; padding: 20px 0 18px; }
.pass__label { display: block; font-size: 11px; letter-spacing: .12em; color: var(--tv-ink-ghost); margin-bottom: 10px; }
.pass__tiers { display: inline-flex; gap: 8px; }
.pass__tier {
  font-family: var(--tv-font-display); font-weight: 800; font-size: 12px;
  padding: 6px 16px; border-radius: 100px;
  background: rgba(255, 255, 255, .06); color: var(--tv-ink-mid);
  border: 1px solid rgba(255, 255, 255, .1);
}
.pass__tier--premium { background: var(--tv-accent); color: var(--tv-black); border-color: var(--tv-accent); }
.pass__row--foot { font-size: 11.5px; color: var(--tv-ink-ghost); }
.pass__row--foot span { display: inline-flex; align-items: center; gap: 6px; }
.pass__row--foot .tv-icon { width: 13px; height: 13px; color: var(--tv-accent); }
.pass__wave { display: inline-flex; align-items: flex-end; gap: 2px; height: 12px; }
.pass__wave i { width: 3px; background: var(--tv-accent); border-radius: 1px; animation: tvWave 1.1s ease-in-out infinite; }
.pass__wave i:nth-child(1) { height: 40%; animation-delay: 0s; }
.pass__wave i:nth-child(2) { height: 100%; animation-delay: .15s; }
.pass__wave i:nth-child(3) { height: 65%; animation-delay: .3s; }
@keyframes tvWave { 0%, 100% { transform: scaleY(.5); } 50% { transform: scaleY(1); } }
.pricing__more { text-align: center; margin-top: 40px; }
.pricing__more a { color: var(--tv-accent); text-decoration: none; font-weight: 600; font-size: 15px; }

/* ---- Trial banner ----------------------------------------------------------- */
.trial { padding: 0 var(--tv-pad-x) 90px; }
.trial__card {
  max-width: 1440px; margin: 0 auto;
  background: linear-gradient(115deg, #FFDD00 0%, #ffe74d 60%, #FFDD00 100%);
  border-radius: 20px; padding: 60px 64px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 40px; flex-wrap: wrap;
  box-shadow: 0 30px 80px -20px rgba(255, 221, 0, .35);
}
.trial__copy { max-width: 580px; }
.trial__copy h2 {
  font-weight: 900; font-size: clamp(30px, 4.5vw, 42px); line-height: 1.05;
  letter-spacing: -.02em; color: var(--tv-black); margin: 0 0 14px;
}
.trial__copy p { font-size: 17px; color: #2a2a1a; margin: 0 0 22px; line-height: 1.5; }
.trial__perks { display: flex; gap: 22px; flex-wrap: wrap; }
.trial__perk { display: flex; align-items: center; gap: 8px; }
.trial__perk i {
  width: 18px; height: 18px; border-radius: 50%;
  background: var(--tv-black); color: var(--tv-accent);
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 800; font-style: normal;
}
.trial__perk .tv-icon { width: 10px; height: 10px; }
.trial__perk span { font-size: 14px; font-weight: 600; color: var(--tv-black); }

/* ---- Testimonials ------------------------------------------------------------ */
.testimonials { padding: 90px 0 90px; }
.testimonials .sec-head { margin-bottom: 30px; }
.testimonials .rating-badge { justify-content: center; margin-top: 6px; }
.tcard-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px;
  max-width: 1240px; margin: 0 auto; padding: 0 var(--tv-pad-x);
}
.tcard {
  border-radius: 16px;
  background: var(--tv-surface);
  border: 1px solid var(--tv-line);
  padding: 26px;
  transform: var(--tilt, none);
  transition: transform .08s linear, border-color .25s;
}
.tcard:hover { border-color: rgba(255, 221, 0, .28); }
.tcard__head { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.tcard__avatar {
  flex-shrink: 0; width: 42px; height: 42px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--tv-font-display); font-weight: 800; font-size: 14px; color: var(--tv-black);
  background: linear-gradient(150deg, var(--tcard-hue, var(--tv-accent)), color-mix(in srgb, var(--tcard-hue, var(--tv-accent)) 60%, black));
}
.tcard__who { flex: 1; min-width: 0; }
.tcard__name { font-size: 14px; font-weight: 700; color: var(--tv-ink); }
.tcard__meta { font-size: 11.5px; color: var(--tv-ink-ghost); }
.tcard__stars { color: var(--tv-accent); font-size: 11px; letter-spacing: 1px; flex-shrink: 0; }
.tcard__stars .tv-icon { width: 11px; height: 11px; }
.tcard__quote {
  position: relative;
  font-size: 14.5px; line-height: 1.65; color: var(--tv-ink-mid);
  margin: 0 0 18px; padding-left: 2px;
}
.tcard__mark { color: var(--tv-accent); font-family: Georgia, serif; font-size: 26px; line-height: 0; vertical-align: -3px; margin-right: 2px; opacity: .8; }
.tcard__foot { border-top: 1px solid var(--tv-line); padding-top: 14px; }

/* ---- FAQ ----------------------------------------------------------------------- */
.faq { padding: 20px var(--tv-pad-x) 90px; max-width: 900px; margin: 0 auto; }
.faq .sec-head { margin-bottom: 44px; }
.faq-item { border-bottom: 1px solid var(--tv-line); }
.faq-item__q {
  display: flex; align-items: center; justify-content: space-between;
  width: 100%; background: none; border: 0; text-align: left;
  padding: 22px 4px; cursor: pointer; font-family: var(--tv-font-body);
}
.faq-item__q span { font-size: 16.5px; font-weight: 600; color: var(--tv-ink); }
.faq-item__q i { font-size: 20px; color: var(--tv-accent); font-weight: 300; font-style: normal; flex: 0 0 auto; margin-left: 16px; }
.faq-item__a { overflow: hidden; max-height: 0; transition: max-height .3s ease; }
.faq-item.is-open .faq-item__a { max-height: 400px; }
.faq-item__a p {
  font-size: 15px; line-height: 1.6; color: var(--tv-ink-soft);
  margin: 0 0 22px; padding: 0 4px; max-width: 760px;
}

/* ---- Footer --------------------------------------------------------------------- */
.site-footer { border-top: 1px solid var(--tv-line); background: #060608; }

/* Trust strip */
.footer-trust { border-bottom: 1px solid var(--tv-line); padding: 26px var(--tv-pad-x); }
.footer-trust__inner {
  max-width: 1240px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
}
.footer-trust__item { display: flex; align-items: center; gap: 13px; }
.footer-trust__icon {
  width: 42px; height: 42px; border-radius: 11px; flex: 0 0 auto;
  background: rgba(255, 221, 0, .09);
  border: 1px solid rgba(255, 221, 0, .3);
  display: flex; align-items: center; justify-content: center;
  color: var(--tv-accent);
}
.footer-trust__icon .tv-icon { width: 21px; height: 21px; }
.footer-trust__item strong { display: block; font-size: 13.5px; color: var(--tv-ink); font-weight: 700; }
.footer-trust__item span span, .footer-trust__item div > span { font-size: 12px; color: var(--tv-ink-ghost); }

/* Columns */
.site-footer__cols {
  max-width: 1240px; margin: 0 auto;
  display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 44px;
  padding: 52px var(--tv-pad-x) 40px;
}
.site-footer__col h4 {
  font-family: var(--tv-font-display);
  font-weight: 800; font-size: 13px; letter-spacing: .08em;
  text-transform: uppercase; color: var(--tv-ink);
  margin: 0 0 16px;
}
.site-footer__col > a {
  display: block;
  color: var(--tv-ink-faint); text-decoration: none;
  font-size: 13.5px; padding: 5px 0;
  transition: color .15s, transform .15s;
}
.site-footer__col > a:hover { color: var(--tv-accent); transform: translateX(3px); }
.site-footer__col ul { list-style: none; margin: 0; padding: 0; }
.site-footer__col ul a {
  display: block; color: var(--tv-ink-faint); text-decoration: none;
  font-size: 13.5px; padding: 5px 0;
}
.site-footer__col ul a:hover { color: var(--tv-accent); }
.site-footer .site-brand img { height: 30px; }
.site-footer__blurb {
  font-size: 13.5px; line-height: 1.65; color: var(--tv-ink-ghost);
  margin: 16px 0 20px; max-width: 320px;
}
.site-footer__contact a {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--tv-ink-mid); text-decoration: none;
  font-size: 13.5px; margin: 0 18px 8px 0;
}
.site-footer__contact a:hover { color: var(--tv-accent); }
.site-footer__contact .tv-icon { width: 16px; height: 16px; color: var(--tv-accent); }

/* Legal bar */
.site-footer__bar {
  border-top: 1px solid rgba(255, 255, 255, .06);
  padding: 20px var(--tv-pad-x) 24px;
}
.site-footer__bar {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; flex-wrap: wrap;
  max-width: 1240px; margin: 0 auto;
}
.site-footer__legal { font-size: 12px; color: #5c5c62; }
.site-footer__pay { display: flex; gap: 8px; }
.pay-badge {
  width: 52px; height: 30px;
  background: #141416;
  border: 1px solid rgba(255, 255, 255, .09);
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  color: var(--tv-ink-mid);
}
.pay-badge svg { width: 44px; height: 15px; }
.pay-badge--visa { color: #9aa7e8; }
.pay-badge--pp { color: #8fb8e8; }

@media (max-width: 1080px) {
  .footer-trust__inner { grid-template-columns: repeat(2, 1fr); }
  .site-footer__cols { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 640px) {
  .footer-trust__inner { grid-template-columns: 1fr; }
  .site-footer__cols { grid-template-columns: 1fr; }
}

/* ---- Hero extras (chips, actions) -------------------------------------------------- */
.hero__actions { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.hero__chips { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 26px; }
.hero__chip {
  display: inline-flex; align-items: center; gap: 7px;
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 100px;
  padding: 7px 14px;
  font-size: 12.5px; font-weight: 600; color: var(--tv-ink-mid);
}
.hero__chip::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: var(--tv-accent);
}

/* ---- Stats bar ---------------------------------------------------------------------- */
.stats { padding: 14px var(--tv-pad-x) 60px; position: relative; z-index: 12; }
.stats__grid {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px;
  background: var(--tv-line);
  border: 1px solid var(--tv-line);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 30px 60px -20px rgba(0, 0, 0, .6);
}
.stat {
  background: #101012; text-align: center; padding: 30px 16px;
  transition: background .25s ease;
}
.stat:hover { background: #17170f; }
.stat__icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 34px; height: 34px; border-radius: 50%; margin-bottom: 12px;
  background: rgba(255, 221, 0, .1); color: var(--tv-accent);
}
.stat__icon .tv-icon { width: 16px; height: 16px; }
.stat__num {
  font-family: var(--tv-font-display); font-weight: 900;
  font-size: clamp(26px, 3vw, 36px); color: var(--tv-accent);
  letter-spacing: -.02em;
}
.stat__label { font-size: 13px; color: var(--tv-ink-soft); margin-top: 4px; }

/* ---- How it works (steps) ------------------------------------------------------------ */
.steps { padding: 20px var(--tv-pad-x) 90px; max-width: 1240px; margin: 0 auto; }
.steps__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.step {
  background: var(--tv-surface);
  border: 1px solid var(--tv-line);
  border-radius: 18px;
  padding: 34px 30px;
  position: relative;
}
.step__num {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--tv-accent); color: var(--tv-black);
  font-family: var(--tv-font-display); font-weight: 900; font-size: 19px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.step h3 { font-weight: 800; font-size: 18px; letter-spacing: -.01em; margin: 0 0 10px; }
.step p { font-size: 14.5px; line-height: 1.6; color: var(--tv-ink-soft); margin: 0; }

/* ---- Device compatibility grid -------------------------------------------------------- */
.device-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px;
  max-width: 1240px; margin: 70px auto 0;
}
.device-grid__item {
  background: var(--tv-surface);
  border: 1px solid var(--tv-line);
  border-radius: 14px;
  padding: 26px 20px;
  text-align: center;
  transition: transform .25s, border-color .25s;
}
.device-grid__item:hover { transform: translateY(-4px); border-color: rgba(255, 221, 0, .4); }
.device-grid__icon {
  width: 46px; height: 46px; border-radius: 11px; margin: 0 auto 14px;
  background: rgba(255, 221, 0, .1);
  border: 1px solid rgba(255, 221, 0, .35);
  display: flex; align-items: center; justify-content: center;
  color: var(--tv-accent);
}
.device-grid__icon svg { width: 24px; height: 24px; }
.device-grid__item h3 { font-weight: 800; font-size: 15.5px; margin: 0 0 4px; }
.device-grid__item span { font-size: 12.5px; color: var(--tv-ink-ghost); }
.devices__more { text-align: center; margin-top: 36px; }

/* ---- Rating badge (testimonials head) -------------------------------------------------- */
.rating-badge { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.rating-badge__score {
  font-family: var(--tv-font-display); font-weight: 900; font-size: 17px;
  color: var(--tv-ink);
}
.rating-badge__stars { color: var(--tv-accent); font-size: 13px; letter-spacing: 2px; }
.rating-badge__line { font-size: 13px; color: var(--tv-ink-ghost); }

/* ---- SEO / About IPTV ------------------------------------------------------------------- */
.seo-about { padding: 20px var(--tv-pad-x) 90px; max-width: 900px; margin: 0 auto; }
.seo-about .sec-head { margin-bottom: 34px; }
.seo-about__lead { font-size: 17px; line-height: 1.7; color: var(--tv-ink-dim); margin: 0 0 10px; }
.seo-about__body h3 {
  font-weight: 800; font-size: 20px; letter-spacing: -.01em;
  margin: 34px 0 10px;
}
.seo-about__body p { font-size: 15px; line-height: 1.7; color: var(--tv-ink-soft); margin: 0; }

/* ---- Final CTA band ----------------------------------------------------------------------- */
.final-cta {
  padding: 0 var(--tv-pad-x) 90px;
  text-align: center;
}
.final-cta__inner {
  max-width: 1440px; margin: 0 auto;
  background: radial-gradient(ellipse 60% 100% at 50% 0%, rgba(255, 221, 0, .1), transparent 70%), var(--tv-surface);
  border: 1px solid var(--tv-line);
  border-radius: 20px;
  padding: 70px 40px;
}
.final-cta h2 {
  font-weight: 900; font-size: clamp(28px, 4vw, 40px);
  letter-spacing: -.02em; margin: 0 0 12px;
}
.final-cta p { font-size: 16.5px; color: var(--tv-ink-soft); margin: 0 0 30px; }
.final-cta__actions { display: flex; align-items: center; justify-content: center; gap: 14px; flex-wrap: wrap; }

/* ---- WhatsApp float --------------------------------------------------------------------- */
.wa-float {
  position: fixed; right: 22px; bottom: 22px; z-index: 200;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25d366; color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 12px 30px -8px rgba(37, 211, 102, .55);
  transition: transform .15s;
}
.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width: 30px; height: 30px; }

/* ---- 3D TVWILL badge object ---------------------------------------------------------- */
.tv3d {
  position: absolute;
  pointer-events: none;
  z-index: 1;
}
.tv3d__stage {
  perspective: 900px;
  width: 100%; height: 100%;
}
.tv3d__obj {
  position: relative;
  width: 100%; height: 100%;
  transform-style: preserve-3d;
  animation: tv3dSpin 16s ease-in-out infinite, tv3dFloat 9s ease-in-out infinite;
}
.tv3d__layer {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  backface-visibility: visible;
}
/* fake extrusion: stacked layers pushed back & darkened */
.tv3d__layer--0 { transform: translateZ(0); }
.tv3d__layer--1 { transform: translateZ(-4px); filter: brightness(.82); }
.tv3d__layer--2 { transform: translateZ(-8px); filter: brightness(.64); }
.tv3d__layer--3 { transform: translateZ(-12px); filter: brightness(.46); }
.tv3d__layer--4 { transform: translateZ(-16px); filter: brightness(.3); }
.tv3d__glow {
  position: absolute; inset: -30%;
  background: radial-gradient(circle at 50% 50%, rgba(255, 221, 0, .22), transparent 65%);
  filter: blur(30px);
  animation: tv3dGlow 6s ease-in-out infinite;
}
@keyframes tv3dSpin {
  0%   { transform: rotateY(-28deg) rotateX(8deg) rotateZ(-3deg); }
  50%  { transform: rotateY(28deg) rotateX(-6deg) rotateZ(3deg); }
  100% { transform: rotateY(-28deg) rotateX(8deg) rotateZ(-3deg); }
}
@keyframes tv3dFloat {
  0%, 100% { margin-top: 0; }
  50% { margin-top: -18px; }
}
@keyframes tv3dGlow {
  0%, 100% { opacity: .8; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.12); }
}

/* placements */
.tv3d--hero {
  top: 50%; right: 5%;
  width: min(520px, 36vw); height: min(221px, 15.3vw);
  transform: translateY(-58%);
  opacity: .95;
  filter: drop-shadow(0 40px 60px rgba(0, 0, 0, .55));
}
.tv3d--hero .tv3d__glow {
  inset: -45% -20%;
  background: radial-gradient(ellipse 55% 60% at 50% 50%, rgba(255, 221, 0, .16), transparent 65%);
}
.tv3d--pricing {
  top: 30px; right: -60px;
  width: 220px; height: 175px;
  opacity: .16;
  filter: blur(2px);
}
.tv3d--cta {
  top: 50%; left: 6%;
  width: 150px; height: 120px;
  transform: translateY(-50%);
  opacity: .14;
  filter: blur(1.5px);
}
@media (max-width: 1080px) {
  .tv3d--hero { display: none; }
}
@media (prefers-reduced-motion: reduce) {
  .tv3d__obj, .tv3d__glow { animation: none; }
}

/* ---- Glow orbs ------------------------------------------------------------------------ */
.features, .steps, .testimonials { position: relative; overflow: hidden; }
.tv-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  pointer-events: none;
  z-index: 0;
}
.tv-orb--1 {
  width: 420px; height: 420px; top: -160px; left: -140px;
  background: radial-gradient(circle, rgba(255, 221, 0, .07), transparent 70%);
  animation: tvOrbDrift 22s ease-in-out infinite;
}
.tv-orb--2 {
  width: 360px; height: 360px; bottom: -140px; right: -120px;
  background: radial-gradient(circle, rgba(90, 120, 255, .06), transparent 70%);
  animation: tvOrbDrift 26s ease-in-out infinite reverse;
}
.tv-orb--3 {
  width: 460px; height: 460px; top: -180px; right: -160px;
  background: radial-gradient(circle, rgba(255, 221, 0, .06), transparent 70%);
  animation: tvOrbDrift 24s ease-in-out infinite;
}
@keyframes tvOrbDrift {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(40px, 30px) scale(1.08); }
  66% { transform: translate(-30px, 15px) scale(.95); }
}
.features .sec-head, .features__grid, .brands-strip,
.steps .sec-head, .steps__grid { position: relative; z-index: 1; }
@media (prefers-reduced-motion: reduce) { .tv-orb { animation: none; } }

/* ---- Luxury polish: steps connector, card sheen, trust row ------------------------------ */
.steps__grid { position: relative; }
@media (min-width: 1081px) {
  .steps__grid::before {
    content: '';
    position: absolute; top: 51px; left: 12%; right: 12%;
    height: 1px; z-index: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 221, 0, .35) 20%, rgba(255, 221, 0, .35) 80%, transparent);
  }
  .step { z-index: 1; }
}
.step__num { box-shadow: 0 0 0 6px rgba(255, 221, 0, .08), 0 8px 20px -6px rgba(255, 221, 0, .4); }

/* gradient border sheen on premium cards */
.feature-card, .step, .plan, .device-grid__item {
  background-image: linear-gradient(160deg, rgba(255, 255, 255, .03), transparent 38%);
  background-blend-mode: overlay;
}
.feature-card:hover .feature-card__icon {
  transform: scale(1.08) rotate(-4deg);
  box-shadow: 0 10px 26px -8px rgba(255, 221, 0, .45);
}
.feature-card__icon { transition: transform .25s, box-shadow .25s; }

/* pricing trust row */
.pricing__trust {
  display: flex; align-items: center; justify-content: center;
  gap: 26px; flex-wrap: wrap;
  margin-top: 34px;
}
.pricing__trust span {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 12.5px; font-weight: 600; color: var(--tv-ink-ghost);
}
.pricing__trust .tv-icon { width: 14px; height: 14px; color: var(--tv-accent); }

/* verified member badge */
.tcard__verified {
  display: inline-flex; align-items: center; gap: 4px;
  margin-left: 8px;
  color: #7ddb8a; font-size: 10.5px; font-weight: 700;
  letter-spacing: .03em; text-transform: uppercase;
}
.tcard__verified .tv-icon { width: 11px; height: 11px; }

/* rating badge chip */
.rating-badge {
  background: var(--tv-surface);
  border: 1px solid var(--tv-line);
  border-radius: 100px;
  padding: 8px 16px;
}

/* header brand hover */
.site-brand { transition: transform .2s; }
.site-brand:hover { transform: scale(1.03); }

/* smooth heading tracking on big titles */
.final-cta__inner { position: relative; overflow: hidden; }
.final-cta h2, .final-cta p, .final-cta__actions { position: relative; z-index: 1; }

/* ---- Inner pages ------------------------------------------------------------------ */
.page-shell { max-width: 900px; margin: 0 auto; padding: 60px var(--tv-pad-x) 90px; }
.page-shell h1 { font-weight: 900; font-size: clamp(32px, 5vw, 48px); letter-spacing: -.02em; }
.page-shell .entry-content { color: var(--tv-ink-dim); font-size: 16px; line-height: 1.7; }
.page-shell .entry-content a { color: var(--tv-accent); }

/* ---- Responsive -------------------------------------------------------------------- */
@media (max-width: 1080px) {
  :root { --tv-pad-x: 32px; }
  .pricing__grid, .features__grid { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; }
  .features__grid { grid-template-columns: 1fr 1fr; max-width: 792px; }
  .steps__grid { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; }
  .device-grid { grid-template-columns: repeat(2, 1fr); }
  .stats__grid { grid-template-columns: repeat(2, 1fr); }
  .plan--popular { transform: none; }
  .devices__stage { gap: 40px; }
}
@media (max-width: 640px) {
  .features__grid { grid-template-columns: 1fr; max-width: 500px; }
  .device-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .stat { padding: 20px 10px; }
}
@media (max-width: 760px) {
  :root { --tv-pad-x: 20px; }

  /* Header: brand left, tools + burger right, clean slide-down panel */
  .site-header {
    position: relative;
    z-index: 40; /* keep the open menu above hero content */
    padding-top: 16px; padding-bottom: 16px;
    gap: 4px;
  }
  .site-header--floating { z-index: 300; }
  .site-header--floating { position: fixed; }
  .site-brand { margin-right: auto; }
  .site-brand img.custom-logo, .site-brand img { height: 28px; }
  .site-tools { margin-left: 0; order: 2; }
  .tv-tool { width: 38px; height: 38px; }
  .nav-toggle { display: block; order: 3; position: relative; width: 40px; height: 40px; }
  .nav-toggle span {
    position: absolute; left: 9px; width: 22px;
    margin: 0;
    transition: transform .25s, opacity .2s, top .25s;
  }
  .nav-toggle span:nth-child(1) { top: 13px; }
  .nav-toggle span:nth-child(2) { top: 19px; }
  .nav-toggle span:nth-child(3) { top: 25px; }
  .nav-toggle.is-open span:nth-child(1) { top: 19px; transform: rotate(45deg); }
  .nav-toggle.is-open span:nth-child(2) { opacity: 0; }
  .nav-toggle.is-open span:nth-child(3) { top: 19px; transform: rotate(-45deg); }

  .site-nav {
    display: flex;
    position: absolute; top: 100%; left: 0; right: 0;
    background: rgba(8, 8, 10, .98);
    -webkit-backdrop-filter: blur(16px); backdrop-filter: blur(16px);
    flex-direction: column; align-items: stretch;
    padding: 10px var(--tv-pad-x) 22px; gap: 0;
    border-bottom: 1px solid var(--tv-line);
    box-shadow: 0 30px 50px -20px rgba(0, 0, 0, .8);
    /* closed state */
    opacity: 0;
    transform: translateY(-8px);
    pointer-events: none;
    transition: opacity .22s ease, transform .25s cubic-bezier(.16,1,.3,1);
    z-index: 90;
  }
  .site-nav.is-open { opacity: 1; transform: none; pointer-events: auto; }
  .site-nav a:not(.tv-btn) {
    display: block;
    padding: 15px 2px;
    font-size: 15.5px;
    border-bottom: 1px solid rgba(255, 255, 255, .06);
  }
  .site-nav ul { flex-direction: column; align-items: stretch; gap: 0; }
  .site-nav ul a { display: block; padding: 15px 2px; border-bottom: 1px solid rgba(255, 255, 255, .06); }
  .site-nav .tv-btn { margin-top: 16px; text-align: center; padding: 14px; font-size: 14.5px; }

  /* Content rows: native swipe scrolling (JS adds .hscroll--native) */
  .hscroll--native,
  .row-section .hscroll--marquee {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    -webkit-mask-image: none;
    mask-image: none;
    scrollbar-width: none;
  }
  .hscroll--native::-webkit-scrollbar { display: none; }
  .row-section .row-track { width: max-content; transform: none !important; }

  /* Sports scoreboard fits small tiles */
  .tile--sports { flex-basis: min(330px, 82vw); }
  .tile--sports .tile__topbar { flex-wrap: wrap; gap: 6px; }
  .tile__viewers { font-size: 9.5px; padding: 3px 7px; }
  .tile__score-strip { gap: 7px; padding: 6px 9px; max-width: 100%; flex-wrap: wrap; }
  .tile__team { font-size: 11.5px; }
  .tile__score { font-size: 13px; }
  .tile--sports .tile__title { font-size: 15px; }

  /* Hero */
  .hero { height: auto; min-height: 100vh; min-height: 100svh; }
  .hero__inner { padding-top: 10px; }
  .hero__badge span { white-space: normal; line-height: 1.5; }
  .hero__actions { gap: 12px; }
  .hero__actions .tv-btn--lg { width: 100%; text-align: center; }
  .hero__cta-note { display: block; margin: 4px 0 0; }
  .hero__chips { margin-top: 20px; }

  /* Ticker */
  .ticker { height: 38px; }
  .ticker__label { font-size: 10.5px; padding: 0 12px 0 14px; }
  .ticker__item { font-size: 11.5px; }

  /* Stats overlap softened */

  /* Sections */
  .row-head { flex-wrap: wrap; gap: 4px; }
  .sec-head p { font-size: 15px; }
  .conn-toggle { margin: 0 auto 34px; width: 100%; max-width: 340px; }
  .conn-toggle__btn { flex: 1; justify-content: center; padding: 11px 10px; font-size: 13px; }
  .pricing { padding-top: 64px; padding-bottom: 64px; }
  .pricing__trust { gap: 14px 20px; }
  .trial__card { padding: 36px 24px; }
  .trial__card .tv-btn--dark { width: 100%; text-align: center; }
  .devices { padding-bottom: 60px; }
  .devices__stage { gap: 34px; }
  .device--tv .device__frame { width: 280px; }
  .steps { padding-bottom: 60px; }
  .seo-about { padding-bottom: 60px; }
  .faq { padding-bottom: 60px; }
  .faq-item__q span { font-size: 15px; }
  .final-cta { padding-bottom: 60px; }
  .final-cta__inner { padding: 48px 22px; }
  .final-cta__actions .tv-btn--lg { width: 100%; }
  .wa-float { right: 16px; bottom: 16px; width: 50px; height: 50px; }

  /* Footer */
  .footer-trust { padding: 20px var(--tv-pad-x); }
  .site-footer__cols { padding-top: 36px; gap: 26px; }
  .site-footer__bar { flex-direction: column; align-items: flex-start; }
}

/* ==========================================================================
   Promo band — limited-time offer, replaces the old channel ticker.
   ========================================================================== */
.promo { padding: 64px var(--tv-pad-x) 10px; position: relative; }
.promo__inner {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 48px;
  align-items: center;
  max-width: 1240px;
  margin: 0 auto;
  background: linear-gradient(135deg, rgba(255,221,0,.08), rgba(255,221,0,0) 55%), var(--tv-surface);
  border: 1px solid var(--tv-line);
  border-radius: 20px;
  padding: 44px 48px;
  overflow: hidden;
  position: relative;
}
.promo__kicker {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--tv-font-display); font-weight: 800; font-size: 12.5px;
  letter-spacing: .08em; text-transform: uppercase; color: var(--tv-accent);
  margin-bottom: 14px;
}
.promo__kicker i { width: 7px; height: 7px; border-radius: 50%; background: var(--tv-accent); display: inline-block; box-shadow: 0 0 0 4px rgba(255,221,0,.18); animation: tvPulseDot 1.8s ease-in-out infinite; }
@keyframes tvPulseDot { 0%,100% { opacity: 1; } 50% { opacity: .35; } }
.promo__copy h2 { font-family: var(--tv-font-display); font-weight: 900; font-size: clamp(26px, 3.2vw, 36px); letter-spacing: -.02em; margin: 0 0 12px; }
.promo__copy p { color: var(--tv-ink-soft); font-size: 16px; max-width: 46ch; margin: 0 0 26px; }
.promo__actions { display: flex; align-items: center; gap: 26px; flex-wrap: wrap; }
.promo__countdown { display: flex; gap: 10px; }
.promo__cd { display: flex; flex-direction: column; align-items: center; background: var(--tv-frame); border: 1px solid var(--tv-line); border-radius: 10px; padding: 8px 12px; min-width: 52px; }
.promo__cd span { font-family: var(--tv-font-display); font-weight: 800; font-size: 20px; color: var(--tv-accent); line-height: 1; }
.promo__cd em { font-style: normal; font-size: 10px; color: var(--tv-ink-ghost); letter-spacing: .06em; text-transform: uppercase; margin-top: 4px; }

.promo__ticket {
  position: relative;
  background: linear-gradient(160deg, #1c1c1f, #101012);
  border: 1px solid var(--tv-line);
  border-radius: 16px;
  padding: 22px 24px 20px;
  transform: var(--tilt, none);
  transition: transform .08s linear;
  box-shadow: 0 30px 60px -20px rgba(0,0,0,.6);
}
.promo__ticket-glow {
  position: absolute; inset: -30%; z-index: 0; pointer-events: none;
  background: radial-gradient(circle at 30% 20%, rgba(255,221,0,.16), transparent 60%);
}
.promo__ticket-top, .promo__ticket-mid, .promo__ticket-bottom { position: relative; z-index: 1; }
.promo__ticket-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px; }
.promo__ticket-brand { display: flex; align-items: center; gap: 8px; font-family: var(--tv-font-display); font-weight: 800; font-size: 13px; color: var(--tv-ink); }
.promo__ticket-mark { width: 20px; height: 20px; }
.promo__ticket-tag { font-size: 10px; letter-spacing: .08em; color: var(--tv-ink-ghost); text-transform: uppercase; }
.promo__ticket-mid { text-align: center; padding: 18px 0 22px; }
.promo__ticket-pct { display: block; font-family: var(--tv-font-display); font-weight: 900; font-size: 30px; color: var(--tv-accent); letter-spacing: -.01em; }
.promo__ticket-label { display: block; font-size: 12.5px; color: var(--tv-ink-soft); margin-top: 4px; }
.promo__ticket-perf {
  position: relative; z-index: 1;
  border-top: 1px dashed var(--tv-line);
  margin: 0 -24px;
}
.promo__ticket-perf::before, .promo__ticket-perf::after {
  content: ''; position: absolute; top: -9px; width: 18px; height: 18px; border-radius: 50%; background: var(--tv-bg);
}
.promo__ticket-perf::before { left: -9px; }
.promo__ticket-perf::after { right: -9px; }
.promo__ticket-bottom { display: flex; align-items: center; justify-content: space-between; padding-top: 16px; font-size: 12.5px; color: var(--tv-ink-ghost); }
.promo__ticket-bottom strong { font-family: var(--tv-font-display); font-weight: 800; font-size: 14.5px; color: var(--tv-ink); letter-spacing: .04em; }

/* ==========================================================================
   Guarantee / trust pillars — replaces the old international-channels grid.
   ========================================================================== */
.guarantee { padding: 90px var(--tv-pad-x); position: relative; overflow: hidden; }
.guarantee__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; max-width: 1240px; margin: 0 auto; }
.pillar {
  background: var(--tv-surface); border: 1px solid var(--tv-line); border-radius: 16px;
  padding: 30px 24px; text-align: center; transform: var(--tilt, none); transition: transform .08s linear, border-color .2s ease;
}
.pillar:hover { border-color: rgba(255,221,0,.28); }
.pillar__badge { position: relative; width: 56px; height: 56px; margin: 0 auto 18px; perspective: 600px; }
.pillar__badge-face {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  border-radius: 50%; background: rgba(255,221,0,.1); color: var(--tv-accent);
  transition: transform .6s cubic-bezier(.2,.8,.2,1);
  backface-visibility: hidden;
}
.pillar__badge-face .tv-icon { width: 24px; height: 24px; }
.pillar__badge-face--back { transform: rotateY(180deg); background: var(--tv-accent); color: var(--tv-black); }
.pillar:hover .pillar__badge-face--front { transform: rotateY(180deg); }
.pillar:hover .pillar__badge-face--back { transform: rotateY(360deg); }
.pillar h3 { font-family: var(--tv-font-display); font-weight: 800; font-size: 16.5px; margin: 0 0 10px; }
.pillar p { font-size: 14px; color: var(--tv-ink-soft); line-height: 1.6; margin: 0; }

/* ---- New sections: mobile tweaks ---------------------------------------- */
@media (max-width: 900px) {
  .pricing__grid { grid-template-columns: repeat(2, 1fr); }
  .pricing__grid--3 { grid-template-columns: repeat(2, 1fr); }
  .guarantee__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 760px) {
  .promo { padding: 44px 20px 4px; }
  .promo__inner { grid-template-columns: 1fr; padding: 30px 24px; gap: 30px; }
  .promo__actions { flex-direction: column; align-items: flex-start; gap: 18px; }
  .guarantee { padding: 60px 20px; }
  .guarantee__grid { grid-template-columns: 1fr; }
  .pricing__grid, .pricing__grid--3 { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .plan--popular { transform: none; }
  .pass { max-width: 100%; }
}

/* ==========================================================================
   Installation Guide page.
   ========================================================================== */
.page-hero { position: relative; padding: 80px var(--tv-pad-x) 20px; overflow: hidden; text-align: center; }
.page-shell--narrow { max-width: 760px; }
.page-shell--narrow.entry-content { padding-top: 0; padding-bottom: 40px; }

/* ==========================================================================
   Contact page — info cards + Contact Form 7 panel
   ========================================================================== */
.contact-grid {
  display: grid; grid-template-columns: .85fr 1.15fr; gap: 32px;
  max-width: 1160px; margin: 10px auto 90px; padding: 0 var(--tv-pad-x);
  align-items: start;
}
.contact-info { display: flex; flex-direction: column; gap: 16px; }
.contact-info__intro { color: var(--tv-ink-dim); font-size: 15px; line-height: 1.7; margin-bottom: 4px; }
.contact-info__card {
  display: flex; align-items: flex-start; gap: 14px;
  background: var(--tv-surface); border: 1px solid var(--tv-line);
  border-radius: 14px; padding: 20px 20px;
}
.contact-info__icon {
  flex-shrink: 0; width: 38px; height: 38px; border-radius: 10px;
  background: rgba(255, 221, 0, .1); color: var(--tv-accent);
  display: flex; align-items: center; justify-content: center;
}
.contact-info__icon svg { width: 18px; height: 18px; }
.contact-info__card strong { display: block; font-size: 14.5px; color: var(--tv-ink); margin-bottom: 4px; }
.contact-info__card p { margin: 0; font-size: 13.5px; color: var(--tv-ink-ghost); line-height: 1.55; }
.contact-info__card a { color: var(--tv-ink-mid); font-size: 14px; text-decoration: none; word-break: break-word; }
.contact-info__card a:hover { color: var(--tv-accent); }

.contact-form-panel {
  background: linear-gradient(160deg, #1c1c0a, #151517 55%);
  border: 1.5px solid rgba(255, 221, 0, .22);
  border-radius: 18px;
  padding: 34px 32px;
  box-shadow: 0 30px 70px -32px rgba(255, 221, 0, .22);
}
.contact-form-panel__fallback { text-align: center; padding: 20px 0; }
.contact-form-panel__fallback h2 { margin: 0 0 10px; font-weight: 900; font-size: 24px; }
.contact-form-panel__fallback p { color: var(--tv-ink-soft); margin: 0 0 26px; }
.contact-form-panel__fallback-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* Contact Form 7 field styling, matched to the checkout field system */
.contact-form-panel .wpcf7-form p { margin: 0 0 16px; }
.contact-form-panel .wpcf7-form label { display: block; font-size: 12.5px; font-weight: 700; letter-spacing: .02em; color: var(--tv-ink-ghost); margin-bottom: 7px; text-transform: uppercase; }
.contact-form-panel .wpcf7-form-control:not(.wpcf7-submit) {
  width: 100%; background: var(--tv-surface-2); border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 9px; padding: 13px 15px; font-size: 14.5px; color: var(--tv-ink);
  font-family: var(--tv-font-body); transition: border-color .15s, box-shadow .15s;
}
.contact-form-panel textarea.wpcf7-form-control { min-height: 130px; resize: vertical; }
.contact-form-panel .wpcf7-form-control:not(.wpcf7-submit):focus {
  border-color: var(--tv-accent); box-shadow: 0 0 0 3px rgba(255, 221, 0, .14); outline: none;
}
.contact-form-panel input.wpcf7-submit {
  display: block; width: 100%; margin-top: 6px; padding: 16px; border: none; border-radius: 10px;
  font-size: 15px; font-weight: 800; cursor: pointer;
  background: linear-gradient(135deg, #ffe97a, var(--tv-accent) 60%, #e8c400);
  color: var(--tv-black); box-shadow: 0 16px 34px -12px rgba(255, 221, 0, .6);
  transition: transform .15s, box-shadow .15s;
}
.contact-form-panel input.wpcf7-submit:hover { transform: translateY(-1px); box-shadow: 0 20px 40px -12px rgba(255, 221, 0, .75); }
.contact-form-panel .wpcf7-spinner { margin-left: 10px; }
.contact-form-panel .wpcf7-not-valid-tip { color: #ff8a8a; font-size: 12px; margin-top: 6px; }
.contact-form-panel .wpcf7-response-output {
  margin: 20px 0 0; border-radius: 10px; padding: 14px 16px; font-size: 13.5px;
  border: 1px solid var(--tv-line); color: var(--tv-ink-dim); background: var(--tv-surface-2);
}
.contact-form-panel form.sent .wpcf7-response-output { border-color: rgba(120, 220, 140, .4); color: #b6f0c2; }
.contact-form-panel form.failed .wpcf7-response-output,
.contact-form-panel form.aborted .wpcf7-response-output { border-color: rgba(255, 120, 120, .4); color: #ffb3b3; }
.contact-form-panel .wpcf7-list-item { display: inline-flex; align-items: center; gap: 6px; margin: 0 14px 0 0; }
.contact-form-panel .wpcf7-list-item label { display: inline-flex; align-items: center; gap: 6px; text-transform: none; font-weight: 500; color: var(--tv-ink-mid); font-size: 13.5px; }

@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; }
  .contact-form-panel { padding: 28px 22px; }
}

.install { padding: 30px var(--tv-pad-x) 90px; max-width: 1180px; margin: 0 auto; }
.install__tabs {
  display: flex; flex-wrap: wrap; gap: 10px; justify-content: center;
  margin-bottom: 40px;
}
.install__tab {
  display: inline-flex; align-items: center; gap: 9px;
  background: var(--tv-surface); border: 1px solid var(--tv-line);
  border-radius: 100px; padding: 11px 20px 11px 14px;
  color: var(--tv-ink-mid); font-weight: 700; font-size: 13.5px;
  cursor: pointer; transition: border-color .2s, color .2s, background .2s;
}
.install__tab-icon {
  width: 26px; height: 26px; border-radius: 50%;
  background: rgba(255, 255, 255, .06);
  display: flex; align-items: center; justify-content: center;
  color: var(--tv-ink-mid); transition: background .2s, color .2s;
}
.install__tab-icon svg { width: 15px; height: 15px; }
.install__tab:hover { border-color: rgba(255, 221, 0, .3); color: var(--tv-ink); }
.install__tab.is-active { background: var(--tv-accent); border-color: var(--tv-accent); color: var(--tv-black); }
.install__tab.is-active .install__tab-icon { background: rgba(0,0,0,.15); color: var(--tv-black); }

.install__panel { animation: tvSetIn2 .4s cubic-bezier(.16,1,.3,1); }
@keyframes tvSetIn2 { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }
.install__panel-head {
  display: flex; align-items: center; gap: 20px; flex-wrap: wrap;
  background: var(--tv-surface); border: 1px solid var(--tv-line);
  border-radius: 16px; padding: 26px 28px; margin-bottom: 28px;
}
.install__panel-icon {
  width: 54px; height: 54px; border-radius: 14px; flex-shrink: 0;
  background: rgba(255, 221, 0, .1); border: 1px solid rgba(255, 221, 0, .3);
  display: flex; align-items: center; justify-content: center;
  color: var(--tv-accent);
}
.install__panel-icon svg { width: 28px; height: 28px; }
.install__panel-head h2 { margin: 0 0 4px; font-weight: 800; font-size: 20px; }
.install__panel-head p { margin: 0; color: var(--tv-ink-soft); font-size: 14px; }
.install__app-chip {
  margin-left: auto;
  display: inline-flex; align-items: center; gap: 7px;
  background: rgba(255, 221, 0, .08); border: 1px solid rgba(255, 221, 0, .25);
  color: var(--tv-accent); font-weight: 700; font-size: 12.5px;
  padding: 8px 14px; border-radius: 100px; white-space: nowrap;
}
.install__app-chip .tv-icon { width: 13px; height: 13px; }

.install__steps { list-style: none; margin: 0 0 24px; padding: 0; display: grid; gap: 14px; }
.install__step {
  display: flex; align-items: flex-start; gap: 16px;
  background: var(--tv-surface); border: 1px solid var(--tv-line);
  border-radius: 14px; padding: 20px 22px;
  transform: var(--tilt, none); transition: transform .08s linear, border-color .2s;
}
.install__step:hover { border-color: rgba(255, 221, 0, .25); }
.install__step-num {
  flex-shrink: 0; width: 32px; height: 32px; border-radius: 50%;
  background: var(--tv-accent); color: var(--tv-black);
  font-family: var(--tv-font-display); font-weight: 900; font-size: 14px;
  display: flex; align-items: center; justify-content: center;
}
.install__step p { margin: 0; font-size: 14.5px; color: var(--tv-ink-mid); line-height: 1.6; padding-top: 4px; }
.install__steps { position: relative; }
.install__step { position: relative; }
.install__step:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 37px; top: 100%;
  width: 2px; height: 14px;
  background: linear-gradient(var(--tv-accent), transparent);
  opacity: .35;
}

/* ---- Installation: "before you start" checklist ---- */
.install-ready {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px;
  max-width: 1080px; margin: 0 auto 10px; padding: 0 var(--tv-pad-x);
}
.install-ready__item {
  display: flex; align-items: flex-start; gap: 14px;
  background: var(--tv-surface); border: 1px solid var(--tv-line);
  border-radius: 14px; padding: 20px 20px;
}
.install-ready__icon {
  flex-shrink: 0; width: 38px; height: 38px; border-radius: 10px;
  background: rgba(255, 221, 0, .1); color: var(--tv-accent);
  display: flex; align-items: center; justify-content: center;
}
.install-ready__icon svg { width: 18px; height: 18px; }
.install-ready__item strong { display: block; font-size: 14.5px; color: var(--tv-ink); margin-bottom: 3px; }
.install-ready__item p { margin: 0; font-size: 13px; color: var(--tv-ink-ghost); line-height: 1.5; }

/* ---- Installation: quick-fix cards ---- */
.install-quickfix { padding: 20px var(--tv-pad-x) 30px; max-width: 1288px; margin: 0 auto; }
.install-quickfix__grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px;
}
.install-quickfix__card { padding: 26px 24px; }
.install-quickfix__card h3 { font-size: 16px; margin: 4px 0 8px; }
.install-quickfix__card p { font-size: 13.5px; }

@media (max-width: 980px) {
  .install-ready { grid-template-columns: 1fr; max-width: 460px; }
  .install-quickfix__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .install-quickfix__grid { grid-template-columns: 1fr; }
}

.install__panel-foot {
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 14px;
  border-top: 1px solid var(--tv-line); padding-top: 20px;
}
.install__panel-foot p { margin: 0; font-size: 13.5px; color: var(--tv-ink-ghost); }

@media (max-width: 760px) {
  .page-hero { padding: 56px 20px 10px; }
  .install { padding: 24px 20px 60px; }
  .install__tabs { justify-content: flex-start; overflow-x: auto; flex-wrap: nowrap; padding-bottom: 6px; -webkit-overflow-scrolling: touch; }
  .install__tab { flex-shrink: 0; }
  .install__panel-head { padding: 20px; }
  .install__app-chip { margin-left: 0; }
}

/* ==========================================================================
   Blog listing + single article.
   ========================================================================== */
.blog-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px;
  max-width: 1240px; margin: 10px auto 50px; padding: 0 var(--tv-pad-x);
}
.blog-card {
  display: flex; flex-direction: column;
  background: var(--tv-surface); border: 1px solid var(--tv-line);
  border-radius: 16px; overflow: hidden;
  transform: var(--tilt, none); transition: transform .08s linear, border-color .25s;
}
.blog-card:hover { border-color: rgba(255, 221, 0, .3); }
.blog-card__media {
  position: relative; display: block; aspect-ratio: 16/10;
  background-size: cover; background-position: center;
  display: flex; align-items: center; justify-content: center;
}
.blog-card__media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.blog-card__mark { width: 44px; height: 44px; opacity: .5; }
.blog-card__cat {
  position: absolute; top: 12px; left: 12px;
  background: rgba(0, 0, 0, .6); -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px);
  color: var(--tv-accent); font-size: 11px; font-weight: 800;
  letter-spacing: .04em; text-transform: uppercase;
  padding: 5px 10px; border-radius: 100px;
}
.blog-card__body { padding: 22px 22px 24px; display: flex; flex-direction: column; flex: 1; }
.blog-card__meta { font-size: 12px; color: var(--tv-ink-ghost); margin-bottom: 10px; }
.blog-card__title { font-size: 17.5px; font-weight: 800; line-height: 1.3; margin: 0 0 10px; }
.blog-card__title a { color: var(--tv-ink); text-decoration: none; }
.blog-card__title a:hover { color: var(--tv-accent); }
.blog-card__excerpt { font-size: 14px; color: var(--tv-ink-soft); line-height: 1.6; margin: 0 0 16px; flex: 1; }
.blog-card__more { color: var(--tv-accent); font-weight: 700; font-size: 13.5px; text-decoration: none; margin-top: auto; }

.blog-pagination { display: flex; justify-content: center; gap: 8px; margin: 10px 0 70px; }
.blog-pagination .page-numbers {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 38px; height: 38px; padding: 0 10px;
  border-radius: 9px; background: var(--tv-surface); border: 1px solid var(--tv-line);
  color: var(--tv-ink-mid); text-decoration: none; font-weight: 700; font-size: 13.5px;
}
.blog-pagination .page-numbers.current { background: var(--tv-accent); color: var(--tv-black); border-color: var(--tv-accent); }
.blog-pagination .page-numbers:hover:not(.current) { border-color: rgba(255, 221, 0, .4); color: var(--tv-ink); }

/* ---- Single article ---------------------------------------------------- */
.article-page { max-width: 780px; margin: 0 auto; padding: 70px var(--tv-pad-x) 40px; }
.article__head { text-align: center; margin-bottom: 34px; }
.article__cat {
  display: inline-block; font-size: 11.5px; font-weight: 800; color: var(--tv-accent);
  letter-spacing: .08em; text-transform: uppercase; margin-bottom: 14px;
}
.article__head h1 { font-weight: 900; font-size: clamp(30px, 4.2vw, 42px); line-height: 1.15; letter-spacing: -.02em; margin: 0 0 16px; }
.article__meta { display: flex; align-items: center; justify-content: center; gap: 8px; color: var(--tv-ink-ghost); font-size: 13.5px; }
.article__media { border-radius: 16px; overflow: hidden; margin-bottom: 36px; }
.article__media img { width: 100%; height: auto; display: block; }
.article__body { color: var(--tv-ink-dim); font-size: 16.5px; line-height: 1.8; }
.article__body p { margin: 0 0 22px; }
.article__body h2 { font-weight: 800; font-size: 24px; margin: 40px 0 16px; letter-spacing: -.01em; }
.article__body h3 { font-weight: 800; font-size: 19px; margin: 30px 0 12px; }
.article__body a { color: var(--tv-accent); }
.article__share {
  display: flex; align-items: center; justify-content: space-between;
  margin-top: 40px; padding-top: 24px; border-top: 1px solid var(--tv-line);
}
.article__share span { font-size: 13.5px; color: var(--tv-ink-ghost); font-weight: 600; }
.article__share-links { display: flex; gap: 10px; }
.article__share-links a {
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--tv-surface); border: 1px solid var(--tv-line);
  display: flex; align-items: center; justify-content: center; color: var(--tv-ink-mid);
  transition: color .2s, border-color .2s;
}
.article__share-links a:hover { color: var(--tv-accent); border-color: rgba(255, 221, 0, .3); }
.article__share-links .tv-icon { width: 16px; height: 16px; }
.article__cta {
  margin-top: 40px; padding: 30px 28px; text-align: center;
  background: linear-gradient(135deg, rgba(255,221,0,.08), transparent 60%), var(--tv-surface);
  border: 1px solid var(--tv-line); border-radius: 16px;
}
.article__cta h3 { margin: 0 0 8px; font-size: 20px; font-weight: 800; }
.article__cta p { margin: 0 0 18px; color: var(--tv-ink-soft); font-size: 14.5px; }

.related-posts { max-width: 1240px; margin: 30px auto 80px; padding: 0 var(--tv-pad-x); }

@media (max-width: 1080px) {
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 760px) {
  .blog-grid { grid-template-columns: 1fr; padding: 0 20px; }
  .article-page { padding: 50px 20px 20px; }
  .article__share { flex-direction: column; align-items: flex-start; gap: 12px; }
}

/* ==========================================================================
   3D showcase — real CSS 3D object (perspective + preserve-3d), draggable.
   ========================================================================== */
.showcase { position: relative; padding: 30px var(--tv-pad-x) 90px; overflow: hidden; }
.showcase__stage {
  position: relative;
  max-width: 900px; margin: 0 auto;
  height: 460px;
  display: flex; align-items: center; justify-content: center;
  perspective: 1600px;
}
.showcase__tv3d {
  position: relative;
  width: 480px; height: 280px;
  cursor: grab;
  touch-action: pan-y;
}
.showcase__tv3d:active { cursor: grabbing; }
.showcase__tv3d-obj {
  position: absolute; inset: 0;
  transform-style: preserve-3d;
  transform: rotateX(var(--rx, -8deg)) rotateY(var(--ry, -22deg));
  transition: transform .15s ease-out;
  animation: tvShowcaseIdle 10s ease-in-out infinite;
}
.showcase__tv3d.is-dragging .showcase__tv3d-obj { transition: none; animation-play-state: paused; }
@keyframes tvShowcaseIdle {
  0%, 100% { transform: rotateX(var(--rx, -8deg)) rotateY(calc(var(--ry, -22deg) - 6deg)); }
  50%      { transform: rotateX(var(--rx, -8deg)) rotateY(calc(var(--ry, -22deg) + 6deg)); }
}
.showcase__face {
  position: absolute;
  background: linear-gradient(160deg, #1c1c1f, #0e0e10);
  border: 1px solid rgba(255,255,255,.08);
  backface-visibility: hidden;
  overflow: hidden;
}
.showcase__face--screen {
  width: 480px; height: 280px;
  transform: translateZ(20px);
  border-radius: 10px;
  background:
    radial-gradient(120% 90% at 25% 0%, rgba(255, 221, 0, .12), transparent 55%),
    linear-gradient(160deg, #1c1c20, #08080a 75%);
}
.showcase__face--back {
  width: 480px; height: 280px;
  transform: rotateY(180deg) translateZ(20px);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
}
.showcase__back-mark { width: 90px; height: 90px; opacity: .3; }
.showcase__face--left  { width: 40px; height: 280px; transform: rotateY(-90deg) translateZ(240px); }
.showcase__face--right { width: 40px; height: 280px; transform: rotateY(90deg) translateZ(240px); }
.showcase__face--top    { width: 480px; height: 40px; transform: rotateX(90deg) translateZ(140px); }
.showcase__face--bottom { width: 480px; height: 40px; transform: rotateX(-90deg) translateZ(140px); }
.showcase__ui { position: absolute; inset: 0; z-index: 1; padding: 18px; display: flex; flex-direction: column; justify-content: space-between; }
.showcase__ui-top { display: flex; align-items: center; justify-content: space-between; }
.showcase__live { display: inline-flex; align-items: center; gap: 6px; background: rgba(0,0,0,.6); color: #fff; font-size: 10px; font-weight: 800; letter-spacing: .06em; padding: 4px 9px; border-radius: 100px; }
.showcase__live i { width: 6px; height: 6px; border-radius: 50%; background: #e02020; animation: tvPulseDot 1.6s ease-in-out infinite; }
.showcase__ch { font-size: 10px; font-weight: 700; letter-spacing: .06em; color: rgba(255,255,255,.45); }
.showcase__ui-bottom { display: flex; flex-direction: column; gap: 14px; }
.showcase__now { display: flex; align-items: center; gap: 12px; }
.showcase__now-play {
  flex-shrink: 0; width: 34px; height: 34px; border-radius: 50%; position: relative;
  background: linear-gradient(135deg, #ffe97a, var(--tv-accent) 60%, #e8c400);
  box-shadow: 0 6px 16px -4px rgba(255, 221, 0, .5);
}
.showcase__now-play::after {
  content: ''; position: absolute; top: 50%; left: 54%; transform: translate(-50%, -50%);
  border-style: solid; border-width: 6px 0 6px 10px; border-color: transparent transparent transparent var(--tv-black);
}
.showcase__now-text strong { display: block; font-size: 13.5px; color: #fff; font-weight: 800; }
.showcase__now-text span { font-size: 11px; color: rgba(255,255,255,.55); }
.showcase__thumbs { display: flex; gap: 8px; }
.showcase__thumb { display: block; width: 56px; height: 34px; border-radius: 5px; overflow: hidden; opacity: .7; border: 1.5px solid transparent; }
.showcase__thumb.is-active { opacity: 1; border-color: var(--tv-accent); }
.showcase__shadow {
  position: absolute; left: 50%; bottom: -60px; transform: translateX(-50%);
  width: 380px; height: 60px; border-radius: 50%;
  background: radial-gradient(ellipse, rgba(0,0,0,.55), transparent 70%);
  filter: blur(6px);
}
.showcase__chip {
  position: absolute;
  display: inline-flex; align-items: center; gap: 7px;
  background: var(--tv-surface); border: 1px solid var(--tv-line);
  padding: 9px 15px; border-radius: 100px;
  font-size: 12.5px; font-weight: 700; color: var(--tv-ink-mid);
  box-shadow: 0 14px 30px -14px rgba(0,0,0,.7);
  animation: tvChipFloat 5s ease-in-out infinite;
  pointer-events: none;
}
.showcase__chip .tv-icon { width: 14px; height: 14px; color: var(--tv-accent); }
.showcase__chip--1 { top: 8%; left: 4%; animation-delay: 0s; }
.showcase__chip--2 { bottom: 14%; left: 8%; animation-delay: 1.4s; }
.showcase__chip--3 { top: 12%; right: 4%; animation-delay: .7s; }
@keyframes tvChipFloat { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
.showcase__drag-hint {
  position: absolute; bottom: 2%; left: 50%; transform: translateX(-50%);
  font-size: 11.5px; color: var(--tv-ink-ghost); letter-spacing: .04em;
}
.showcase__cta { text-align: center; margin-top: 10px; }
@media (prefers-reduced-motion: reduce) {
  .showcase__tv3d-obj { animation: none; }
}
@media (max-width: 760px) {
  .showcase__stage { height: 300px; perspective: 1100px; }
  .showcase__tv3d { transform: scale(.62); }
  .showcase__chip { font-size: 11px; padding: 7px 11px; }
  .showcase__drag-hint { display: none; }
}

/* ---- Testimonials grid: responsive ---- */
@media (max-width: 1080px) { .tcard-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 760px) { .tcard-grid { grid-template-columns: 1fr; padding: 0 20px; } }
