:root {
  --bg: #0c131f;
  --bg-soft: #111c2e;
  --surface: #152033;
  --surface-2: #1b2940;
  --ink: #e9f1fc;
  --muted: #8ea3c0;
  --line: rgba(255, 255, 255, 0.09);
  --line-strong: rgba(255, 255, 255, 0.16);
  --navy: #050a14;
  --navy-2: #0b1a30;
  --blue: #2f7dff;
  --cyan: #22d3f0;
  --teal: #12c9a6;
  --amber: #ffb63d;
  --danger: #ff5b5b;
  --radius: 14px;
  --radius-lg: 20px;
  --shadow-sm: 0 10px 30px rgba(3, 7, 18, 0.35);
  --shadow-lg: 0 30px 80px rgba(2, 5, 15, 0.55);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: "Inter", "PingFang SC", "HarmonyOS Sans SC", "Microsoft YaHei", "Noto Sans SC", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

button {
  font: inherit;
}

.container {
  width: min(1180px, 100%);
  margin: 0 auto;
  padding: 0 24px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 10px 16px;
  background: var(--surface-2);
  color: var(--ink);
  border-radius: var(--radius);
  transform: translateY(-160%);
  transition: transform 0.2s ease;
}

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

.icon-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--surface);
  color: var(--ink);
  cursor: pointer;
  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease,
    background 0.2s ease;
}

.icon-button:hover {
  border-color: rgba(47, 125, 255, 0.55);
  color: var(--cyan);
  transform: translateY(-1px);
}

.icon-button svg,
.btn-download svg,
.btn-ghost svg,
.coming-soon svg,
.review-footnote svg,
.modal-placeholder-note svg,
.toast svg,
.floating-chip svg {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(9, 16, 27, 0.82);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(16px);
}

.site-header.scrolled {
  box-shadow: 0 12px 34px rgba(2, 6, 16, 0.5);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  min-height: 44px;
}

.brand-icon {
  width: 40px;
  height: 40px;
  border-radius: 11px;
  box-shadow: 0 8px 20px rgba(47, 125, 255, 0.34);
}

.brand-name {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--ink);
}

.brand-name span {
  color: var(--cyan);
  font-weight: 700;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav-links a {
  position: relative;
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 600;
  transition: color 0.2s ease;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--cyan), var(--blue));
  opacity: 0;
  transform: scaleX(0.5);
  transition:
    opacity 0.2s ease,
    transform 0.2s ease;
}

.nav-links a:hover {
  color: var(--ink);
}

.nav-links a:hover::after {
  opacity: 1;
  transform: scaleX(1);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.menu-toggle {
  display: none;
}

.btn-download {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 54px;
  padding: 13px 24px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(120deg, var(--blue), var(--cyan));
  color: #fff;
  font-weight: 700;
  box-shadow: 0 16px 34px rgba(47, 125, 255, 0.34);
  cursor: pointer;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.btn-download:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 42px rgba(47, 125, 255, 0.42);
}

.btn-download strong,
.btn-download small {
  display: block;
  line-height: 1.3;
  text-align: left;
}

.btn-download small {
  margin-top: 2px;
  font-size: 0.78rem;
  font-weight: 500;
  opacity: 0.86;
}

.btn-download--nav {
  min-height: 42px;
  padding: 9px 18px;
  font-size: 0.9rem;
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  padding: 13px 22px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.92);
  font-weight: 600;
  transition:
    background 0.2s ease,
    transform 0.2s ease;
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.13);
  transform: translateY(-2px);
}

.hero {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(rgba(255, 255, 255, 0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.028) 1px, transparent 1px),
    linear-gradient(155deg, #050a14 0%, #0a1729 52%, #123a63 100%);
  background-size:
    46px 46px,
    46px 46px,
    auto;
  color: #fff;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(120% 80% at 80% 16%, rgba(34, 211, 240, 0.2), transparent 62%),
    radial-gradient(90% 70% at 6% 88%, rgba(47, 125, 255, 0.18), transparent 60%);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  align-items: center;
  gap: 64px;
  min-height: 740px;
  padding-top: 56px;
  padding-bottom: 72px;
}

.hero-copy {
  max-width: 560px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 8px 16px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.84rem;
  font-weight: 700;
}

.live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--danger);
  animation: live-pulse 2s ease-out infinite;
}

@keyframes live-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 91, 91, 0.55);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(255, 91, 91, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 91, 91, 0);
  }
}

