:root {
  --bg: #090b10;
  --bg-2: #11131a;
  --panel: rgba(16, 18, 26, 0.86);
  --panel-2: rgba(24, 27, 36, 0.9);
  --line: rgba(255, 255, 255, 0.08);
  --line-2: rgba(255, 255, 255, 0.12);
  --text: #f4f7fb;
  --muted: #a4adbb;
  --soft: #7c8798;
  --orange: #ff8a00;
  --orange-2: #ffb347;
  --cyan: #55d6ff;
  --blue: #5b8cff;
  --green: #38d39f;
  --shadow: 0 30px 70px rgba(0, 0, 0, 0.42);
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  min-height: 100%;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
  color: var(--text);
  background:
    radial-gradient(1200px 700px at 80% -10%, rgba(255, 138, 0, 0.18), transparent 55%),
    radial-gradient(900px 600px at 15% 10%, rgba(85, 214, 255, 0.16), transparent 50%),
    linear-gradient(180deg, #0a0c11 0%, #090b10 48%, #0a0c12 100%);
}

a { color: inherit; text-decoration: none; }
svg { display: block; }

.page {
  position: relative;
  overflow: clip;
}

.page::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 26px 26px;
  mask-image: linear-gradient(180deg, rgba(0,0,0,0.55), transparent 88%);
  opacity: .45;
}

.shell {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.hero {
  position: relative;
  min-height: 100svh;
  padding: 20px 0 36px;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 28px;
}

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

.brand-mark {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: linear-gradient(145deg, var(--orange) 0%, #ff5f3f 100%);
  color: #111;
  font-weight: 900;
  display: grid;
  place-items: center;
  box-shadow: 0 16px 36px rgba(255, 138, 0, .28);
}

.brand-name {
  font-size: 17px;
  font-weight: 700;
  line-height: 1.2;
}

.brand-sub {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 2px;
  font-size: 12px;
  color: var(--muted);
}

.brand-sub::before {
  content: "";
  width: 14px;
  height: 9px;
  border-radius: 2px;
  background: linear-gradient(
    180deg,
    #aa151b 0 25%,
    #f1bf00 25% 75%,
    #aa151b 75% 100%
  );
  box-shadow: 0 0 0 1px rgba(255,255,255,0.12);
}

.ghost-link {
  padding: 10px 14px;
  border-radius: 8px;
  border: 1px solid var(--line);
  color: var(--muted);
  background: rgba(255,255,255,0.02);
}

.topbar-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.top-download {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 38px;
  padding: 0 13px;
  border-radius: 8px;
  background: rgba(255,138,0,.14);
  border: 1px solid rgba(255,138,0,.35);
  color: #ffd39a;
  font-size: 13px;
  font-weight: 700;
}

.top-download svg {
  width: 15px;
  height: 15px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 42px;
  align-items: center;
  min-height: calc(100svh - 120px);
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--line);
  color: var(--orange-2);
  font-size: 12px;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.hero-copy h1,
.section-head h2,
.copy-block h2,
.cta-panel h2 {
  margin: 18px 0 0;
  line-height: 1.04;
  letter-spacing: 0;
}

.hero-copy h1 {
  font-size: 66px;
  max-width: 10.5em;
}

.hero-copy p,
.section-head p,
.copy-block p {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.72;
  max-width: 58ch;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.download-note {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
  color: var(--soft);
  font-size: 12px;
}

.download-check {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: inline-grid;
  place-items: center;
  background: rgba(56,211,159,.16);
  border: 1px solid rgba(56,211,159,.32);
  color: var(--green);
  font-size: 11px;
  font-weight: 800;
}

.download-separator {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: rgba(255,255,255,.28);
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 14px;
  border: 1px solid transparent;
}

.btn svg {
  width: 17px;
  height: 17px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.btn-primary {
  background: linear-gradient(145deg, var(--orange) 0%, #ff5f3f 100%);
  color: #160d00;
  box-shadow: 0 18px 32px rgba(255, 138, 0, .18);
}

.btn-secondary {
  background: rgba(255,255,255,0.03);
  color: var(--text);
  border-color: var(--line-2);
}

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

.stat {
  padding: 14px;
  border-radius: 8px;
  background: var(--panel);
  border: 1px solid var(--line);
}

.stat span {
  display: block;
  color: var(--soft);
  font-size: 12px;
}

.stat strong {
  display: block;
  margin-top: 8px;
  font-size: 15px;
  font-weight: 700;
  word-break: break-word;
}

.hero-visual {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 18px;
}

.hero-photo {
  position: relative;
  width: min(100%, 620px);
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.12);
  background: #171a20;
  box-shadow: var(--shadow);
}

.hero-photo::after {
  content: "";
  position: absolute;
  inset: 42% 0 0;
  background: linear-gradient(180deg, transparent 0%, rgba(7,9,13,.72) 100%);
  pointer-events: none;
}

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

.photo-badge {
  position: absolute;
  left: 16px;
  bottom: 16px;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 12px;
  border-radius: 999px;
  background: rgba(8,10,14,.74);
  border: 1px solid rgba(255,255,255,.14);
  color: #f7f4ec;
  font-size: 12px;
  backdrop-filter: blur(10px);
}

.photo-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange-2);
  box-shadow: 0 0 0 4px rgba(255,179,71,.14);
}

.tv-shell {
  position: relative;
  width: min(100%, 620px);
  aspect-ratio: 1.15 / 1;
  padding: 30px 30px 0;
}

.tv-screen {
  position: relative;
  height: calc(100% - 34px);
  border-radius: 26px;
  border: 1px solid rgba(255,255,255,0.08);
  background:
    radial-gradient(600px 320px at 50% 0%, rgba(255,138,0,.26), transparent 60%),
    linear-gradient(180deg, #171a22 0%, #0d1016 100%);
  box-shadow: var(--shadow), inset 0 0 0 1px rgba(255,255,255,0.04);
  padding: 20px;
  overflow: hidden;
}

.tv-screen::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.08), transparent 18%),
    linear-gradient(90deg, transparent 20%, rgba(255,255,255,0.04) 50%, transparent 80%);
  opacity: .55;
  pointer-events: none;
}

