:root {
  --navy-950: #020b1f;
  --navy-900: #061738;
  --navy-850: #0a2048;
  --navy-800: #0b285a;
  --navy-700: #123a78;
  --cyan-500: #20c8d8;
  --cyan-300: #74e4ed;
  --blue-600: #2367f2;
  --blue-500: #3978f7;
  --white: #ffffff;
  --mist-50: #f4f7fb;
  --mist-100: #e7edf6;
  --mist-200: #d4deeb;
  --ink-900: #07152f;
  --ink-700: #2b3e5d;
  --ink-500: #61708a;
  --line-light: rgb(255 255 255 / 14%);
  --line-dark: rgb(7 21 47 / 14%);
  --shadow-1: 0 24px 70px rgb(2 11 31 / 14%);
  --shadow-2: 0 42px 120px rgb(0 7 24 / 34%);
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 30px;
  --radius-xl: 44px;
  --shell: min(1180px, calc(100vw - 48px));
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  color-scheme: dark;
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--navy-950);
  color: var(--white);
  font-family: "Avenir Next", "PingFang SC", "Noto Sans CJK SC", "Microsoft YaHei", sans-serif;
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button,
input,
textarea,
select {
  font: inherit;
}

button {
  color: inherit;
}

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

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

h1,
h2,
h3,
p {
  margin-top: 0;
  text-wrap: pretty;
}

h1,
h2,
h3 {
  line-height: 1.12;
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 200;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  border-radius: var(--radius-sm);
  background: var(--white);
  color: var(--navy-900);
  transform: translateY(-180%);
  transition: transform 160ms ease;
}

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

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  height: 84px;
  border-bottom: 1px solid transparent;
  transition: height 240ms var(--ease), background-color 240ms ease, border-color 240ms ease,
    backdrop-filter 240ms ease;
}

.site-header.is-scrolled {
  height: 72px;
  border-color: var(--line-light);
  background: rgb(2 11 31 / 84%);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: 100%;
}

.brand {
  display: inline-flex;
  justify-self: start;
  align-items: center;
  gap: 11px;
  width: fit-content;
}

.brand img {
  border-radius: 11px;
}

.brand-copy {
  display: grid;
  gap: 0;
  line-height: 1;
}

.brand-copy strong {
  font-size: 17px;
  font-weight: 600;
  letter-spacing: 0.18em;
}

.brand-copy span {
  margin-top: 5px;
  color: var(--cyan-300);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.36em;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: 14px;
  font-weight: 500;
}

.primary-nav a {
  position: relative;
  color: rgb(255 255 255 / 72%);
  transition: color 180ms ease;
}

.primary-nav a::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 1px;
  background: var(--cyan-500);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms var(--ease);
}

.primary-nav a:hover,
.primary-nav a:focus-visible {
  color: var(--white);
}

.primary-nav a:hover::after,
.primary-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-cta {
  justify-self: end;
  padding: 9px 14px;
  border: 1px solid var(--line-light);
  border-radius: 999px;
  color: rgb(255 255 255 / 72%);
  font-size: 12px;
  letter-spacing: 0.08em;
  transition: border-color 180ms ease, color 180ms ease, background-color 180ms ease;
}

.header-cta:hover,
.header-cta:focus-visible {
  border-color: rgb(116 228 237 / 54%);
  background: rgb(32 200 216 / 8%);
  color: var(--white);
}

.menu-toggle {
  display: none;
}

.hero {
  position: relative;
  min-height: 820px;
  overflow: hidden;
  background:
    linear-gradient(104deg, rgb(6 23 56 / 96%) 0%, rgb(2 11 31 / 96%) 54%, rgb(4 18 44 / 98%) 100%),
    var(--navy-950);
}

.hero::before {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgb(116 228 237 / 3%) 1px, transparent 1px),
    linear-gradient(90deg, rgb(116 228 237 / 3%) 1px, transparent 1px);
  background-size: 64px 64px;
  content: "";
  mask-image: linear-gradient(to bottom, black, transparent 76%);
  pointer-events: none;
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(18px);
}

.hero-glow-one {
  top: 160px;
  right: -220px;
  width: 620px;
  height: 620px;
  background: rgb(35 103 242 / 17%);
}

.hero-glow-two {
  bottom: -280px;
  left: 25%;
  width: 520px;
  height: 520px;
  background: rgb(32 200 216 / 10%);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(390px, 0.88fr) minmax(540px, 1.12fr);
  gap: 46px;
  align-items: center;
  min-height: 820px;
  padding-top: 98px;
}

.hero-copy {
  padding-bottom: 38px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
  color: var(--cyan-300);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow-dark {
  color: var(--blue-600);
}

.status-dot {
  position: relative;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--cyan-500);
  box-shadow: 0 0 0 5px rgb(32 200 216 / 10%);
}

.status-dot::after {
  position: absolute;
  inset: -5px;
  border: 1px solid rgb(116 228 237 / 38%);
  border-radius: 50%;
  content: "";
  animation: status-pulse 2.4s ease-out infinite;
}

@keyframes status-pulse {
  0% { opacity: 1; transform: scale(0.8); }
  72%, 100% { opacity: 0; transform: scale(1.8); }
}

.hero h1 {
  max-width: 650px;
  margin-bottom: 28px;
  font-size: clamp(54px, 5.6vw, 82px);
  font-weight: 600;
  letter-spacing: -0.055em;
}

.hero h1 span {
  color: var(--cyan-300);
}

.hero-lead {
  max-width: 590px;
  margin-bottom: 34px;
  color: rgb(244 247 251 / 68%);
  font-size: clamp(17px, 1.5vw, 19px);
  line-height: 1.85;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 50px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 650;
  line-height: 1;
  cursor: pointer;
  transition: transform 180ms var(--ease), box-shadow 180ms ease, background-color 180ms ease,
    border-color 180ms ease;
}

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