.hero h1 {
  margin: 22px 0 0;
  font-size: 5.2rem;
  line-height: 1;
  font-weight: 900;
  letter-spacing: 0.02em;
  background: linear-gradient(120deg, #ffffff 8%, #b7dbff 58%, #6ee7ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-tagline {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: 1.6rem;
  font-weight: 700;
}

.hero-description {
  max-width: 520px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.hero-meta {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin: 42px 0 0;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
}

.hero-meta div {
  min-width: 0;
}

.hero-meta dt {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.8rem;
}

.hero-meta dd {
  margin: 3px 0 0;
  color: #fff;
  font-size: 0.98rem;
  font-weight: 700;
}

.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 620px;
}

.tv-shell {
  position: relative;
  width: min(560px, 100%);
}

.tv-frame {
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-lg);
  background: linear-gradient(160deg, #2b3d59, #111c2c 62%);
  box-shadow:
    0 40px 90px rgba(0, 0, 0, 0.55),
    inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.tv-screen {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  border-radius: 10px;
  background: #04070d;
}

.tv-screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: saturate(1.04) contrast(1.02);
}

.screen-status {
  position: absolute;
  right: 14px;
  bottom: 14px;
  left: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 9px 13px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 10px;
  background: rgba(6, 11, 22, 0.72);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 600;
  backdrop-filter: blur(8px);
}

.screen-status span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-width: 0;
}

.screen-status svg {
  width: 15px;
  height: 15px;
  color: var(--cyan);
}

.tv-stand {
  display: block;
  width: 120px;
  height: 10px;
  margin: 16px auto 0;
  border-radius: 0 0 10px 10px;
  background: linear-gradient(180deg, #2a3d58, #131f31);
}

.tv-stand::after {
  content: "";
  display: block;
  width: 240px;
  height: 8px;
  margin: 10px auto 0;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.03));
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.5);
}

.floating-chip {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 11px;
  padding: 12px 16px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(10, 18, 32, 0.82);
  color: #fff;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(12px);
}

.floating-chip svg {
  width: 22px;
  height: 22px;
  color: var(--cyan);
}

.floating-chip strong {
  display: block;
  font-size: 0.95rem;
  line-height: 1.25;
}

.floating-chip span {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.72);
}

.chip-channels {
  top: 22px;
  right: -6px;
  animation: float 4.6s ease-in-out infinite;
}

.chip-speed {
  bottom: 78px;
  left: -10px;
  animation: float 5.4s ease-in-out 0.8s infinite;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}

.features {
  padding: 112px 0;
  background: var(--bg);
}

.section-heading {
  max-width: 720px;
  margin: 0 auto 58px;
  text-align: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  color: var(--cyan);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.eyebrow::before {
  content: "";
  width: 18px;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--blue), var(--cyan));
}

.section-heading h2 {
  margin: 0;
  font-size: 2.5rem;
  line-height: 1.2;
  font-weight: 800;
}

.section-heading p {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
}

.feature-item {
  grid-column: span 2;
  min-width: 0;
  padding: 30px 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}

.feature-item:nth-child(n + 4) {
  grid-column: span 3;
}

.feature-item:hover {
  transform: translateY(-5px);
  border-color: rgba(47, 125, 255, 0.5);
  box-shadow: 0 24px 52px rgba(3, 8, 20, 0.5);
}

.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  margin-bottom: 22px;
  border: 1px solid rgba(34, 211, 240, 0.22);
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(47, 125, 255, 0.2), rgba(34, 211, 240, 0.14));
  color: var(--cyan);
}

.feature-icon svg {
  width: 25px;
  height: 25px;
}

.feature-item h3 {
  margin: 0;
  font-size: 1.15rem;
  font-weight: 800;
}

.feature-item p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.preview {
  position: relative;
  padding: 112px 0 96px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(150deg, #08111f, #0e1e33 55%, #12395e);
  background-size:
    46px 46px,
    46px 46px,
    auto;
  color: #fff;
}

.section-heading--light .eyebrow {
  color: var(--cyan);
}

.section-heading--light p {
  color: rgba(255, 255, 255, 0.66);
}

.preview-scroller {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  scroll-snap-type: x mandatory;
}

.preview-item {
  position: relative;
  margin: 0;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.04);
  scroll-snap-align: start;
}

.preview-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.5s ease;
}

.preview-item:hover img {
  transform: scale(1.05);
}

.preview-item figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 40px 20px 18px;
  background: linear-gradient(transparent, rgba(5, 9, 20, 0.94));
  color: #fff;
}

.preview-item figcaption strong {
  font-size: 1.02rem;
}

.preview-item figcaption span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.82rem;
}

.preview-controls {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 24px;
}

