@charset "UTF-8";
:root {
  --bg: #080a09;
  --surface: #101310;
  --ink: #f0f2eb;
  --muted: #92998d;
  --acid: #c6fc86;
  --violet: #baacf9;
  --line: #ffffff18;
  --mono: ui-monospace, SFMono-Regular, Consolas, monospace;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}
* {
  box-sizing: border-box;
}
html {
  overflow-x: clip;
  scroll-behavior: smooth;
  scroll-padding-top: 95px;
}
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family:
    Inter,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  font: inherit;
  color: inherit;
  cursor: pointer;
}
button,
a {
  -webkit-tap-highlight-color: transparent;
}
button:focus-visible,
a:focus-visible,
summary:focus-visible {
  outline: 2px solid var(--acid);
  outline-offset: 6px;
}
img {
  max-width: 100%;
  display: block;
}
h1,
h2,
h3,
p {
  margin: 0;
}
h1,
h2,
h3 {
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 1.03;
}
em {
  font-style: normal;
  color: var(--acid);
}
.muted {
  color: #737d70;
}
.wrap {
  width: min(1280px, calc(100% - 100px));
  margin: auto;
}
.eyebrow {
  font: 11px/1.6 var(--mono);
  letter-spacing: 0.15em;
  color: var(--acid);
  display: flex;
  gap: 10px;
  align-items: center;
}
.live-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--acid);
  box-shadow: 0 0 13px #c6fc86aa;
  flex-shrink: 0;
}
.text-link {
  display: inline-flex;
  gap: 30px;
  align-items: center;
  font-size: 14px;
  border-bottom: 1px solid #c6fc8666;
  padding: 0 0 10px;
}
.text-link span {
  color: var(--acid);
  transition: transform 0.3s;
}
.text-link:hover span {
  transform: translate(3px, -3px);
}
.skip {
  position: fixed;
  top: -70px;
  left: 20px;
  z-index: 1000;
  padding: 15px;
  background: var(--acid);
  color: var(--bg);
}
.skip:focus {
  top: 10px;
}
.nav {
  height: 82px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 42px;
  background: linear-gradient(#080a09e8, #080a0933);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid #ffffff0c;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 28px;
  font-weight: 650;
  letter-spacing: -1.5px;
}
.brand-note {
  font: 9px var(--mono);
  letter-spacing: 0.12em;
  color: var(--muted);
  margin-left: 14px;
}
.brand-mark {
  height: 24px;
  display: flex;
  gap: 3px;
  align-items: end;
}
.brand-mark i {
  width: 4px;
  background: var(--acid);
  border-radius: 3px;
  height: 12px;
}
.brand-mark i:nth-child(2) {
  height: 18px;
}
.brand-mark i:nth-child(3) {
  height: 24px;
}
.brand-mark i:nth-child(4) {
  height: 16px;
}
.nav nav {
  display: flex;
  gap: 30px;
  font-size: 13px;
  color: #b1b8ac;
}
.nav nav a:hover {
  color: var(--acid);
}
.nav-download {
  border: 1px solid #ffffff35;
  padding: 10px 15px;
  border-radius: 4px;
  font-size: 12px;
  display: flex;
  gap: 28px;
}
.nav-download:hover {
  background: var(--acid);
  color: #080a09;
}
/* The canvas contains one fixed room; only PerspectiveCamera moves. */
.journey {
  height: 480svh;
  position: relative;
}
.universe-stage {
  height: 100svh;
  min-height: 600px;
  position: sticky;
  top: 0;
  overflow: hidden;
  isolation: isolate;
  background: #080a09;
}
#camera-scene {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
}
.scene-fallback {
  position: absolute;
  inset: 0;
  background: url("assets/mac-workspace.jpg") center/cover;
}
.scene-ready .scene-fallback {
  display: none;
}
.scene-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    #080a0955,
    transparent 30%,
    transparent 80%,
    #080a09
  );
  pointer-events: none;
}
.stage-copy {
  position: absolute;
  z-index: 3;
  left: 8%;
  top: 29%;
  width: 84%;
  transform-origin: center;
}
.stage-copy h1,
.stage-copy h2 {
  font-size: clamp(60px, 7.5vw, 120px);
  line-height: 0.97;
  letter-spacing: -0.065em;
  margin: 24px 0;
}
.stage-copy p:not(.eyebrow) {
  color: #b9c5b8;
  font-size: 17px;
  line-height: 1.6;
}
.stage-copy .text-link {
  display: inline-flex;
  margin-top: 20px;
}
.copy-two {
  top: 12%;
  opacity: 0;
  visibility: hidden;
}
.copy-two h2 {
  font-size: clamp(44px, 5vw, 76px);
}
.universe-foot {
  position: absolute;
  bottom: 48px;
  left: 5%;
  width: 90%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 6;
}
.scene-label,
.scroll-cue,
.motion-toggle {
  font: 10px var(--mono);
  letter-spacing: 0.1em;
}
.scroll-cue {
  display: flex;
  gap: 12px;
  align-items: center;
}
.motion-toggle {
  border: 1px solid #ffffff35;
  background: #080a0966;
  border-radius: 30px;
  padding: 10px 15px;
  color: #ddd;
  cursor: pointer;
}
.journey-progress {
  position: absolute;
  bottom: 16px;
  left: 5%;
  width: 90%;
  display: flex;
  align-items: center;
  gap: 20px;
  font: 8px var(--mono);
  color: #919d8b;
  z-index: 6;
}
.journey-progress i {
  flex: 1;
  height: 1px;
  background: #ffffff25;
}
.journey-progress b {
  display: block;
  height: 1px;
  background: var(--acid);
  width: 0;
}
/* The universe resolves into the actual product. */
.arrival {
  padding-top: 145px;
  padding-bottom: 60px;
}
.arrival-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 50px;
  margin-top: 32px;
}
.arrival h2,
.numbers-section h2,
.network-heading h2,
.menu-copy h2 {
  font-size: clamp(42px, 5.6vw, 78px);
}
.arrival-heading > p {
  max-width: 340px;
  font-size: 17px;
  line-height: 1.7;
  color: #abb2a3;
  margin-bottom: 5px;
}
.spec-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin-top: 65px;
  padding: 28px 0;
}
.spec-strip span {
  font-size: 12px;
  color: #84907b;
}
.spec-strip b {
  display: block;
  font-weight: 450;
  font-size: 15px;
  color: #d6ddce;
  margin-bottom: 10px;
}
.product-story {
  display: grid;
  grid-template-columns: 34% 62%;
  gap: 4%;
  align-items: start;
  padding-bottom: 50px;
}
.story-step {
  min-height: 76vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 50px 30px 50px 0;
}
.story-step h3 {
  font-size: clamp(36px, 4vw, 58px);
  margin: 20px 0;
}
.story-step > p:not(.eyebrow) {
  color: #a3ac9a;
  font-size: 16px;
  line-height: 1.8;
  max-width: 350px;
}
.small-tag {
  font: 9px/1.6 var(--mono);
  letter-spacing: 0.1em;
  color: #6d795f;
  margin-top: 25px;
}
.story-visual {
  position: sticky;
  top: 25vh;
  padding: 32px 0;
  perspective: 1200px;
  isolation: isolate;
}
.shot-glow {
  position: absolute;
  inset: -30%;
  z-index: -1;
  background: radial-gradient(ellipse, #b2e67212, transparent 60%);
  pointer-events: none;
}
.app-frame {
  border: 1px solid #606b5744;
  border-radius: 11px;
  overflow: hidden;
  background: #171917;
  box-shadow:
    0 30px 100px #000b,
    0 0 60px #b8f27b06;
  transform: rotateY(-5deg) rotateX(3deg);
  transition: transform 1s var(--ease);
}
.story-visual:hover .app-frame {
  transform: rotateY(0) rotateX(0);
}
.window-chrome {
  height: 30px;
  background: #252924;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 12px;
  color: #9aa290;
  font-size: 10px;
}
.traffic {
  display: flex;
  gap: 5px;
}
.traffic i {
  width: 7px;
  height: 7px;
  background: #fa6059;
  border-radius: 50%;
}
.traffic i:nth-child(2) {
  background: #efc04b;
}
.traffic i:nth-child(3) {
  background: #5bbe54;
}
.native-label {
  font: 7px var(--mono);
  letter-spacing: 0.08em;
  color: #717a67;
}
.shot-stack {
  position: relative;
  aspect-ratio: 980/620;
  background: #1c1c1c;
  overflow: auto;
  scrollbar-width: thin;
  scrollbar-color: #61734d #191c16;
}
.shot-stack img {
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.7s,
    visibility 0.7s;
  pointer-events: none;
}
.shot-stack img.active {
  position: relative;
  opacity: 1;
  visibility: visible;
}
.shot-selector {
  display: flex;
  justify-content: center;
  gap: 26px;
  margin-top: 24px;
}
.shot-selector button {
  font: 10px var(--mono);
  border: 0;
  border-bottom: 1px solid transparent;
  background: none;
  padding: 8px 0;
  color: #79846d;
}
.shot-selector button[aria-pressed="true"] {
  color: var(--acid);
  border-color: var(--acid);
}
.image-note {
  font: 10px/1.6 var(--mono);
  text-align: center;
  margin-top: 15px;
  color: #67715e;
}
.numbers-section {
  padding: 130px 0;
  border-top: 1px solid var(--line);
  background: radial-gradient(ellipse at 90% 0, #8d71ac0c, transparent 60%);
}
.numbers-section h2 {
  margin-top: 28px;
}
.metric-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
  margin-top: 65px;
}
.metric {
  border-top: 1px solid #e3f1d433;
  padding-top: 35px;
}
.metric h3 {
  font-size: 26px;
  margin: 30px 0 18px;
  letter-spacing: -0.03em;
}
.metric p {
  font-size: 15px;
  line-height: 1.75;
  color: #9ba68f;
  max-width: 320px;
}
.metric code {
  display: inline-block;
  font: 10px var(--mono);
  color: var(--acid);
  margin-top: 25px;
  letter-spacing: 0.04em;
}
.metric-icon {
  height: 42px;
  display: flex;
  align-items: center;
  gap: 5px;
}
.wave i {
  width: 4px;
  height: 12px;
  background: var(--acid);
  border-radius: 2px;
  animation: wave 1.8s ease-in-out infinite;
  animation-delay: calc(var(--i, 1) * -0.2s);
}
.wave i:nth-child(2n) {
  --i: 2;
  height: 32px;
}
.wave i:nth-child(3n) {
  --i: 3;
  height: 23px;
}
.wave i:nth-child(4n) {
  --i: 4;
  height: 40px;
}
.latency i {
  width: 32px;
  height: 32px;
  border: 1px solid var(--violet);
  border-radius: 50%;
  margin-left: -17px;
  opacity: 0.4;
  animation: pulse 3s infinite;
}
.latency i:first-child {
  margin-left: 0;
}
.latency i:last-child {
  opacity: 1;
  background: #baacf920;
}
.memory i {
  height: 30px;
  width: 12px;
  background: #c6fc8622;
  border: 1px solid #c6fc8644;
}
.memory i:nth-child(-n + 3) {
  background: #c6fc8688;
}
.network-section {
  padding-top: 135px;
  padding-bottom: 130px;
  border-top: 1px solid var(--line);
}
.network-heading {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  column-gap: 80px;
}
.network-heading .eyebrow {
  grid-column: 1/-1;
  margin-bottom: 30px;
}
.network-heading > p:last-child {
  font-size: 17px;
  line-height: 1.8;
  color: #a6af9d;
  max-width: 430px;
  align-self: end;
}
.network-map {
  height: 430px;
  position: relative;
  max-width: 1000px;
  margin: 40px auto 0;
  background: radial-gradient(ellipse at 50% 30%, #9eed6020, transparent 45%);
}
.network-map svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  stroke-width: 1;
}
.network-packets {
  stroke-dasharray: 12 140;
  animation: flow 7s linear infinite;
}
.host-chip {
  position: absolute;
  left: 50%;
  top: 10%;
  transform: translateX(-50%) rotateX(12deg);
  width: 180px;
  height: 145px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 13px;
  border: 1px solid #a6cc6e55;
  border-radius: 16px;
  background: linear-gradient(140deg, #252e1f, #12170f);
  box-shadow:
    0 14px 0 -4px #1b2317,
    0 15px 0 -4px #a8c48333,
    0 0 65px #c6fc8611;
}
.host-chip strong {
  font-size: 17px;
  font-weight: 450;
}
.host-chip > span:last-child {
  font: 8px var(--mono);
  letter-spacing: 0.12em;
  color: #93aa7c;
}
.host-chip .live-dot {
  width: 4px;
  height: 4px;
  margin-right: 4px;
}
.network-client {
  position: absolute;
  top: 79%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 15px;
  gap: 7px;
}
.network-client > span {
  font-size: 26px;
  color: #dae9cc;
  margin-bottom: 7px;
  line-height: 1;
}
.network-client small {
  font: 8px var(--mono);
  letter-spacing: 0.08em;
  color: #738365;
}
.windows {
  left: 16%;
}
.linux {
  left: 50%;
}
.mac {
  left: 84%;
}
.network-instructions {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 28px 0;
  gap: 30px;
  margin-top: 30px;
}
.network-instructions > div {
  display: flex;
  gap: 20px;
}
.network-instructions > div > span {
  font: 11px var(--mono);
  color: var(--acid);
  padding-top: 4px;
}
.network-instructions p {
  font-size: 13px;
  color: #8d9981;
  line-height: 1.8;
}
.network-instructions b {
  font-weight: 400;
  color: #d0dcc4;
}
.network-note {
  font-size: 12px;
  color: #79876d;
  max-width: 840px;
  line-height: 1.8;
  margin: 24px 0;
}
.network-section .text-link {
  font-size: 12px;
}
.menubar-section {
  background: #0e120d;
  border-block: 1px solid var(--line);
  padding: 120px 0;
  overflow: hidden;
}
.menu-layout {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: center;
}
.menu-copy .eyebrow {
  margin-bottom: 28px;
}
.menu-copy h2 {
  font-size: clamp(38px, 4.5vw, 64px);
}
.menu-copy > p:not(.eyebrow) {
  font-size: 16px;
  color: #95a288;
  line-height: 1.8;
  max-width: 450px;
  margin-top: 24px;
}
.menu-composition {
  perspective: 1000px;
  position: relative;
  transform: rotateY(-7deg) rotateZ(2deg);
}
.menu-strip {
  height: 34px;
  background: linear-gradient(#3a4036, #22291c);
  border: 1px solid #74836355;
  box-shadow: 0 15px 40px #0007;
  display: flex;
  gap: 16px;
  align-items: center;
  padding: 0 13px;
  border-radius: 6px;
  color: #c0ccae;
  font-size: 10px;
}
.menu-strip > span:first-child {
  font-weight: 600;
}
.real-status {
  height: 26px;
  margin-left: auto;
  display: flex;
  align-items: center;
  background: #080b0866;
  border-radius: 3px;
  padding: 0 4px;
}
.real-status img {
  width: 94px;
}
.panel-arrow {
  width: 9px;
  height: 9px;
  background: #1c1c1c;
  transform: rotate(45deg);
  position: relative;
  left: 72%;
  margin-top: 10px;
  border-top: 1px solid #ffffff33;
  border-left: 1px solid #ffffff33;
}
.menu-panel {
  width: 320px;
  margin: -5px 0 0 auto;
  border: 1px solid #a6b89033;
  border-radius: 9px;
  box-shadow: 0 30px 70px #0008;
}
.menu-composition .image-note {
  text-align: right;
}
.download-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  text-align: center;
  padding: 150px 0 95px;
}
.download-content > .eyebrow {
  justify-content: center;
}
.download-section h2 {
  font-size: clamp(65px, 10vw, 140px);
  letter-spacing: -0.07em;
  margin-top: 32px;
}
.download-content > p:not(.eyebrow):not(.download-meta) {
  font-size: 18px;
  color: #a5b297;
  line-height: 1.8;
  margin-top: 30px;
}
.download-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 35px;
}
.button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 45px;
  border: 1px solid #ffffff25;
  border-radius: 4px;
  font-size: 14px;
  padding: 17px 22px;
  transition:
    transform 0.25s,
    background 0.25s;
}
.button:hover {
  transform: translateY(-3px);
}
.button.primary {
  background: var(--acid);
  color: #17200e;
  border-color: var(--acid);
}
.button.primary:hover {
  background: #d7ffac;
}
.button.secondary {
  background: #0c100bb8;
}
.button span {
  font-size: 18px;
}
.download-meta {
  font: 9px var(--mono);
  letter-spacing: 0.12em;
  color: #68785b;
  margin-top: 25px;
}
.download-orbit {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  perspective: 600px;
  opacity: 0.35;
}
.download-orbit i {
  position: absolute;
  left: 50%;
  top: 280px;
  width: 850px;
  height: 850px;
  border: 1px solid #a4dc762c;
  border-radius: 50%;
  transform: translate(-50%, -50%) rotateX(65deg) rotateY(-14deg);
}
.download-orbit i:nth-child(2) {
  width: 1050px;
  height: 1050px;
  transform: translate(-50%, -50%) rotateX(70deg) rotateY(20deg);
  border-color: #baacf933;
}
.download-orbit i:nth-child(3) {
  width: 1400px;
  height: 1400px;
}
.install-details {
  text-align: left;
  max-width: 760px;
  margin: 90px auto 0;
}
.install-details details {
  border-bottom: 1px solid #ffffff20;
}
.install-details summary {
  cursor: pointer;
  list-style: none;
  padding: 23px 0;
  font-size: 15px;
  display: flex;
  justify-content: space-between;
}
.install-details summary::-webkit-details-marker {
  display: none;
}
.install-details summary span {
  color: var(--acid);
}
.install-details details[open] summary span {
  transform: rotate(45deg);
}
.install-details p {
  font-size: 14px;
  color: #9eaa91;
  line-height: 1.8;
  margin: 0 0 20px;
}
.install-details a {
  text-decoration: underline;
  text-underline-offset: 3px;
  color: #d0e7b8;
}
pre {
  background: #141a10;
  border: 1px solid #ffffff12;
  overflow: auto;
  padding: 20px;
  margin: 0 0 20px;
  font: 12px/1.8 var(--mono);
  color: var(--acid);
}
footer {
  padding-top: 40px;
  padding-bottom: 35px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
}
footer > div {
  display: flex;
  align-items: center;
  gap: 25px;
  font-size: 12px;
  color: #9ba88e;
}
footer > div > span {
  color: #56634a;
}
footer > p {
  flex: 1 0 100%;
  font-size: 10px;
  line-height: 1.8;
  color: #55614b;
}
.reveal {
  opacity: 1;
  transform: none;
}
.js .reveal {
  opacity: 0;
  transform: translateY(35px);
  transition:
    opacity 1s var(--ease),
    transform 1s var(--ease);
}
.js .reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
@keyframes flow {
  to {
    stroke-dashoffset: -608;
  }
}
@keyframes wave {
  50% {
    transform: scaleY(0.4);
    opacity: 0.4;
  }
}
@keyframes pulse {
  50% {
    opacity: 0.3;
    transform: translateX(6px);
  }
}
@keyframes cue {
  50% {
    transform: scaleX(0.5);
    opacity: 0.4;
  }
}
@media (min-width: 1600px) {
  .hardware-space {
    width: 680px;
    height: 305px;
  }
  .stage-copy {
    top: 16%;
  }
}
@media (max-width: 1000px) {
  .wrap {
    width: calc(100% - 60px);
  }
  .nav {
    padding: 0 28px;
  }
  .brand-note {
    display: none;
  }
  .hardware-space {
    width: 58vw;
    height: 26vw;
    top: 70%;
  }
  .universe-foot {
    left: 25px;
    right: 25px;
  }
  .scroll-cue {
    display: none;
  }
  .product-story {
    grid-template-columns: 36% 60%;
  }
  .story-step {
    padding-right: 0;
  }
  .story-step h3 {
    font-size: 39px;
  }
  .menu-layout {
    gap: 35px;
  }
  .metric-grid {
    gap: 25px;
  }
  .network-heading {
    gap: 35px;
  }
  .network-instructions {
    gap: 20px;
  }
  .network-instructions > div {
    gap: 12px;
  }
}
@media (max-width: 700px) {
  html {
    scroll-padding-top: 80px;
  }
  .wrap {
    width: calc(100% - 40px);
  }
  .nav {
    height: 66px;
    padding: 0 20px;
  }
  .brand {
    font-size: 25px;
  }
  .nav nav {
    gap: 16px;
    font-size: 11px;
  }
  .nav nav a:first-child,
  .nav nav a:nth-child(2) {
    display: none;
  }
  .nav-download {
    padding: 8px 10px;
    font-size: 11px;
    gap: 15px;
  }
  .journey {
    height: 260svh;
    min-height: 1500px;
  }
  .universe-stage {
    min-height: 620px;
  }
  .stage-copy {
    top: 19%;
    padding: 0 15px;
  }
  .stage-copy h1,
  .stage-copy h2 {
    font-size: clamp(39px, 9.5vw, 66px);
    letter-spacing: -0.06em;
  }
  .stage-copy .eyebrow {
    font-size: 8px;
    letter-spacing: 0.12em;
    margin-bottom: 18px;
  }
  .stage-copy p:not(.eyebrow) {
    font-size: 13px;
    margin-top: 18px;
  }
  .stage-copy .text-link {
    font-size: 11px;
    margin-top: 18px;
  }
  .hardware-space {
    width: 80vw;
    height: 36vw;
    top: 71%;
  }
  .hardware-caption {
    bottom: -35px;
    font-size: 8px;
  }
  .universe-foot {
    left: 15px;
    right: 15px;
    bottom: 45px;
  }
  .device-picker button {
    font-size: 9px;
    padding: 7px 9px;
  }
  .motion-toggle {
    font-size: 9px;
  }
  .journey-progress {
    left: 20px;
    right: 20px;
    bottom: 18px;
    font-size: 6px;
    gap: 12px;
  }
  .arrival {
    padding-top: 85px;
    padding-bottom: 20px;
  }
  .arrival-heading {
    display: block;
    margin-top: 25px;
  }
  .arrival h2,
  .numbers-section h2,
  .network-heading h2 {
    font-size: 46px;
  }
  .arrival-heading > p {
    margin-top: 28px;
    font-size: 15px;
    max-width: 100%;
  }
  .spec-strip {
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-top: 35px;
    padding: 25px 0;
  }
  .spec-strip b {
    font-size: 13px;
  }
  .spec-strip span {
    font-size: 11px;
  }
  .product-story {
    display: flex;
    flex-direction: column;
    padding-bottom: 70px;
  }
  .story-text {
    display: contents;
  }
  .story-step {
    min-height: 0;
    padding: 55px 0 10px;
  }
  .story-step h3 {
    font-size: 42px;
  }
  .story-step > p:not(.eyebrow) {
    max-width: 100%;
    font-size: 15px;
  }
  .story-visual {
    position: relative;
    top: auto;
    width: 100%;
    order: 4;
    padding-top: 35px;
  }
  .app-frame {
    transform: none;
  }
  .shot-selector {
    gap: 20px;
  }
  .shot-selector button {
    font-size: 9px;
  }
  .small-tag {
    font-size: 8px;
    margin-top: 15px;
  }
  .numbers-section {
    padding: 75px 0;
  }
  .metric-grid {
    grid-template-columns: 1fr;
    gap: 35px;
    margin-top: 40px;
  }
  .metric {
    padding-top: 25px;
  }
  .metric p {
    max-width: 100%;
  }
  .metric h3 {
    margin-top: 20px;
  }
  .metric-icon {
    height: 32px;
  }
  .network-section {
    padding-top: 75px;
    padding-bottom: 75px;
  }
  .network-heading {
    display: block;
  }
  .network-heading .eyebrow {
    margin-bottom: 25px;
  }
  .network-heading > p:last-child {
    font-size: 15px;
    line-height: 1.8;
    margin-top: 24px;
  }
  .network-map {
    height: 335px;
    margin-top: 25px;
  }
  .host-chip {
    width: 145px;
    height: 120px;
  }
  .network-client {
    font-size: 12px;
  }
  .network-client small {
    font-size: 6px;
  }
  .network-client > span {
    font-size: 22px;
  }
  .network-instructions {
    flex-direction: column;
    gap: 18px;
    margin-top: 35px;
  }
  .network-instructions p {
    font-size: 13px;
  }
  .network-note {
    font-size: 11px;
  }
  .network-section .text-link {
    font-size: 11px;
    gap: 10px;
    line-height: 1.6;
  }
  .menubar-section {
    padding: 75px 0;
  }
  .menu-layout {
    grid-template-columns: 1fr;
    gap: 45px;
  }
  .menu-copy h2 {
    font-size: 43px;
  }
  .menu-copy > p:not(.eyebrow) {
    font-size: 15px;
  }
  .menu-composition {
    max-width: 440px;
    width: 100%;
    margin: auto;
    transform: none;
  }
  .menu-panel {
    width: 290px;
  }
  .download-section {
    padding: 90px 0 60px;
  }
  .download-section h2 {
    font-size: 66px;
  }
  .download-content > p:not(.eyebrow):not(.download-meta) {
    font-size: 15px;
  }
  .download-actions {
    flex-direction: column;
    max-width: 320px;
    margin: 30px auto 0;
  }
  .download-meta {
    font-size: 7px;
    line-height: 1.8;
  }
  .install-details {
    margin-top: 55px;
  }
  footer {
    gap: 25px;
  }
  footer > div {
    flex-wrap: wrap;
    gap: 20px;
  }
  footer > p {
    font-size: 9px;
  }
  .eyebrow {
    font-size: 9px;
  }
  .download-orbit {
    opacity: 0.2;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}
body.reduced .journey {
  height: 100svh;
  min-height: 680px;
}
body.reduced .copy-two,
body.reduced .copy-three {
  display: none;
}
body.reduced * {
  animation: none !important;
  scroll-behavior: auto !important;
  transition: none !important;
}
body.reduced .reveal {
  opacity: 1;
  transform: none;
}
body.reduced .universe-stage {
  position: relative;
}
body.reduced .journey-progress,
body.reduced .scroll-line {
  display: none;
}
@media print {
  .nav,
  .journey,
  .network-map,
  .download-orbit,
  .grain {
    display: none;
  }
  body {
    background: white;
    color: black;
  }
  .wrap {
    width: 100%;
  }
  .reveal {
    opacity: 1 !important;
    transform: none !important;
  }
  .story-visual {
    position: relative;
    top: auto;
  }
  .story-step {
    min-height: 0;
  }
  .product-story {
    display: block;
  }
  p,
  .muted {
    color: #333 !important;
  }
}

/* Final art direction overrides shared small-screen type rules. */
@media (max-width: 700px) {
  .journey {
    height: 380svh;
    min-height: 0;
  }
  .universe-stage {
    min-height: 580px;
  }
  .stage-copy {
    top: 26%;
    left: 7%;
    width: 86%;
  }
  .stage-copy h1 {
    font-size: clamp(48px, 12vw, 80px);
  }
  .copy-two {
    top: 15%;
  }
  .copy-two h2 {
    font-size: 46px;
  }
  .universe-foot {
    bottom: 40px;
    flex-wrap: wrap;
    gap: 14px;
  }
  .scene-label {
    display: none;
  }
  .scroll-cue {
    font-size: 8px;
  }
  .motion-toggle {
    font-size: 9px;
  }
}
body.reduced .journey {
  height: 100svh;
  min-height: 600px;
}
body.reduced .copy-one {
  top: 15%;
}
body.reduced .copy-one h1 {
  font-size: clamp(44px, 6vw, 80px);
}
body.reduced .hero-description,
body.reduced .copy-one .eyebrow {
  display: none;
}

@media (max-width: 700px) {
  .scroll-cue {
    display: flex;
  }
  .room-photo {
    mask-image: linear-gradient(transparent, black 12%, black 90%, transparent);
  }
}

.screen-app {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  opacity: 0;
}
.portal-glow {
  background: linear-gradient(
    115deg,
    transparent 25%,
    #c2e9db44 48%,
    transparent 70%
  );
  opacity: 0;
}
body.reduced .screen-app {
  opacity: 1 !important;
}
@media (max-width: 700px) {
  .scene-label {
    display: block;
    width: 100%;
    font-size: 8px;
    color: var(--acid);
  }
}

@media (max-width: 700px) {
  .journey {
    height: 460svh;
  }
}

.research-demo { margin: 36px 0; padding: 20px; border: 1px solid #34323f; border-radius: 20px; background: #101117; }
.research-demo video { display:block; width:100%; max-height:78vh; border-radius:12px; background:#101117; }
.research-demo figcaption,.research-gallery figcaption { color:#bcb4d9; font-size:12px; line-height:1.6; padding-top:16px; }
.research-demo p { max-width:800px; color:#aeb1bf; line-height:1.7; }
.research-gallery { display:grid; grid-template-columns:1fr 1fr; gap:24px; }
.research-gallery figure { margin:0; min-width:0; }
.research-gallery img { width:100%; height:auto; border-radius:16px; }
@media(max-width:700px) { .research-gallery {grid-template-columns:1fr;} .research-demo {padding:10px;} }

/* Hide the photographic fallback from the very first paint until a rendered frame exists. */
.hero-loader { display:none; }
.hero-loading .hero-loader { display:flex; position:absolute; inset:0; z-index:6; flex-direction:column; align-items:center; justify-content:center; gap:18px; background:#080a09; color:#c5c9c3; font-size:14px; }
.hero-loader strong { font-size:26px; color:#fff; letter-spacing:-.04em; }
.hero-loader a { margin-top:12px; color:#ccff7a; }
.hero-loader-orbit { width:38px; height:38px; border:2px solid #ccff7a22; border-top-color:#ccff7a; border-radius:50%; animation:hero-spin 1.2s linear infinite; }
.hero-loading .scene-fallback,.hero-loading #camera-scene { visibility:hidden; }
.hero-loaded #camera-scene { animation:hero-arrive .45s ease-out both; }
.hero-failed #camera-scene { display:none; }
.hero-failed .journey { height:100svh; min-height:600px; }
.hero-failed .motion-toggle,.hero-failed .journey-progress { display:none; }
@keyframes hero-spin { to { transform:rotate(360deg); } }
@keyframes hero-arrive { from { opacity:0; } to { opacity:1; } }
@media(prefers-reduced-motion:reduce) { .hero-loader-orbit,.hero-loaded #camera-scene { animation:none; } }