.screen-top {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #d7dce5;
  font-size: 12px;
}

.live-pill,
.screen-chip {
  padding: 6px 9px;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.08);
}

.live-pill {
  color: var(--orange-2);
}

.screen-title {
  margin-right: auto;
  font-weight: 700;
}

.screen-hero {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.5fr .9fr;
  gap: 14px;
  margin-top: 18px;
}

.poster {
  min-height: 250px;
  border-radius: 22px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background:
    radial-gradient(circle at 20% 20%, rgba(255,255,255,0.16), transparent 34%),
    linear-gradient(145deg, rgba(255, 138, 0, .95), rgba(255, 95, 63, .6));
  color: #120a00;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.15);
}

.poster span {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.poster strong {
  font-size: 36px;
  line-height: 1;
  max-width: 6ch;
}

.poster-alt {
  background:
    radial-gradient(circle at 20% 20%, rgba(255,255,255,0.12), transparent 30%),
    linear-gradient(160deg, rgba(170,21,27,.95), rgba(241,191,0,.65));
  color: #fff6dc;
  align-items: flex-start;
  font-size: 28px;
  font-weight: 800;
}

.app-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
  margin-top: 14px;
}

.app-tile {
  min-height: 72px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  color: #d7dbe3;
  font-size: 12px;
  font-weight: 700;
}

.app-tile.accent {
  background: rgba(255,138,0,0.18);
  color: #ffbf73;
}

.app-tile.cyan {
  background: rgba(85,214,255,0.14);
  color: #99eaff;
}

.app-tile.amber {
  background: rgba(255,180,71,0.14);
  color: #ffd39a;
}