.preview-controls .icon-button {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.preview-controls .icon-button:hover {
  border-color: var(--cyan);
  color: var(--cyan);
}

.reviews {
  padding: 112px 0;
  background: var(--bg-soft);
}

.reviews-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  max-width: none;
  margin-bottom: 46px;
  text-align: left;
}

.coming-soon {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex: 0 0 auto;
  padding: 10px 16px;
  border: 1px solid rgba(34, 211, 240, 0.28);
  border-radius: 999px;
  background: rgba(34, 211, 240, 0.1);
  color: var(--cyan);
  font-size: 0.86rem;
  font-weight: 700;
}

.coming-soon svg {
  width: 17px;
  height: 17px;
}

.rating-summary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 40px;
  color: var(--muted);
}

.rating-summary strong {
  color: var(--ink);
  font-size: 2.6rem;
  line-height: 1;
}

.stars {
  display: inline-flex;
  gap: 4px;
  color: var(--amber);
}

.stars svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.stars--small svg {
  width: 17px;
  height: 17px;
}

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

.review-card {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}

.review-top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  color: #08111f;
  font-size: 0.95rem;
  font-weight: 800;
}

.avatar--blue {
  background: linear-gradient(135deg, var(--cyan), var(--blue));
  color: #fff;
}

.avatar--cyan {
  background: linear-gradient(135deg, var(--teal), var(--cyan));
}

.avatar--amber {
  background: linear-gradient(135deg, var(--amber), #ff8a3d);
}

.review-top h3 {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.3;
}

.review-top div > span {
  color: var(--muted);
  font-size: 0.78rem;
}

.review-badge {
  margin-left: auto;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(34, 211, 240, 0.14);
  color: var(--cyan);
  font-size: 0.74rem;
  font-weight: 700;
}

.review-card > p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.review-footnote {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 0.88rem;
  text-align: center;
}

.review-footnote svg {
  width: 16px;
  height: 16px;
  color: var(--cyan);
}

.faq {
  padding: 112px 0;
  background: var(--bg);
}

.faq-wrap {
  max-width: 860px;
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.faq-item[open] {
  border-color: rgba(47, 125, 255, 0.5);
  box-shadow: var(--shadow-sm);
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 22px;
  list-style: none;
  font-size: 1.02rem;
  font-weight: 700;
  cursor: pointer;
}

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

.faq-item summary svg {
  width: 19px;
  height: 19px;
  flex: 0 0 auto;
  color: var(--cyan);
  transition: transform 0.25s ease;
}

.faq-item[open] summary svg {
  transform: rotate(180deg);
}

.faq-item p {
  margin: 0;
  padding: 0 22px 22px;
  color: var(--muted);
  font-size: 0.95rem;
}

.cta {
  padding: 0 0 112px;
  background: var(--bg);
}

.cta-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 48px 56px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(120deg, var(--navy), #0f2745 55%, #15507a);
  background-size:
    36px 36px,
    36px 36px,
    auto;
  color: #fff;
  box-shadow: var(--shadow-lg);
}

.cta-copy h2 {
  margin: 0;
  font-size: 2.1rem;
  line-height: 1.2;
}

.cta-copy p {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.68);
}

.eyebrow--light {
  color: var(--cyan);
}

.btn-download--light {
  flex: 0 0 auto;
  background: #fff;
  color: #08111f;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.34);
}

.btn-download--light:hover {
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.4);
}