.button:active {
  transform: translateY(0);
}

.button:focus-visible,
.scene-button:focus-visible,
.menu-toggle:focus-visible,
.dialog-close:focus-visible,
summary:focus-visible {
  outline: 3px solid rgb(116 228 237 / 64%);
  outline-offset: 3px;
}

.button-primary {
  background: var(--blue-600);
  box-shadow: 0 12px 32px rgb(35 103 242 / 26%);
  color: var(--white);
}

.button-primary:hover {
  background: var(--blue-500);
  box-shadow: 0 16px 42px rgb(35 103 242 / 34%);
}

.button-primary span {
  margin-left: 28px;
  font-size: 17px;
}

.button-quiet {
  border-color: var(--line-light);
  background: rgb(255 255 255 / 3%);
  color: rgb(255 255 255 / 78%);
}

.button-quiet:hover {
  border-color: rgb(255 255 255 / 28%);
  background: rgb(255 255 255 / 7%);
}

.button-light {
  background: var(--white);
  color: var(--navy-900);
}

.button-light:hover {
  background: var(--mist-100);
  box-shadow: 0 12px 36px rgb(2 11 31 / 20%);
}

.hero-notes {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin: 34px 0 0;
  padding: 0;
  color: rgb(244 247 251 / 54%);
  font-size: 12px;
  list-style: none;
}

.hero-notes li {
  position: relative;
  padding-left: 15px;
}

.hero-notes li::before {
  position: absolute;
  top: 50%;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--cyan-500);
  content: "";
  transform: translateY(-50%);
}

.hero-product {
  position: relative;
  display: grid;
  place-items: center;
  min-width: 0;
  padding: 40px 0 16px;
}

.tv-wrap {
  position: relative;
  z-index: 2;
  width: min(100%, 680px);
}

.tv-frame {
  position: relative;
  padding: 9px;
  border: 1px solid rgb(116 228 237 / 18%);
  border-radius: 26px;
  background: #010817;
  box-shadow: var(--shadow-2), inset 0 0 0 1px rgb(255 255 255 / 5%);
}

.tv-frame::after {
  position: absolute;
  bottom: 3px;
  left: 50%;
  width: 34px;
  height: 2px;
  border-radius: 99px;
  background: rgb(116 228 237 / 54%);
  content: "";
  transform: translateX(-50%);
}

.tv-screen {
  position: relative;
  min-height: 415px;
  overflow: hidden;
  border-radius: 18px;
  background:
    radial-gradient(circle at 50% 40%, rgb(35 103 242 / 22%), transparent 38%),
    linear-gradient(145deg, var(--navy-850), var(--navy-950));
}

.tv-screen::before {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(90deg, rgb(255 255 255 / 2%) 1px, transparent 1px);
  background-size: 50px 100%;
  content: "";
  mask-image: linear-gradient(90deg, transparent, black 24%, black 76%, transparent);
}

.tv-topline {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 19px 21px 0;
  color: rgb(255 255 255 / 56%);
  font-size: 10px;
}

.tv-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgb(255 255 255 / 72%);
  font-weight: 700;
  letter-spacing: 0.2em;
}

.tv-brand img {
  border-radius: 7px;
}

.tv-online {
  display: flex;
  align-items: center;
  gap: 7px;
}

.tv-online i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--cyan-500);
  box-shadow: 0 0 12px var(--cyan-500);
}

.tv-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 46px 40px 28px;
  text-align: center;
}

.tv-mark-wrap {
  position: relative;
  display: grid;
  place-items: center;
  width: 92px;
  height: 92px;
  margin-bottom: 20px;
}

.tv-mark-wrap img {
  position: relative;
  z-index: 2;
  width: 74px;
  height: 74px;
  border-radius: 22px;
  box-shadow: 0 12px 36px rgb(2 11 31 / 44%);
}

.signal-ring {
  position: absolute;
  inset: 1px;
  border: 1px solid rgb(116 228 237 / 17%);
  border-radius: 28px;
  animation: signal-wave 3.2s var(--ease) infinite;
}

.signal-ring-two {
  animation-delay: 1.2s;
}

@keyframes signal-wave {
  0% { opacity: 0; transform: scale(0.72); }
  30% { opacity: 1; }
  100% { opacity: 0; transform: scale(1.5); }
}

.tv-kicker {
  margin-bottom: 8px;
  color: var(--cyan-300);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
}

.tv-content h2 {
  max-width: 450px;
  margin-bottom: 10px;
  font-size: clamp(22px, 2.35vw, 30px);
  font-weight: 580;
  letter-spacing: -0.025em;
}

.tv-content > p:not(.tv-kicker) {
  max-width: 430px;
  margin-bottom: 22px;
  color: rgb(255 255 255 / 57%);
  font-size: 12px;
}

.tv-meta {
  display: flex;
  gap: 8px;
}

.tv-meta span {
  padding: 5px 10px;
  border: 1px solid rgb(255 255 255 / 8%);
  border-radius: 999px;
  background: rgb(255 255 255 / 3%);
  color: rgb(255 255 255 / 50%);
  font-size: 9px;
}

.tv-stand {
  position: relative;
  width: 145px;
  height: 46px;
  margin: 0 auto;
  border-bottom: 8px solid #010817;
}