.tv-stand {
  width: 180px;
  height: 16px;
  margin: 10px auto 0;
  border-radius: 999px;
  background: linear-gradient(180deg, #292d38, #11141b);
  box-shadow: 0 10px 28px rgba(0,0,0,.35);
}

.tv-glow {
  position: absolute;
  inset: auto 60px -4px;
  height: 22px;
  background: radial-gradient(closest-side, rgba(255,138,0,.52), transparent);
  filter: blur(10px);
}

.remote-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 16px;
  width: min(100%, 420px);
  border-radius: 8px;
  background: var(--panel);
  border: 1px solid var(--line);
  box-shadow: 0 16px 40px rgba(0,0,0,.22);
}

.remote {
  width: 66px;
  padding: 10px 10px 12px;
  border-radius: 20px;
  background: linear-gradient(180deg, #1a1d27, #0c0e14);
  border: 1px solid rgba(255,255,255,0.08);
}

.remote-row {
  display: block;
  height: 10px;
  margin-bottom: 8px;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
}

.remote-row.tiny { height: 6px; opacity: .7; }
.remote-row.wide { height: 12px; margin-bottom: 0; }

.remote-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  margin: 10px 0;
}

.remote-grid i {
  display: block;
  aspect-ratio: 1;
  border-radius: 6px;
  background: rgba(255,255,255,0.06);
}

.remote-note strong {
  display: block;
  font-size: 15px;
  margin-bottom: 6px;
}

.remote-note span {
  color: var(--muted);
  line-height: 1.6;
}

.download-strip {
  padding: 16px 0 24px;
  background: linear-gradient(180deg, rgba(255,138,0,.08), transparent);
}

.download-strip-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
  padding: 18px 20px;
  border-top: 1px solid rgba(255,138,0,.22);
  border-bottom: 1px solid rgba(255,138,0,.16);
}

.download-symbol {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: #1b1000;
  background: linear-gradient(145deg, var(--orange-2), var(--orange));
  box-shadow: 0 12px 28px rgba(255,138,0,.18);
}

.download-symbol svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.download-copy h2 {
  margin: 8px 0 0;
  font-size: 24px;
}

.download-copy p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.download-action {
  display: grid;
  justify-items: end;
  gap: 7px;
}

.download-action > span {
  color: var(--soft);
  font-size: 12px;
}

.download-meta-line {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 10px;
  color: var(--soft);
  font-size: 12px;
}

.download-meta-line strong {
  color: var(--text);
  font-size: 13px;
}

.apk-badge {
  padding: 4px 7px;
  border-radius: 5px;
  background: rgba(255,138,0,.16);
  border: 1px solid rgba(255,138,0,.24);
  color: var(--orange-2);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .08em;
}

.product-showcase {
  padding: 52px 0 58px;
  background:
    linear-gradient(135deg, rgba(255,138,0,.08), transparent 40%),
    linear-gradient(180deg, rgba(255,255,255,.018), transparent);
  border-bottom: 1px solid var(--line);
}

.product-head {
  margin-bottom: 24px;
}

.product-head-copy {
  display: grid;
  gap: 12px;
  max-width: 42ch;
}

.product-head-copy p {
  margin: 0;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  color: var(--orange-2);
  font-size: 13px;
  font-weight: 700;
}

.text-link span {
  font-size: 18px;
  line-height: 1;
}

.product-grid {
  display: grid;
  grid-template-columns: 1.04fr .96fr;
  gap: 14px;
}

.product-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel-2);
  box-shadow: 0 20px 50px rgba(0,0,0,.18);
}

.product-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 20px 0;
}

.product-label,
.video-kicker {
  color: var(--orange-2);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.product-status,
.video-live {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--green);
  font-size: 11px;
  font-weight: 700;
}

.status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 0 4px rgba(56,211,159,.12);
}

