:root {
  --bg: #02050b;
  --panel: #07111e;
  --panel-2: #0a1525;
  --line: rgba(100, 155, 225, .22);
  --text: #f7f9ff;
  --muted: #8fa4be;
  --blue: #21baff;
  --cyan: #00ecd8;
  --green: #82ff17;
  --pink: #ff3fbd;
  --purple: #a94dff;
  --orange: #ff7d17;
  --safe-top: env(safe-area-inset-top, 0px);
  --safe-right: env(safe-area-inset-right, 0px);
  --safe-bottom: env(safe-area-inset-bottom, 0px);
  --safe-left: env(safe-area-inset-left, 0px);
}

* {
  box-sizing: border-box;
}

html {
  margin: 0;
  background: var(--bg);
  scroll-behavior: smooth;
  scroll-snap-type: y mandatory;
  scrollbar-width: none;
}

html::-webkit-scrollbar {
  display: none;
}

body {
  width: 100%;
  min-width: 0;
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 45% 20%, rgba(18, 88, 152, .11), transparent 34%),
    var(--bg);
  color: var(--text);
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
}

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

button,
a {
  font: inherit;
}

.deck-header {
  position: fixed;
  z-index: 100;
  left: 0;
  right: 0;
  top: 0;
  height: 63px;
  padding:
    var(--safe-top)
    max(26px, var(--safe-right))
    0
    max(26px, var(--safe-left));
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  border-bottom: 1px solid rgba(104, 158, 227, .12);
  background: linear-gradient(
    to bottom,
    rgba(2, 5, 11, .96),
    rgba(2, 5, 11, .72)
  );
  backdrop-filter: blur(17px);
}

.deck-brand {
  color: white;
  text-decoration: none;
  font-size: 17px;
  font-weight: 950;
  letter-spacing: .19em;
}

.deck-brand span {
  color: var(--green);
  font-size: 9px;
}

.deck-context {
  color: #8cb6e6;
  font-size: 8px;
  font-weight: 850;
  letter-spacing: .19em;
  text-align: center;
}

.deck-context i,
.raise-copy footer i {
  display: inline-block;
  width: 3px;
  height: 3px;
  margin: 0 10px;
  border-radius: 50%;
  background: var(--blue);
  vertical-align: middle;
}

.deck-status {
  justify-self: end;
  color: #8fa7c1;
  font-size: 7px;
  font-weight: 850;
  letter-spacing: .16em;
}

.deck-status span {
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 15px var(--green);
}

.deck-progress {
  position: fixed;
  z-index: 110;
  right: max(17px, var(--safe-right));
  top: 50%;
  display: grid;
  gap: 9px;
  transform: translateY(-50%);
}

.deck-progress button {
  width: 4px;
  height: 18px;
  padding: 0;
  border: 0;
  border-radius: 4px;
  background: rgba(139, 168, 202, .3);
  cursor: pointer;
  transition:
    height .25s ease,
    background .25s ease,
    box-shadow .25s ease;
}

.deck-progress button.active {
  height: 37px;
  background: var(--blue);
  box-shadow: 0 0 17px rgba(33, 186, 255, .75);
}

#deck {
  width: 100%;
}

.scene {
  position: relative;
  width: 100%;
  min-height: 100svh;
  padding:
    max(92px, calc(70px + var(--safe-top)))
    max(7vw, calc(42px + var(--safe-right)))
    max(54px, calc(34px + var(--safe-bottom)))
    max(7vw, calc(42px + var(--safe-left)));
  display: grid;
  align-items: center;
  gap: clamp(36px, 5vw, 90px);
  overflow: hidden;
  scroll-snap-align: start;
  scroll-snap-stop: always;
  isolation: isolate;
}