.tv-stand::before {
  position: absolute;
  top: 0;
  left: 50%;
  width: 20px;
  height: 36px;
  background: linear-gradient(90deg, #010817, var(--navy-850), #010817);
  content: "";
  transform: translateX(-50%);
}

.tv-stand span {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 8px;
  border-radius: 8px 8px 2px 2px;
  background: #010817;
}

.device-orbit {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
}

.source-device {
  position: absolute;
  display: grid;
  place-items: center;
  border: 1px solid rgb(116 228 237 / 20%);
  background: rgb(6 23 56 / 86%);
  box-shadow: 0 20px 50px rgb(0 6 20 / 38%);
  backdrop-filter: blur(12px);
}

.source-device small {
  position: absolute;
  color: rgb(255 255 255 / 60%);
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.08em;
}

.source-phone {
  bottom: 106px;
  left: -22px;
  width: 54px;
  height: 102px;
  border-radius: 15px;
  transform: rotate(-7deg);
}

.source-phone::after {
  position: absolute;
  inset: 10px 5px 20px;
  border-radius: 8px;
  background: linear-gradient(155deg, var(--blue-600), var(--navy-850) 65%);
  content: "";
}

.source-phone .device-camera {
  position: absolute;
  z-index: 2;
  top: 5px;
  width: 14px;
  height: 3px;
  border-radius: 9px;
  background: rgb(255 255 255 / 18%);
}

.source-phone .device-content {
  position: relative;
  z-index: 2;
  width: 18px;
  height: 18px;
  border-radius: 6px;
  background: var(--cyan-500);
  box-shadow: 0 0 24px rgb(32 200 216 / 50%);
}

.source-phone small {
  z-index: 2;
  bottom: 5px;
}

.source-laptop {
  top: 86px;
  right: -28px;
  width: 105px;
  height: 72px;
  border-radius: 10px;
  transform: rotate(5deg);
}

.laptop-screen {
  position: absolute;
  inset: 7px 8px 14px;
  display: grid;
  place-items: center;
  border-radius: 4px;
  background: linear-gradient(155deg, var(--navy-800), var(--blue-600));
}

.laptop-screen i {
  width: 28px;
  height: 18px;
  border: 2px solid var(--cyan-300);
  border-radius: 4px;
}

.laptop-base {
  position: absolute;
  right: 2px;
  bottom: 8px;
  left: 2px;
  height: 4px;
  border-radius: 1px 1px 6px 6px;
  background: rgb(255 255 255 / 24%);
}

.source-laptop small {
  bottom: -17px;
}

.scene-switcher {
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: min(92%, 540px);
  margin-top: 16px;
  padding: 5px;
  border: 1px solid var(--line-light);
  border-radius: 14px;
  background: rgb(255 255 255 / 3%);
}

.scene-button {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  min-height: 40px;
  padding: 7px 9px;
  border: 0;
  border-radius: 9px;
  background: transparent;
  color: rgb(255 255 255 / 48%);
  font-size: 11px;
  cursor: pointer;
  transition: background-color 180ms ease, color 180ms ease;
}

.scene-button span {
  color: rgb(116 228 237 / 46%);
  font-size: 8px;
  letter-spacing: 0.08em;
}

.scene-button:hover {
  color: rgb(255 255 255 / 80%);
}

.scene-button.is-active {
  background: rgb(255 255 255 / 9%);
  color: var(--white);
}

.signal-strip {
  border-top: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
  background: var(--navy-900);
}

.signal-strip-inner {
  display: flex;
  justify-content: space-between;
  gap: 32px;
  padding-block: 24px;
}

.signal-strip p {
  margin: 0;
  font-size: 13px;
  letter-spacing: 0.03em;
}

.signal-strip p:first-child {
  color: rgb(255 255 255 / 45%);
}

.signal-strip p:last-child {
  color: var(--cyan-300);
}

.section {
  padding: 132px 0;
}

.capabilities,
.privacy,
.compatibility {
  color: var(--ink-900);
}

.capabilities {
  background: var(--mist-50);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.55fr);
  column-gap: 70px;
  align-items: end;
  margin-bottom: 66px;
}

.section-heading .eyebrow {
  grid-column: 1 / -1;
}

.section-heading h2,
.how-intro h2,
.privacy-copy h2,
.compatibility-copy h2,
.faq-heading h2,
.release-copy h2 {
  margin-bottom: 0;
  font-size: clamp(38px, 4.5vw, 64px);
  font-weight: 560;
  letter-spacing: -0.045em;
}

.section-heading > p:last-child {
  margin-bottom: 4px;
  color: var(--ink-500);
  font-size: 16px;
}

.capability-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 16px;
}

.capability-card {
  position: relative;
  grid-column: span 3;
  min-height: 300px;
  overflow: hidden;
  padding: 28px;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-md);
  background: var(--white);
  transition: transform 240ms var(--ease), box-shadow 240ms ease, border-color 240ms ease;
}

.capability-card:hover {
  z-index: 2;
  border-color: rgb(35 103 242 / 24%);
  box-shadow: var(--shadow-1);
  transform: translateY(-5px);
}

.capability-card-primary {
  grid-column: span 6;
  grid-row: span 2;
  min-height: 616px;
  padding: 40px;
  border-color: transparent;
  background:
    radial-gradient(circle at 86% 18%, rgb(32 200 216 / 18%), transparent 30%),
    var(--navy-900);
  color: var(--white);
}

.capability-card-blue {
  grid-column: span 6;
  min-height: 300px;
  border-color: transparent;
  background: var(--blue-600);
  color: var(--white);
}

.capability-card-primary::after,
.capability-card-blue::after {
  position: absolute;
  right: -90px;
  bottom: -90px;
  width: 240px;
  height: 240px;
  border: 1px solid rgb(255 255 255 / 12%);
  border-radius: 50%;
  content: "";
  box-shadow: 0 0 0 34px rgb(255 255 255 / 3%), 0 0 0 70px rgb(255 255 255 / 2%);
}