.device-stage {
  position: relative;
  min-height: 310px;
  margin: 0 18px;
  overflow: hidden;
  background:
    linear-gradient(90deg, transparent 49.8%, rgba(255,255,255,.06) 50%, transparent 50.2%),
    linear-gradient(180deg, rgba(255,255,255,.035), transparent 34%),
    #121620;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.device-stage::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 0 49.8%, rgba(255,255,255,.025) 50% 50.2%, transparent 50.4%);
  opacity: .7;
}

.device-stage::after {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  bottom: 30px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,179,71,.55), transparent);
}

.device-halo {
  position: absolute;
  left: 12%;
  right: 12%;
  bottom: 42px;
  height: 80px;
  border-top: 1px solid rgba(255,179,71,.2);
  border-radius: 50%;
  transform: perspective(180px) rotateX(62deg);
}

.tv-stick-device {
  position: absolute;
  z-index: 1;
  left: 18%;
  top: 96px;
  width: 230px;
  height: 68px;
  border-radius: 35px 15px 15px 35px;
  transform: rotate(-14deg);
  background: linear-gradient(145deg, #444b59, #171b24 55%, #0c0f15);
  border: 1px solid rgba(255,255,255,.2);
  box-shadow: 22px 24px 28px rgba(0,0,0,.35), inset 0 1px 1px rgba(255,255,255,.18);
}

.tv-stick-device::before {
  content: "";
  position: absolute;
  left: -11px;
  top: 16px;
  width: 22px;
  height: 34px;
  border-radius: 3px 0 0 3px;
  background: #0a0d12;
  box-shadow: inset -4px 0 0 rgba(255,255,255,.07);
}

.stick-led {
  position: absolute;
  left: 26px;
  top: 31px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--orange-2);
  box-shadow: 0 0 12px rgba(255,179,71,.7);
}

.stick-port {
  position: absolute;
  right: 17px;
  top: 25px;
  width: 19px;
  height: 17px;
  border: 2px solid rgba(255,255,255,.25);
  border-radius: 3px;
}

.stick-brand,
.remote-brand {
  color: rgba(255,255,255,.55);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .16em;
}

.stick-brand {
  position: absolute;
  left: 57px;
  top: 28px;
}

.remote-device {
  position: absolute;
  z-index: 2;
  right: 16%;
  top: 34px;
  width: 106px;
  height: 224px;
  padding: 18px 13px 14px;
  border-radius: 28px;
  transform: rotate(17deg);
  background: linear-gradient(160deg, #454c58, #181c25 48%, #090b10);
  border: 1px solid rgba(255,255,255,.2);
  box-shadow: 22px 24px 34px rgba(0,0,0,.42), inset 0 1px 1px rgba(255,255,255,.2);
}

.remote-brand {
  display: block;
  text-align: center;
  font-size: 7px;
}

.remote-round {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  margin: 16px auto 12px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.22);
  background: #11151d;
}

.remote-round::before,
.remote-round::after {
  content: "";
  position: absolute;
  width: 14px;
  height: 1px;
  background: rgba(255,255,255,.32);
}

.remote-round::after { transform: rotate(90deg); }

.remote-round i {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: rgba(255,179,71,.85);
  box-shadow: 0 0 10px rgba(255,179,71,.3);
}

.remote-buttons,
.remote-shortcuts {
  display: grid;
  gap: 6px;
}

.remote-buttons {
  grid-template-columns: repeat(3, 1fr);
}

.remote-shortcuts {
  grid-template-columns: repeat(4, 1fr);
  margin-top: 14px;
}

.remote-buttons i,
.remote-shortcuts i {
  display: block;
  height: 8px;
  border-radius: 5px;
  background: rgba(255,255,255,.1);
}

.remote-shortcuts i:nth-child(2) { background: rgba(255,138,0,.45); }

.device-caption {
  position: absolute;
  z-index: 3;
  left: 0;
  right: 0;
  bottom: 9px;
  color: var(--soft);
  font-size: 11px;
  text-align: center;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.product-card-copy {
  padding: 20px;
}

.product-card-copy h3 {
  margin: 0;
  font-size: 22px;
}

.product-card-copy p {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.65;
}

.product-specs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin-top: 18px;
}

