:root {
  --ink: #080b0d;
  --ink-soft: #111619;
  --ink-raised: #171d20;
  --paper: #f1efe8;
  --paper-bright: #fbfaf6;
  --paper-muted: #d8d6cf;
  --line: rgba(10, 15, 17, 0.14);
  --line-light: rgba(255, 255, 255, 0.14);
  --cyan: #47e6ff;
  --cyan-soft: rgba(71, 230, 255, 0.14);
  --lime: #c4ff63;
  --orange: #ff7043;
  --white: #fff;
  --display: "Bricolage Grotesque", "Avenir Next", sans-serif;
  --body: "Noto Sans SC", "PingFang SC", "Microsoft YaHei", sans-serif;
  --shell: min(1240px, calc(100vw - 48px));
  --radius-xl: 40px;
  --radius-lg: 28px;
  --radius-md: 18px;
  --shadow-soft: 0 30px 90px rgba(8, 11, 13, 0.13);
  --shadow-dark: 0 38px 100px rgba(0, 0, 0, 0.45);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--ink);
}

html.locale-pending body {
  visibility: hidden;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

section[id] {
  scroll-margin-top: 78px;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
  height: auto;
}

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

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

button {
  font: inherit;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

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

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

.page-noise {
  display: none;
}

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

.site-header {
  position: fixed;
  z-index: 80;
  top: 0;
  left: 0;
  right: 0;
  padding: 14px 0;
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(8, 11, 13, 0.62);
  -webkit-backdrop-filter: blur(20px) saturate(135%);
  backdrop-filter: blur(20px) saturate(135%);
  transition: padding 240ms ease, background 240ms ease;
}

.site-header.scrolled {
  padding: 8px 0;
  background: rgba(8, 11, 13, 0.74);
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
}

.nav-shell {
  width: var(--shell);
  min-height: 50px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 28px;
}

.brand {
  display: inline-flex;
  width: max-content;
  align-items: center;
  gap: 10px;
  font-family: var(--display);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.brand img {
  border-radius: 11px;
  box-shadow: 0 9px 26px rgba(0, 0, 0, 0.22);
}

.site-menu {
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.67);
}

.site-menu a {
  position: relative;
  transition: color 180ms ease;
}

.site-menu a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -8px;
  height: 1px;
  background: var(--cyan);
  transition: right 180ms ease;
}

.site-menu a:hover {
  color: var(--white);
}

.site-menu a:hover::after {
  right: 0;
}

.nav-mobile-link {
  display: none;
}

.nav-actions {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
  backdrop-filter: blur(10px);
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.nav-cta:hover {
  transform: translateY(-2px);
  border-color: var(--cyan);
  background: var(--cyan-soft);
}

.nav-cta svg,
.button svg {
  width: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.menu-toggle {
  display: none;
}

.hero {
  position: relative;
  min-height: 100vh;
  padding: 150px max(24px, calc((100vw - 1240px) / 2)) 130px;
  color: var(--white);
  background: var(--ink);
  overflow: hidden;
}

.hero-grid,
.automation-grid,
.cta-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.9), transparent 82%);
}

.hero-glow {
  position: absolute;
  border-radius: 999px;
  filter: blur(40px);
  opacity: 0.55;
  pointer-events: none;
}

.hero-glow-a {
  width: 680px;
  height: 680px;
  top: -330px;
  left: calc(50% - 340px);
  background: radial-gradient(circle, rgba(71, 230, 255, 0.22), transparent 68%);
}

.hero-glow-b {
  width: 760px;
  height: 760px;
  right: -420px;
  bottom: 80px;
  background: radial-gradient(circle, rgba(196, 255, 99, 0.09), transparent 68%);
}

.hero-copy,
.hero-stage {
  position: relative;
  z-index: 2;
}

.hero-copy {
  max-width: 1180px;
  margin-inline: auto;
  text-align: center;
}

.hero-app-icon {
  width: 84px;
  margin: 0 auto 18px;
  border-radius: 22px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.46);
}