.capability-index {
  margin-bottom: 52px;
  color: var(--blue-600);
  font-family: "DIN Alternate", "Avenir Next", sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.capability-card-primary .capability-index,
.capability-card-blue .capability-index {
  color: var(--cyan-300);
}

.capability-card-primary .capability-index {
  margin-bottom: 142px;
}

.capability-tag {
  margin-bottom: 12px;
  color: var(--ink-500);
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.18em;
}

.capability-card-primary .capability-tag,
.capability-card-blue .capability-tag {
  color: rgb(255 255 255 / 52%);
}

.capability-card h3 {
  position: relative;
  z-index: 1;
  margin-bottom: 15px;
  font-size: 24px;
  font-weight: 600;
  letter-spacing: -0.03em;
}

.capability-card-primary h3 {
  font-size: clamp(32px, 3.5vw, 48px);
}

.capability-card p {
  position: relative;
  z-index: 1;
  margin-bottom: 20px;
  color: var(--ink-500);
  font-size: 14px;
  line-height: 1.8;
}

.capability-card-primary p,
.capability-card-blue p {
  color: rgb(255 255 255 / 66%);
}

.capability-card ul {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 24px;
  padding: 0;
  list-style: none;
}

.capability-card li,
.capability-line span {
  padding: 6px 10px;
  border: 1px solid var(--line-dark);
  border-radius: 999px;
  color: var(--ink-700);
  font-size: 10px;
}

.capability-card-primary li,
.capability-card-blue li {
  border-color: var(--line-light);
  color: rgb(255 255 255 / 70%);
}

.capability-card small {
  position: relative;
  z-index: 1;
  display: block;
  color: var(--ink-500);
  font-size: 10px;
  line-height: 1.6;
}

.capability-card-primary small,
.capability-card-blue small {
  color: rgb(255 255 255 / 43%);
}

.capability-line {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 34px;
}

.how-it-works {
  background: var(--navy-900);
}

.how-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  gap: 100px;
  align-items: start;
}

.how-intro {
  position: sticky;
  top: 120px;
}

.how-intro h2 {
  margin-bottom: 28px;
}

.how-intro > p:not(.eyebrow) {
  max-width: 500px;
  color: rgb(255 255 255 / 60%);
}

.how-note {
  display: flex;
  gap: 15px;
  align-items: center;
  max-width: 430px;
  margin-top: 34px;
  padding: 16px;
  border: 1px solid var(--line-light);
  border-radius: var(--radius-sm);
  background: rgb(255 255 255 / 3%);
  color: rgb(255 255 255 / 55%);
  font-size: 11px;
}

.how-note strong {
  display: block;
  margin-bottom: 2px;
  color: var(--white);
}

.how-note-mark {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 40px;
  height: 40px;
  border: 1px solid rgb(116 228 237 / 30%);
  border-radius: 8px;
  background: rgb(32 200 216 / 8%);
  color: var(--cyan-300);
  font-size: 20px;
  font-weight: 600;
}

.steps {
  margin: 0;
  padding: 0;
  list-style: none;
}

.steps li {
  display: grid;
  grid-template-columns: 62px 1fr;
  gap: 22px;
  min-height: 150px;
  padding: 32px 8px 32px 0;
  border-top: 1px solid var(--line-light);
}

.steps li:last-child {
  border-bottom: 1px solid var(--line-light);
}

.step-number {
  color: var(--cyan-300);
  font-family: "DIN Alternate", "Avenir Next", sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.steps h3 {
  margin-bottom: 10px;
  font-size: 24px;
  font-weight: 550;
}

.steps p {
  margin: 0;
  color: rgb(255 255 255 / 52%);
  font-size: 14px;
}

.privacy {
  background: var(--white);
}

.privacy-grid {
  display: grid;
  grid-template-columns: minmax(440px, 1fr) minmax(0, 0.88fr);
  gap: 100px;
  align-items: center;
}

.privacy-visual {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 590px;
  overflow: hidden;
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 50% 40%, rgb(35 103 242 / 35%), transparent 34%),
    linear-gradient(145deg, var(--navy-800), var(--navy-950));
}

.privacy-visual::before {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgb(255 255 255 / 3%) 1px, transparent 1px),
    linear-gradient(90deg, rgb(255 255 255 / 3%) 1px, transparent 1px);
  background-size: 44px 44px;
  content: "";
  mask-image: radial-gradient(circle, black, transparent 72%);
}

.privacy-panel {
  position: relative;
  z-index: 2;
  width: min(78%, 390px);
  padding: 24px;
  border: 1px solid rgb(116 228 237 / 24%);
  border-radius: var(--radius-md);
  background: rgb(4 18 44 / 78%);
  box-shadow: 0 28px 90px rgb(0 4 16 / 42%);
  color: var(--white);
  backdrop-filter: blur(18px);
}

.privacy-panel-top {
  display: flex;
  gap: 13px;
  align-items: center;
  margin-bottom: 20px;
}

.privacy-panel-top img {
  border-radius: 12px;
}

.privacy-panel-top span {
  display: grid;
  gap: 3px;
}

.privacy-panel-top strong {
  font-size: 14px;
}

.privacy-panel-top small,
.privacy-panel > p {
  color: rgb(255 255 255 / 52%);
  font-size: 11px;
}

.privacy-panel > p {
  margin-bottom: 22px;
  line-height: 1.75;
}

.privacy-actions {
  display: grid;
  grid-template-columns: 0.75fr 1fr 1.1fr;
  gap: 7px;
}

.privacy-actions span {
  display: grid;
  place-items: center;
  min-height: 34px;
  border: 1px solid var(--line-light);
  border-radius: 8px;
  color: rgb(255 255 255 / 54%);
  font-size: 9px;
}

.privacy-actions span:last-child {
  border-color: transparent;
  background: var(--blue-600);
  color: var(--white);
}

.privacy-orbit {
  position: absolute;
  z-index: 1;
  border: 1px solid rgb(116 228 237 / 13%);
  border-radius: 50%;
}

.orbit-a {
  width: 430px;
  height: 430px;
}

.orbit-b {
  width: 550px;
  height: 550px;
  border-color: rgb(35 103 242 / 15%);
}

.privacy-copy h2,
.compatibility-copy h2 {
  margin-bottom: 28px;
}