.product-specs span {
  display: grid;
  gap: 4px;
  padding: 10px;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 6px;
  color: var(--soft);
  font-size: 11px;
}

.product-specs strong {
  color: var(--text);
  font-size: 13px;
}

.video-card {
  display: grid;
  grid-template-rows: auto 1fr;
}

.video-preview {
  position: relative;
  min-height: 310px;
  overflow: hidden;
  background: #10131a;
}

.video-motion,
.motion-frame,
.video-overlay {
  position: absolute;
  inset: 0;
}

.motion-frame {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.03);
  filter: saturate(.95) contrast(1.04);
}

.motion-frame-one {
  opacity: 1;
}

.video-preview.is-playing .motion-frame {
  animation-play-state: running;
}

.video-preview.is-playing .motion-frame-one,
.video-preview.is-playing .motion-frame-two,
.video-preview.is-playing .motion-frame-three {
  animation-duration: 12s;
  animation-iteration-count: infinite;
  animation-timing-function: ease-in-out;
}

.video-preview.is-playing .motion-frame-one { animation-name: motion-one; }
.video-preview.is-playing .motion-frame-two { animation-name: motion-two; }
.video-preview.is-playing .motion-frame-three { animation-name: motion-three; }

@keyframes motion-one {
  0%, 27% { opacity: 1; transform: scale(1.03); }
  34%, 94% { opacity: 0; transform: scale(1.1); }
  100% { opacity: 1; transform: scale(1.03); }
}

@keyframes motion-two {
  0%, 27% { opacity: 0; transform: scale(1.1); }
  34%, 60% { opacity: 1; transform: scale(1.03); }
  68%, 100% { opacity: 0; transform: scale(1.1); }
}

@keyframes motion-three {
  0%, 60% { opacity: 0; transform: scale(1.1); }
  68%, 94% { opacity: 1; transform: scale(1.03); }
  100% { opacity: 0; transform: scale(1.1); }
}

.video-overlay {
  background: linear-gradient(180deg, rgba(7,9,13,.18), transparent 32%, rgba(7,9,13,.8) 100%);
}

.video-topline,
.video-bottomline {
  position: absolute;
  z-index: 2;
  left: 18px;
  right: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: rgba(255,255,255,.74);
  font-size: 11px;
}

.video-topline { top: 16px; }
.video-bottomline { bottom: 16px; }

.video-live { color: #fff; }

.video-play {
  position: absolute;
  z-index: 3;
  left: 50%;
  top: 50%;
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  padding: 0;
  border: 1px solid rgba(255,255,255,.42);
  border-radius: 50%;
  color: #1a1000;
  background: var(--orange-2);
  box-shadow: 0 12px 28px rgba(0,0,0,.34);
  transform: translate(-50%, -50%);
  cursor: pointer;
}

.video-play svg {
  width: 25px;
  height: 25px;
  fill: currentColor;
  stroke: none;
  transform: translateX(2px);
}

.video-play .pause-symbol {
  display: none;
}

.video-preview.is-playing .video-play .play-symbol {
  display: none;
}

.video-preview.is-playing .video-play .pause-symbol {
  display: block;
  width: 22px;
  height: 22px;
  transform: none;
}

.video-progress {
  flex: 1;
  height: 3px;
  overflow: hidden;
  border-radius: 99px;
  background: rgba(255,255,255,.32);
}

.video-progress i {
  display: block;
  width: 31%;
  height: 100%;
  background: var(--orange-2);
}

.video-preview.is-playing .video-progress i {
  animation: video-progress 12s linear infinite;
}

@keyframes video-progress {
  from { width: 0; }
  to { width: 100%; }
}

.video-copy {
  padding-top: 18px;
}

.video-kicker {
  display: flex;
  align-items: center;
  gap: 7px;
}

.play-mini {
  color: var(--orange-2);
  font-size: 12px;
}

.video-copy h3 {
  margin-top: 12px;
}

.video-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.video-tags span {
  padding: 6px 9px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 5px;
  color: var(--soft);
  font-size: 11px;
}

.install-band {
  padding: 44px 0 52px;
  background:
    linear-gradient(180deg, rgba(85,214,255,.04), transparent),
    rgba(255,255,255,.015);
  border-bottom: 1px solid var(--line);
}

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

.install-step {
  position: relative;
  padding: 20px;
  min-height: 230px;
  border-radius: 8px;
  background: var(--panel-2);
  border: 1px solid var(--line);
}

.step-number {
  position: absolute;
  top: 16px;
  right: 18px;
  color: rgba(255,255,255,.24);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .08em;
}

.step-icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: rgba(85,214,255,.1);
  border: 1px solid rgba(85,214,255,.22);
  color: var(--cyan);
}