.scene::before {
  content: "";
  position: absolute;
  z-index: -2;
  inset: 0;
  background:
    linear-gradient(rgba(83, 132, 192, .035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(83, 132, 192, .035) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, transparent, black 18%, black 82%, transparent);
}

.scene::after {
  content: "";
  position: absolute;
  z-index: -1;
  width: 42vw;
  height: 42vw;
  right: -17vw;
  top: 15%;
  border-radius: 50%;
  background: rgba(32, 120, 255, .08);
  filter: blur(90px);
  pointer-events: none;
}

.scene-copy {
  width: min(100%, 620px);
}

.eyebrow {
  margin: 0 0 22px;
  color: var(--blue);
  font-size: clamp(10px, .75vw, 13px);
  font-weight: 950;
  letter-spacing: .23em;
}

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

h1 {
  margin-bottom: 24px;
  font-size: clamp(62px, 7.4vw, 124px);
  line-height: .88;
  letter-spacing: -.068em;
}

h2 {
  margin-bottom: 26px;
  font-size: clamp(47px, 5vw, 84px);
  line-height: .94;
  letter-spacing: -.052em;
}

.lead {
  max-width: 680px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: clamp(16px, 1.35vw, 23px);
  line-height: 1.55;
}

.reveal {
  opacity: 0;
  transform: translateY(38px);
  transition:
    opacity .8s cubic-bezier(.2, .7, .2, 1),
    transform .8s cubic-bezier(.2, .7, .2, 1);
}

.scene.visible .reveal {
  opacity: 1;
  transform: translateY(0);
}

.scene.visible .reveal:nth-child(2) {
  transition-delay: .12s;
}

.media-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(82, 155, 238, .32);
  background: #040911;
  box-shadow:
    0 30px 90px rgba(0, 0, 0, .46),
    0 0 42px rgba(29, 133, 255, .08);
}

.media-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cover-scene {
  min-height: 100svh;
  grid-template-columns: minmax(0, .88fr) minmax(520px, 1.12fr);
  padding-top: max(92px, calc(70px + var(--safe-top)));
}

.cover-media {
  position: absolute;
  z-index: -4;
  inset: 0;
}

.cover-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(.78) brightness(.52) contrast(1.08);
}

.media-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(2, 5, 11, .97) 0%, rgba(2, 5, 11, .8) 44%, rgba(2, 5, 11, .24) 100%),
    linear-gradient(to top, rgba(2, 5, 11, .85), transparent 48%);
}

.cover-copy {
  grid-column: 1;
  align-self: center;
}

.hero-logo-frame {
  width: 105px;
  height: 105px;
  margin-bottom: 34px;
}

.hero-logo-frame img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.cover-copy .lead {
  max-width: 590px;
}

.cover-proof,
.proof-line,
.price-facts,
.system-stack,
.use-grid {
  margin-top: 39px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.cover-proof span,
.proof-line span,
.price-facts span,
.system-stack span,
.use-grid span {
  padding: 11px 14px;
  border: 1px solid rgba(66, 161, 255, .28);
  background: rgba(4, 15, 29, .72);
  color: #b3c8df;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.scroll-cue {
  position: absolute;
  left: 7vw;
  bottom: 28px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: #6e839c;
  font-size: 7px;
  font-weight: 900;
  letter-spacing: .16em;
}

.scroll-cue span {
  width: 32px;
  height: 1px;
  background: var(--blue);
  animation: cue 1.8s ease-in-out infinite;
}

@keyframes cue {
  50% {
    width: 54px;
    box-shadow: 0 0 14px var(--blue);
  }
}

.problem-scene {
  grid-template-columns: .85fr 1.15fr;
}

.problem-grid {
  display: grid;
  gap: 15px;
}

.problem-grid article,
.launch-phases article,
.quality-metrics article {
  position: relative;
  padding: clamp(23px, 2vw, 34px);
  border: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(10, 27, 48, .96), rgba(5, 13, 24, .94));
}

.problem-grid b,
.launch-phases b {
  display: block;
  margin-bottom: 26px;
  color: var(--blue);
  font-size: 10px;
  letter-spacing: .16em;
}

.problem-grid strong,
.launch-phases strong {
  display: block;
  font-size: clamp(22px, 2vw, 33px);
}