.site-footer {
  padding: 64px 0 34px;
  background: #070d18;
  color: rgba(255, 255, 255, 0.72);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 42px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand .brand-name {
  color: #fff;
}

.footer-brand p {
  max-width: 320px;
  margin: 16px 0 0;
  font-size: 0.94rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}

.footer-links h3 {
  margin: 0 0 4px;
  color: #fff;
  font-size: 1rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.94rem;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: var(--cyan);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-top: 24px;
  font-size: 0.86rem;
  color: rgba(255, 255, 255, 0.5);
}

.footer-bottom a {
  color: var(--cyan);
}

.footer-bottom p {
  margin: 0;
}

.footer-note {
  color: rgba(255, 255, 255, 0.42);
  text-align: right;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 500;
  display: grid;
  place-items: center;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.modal[hidden] {
  display: none;
}

.modal.open {
  opacity: 1;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(3, 7, 16, 0.74);
  backdrop-filter: blur(6px);
}

.modal-panel {
  position: relative;
  z-index: 1;
  width: min(560px, 100%);
  max-height: 82vh;
  overflow-y: auto;
  padding: 38px 36px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow-lg);
  animation: modal-in 0.25s ease;
}

@keyframes modal-in {
  from {
    opacity: 0;
    transform: translateY(14px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
}

.modal-panel h2 {
  margin: 0 0 16px;
  font-size: 1.7rem;
}

.modal-panel p {
  margin: 0 0 14px;
  color: var(--muted);
}

.modal-placeholder-note {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 20px 0 0;
  padding: 12px 14px;
  border-radius: var(--radius);
  background: rgba(255, 182, 61, 0.12);
  color: var(--amber);
  font-size: 0.9rem;
}

.toast {
  position: fixed;
  bottom: 28px;
  left: 50%;
  z-index: 400;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  max-width: calc(100vw - 40px);
  padding: 12px 18px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: var(--surface-2);
  color: #fff;
  font-size: 0.92rem;
  box-shadow: 0 18px 46px rgba(2, 5, 15, 0.5);
  opacity: 0;
  transform: translate(-50%, 18px);
  pointer-events: none;
  transition:
    opacity 0.25s ease,
    transform 0.25s ease;
}

.toast.show {
  opacity: 1;
  transform: translate(-50%, 0);
}

.toast svg {
  width: 18px;
  height: 18px;
  color: var(--cyan);
}

@media (max-width: 1040px) {
  .hero-grid {
    grid-template-columns: 1fr 0.86fr;
    gap: 40px;
  }

  .hero h1 {
    font-size: 4.4rem;
  }

  .hero-tagline {
    font-size: 1.4rem;
  }

  .hero-visual {
    min-height: 520px;
  }

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

  .feature-item,
  .feature-item:nth-child(n + 4) {
    grid-column: span 1;
  }
}

@media (max-width: 860px) {
  .nav-links {
    position: absolute;
    top: calc(100% + 8px);
    right: 16px;
    left: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
    padding: 14px;
    border: 1px solid var(--line-strong);
    border-radius: var(--radius);
    background: var(--surface);
    box-shadow: var(--shadow-lg);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    padding: 10px 12px;
    border-radius: var(--radius);
    color: var(--ink);
  }

  .nav-links a:hover {
    background: rgba(255, 255, 255, 0.06);
  }

  .nav-links a::after {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .btn-download--nav {
    display: none;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 34px;
    padding-top: 48px;
  }

  .hero-copy {
    max-width: none;
  }

  .hero h1 {
    font-size: 4rem;
  }

  .hero-visual {
    min-height: auto;
    padding-bottom: 24px;
  }

  .reviews-heading {
    flex-direction: column;
    align-items: flex-start;
  }

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

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

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-note {
    text-align: left;
  }
}

@media (max-width: 640px) {
  .container {
    padding: 0 18px;
  }

  .hero-grid {
    min-height: auto;
    padding-top: 34px;
    padding-bottom: 54px;
  }

  .hero h1 {
    font-size: 3.4rem;
  }

  .hero-tagline {
    font-size: 1.22rem;
  }

  .hero-description {
    font-size: 0.98rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .btn-download,
  .hero-actions .btn-ghost {
    width: 100%;
  }

  .hero-meta {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 18px;
  }

  .tv-frame {
    padding: 9px;
  }

  .tv-stand {
    width: 90px;
  }

  .tv-stand::after {
    width: 180px;
  }

  .screen-status {
    font-size: 0.7rem;
    padding: 7px 10px;
  }

  .chip-channels {
    top: 8px;
    right: -4px;
  }

  .chip-speed {
    bottom: 0;
    left: -4px;
  }

  .floating-chip {
    padding: 10px 12px;
  }

  .features,
  .preview,
  .reviews,
  .faq {
    padding: 78px 0;
  }

  .cta {
    padding-bottom: 78px;
  }

  .section-heading {
    margin-bottom: 40px;
  }

  .section-heading h2 {
    font-size: 1.9rem;
  }

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

  .preview-scroller {
    display: flex;
    overflow-x: auto;
    gap: 14px;
    padding-bottom: 4px;
    scrollbar-width: none;
  }

  .preview-scroller::-webkit-scrollbar {
    display: none;
  }

  .preview-item {
    flex: 0 0 88%;
  }

  .rating-summary {
    flex-wrap: wrap;
    gap: 12px;
  }

  .cta-panel {
    flex-direction: column;
    align-items: flex-start;
    padding: 36px 28px;
  }

  .cta-copy h2 {
    font-size: 1.75rem;
  }

  .btn-download--light {
    width: 100%;
  }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 30px 22px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .modal-panel {
    padding: 30px 24px;
  }
}

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

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