.privacy-lead,
.compatibility-copy > p:not(.eyebrow) {
  color: var(--ink-500);
  font-size: 16px;
}

.privacy-points {
  margin-top: 38px;
}

.privacy-points article {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 18px;
  padding: 24px 0;
  border-top: 1px solid var(--line-dark);
}

.privacy-points article > span {
  color: var(--blue-600);
  font-family: "DIN Alternate", "Avenir Next", sans-serif;
  font-size: 10px;
  font-weight: 700;
}

.privacy-points h3 {
  margin-bottom: 7px;
  font-size: 17px;
  font-weight: 600;
}

.privacy-points p {
  margin: 0;
  color: var(--ink-500);
  font-size: 13px;
}

.tv-experience {
  background:
    radial-gradient(circle at 75% 20%, rgb(35 103 242 / 14%), transparent 24%),
    var(--navy-950);
}

.section-heading.compact {
  display: block;
  max-width: 850px;
}

.section-heading.compact h2 {
  color: var(--white);
}

.experience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
}

.experience-grid article {
  min-height: 290px;
  padding: 42px 36px 42px 0;
}

.experience-grid article + article {
  padding-left: 36px;
  border-left: 1px solid var(--line-light);
}

.experience-label {
  display: block;
  margin-bottom: 80px;
  color: var(--cyan-300);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.experience-grid h3 {
  margin-bottom: 14px;
  font-size: 22px;
  font-weight: 560;
}

.experience-grid p {
  margin: 0;
  color: rgb(255 255 255 / 50%);
  font-size: 13px;
}

.compatibility {
  background: var(--mist-100);
}

.compatibility-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(430px, 1.1fr);
  gap: 100px;
  align-items: start;
}

.compatibility-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 32px 0 16px;
}

.compatibility-tags span {
  padding: 8px 12px;
  border: 1px solid var(--line-dark);
  border-radius: 999px;
  background: rgb(255 255 255 / 50%);
  color: var(--ink-700);
  font-size: 11px;
}

.compatibility-copy small {
  color: var(--ink-500);
  font-size: 10px;
}

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

.boundary-list article {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 22px;
  padding: 30px 0;
  border-bottom: 1px solid var(--line-dark);
}

.boundary-list article > span {
  display: grid;
  place-items: center;
  align-self: start;
  width: 50px;
  height: 50px;
  border: 1px solid rgb(35 103 242 / 20%);
  border-radius: 50%;
  background: rgb(35 103 242 / 5%);
  color: var(--blue-600);
  font-size: 9px;
  font-weight: 750;
  letter-spacing: 0.08em;
}

.boundary-list h3 {
  margin-bottom: 8px;
  font-size: 18px;
  font-weight: 620;
}

.boundary-list p {
  margin: 0;
  color: var(--ink-500);
  font-size: 13px;
}

.checkout-section {
  background:
    radial-gradient(circle at 12% 18%, rgb(32 200 216 / 10%), transparent 28%),
    var(--mist-50);
  color: var(--ink-900);
}

.checkout-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(480px, 1.12fr);
  gap: 100px;
  align-items: center;
}

.checkout-copy h2 {
  margin-bottom: 28px;
  font-size: clamp(38px, 4.5vw, 64px);
  font-weight: 560;
  letter-spacing: -0.045em;
}

.checkout-copy > p:not(.eyebrow, .checkout-boundary) {
  color: var(--ink-500);
  font-size: 16px;
}

.checkout-benefits {
  margin: 38px 0 30px;
  padding: 0;
  border-top: 1px solid var(--line-dark);
  list-style: none;
}

.checkout-benefits li {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 1px 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line-dark);
}

.checkout-benefits li > span {
  grid-row: 1 / 3;
  color: var(--blue-600);
  font-family: "DIN Alternate", "Avenir Next", sans-serif;
  font-size: 10px;
  font-weight: 700;
}

.checkout-benefits strong {
  font-size: 15px;
  font-weight: 620;
}

.checkout-benefits small,
.checkout-boundary {
  color: var(--ink-500);
  font-size: 11px;
}

.checkout-boundary {
  margin: 0;
  padding-left: 13px;
  border-left: 2px solid rgb(35 103 242 / 30%);
}

.checkout-card {
  padding: 36px;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-1);
}

.checkout-card-heading {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: end;
  padding-bottom: 30px;
  border-bottom: 1px solid var(--line-dark);
}

.checkout-badge {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 5px 9px;
  border-radius: 999px;
  background: rgb(35 103 242 / 8%);
  color: var(--blue-600);
  font-size: 9px;
  font-weight: 750;
  letter-spacing: 0.08em;
}

.checkout-card-heading h3 {
  margin: 0;
  font-size: 22px;
  font-weight: 620;
}

.checkout-price {
  display: flex;
  align-items: baseline;
  color: var(--navy-900);
  white-space: nowrap;
}

.checkout-price > span {
  margin-right: 4px;
  font-size: 20px;
  font-weight: 650;
}

.checkout-price strong {
  font-family: "DIN Alternate", "Avenir Next", sans-serif;
  font-size: 52px;
  font-weight: 650;
  letter-spacing: -0.05em;
  line-height: 0.9;
}

.checkout-price small {
  margin-left: 7px;
  color: var(--ink-500);
  font-size: 12px;
}

.tv-checkout-context {
  margin-top: 22px;
  padding: 14px 16px;
  border: 1px solid rgb(35 103 242 / 18%);
  border-radius: var(--radius-sm);
  background: rgb(35 103 242 / 6%);
}

.tv-checkout-context strong {
  color: var(--blue-600);
  font-size: 12px;
}

.tv-checkout-context p {
  margin: 4px 0 0;
  color: var(--ink-500);
  font-size: 11px;
}

.product-field {
  display: grid;
  gap: 7px;
  padding: 22px 0 0;
}