.problem-grid p,
.launch-phases p {
  margin: 11px 0 0;
  color: var(--muted);
  line-height: 1.5;
}

.founder-scene,
.customer-scene,
.price-scene,
.dispatch-scene,
.quality-scene,
.infrastructure-scene,
.network-scene {
  grid-template-columns: minmax(0, 1.12fr) minmax(380px, .88fr);
}

.founder-collage {
  position: relative;
  min-height: min(69svh, 680px);
}

.founder-primary {
  position: absolute;
  left: 0;
  top: 2%;
  width: 58%;
  height: 83%;
}

.founder-work {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 55%;
  height: 64%;
  border-color: rgba(255, 63, 189, .42);
}

.flow-list,
.network-steps {
  padding: 0;
  margin: 35px 0 0;
  display: grid;
  gap: 14px;
  list-style: none;
}

.flow-list li,
.network-steps li {
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  color: #b8cade;
  font-size: 14px;
  font-weight: 750;
}

.flow-list b,
.network-steps b {
  display: inline-block;
  width: 42px;
  color: var(--blue);
  font-size: 9px;
  letter-spacing: .12em;
}

.phone-gallery,
.price-phones,
.dispatch-pair,
.go-timeline,
.quality-visual {
  min-width: 0;
}

.phone-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(12px, 1.3vw, 22px);
}

.phone-card {
  position: relative;
  margin: 0;
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(72, 159, 255, .3);
  border-radius: clamp(18px, 2vw, 31px);
  background: #050a13;
  box-shadow:
    0 24px 75px rgba(0, 0, 0, .48),
    0 0 30px rgba(21, 145, 255, .07);
}

.phone-card img {
  width: 100%;
  height: min(67svh, 720px);
  object-fit: contain;
  object-position: center;
  background: #020611;
}

.phone-card figcaption {
  position: absolute;
  left: 13px;
  right: 13px;
  bottom: 13px;
  padding: 9px 10px;
  border: 1px solid rgba(93, 165, 255, .29);
  border-radius: 8px;
  background: rgba(2, 7, 15, .88);
  color: #9eb9d8;
  font-size: 7px;
  font-weight: 950;
  letter-spacing: .13em;
  text-align: center;
  backdrop-filter: blur(12px);
}

.price-scene {
  background:
    radial-gradient(circle at 20% 50%, rgba(126, 255, 23, .08), transparent 31%),
    var(--bg);
}

.price-phones {
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  align-items: center;
  gap: 18px;
}

.price-phones .hero-phone {
  transform: translateY(-14px);
}