.step-icon svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.install-step h3 {
  margin: 18px 0 0;
  font-size: 20px;
}

.install-step p {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.band {
  padding: 46px 0;
}

.band-alt {
  background: linear-gradient(180deg, rgba(255,255,255,0.02), transparent);
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 24px;
  margin-bottom: 22px;
}

.section-head h2,
.copy-block h2,
.cta-panel h2 {
  font-size: 38px;
}

.section-head p {
  margin: 0;
  max-width: 42ch;
}

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

.feature {
  padding: 18px;
  border-radius: 8px;
  background: var(--panel-2);
  border: 1px solid var(--line);
  min-height: 192px;
}

.feature .ico {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(255,138,0,0.14);
  border: 1px solid rgba(255,138,0,0.18);
  display: grid;
  place-items: center;
  color: var(--orange-2);
}

.feature .ico svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

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

.feature p {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.split {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 24px;
  align-items: center;
}

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

.scene-card {
  position: relative;
  min-height: 178px;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: #161922;
}

.scene-card::after {
  content: "";
  position: absolute;
  inset: 34% 0 0;
  background: linear-gradient(180deg, transparent 0%, rgba(5,7,11,.86) 100%);
}

.scene-card img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 178px;
  object-fit: cover;
  filter: saturate(.94) contrast(1.02);
}

.scene-copy {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  z-index: 1;
  display: grid;
  gap: 4px;
}

.scene-copy span {
  color: var(--orange-2);
  font-size: 11px;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.scene-copy strong {
  color: #fff;
  font-size: 16px;
  line-height: 1.2;
}

.content-band {
  background:
    linear-gradient(180deg, rgba(85,214,255,.035), transparent 55%),
    rgba(255,255,255,.012);
}

.content-grid {
  display: grid;
  grid-template-columns: 1.06fr .94fr;
  gap: 28px;
  align-items: center;
}

.interface-shell {
  width: 100%;
  max-width: 620px;
  margin: 0 auto;
}

.content-list {
  display: grid;
  gap: 0;
}

.content-row {
  display: grid;
  grid-template-columns: 30px 92px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}

.content-row:first-child {
  border-top: 1px solid var(--line);
}

.content-index {
  align-self: start;
  padding-top: 4px;
  color: rgba(255,255,255,.3);
  font-size: 12px;
  font-weight: 800;
}

.content-row img {
  display: block;
  width: 92px;
  height: 72px;
  border-radius: 6px;
  object-fit: cover;
  border: 1px solid rgba(255,255,255,.1);
}

.content-row span {
  color: var(--orange-2);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.content-row h3 {
  margin: 5px 0 0;
  font-size: 16px;
}

.content-row p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.faq-band {
  background: linear-gradient(180deg, rgba(255,255,255,.015), transparent);
}

.faq-layout {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 38px;
  align-items: start;
}

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

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

.faq-list summary {
  position: relative;
  padding: 18px 30px 18px 0;
  color: var(--text);
  cursor: pointer;
  list-style: none;
  font-size: 16px;
  font-weight: 700;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  position: absolute;
  top: 15px;
  right: 0;
  color: var(--orange-2);
  font-size: 22px;
  font-weight: 400;
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list details p {
  margin: -4px 34px 18px 0;
  color: var(--muted);
  line-height: 1.7;
}

.cta-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 26px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.09);
  background:
    radial-gradient(680px 180px at 0% 0%, rgba(255,138,0,0.22), transparent 48%),
    rgba(255,255,255,0.03);
}

.cta-panel h2 {
  margin-top: 10px;
}

.footer {
  padding: 18px 0 28px;
  color: var(--soft);
  font-size: 13px;
}

.footer .shell {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

@media (max-width: 1080px) {
  .hero-grid,
  .split,
  .section-head,
  .cta-panel,
  .faq-layout {
    grid-template-columns: 1fr;
    display: grid;
  }

  .hero-grid {
    gap: 28px;
  }

  .product-grid,
  .content-grid {
    grid-template-columns: 1fr;
  }

  .interface-shell {
    max-width: 720px;
  }

  .hero-copy h1 {
    font-size: 54px;
  }

  .feature-grid {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 720px) {
  .shell {
    width: min(100% - 24px, 100%);
  }

  .topbar {
    margin-bottom: 18px;
  }

  .topbar-actions {
    gap: 6px;
  }

  .ghost-link {
    display: none;
  }

  .top-download {
    min-height: 36px;
    padding: 0 11px;
  }

  .hero {
    padding-top: 14px;
  }

  .product-showcase {
    padding: 40px 0 44px;
  }

  .product-card-top {
    padding-left: 16px;
    padding-right: 16px;
  }

  .device-stage,
  .video-preview {
    min-height: 260px;
  }

  .tv-stick-device {
    left: 8%;
    width: 190px;
  }

  .remote-device {
    right: 9%;
  }

  .product-card-copy {
    padding: 18px 16px;
  }

  .product-specs {
    gap: 6px;
  }

  .product-specs span {
    padding: 8px;
  }

  .hero-copy h1 {
    font-size: 40px;
    max-width: 12em;
  }

  .hero-copy p,
  .section-head p,
  .copy-block p {
    font-size: 15px;
  }

  .download-strip-inner {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 18px 0;
  }

  .download-action {
    justify-items: start;
  }

  .install-grid {
    grid-template-columns: 1fr;
  }

  .faq-layout {
    gap: 24px;
  }

  .stats {
    grid-template-columns: 1fr 1fr;
  }

  .scene-gallery {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .scene-card,
  .scene-card img {
    min-height: 150px;
  }

  .scene-copy {
    left: 10px;
    right: 10px;
    bottom: 10px;
  }

  .scene-copy strong {
    font-size: 13px;
  }

  .screen-hero {
    grid-template-columns: 1.25fr .8fr;
    gap: 10px;
  }

  .app-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 7px;
  }

  .tv-shell {
    padding: 20px 20px 0;
  }

  .tv-screen {
    padding: 14px;
    border-radius: 18px;
  }

  .poster {
    min-height: 150px;
    border-radius: 14px;
    padding: 12px;
  }

  .poster strong {
    font-size: 24px;
  }

  .poster-alt {
    font-size: 20px;
  }

  .app-tile {
    min-height: 52px;
    border-radius: 10px;
    font-size: 11px;
  }

  .remote-card {
    width: 100%;
  }

  .content-row {
    grid-template-columns: 24px 78px minmax(0, 1fr);
    gap: 9px;
  }

  .content-row img {
    width: 78px;
    height: 64px;
  }

  .content-row h3 {
    font-size: 14px;
  }

  .content-row p {
    font-size: 12px;
  }

  .section-head h2,
  .copy-block h2,
  .cta-panel h2 {
    font-size: 30px;
  }

  .cta-panel {
    padding: 20px;
  }

  .footer .shell {
    flex-direction: column;
  }
}