.product-field label {
  color: var(--ink-700);
  font-size: 12px;
  font-weight: 650;
}

.product-field select {
  width: 100%;
  height: 46px;
  padding: 0 12px;
  border: 1px solid var(--mist-200);
  border-radius: var(--radius-sm);
  background: var(--mist-50);
  color: var(--ink-900);
  font: inherit;
  font-size: 13px;
}

.product-field small {
  color: var(--ink-500);
  font-size: 10px;
}

.checkout-summary {
  padding: 24px 0;
  border-bottom: 1px solid var(--line-dark);
}

.checkout-summary > div {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin: 8px 0;
  color: var(--ink-500);
  font-size: 13px;
}

.checkout-summary strong {
  color: var(--ink-700);
  font-weight: 620;
}

.checkout-summary > div:nth-child(2) strong {
  color: #0d8a62;
}

.checkout-summary .checkout-total {
  align-items: baseline;
  margin-top: 18px;
  color: var(--ink-900);
  font-size: 15px;
}

.checkout-total strong {
  color: var(--blue-600);
  font-size: 26px;
}

.coupon-field {
  padding: 24px 0 18px;
}

.coupon-field label {
  display: block;
  margin-bottom: 8px;
  color: var(--ink-700);
  font-size: 12px;
  font-weight: 650;
}

.coupon-control {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
}

.coupon-control input {
  min-width: 0;
  height: 48px;
  padding: 0 14px;
  border: 1px solid var(--mist-200);
  border-radius: var(--radius-sm);
  background: var(--mist-50);
  color: var(--ink-900);
  font-size: 13px;
  text-transform: uppercase;
  outline: 0;
  transition: border-color 160ms ease, box-shadow 160ms ease, background-color 160ms ease;
}

.coupon-control input:focus-visible {
  border-color: var(--blue-600);
  background: var(--white);
  box-shadow: 0 0 0 3px rgb(35 103 242 / 12%);
}

.coupon-control button {
  min-width: 74px;
  padding: 0 16px;
  border: 1px solid var(--mist-200);
  border-radius: var(--radius-sm);
  background: var(--white);
  color: var(--blue-600);
  font-size: 12px;
  font-weight: 650;
  cursor: pointer;
}

.coupon-control button:hover,
.coupon-control button:focus-visible {
  border-color: rgb(35 103 242 / 45%);
}

.coupon-control button:disabled,
.coupon-control input:disabled,
.checkout-pay:disabled {
  cursor: wait;
  opacity: 0.58;
}

.coupon-message {
  min-height: 18px;
  margin: 8px 0 0;
  color: var(--ink-500);
  font-size: 10px;
}

.coupon-message.is-success {
  color: #0d8a62;
}

.coupon-message.is-error {
  color: #b84242;
}

.checkout-pay {
  width: 100%;
}

.checkout-security {
  margin: 10px 0 0;
  color: var(--ink-500);
  font-size: 9px;
  text-align: center;
}

.checkout-result {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 12px;
  margin-top: 20px;
  padding: 16px;
  border: 1px solid rgb(13 138 98 / 20%);
  border-radius: var(--radius-sm);
  background: rgb(13 138 98 / 6%);
}

.checkout-result > span {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #0d8a62;
  color: var(--white);
  font-size: 16px;
}

.checkout-result strong {
  color: var(--ink-900);
  font-size: 13px;
}

.checkout-result p {
  margin: 3px 0 0;
  color: var(--ink-500);
  font-size: 11px;
}

.recovery-code {
  display: grid;
  gap: 8px;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid rgb(13 138 98 / 18%);
}

.recovery-code small {
  color: var(--ink-500);
  font-size: 10px;
}

.recovery-code code {
  color: var(--navy-900);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.recovery-code button {
  justify-self: start;
  padding: 7px 11px;
  border: 1px solid rgb(13 138 98 / 25%);
  border-radius: 8px;
  background: var(--white);
  color: #0d8a62;
  font-size: 10px;
  cursor: pointer;
}

.faq-section {
  background: var(--navy-950);
}

.faq-grid {
  display: grid;
  grid-template-columns: 0.62fr 1.38fr;
  gap: 100px;
}

.faq-heading h2 {
  font-size: clamp(38px, 4.2vw, 58px);
}

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

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

.faq-list summary {
  position: relative;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
  min-height: 82px;
  font-size: 17px;
  font-weight: 520;
  cursor: pointer;
  list-style: none;
}

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

.faq-list summary span {
  position: relative;
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
}

.faq-list summary span::before,
.faq-list summary span::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 13px;
  height: 1px;
  background: var(--cyan-300);
  content: "";
  transition: transform 220ms var(--ease);
}

.faq-list summary span::before {
  transform: translate(-50%, -50%);
}

.faq-list summary span::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-list details[open] summary span::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.faq-list details p {
  max-width: 730px;
  margin: -8px 50px 30px 0;
  color: rgb(255 255 255 / 52%);
  font-size: 14px;
}

.release-section {
  padding: 0 0 40px;
  background: var(--navy-950);
}

.release-card {
  position: relative;
  display: grid;
  grid-template-columns: 0.65fr 1.35fr;
  min-height: 560px;
  overflow: hidden;
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 25% 50%, rgb(32 200 216 / 18%), transparent 30%),
    var(--blue-600);
}

.release-card::before {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(120deg, transparent 48%, rgb(255 255 255 / 5%) 48%, rgb(255 255 255 / 5%) 49%, transparent 49%);
  background-size: 54px 54px;
  content: "";
}

.release-brand,
.release-copy {
  position: relative;
  z-index: 1;
}

.release-brand {
  display: grid;
  place-items: center;
  overflow: hidden;
}

.release-brand::before,
.release-brand::after {
  position: absolute;
  width: 350px;
  height: 350px;
  border: 1px solid rgb(255 255 255 / 13%);
  border-radius: 50%;
  content: "";
}

