/* TV Garden: a midnight cinema with cobalt light and cyan controls. */
:root {
  color-scheme: dark;
  --bg: #050918;
  --bg-alt: #080f25;
  --surface: #0d1630;
  --surface-2: #162444;
  --text: #f3f6ff;
  --text-dim: #a7b7d5;
  --text-faint: #7f94b6;
  --stroke: #7bb9ff28;
  --stroke-soft: #7bb9ff18;
  --brand-a: #65e8ff;
  --brand-b: #6d7cff;
  --brand-gradient: linear-gradient(120deg, #60e8ff, #748cff);
  --font-display:
    "Sora", "PingFang SC", "Microsoft YaHei", system-ui, sans-serif;
  --font-body: var(--font-display);
  --nav-h: 80px;
}
body {
  background: var(--bg);
}
::selection {
  background: #586bba;
  color: white;
}
.container,
.nav-inner {
  width: min(1280px, calc(100% - 88px));
}
.container-narrow {
  max-width: 920px;
}
section[id],
main[id] {
  scroll-margin-top: 100px;
}
.tv-skip {
  position: fixed;
  z-index: 200;
  inset: 10px auto auto 12px;
  background: #65e8ff;
  color: #050918;
  padding: 12px 18px;
  transform: translateY(-150%);
}
.tv-skip:focus {
  transform: none;
}
.nav,
.nav.scrolled {
  background: #050918e8;
  border-bottom: 1px solid var(--stroke-soft);
  backdrop-filter: blur(20px);
}
.nav-inner {
  gap: 32px;
}
.brand {
  gap: 11px;
  letter-spacing: -0.035em;
}
.brand-mark {
  width: 38px;
  height: 38px;
  border-radius: 11px;
}
.brand-mark-image {
  transform: none;
}
.brand-name {
  max-width: 260px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.nav-links {
  gap: 32px;
}
.nav-links a {
  font-size: 12px;
  color: #b7c5df;
}
.nav-actions {
  gap: 16px;
}
.lang-btn {
  border: 0;
  padding-inline: 5px;
  background: none;
  font-size: 11px;
}
.lang-menu {
  background: #0b1430fa;
}
.btn {
  border-radius: 12px;
  font-size: 12px;
  letter-spacing: -0.01em;
}
.btn-sm {
  padding: 11px 18px;
}
.btn-lg {
  padding: 17px 23px;
}
.btn-primary {
  position: relative;
  overflow: hidden;
  background: var(--brand-gradient);
  color: #040b23;
  box-shadow: 0 6px 30px #427eff2b;
}
.btn-primary::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    110deg,
    transparent 20%,
    #fff7 48%,
    transparent 70%
  );
  transform: translateX(-130%);
  transition: transform 0.7s;
  pointer-events: none;
}
.btn-primary:hover {
  background: var(--brand-gradient);
  box-shadow: 0 8px 35px #427eff69;
  transform: translateY(-3px);
}
.btn-primary:hover::before {
  transform: translateX(130%);
}
.btn-primary > :last-child:not(:first-child) {
  margin-inline-start: 5px;
}
.hero {
  overflow: hidden;
  padding: calc(var(--nav-h) + 56px) 0 0;
}
.hero-bg {
  overflow: hidden;
}
.tv-aurora {
  position: absolute;
  width: 950px;
  height: 800px;
  right: -240px;
  top: -150px;
  background: radial-gradient(
    ellipse,
    #183a926e,
    #13204724 50%,
    transparent 70%
  );
  transition: opacity 0.6s;
}
.tv-orbit {
  position: absolute;
  height: 780px;
  width: 1100px;
  top: -360px;
  left: -560px;
  border-radius: 50%;
  border: 1px solid #5ba6fb0d;
  transform: rotate(-30deg);
  box-shadow:
    0 0 0 80px #466fc305,
    0 0 0 160px #466fc305;
}
.hero-inner {
  grid-template-columns: 0.87fr 1.13fr;
  gap: 65px;
  align-items: center;
}
.hero-copy {
  position: relative;
  z-index: 2;
  padding: 15px 0 40px;
}
.hero-copy > * + * {
  margin-top: 25px;
}
.tv-eyebrow {
  display: flex;
  gap: 11px;
  align-items: center;
  color: #6fd5fb;
  font-size: 9px;
  letter-spacing: 0.19em;
  font-weight: 700;
}
.tv-signal {
  display: flex;
  align-items: flex-end;
  gap: 3px;
  height: 17px;
}
.tv-signal i {
  width: 3px;
  height: 6px;
  background: #65e8ff;
  border-radius: 2px;
}
.tv-signal i:nth-child(2) {
  height: 11px;
}
.tv-signal i:nth-child(3) {
  height: 16px;
}
.hero h1 {
  font-size: clamp(38px, 4.5vw, 66px);
  line-height: 1.085;
  letter-spacing: -0.065em;
  font-weight: 600;
  text-wrap: balance;
}
.hero h1 em {
  background-image: linear-gradient(
    110deg,
    #6aedff 0,
    #779bff 60%,
    #bda2ff 100%
  );
}
.hero-sub {
  color: #a0b0cf;
  font-size: 13px;
  line-height: 1.9;
  max-width: 400px;
}
.hero-cta {
  align-items: center;
  gap: 23px;
  margin-top: 30px;
}
.tv-text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 10px;
  color: #b1c5e7;
  transition: color 0.2s;
}
.tv-text-link:hover {
  color: #72eaff;
}
.tv-text-link span:last-child {
  transition: transform 0.2s;
}
.tv-text-link:hover span:last-child {
  transform: translateX(5px);
}
.tv-benefit {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #8c9ebe;
  font-size: 10px;
  margin-top: 16px;
}
.tv-benefit > span:first-child {
  font-size: 19px;
  color: #789dff;
}
.hero-visual {
  display: block !important;
  width: 100%;
  min-width: 0;
  max-width: none;
  min-height: 0;
  justify-self: stretch;
  place-items: normal;
  perspective: 1400px;
}
.tv-stage {
  position: relative;
  width: 100%;
  min-width: 0;
  height: 525px;
  border: 1px solid #688ada46;
  border-radius: 23px;
  overflow: hidden;
  background: #080e21;
  box-shadow:
    0 30px 100px #0008,
    0 0 55px #3545ae15;
  transform: rotateX(var(--tv-rx, 0deg)) rotateY(var(--tv-ry, 0deg));
  transition:
    transform 0.45s ease-out,
    border-color 0.4s,
    box-shadow 0.6s;
  isolation: isolate;
}
.tv-stage::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(
    180deg,
    #060d274d,
    transparent 18%,
    #04081b14 37%,
    #030615dd 76%,
    #050919 90%
  );
  pointer-events: none;
}
.tv-stage-art {
  position: absolute;
  inset: 0;
  z-index: -2;
  overflow: hidden;
}
.tv-scene-image {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center 65%;
  transform: scale(1.025) translate(var(--tv-px, 0px), var(--tv-py, 0px));
  transition:
    transform 0.5s ease-out,
    opacity 0.2s;
}
.tv-stage[data-scene="sports"] .tv-scene-image {
  object-position: center 59%;
}
.tv-stage[data-scene="global"] .tv-scene-image {
  object-position: center 64%;
}
.tv-stage.is-changing .tv-scene-image {
  opacity: 0.4;
}
.tv-stage-top {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  padding: 22px 23px;
}
.tv-stage-label {
  color: #c1d1f4;
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.17em;
}
.tv-light-toggle {
  display: flex;
  align-items: center;
  gap: 6px;
  border: 1px solid #d4e2ff24;
  background: #050a226e;
  color: #c6d7f6;
  padding: 8px 10px;
  border-radius: 20px;
  backdrop-filter: blur(12px);
  font-size: 8px;
}
.tv-light-toggle:hover,
.tv-light-toggle[aria-pressed="true"] {
  border-color: #6fe4ff94;
  color: #78e7ff;
}
.tv-stage-caption {
  position: absolute;
  inset: auto 26px 109px;
}
.tv-scene-kicker {
  font-size: 8px;
  color: #93b7ff;
  letter-spacing: 0.2em;
  font-weight: 600;
}
.tv-stage-caption h2 {
  font-size: 28px;
  font-weight: 600;
  letter-spacing: -0.04em;
  margin-top: 8px;
}
.tv-stage-caption p {
  max-width: 340px;
  color: #abbbdb;
  margin-top: 9px;
  font-size: 10px;
  line-height: 1.7;
}
.tv-stage-action {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  color: #8bdffa;
  font-size: 10px;
  margin-top: 16px;
}
.tv-stage-action:hover {
  color: #fff;
}
.tv-scene-tabs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  position: absolute;
  inset: auto 19px 20px;
  border-top: 1px solid #7dbaff20;
  padding-top: 15px;
}
.tv-scene-tab {
  display: flex;
  flex: 1;
  gap: 8px;
  align-items: center;
  min-width: 0;
  padding: 7px;
  border-radius: 10px;
  border: 1px solid transparent;
  background: #9ab7ff09;
  color: #8d9fbe;
  transition:
    background 0.25s,
    color 0.25s,
    border-color 0.25s;
}
.tv-scene-tab img {
  flex: none;
  width: 35px;
  height: 35px;
  border-radius: 6px;
  object-fit: cover;
  object-position: center 75%;
}
.tv-scene-tab span {
  font-size: 10px;
  font-weight: 600;
  text-align: start;
  white-space: nowrap;
}
.tv-scene-tab.active {
  background: #436bad32;
  border-color: #90bdff66;
  color: #f0f7ff;
  box-shadow: 0 0 20px #436bad16;
}
.tv-scene-tab:hover {
  color: #fff;
  background: #436bad38;
}
.tv-stage-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 17px 4px 0;
  color: #5b7096;
  font-size: 7px;
  letter-spacing: 0.17em;
}
.tv-stage-index {
  color: #99b5e0;
  font-size: 11px;
  letter-spacing: 0.04em;
}
.tv-stage-index i {
  color: #485b7d;
  font-style: normal;
  margin-inline-start: 6px;
}
.tv-viewing-strip {
  display: flex;
  align-items: center;
  gap: 46px;
  padding-block: 27px;
  margin-top: 55px;
  border-block: 1px solid var(--stroke-soft);
}
.tv-viewing-strip > span {
  font-size: 8px;
  color: #7188ad;
  letter-spacing: 0.16em;
  margin-inline-end: auto;
}
.tv-viewing-strip a {
  display: flex;
  align-items: center;
  gap: 9px;
  color: #b3c4e1;
  font-size: 10px;
  transition: color 0.2s;
}
.tv-viewing-strip a:hover {
  color: #65e8ff;
}
.tv-viewing-strip img {
  width: 25px;
  height: 25px;
}
.tv-viewing-strip .tv-strip-arrow {
  justify-content: center;
  width: 28px;
  height: 28px;
  border: 1px solid var(--stroke);
  border-radius: 50%;
  font-size: 14px;
}
.section {
  padding: 83px 0;
}
.section-alt {
  background: linear-gradient(135deg, #080f25, #080d1e);
}
.kicker {
  color: #729adb;
  font-size: 8px;
  letter-spacing: 0.2em;
  margin-bottom: 15px;
}
.section h2 {
  font-weight: 500;
  font-size: clamp(28px, 3vw, 43px);
  letter-spacing: -0.055em;
}
.section h2 em {
  color: #7ccbf6;
  background: none;
  -webkit-text-fill-color: currentColor;
}
.section-sub {
  color: #8e9fbd;
  font-size: 12px;
  line-height: 1.9;
}
.tv-section-heading {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 50px;
}
.tv-section-heading > div {
  flex: 1;
}
.tv-section-heading > p {
  max-width: 305px;
  margin: 0 0 5px;
}
.poster-grid {
  margin-top: 32px;
  gap: 18px;
}
.poster-card {
  min-height: 370px;
  padding: 21px;
  border-radius: 17px;
  border-color: #6798e72f;
  background-position: center 63%;
  box-shadow: none;
}
.poster-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 50px #0005;
  border-color: #75bbff88;
}
.poster-card::before {
  background: linear-gradient(
    180deg,
    #03081929,
    transparent 30%,
    #050917b0 62%,
    #040916 100%
  );
}
.poster-card-top {
  gap: 10px;
}
.poster-card-brand {
  display: none;
}
.poster-card-badge {
  color: #bfdcff;
  font-size: 7px;
  font-weight: 600;
  border-color: #c3dfff3b;
  background: #03081b70;
  letter-spacing: 0.12em;
  padding: 6px 10px;
}
.poster-card-body {
  padding-top: 135px;
}
.poster-card-body h3 {
  max-width: 220px;
  font-size: 23px;
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1.18;
}
.poster-card-body p {
  color: #90a6cb;
  font-size: 10px;
  line-height: 1.7;
  margin-top: 8px;
}
.poster-card-action {
  background: none;
  color: #84dafa;
  border-top: 1px solid #8daffa26;
  padding: 15px 0 0;
  border-radius: 0;
  margin-top: 18px;
  font-size: 9px;
  justify-content: space-between;
}
.poster-card-action::after {
  content: "↗";
  font-size: 17px;
}
.poster-action-icon {
  display: none;
}
.globe-layout {
  margin-top: 35px;
}
.region-panel {
  grid-template-columns: 1.15fr 0.85fr;
  min-height: 310px;
  gap: 28px;
}
.region-list-wrap {
  border: 0;
  background: none;
  padding: 0;
}
.region-list-wrap h3 {
  font-size: 8px;
  margin-bottom: 15px;
}
.region-list {
  max-height: 266px;
  padding: 2px 8px 4px 2px;
  gap: 8px;
  align-content: start;
}
.region-chip {
  border-radius: 9px;
  font-size: 10px;
  min-height: 38px;
  padding: 8px 13px;
  background: #14213e6b;
  border-color: #94b6ff1e;
}
.region-chip.active {
  background: #3d73be3d;
  border-color: #73ceff88;
  color: #b7eaff;
}
.region-chip:hover {
  border-color: #73ceff88;
  color: #b7eaff;
}
.region-detail {
  border-color: #7bb9ff26;
  border-radius: 17px;
  background:
    linear-gradient(90deg, #0b1427dd, #0b14279c),
    url("../media/posters/global-background.webp") center 60% / cover;
  padding: 27px;
  min-height: 300px;
  gap: 20px;
}
.rd-empty {
  color: #9ab0d4;
}
.rd-empty .rd-empty-icon {
  font-size: 48px;
}
.rd-flag {
  font-size: 39px;
}
.rd-head h3 {
  font-size: 22px;
  font-weight: 500;
}
.rd-count {
  font-size: 10px;
  color: #83b3ef;
  margin-top: 5px;
}
.rd-description {
  color: #97abcd;
  font-size: 12px;
  line-height: 1.85;
  max-width: 310px;
}
.rd-cta {
  width: fit-content;
  padding: 13px 18px;
  font-size: 10px;
  margin-top: auto;
}
#features {
  padding-block: 75px 65px;
}
.feature-grid {
  gap: 12px;
  margin-top: 30px;
}
.feature-card {
  background: linear-gradient(135deg, #101b3480, #091024);
  border-color: #7db9ff19;
  border-radius: 13px;
  padding: 22px;
}
.feature-card::before {
  background: radial-gradient(
    300px circle at var(--mx, 50%) var(--my, 0%),
    #4278e526,
    transparent 50%
  );
}
.feature-card:hover {
  border-color: #75baff60;
}
.feature-num {
  display: none;
}
.feature-icon {
  width: 40px;
  height: 40px;
  margin: 0 0 16px;
}
.feature-card h3 {
  font-size: 13px;
  font-weight: 600;
}
.feature-card p {
  font-size: 10px;
  line-height: 1.8;
}
#download {
  background:
    radial-gradient(ellipse 60% 80% at 90% 100%, #192e7333, transparent),
    #070d1f;
  border-block: 1px solid var(--stroke-soft);
}
.dl-grid {
  grid-template-columns: 0.8fr 1.2fr;
  gap: 26px;
  margin-top: 35px;
}
.dl-card,
.dl-guide {
  background: #0a142b;
  border: 1px solid #87c2ff23;
  border-radius: 18px;
  padding: 28px;
}
.dl-card {
  background:
    radial-gradient(ellipse at 100% 0, #1c478440, transparent 65%), #0c1731;
}
.dl-card-head {
  margin-bottom: 20px;
}
.dl-card-head h3 {
  font-size: 20px;
  font-weight: 600;
}
.dl-tag {
  font-size: 9px;
  margin-top: 5px;
  font-weight: 400;
  color: #93aad0;
}
.dl-table {
  font-size: 10px;
  margin-bottom: 24px;
}
.dl-table tr:nth-child(n + 4) {
  display: none;
}
.dl-table td {
  padding: 11px 0;
}
.dl-table td:last-child {
  font-weight: 400;
  color: #c6d7f3;
}
.dl-card .brand-mark.lg {
  width: 57px;
  height: 57px;
}
.dl-note {
  font-size: 8px;
  margin-top: 14px;
}
.tv-guide-label {
  color: #7493c3;
  font-size: 8px;
  letter-spacing: 0.16em;
  margin-bottom: 20px;
}
.device-tabs {
  gap: 7px;
  margin-bottom: 20px;
}
.device-tab {
  font-size: 9px;
  padding: 9px 12px;
  border-radius: 8px;
  border-color: #abcaff1c;
}
.device-tab.active {
  background: #2d589c66;
  border-color: #68b6fbaa;
  color: #b8eaff;
}
.device-tab:hover {
  border-color: #68b6fbaa;
}
.device-steps {
  gap: 9px;
}
.device-steps li {
  font-size: 10px;
  background: #040b1a30;
  border: 0;
  padding-block: 12px;
  line-height: 1.7;
}
.device-steps li::before {
  font-size: 10px;
  background: #122648;
  width: 25px;
  height: 25px;
}
.tv-how-section {
  padding-block: 65px;
}
.steps {
  gap: 25px;
  margin-top: 30px;
}
.step {
  background: none;
  border: 0;
  border-top: 1px solid #648ad838;
  padding: 24px 0;
  border-radius: 0;
}
.step-num {
  color: #80b7ff;
  background: none;
  width: auto;
  height: auto;
  font-size: 13px;
  display: block;
  text-align: start;
  margin-bottom: 13px;
}
.step h3 {
  font-size: 14px;
  font-weight: 500;
}
.step p {
  font-size: 10px;
  line-height: 1.8;
}
#faq {
  padding-block: 25px 80px;
}
.faq-list {
  margin-top: 26px;
  gap: 0;
}
.faq-item {
  background: none;
  border: 0;
  border-bottom: 1px solid #81b5fb26;
  border-radius: 0;
}
.faq-item.open {
  border-color: #67c4f87a;
  background: #13244330;
}
.faq-q {
  padding: 21px 0;
  font-size: 12px;
  font-weight: 500;
}
.faq-q .faq-icon {
  background: none;
  border: 1px solid #91b5ed29;
  border-radius: 50%;
  font-size: 17px;
  width: 24px;
  height: 24px;
}
.faq-a p {
  padding: 0 35px 20px 0;
  color: #92a6c8;
  font-size: 11px;
  line-height: 1.8;
}
.footer {
  background: #040814;
  border-color: #80b0f01a;
  padding-top: 43px;
}
.footer-grid {
  grid-template-columns: 2fr 1fr 1fr;
  padding-bottom: 33px;
}
.footer-brand p {
  font-size: 10px;
  color: #7187ad;
}
.footer-col h4 {
  font-size: 8px;
  letter-spacing: 0.12em;
}
.footer-col a {
  font-size: 10px;
  padding-block: 5px;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 25px;
  font-size: 8px;
  color: #637ca5;
  padding-block: 20px;
  text-align: start;
}
.footer-bottom a {
  white-space: nowrap;
  color: #9bb0d1;
}
.tv-theater.tv-lights-dimmed {
  --bg: #02040b;
  --bg-alt: #050917;
}
.tv-lights-dimmed .tv-aurora {
  opacity: 0.08;
}
.tv-lights-dimmed .tv-stage {
  border-color: #78b7ff80;
  box-shadow:
    0 0 70px #2d6feb40,
    0 35px 100px #000d;
}
.tv-lights-dimmed .hero-copy,
.tv-lights-dimmed .tv-viewing-strip {
  opacity: 0.62;
}
.hero-copy,
.tv-viewing-strip {
  transition: opacity 0.45s;
}
.tv-lights-dimmed .hero-copy:focus-within,
.tv-lights-dimmed .hero-copy:hover,
.tv-lights-dimmed .tv-viewing-strip:focus-within,
.tv-lights-dimmed .tv-viewing-strip:hover {
  opacity: 1;
}
a:focus-visible,
button:focus-visible,
[tabindex="0"]:focus-visible {
  outline: 2px solid #7adfff;
  outline-offset: 4px;
}
@media (min-width: 1600px) {
  .hero-inner {
    gap: 80px;
  }
  .tv-stage {
    height: 570px;
  }
}
@media (max-width: 1100px) {
  .container,
  .nav-inner {
    width: calc(100% - 56px);
  }
  .hero-inner {
    display: grid;
    grid-template-columns: 1fr 1.05fr;
    gap: 32px;
  }
  .hero h1 {
    font-size: 44px;
  }
  .hero-copy {
    padding-block: 0 15px;
  }
  .hero-sub {
    font-size: 12px;
  }
  .hero-cta {
    gap: 16px;
  }
  .hero-cta .btn {
    padding: 15px;
  }
  .tv-stage {
    height: 495px;
  }
  .nav-inner {
    gap: 20px;
  }
  .nav-links {
    gap: 22px;
  }
  .nav-actions {
    gap: 10px;
  }
  .tv-viewing-strip {
    gap: 28px;
  }
  .feature-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .feature-card {
    display: block;
    padding: 20px;
  }
  .feature-card p {
    display: block;
    -webkit-line-clamp: unset;
  }
  .feature-icon {
    margin: 0 0 15px;
  }
  .dl-grid {
    grid-template-columns: 0.85fr 1.15fr;
    gap: 18px;
  }
}
@media (max-width: 800px) {
  :root {
    --nav-h: 67px;
  }
  .container,
  .nav-inner {
    width: calc(100% - 40px);
  }
  .hero {
    padding-top: calc(var(--nav-h) + 36px);
  }
  .hero-inner {
    grid-template-columns: minmax(0, 1fr);
    gap: 27px;
  }
  .hero-visual {
    width: 100%;
    max-width: none;
    margin-inline: 0;
    justify-self: stretch;
  }
  .hero-copy {
    max-width: 570px;
    padding: 0;
  }
  .hero h1 {
    font-size: clamp(40px, 7vw, 55px);
    max-width: 580px;
  }
  .hero-copy > * + * {
    margin-top: 18px;
  }
  .hero-sub {
    max-width: 530px;
    line-height: 1.8;
  }
  .hero-cta {
    margin-top: 23px;
    gap: 23px;
  }
  .hero-cta .btn {
    padding: 16px 21px;
  }
  .tv-benefit {
    margin-top: 9px !important;
  }
  .tv-stage {
    height: 440px;
  }
  .tv-scene-image {
    object-position: center 69%;
  }
  .tv-stage-caption {
    bottom: 110px;
  }
  .tv-stage-caption h2 {
    font-size: 29px;
  }
  .tv-stage-caption p {
    max-width: 380px;
  }
  .tv-viewing-strip {
    margin-top: 28px;
    padding-block: 22px;
    gap: 22px;
  }
  .tv-viewing-strip > span {
    display: none;
  }
  .tv-viewing-strip .tv-strip-arrow {
    margin-inline-start: auto;
  }
  .tv-section-heading {
    gap: 24px;
  }
  .tv-section-heading > p {
    max-width: 240px;
    font-size: 10px;
  }
  .section {
    padding-block: 55px;
  }
  .poster-card {
    min-height: 340px;
    padding: 17px;
  }
  .poster-card-body h3 {
    font-size: 20px;
  }
  .poster-card-body p {
    font-size: 9px;
  }
  .poster-card-action {
    font-size: 8px;
  }
  .region-panel {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .region-list {
    max-height: 165px;
  }
  .region-detail {
    min-height: 260px;
  }
  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .dl-grid {
    grid-template-columns: 1fr;
    gap: 17px;
  }
  .steps {
    gap: 14px;
  }
  .footer-grid {
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 20px;
  }
}
@media (max-width: 720px) {
  .nav-links {
    background: #060d21fa;
    padding-inline: 22px;
  }
  .nav-links a {
    font-size: 13px;
  }
  .nav-actions {
    margin-inline-start: auto;
  }
  .nav-inner {
    gap: 12px;
  }
  .brand {
    font-size: 14px;
    gap: 9px;
  }
  .brand-mark {
    width: 33px;
    height: 33px;
  }
  .brand-name {
    max-width: 165px;
  }
  .nav-burger {
    padding-inline-end: 0;
  }
  .lang-btn {
    font-size: 9px;
  }
  .hero h1 {
    font-size: clamp(35px, 8.85vw, 49px);
    line-height: 1.11;
    letter-spacing: -0.058em;
  }
  .hero-sub {
    font-size: 13px;
    line-height: 1.8;
    max-width: 430px;
  }
  .hero-cta .btn {
    flex: none;
    font-size: 11px;
  }
  .tv-eyebrow {
    font-size: 7px;
    letter-spacing: 0.17em;
  }
  .tv-text-link {
    font-size: 9px;
  }
  .tv-benefit {
    font-size: 8px;
    gap: 6px;
  }
  .tv-benefit > span:first-child {
    font-size: 16px;
  }
  .tv-stage {
    height: 355px;
    border-radius: 17px;
  }
  .tv-stage-top {
    padding: 16px;
  }
  .tv-stage-label {
    font-size: 6px;
  }
  .tv-light-toggle {
    font-size: 7px;
    padding: 7px 8px;
  }
  .tv-light-toggle svg {
    width: 13px;
    height: 13px;
  }
  .tv-stage-caption {
    inset: auto 20px 91px;
  }
  .tv-scene-kicker {
    font-size: 6px;
  }
  .tv-stage-caption h2 {
    font-size: 22px;
  }
  .tv-stage-caption p {
    font-size: 12px;
    max-width: 270px;
    margin-top: 6px;
  }
  .tv-stage-action {
    margin-top: 9px;
    font-size: 8px;
  }
  .tv-scene-tabs {
    inset: auto 13px 14px;
    gap: 6px;
    padding-top: 12px;
  }
  .tv-scene-tab {
    gap: 6px;
    padding: 6px;
    border-radius: 8px;
  }
  .tv-scene-tab img {
    width: 27px;
    height: 29px;
    border-radius: 4px;
  }
  .tv-scene-tab span {
    font-size: 10px;
  }
  .tv-stage-bottom {
    margin-top: 11px;
    font-size: 6px;
    letter-spacing: 0.08em;
  }
  .tv-stage-index {
    font-size: 8px;
  }
  .tv-viewing-strip {
    margin-top: 23px;
    gap: 22px;
    padding-block: 17px;
  }
  .tv-viewing-strip a {
    font-size: 8px;
    gap: 5px;
  }
  .tv-viewing-strip img {
    width: 19px;
    height: 19px;
  }
  .tv-viewing-strip .tv-strip-arrow {
    width: 24px;
    height: 24px;
  }
  .section {
    padding-block: 44px;
  }
  .tv-section-heading {
    display: block;
  }
  .tv-section-heading > p {
    max-width: 340px;
    margin-top: 14px;
  }
  .section h2 {
    font-size: 29px;
  }
  .kicker {
    font-size: 7px;
    margin-bottom: 10px;
  }
  .poster-grid {
    width: calc(100% + 20px);
    margin-top: 25px;
    gap: 13px;
    padding-right: 20px;
    padding-bottom: 8px;
  }
  .poster-card {
    flex-basis: min(76vw, 330px);
    min-height: 385px;
    border-radius: 15px;
    padding: 20px;
    scroll-snap-stop: always;
  }
  .poster-card-body h3 {
    font-size: 25px;
    max-width: 220px;
  }
  .poster-card-body p {
    font-size: 10px;
  }
  .poster-card-action {
    font-size: 9px;
  }
  .region-list {
    max-height: 168px;
    gap: 7px;
  }
  .region-chip {
    font-size: 9px;
    padding: 7px 10px;
    min-height: 35px;
  }
  .region-detail {
    padding: 23px;
    min-height: 250px;
  }
  .rd-head h3 {
    font-size: 20px;
  }
  .rd-description {
    font-size: 11px;
  }
  #features {
    padding-block: 45px;
  }
  .feature-grid {
    gap: 9px;
    margin-top: 25px;
  }
  .feature-card {
    padding: 17px 14px;
    border-radius: 12px;
  }
  .feature-icon {
    width: 34px;
    height: 34px;
    margin-bottom: 14px;
  }
  .feature-card h3 {
    font-size: 11px;
    margin-bottom: 9px;
  }
  .feature-card p {
    display: block;
    font-size: 12px;
    line-height: 1.75;
  }
  .dl-card,
  .dl-guide {
    padding: 22px;
    border-radius: 16px;
  }
  .dl-card-head h3 {
    font-size: 18px;
  }
  .dl-card-head {
    gap: 13px;
  }
  .dl-tag {
    font-size: 8px;
  }
  .device-tab {
    font-size: 8px;
    padding: 8px 10px;
  }
  .device-steps li {
    font-size: 9px;
    padding-inline-start: 45px;
  }
  .device-steps li::before {
    inset-inline-start: 7px;
  }
  .steps {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .step {
    display: grid;
    grid-template-columns: 30px 1fr;
    gap: 4px 12px;
    padding-block: 21px;
  }
  .step-num {
    grid-row: 1/3;
    margin: 0;
    padding-top: 2px;
  }
  .step h3 {
    font-size: 12px;
  }
  .step p {
    grid-column: 2;
    font-size: 10px;
  }
  #faq {
    padding-block: 5px 50px;
  }
  .faq-q {
    font-size: 13px;
    padding-block: 19px;
    line-height: 1.6;
  }
  .faq-a p {
    font-size: 10px;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px 18px;
  }
  .footer-brand {
    grid-column: 1/-1;
  }
  .footer-bottom {
    display: block;
    font-size: 7px;
    line-height: 1.8;
  }
  .footer-bottom a {
    display: inline-block;
    margin-top: 13px;
    font-size: 9px;
  }
  .mobile-download-bar {
    inset-inline: 10px;
    bottom: max(10px, env(safe-area-inset-bottom));
    padding: 9px 11px;
    min-height: 64px;
    border-radius: 15px;
    background: #0c1733f2;
    border-color: #86c3ff43;
    box-shadow:
      0 0 30px #0d397533,
      0 12px 40px #000b;
  }
  .mobile-download-icon {
    width: 39px;
    height: 39px;
    border-radius: 10px;
  }
  .mobile-download-copy strong {
    font-size: 12px;
  }
  .mobile-download-copy small {
    font-size: 7px;
    color: #91afd9;
    margin-top: 4px;
  }
  .mobile-download-bar .btn {
    font-size: 9px;
    padding: 12px 15px;
    border-radius: 9px;
  }
}
@media (max-width: 370px) {
  .container,
  .nav-inner {
    width: calc(100% - 30px);
  }
  .brand-name {
    max-width: 139px;
  }
  .hero {
    padding-top: calc(var(--nav-h) + 26px);
  }
  .hero h1 {
    font-size: 33px;
  }
  .tv-viewing-strip {
    gap: 15px;
  }
  .tv-scene-tab span {
    font-size: 7px;
  }
  .tv-scene-tab img {
    width: 22px;
  }
  .mobile-download-copy small {
    font-size: 6px;
  }
}
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
  .tv-stage,
  .tv-scene-image {
    transform: none !important;
  }
}