.price-facts {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.dispatch-scene {
  grid-template-columns: minmax(340px, .72fr) minmax(620px, 1.28fr);
}

.dispatch-pair {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 84px minmax(0, 1fr);
  align-items: center;
  gap: 15px;
}

.dispatch-signal {
  position: relative;
  height: 100%;
  min-height: 330px;
  display: grid;
  place-items: center;
}

.dispatch-signal i {
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 25px var(--green);
}

.dispatch-signal span {
  position: absolute;
  width: 52px;
  height: 52px;
  border: 1px solid var(--blue);
  border-radius: 50%;
  animation: signal 2.4s ease-out infinite;
}

.dispatch-signal span:nth-child(2) {
  animation-delay: .8s;
}

.dispatch-signal span:nth-child(3) {
  animation-delay: 1.6s;
}

@keyframes signal {
  from {
    opacity: .8;
    transform: scale(.15);
  }

  to {
    opacity: 0;
    transform: scale(1.55);
  }
}

.go-scene {
  grid-template-columns: .7fr 1.3fr;
}

.go-timeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.go-timeline .phone-card:nth-child(2),
.go-timeline .phone-card:nth-child(4) {
  transform: translateY(26px);
}

.quality-visual {
  position: relative;
  min-height: min(72svh, 700px);
}

.quality-phone {
  position: absolute;
  left: 0;
  top: 0;
  width: 62%;
}

.completion-phone {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 53%;
  border-color: rgba(169, 77, 255, .42);
}

.quality-metrics {
  margin-top: 38px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 9px;
}

.quality-metrics article {
  padding: 18px 20px;
}

.quality-metrics strong,
.quality-metrics span {
  display: block;
}

.quality-metrics strong {
  font-size: 17px;
}

.quality-metrics span {
  margin-top: 5px;
  color: var(--muted);
  font-size: 12px;
}

.infrastructure-media {
  position: relative;
  min-height: min(69svh, 690px);
}

.workspace-wide {
  position: absolute;
  inset: 0 7% 13% 0;
}

.noc-card {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 44%;
  height: 46%;
  border-color: rgba(130, 255, 23, .42);
}

.system-stack {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.network-scene {
  grid-template-columns: minmax(620px, 1.25fr) minmax(340px, .75fr);
}

.network-stage {
  position: relative;
  width: 100%;
  min-height: min(73svh, 720px);
  overflow: hidden;
  border: 1px solid rgba(65, 149, 255, .34);
  background:
    radial-gradient(circle at 50% 45%, rgba(32, 66, 175, .24), transparent 35%),
    linear-gradient(145deg, #081028, #030711);
  box-shadow:
    inset 0 0 80px rgba(25, 95, 225, .13),
    0 35px 100px rgba(0, 0, 0, .5);
}

.map-grid {
  position: absolute;
  inset: 0;
  opacity: .24;
  background:
    linear-gradient(rgba(51, 112, 208, .18) 1px, transparent 1px),
    linear-gradient(90deg, rgba(51, 112, 208, .18) 1px, transparent 1px);
  background-size: 56px 56px;
  transform: perspective(600px) rotateX(58deg) scale(1.35);
  transform-origin: center bottom;
}

.network-glow {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 46%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(36, 77, 255, .18);
  filter: blur(43px);
  transform: translate(-50%, -50%);
}

.network-label {
  position: absolute;
  left: 27px;
  top: 24px;
  color: var(--blue);
  font-size: 9px;
  font-weight: 950;
  letter-spacing: .18em;
}

.network-node {
  position: absolute;
  z-index: 5;
  display: grid;
  place-items: center;
}

.network-node i {
  width: 18px;
  height: 18px;
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
}

.network-node span {
  margin-top: 8px;
  padding: 7px 10px;
  border: 1px solid;
  background: rgba(2, 7, 16, .9);
  font-size: 7px;
  font-weight: 950;
  letter-spacing: .11em;
}

.customer-node i {
  background: var(--orange);
  box-shadow: 0 0 23px var(--orange);
}

.customer-node span {
  border-color: var(--orange);
  color: var(--orange);
}

.go-node i {
  background: var(--cyan);
  box-shadow: 0 0 23px var(--cyan);
}

.go-node span {
  border-color: var(--cyan);
  color: var(--cyan);
}

.customer-a {
  left: 14%;
  bottom: 16%;
}

.customer-b {
  left: 29%;
  top: 18%;
  opacity: 0;
  animation: nodeAppear 9s ease-in-out infinite 3.2s;
}

.customer-c {
  right: 20%;
  bottom: 14%;
  opacity: 0;
  animation: nodeAppear 9s ease-in-out infinite 5.4s;
}

.go-a {
  right: 22%;
  top: 15%;
}

.go-b {
  right: 12%;
  top: 45%;
  opacity: 0;
  animation: nodeAppear 9s ease-in-out infinite 4s;
}

.go-c {
  left: 34%;
  bottom: 25%;
  opacity: 0;
  animation: nodeAppear 9s ease-in-out infinite 6.1s;
}

@keyframes nodeAppear {
  0%,
  9% {
    opacity: 0;
    transform: scale(.5);
  }

  18%,
  74% {
    opacity: 1;
    transform: scale(1);
  }

  88%,
  100% {
    opacity: .2;
  }
}

.network-routes {
  position: absolute;
  z-index: 3;
  inset: 0;
  width: 100%;
  height: 100%;
}

.network-routes path {
  fill: none;
  stroke-width: 4;
  stroke-linecap: round;
  stroke-dasharray: 12 16;
  filter: drop-shadow(0 0 8px currentColor);
}

.route-a {
  color: var(--blue);
  stroke: currentColor;
  animation: route 3.3s linear infinite;
}

.route-b {
  color: var(--purple);
  stroke: currentColor;
  opacity: 0;
  animation:
    route 3.8s linear infinite 3.6s,
    routeOpacity 9s ease-in-out infinite 3.6s;
}

.route-c {
  color: var(--green);
  stroke: currentColor;
  opacity: 0;
  animation:
    route 3.2s linear infinite 5.8s,
    routeOpacity 9s ease-in-out infinite 5.8s;
}

@keyframes route {
  to {
    stroke-dashoffset: -112;
  }
}

@keyframes routeOpacity {
  0%,
  8% {
    opacity: 0;
  }

  18%,
  80% {
    opacity: .85;
  }

  100% {
    opacity: 0;
  }
}

.network-pulse {
  position: absolute;
  z-index: 2;
  width: 44px;
  height: 44px;
  border: 1px solid;
  border-radius: 50%;
  opacity: 0;
}

.pulse-a {
  left: calc(14% - 13px);
  bottom: calc(16% + 18px);
  border-color: var(--orange);
  animation: mapPulse 2.8s ease-out infinite;
}

.pulse-b {
  left: calc(29% - 13px);
  top: calc(18% - 13px);
  border-color: var(--purple);
  animation: mapPulse 3s ease-out infinite 3.2s;
}

.pulse-c {
  right: calc(20% - 13px);
  bottom: calc(14% + 18px);
  border-color: var(--green);
  animation: mapPulse 3s ease-out infinite 5.4s;
}

@keyframes mapPulse {
  0% {
    opacity: .85;
    transform: scale(.15);
  }

  100% {
    opacity: 0;
    transform: scale(4);
  }
}

.launch-scene {
  grid-template-columns: .78fr 1.22fr;
}

.launch-phases {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px;
}

.raise-scene {
  grid-template-columns: .44fr 1.56fr;
  background:
    radial-gradient(circle at 21% 50%, rgba(169, 77, 255, .15), transparent 25%),
    radial-gradient(circle at 68% 58%, rgba(0, 236, 216, .08), transparent 30%),
    var(--bg);
}

.raise-mark {
  display: grid;
  place-items: center;
}

.raise-mark img {
  width: min(80%, 380px);
  filter: drop-shadow(0 0 45px rgba(119, 77, 255, .35));
}

.raise-copy {
  max-width: 1000px;
}

.raise-amount {
  margin: 29px 0 24px;
  color: var(--green);
  font-size: clamp(72px, 9vw, 152px);
  font-weight: 950;
  line-height: .82;
  letter-spacing: -.07em;
  text-shadow: 0 0 34px rgba(130, 255, 23, .22);
}

.use-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.raise-copy footer {
  margin-top: 46px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  color: #8098b4;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.asset-missing {
  opacity: .15 !important;
}

@media (max-width: 1100px) {
  .deck-header {
    grid-template-columns: 1fr auto;
  }

  .deck-context {
    display: none;
  }

  .scene {
    padding-left: 5vw;
    padding-right: 5vw;
  }

  .founder-scene,
  .customer-scene,
  .price-scene,
  .dispatch-scene,
  .quality-scene,
  .infrastructure-scene,
  .network-scene {
    grid-template-columns: minmax(0, 1fr) minmax(330px, .82fr);
  }

  .go-timeline {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .go-timeline .phone-card:nth-child(2),
  .go-timeline .phone-card:nth-child(4) {
    transform: none;
  }

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

  .network-stage {
    min-height: 56svh;
  }
}

@media (max-width: 760px) {
  html {
    scroll-snap-type: y proximity;
  }

  .deck-header {
    height: 55px;
    padding:
      var(--safe-top)
      max(15px, var(--safe-right))
      0
      max(15px, var(--safe-left));
  }

  .deck-brand {
    font-size: 14px;
  }

  .deck-status {
    font-size: 5px;
  }

  .deck-progress {
    right: max(7px, var(--safe-right));
    gap: 6px;
  }

  .deck-progress button {
    width: 3px;
    height: 11px;
  }

  .deck-progress button.active {
    height: 23px;
  }

  .scene {
    min-height: 100svh;
    height: auto;
    padding:
      max(78px, calc(64px + var(--safe-top)))
      max(24px, calc(18px + var(--safe-right)))
      max(52px, calc(34px + var(--safe-bottom)))
      max(20px, calc(16px + var(--safe-left)));
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    gap: 36px;
    overflow: visible;
  }

  .scene::before {
    background-size: 42px 42px;
  }

  h1 {
    font-size: clamp(50px, 17vw, 74px);
  }

  h2 {
    font-size: clamp(41px, 12vw, 57px);
  }

  .lead {
    font-size: 17px;
    line-height: 1.5;
  }

  .cover-scene {
    min-height: 100svh;
    padding-top: max(80px, calc(65px + var(--safe-top)));
  }

  .cover-copy {
    width: 100%;
  }

  .cover-media img {
    object-position: 64% center;
  }

  .media-shade {
    background:
      linear-gradient(to top, rgba(2, 5, 11, .98) 0%, rgba(2, 5, 11, .79) 62%, rgba(2, 5, 11, .28) 100%);
  }

  .hero-logo-frame {
    width: 82px;
    height: 82px;
  }

  .cover-proof {
    display: grid;
    grid-template-columns: 1fr;
  }

  .scroll-cue {
    left: 20px;
  }

  .problem-grid,
  .launch-phases {
    grid-template-columns: 1fr;
  }

  .founder-collage,
  .quality-visual,
  .infrastructure-media {
    min-height: 490px;
  }

  .founder-primary {
    width: 67%;
    height: 78%;
  }

  .founder-work {
    width: 61%;
    height: 55%;
  }

  .phone-gallery,
  .price-phones,
  .dispatch-pair,
  .go-timeline {
    width: calc(100% + 40px);
    margin-inline: -20px;
    padding: 8px 20px 23px;
    display: flex;
    flex-wrap: nowrap;
    gap: 15px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-padding-inline: 20px;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .phone-gallery::-webkit-scrollbar,
  .price-phones::-webkit-scrollbar,
  .dispatch-pair::-webkit-scrollbar,
  .go-timeline::-webkit-scrollbar {
    display: none;
  }

  .phone-gallery > *,
  .price-phones > *,
  .dispatch-pair > *,
  .go-timeline > * {
    flex: 0 0 min(79vw, 345px);
    scroll-snap-align: center;
  }

  .phone-card img {
    height: min(69svh, 690px);
  }

  .dispatch-signal {
    display: none;
  }

  .price-phones .hero-phone,
  .go-timeline .phone-card {
    transform: none !important;
  }

  .price-facts,
  .system-stack,
  .use-grid {
    grid-template-columns: 1fr 1fr;
  }

  .quality-visual {
    order: 2;
  }

  .quality-phone {
    width: 67%;
  }

  .completion-phone {
    width: 58%;
  }

  .infrastructure-media {
    order: 2;
  }

  .workspace-wide {
    inset: 0 0 19% 0;
  }

  .noc-card {
    width: 62%;
    height: 47%;
  }

  .network-stage {
    min-height: 530px;
  }

  .network-node span {
    font-size: 6px;
  }

  .raise-scene {
    align-items: center;
    text-align: left;
  }

  .raise-mark {
    width: 145px;
  }

  .raise-mark img {
    width: 100%;
  }

  .raise-copy footer {
    line-height: 2;
  }
}

@media (max-width: 390px) {
  .scene {
    padding-left: 16px;
    padding-right: 19px;
  }

  .price-facts,
  .system-stack,
  .use-grid {
    grid-template-columns: 1fr;
  }

  .founder-collage,
  .quality-visual,
  .infrastructure-media {
    min-height: 440px;
  }

  .network-stage {
    min-height: 470px;
  }
}

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