.release-brand::after {
  width: 470px;
  height: 470px;
}

.release-brand img {
  position: relative;
  z-index: 2;
  width: 210px;
  border-radius: 58px;
  box-shadow: 0 30px 70px rgb(2 11 31 / 32%);
  transform: rotate(-6deg);
}

.release-copy {
  align-self: center;
  max-width: 650px;
  padding: 80px 70px 80px 30px;
}

.release-copy .eyebrow {
  color: rgb(255 255 255 / 62%);
}

.release-copy h2 {
  margin-bottom: 28px;
}

.release-copy > p:not(.eyebrow) {
  margin-bottom: 32px;
  color: rgb(255 255 255 / 68%);
  font-size: 15px;
}

.site-footer {
  padding: 78px 0 28px;
  background: var(--navy-950);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 0.7fr 1.1fr;
  gap: 70px;
  align-items: start;
}

.footer-brand {
  margin-bottom: 22px;
}

.footer-grid > div:first-child > p,
.footer-legal p {
  color: rgb(255 255 255 / 42%);
  font-size: 12px;
}

.footer-links {
  display: grid;
  gap: 10px;
  font-size: 13px;
}

.footer-links a {
  width: fit-content;
  color: rgb(255 255 255 / 58%);
  transition: color 180ms ease;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--cyan-300);
}

.footer-legal p {
  margin-bottom: 12px;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 60px;
  padding-top: 22px;
  border-top: 1px solid var(--line-light);
  color: rgb(255 255 255 / 30%);
  font-size: 10px;
  letter-spacing: 0.1em;
}

.footer-bottom a {
  color: inherit;
  transition: color 180ms ease;
}

.footer-bottom a:hover,
.footer-bottom a:focus-visible {
  color: var(--cyan-300);
}

.release-dialog {
  width: min(600px, calc(100vw - 32px));
  max-height: min(760px, calc(100vh - 32px));
  padding: 42px;
  border: 0;
  border-radius: var(--radius-lg);
  background: var(--mist-50);
  box-shadow: 0 48px 160px rgb(0 4 16 / 58%);
  color: var(--ink-900);
}

.release-dialog::backdrop {
  background: rgb(2 11 31 / 78%);
  backdrop-filter: blur(8px);
}

.release-dialog h2 {
  max-width: 500px;
  margin-bottom: 18px;
  font-size: 32px;
  font-weight: 620;
  letter-spacing: -0.03em;
}

.release-dialog > p:not(.eyebrow),
.release-dialog li {
  color: var(--ink-500);
  font-size: 13px;
}

.release-dialog ul {
  margin: 24px 0 30px;
  padding-left: 20px;
}

.release-dialog li + li {
  margin-top: 9px;
}

.dialog-close {
  position: absolute;
  top: 18px;
  right: 18px;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid var(--line-dark);
  border-radius: 50%;
  background: transparent;
  color: var(--ink-700);
  font-size: 22px;
  cursor: pointer;
}

.dialog-action {
  width: 100%;
}

.js [data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 720ms var(--ease), transform 720ms var(--ease);
  transition-delay: var(--reveal-delay, 0ms);
}