.hero-kicker {
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.42);
  font-family: var(--display);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 24px;
  color: rgba(255, 255, 255, 0.64);
  font-family: var(--display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow-dark {
  color: rgba(8, 11, 13, 0.48);
}

.hero h1,
.section-heading h2,
.automation-intro h2,
.scenes-heading h2,
.final-cta h2,
.gallery-heading h2,
.privacy-content h2 {
  margin: 0;
  font-family: var(--display);
  font-weight: 600;
  letter-spacing: -0.065em;
  line-height: 0.98;
}

.hero h1 {
  max-width: 1180px;
  font-size: clamp(62px, 7.3vw, 112px);
}

.hero h1 > span {
  display: block;
}

.hero-title-solid {
  color: var(--white);
}

.hero-title-outline {
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.38);
}

.hero-lead {
  max-width: 720px;
  margin: 34px auto 0;
  color: rgba(255, 255, 255, 0.52);
  font-size: clamp(15px, 1.2vw, 18px);
  line-height: 1.9;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
  justify-content: center;
}

.button {
  min-height: 52px;
  padding: 0 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.button-primary {
  color: var(--ink);
  background: var(--cyan);
  box-shadow: 0 13px 40px rgba(71, 230, 255, 0.2);
}

.button-primary:hover {
  box-shadow: 0 18px 50px rgba(71, 230, 255, 0.34);
}

.button-ghost {
  border-color: rgba(255, 255, 255, 0.18);
  color: var(--white);
  background: rgba(255, 255, 255, 0.04);
}

.button-ghost:hover {
  background: rgba(255, 255, 255, 0.1);
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 28px;
  justify-content: center;
  color: rgba(255, 255, 255, 0.38);
  font-family: var(--display);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-meta span + span::before {
  content: "/";
  margin-right: 20px;
  color: rgba(255, 255, 255, 0.18);
}

.hero-stage {
  width: min(1040px, 100%);
  margin: 92px auto 0;
}

.screenshot-button {
  width: 100%;
  padding: 0;
  border: 0;
  display: block;
  color: inherit;
  background: transparent;
  cursor: zoom-in;
}

.screenshot-button img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  transition: filter 220ms ease;
}

.hero-product-shot {
  aspect-ratio: 1900 / 1585;
}

.image-frame .screenshot-button {
  aspect-ratio: 2200 / 1383;
}

.wireless-card .screenshot-button {
  aspect-ratio: 1900 / 1585;
}

.phone-card .screenshot-button,
.gallery-card .screenshot-button {
  aspect-ratio: 794 / 1812;
}

.screenshot-button:hover img {
  filter: brightness(1.03) saturate(1.025);
}

.manifesto {
  min-height: 580px;
  padding: 120px 0;
  display: grid;
  grid-template-columns: 0.45fr 2fr;
  gap: 34px 70px;
  align-content: center;
}

.section-index {
  color: rgba(8, 11, 13, 0.38);
  font-family: var(--display);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.manifesto-copy {
  align-self: start;
}

.display-line {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(48px, 7vw, 108px);
  font-weight: 600;
  letter-spacing: -0.065em;
  line-height: 0.98;
}

.display-line.muted {
  color: transparent;
  -webkit-text-stroke: 1px rgba(8, 11, 13, 0.35);
}

.manifesto-note {
  grid-column: 2;
  max-width: 650px;
  margin: 18px 0 0;
  color: rgba(8, 11, 13, 0.56);
  font-size: 17px;
  line-height: 1.9;
}

.mirror-section {
  padding: 80px 0 150px;
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  align-items: center;
  gap: clamp(60px, 8vw, 130px);
}

.image-frame {
  position: relative;
  padding: 0;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.image-frame-light {
  background: transparent;
}

.image-frame img {
  border-radius: 17px;
}

.frame-label,
.card-topline {
  padding: 3px 7px 12px;
  display: flex;
  justify-content: space-between;
  color: rgba(8, 11, 13, 0.43);
  font-family: var(--display);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.frame-label {
  padding-inline: 0;
}

.visual-caption {
  display: block;
  margin-top: 18px;
  color: rgba(8, 11, 13, 0.43);
  font-size: 12px;
  text-align: center;
}

.mirror-copy h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(44px, 5vw, 76px);
  font-weight: 600;
  letter-spacing: -0.06em;
  line-height: 1.02;
}

.mirror-copy > p {
  margin: 28px 0 0;
  color: rgba(8, 11, 13, 0.56);
  font-size: 16px;
  line-height: 1.9;
}

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

.feature-list article {
  padding: 20px 0;
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 12px;
  border-bottom: 1px solid var(--line);
}

.feature-list article > span {
  color: rgba(8, 11, 13, 0.35);
  font-family: var(--display);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.feature-list strong {
  font-size: 14px;
}

.feature-list p {
  margin: 4px 0 0;
  color: rgba(8, 11, 13, 0.47);
  font-size: 12px;
}

.capability-band {
  padding: 0 0 150px;
}

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

.capability-card {
  min-height: 270px;
  padding: 36px 28px;
  border-right: 1px solid var(--line);
  transition: color 260ms ease, background 260ms ease, transform 260ms ease;
}

.capability-card:last-child {
  border-right: 0;
}

.capability-card:hover {
  color: var(--white);
  background: var(--ink);
  transform: translateY(-8px);
}

.cap-index {
  color: rgba(8, 11, 13, 0.34);
  font-family: var(--display);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.capability-card h3 {
  margin: 92px 0 8px;
  font-family: var(--display);
  font-size: 20px;
}

.capability-card p {
  margin: 0;
  color: rgba(8, 11, 13, 0.48);
  font-size: 12px;
  line-height: 1.8;
}

.capability-card:hover p {
  color: rgba(255, 255, 255, 0.52);
}

.capability-card:hover .cap-index {
  color: var(--cyan);
}

.android-compat {
  position: relative;
  margin-top: 28px;
  padding: 34px 38px;
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(480px, 1.4fr);
  align-items: center;
  gap: 42px;
  border-radius: var(--radius-lg);
  color: var(--white);
  background:
    linear-gradient(115deg, rgba(196, 255, 99, 0.11), transparent 34%),
    var(--ink);
  overflow: hidden;
}

.android-compat::after {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  right: -72px;
  top: -94px;
  border: 1px solid rgba(196, 255, 99, 0.32);
  border-radius: 50%;
}

.android-kicker {
  color: var(--lime);
  font-family: var(--display);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.android-compat h3 {
  margin: 10px 0 8px;
  font-family: var(--display);
  font-size: clamp(24px, 2.3vw, 34px);
  letter-spacing: -0.045em;
}

.android-compat p {
  max-width: 560px;
  margin: 0;
  color: rgba(255, 255, 255, 0.52);
  font-size: 12px;
  line-height: 1.85;
}

.android-compat-specs {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.android-compat-specs span {
  padding: 15px 18px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 11px;
}

.android-compat-specs span:nth-child(odd) {
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.android-compat-specs span:nth-child(-n + 2) {
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.android-compat-specs b {
  color: var(--white);
  font-family: var(--display);
  font-weight: 600;
}

.wireless-section {
  position: relative;
  padding: 145px 0 170px;
  color: var(--white);
  background:
    radial-gradient(circle at 14% 18%, rgba(71, 230, 255, 0.11), transparent 28%),
    var(--ink-soft);
  overflow: hidden;
}

.wireless-section::after {
  content: "WIRELESS";
  position: absolute;
  right: -0.08em;
  top: 90px;
  color: rgba(255, 255, 255, 0.025);
  font-family: var(--display);
  font-size: clamp(120px, 18vw, 300px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.08em;
  pointer-events: none;
}

.section-heading {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: end;
  gap: 70px;
}

.section-index-light {
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.35);
}

.section-index-cyan {
  color: var(--cyan);
}

.section-heading h2,
.automation-intro h2,
.scenes-heading h2,
.gallery-heading h2,
.privacy-content h2 {
  font-size: clamp(48px, 6.2vw, 92px);
}

.section-heading h2 span,
.automation-intro h2 span,
.scenes-heading h2 span,
.final-cta h2 span {
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.62);
}

.section-heading > p {
  margin: 0 0 7px;
  color: rgba(255, 255, 255, 0.52);
  font-size: 15px;
  line-height: 1.9;
}

.wireless-stage {
  position: relative;
  z-index: 1;
  margin-top: 100px;
  display: grid;
  grid-template-columns: 1.08fr 0.42fr 0.8fr;
  align-items: center;
  gap: 30px;
}

.wireless-card {
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.wireless-card-side {
  transform: translateY(80px);
}

.wireless-card img {
  border-radius: 18px;
  box-shadow: var(--shadow-dark);
}

.wireless-card .card-topline {
  color: rgba(255, 255, 255, 0.39);
}

.card-topline i {
  flex: 1;
  margin: 6px 10px 0;
  border-top: 1px solid currentColor;
}

.wireless-card figcaption {
  padding: 14px 0 3px;
  color: rgba(255, 255, 255, 0.56);
  font-size: 11px;
}

.wireless-specs {
  display: grid;
  gap: 1px;
}

.spec {
  padding: 22px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.11);
}

.spec strong,
.spec span {
  display: block;
}

.spec strong {
  color: var(--cyan);
  font-family: var(--display);
  font-size: clamp(34px, 3vw, 54px);
  font-weight: 600;
  letter-spacing: -0.04em;
}

.spec span {
  color: rgba(255, 255, 255, 0.36);
  font-size: 10px;
}

.wireless-specs > p {
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.42);
  font-size: 11px;
  line-height: 1.8;
}

.automation-section {
  position: relative;
  padding: 165px 0 170px;
  color: var(--white);
  background: #050708;
  overflow: hidden;
}

.automation-grid {
  opacity: 0.7;
  mask-image: radial-gradient(circle at 50% 38%, black, transparent 70%);
}

.automation-intro {
  position: relative;
  z-index: 2;
  max-width: 930px;
  margin-inline: auto;
  text-align: center;
}

.automation-intro .section-index {
  margin-bottom: 24px;
}

.automation-intro p {
  max-width: 700px;
  margin: 34px auto 0;
  color: rgba(255, 255, 255, 0.48);
  font-size: 16px;
  line-height: 1.9;
}

.tool-rail {
  position: relative;
  z-index: 2;
  width: max-content;
  max-width: 100%;
  margin: 70px auto 0;
  padding: 14px 0;
  display: flex;
  align-items: center;
  gap: 15px;
  overflow: hidden;
  border-top: 1px solid rgba(71, 230, 255, 0.24);
  border-bottom: 1px solid rgba(71, 230, 255, 0.24);
  color: rgba(255, 255, 255, 0.5);
  background: transparent;
  font-family: var(--display);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.15em;
}

.tool-rail i {
  width: 4px;
  height: 4px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--cyan);
}

.phone-showcase {
  position: relative;
  z-index: 1;
  min-height: 900px;
  margin-top: 90px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  justify-items: center;
  gap: 30px;
}

.phone-card {
  position: relative;
  align-self: start;
  width: min(300px, 100%);
  height: max-content;
  margin: 0;
}

.phone-card img {
  aspect-ratio: 794 / 1812;
  border-radius: 0;
  object-fit: contain;
  box-shadow: none;
}

.phone-card-b {
  transform: translateY(110px);
}

.phone-card-c {
  transform: translateY(25px) rotate(2deg);
}

.automation-copy-grid {
  position: relative;
  z-index: 2;
  margin-top: 100px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
}

.automation-copy-grid article {
  min-height: 250px;
  padding: 36px 34px;
  border-right: 1px solid rgba(255, 255, 255, 0.13);
}

.automation-copy-grid article:last-child {
  border-right: 0;
}

.automation-copy-grid article > span,
.scene-number {
  color: var(--cyan);
  font-family: var(--display);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.automation-copy-grid h3 {
  margin: 68px 0 10px;
  font-family: var(--display);
  font-size: 22px;
}

.automation-copy-grid p {
  margin: 0;
  color: rgba(255, 255, 255, 0.42);
  font-size: 12px;
  line-height: 1.8;
}

.gallery-section {
  padding: 150px 0;
  background: var(--paper-bright);
  overflow: hidden;
}

.gallery-heading {
  display: grid;
  grid-template-columns: 1fr 0.45fr;
  align-items: end;
  gap: 60px;
}

.gallery-heading h2 {
  color: var(--ink);
}

.gallery-heading > p {
  margin: 0 0 8px;
  color: rgba(8, 11, 13, 0.46);
  font-size: 13px;
}

.screen-gallery {
  width: 100%;
  margin-top: 84px;
  padding: 0 max(24px, calc((100vw - 1240px) / 2));
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(250px, 330px);
  gap: 22px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-snap-type: inline mandatory;
  scrollbar-width: thin;
  scrollbar-color: var(--ink) transparent;
}

.gallery-card {
  margin: 0;
  scroll-snap-align: start;
}

.gallery-card img {
  width: 100%;
  aspect-ratio: 794 / 1812;
  border-radius: 0;
  object-fit: contain;
  object-position: center top;
  box-shadow: none;
}

.gallery-card figcaption {
  padding: 16px 3px 0;
  color: rgba(8, 11, 13, 0.48);
  font-size: 11px;
}

.privacy-section {
  min-height: 690px;
  padding: 140px 0;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 70px;
  overflow: hidden;
}

.privacy-mark {
  color: transparent;
  font-family: var(--display);
  font-size: clamp(130px, 20vw, 310px);
  font-weight: 700;
  letter-spacing: -0.1em;
  line-height: 0.7;
  writing-mode: vertical-rl;
  -webkit-text-stroke: 1px rgba(8, 11, 13, 0.15);
  transform: rotate(180deg);
}

.privacy-content h2 {
  margin-top: 24px;
}

.privacy-content > p {
  max-width: 650px;
  margin: 34px 0 0;
  color: rgba(8, 11, 13, 0.52);
  font-size: 16px;
  line-height: 1.95;
}

.privacy-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 38px;
}

.privacy-pills span {
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-family: var(--display);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.scenes-section {
  padding: 150px 0;
  color: var(--white);
  background: #0b0f11;
}

.scenes-heading {
  max-width: 900px;
}

.scenes-heading .section-index {
  margin-bottom: 22px;
}

.scene-grid {
  margin-top: 90px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.scene-card {
  min-height: 470px;
  padding: 38px;
  background: #0b0f11;
  transition: transform 260ms ease, background 260ms ease;
}

.scene-card:hover {
  z-index: 2;
  transform: translateY(-10px);
  background: #141a1d;
}

.scene-card-accent {
  color: var(--ink);
  background: var(--cyan);
}

.scene-card-accent:hover {
  background: #72edff;
}

.scene-card-accent .scene-number,
.scene-card-accent p {
  color: rgba(8, 11, 13, 0.62);
}

.scene-card h3 {
  margin: 120px 0 20px;
  font-family: var(--display);
  font-size: 34px;
  letter-spacing: -0.04em;
}

.scene-card p {
  min-height: 90px;
  margin: 0;
  color: rgba(255, 255, 255, 0.48);
  font-size: 13px;
  line-height: 1.85;
}

.scene-card ul {
  margin: 30px 0 0;
  padding: 22px 0 0;
  border-top: 1px solid currentColor;
  list-style: none;
  font-size: 11px;
  line-height: 2.1;
  opacity: 0.68;
}

.final-cta {
  position: relative;
  min-height: 760px;
  padding: 150px 24px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--ink);
  overflow: hidden;
}

.cta-grid {
  mask-image: radial-gradient(circle at 50% 50%, black, transparent 67%);
}

.cta-content {
  position: relative;
  z-index: 2;
  max-width: 1000px;
  text-align: center;
}

.cta-content > img {
  margin: 0 auto 28px;
  border-radius: 25px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.48);
}

.cta-content .eyebrow {
  justify-content: center;
}

.final-cta h2 {
  font-size: clamp(52px, 7.2vw, 108px);
}

.cta-content > p {
  margin: 30px 0 0;
  color: rgba(255, 255, 255, 0.42);
  font-size: 12px;
}

.cta-actions {
  justify-content: center;
}

.site-footer {
  padding: 36px 0;
  color: rgba(255, 255, 255, 0.42);
  background: #050708;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-inner {
  width: var(--shell);
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 20px;
  font-size: 10px;
}

.footer-inner .brand {
  color: var(--white);
}

.footer-inner > span {
  justify-self: end;
}

.lightbox {
  width: min(1100px, calc(100vw - 34px));
  max-height: calc(100vh - 34px);
  padding: 10px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 22px;
  color: var(--white);
  background: rgba(9, 12, 14, 0.9);
  box-shadow: 0 40px 120px rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(24px);
}

.lightbox::backdrop {
  background: rgba(0, 0, 0, 0.74);
  backdrop-filter: blur(8px);
}

.lightbox img {
  width: 100%;
  max-height: calc(100vh - 54px);
  border-radius: 14px;
  object-fit: contain;
}

.lightbox-close {
  position: absolute;
  z-index: 2;
  top: 20px;
  right: 20px;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  color: var(--white);
  background: rgba(0, 0, 0, 0.55);
  cursor: pointer;
}

.lightbox-close svg {
  width: 18px;
  margin: auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
}

.reveal {
  opacity: 1;
  transform: none;
}

.reveal.in-view {
  opacity: 1;
  transform: none;
}

.phone-card-b.reveal.in-view {
  transform: translateY(110px);
}

.phone-card-c.reveal.in-view {
  transform: translateY(25px) rotate(2deg);
}

@media (max-width: 1120px) {
  .hero {
    padding-top: 138px;
  }

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

  .hero-stage {
    width: min(940px, 100%);
  }

  .mirror-section {
    grid-template-columns: 1fr;
  }

  .mirror-visual {
    order: 2;
  }

  .mirror-copy {
    max-width: 750px;
  }

  .wireless-stage {
    grid-template-columns: 1fr 0.5fr;
  }

  .wireless-card-side {
    grid-column: 1 / -1;
    width: 70%;
    margin-left: auto;
    transform: translateY(20px);
  }

  .phone-showcase {
    min-height: 780px;
  }

  .scene-card {
    padding: 30px;
  }
}

@media (max-width: 820px) {
  :root {
    --shell: min(100% - 32px, 680px);
    --radius-xl: 30px;
  }

  .site-header {
    padding: 10px 0;
  }

  .nav-shell {
    grid-template-columns: 1fr auto;
  }

  .nav-actions {
    display: none;
  }

  .site-menu .nav-mobile-link {
    display: block;
  }

  .menu-toggle {
    position: relative;
    z-index: 3;
    width: 42px;
    height: 42px;
    padding: 0;
    display: grid;
    place-content: center;
    gap: 6px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 50%;
    color: var(--white);
    background: rgba(255, 255, 255, 0.06);
  }

  .menu-toggle span:not(.sr-only) {
    width: 17px;
    height: 1px;
    background: currentColor;
    transition: transform 180ms ease;
  }

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

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

  .site-menu {
    position: fixed;
    inset: -10px 0 auto;
    width: 100vw;
    height: 100dvh;
    padding: 110px 28px 40px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 28px;
    color: var(--white);
    background: #080b0d;
    font-family: var(--display);
    font-size: 30px;
    font-weight: 600;
    transform: translateX(100%);
    transition: transform 260ms ease;
  }

  .site-menu.open {
    transform: translateX(0);
  }

  .hero {
    min-height: auto;
    padding: 128px 16px 90px;
  }

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

  .hero-app-icon {
    width: 72px;
    border-radius: 19px;
  }

  .hero-stage {
    margin-top: 68px;
  }

  .manifesto {
    min-height: 520px;
    padding: 90px 0;
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .manifesto-note {
    grid-column: 1;
  }

  .mirror-section {
    padding: 70px 0 110px;
    gap: 55px;
  }

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

  .capability-card:nth-child(2) {
    border-right: 0;
  }

  .capability-card:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .android-compat {
    grid-template-columns: 1fr;
  }

  .automation-copy-grid article:nth-child(2) {
    border-right: 0;
  }

  .automation-copy-grid article:last-child {
    grid-column: 1 / -1;
    border-top: 1px solid rgba(255, 255, 255, 0.13);
  }

  .section-heading,
  .gallery-heading {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .wireless-section,
  .automation-section,
  .gallery-section,
  .scenes-section {
    padding: 110px 0;
  }

  .wireless-stage {
    margin-top: 70px;
    grid-template-columns: 1fr;
  }

  .wireless-specs {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }

  .spec {
    padding: 18px 0;
  }

  .wireless-specs > p {
    grid-column: 1 / -1;
  }

  .wireless-card-side {
    grid-column: auto;
    width: 88%;
    margin-left: auto;
  }

  .phone-showcase {
    min-height: 690px;
    margin-top: 60px;
    gap: 12px;
  }

  .phone-card {
    border-radius: 28px;
  }

  .phone-card img {
    border-radius: 21px;
  }

  .phone-card-b.reveal.in-view {
    transform: translateY(60px);
  }

  .phone-card-c.reveal.in-view {
    transform: translateY(18px) rotate(2deg);
  }

  .privacy-section {
    min-height: 620px;
    padding: 100px 0;
    grid-template-columns: 0.35fr 1fr;
    gap: 28px;
  }

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

  .scene-card {
    min-height: 400px;
  }

  .scene-card h3 {
    margin-top: 80px;
  }

  .final-cta {
    min-height: 680px;
    padding: 110px 20px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-inner .brand,
  .footer-inner > span {
    justify-self: center;
  }
}

@media (max-width: 560px) {
  .hero-actions,
  .cta-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .hero-meta {
    gap: 10px;
    font-size: 8px;
  }

  .hero-meta span + span::before {
    margin-right: 10px;
  }

  .display-line {
    font-size: 44px;
  }

  .mirror-copy h2,
  .section-heading h2,
  .automation-intro h2,
  .scenes-heading h2,
  .gallery-heading h2,
  .privacy-content h2 {
    font-size: 45px;
  }

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

  .capability-card {
    min-height: 230px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .capability-card h3 {
    margin-top: 48px;
  }

  .android-compat {
    padding: 28px 24px;
    gap: 26px;
  }

  .android-compat-specs {
    grid-template-columns: 1fr;
  }

  .android-compat-specs span,
  .android-compat-specs span:nth-child(odd) {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .android-compat-specs span:last-child {
    border-bottom: 0;
  }

  .automation-copy-grid article,
  .automation-copy-grid article:nth-child(2) {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.13);
  }

  .automation-copy-grid article:last-child {
    grid-column: auto;
  }

  .wireless-specs {
    grid-template-columns: 1fr;
  }

  .wireless-specs > p {
    grid-column: auto;
  }

  .wireless-card-side {
    width: 100%;
  }

  .tool-rail {
    width: 100%;
    justify-content: flex-start;
    overflow-x: auto;
  }

  .phone-showcase {
    min-height: 650px;
    grid-template-columns: repeat(3, 72%);
    justify-content: start;
    overflow-x: auto;
    scroll-snap-type: inline mandatory;
  }

  .phone-card {
    width: 100%;
    scroll-snap-align: center;
  }

  .phone-card-b.reveal.in-view,
  .phone-card-c.reveal.in-view {
    transform: none;
  }

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

  .privacy-mark {
    display: none;
  }

  .scene-card {
    min-height: 360px;
    padding: 28px;
  }

  .scene-card h3 {
    margin-top: 65px;
  }

}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
}