.js [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1120px) {
  :root {
    --shell: min(100% - 40px, 960px);
  }

  .primary-nav {
    gap: 20px;
  }

  .hero-grid {
    grid-template-columns: minmax(340px, 0.84fr) minmax(480px, 1.16fr);
    gap: 20px;
  }

  .hero h1 {
    font-size: clamp(50px, 5.6vw, 64px);
  }

  .source-phone {
    left: 2px;
  }

  .source-laptop {
    right: 0;
  }

  .capability-card {
    grid-column: span 6;
  }

  .capability-card-primary {
    grid-column: span 6;
  }

  .capability-card-blue {
    grid-column: span 6;
  }

  .how-grid,
  .privacy-grid,
  .compatibility-grid,
  .faq-grid {
    gap: 60px;
  }

  .privacy-grid {
    grid-template-columns: minmax(390px, 0.95fr) minmax(0, 1.05fr);
  }

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

@media (max-width: 900px) {
  :root {
    --shell: min(100% - 36px, 760px);
  }

  .site-header,
  .site-header.is-scrolled {
    height: 72px;
  }

  .header-inner {
    grid-template-columns: 1fr auto;
  }

  .header-cta {
    display: none;
  }

  .menu-toggle {
    position: relative;
    z-index: 2;
    display: grid;
    align-content: center;
    gap: 6px;
    width: 44px;
    height: 44px;
    padding: 11px;
    border: 1px solid var(--line-light);
    border-radius: 12px;
    background: rgb(255 255 255 / 3%);
    cursor: pointer;
  }

  .menu-toggle span {
    width: 20px;
    height: 1px;
    background: var(--white);
    transition: transform 220ms var(--ease);
  }

  .menu-toggle[aria-expanded="true"] span:first-child {
    transform: translateY(3.5px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:last-child {
    transform: translateY(-3.5px) rotate(-45deg);
  }

  .primary-nav {
    position: fixed;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 22px;
    padding: 88px max(30px, calc((100vw - 724px) / 2));
    background: rgb(2 11 31 / 97%);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity 220ms ease, transform 220ms var(--ease);
  }

  .primary-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .primary-nav a {
    font-size: clamp(28px, 7vw, 42px);
    font-weight: 540;
    letter-spacing: -0.03em;
  }

  .hero {
    min-height: auto;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 142px;
    padding-bottom: 74px;
  }

  .hero-copy {
    max-width: 680px;
    padding-bottom: 28px;
  }

  .hero h1 {
    font-size: clamp(52px, 9vw, 76px);
  }

  .hero-product {
    width: min(100%, 700px);
    margin: 0 auto;
  }

  .section {
    padding: 100px 0;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 22px;
    margin-bottom: 50px;
  }

  .section-heading .eyebrow {
    grid-column: auto;
  }

  .how-grid,
  .privacy-grid,
  .compatibility-grid,
  .checkout-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .checkout-grid {
    gap: 56px;
  }

  .how-intro {
    position: static;
  }

  .privacy-visual {
    min-height: 580px;
  }

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

  .experience-grid article {
    min-height: auto;
    padding: 32px 0;
  }

  .experience-grid article + article {
    padding-left: 0;
    border-top: 1px solid var(--line-light);
    border-left: 0;
  }

  .experience-label {
    margin-bottom: 34px;
  }

  .faq-grid {
    gap: 42px;
  }

  .release-card {
    grid-template-columns: 0.7fr 1.3fr;
  }

  .release-copy {
    padding: 64px 40px 64px 10px;
  }

  .release-brand img {
    width: 160px;
  }

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

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

@media (max-width: 640px) {
  :root {
    --shell: calc(100% - 32px);
    --radius-xl: 28px;
  }

  html {
    scroll-padding-top: 78px;
  }

  .brand-copy strong {
    font-size: 15px;
  }

  .hero-grid {
    padding-top: 124px;
    padding-bottom: 58px;
  }

  .hero-copy {
    padding-bottom: 10px;
  }

  .eyebrow {
    margin-bottom: 18px;
    font-size: 10px;
  }

  .hero h1 {
    margin-bottom: 22px;
    font-size: clamp(43px, 13vw, 58px);
    letter-spacing: -0.06em;
  }

  .hero-lead {
    margin-bottom: 28px;
    font-size: 16px;
    line-height: 1.75;
  }

  .hero-actions {
    display: grid;
  }

  .button {
    min-height: 52px;
  }

  .hero-notes {
    gap: 10px 18px;
    margin-top: 26px;
  }

  .hero-product {
    padding-top: 34px;
  }

  .tv-frame {
    padding: 6px;
    border-radius: 18px;
  }

  .tv-screen {
    min-height: 310px;
    border-radius: 12px;
  }

  .tv-topline {
    padding: 13px 13px 0;
  }

  .tv-online {
    font-size: 0;
  }

  .tv-content {
    padding: 30px 24px 18px;
  }

  .tv-mark-wrap {
    width: 74px;
    height: 74px;
    margin-bottom: 14px;
  }

  .tv-mark-wrap img {
    width: 58px;
    height: 58px;
    border-radius: 18px;
  }

  .tv-content h2 {
    font-size: 20px;
  }

  .tv-content > p:not(.tv-kicker) {
    min-height: 40px;
    margin-bottom: 14px;
    font-size: 10px;
  }

  .source-phone {
    bottom: 98px;
    left: -5px;
    transform: scale(0.82) rotate(-7deg);
  }

  .source-laptop {
    top: 52px;
    right: -8px;
    transform: scale(0.76) rotate(5deg);
  }

  .scene-switcher {
    width: 100%;
  }

  .scene-button {
    gap: 4px;
    font-size: 9px;
  }

  .scene-button span {
    display: none;
  }

  .signal-strip-inner {
    display: grid;
    gap: 4px;
    padding-block: 18px;
  }

  .section {
    padding: 78px 0;
  }

  .section-heading h2,
  .how-intro h2,
  .privacy-copy h2,
  .compatibility-copy h2,
  .faq-heading h2,
  .release-copy h2 {
    font-size: clamp(35px, 10.5vw, 48px);
  }

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

  .capability-card,
  .capability-card-primary,
  .capability-card-blue {
    grid-column: auto;
    grid-row: auto;
    min-height: auto;
    padding: 28px;
  }

  .capability-card-primary .capability-index,
  .capability-index {
    margin-bottom: 58px;
  }

  .capability-card-primary h3 {
    font-size: 34px;
  }

  .how-grid,
  .privacy-grid,
  .compatibility-grid,
  .checkout-grid {
    gap: 54px;
  }

  .checkout-card {
    padding: 26px 20px;
  }

  .checkout-card-heading {
    align-items: start;
  }

  .checkout-card-heading h3 {
    font-size: 18px;
  }

  .checkout-price strong {
    font-size: 44px;
  }

  .steps li {
    grid-template-columns: 44px 1fr;
    gap: 12px;
    min-height: 130px;
    padding: 26px 0;
  }

  .steps h3 {
    font-size: 20px;
  }

  .privacy-visual {
    min-height: 430px;
  }

  .privacy-panel {
    width: calc(100% - 40px);
    padding: 20px;
  }

  .privacy-actions {
    grid-template-columns: 1fr;
  }

  .privacy-actions span {
    min-height: 36px;
  }

  .orbit-a {
    width: 320px;
    height: 320px;
  }

  .orbit-b {
    width: 410px;
    height: 410px;
  }

  .privacy-points article {
    grid-template-columns: 28px 1fr;
    gap: 12px;
  }

  .boundary-list article {
    grid-template-columns: 48px 1fr;
    gap: 14px;
  }

  .boundary-list article > span {
    width: 44px;
    height: 44px;
  }

  .faq-list summary {
    min-height: 76px;
    font-size: 15px;
  }

  .release-section {
    padding-bottom: 20px;
  }

  .release-card {
    grid-template-columns: 1fr;
  }

  .release-brand {
    min-height: 300px;
  }

  .release-copy {
    padding: 18px 26px 42px;
  }

  .release-brand img {
    width: 150px;
  }

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

  .footer-legal {
    grid-column: auto;
  }

  .footer-bottom {
    gap: 20px;
    font-size: 9px;
  }

  .release-dialog {
    padding: 34px 24px 26px;
    border-radius: 22px;
  }

  .release-dialog h2 {
    padding-right: 20px;
    font-size: 26px;
  }
}

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

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

  .js [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
