/* Landing-page fidelity layer
   Keeps the homepage aligned to the approved cinematic board without changing
   the dedicated Design Studio or the secondary routes. */

.home-page {
  --home-page: min(1380px, calc(100vw - 64px));
  background: #020306;
}

.home-page .action-library-icon {
  display: block;
  width: 15px;
  height: 15px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Exact logo lockup: the supplied Sphere mark replaces the O. */
.sphere-lockup {
  width: 122px;
  display: grid;
  grid-template-columns: 1fr;
  justify-items: start;
  color: #fff;
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-style: normal;
  font-weight: 800;
  line-height: .82;
  text-transform: uppercase;
  white-space: nowrap;
}

.sphere-lockup-kicker {
  margin-left: 2px;
  font-size: 8px;
  letter-spacing: 1.45px;
}

.sphere-lockup-name,
.home-page .site-brand .sphere-lockup-name {
  display: flex;
  align-items: center;
  font-size: 18px;
  letter-spacing: 1.25px;
}

.sphere-lockup-name > img {
  width: 17px !important;
  height: 17px !important;
  margin: 0 1px;
  border-radius: 0 !important;
  object-fit: contain !important;
}

.sphere-lockup-company {
  justify-self: end;
  margin-top: 5px;
  font-size: 9px;
  letter-spacing: 1.6px;
}

.home-page .site-brand {
  min-height: 58px;
  gap: 0;
}

.home-page .site-header {
  width: var(--home-page);
  min-height: 66px;
}

.home-page .site-header.is-scrolled {
  width: var(--home-page);
  min-height: 62px;
}

.home-page .desktop-nav {
  gap: 38px;
}

.home-page .desktop-nav a {
  min-height: 66px;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .055em;
}

.home-page .nav-action {
  min-width: 138px;
  min-height: 40px;
  border-color: rgba(255,255,255,.5);
  color: #fff;
}

.intro-mark .sphere-lockup-intro {
  position: relative;
  z-index: 2;
  width: 230px;
  transform: scale(1.35);
  transform-origin: center;
}

.intro-mark .sphere-lockup-intro .sphere-lockup-kicker { font-size: 14px; letter-spacing: 2.3px; }
.intro-mark .sphere-lockup-intro .sphere-lockup-name { font-size: 34px; letter-spacing: 2px; }
.intro-mark .sphere-lockup-intro .sphere-lockup-name > img { width: 31px !important; height: 31px !important; filter: none; }
.intro-mark .sphere-lockup-intro .sphere-lockup-company { margin-top: 10px; font-size: 17px; letter-spacing: 2.6px; }

/* Opening sequence: logo, arch, then a single front-facing product reveal. */
.home-page .cinematic-intro {
  background: #000;
}

.home-page .cinematic-intro::after {
  content: "";
  position: absolute;
  z-index: 0;
  left: 15%;
  right: 15%;
  bottom: -11%;
  height: 42%;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(18,56,116,.42), rgba(2,11,25,.22) 44%, transparent 72%);
  filter: blur(20px);
  opacity: 0;
  transform: scale(.76);
  transition: opacity 1200ms ease, transform 1800ms cubic-bezier(.22,1,.36,1);
}

.home-page .cinematic-intro.stage-phone::after {
  opacity: 1;
  transform: scale(1);
}

.home-page .intro-mark {
  z-index: 3;
  opacity: 0;
  transform: translateY(10px) scale(.96);
  transition: opacity 1400ms ease, transform 1600ms cubic-bezier(.22,1,.36,1);
}

.home-page .cinematic-intro.stage-logo .intro-mark {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.home-page .cinematic-intro.stage-phone .intro-mark {
  opacity: 0;
  transform: translateY(-70px) scale(.94);
  transition-duration: 700ms;
}

.intro-arch {
  position: absolute;
  z-index: 1;
  left: 50%;
  top: 57%;
  width: min(1160px, 88vw);
  height: min(500px, 49vh);
  border: 1px solid rgba(86,130,232,.72);
  border-bottom: 0;
  border-radius: 50% 50% 0 0 / 100% 100% 0 0;
  clip-path: inset(0 50% 0 50%);
  opacity: 0;
  transform: translate(-50%, -50%) scale(.96);
  box-shadow: inset 0 2px 12px rgba(97,146,255,.05), 0 -1px 12px rgba(86,133,255,.08);
  transition: clip-path 1500ms cubic-bezier(.22,1,.36,1), opacity 900ms ease, transform 1600ms cubic-bezier(.22,1,.36,1);
}

.intro-arch::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-top: 1px solid rgba(213,225,255,.24);
  border-radius: inherit;
  filter: blur(3px);
}

.intro-arch i {
  position: absolute;
  right: 8.5%;
  top: 22%;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 5px #fff, 0 0 15px #7ea7ff, 0 0 28px #427cff;
  opacity: 0;
  transform: scale(.4);
  transition: opacity 600ms 850ms ease, transform 900ms 850ms cubic-bezier(.22,1,.36,1);
}

.home-page .cinematic-intro.stage-arch .intro-arch {
  clip-path: inset(0);
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.home-page .cinematic-intro.stage-arch .intro-arch i {
  opacity: 1;
  transform: scale(1);
}

.home-page .cinematic-intro.stage-phone .intro-arch {
  opacity: .42;
  transform: translate(-50%, -48%) scale(1.1);
}

.intro-single-phone {
  position: absolute;
  z-index: 4;
  top: 50%;
  left: 50%;
  width: min(360px, 28vw);
  opacity: 0;
  filter: brightness(.12) drop-shadow(0 34px 40px rgba(0,0,0,.86));
  transform: translate(-50%, 75vh) scale(.86);
  transition: opacity 850ms ease, filter 1400ms ease, transform 1400ms cubic-bezier(.16,1,.3,1);
}

.intro-single-phone > .product-phone {
  position: relative;
  z-index: 1;
}

.intro-single-phone .device-frame,
.home-page .hero-phone-featured .device-frame {
  border-color: rgba(255,255,255,.7);
  background: linear-gradient(120deg, #f6f7f8 0%, #74777d 7%, #111215 26%, #050608 61%, #aeb2b8 90%, #f3f4f5 100%);
  box-shadow:
    0 35px 75px rgba(0,0,0,.7),
    0 0 0 1px rgba(255,255,255,.2),
    inset 0 0 0 2px #060709;
}

.intro-phone-glass {
  position: absolute;
  z-index: 3;
  inset: 8px;
  border-radius: clamp(18px, 2.7vw, 37px);
  background:
    radial-gradient(circle at 50% 10%, rgba(50,58,73,.18), transparent 22%),
    linear-gradient(145deg, #030405, #000 72%);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.035);
  opacity: 1;
  transition: opacity 1250ms cubic-bezier(.22,1,.36,1);
}

.home-page .cinematic-intro.stage-phone .intro-single-phone {
  opacity: 1;
  filter: brightness(.62) drop-shadow(0 35px 48px rgba(0,0,0,.82)) drop-shadow(0 0 12px rgba(138,165,223,.18));
  transform: translate(-50%, -45%) scale(1);
}

.home-page .cinematic-intro.stage-screen .intro-single-phone {
  filter: brightness(1) drop-shadow(0 38px 54px rgba(0,0,0,.82)) drop-shadow(0 0 17px rgba(138,165,223,.2));
  transform: translate(-50%, -47%) scale(1.025);
}

.home-page .cinematic-intro.stage-screen .intro-phone-glass {
  opacity: 0;
}

.home-page .cinematic-intro > p {
  z-index: 5;
  bottom: 4.5vh;
  color: rgba(255,255,255,.84);
  font-size: clamp(.68rem, .95vw, .86rem);
  font-weight: 600;
  letter-spacing: .46em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 750ms ease, transform 950ms cubic-bezier(.22,1,.36,1);
}

.home-page .cinematic-intro.stage-screen > p {
  opacity: 1;
  transform: translateY(0);
}

.home-page .cinematic-intro.stage-settle .intro-arch {
  opacity: .24;
}

.home-page .cinematic-intro.stage-settle .intro-single-phone {
  filter: brightness(1) drop-shadow(0 38px 54px rgba(0,0,0,.82)) drop-shadow(0 0 17px rgba(138,165,223,.2));
  transform: translate(calc(-50% + 16.5vw), -55%) scale(.885);
  transition-duration: 1050ms;
}

/* Cinematic desktop composition. */
.home-page .home-hero {
  min-height: 800px;
  padding: 104px max(32px, calc((100vw - 1320px) / 2)) 25px;
  grid-template-columns: .74fr 1.26fr;
  gap: 26px;
  background:
    radial-gradient(ellipse at 71% 84%, rgba(14,73,153,.22), transparent 38%),
    radial-gradient(circle at 70% 40%, rgba(22,31,100,.18), transparent 37%),
    #020306;
}

.home-page .hero-atmosphere {
  inset: 52% -3% -2% 40%;
  opacity: .9;
  background:
    linear-gradient(180deg, transparent, rgba(4,21,43,.72)),
    repeating-linear-gradient(88deg, transparent 0 58px, rgba(62,131,224,.055) 59px 60px);
  mask-image: linear-gradient(to bottom, transparent, #000 40%);
}

.home-page .hero-orbits {
  left: 40%;
  width: 61%;
  opacity: 1;
}

.home-page .hero-orbits i {
  border-color: rgba(71,130,226,.38);
  box-shadow: 0 0 16px rgba(60,123,255,.13);
}

.home-page .hero-copy {
  max-width: 460px;
  padding-bottom: 38px;
}

.home-page .hero-copy .eyebrow {
  max-width: 340px;
  color: #fff;
  font-size: 11px;
  line-height: 1.45;
}

.home-page .hero-copy h1 {
  margin: 28px 0 20px;
  font-size: clamp(3.25rem, 4.2vw, 4.15rem);
  line-height: .96;
}

.home-page .hero-copy > p:not(.eyebrow) {
  max-width: 420px;
  color: rgba(255,255,255,.78);
  font-size: 14px;
  line-height: 1.55;
}

.home-page .hero-actions {
  margin-top: 28px;
  gap: 12px;
}

.home-page .hero-product-stage {
  min-height: 660px;
}

.home-page .hero-single-product {
  display: grid;
  place-items: center;
  padding-bottom: 22px;
}

.home-page .hero-phone {
  bottom: 7%;
  width: min(31.5%, 252px);
  filter: drop-shadow(0 20px 18px rgba(0,0,0,.68)) drop-shadow(0 0 10px rgba(85,124,255,.12));
}

.home-page .hero-phone-services { left: 2%; transform: translateY(2%) rotate(-.4deg); }
.home-page .hero-phone-coffee { left: 34.4%; }
.home-page .hero-phone-retail { right: 2%; transform: translateY(2%) rotate(.4deg); }
.home-page .hero-phone-labels { bottom: -1px; color: rgba(255,255,255,.78); font-size: 9px; letter-spacing: .14em; }
.home-page .hero-phone-featured {
  position: relative;
  left: auto;
  right: auto;
  bottom: auto;
  width: min(318px, 43%);
  transform: none;
  filter: brightness(1) drop-shadow(0 38px 54px rgba(0,0,0,.82)) drop-shadow(0 0 17px rgba(138,165,223,.2));
}
.home-page .hero-single-product .hero-phone-labels {
  left: 50%;
  right: auto;
  width: min(318px, 43%);
  grid-template-columns: 1fr;
  transform: translateX(-50%);
}
.home-page .hero-trust { font-size: 9px; letter-spacing: .12em; }

/* Slide 06 — POS integrations. */
.home-page .pos-slide {
  display: grid;
  grid-template-columns: minmax(650px, 1.12fr) minmax(440px, .88fr);
  align-items: center;
  gap: clamp(42px, 4vw, 68px);
  padding: 116px max(42px, calc((100vw - 1500px) / 2)) 68px;
  background:
    radial-gradient(ellipse at 36% 66%, rgba(28, 83, 159, .22), transparent 39%),
    radial-gradient(circle at 70% 35%, rgba(25, 42, 99, .1), transparent 30%),
    #020407;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .13);
}

.home-page .space-stars-pos {
  z-index: 0;
  opacity: .58;
}

.home-page .pos-slide-label {
  position: absolute;
  z-index: 7;
  top: 82px;
  left: max(42px, calc((100vw - 1500px) / 2));
  display: flex;
  align-items: center;
  gap: 20px;
  color: rgba(255, 255, 255, .68);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .22em;
  line-height: 1.45;
  text-transform: uppercase;
}

.home-page .pos-slide-label span { color: #fff; }

.home-page .pos-visual {
  position: relative;
  z-index: 3;
  width: 100%;
  min-height: 0;
  max-height: min(700px, calc(100svh - 188px));
  aspect-ratio: 1.18;
}

.home-page .pos-visual::after {
  content: "";
  position: absolute;
  z-index: 0;
  right: 11%;
  bottom: 2%;
  left: 11%;
  height: 18%;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(43, 109, 212, .3), transparent 70%);
  filter: blur(12px);
}

.home-page .pos-flow-field {
  position: absolute;
  z-index: 1;
  inset: 17% 7% 7%;
  overflow: hidden;
  pointer-events: none;
}

.home-page .pos-flow-field::before {
  content: "";
  position: absolute;
  right: 15%;
  bottom: -5%;
  left: 15%;
  height: 56%;
  border-radius: 50% 50% 0 0;
  background:
    repeating-radial-gradient(ellipse at 50% 100%, transparent 0 11px, rgba(106, 170, 255, .18) 12px 13px, transparent 14px 23px);
  filter: drop-shadow(0 0 5px rgba(86, 151, 255, .25));
  mask-image: linear-gradient(to top, #000, rgba(0, 0, 0, .72) 58%, transparent 100%);
}

.home-page .pos-flow-field > i {
  position: absolute;
  bottom: 7%;
  left: 50%;
  width: 42%;
  height: 58%;
  border-top: 1px solid rgba(118, 176, 255, .24);
  border-radius: 50%;
  box-shadow: 0 -3px 9px rgba(70, 137, 243, .08);
  transform-origin: left bottom;
}

.home-page .pos-flow-field > i:nth-child(1) { transform: translateX(-2%) rotate(-54deg); }
.home-page .pos-flow-field > i:nth-child(2) { transform: translateX(-3%) rotate(-31deg) scale(.88); }
.home-page .pos-flow-field > i:nth-child(3) { width: 32%; transform: translateX(-50%) rotate(-90deg); }
.home-page .pos-flow-field > i:nth-child(4) { transform: translateX(-97%) rotate(31deg) scale(.88); }
.home-page .pos-flow-field > i:nth-child(5) { transform: translateX(-98%) rotate(54deg); }

.home-page .pos-phone {
  position: absolute;
  z-index: 5;
  top: 45%;
  left: 50%;
  width: min(236px, 18vw, calc((100svh - 218px) * .485));
  filter: brightness(.97) saturate(.9) drop-shadow(0 38px 52px rgba(0, 0, 0, .86)) drop-shadow(0 0 18px rgba(111, 162, 236, .18));
  transform: translate(-50%, -50%);
}

.home-page .pos-node {
  position: absolute;
  z-index: 6;
  display: grid;
  min-width: 128px;
  place-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, .78);
  text-align: center;
}

.home-page .pos-node-clover { top: 48%; left: 0; transform: translateY(-50%); }
.home-page .pos-node-toast { top: 48%; right: 0; transform: translateY(-50%); }
.home-page .pos-node-square { bottom: 0; left: 50%; transform: translateX(-50%); }

.home-page .pos-node-icon {
  display: grid;
  width: 76px;
  height: 76px;
  place-items: center;
  border: 1px dashed rgba(255, 255, 255, .56);
  border-radius: 50%;
  color: rgba(255, 255, 255, .84);
  box-shadow: inset 0 0 18px rgba(65, 111, 183, .07);
  padding: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.home-page .pos-node strong {
  font-size: .67rem;
  font-weight: 700;
  letter-spacing: .14em;
  line-height: 1.2;
  text-transform: uppercase;
}

.home-page .pos-node small {
  margin-top: -4px;
  color: rgba(255, 255, 255, .55);
  font-size: .56rem;
  font-weight: 700;
  letter-spacing: .17em;
  line-height: 1.3;
  text-transform: uppercase;
}

.home-page .pos-node-square .pos-node-icon {
  width: 64px;
  height: 64px;
  border: 1px solid rgba(206, 228, 255, .94);
  border-radius: 14px;
  background: rgba(19, 34, 66, .86);
  box-shadow: 0 0 8px #d6e7ff, 0 0 25px rgba(82, 148, 255, .92), 0 0 50px rgba(39, 99, 204, .35);
  padding: 17px;
}

.home-page .pos-square-mark {
  position: relative;
  display: block;
  width: 27px;
  height: 27px;
  border: 4px solid currentColor;
  border-radius: 5px;
}

.home-page .pos-square-mark::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 7px;
  height: 7px;
  border-radius: 1px;
  background: currentColor;
  transform: translate(-50%, -50%);
}

.home-page .pos-node .clover-mark { width: 34px; height: 34px; }
.home-page .pos-node .toast-mark { width: 34px; height: 29px; border-width: 2px; }

/* POS brand marks use deterministic CSS geometry so they remain available
   offline and do not disappear when the general icon library is delayed. */
.home-page .clover-mark {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  color: currentColor;
  background:
    radial-gradient(ellipse at 50% 19%, transparent 0 14%, currentColor 15% 21%, transparent 22%),
    radial-gradient(ellipse at 81% 50%, transparent 0 14%, currentColor 15% 21%, transparent 22%),
    radial-gradient(ellipse at 50% 81%, transparent 0 14%, currentColor 15% 21%, transparent 22%),
    radial-gradient(ellipse at 19% 50%, transparent 0 14%, currentColor 15% 21%, transparent 22%),
    radial-gradient(circle at 50% 50%, currentColor 0 8%, transparent 9%);
}

.home-page .toast-mark {
  position: relative;
  display: block;
  width: 100%;
  height: 84%;
  margin-top: 8%;
  border: 2px solid currentColor;
  border-radius: 47% 47% 21% 21% / 38% 38% 20% 20%;
  box-sizing: border-box;
}

.home-page .toast-mark::after {
  content: "";
  position: absolute;
  right: 13%;
  bottom: 22%;
  left: 13%;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  opacity: .72;
}

.home-page .pos-copy {
  position: relative;
  z-index: 5;
  align-self: center;
  max-width: 540px;
}

.home-page .pos-copy > p:first-child {
  margin-bottom: 27px;
  color: #91b7ff;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .19em;
  line-height: 1.48;
  text-transform: uppercase;
}

.home-page .pos-copy h2 {
  margin: 0 0 30px;
  font-family: var(--sans);
  font-size: clamp(2.15rem, 2.75vw, 3.05rem);
  font-weight: 500;
  font-kerning: normal;
  letter-spacing: .01em;
  line-height: 1.16;
  text-transform: uppercase;
  text-wrap: balance;
}

.home-page .pos-copy > p:nth-of-type(2) {
  max-width: 510px;
  color: rgba(255, 255, 255, .72);
  font-size: clamp(.92rem, 1.08vw, 1.08rem);
  letter-spacing: .008em;
  line-height: 1.64;
  text-wrap: pretty;
}

.home-page .pos-status-list {
  display: grid;
  gap: 14px;
  margin: 36px 0 0;
  padding: 0;
  list-style: none;
}

.home-page .pos-status-list li {
  display: grid;
  grid-template-columns: 34px auto 1fr;
  align-items: center;
  gap: 14px;
  color: rgba(255, 255, 255, .6);
  font-size: .67rem;
  font-weight: 700;
  letter-spacing: .13em;
  line-height: 1.2;
  text-transform: uppercase;
}

.home-page .pos-status-list li > i {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border: 1px dashed rgba(255, 255, 255, .38);
  border-radius: 7px;
  padding: 6px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.home-page .pos-status-list li.is-connected { color: #91b7ff; }

.home-page .pos-status-list li.is-connected > i {
  border-style: solid;
  border-color: rgba(185, 217, 255, .85);
  box-shadow: 0 0 12px rgba(91, 153, 245, .24);
}

.home-page .pos-status-list .pos-square-mark {
  width: 17px;
  height: 17px;
  border-width: 3px;
  border-radius: 3px;
}

.home-page .pos-status-list .pos-square-mark::after { width: 4px; height: 4px; }
.home-page .pos-status-list li strong { font: inherit; color: inherit; }
.home-page .pos-status-list li small { font: inherit; color: inherit; }

@media (min-width: 681px) and (max-width: 1250px),
       (min-width: 681px) and (max-aspect-ratio: 4 / 3) {
  .home-page .pos-slide {
    grid-template-columns: minmax(0, 1.08fr) minmax(310px, .92fr);
    gap: 26px;
    padding: 94px 30px 48px;
  }

  .home-page .pos-slide-label { top: 74px; left: 30px; font-size: .52rem; }
  .home-page .pos-visual { max-height: calc(100svh - 145px); aspect-ratio: 1.16; }
  .home-page .pos-phone { width: min(164px, 19vw, calc((100svh - 175px) * .485)); }
  .home-page .pos-node { min-width: 76px; gap: 6px; }
  .home-page .pos-node-icon { width: 48px; height: 48px; padding: 12px; }
  .home-page .pos-node-square .pos-node-icon { width: 44px; height: 44px; padding: 11px; border-radius: 10px; }
  .home-page .pos-node .clover-mark { width: 22px; height: 22px; }
  .home-page .pos-node .toast-mark { width: 22px; height: 18px; }
  .home-page .pos-node .pos-square-mark { width: 20px; height: 20px; border-width: 3px; }
  .home-page .pos-node strong { font-size: .43rem; }
  .home-page .pos-node small { font-size: .38rem; }
  .home-page .pos-copy { max-width: 370px; }
  .home-page .pos-copy > p:first-child { margin-bottom: 16px; font-size: .5rem; }
  .home-page .pos-copy h2 { margin-bottom: 18px; font-size: clamp(1.62rem, 2.6vw, 2.1rem); line-height: 1.17; }
  .home-page .pos-copy > p:nth-of-type(2) { font-size: .75rem; line-height: 1.58; }
  .home-page .pos-status-list { gap: 10px; margin-top: 24px; }
  .home-page .pos-status-list li { grid-template-columns: 27px auto 1fr; gap: 9px; font-size: .48rem; }
  .home-page .pos-status-list li > i { width: 24px; height: 24px; padding: 5px; border-radius: 5px; }
  .home-page .pos-status-list .pos-square-mark { width: 14px; height: 14px; border-width: 2px; }
}

@media (max-width: 680px) {
  .home-page .pos-slide { display: block; padding: 72px 18px 42px; }
  .home-page .pos-slide-label { top: 68px; left: 18px; font-size: .48rem; }

  .home-page .pos-visual {
    position: absolute;
    top: 76px;
    right: 5px;
    left: 5px;
    min-height: 375px;
    aspect-ratio: auto;
  }

  .home-page .pos-phone { width: min(118px, 30vw, calc((100svh - 415px) * .485)); }
  .home-page .pos-node { min-width: 52px; gap: 4px; }
  .home-page .pos-node-icon { width: 34px; height: 34px; padding: 8px; }
  .home-page .pos-node-square .pos-node-icon { width: 32px; height: 32px; padding: 7px; border-radius: 7px; }
  .home-page .pos-node .clover-mark { width: 16px; height: 16px; }
  .home-page .pos-node .toast-mark { width: 16px; height: 13px; border-width: 1px; }
  .home-page .pos-node .pos-square-mark { width: 15px; height: 15px; border-width: 2px; }
  .home-page .pos-node strong { font-size: .34rem; }
  .home-page .pos-node small { font-size: .29rem; }

  .home-page .pos-copy {
    position: absolute;
    z-index: 7;
    right: 18px;
    bottom: 30px;
    left: 18px;
    max-width: 440px;
  }

  .home-page .pos-copy > p:first-child { margin-bottom: 9px; font-size: .46rem; }
  .home-page .pos-copy h2 { margin-bottom: 11px; font-size: clamp(1.32rem, 6.2vw, 1.75rem); line-height: 1.15; }
  .home-page .pos-copy > p:nth-of-type(2) { font-size: .63rem; line-height: 1.5; }
  .home-page .pos-status-list { grid-template-columns: repeat(3, 1fr); gap: 5px; margin-top: 14px; }
  .home-page .pos-status-list li { grid-template-columns: 20px 1fr; gap: 5px; font-size: .33rem; }
  .home-page .pos-status-list li > i { width: 18px; height: 18px; padding: 3px; border-radius: 4px; }
  .home-page .pos-status-list li small { grid-column: 2; }
  .home-page .pos-status-list .pos-square-mark { width: 10px; height: 10px; border-width: 2px; }
}

/* Scroll-driven handoff into the integrations scene. */
:root {
  --pos-visual-opacity: 0;
  --pos-visual-shift: 90px;
  --pos-copy-opacity: 0;
  --pos-copy-shift: 110px;
}

.home-page .pos-visual {
  opacity: var(--pos-visual-opacity);
  transform: translateX(var(--pos-visual-shift));
  transition: none;
  will-change: transform, opacity;
}

.home-page .pos-copy,
.home-page .pos-slide-label {
  opacity: var(--pos-copy-opacity);
  transform: translateX(var(--pos-copy-shift));
  transition: none;
  will-change: transform, opacity;
}

@media (prefers-reduced-motion: reduce) {
  .home-page .pos-visual,
  .home-page .pos-copy,
  .home-page .pos-slide-label {
    opacity: 1;
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-page .hero-atmosphere { opacity: .65; }
}

/* Slide 02 — the marketplace problem. */
.home-page .problem-slide {
  display: grid;
  grid-template-columns: minmax(620px, 1.14fr) minmax(460px, .86fr);
  align-items: center;
  gap: clamp(42px, 5vw, 82px);
  padding: 130px max(42px, calc((100vw - 1500px) / 2)) 72px;
  background:
    radial-gradient(ellipse at 31% 51%, rgba(20, 61, 119, .18), transparent 37%),
    radial-gradient(circle at 76% 36%, rgba(21, 31, 91, .1), transparent 30%),
    #020407;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .13);
}

.home-page .problem-slide-label {
  position: absolute;
  z-index: 5;
  top: 82px;
  left: max(42px, calc((100vw - 1500px) / 2));
  display: flex;
  align-items: center;
  gap: 20px;
  color: rgba(255, 255, 255, .68);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .24em;
  text-transform: uppercase;
}

.home-page .problem-slide-label span { color: #fff; }

.home-page .space-stars-problem {
  z-index: 0;
  opacity: .48;
}

.home-page .problem-visual {
  position: relative;
  z-index: 2;
  min-height: min(680px, calc(100svh - 205px));
}

.home-page .problem-orbits {
  position: absolute;
  z-index: 0;
  inset: 8% 0 7%;
  pointer-events: none;
}

.home-page .problem-orbits > i {
  position: absolute;
  top: 50%;
  left: 49%;
  border: 1px solid rgba(87, 142, 228, .32);
  border-radius: 50%;
  box-shadow: 0 0 17px rgba(62, 128, 255, .1);
}

.home-page .problem-orbits > i:nth-child(1) {
  width: 92%;
  height: 58%;
  transform: translate(-50%, -50%) rotate(-7deg);
  animation: problem-orbit-one 17s ease-in-out infinite alternate;
}

.home-page .problem-orbits > i:nth-child(2) {
  width: 72%;
  height: 76%;
  border-color: rgba(87, 142, 228, .19);
  transform: translate(-50%, -50%) rotate(18deg);
  animation: problem-orbit-two 22s ease-in-out infinite alternate;
}

.home-page .problem-orbits > b {
  position: absolute;
  z-index: 2;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 6px #fff, 0 0 17px #7faaff, 0 0 30px #3978ff;
  animation: sphere-star-twinkle 4.4s ease-in-out infinite;
}

.home-page .problem-orbits > b:nth-of-type(1) { top: 21%; right: 13%; }
.home-page .problem-orbits > b:nth-of-type(2) { bottom: 17%; left: 26%; animation-delay: -2.4s; }

.home-page .problem-phone {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 47%;
  width: min(286px, 22vw, calc((100svh - 245px) * .485));
  filter:
    brightness(.92)
    drop-shadow(0 34px 45px rgba(0, 0, 0, .82))
    drop-shadow(0 0 17px rgba(125, 153, 218, .14));
  transform: translate(-50%, -50%);
}

.home-page .marketplace-panel {
  position: absolute;
  z-index: 4;
  top: 50%;
  left: 54%;
  width: min(238px, 20vw);
  min-height: 430px;
  padding: 25px 22px;
  border: 1px solid rgba(220, 229, 246, .56);
  border-radius: 22px;
  background:
    linear-gradient(145deg, rgba(117, 132, 155, .68), rgba(22, 31, 45, .92) 45%, rgba(11, 16, 25, .95));
  box-shadow:
    0 28px 55px rgba(0, 0, 0, .48),
    inset 0 1px 0 rgba(255, 255, 255, .14),
    inset -18px -24px 38px rgba(0, 0, 0, .2);
  color: rgba(246, 248, 252, .84);
  backdrop-filter: blur(14px) saturate(.8);
  transform: translate(-6%, -48%) perspective(900px) rotateY(-3deg);
}

.home-page .marketplace-panel > strong {
  display: block;
  margin-bottom: 14px;
  font-size: 1.08rem;
  font-weight: 500;
  letter-spacing: -.025em;
}

.home-page .marketplace-entry {
  min-height: 104px;
  display: grid;
  grid-template-columns: 45px 1fr 24px;
  align-items: center;
  gap: 13px;
  border-top: 1px solid rgba(255, 255, 255, .11);
}

.home-page .marketplace-entry:first-of-type { border-top: 0; }

.home-page .marketplace-entry > i {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(207, 217, 234, .72);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .15);
}

.home-page .marketplace-entry > span {
  display: grid;
  gap: 9px;
}

.home-page .marketplace-entry > span b {
  display: block;
  height: 6px;
  border-radius: 999px;
  background: rgba(196, 209, 232, .58);
}

.home-page .marketplace-entry > span b:last-child { width: 68%; }
.home-page .marketplace-entry > em { font-size: .72rem; font-style: normal; letter-spacing: .08em; }

.home-page .problem-role {
  position: absolute;
  z-index: 4;
  top: 50%;
  display: grid;
  min-width: 96px;
  place-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, .82);
  transform: translateY(-50%);
}

.home-page .problem-role-customer { left: 0; }
.home-page .problem-role-business { right: 0; }

.home-page .problem-role > span,
.home-page .problem-flow em {
  font-size: .64rem;
  font-style: normal;
  font-weight: 700;
  letter-spacing: .055em;
  text-transform: uppercase;
}

.home-page .problem-role-icon {
  position: relative;
  display: block;
  width: 70px;
  height: 70px;
  border: 1px solid rgba(255, 255, 255, .58);
  border-radius: 50%;
  color: rgba(255, 255, 255, .84);
  box-shadow: inset 0 0 16px rgba(255, 255, 255, .025), 0 0 16px rgba(55, 105, 190, .08);
  padding: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.home-page .problem-user-icon::before {
  content: "";
  position: absolute;
  top: 14px;
  left: 50%;
  width: 12px;
  height: 12px;
  border: 2px solid currentColor;
  border-radius: 50%;
  transform: translateX(-50%);
}

.home-page .problem-user-icon::after {
  content: "";
  position: absolute;
  bottom: 13px;
  left: 50%;
  width: 32px;
  height: 18px;
  border: 2px solid currentColor;
  border-radius: 18px 18px 6px 6px;
  transform: translateX(-50%);
}

.home-page .problem-store-icon::before {
  content: "";
  position: absolute;
  top: 16px;
  right: 14px;
  left: 14px;
  height: 15px;
  border: 2px solid currentColor;
  border-radius: 5px 5px 2px 2px;
  background: repeating-linear-gradient(90deg, transparent 0 7px, currentColor 7px 9px);
}

.home-page .problem-store-icon::after {
  content: "";
  position: absolute;
  top: 32px;
  right: 18px;
  bottom: 14px;
  left: 18px;
  border: 2px solid currentColor;
  border-top: 0;
  border-radius: 0 0 4px 4px;
}

.home-page .problem-connection {
  position: absolute;
  z-index: 1;
  top: 50%;
  height: 1px;
  background: repeating-linear-gradient(90deg, rgba(255, 255, 255, .62) 0 8px, transparent 8px 16px);
}

.home-page .problem-connection-in { left: 10%; width: 27%; }
.home-page .problem-connection-out { right: 10%; width: 24%; }

.home-page .problem-copy {
  position: relative;
  z-index: 3;
  align-self: center;
  padding-bottom: 16px;
}

.home-page .problem-copy > p:first-child {
  margin-bottom: 22px;
  color: #91b7ff;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.home-page .problem-copy h2 {
  max-width: 590px;
  margin: 0 0 24px;
  font-size: clamp(2.45rem, 3.15vw, 3.35rem);
  font-weight: 600;
  letter-spacing: -.025em;
  line-height: 1.1;
  text-transform: uppercase;
}

.home-page .problem-copy > p:last-of-type {
  max-width: 500px;
  color: rgba(255, 255, 255, .72);
  font-size: clamp(.95rem, 1.25vw, 1.18rem);
  line-height: 1.45;
}

.home-page .problem-flow {
  display: flex;
  margin-top: 58px;
  align-items: center;
  gap: 11px;
}

.home-page .problem-flow > span {
  display: grid;
  flex: 0 0 auto;
  min-width: 96px;
  place-items: center;
  gap: 10px;
}

.home-page .problem-flow .problem-role-icon {
  width: 58px;
  height: 58px;
  padding: 15px;
}

.home-page .problem-flow .problem-user-icon::before { top: 10px; }
.home-page .problem-flow .problem-user-icon::after { bottom: 10px; width: 27px; height: 15px; }
.home-page .problem-flow .problem-store-icon::before { top: 12px; right: 11px; left: 11px; height: 13px; }
.home-page .problem-flow .problem-store-icon::after { top: 26px; right: 15px; bottom: 11px; left: 15px; }

.home-page .problem-flow > b {
  position: relative;
  flex: 1 1 55px;
  min-width: 36px;
  max-width: 82px;
  height: 1px;
  background: repeating-linear-gradient(90deg, rgba(255, 255, 255, .56) 0 6px, transparent 6px 12px);
}

.home-page .problem-flow > b::after {
  content: "";
  position: absolute;
  top: -3px;
  right: 0;
  width: 6px;
  height: 6px;
  border-top: 1px solid rgba(255, 255, 255, .72);
  border-right: 1px solid rgba(255, 255, 255, .72);
  transform: rotate(45deg);
}

.home-page .problem-slide-progress {
  position: absolute;
  z-index: 4;
  right: max(42px, calc((100vw - 1500px) / 2));
  bottom: 42px;
  width: min(350px, 32vw);
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 16px;
  color: rgba(255, 255, 255, .64);
}

.home-page .problem-slide-progress span {
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .18em;
}

.home-page .problem-slide-progress > i {
  height: 1px;
  background: linear-gradient(90deg, #dce7ff 0 23%, rgba(255, 255, 255, .26) 23% 100%);
}

.home-page .problem-slide-progress small {
  grid-column: 1 / -1;
  justify-self: end;
  font-size: .56rem;
  font-weight: 700;
  letter-spacing: .28em;
  text-transform: uppercase;
}

@keyframes problem-orbit-one {
  0% { transform: translate(-50%, -50%) rotate(-10deg); }
  100% { transform: translate(-50%, -50%) rotate(2deg); }
}

@keyframes problem-orbit-two {
  0% { transform: translate(-50%, -50%) rotate(14deg); }
  100% { transform: translate(-50%, -50%) rotate(27deg); }
}

@media (min-width: 681px) and (max-width: 1050px) {
  .home-page .problem-slide {
    grid-template-columns: minmax(360px, 1.08fr) minmax(300px, .92fr);
    gap: 24px;
    padding: 96px 30px 50px;
  }

  .home-page .problem-slide-label { top: 72px; left: 30px; font-size: .52rem; }
  .home-page .problem-visual { min-height: min(510px, calc(100svh - 150px)); }
  .home-page .problem-phone { left: 46%; width: min(205px, 23vw, calc((100svh - 190px) * .485)); }
  .home-page .marketplace-panel { left: 52%; width: min(168px, 19vw); min-height: 310px; padding: 16px 14px; border-radius: 15px; }
  .home-page .marketplace-panel > strong { font-size: .78rem; }
  .home-page .marketplace-entry { min-height: 75px; grid-template-columns: 31px 1fr 18px; gap: 8px; }
  .home-page .marketplace-entry > i { width: 27px; height: 27px; }
  .home-page .marketplace-entry > span { gap: 6px; }
  .home-page .marketplace-entry > span b { height: 4px; }
  .home-page .problem-role { min-width: 62px; gap: 7px; }
  .home-page .problem-role-icon { width: 45px; height: 45px; padding: 11px; }
  .home-page .problem-role > span,
  .home-page .problem-flow em { font-size: .43rem; }
  .home-page .problem-user-icon::before { top: 8px; width: 8px; height: 8px; border-width: 1px; }
  .home-page .problem-user-icon::after { bottom: 8px; width: 21px; height: 12px; border-width: 1px; }
  .home-page .problem-store-icon::before { top: 9px; right: 8px; left: 8px; height: 10px; border-width: 1px; }
  .home-page .problem-store-icon::after { top: 20px; right: 11px; bottom: 8px; left: 11px; border-width: 1px; }
  .home-page .problem-copy > p:first-child { margin-bottom: 12px; font-size: .5rem; }
  .home-page .problem-copy h2 { margin-bottom: 14px; font-size: clamp(1.75rem, 3.5vw, 2.25rem); }
  .home-page .problem-copy > p:last-of-type { font-size: .72rem; }
  .home-page .problem-flow { margin-top: 28px; gap: 5px; }
  .home-page .problem-flow > span { min-width: 65px; gap: 6px; }
  .home-page .problem-flow .problem-role-icon { width: 40px; height: 40px; padding: 10px; }
  .home-page .problem-flow > b { min-width: 18px; }
  .home-page .problem-slide-progress { right: 30px; bottom: 24px; width: 240px; }
}

@media (max-width: 680px) {
  .home-page .problem-slide {
    display: block;
    padding: 72px 18px 42px;
  }

  .home-page .problem-slide-label {
    top: 68px;
    left: 18px;
    font-size: .48rem;
  }

  .home-page .problem-visual {
    position: absolute;
    top: 96px;
    right: 8px;
    left: 8px;
    min-height: 350px;
  }

  .home-page .problem-phone {
    left: 47%;
    width: min(158px, 40vw, calc((100svh - 430px) * .485));
  }

  .home-page .marketplace-panel {
    left: 50%;
    width: min(130px, 34vw);
    min-height: 245px;
    padding: 12px 11px;
    border-radius: 13px;
  }

  .home-page .marketplace-panel > strong { margin-bottom: 6px; font-size: .62rem; }
  .home-page .marketplace-entry { min-height: 58px; grid-template-columns: 24px 1fr 12px; gap: 6px; }
  .home-page .marketplace-entry > i { width: 21px; height: 21px; }
  .home-page .marketplace-entry > span { gap: 4px; }
  .home-page .marketplace-entry > span b { height: 3px; }
  .home-page .marketplace-entry > em { font-size: .4rem; }
  .home-page .problem-role { min-width: 44px; gap: 4px; }
  .home-page .problem-role-icon { width: 34px; height: 34px; padding: 8px; }
  .home-page .problem-role > span { font-size: .34rem; }
  .home-page .problem-user-icon::before { top: 6px; width: 6px; height: 6px; border-width: 1px; }
  .home-page .problem-user-icon::after { bottom: 6px; width: 16px; height: 9px; border-width: 1px; }
  .home-page .problem-store-icon::before { top: 7px; right: 6px; left: 6px; height: 7px; border-width: 1px; }
  .home-page .problem-store-icon::after { top: 15px; right: 8px; bottom: 6px; left: 8px; border-width: 1px; }
  .home-page .problem-connection-in { left: 9%; width: 25%; }
  .home-page .problem-connection-out { right: 9%; width: 25%; }

  .home-page .problem-copy {
    position: absolute;
    z-index: 5;
    right: 18px;
    bottom: 70px;
    left: 18px;
    padding: 0;
    text-align: left;
  }

  .home-page .problem-copy > p:first-child { margin-bottom: 8px; font-size: .46rem; }
  .home-page .problem-copy h2 { margin-bottom: 10px; font-size: clamp(1.45rem, 7vw, 2rem); line-height: 1.03; }
  .home-page .problem-copy > p:last-of-type { max-width: 350px; font-size: .65rem; line-height: 1.4; }
  .home-page .problem-flow { display: none; }

  .home-page .problem-slide-progress {
    right: 18px;
    bottom: 18px;
    width: 190px;
  }

  .home-page .problem-slide-progress small { font-size: .42rem; }
}

@media (prefers-reduced-motion: reduce) {
  .home-page .problem-orbits > i,
  .home-page .problem-orbits > b { animation: none !important; }
}

@media (max-width: 680px) {
  .home-page .problem-section {
    min-height: auto;
    display: block;
    padding: 68px 18px;
  }

  .home-page .problem-section .section-copy h2 {
    max-width: 390px;
    margin-bottom: 20px;
    font-size: clamp(2.2rem, 11vw, 3.15rem);
  }

  .home-page .problem-section .section-copy > p:last-child {
    font-size: .92rem;
  }

  .home-page .model-comparison {
    gap: 10px;
    margin-top: 36px;
  }

  .home-page .model-comparison article {
    min-height: 210px;
    padding: 17px 12px 14px;
    border-radius: 10px;
  }

  .home-page .model-comparison article > .model-path {
    min-height: 124px;
    gap: 6px;
  }

  .home-page .model-comparison .model-party,
  .home-page .model-comparison .sphere-node {
    min-width: 72px;
    gap: 7px;
  }

  .home-page .model-comparison .model-party em { font-size: .54rem; }

  .home-page .model-comparison .model-icon {
    width: 47px;
    height: 47px;
  }

  .home-page .model-icon-user::before { top: 8px; }
  .home-page .model-icon-user::after { bottom: 8px; width: 22px; height: 13px; }
  .home-page .model-icon-store::before { top: 10px; right: 9px; left: 9px; height: 10px; }
  .home-page .model-icon-store::after { top: 21px; right: 12px; bottom: 9px; left: 12px; }

  .home-page .model-comparison .model-arrow {
    min-width: 14px;
    max-width: 44px;
  }

  .home-page .model-comparison .sphere-node .model-icon-sphere {
    width: 52px;
    height: 52px;
  }

  .home-page .model-comparison article > p { font-size: .64rem; }
  .home-page .model-comparison article > small { font-size: .64rem; }
}

/* Horizontal presentation foundation: one fixed hero slide for this phase. */
.home-page {
  width: 100%;
  height: 100svh;
  overflow: hidden;
  background: #020306;
}

.home-page .page-progress { display: none; }

.home-page .home-deck {
  display: flex;
  width: 100vw;
  height: 100svh;
  overflow: visible;
  overscroll-behavior: none;
  scroll-behavior: auto;
  scroll-snap-type: none;
  scrollbar-width: none;
  touch-action: none;
  transform: translate3d(0, 0, 0);
  will-change: transform;
}

.home-page .home-deck::-webkit-scrollbar { display: none; }

.home-page .home-slide {
  position: relative;
  flex: 0 0 100vw;
  width: 100vw;
  height: 100svh;
  min-height: 100svh;
  overflow: hidden;
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

.home-page .home-hero {
  display: block;
  padding: 0;
  background:
    radial-gradient(ellipse at 50% 88%, rgba(14, 73, 153, .22), transparent 38%),
    radial-gradient(circle at 50% 44%, rgba(22, 31, 100, .16), transparent 34%),
    #020306;
}

.home-page .hero-atmosphere {
  inset: 45% 8% -20% 8%;
  width: auto;
  aspect-ratio: auto;
  border-radius: 50%;
  opacity: .72;
  background:
    linear-gradient(180deg, transparent, rgba(4, 21, 43, .78)),
    repeating-linear-gradient(88deg, transparent 0 58px, rgba(62, 131, 224, .04) 59px 60px);
  filter: blur(12px);
  mask-image: linear-gradient(to bottom, transparent, #000 36%);
}

.home-page .hero-orbits {
  inset: 50% auto auto 50%;
  width: min(760px, 60vw);
  height: min(600px, 72vh);
  opacity: .58;
  transform: translate(-50%, -50%);
}

.home-page .hero-orbits i:nth-child(1) {
  top: 10%;
  right: 9%;
  width: 78%;
}

.home-page .hero-orbits i:nth-child(2) {
  top: -2%;
  right: -2%;
  width: 100%;
}

.home-page .hero-orbits i:nth-child(3) {
  top: 17%;
  right: 11%;
}

.home-page .hero-copy {
  position: absolute;
  z-index: 4;
  top: 50%;
  left: max(32px, calc((100vw - 1320px) / 2));
  width: min(390px, 30vw);
  max-width: none;
  padding: 0;
  transform: translateY(-45%);
}

.home-page .hero-copy .eyebrow {
  max-width: 310px;
  color: rgba(255, 255, 255, .72);
  font-size: .65rem;
  letter-spacing: .16em;
  line-height: 1.45;
}

.home-page .hero-copy h1 {
  margin: 24px 0 18px;
  font-size: clamp(3rem, 3.7vw, 3.85rem);
  line-height: .96;
}

.home-page .hero-copy > p:not(.eyebrow) {
  max-width: 370px;
  color: rgba(255, 255, 255, .72);
  font-size: .82rem;
  line-height: 1.55;
}

.home-page .hero-actions {
  display: flex;
  margin-top: 24px;
  align-items: flex-start;
  flex-direction: column;
  gap: 8px;
}

.home-page .hero-actions .button {
  min-width: 236px;
  min-height: 43px;
  font-size: .68rem;
}

.home-page .hero-actions .text-action {
  min-height: 36px;
  padding-inline: 0;
  font-size: .68rem;
}

.home-page .hero-product-stage,
.home-page .hero-single-product {
  position: absolute;
  z-index: 3;
  inset: 76px 0 42px;
  display: grid;
  min-height: 0;
  padding: 0;
  place-items: center;
  pointer-events: none;
}

.home-page .hero-phone-featured {
  position: relative;
  left: auto;
  right: auto;
  bottom: auto;
  width: min(318px, 24vw, calc((100svh - 165px) * .485));
  filter:
    brightness(1)
    drop-shadow(0 38px 54px rgba(0, 0, 0, .82))
    drop-shadow(0 0 18px rgba(138, 165, 223, .22));
  transform: none;
}

.home-page .hero-single-product .hero-phone-labels {
  position: absolute;
  inset: auto auto 0 50%;
  width: auto;
  color: rgba(255, 255, 255, .62);
  font-size: .56rem;
  letter-spacing: .18em;
  white-space: nowrap;
  transform: translateX(-50%);
}

.home-page .hero-trust {
  position: absolute;
  z-index: 4;
  right: max(32px, calc((100vw - 1320px) / 2));
  bottom: 28px;
  width: min(370px, 29vw);
  padding: 0;
  border: 0;
  color: rgba(244, 241, 234, .48);
  font-size: .56rem;
  letter-spacing: .13em;
  line-height: 1.55;
  text-align: right;
}

/* Keep the intro choreography, but let it resolve into the centered hero phone. */
.home-page .cinematic-intro.stage-settle .intro-single-phone {
  transform: translate(-50%, -55%) scale(.885);
}

@media (min-width: 681px) and (max-width: 980px) {
  .home-page .home-hero {
    min-height: 100svh;
    padding: 0;
  }

  .home-page .hero-copy {
    left: 30px;
    width: min(245px, 31vw);
  }

  .home-page .hero-copy .eyebrow { font-size: .48rem; }

  .home-page .hero-copy h1 {
    margin: 16px 0 12px;
    font-size: clamp(2.1rem, 4.5vw, 2.75rem);
  }

  .home-page .hero-copy > p:not(.eyebrow) { font-size: .64rem; }
  .home-page .hero-actions { margin-top: 14px; gap: 3px; }
  .home-page .hero-actions .button { min-width: 174px; min-height: 36px; font-size: .52rem; }
  .home-page .hero-actions .text-action { min-height: 30px; font-size: .52rem; }

  .home-page .hero-phone-featured {
    width: min(250px, 29vw, calc((100svh - 145px) * .485));
  }

  .home-page .hero-trust {
    right: 30px;
    width: 225px;
    font-size: .43rem;
  }

  .home-page .cinematic-intro.stage-settle .intro-single-phone {
    transform: translate(-50%, -52%) scale(.78);
  }
}

@media (max-width: 680px) {
  .home-page .home-hero {
    min-height: 100svh;
    padding: 0;
  }

  .home-page .hero-orbits {
    top: 38%;
    width: 110vw;
    height: 58vh;
  }

  .home-page .hero-copy {
    top: auto;
    right: 18px;
    bottom: max(18px, env(safe-area-inset-bottom));
    left: 18px;
    width: auto;
    text-align: center;
    transform: none;
  }

  .home-page .hero-copy .eyebrow {
    max-width: none;
    font-size: .48rem;
  }

  .home-page .hero-copy h1 {
    margin: 10px 0 8px;
    font-size: clamp(2rem, 10vw, 2.7rem);
  }

  .home-page .hero-copy > p:not(.eyebrow) {
    max-width: 430px;
    margin-inline: auto;
    font-size: .66rem;
    line-height: 1.42;
  }

  .home-page .hero-actions {
    margin-top: 10px;
    align-items: center;
    flex-direction: row;
    justify-content: center;
    gap: 12px;
  }

  .home-page .hero-actions .button {
    min-width: 154px;
    min-height: 36px;
    padding-inline: 12px;
    font-size: .5rem;
  }

  .home-page .hero-actions .text-action {
    min-height: 34px;
    font-size: .5rem;
  }

  .home-page .hero-product-stage,
  .home-page .hero-single-product {
    inset: 62px 0 285px;
  }

  .home-page .hero-phone-featured {
    width: min(230px, 53vw, calc((100svh - 355px) * .485));
  }

  .home-page .hero-single-product .hero-phone-labels {
    bottom: -10px;
    font-size: .46rem;
  }

  .home-page .hero-trust { display: none; }

  .home-page .cinematic-intro.stage-settle .intro-single-phone {
    transform: translate(-50%, -47%) scale(1);
  }
}

@media (max-height: 680px) and (min-width: 681px) {
  .home-page .hero-copy { transform: translateY(-39%) scale(.9); transform-origin: left center; }
  .home-page .hero-phone-featured { width: min(240px, calc((100svh - 120px) * .485)); }
  .home-page .hero-product-stage,
  .home-page .hero-single-product { inset-block: 66px 24px; }
}

/* Shared orbital sky for the intro and the centered landing slide. */
.home-page .space-stars {
  position: absolute;
  z-index: 0;
  inset: -6%;
  overflow: hidden;
  pointer-events: none;
  background-image:
    radial-gradient(circle at 7% 18%, rgba(210, 226, 255, .8) 0 1px, transparent 1.7px),
    radial-gradient(circle at 17% 72%, rgba(126, 166, 236, .58) 0 1px, transparent 1.7px),
    radial-gradient(circle at 28% 32%, rgba(255, 255, 255, .72) 0 1px, transparent 1.6px),
    radial-gradient(circle at 39% 83%, rgba(111, 151, 224, .45) 0 1px, transparent 1.7px),
    radial-gradient(circle at 49% 12%, rgba(255, 255, 255, .62) 0 1px, transparent 1.7px),
    radial-gradient(circle at 58% 69%, rgba(152, 184, 239, .55) 0 1px, transparent 1.8px),
    radial-gradient(circle at 68% 27%, rgba(255, 255, 255, .68) 0 1px, transparent 1.7px),
    radial-gradient(circle at 77% 77%, rgba(118, 160, 234, .56) 0 1px, transparent 1.7px),
    radial-gradient(circle at 89% 21%, rgba(242, 247, 255, .74) 0 1px, transparent 1.7px),
    radial-gradient(circle at 95% 59%, rgba(128, 167, 235, .54) 0 1px, transparent 1.8px);
  opacity: .62;
  transform: translate3d(-.5%, 0, 0) scale(1.01);
  animation: sphere-star-drift 24s ease-in-out infinite alternate;
}

.home-page .space-stars::before,
.home-page .space-stars::after {
  content: "";
  position: absolute;
  inset: 0;
  background-repeat: no-repeat;
  pointer-events: none;
}

.home-page .space-stars::before {
  background-image:
    radial-gradient(circle at 13% 43%, rgba(255, 255, 255, .46) 0 1px, transparent 1.8px),
    radial-gradient(circle at 23% 91%, rgba(137, 174, 239, .5) 0 1px, transparent 1.8px),
    radial-gradient(circle at 34% 8%, rgba(255, 255, 255, .52) 0 1px, transparent 1.8px),
    radial-gradient(circle at 45% 57%, rgba(119, 159, 230, .4) 0 1px, transparent 1.8px),
    radial-gradient(circle at 63% 92%, rgba(255, 255, 255, .5) 0 1px, transparent 1.8px),
    radial-gradient(circle at 74% 47%, rgba(123, 164, 236, .5) 0 1px, transparent 1.8px),
    radial-gradient(circle at 84% 9%, rgba(255, 255, 255, .48) 0 1px, transparent 1.8px),
    radial-gradient(circle at 92% 88%, rgba(132, 169, 236, .44) 0 1px, transparent 1.8px);
  opacity: .68;
  animation: sphere-star-drift-secondary 31s ease-in-out infinite alternate;
}

.home-page .space-stars::after {
  top: 27%;
  left: -18%;
  width: 14%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(183, 209, 255, .58), transparent);
  filter: blur(.2px);
  opacity: 0;
  transform: rotate(-12deg);
  animation: sphere-shooting-star 12s 4.5s ease-in-out infinite;
}

.home-page .space-stars > i {
  position: absolute;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 5px #fff, 0 0 13px rgba(102, 153, 255, .9);
  animation: sphere-star-twinkle 4.6s ease-in-out infinite;
}

.home-page .space-stars > i:nth-child(1) { top: 24%; left: 20%; }
.home-page .space-stars > i:nth-child(2) { top: 17%; right: 22%; animation-delay: -1.7s; }
.home-page .space-stars > i:nth-child(3) { right: 12%; bottom: 19%; animation-delay: -3.1s; }

.home-page .space-stars-intro {
  opacity: 0;
  transition: opacity 1400ms ease;
}

.home-page .cinematic-intro.stage-logo .space-stars-intro { opacity: .52; }
.home-page .space-stars-hero { opacity: .6; }

/* Close the intro arch into the same pair of complete circles used on the hero. */
.home-page .hero-orbits,
.home-page .intro-arch {
  --orbit-field-size: min(760px, 60vw, 72vh);
  top: 50%;
  left: 50%;
  width: var(--orbit-field-size);
  height: var(--orbit-field-size);
}

.home-page .intro-arch {
  border: 0;
  border-radius: 0;
  clip-path: inset(0 50% 0 50%);
  box-shadow: none;
  transform: translate(-50%, -50%) scale(.96);
}

.home-page .intro-arch::before,
.home-page .intro-arch::after {
  content: "";
  position: absolute;
  aspect-ratio: 1;
  border: 1px solid rgba(71, 130, 226, .38);
  border-radius: 50%;
  box-shadow: 0 0 16px rgba(60, 123, 255, .13), inset 0 0 16px rgba(60, 123, 255, .025);
}

.home-page .intro-arch::before {
  top: 10%;
  right: 9%;
  width: 78%;
  animation: sphere-orbit-drift-one 12s ease-in-out infinite alternate;
}

.home-page .intro-arch::after {
  top: 0;
  right: 0;
  width: 100%;
  animation: sphere-orbit-drift-two 17s ease-in-out infinite alternate;
}

.home-page .intro-arch > i {
  z-index: 2;
  width: 5px;
  height: 5px;
}

.home-page .intro-arch > i:nth-child(1) {
  top: 17%;
  right: 11%;
}

.home-page .intro-arch > i:nth-child(2) {
  top: auto;
  right: auto;
  bottom: 14%;
  left: 17%;
  transition-delay: 1050ms;
}

.home-page .hero-orbits i:nth-child(1) {
  animation: sphere-orbit-drift-one 12s ease-in-out infinite alternate;
}

.home-page .hero-orbits i:nth-child(2) {
  top: 0;
  right: 0;
  animation: sphere-orbit-drift-two 17s ease-in-out infinite alternate;
}

.home-page .hero-orbits i:nth-child(3) {
  animation: sphere-star-twinkle 4.2s ease-in-out infinite;
}

.home-page .hero-orbits i:nth-child(4) {
  top: auto;
  right: auto;
  bottom: 14%;
  left: 17%;
  width: 5px;
  height: 5px;
  border: 0;
  background: #fff;
  box-shadow: 0 0 5px #fff, 0 0 15px #7ea7ff, 0 0 28px #427cff;
  animation: sphere-star-twinkle 4.8s -2.1s ease-in-out infinite;
}

.home-page .hero-orbits {
  transform-origin: center;
  animation: sphere-orbit-field-spin 28s linear infinite;
}

.home-page .cinematic-intro.stage-phone .intro-arch,
.home-page .cinematic-intro.stage-settle .intro-arch {
  opacity: .58;
  transform: translate(-50%, -50%) scale(1);
}

.home-page .cinematic-intro.stage-arch .intro-arch,
.home-page .cinematic-intro.stage-phone .intro-arch,
.home-page .cinematic-intro.stage-settle .intro-arch {
  clip-path: inset(-28px);
}

@keyframes sphere-star-drift {
  0% { transform: translate3d(-.5%, 0, 0) scale(1.01); }
  50% { transform: translate3d(.35%, -.65%, 0) scale(1.018); }
  100% { transform: translate3d(.8%, .25%, 0) scale(1.012); }
}

@keyframes sphere-star-drift-secondary {
  0% { transform: translate3d(.4%, -.3%, 0); }
  100% { transform: translate3d(-.7%, .55%, 0); }
}

@keyframes sphere-star-twinkle {
  0%, 100% { opacity: .28; transform: scale(.72); }
  48% { opacity: 1; transform: scale(1.2); }
}

@keyframes sphere-shooting-star {
  0%, 72%, 100% { opacity: 0; transform: translateX(0) rotate(-12deg); }
  77% { opacity: .72; }
  88% { opacity: 0; transform: translateX(820%) rotate(-12deg); }
}

@keyframes sphere-orbit-drift-one {
  0% { transform: translate3d(-5px, 3px, 0) scale(.99); }
  100% { transform: translate3d(7px, -5px, 0) scale(1.012); }
}

@keyframes sphere-orbit-drift-two {
  0% { transform: translate3d(6px, -4px, 0) scale(1.01); }
  100% { transform: translate3d(-7px, 5px, 0) scale(.992); }
}

@keyframes sphere-orbit-field-spin {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

@media (max-width: 680px) {
  .home-page .hero-orbits,
  .home-page .intro-arch {
    --orbit-field-size: min(110vw, 58vh);
    top: 50%;
  }

  .home-page .hero-orbits { top: 38%; }

  .home-page .space-stars { opacity: .48; }
  .home-page .space-stars::after { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  .home-page .space-stars,
  .home-page .space-stars::before,
  .home-page .space-stars::after,
  .home-page .space-stars > i,
  .home-page .intro-arch::before,
  .home-page .intro-arch::after,
  .home-page .hero-orbits,
  .home-page .hero-orbits i {
    animation: none !important;
  }
}

/* Scroll-driven handoff between Slide 01 and Slide 02. */
:root {
  --hero-copy-opacity: 1;
  --hero-copy-shift: 0px;
  --hero-copy-blur: 0px;
  --hero-phone-opacity: 1;
  --hero-phone-shift: 0vw;
  --hero-phone-scale: 1;
  --problem-visual-opacity: 0;
  --problem-visual-shift: 82px;
  --problem-copy-opacity: 0;
  --problem-copy-shift: 110px;
}

.home-page .hero-copy {
  opacity: var(--hero-copy-opacity);
  filter: blur(var(--hero-copy-blur));
  transform: translateY(-45%) translateX(var(--hero-copy-shift));
  transition: none;
  will-change: transform, opacity, filter;
}

.home-page .hero-product-stage,
.home-page .hero-single-product {
  opacity: var(--hero-phone-opacity);
  transform: translateX(var(--hero-phone-shift)) scale(var(--hero-phone-scale));
  transform-origin: center;
  transition: none;
  will-change: transform, opacity;
}

.home-page .problem-visual {
  opacity: var(--problem-visual-opacity);
  transform: translateX(var(--problem-visual-shift));
  transition: none;
  will-change: transform, opacity;
}

.home-page .problem-copy {
  opacity: var(--problem-copy-opacity);
  transform: translateX(var(--problem-copy-shift));
  transition: none;
  will-change: transform, opacity;
}

.home-page .problem-slide-label,
.home-page .problem-slide-progress {
  opacity: var(--problem-copy-opacity);
  transition: none;
  will-change: opacity;
}

@media (max-width: 680px) {
  .home-page .hero-copy {
    transform: translateX(var(--hero-copy-shift));
  }
}

@media (max-height: 680px) and (min-width: 681px) {
  .home-page .hero-copy {
    transform: translateY(-39%) translateX(var(--hero-copy-shift)) scale(.9);
    transform-origin: left center;
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-page .hero-copy {
    opacity: 1;
    filter: none;
  }

  .home-page .hero-product-stage,
  .home-page .hero-single-product,
  .home-page .problem-visual,
  .home-page .problem-copy {
    opacity: 1;
    transform: none;
  }

  .home-page .problem-slide-label,
  .home-page .problem-slide-progress { opacity: 1; }
}

/* Slide 03 — the direct model. */
.home-page .direct-slide {
  display: grid;
  grid-template-columns: minmax(360px, .68fr) minmax(720px, 1.32fr);
  align-items: center;
  gap: clamp(18px, 2.5vw, 48px);
  padding: 124px max(42px, calc((100vw - 1500px) / 2)) 70px;
  background:
    radial-gradient(ellipse at 65% 72%, rgba(25, 82, 155, .22), transparent 40%),
    radial-gradient(circle at 58% 43%, rgba(38, 72, 146, .13), transparent 32%),
    #020407;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .13);
}

.home-page .direct-slide::after {
  content: "";
  position: absolute;
  z-index: 0;
  right: 5%;
  bottom: -22%;
  width: 68%;
  height: 48%;
  border-radius: 50%;
  background:
    repeating-linear-gradient(90deg, transparent 0 42px, rgba(72, 125, 214, .055) 43px 44px),
    repeating-linear-gradient(0deg, transparent 0 38px, rgba(72, 125, 214, .045) 39px 40px);
  transform: perspective(600px) rotateX(67deg);
  mask-image: radial-gradient(ellipse, #000 0 33%, transparent 72%);
  opacity: .55;
  pointer-events: none;
}

.home-page .space-stars-direct {
  z-index: 0;
  opacity: .58;
}

.home-page .direct-slide-label {
  position: absolute;
  z-index: 7;
  top: 82px;
  left: max(42px, calc((100vw - 1500px) / 2));
  display: flex;
  align-items: center;
  gap: 20px;
  color: rgba(255, 255, 255, .68);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .24em;
  text-transform: uppercase;
}

.home-page .direct-slide-label span { color: #fff; }

.home-page .direct-copy {
  position: relative;
  z-index: 5;
  align-self: center;
  max-width: 465px;
  padding-bottom: 14px;
}

.home-page .direct-copy > p:first-child {
  margin-bottom: 22px;
  color: #91b7ff;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.home-page .direct-copy h2 {
  margin: 0 0 24px;
  font-size: clamp(2.55rem, 3.35vw, 3.55rem);
  font-weight: 600;
  letter-spacing: -.025em;
  line-height: 1.08;
  text-transform: uppercase;
}

.home-page .direct-copy > p:nth-of-type(2) {
  color: rgba(255, 255, 255, .76);
  font-size: clamp(1rem, 1.27vw, 1.22rem);
  line-height: 1.55;
}

.home-page .direct-copy > p:last-child {
  margin-top: 34px;
  color: rgba(255, 255, 255, .68);
  font-size: clamp(.86rem, 1.04vw, 1rem);
  line-height: 1.55;
}

.home-page .direct-visual {
  position: relative;
  z-index: 3;
  min-height: min(710px, calc(100svh - 194px));
}

.home-page .direct-visual::after {
  content: "";
  position: absolute;
  z-index: 0;
  right: 5%;
  bottom: 1%;
  left: 5%;
  height: 15%;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(47, 110, 210, .22), rgba(2, 4, 7, 0) 70%);
  filter: blur(10px);
  pointer-events: none;
}

.home-page .direct-world {
  position: absolute;
  z-index: 1;
  top: 48%;
  left: 50%;
  width: min(530px, 38vw, 59vh);
  aspect-ratio: 1;
  border: 1px solid rgba(146, 190, 255, .54);
  border-radius: 50%;
  background:
    radial-gradient(circle at 34% 28%, rgba(148, 183, 239, .3), transparent 17%),
    radial-gradient(circle at 62% 70%, rgba(15, 52, 107, .72), transparent 39%),
    radial-gradient(circle at 48% 48%, rgba(39, 77, 137, .5), rgba(3, 11, 26, .96) 70%);
  box-shadow:
    inset -44px -30px 80px rgba(0, 3, 12, .82),
    inset 16px 12px 38px rgba(111, 161, 238, .13),
    0 0 3px #d4e7ff,
    0 0 19px rgba(112, 171, 255, .76),
    0 0 65px rgba(44, 110, 211, .25);
  transform: translate(-50%, -50%);
  overflow: hidden;
}

.home-page .direct-world::before {
  content: "";
  position: absolute;
  inset: 8%;
  border-radius: 50%;
  background:
    radial-gradient(ellipse at 68% 24%, rgba(178, 206, 242, .16) 0 2%, transparent 3%),
    radial-gradient(ellipse at 40% 66%, rgba(117, 159, 209, .12) 0 4%, transparent 5%),
    radial-gradient(ellipse at 28% 42%, rgba(112, 153, 203, .1) 0 6%, transparent 7%);
  filter: blur(2px);
}

.home-page .direct-world::after {
  content: "";
  position: absolute;
  top: -10%;
  right: 31%;
  width: 40%;
  height: 120%;
  background: linear-gradient(90deg, transparent, rgba(164, 203, 255, .12), transparent);
  transform: rotate(21deg);
  filter: blur(16px);
}

.home-page .direct-world > i {
  position: absolute;
  width: 62%;
  height: 24%;
  border: 1px solid rgba(108, 158, 225, .1);
  border-radius: 50%;
}

.home-page .direct-world > i:first-child { top: 27%; left: -10%; transform: rotate(18deg); }
.home-page .direct-world > i:last-child { right: -13%; bottom: 20%; transform: rotate(-23deg); }

.home-page .direct-orbits {
  position: absolute;
  z-index: 2;
  inset: 10% -2% 5%;
  pointer-events: none;
}

.home-page .direct-orbits > i {
  position: absolute;
  top: 54%;
  left: 50%;
  border: 1px solid rgba(151, 195, 255, .68);
  border-radius: 50%;
  box-shadow: 0 0 8px rgba(84, 153, 255, .45), inset 0 0 8px rgba(84, 153, 255, .12);
}

.home-page .direct-orbits > i:nth-child(1) {
  width: 95%;
  height: 36%;
  transform: translate(-50%, -50%) rotate(-4deg);
  animation: direct-orbit-one 16s ease-in-out infinite alternate;
}

.home-page .direct-orbits > i:nth-child(2) {
  width: 62%;
  height: 83%;
  border-color: rgba(121, 171, 242, .34);
  transform: translate(-50%, -50%) rotate(20deg);
  animation: direct-orbit-two 21s ease-in-out infinite alternate;
}

.home-page .direct-orbits > b {
  position: absolute;
  z-index: 3;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 6px #fff, 0 0 19px #78aaff, 0 0 34px #3177ff;
  animation: sphere-star-twinkle 4.6s ease-in-out infinite;
}

.home-page .direct-orbits > b:nth-of-type(1) { top: 46%; left: 3%; }
.home-page .direct-orbits > b:nth-of-type(2) { top: 44%; right: 3%; animation-delay: -2.2s; }

.home-page .direct-phone {
  position: absolute;
  z-index: 5;
  top: 45.5%;
  left: 50%;
  width: min(238px, 20vw, calc((100svh - 260px) * .485));
  filter:
    brightness(.94)
    drop-shadow(0 38px 52px rgba(0, 0, 0, .88))
    drop-shadow(0 0 20px rgba(132, 174, 240, .22));
  transform: translate(-50%, -50%);
}

.home-page .direct-role {
  position: absolute;
  z-index: 5;
  top: 72%;
  display: grid;
  min-width: 122px;
  place-items: center;
  gap: 13px;
  color: rgba(255, 255, 255, .86);
  transform: translateY(-50%);
}

.home-page .direct-role-customer { left: 0; }
.home-page .direct-role-business { right: 0; }

.home-page .direct-role > span {
  font-size: .67rem;
  font-weight: 700;
  letter-spacing: .065em;
  text-transform: uppercase;
}

.home-page .direct-role .problem-role-icon {
  width: 72px;
  height: 72px;
  padding: 18px;
  border-color: rgba(218, 233, 255, .7);
  box-shadow: 0 0 10px rgba(105, 162, 248, .15), inset 0 0 18px rgba(91, 147, 230, .08);
}

.home-page .direct-connection {
  position: absolute;
  z-index: 2;
  top: 72%;
  height: 2px;
  background: linear-gradient(90deg, rgba(112, 168, 251, .45), #d9e9ff 42%, rgba(112, 168, 251, .45));
  box-shadow: 0 0 5px rgba(123, 180, 255, .72), 0 0 18px rgba(62, 126, 224, .32);
}

.home-page .direct-connection-in { left: 10%; width: 35%; }
.home-page .direct-connection-out { right: 10%; width: 35%; }

.home-page .direct-app-node {
  position: absolute;
  z-index: 6;
  bottom: 0;
  left: 50%;
  display: grid;
  place-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, .82);
  text-align: center;
  transform: translateX(-50%);
}

.home-page .direct-app-node > i {
  width: 39px;
  height: 39px;
  border: 2px solid rgba(222, 235, 255, .82);
  border-radius: 50%;
  background: radial-gradient(circle at 34% 28%, #fff, #8f99c9 22%, #1e286d 54%, #04071c 76%);
  box-shadow: 0 0 8px #c7dcff, 0 0 24px rgba(77, 135, 237, .9), 0 0 45px rgba(44, 101, 210, .35);
}

.home-page .direct-app-node > span {
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .09em;
  line-height: 1.35;
  text-transform: uppercase;
}

.home-page .direct-slide-progress {
  position: absolute;
  z-index: 7;
  right: max(42px, calc((100vw - 1500px) / 2));
  bottom: 42px;
  width: min(350px, 32vw);
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 16px;
  color: rgba(255, 255, 255, .64);
}

.home-page .direct-slide-progress span {
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .18em;
}

.home-page .direct-slide-progress > i {
  height: 1px;
  background: linear-gradient(90deg, #dce7ff 0 34%, rgba(255, 255, 255, .26) 34% 100%);
}

.home-page .direct-slide-progress small {
  grid-column: 1 / -1;
  justify-self: end;
  font-size: .56rem;
  font-weight: 700;
  letter-spacing: .28em;
  text-transform: uppercase;
}

@keyframes direct-orbit-one {
  0% { transform: translate(-50%, -50%) rotate(-7deg); }
  100% { transform: translate(-50%, -50%) rotate(4deg); }
}

@keyframes direct-orbit-two {
  0% { transform: translate(-50%, -50%) rotate(16deg); }
  100% { transform: translate(-50%, -50%) rotate(25deg); }
}

@media (min-width: 681px) and (max-width: 1050px) {
  .home-page .direct-slide {
    grid-template-columns: minmax(270px, .7fr) minmax(440px, 1.3fr);
    gap: 14px;
    padding: 96px 30px 50px;
  }

  .home-page .direct-slide-label { top: 72px; left: 30px; font-size: .52rem; }
  .home-page .direct-copy { max-width: 315px; }
  .home-page .direct-copy > p:first-child { margin-bottom: 13px; font-size: .5rem; }
  .home-page .direct-copy h2 { margin-bottom: 15px; font-size: clamp(1.8rem, 3.55vw, 2.3rem); }
  .home-page .direct-copy > p:nth-of-type(2) { font-size: .76rem; }
  .home-page .direct-copy > p:last-child { margin-top: 21px; font-size: .68rem; }
  .home-page .direct-visual { min-height: min(530px, calc(100svh - 145px)); }
  .home-page .direct-world { width: min(365px, 43vw, 53vh); }
  .home-page .direct-phone { width: min(215px, 23vw, calc((100svh - 175px) * .485)); }
  .home-page .direct-role { min-width: 70px; gap: 7px; }
  .home-page .direct-role .problem-role-icon { width: 47px; height: 47px; padding: 11px; }
  .home-page .direct-role > span { font-size: .44rem; }
  .home-page .direct-user-icon::before { top: 8px; }
  .home-page .direct-connection-in { left: 9%; width: 35%; }
  .home-page .direct-connection-out { right: 9%; width: 35%; }
  .home-page .direct-app-node { bottom: -1%; gap: 6px; }
  .home-page .direct-app-node > i { width: 29px; height: 29px; }
  .home-page .direct-app-node > span { font-size: .43rem; }
  .home-page .direct-slide-progress { right: 30px; bottom: 24px; width: 240px; }
}

@media (max-width: 680px) {
  .home-page .direct-slide {
    display: block;
    padding: 72px 18px 42px;
  }

  .home-page .direct-slide-label { top: 68px; left: 18px; font-size: .48rem; }

  .home-page .direct-visual {
    position: absolute;
    top: 90px;
    right: 7px;
    left: 7px;
    min-height: 390px;
  }

  .home-page .direct-world { top: 46%; width: min(255px, 66vw, 38vh); }
  .home-page .direct-phone { top: 46%; width: min(164px, 42vw, calc((100svh - 405px) * .485)); }
  .home-page .direct-orbits { inset: 7% 0 3%; }
  .home-page .direct-role { top: 72%; min-width: 48px; gap: 5px; }
  .home-page .direct-role-customer { left: 1%; }
  .home-page .direct-role-business { right: 1%; }
  .home-page .direct-role .problem-role-icon { width: 35px; height: 35px; padding: 8px; }
  .home-page .direct-role > span { font-size: .34rem; }
  .home-page .direct-connection { top: 72%; height: 1px; }
  .home-page .direct-connection-in { left: 10%; width: 35%; }
  .home-page .direct-connection-out { right: 10%; width: 35%; }
  .home-page .direct-app-node { bottom: -1%; gap: 4px; }
  .home-page .direct-app-node > i { width: 27px; height: 27px; border-width: 1px; }
  .home-page .direct-app-node > span { font-size: .36rem; }

  .home-page .direct-copy {
    position: absolute;
    z-index: 7;
    right: 18px;
    bottom: 66px;
    left: 18px;
    max-width: 460px;
    padding: 0;
  }

  .home-page .direct-copy > p:first-child { margin-bottom: 8px; font-size: .46rem; }
  .home-page .direct-copy h2 { margin-bottom: 9px; font-size: clamp(1.4rem, 6.8vw, 1.9rem); line-height: 1.03; }
  .home-page .direct-copy > p:nth-of-type(2) { font-size: .62rem; line-height: 1.4; }
  .home-page .direct-copy > p:last-child { display: none; }

  .home-page .direct-slide-progress { right: 18px; bottom: 18px; width: 190px; }
  .home-page .direct-slide-progress small { font-size: .42rem; }
}

/* Scroll-driven handoff across Slides 01–03. */
:root {
  --direct-visual-opacity: 0;
  --direct-visual-shift: 85px;
  --direct-copy-opacity: 0;
  --direct-copy-shift: 110px;
}

.home-page .direct-visual {
  opacity: var(--direct-visual-opacity);
  transform: translate3d(var(--direct-visual-shift), 0, 0);
  transition: none;
  will-change: transform, opacity;
}

.home-page .direct-copy {
  opacity: var(--direct-copy-opacity);
  transform: translate3d(var(--direct-copy-shift), 0, 0);
  transition: none;
  will-change: transform, opacity;
}

.home-page .direct-slide-label,
.home-page .direct-slide-progress {
  opacity: var(--direct-copy-opacity);
  transition: none;
  will-change: opacity;
}

@media (prefers-reduced-motion: reduce) {
  .home-page .direct-orbits > i,
  .home-page .direct-orbits > b { animation: none !important; }

  .home-page .direct-visual,
  .home-page .direct-copy {
    opacity: 1;
    transform: none;
  }

  .home-page .direct-slide-label,
  .home-page .direct-slide-progress { opacity: 1; }
}

/* Keep the entire Slide 03 composition on screen in tall or compact desktop windows. */
@media (min-width: 681px) and (max-width: 1050px),
       (min-width: 681px) and (max-aspect-ratio: 4 / 3) {
  .home-page .site-header {
    z-index: 300;
    opacity: 1;
    visibility: visible;
  }

  .home-page .direct-slide {
    display: block;
    padding: 0;
  }

  .home-page .direct-slide-label {
    top: 76px;
    left: 30px;
    font-size: .52rem;
  }

  .home-page .direct-copy {
    position: absolute;
    top: 50%;
    bottom: auto;
    left: clamp(28px, 4vw, 62px);
    width: min(270px, 29vw);
    max-width: none;
    margin-top: -146px;
    padding: 0;
    color: #fff;
  }

  .home-page .direct-copy > p:first-child {
    margin-bottom: 14px;
    font-size: .54rem;
  }

  .home-page .direct-copy h2 {
    margin-bottom: 16px;
    font-size: clamp(1.7rem, 3.55vw, 2.4rem);
    line-height: 1.06;
  }

  .home-page .direct-copy > p:nth-of-type(2) {
    font-size: clamp(.72rem, 1.25vw, .9rem);
    line-height: 1.5;
  }

  .home-page .direct-copy > p:last-child {
    display: block;
    margin-top: 22px;
    font-size: clamp(.64rem, 1.05vw, .78rem);
  }

  .home-page .direct-visual {
    position: absolute;
    top: 92px;
    right: 22px;
    bottom: 48px;
    left: 31%;
    width: auto;
    min-height: 0;
    height: auto;
  }

  .home-page .direct-world {
    width: min(335px, 43vw, 49vh);
  }

  .home-page .direct-phone {
    top: 45%;
    width: min(220px, 28vw, calc((100svh - 235px) * .485));
  }

  .home-page .direct-role {
    top: 72%;
    min-width: 68px;
    gap: 7px;
  }

  .home-page .direct-role-customer { left: 0; }
  .home-page .direct-role-business { right: 0; }

  .home-page .direct-role .problem-role-icon {
    width: 45px;
    height: 45px;
    padding: 11px;
  }

  .home-page .direct-role > span { font-size: .42rem; }
  .home-page .direct-connection { top: 72%; height: 1px; }
  .home-page .direct-connection-in { left: 10%; width: 35%; }
  .home-page .direct-connection-out { right: 10%; width: 35%; }

  .home-page .direct-app-node {
    bottom: 0;
    gap: 6px;
  }

  .home-page .direct-app-node > i {
    width: 29px;
    height: 29px;
    border-width: 1px;
  }

  .home-page .direct-app-node > span { font-size: .43rem; }

  .home-page .direct-slide-progress {
    right: 30px;
    bottom: 22px;
    width: 230px;
  }
}

/* Slide 04 — a working customer journey. */
.home-page .product-journey-slide {
  display: grid;
  grid-template-columns: minmax(650px, 1.12fr) minmax(470px, .88fr);
  align-items: center;
  gap: clamp(42px, 4vw, 66px);
  padding: 116px max(42px, calc((100vw - 1500px) / 2)) 72px;
  background:
    radial-gradient(ellipse at 34% 54%, rgba(21, 66, 132, .2), transparent 42%),
    radial-gradient(circle at 78% 34%, rgba(23, 38, 95, .11), transparent 30%),
    #020407;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .13);
}

.home-page .space-stars-journey {
  z-index: 0;
  opacity: .56;
}

.home-page .product-journey-visual {
  position: relative;
  z-index: 3;
  width: 100%;
  min-height: 0;
  max-height: min(690px, calc(100svh - 190px));
  aspect-ratio: 1.22;
}

.home-page .product-journey-visual::after {
  content: "";
  position: absolute;
  z-index: 0;
  right: 8%;
  bottom: 4%;
  left: 8%;
  height: 18%;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(34, 91, 180, .24), transparent 70%);
  filter: blur(11px);
}

.home-page .product-journey-orbits {
  position: absolute;
  z-index: 1;
  inset: 5% 0 4%;
  pointer-events: none;
}

.home-page .product-journey-orbits > i {
  position: absolute;
  top: 49%;
  left: 50%;
  border: 1px solid rgba(135, 184, 255, .65);
  border-radius: 50%;
  box-shadow: 0 0 8px rgba(87, 150, 245, .48), inset 0 0 9px rgba(67, 134, 236, .11);
}

.home-page .product-journey-orbits > i:nth-child(1) {
  width: 91%;
  height: 78%;
  transform: translate(-50%, -50%) rotate(-4deg);
  animation: journey-orbit-one 18s ease-in-out infinite alternate;
}

.home-page .product-journey-orbits > i:nth-child(2) {
  width: 79%;
  height: 65%;
  border-color: rgba(112, 165, 244, .24);
  opacity: .32;
  transform: translate(-50%, -50%) rotate(-12deg);
  animation: journey-orbit-two 23s ease-in-out infinite alternate;
}

.home-page .product-journey-orbits > b {
  position: absolute;
  z-index: 2;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 6px #fff, 0 0 18px #77aaff, 0 0 34px #3377ff;
  animation: sphere-star-twinkle 4.8s ease-in-out infinite;
}

.home-page .product-journey-orbits > b:nth-of-type(1) { top: 15%; right: 12%; }
.home-page .product-journey-orbits > b:nth-of-type(2) { bottom: 12%; left: 18%; animation-delay: -2.3s; }

.home-page .journey-device {
  position: absolute;
  z-index: 3;
  top: 50%;
  left: 50%;
  width: min(188px, 14.5vw, calc((100svh - 250px) * .485));
  margin: 0;
  filter: brightness(.43) saturate(.65) drop-shadow(0 30px 42px rgba(0, 0, 0, .72));
  transform: translate(-50%, -50%);
}

.home-page .journey-device-discover { left: 32%; }
.home-page .journey-device-return { left: 68%; }

.home-page .journey-device-order {
  z-index: 5;
  top: 47%;
  width: min(230px, 18vw, calc((100svh - 205px) * .485));
  filter: brightness(.98) saturate(.9) drop-shadow(0 37px 52px rgba(0, 0, 0, .86)) drop-shadow(0 0 16px rgba(120, 166, 234, .16));
}

.home-page .journey-device .device-frame { border-color: rgba(235, 241, 249, .4); }

.home-page .journey-role {
  position: absolute;
  z-index: 7;
  display: grid;
  min-width: 96px;
  place-items: center;
  gap: 11px;
  color: rgba(255, 255, 255, .84);
}

.home-page .journey-role-discover { top: 48%; left: 0; transform: translateY(-50%); }
.home-page .journey-role-order { top: 48%; right: 0; transform: translateY(-50%); }
.home-page .journey-role-return { bottom: 4%; left: 50%; transform: translateX(-50%); }

.home-page .journey-role > i {
  position: relative;
  display: grid;
  width: 56px;
  height: 56px;
  place-items: center;
  border: 1px solid rgba(225, 236, 255, .72);
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(94, 151, 239, .15), inset 0 0 18px rgba(91, 147, 230, .08);
  padding: 14px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.home-page .journey-role > span {
  font-size: .58rem;
  font-weight: 700;
  letter-spacing: .075em;
  text-transform: uppercase;
}

.home-page .journey-icon-search::before {
  content: "";
  width: 19px;
  height: 19px;
  border: 2px solid currentColor;
  border-radius: 50%;
  transform: translate(-2px, -2px);
}

.home-page .journey-icon-search::after {
  content: "";
  position: absolute;
  right: 13px;
  bottom: 13px;
  width: 11px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transform: rotate(45deg);
}

.home-page .journey-icon-order::before {
  content: "";
  position: absolute;
  top: 17px;
  left: 15px;
  width: 21px;
  height: 14px;
  border: 2px solid currentColor;
  border-radius: 2px 2px 6px 6px;
}

.home-page .journey-icon-order::after {
  content: "";
  position: absolute;
  top: 19px;
  right: 12px;
  width: 7px;
  height: 8px;
  border: 2px solid currentColor;
  border-left: 0;
  border-radius: 0 6px 6px 0;
}

.home-page .journey-icon-return::before {
  content: "☆";
  font-size: 1.65rem;
  font-weight: 300;
  line-height: 1;
}

.home-page .product-journey-copy {
  position: relative;
  z-index: 5;
  align-self: center;
  max-width: 550px;
  padding-bottom: 10px;
}

.home-page .product-journey-copy > p:first-child {
  margin-bottom: 28px;
  color: #91b7ff;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .2em;
  line-height: 1.45;
  text-transform: uppercase;
}

.home-page .product-journey-copy h2 {
  margin: 0 0 30px;
  font-size: clamp(2.2rem, 2.75vw, 3.05rem);
  font-weight: 500;
  letter-spacing: .012em;
  line-height: 1.18;
  text-transform: uppercase;
}

.home-page .product-journey-copy > p:nth-of-type(2) {
  max-width: 510px;
  color: rgba(255, 255, 255, .72);
  font-size: clamp(.95rem, 1.1vw, 1.12rem);
  letter-spacing: .008em;
  line-height: 1.65;
}

.home-page .product-journey-copy > strong {
  display: block;
  margin-top: 38px;
  color: #91b7ff;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .18em;
  line-height: 1.5;
  text-transform: uppercase;
}

.home-page .product-journey-progress {
  position: absolute;
  z-index: 7;
  right: max(42px, calc((100vw - 1500px) / 2));
  bottom: 42px;
  width: min(350px, 32vw);
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 16px;
  color: rgba(255, 255, 255, .64);
}

.home-page .product-journey-progress span {
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .18em;
}

.home-page .product-journey-progress > i {
  height: 1px;
  background: linear-gradient(90deg, #dce7ff 0 45%, rgba(255, 255, 255, .26) 45% 100%);
}

.home-page .product-journey-progress small {
  grid-column: 1 / -1;
  justify-self: end;
  font-size: .56rem;
  font-weight: 700;
  letter-spacing: .28em;
  text-transform: uppercase;
}

@keyframes journey-orbit-one {
  0% { transform: translate(-50%, -50%) rotate(-7deg); }
  100% { transform: translate(-50%, -50%) rotate(3deg); }
}

@keyframes journey-orbit-two {
  0% { transform: translate(-50%, -50%) rotate(-15deg); }
  100% { transform: translate(-50%, -50%) rotate(-7deg); }
}

@media (min-width: 681px) and (max-width: 1250px),
       (min-width: 681px) and (max-aspect-ratio: 4 / 3) {
  .home-page .product-journey-slide {
    grid-template-columns: minmax(0, 1.1fr) minmax(300px, .9fr);
    gap: 24px;
    padding: 94px 30px 50px;
  }

  .home-page .product-journey-visual {
    min-height: 0;
    max-height: calc(100svh - 145px);
    aspect-ratio: 1.2;
  }
  .home-page .journey-device { width: min(128px, 15.5vw, calc((100svh - 220px) * .485)); }
  .home-page .journey-device-order { width: min(158px, 19vw, calc((100svh - 180px) * .485)); }
  .home-page .journey-role { min-width: 58px; gap: 6px; }
  .home-page .journey-role > i { width: 38px; height: 38px; padding: 9px; }
  .home-page .journey-role > span { font-size: .4rem; }
  .home-page .journey-icon-search::before { width: 12px; height: 12px; border-width: 1px; }
  .home-page .journey-icon-search::after { right: 9px; bottom: 9px; width: 7px; height: 1px; }
  .home-page .journey-icon-order::before { top: 12px; left: 10px; width: 14px; height: 9px; border-width: 1px; }
  .home-page .journey-icon-order::after { top: 13px; right: 8px; width: 5px; height: 6px; border-width: 1px; }
  .home-page .journey-icon-return::before { font-size: 1.2rem; }
  .home-page .product-journey-copy { max-width: 360px; }
  .home-page .product-journey-copy > p:first-child { margin-bottom: 16px; font-size: .5rem; }
  .home-page .product-journey-copy h2 { margin-bottom: 18px; font-size: clamp(1.65rem, 3vw, 2.05rem); letter-spacing: .01em; line-height: 1.16; }
  .home-page .product-journey-copy > p:nth-of-type(2) { font-size: .76rem; line-height: 1.58; }
  .home-page .product-journey-copy > strong { margin-top: 24px; font-size: .5rem; line-height: 1.45; }
  .home-page .product-journey-progress { right: 30px; bottom: 24px; width: 240px; }
}

@media (max-width: 680px) {
  .home-page .product-journey-slide {
    display: block;
    padding: 72px 18px 42px;
  }

  .home-page .product-journey-visual {
    position: absolute;
    top: 76px;
    right: 5px;
    left: 5px;
    min-height: 390px;
    aspect-ratio: auto;
  }

  .home-page .journey-device { width: min(92px, 23vw, calc((100svh - 445px) * .485)); }
  .home-page .journey-device-order { width: min(120px, 30vw, calc((100svh - 400px) * .485)); }
  .home-page .journey-device-discover { left: 31%; }
  .home-page .journey-device-return { left: 69%; }
  .home-page .journey-role { min-width: 46px; gap: 4px; }
  .home-page .journey-role > i { width: 32px; height: 32px; padding: 7px; }
  .home-page .journey-role > span { font-size: .34rem; }
  .home-page .journey-role-discover { left: 0; }
  .home-page .journey-role-order { right: 0; }
  .home-page .journey-icon-search::before { width: 10px; height: 10px; border-width: 1px; }
  .home-page .journey-icon-search::after { right: 7px; bottom: 7px; width: 6px; height: 1px; }
  .home-page .journey-icon-order::before { top: 10px; left: 8px; width: 12px; height: 8px; border-width: 1px; }
  .home-page .journey-icon-order::after { top: 11px; right: 6px; width: 4px; height: 5px; border-width: 1px; }
  .home-page .journey-icon-return::before { font-size: 1.05rem; }

  .home-page .product-journey-copy {
    position: absolute;
    z-index: 7;
    right: 18px;
    bottom: 70px;
    left: 18px;
    max-width: 440px;
  }

  .home-page .product-journey-copy > p:first-child { margin-bottom: 8px; font-size: .46rem; }
  .home-page .product-journey-copy h2 { margin-bottom: 11px; font-size: clamp(1.36rem, 6.6vw, 1.85rem); letter-spacing: .006em; line-height: 1.12; }
  .home-page .product-journey-copy > p:nth-of-type(2) { font-size: .63rem; line-height: 1.52; }
  .home-page .product-journey-copy > strong { display: none; }
  .home-page .product-journey-progress { right: 18px; bottom: 18px; width: 190px; }
  .home-page .product-journey-progress small { font-size: .42rem; }
}

/* Scroll-driven handoff from the direct model to the working product. */
:root {
  --journey-visual-opacity: 0;
  --journey-visual-shift: 90px;
  --journey-copy-opacity: 0;
  --journey-copy-shift: 110px;
}

.home-page .product-journey-visual {
  opacity: var(--journey-visual-opacity);
  transform: translate3d(var(--journey-visual-shift), 0, 0);
  transition: none;
  will-change: transform, opacity;
}

.home-page .product-journey-copy {
  opacity: var(--journey-copy-opacity);
  transform: translate3d(var(--journey-copy-shift), 0, 0);
  transition: none;
  will-change: transform, opacity;
}

.home-page .product-journey-progress {
  opacity: var(--journey-copy-opacity);
  transition: none;
  will-change: opacity;
}

@media (prefers-reduced-motion: reduce) {
  .home-page .product-journey-orbits > i,
  .home-page .product-journey-orbits > b { animation: none !important; }

  .home-page .product-journey-visual,
  .home-page .product-journey-copy {
    opacity: 1;
    transform: none;
  }

  .home-page .product-journey-progress { opacity: 1; }
}

/* Unified presentation typography — open, editorial, and consistent. */
.home-page .hero-copy h1,
.home-page .problem-copy h2,
.home-page .direct-copy h2,
.home-page .product-journey-copy h2 {
  font-family: var(--sans);
  font-weight: 500;
  font-stretch: normal;
  font-kerning: normal;
  letter-spacing: .01em;
  line-height: 1.16;
  text-wrap: balance;
}

.home-page .hero-copy h1 {
  margin: 28px 0 24px;
  font-size: clamp(2.75rem, 3.35vw, 3.5rem);
  line-height: 1.09;
}

.home-page .problem-copy h2,
.home-page .direct-copy h2,
.home-page .product-journey-copy h2 {
  margin-bottom: 30px;
  font-size: clamp(2.15rem, 2.75vw, 3.05rem);
}

.home-page .hero-copy .eyebrow,
.home-page .problem-copy > p:first-child,
.home-page .direct-copy > p:first-child,
.home-page .product-journey-copy > p:first-child {
  letter-spacing: .19em;
  line-height: 1.48;
}

.home-page .problem-copy > p:first-child,
.home-page .direct-copy > p:first-child,
.home-page .product-journey-copy > p:first-child {
  margin-bottom: 27px;
}

.home-page .hero-copy > p:not(.eyebrow),
.home-page .problem-copy > p:last-of-type,
.home-page .direct-copy > p:nth-of-type(2),
.home-page .direct-copy > p:last-child,
.home-page .product-journey-copy > p:nth-of-type(2) {
  font-kerning: normal;
  letter-spacing: .008em;
  line-height: 1.64;
  text-wrap: pretty;
}

.home-page .hero-copy > p:not(.eyebrow) { max-width: 420px; font-size: .88rem; }
.home-page .problem-copy > p:last-of-type { max-width: 530px; font-size: clamp(.92rem, 1.08vw, 1.08rem); }
.home-page .direct-copy { max-width: 510px; }
.home-page .direct-copy > p:nth-of-type(2) { font-size: clamp(.92rem, 1.1vw, 1.1rem); }
.home-page .direct-copy > p:last-child { margin-top: 38px; }
.home-page .hero-actions { margin-top: 30px; }

.home-page .problem-slide-label,
.home-page .direct-slide-label,
.home-page .problem-slide-progress small,
.home-page .direct-slide-progress small,
.home-page .product-journey-progress small {
  letter-spacing: .22em;
  line-height: 1.45;
}

@media (min-width: 681px) and (max-width: 1250px),
       (min-width: 681px) and (max-aspect-ratio: 4 / 3) {
  .home-page .hero-copy h1 {
    margin: 18px 0 15px;
    font-size: clamp(2.05rem, 3.55vw, 2.7rem);
    line-height: 1.1;
  }

  .home-page .problem-copy h2,
  .home-page .direct-copy h2,
  .home-page .product-journey-copy h2 {
    margin-bottom: 18px;
    font-size: clamp(1.62rem, 2.6vw, 2.1rem);
    line-height: 1.17;
  }

  .home-page .problem-copy > p:first-child,
  .home-page .direct-copy > p:first-child,
  .home-page .product-journey-copy > p:first-child { margin-bottom: 16px; }

  .home-page .hero-copy > p:not(.eyebrow),
  .home-page .problem-copy > p:last-of-type,
  .home-page .direct-copy > p:nth-of-type(2),
  .home-page .product-journey-copy > p:nth-of-type(2) {
    font-size: .75rem;
    line-height: 1.58;
  }

  .home-page .direct-copy > p:last-child {
    margin-top: 24px;
    font-size: .68rem;
    line-height: 1.58;
  }
}

@media (max-width: 680px) {
  .home-page .hero-copy h1 {
    margin: 11px 0 10px;
    font-size: clamp(1.9rem, 9vw, 2.45rem);
    line-height: 1.1;
  }

  .home-page .problem-copy h2,
  .home-page .direct-copy h2,
  .home-page .product-journey-copy h2 {
    margin-bottom: 11px;
    font-size: clamp(1.32rem, 6.2vw, 1.75rem);
    line-height: 1.15;
  }

  .home-page .problem-copy > p:first-child,
  .home-page .direct-copy > p:first-child,
  .home-page .product-journey-copy > p:first-child { margin-bottom: 9px; }

  .home-page .hero-copy > p:not(.eyebrow),
  .home-page .problem-copy > p:last-of-type,
  .home-page .direct-copy > p:nth-of-type(2),
  .home-page .product-journey-copy > p:nth-of-type(2) {
    font-size: .63rem;
    line-height: 1.5;
  }
}

/* Slide 07 — See the experience first, then connect Square. */
:root {
  --how-visual-opacity: 0;
  --how-visual-shift: 90px;
  --how-copy-opacity: 0;
  --how-copy-shift: 110px;
}

.home-page .how-slide {
  display: grid;
  grid-template-columns: minmax(340px, .7fr) minmax(760px, 1.3fr);
  align-items: center;
  gap: clamp(28px, 3vw, 54px);
  padding: 116px max(42px, calc((100vw - 1500px) / 2)) 58px;
  background:
    radial-gradient(ellipse at 60% 55%, rgba(27, 76, 151, .2), transparent 38%),
    radial-gradient(circle at 38% 78%, rgba(13, 38, 83, .13), transparent 28%),
    #020407;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .13);
}

.home-page .space-stars-how {
  z-index: 0;
  opacity: .58;
}

.home-page .how-slide-label {
  position: absolute;
  z-index: 7;
  top: 82px;
  left: max(42px, calc((100vw - 1500px) / 2));
  display: flex;
  align-items: center;
  gap: 20px;
  color: rgba(255, 255, 255, .68);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .22em;
  line-height: 1.45;
  text-transform: uppercase;
  opacity: var(--how-copy-opacity);
  transform: translateX(var(--how-copy-shift));
  will-change: transform, opacity;
}

.home-page .how-slide-label span { color: #fff; }

.home-page .how-copy {
  position: relative;
  z-index: 6;
  max-width: 440px;
  opacity: var(--how-copy-opacity);
  transform: translateX(var(--how-copy-shift));
  will-change: transform, opacity;
}

.home-page .how-copy > p:first-child {
  margin-bottom: 27px;
  color: #91b7ff;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .19em;
  line-height: 1.48;
  text-transform: uppercase;
}

.home-page .how-copy h2 {
  margin: 0 0 30px;
  font-family: var(--sans);
  font-size: clamp(2.15rem, 2.75vw, 3.05rem);
  font-weight: 500;
  font-kerning: normal;
  letter-spacing: .01em;
  line-height: 1.16;
  text-transform: uppercase;
  text-wrap: balance;
}

.home-page .how-copy > p:nth-of-type(2),
.home-page .how-copy > p:nth-of-type(3) {
  color: rgba(255, 255, 255, .72);
  font-size: clamp(.9rem, 1.04vw, 1.04rem);
  letter-spacing: .008em;
  line-height: 1.62;
  text-wrap: pretty;
}

.home-page .how-copy > p:nth-of-type(3) {
  max-width: 390px;
  margin-top: 34px;
  color: rgba(255, 255, 255, .56);
  font-size: clamp(.74rem, .84vw, .86rem);
}

.home-page .how-visual {
  position: relative;
  z-index: 4;
  width: 100%;
  min-height: 0;
  max-height: min(690px, calc(100svh - 180px));
  aspect-ratio: 1.46;
  opacity: var(--how-visual-opacity);
  transform: translateX(var(--how-visual-shift));
  will-change: transform, opacity;
}

.home-page .how-visual::after {
  content: "";
  position: absolute;
  z-index: 0;
  right: 24%;
  bottom: 0;
  left: 4%;
  height: 16%;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(44, 107, 208, .25), transparent 70%);
  filter: blur(15px);
}

.home-page .how-rings {
  position: absolute;
  z-index: auto;
  inset: 4% 18% 3% 0;
  pointer-events: none;
}

.home-page .how-rings > i,
.home-page .how-rings > b {
  position: absolute;
  left: 2%;
  width: 92%;
  height: 27%;
  border: 1px solid rgba(160, 202, 255, .92);
  border-radius: 50%;
  box-shadow: 0 0 6px rgba(173, 211, 255, .75), 0 0 22px rgba(70, 133, 229, .38), inset 0 0 12px rgba(64, 128, 221, .12);
  transform: rotate(.8deg);
  animation: how-ring-breathe 6s ease-in-out infinite;
}

.home-page .how-rings > i { z-index: 1; }

.home-page .how-rings > b {
  z-index: 6;
  clip-path: inset(49% -20% -20% -20%);
}

.home-page .how-rings > i:nth-of-type(1),
.home-page .how-rings > b:nth-of-type(1) { top: 5%; }

.home-page .how-rings > i:nth-of-type(2),
.home-page .how-rings > b:nth-of-type(2) {
  top: 36.5%;
  transform: rotate(-.7deg);
  animation-delay: -4s;
}

.home-page .how-rings > i:nth-of-type(3),
.home-page .how-rings > b:nth-of-type(3) {
  top: 68%;
  transform: rotate(.55deg);
  animation-delay: -2s;
}

@keyframes how-ring-breathe {
  0%, 100% { opacity: .52; filter: brightness(.82); }
  33% { opacity: 1; filter: brightness(1.28); }
  62% { opacity: .68; filter: brightness(.95); }
}

.home-page .how-phone {
  position: absolute;
  z-index: 5;
  top: 50%;
  left: 36%;
  width: min(272px, 21vw, calc((100svh - 178px) * .485));
  filter: brightness(.97) saturate(.9) drop-shadow(0 38px 54px rgba(0, 0, 0, .85)) drop-shadow(0 0 18px rgba(111, 162, 236, .2));
  transform: translate(-50%, -50%);
}

.home-page .how-steps {
  position: absolute;
  z-index: 7;
  inset: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.home-page .how-steps li {
  position: absolute;
  right: 0;
  left: 69%;
  display: grid;
  grid-template-columns: 58px 1fr;
  align-items: center;
  gap: 24px;
  color: rgba(255, 255, 255, .74);
}

.home-page .how-steps li:nth-child(1) { top: 13%; }
.home-page .how-steps li:nth-child(2) { top: 44.5%; }
.home-page .how-steps li:nth-child(3) { top: 76%; }

.home-page .how-steps span {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border: 1px solid rgba(180, 211, 255, .88);
  border-radius: 50%;
  background: rgba(3, 8, 16, .92);
  box-shadow: 0 0 9px rgba(187, 218, 255, .55), 0 0 24px rgba(77, 141, 235, .28), inset 0 0 14px rgba(89, 145, 229, .14);
  color: #fff;
  font-size: .83rem;
  font-weight: 500;
  letter-spacing: .08em;
}

.home-page .how-steps strong {
  font-size: .69rem;
  font-weight: 700;
  letter-spacing: .2em;
  line-height: 1.5;
  text-transform: uppercase;
}

@media (min-width: 681px) and (max-width: 1250px),
       (min-width: 681px) and (max-aspect-ratio: 4 / 3) {
  .home-page .how-slide {
    grid-template-columns: minmax(270px, .72fr) minmax(0, 1.28fr);
    gap: 22px;
    padding: 94px 30px 42px;
  }

  .home-page .how-slide-label { top: 74px; left: 30px; font-size: .52rem; }
  .home-page .how-copy { max-width: 320px; }
  .home-page .how-copy > p:first-child { margin-bottom: 16px; font-size: .5rem; }
  .home-page .how-copy h2 { margin-bottom: 18px; font-size: clamp(1.62rem, 2.6vw, 2.1rem); line-height: 1.17; }
  .home-page .how-copy > p:nth-of-type(2) { font-size: .75rem; line-height: 1.58; }
  .home-page .how-copy > p:nth-of-type(3) { margin-top: 22px; font-size: .62rem; line-height: 1.52; }
  .home-page .how-visual { max-height: calc(100svh - 145px); aspect-ratio: 1.42; }
  .home-page .how-phone { width: min(198px, 22vw, calc((100svh - 156px) * .485)); }
  .home-page .how-steps li { left: 67%; grid-template-columns: 42px 1fr; gap: 13px; }
  .home-page .how-steps span { width: 42px; height: 42px; font-size: .58rem; }
  .home-page .how-steps strong { font-size: .46rem; }
}

@media (max-width: 680px) {
  .home-page .how-slide { display: block; padding: 72px 18px 34px; }
  .home-page .how-slide-label { top: 68px; left: 18px; font-size: .48rem; }

  .home-page .how-visual {
    position: absolute;
    top: 82px;
    right: 6px;
    left: 6px;
    width: auto;
    height: min(48svh, 410px);
    aspect-ratio: auto;
  }

  .home-page .how-rings { inset: 3% 8% 2%; }
  .home-page .how-phone { left: 44%; width: min(142px, 36vw, calc((48svh - 20px) * .485)); }
  .home-page .how-steps li { left: 72%; grid-template-columns: 30px 1fr; gap: 6px; }
  .home-page .how-steps span { width: 30px; height: 30px; font-size: .42rem; }
  .home-page .how-steps strong { font-size: .31rem; letter-spacing: .12em; line-height: 1.4; }

  .home-page .how-copy {
    position: absolute;
    right: 18px;
    bottom: 26px;
    left: 18px;
    max-width: 430px;
  }

  .home-page .how-copy > p:first-child { margin-bottom: 9px; font-size: .46rem; }
  .home-page .how-copy h2 { margin-bottom: 11px; font-size: clamp(1.32rem, 6.2vw, 1.75rem); line-height: 1.15; }
  .home-page .how-copy > p:nth-of-type(2) { font-size: .63rem; line-height: 1.5; }
  .home-page .how-copy > p:nth-of-type(3) { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  .home-page .how-rings > i,
  .home-page .how-rings > b { animation: none; }

  .home-page .how-copy,
  .home-page .how-visual,
  .home-page .how-slide-label {
    opacity: 1;
    transform: none;
  }
}

/* Keep the opening sequence smooth by painting and animating only what is visible. */
.home-page .home-slide {
  contain: layout paint style;
  contain-intrinsic-size: 100vw 100svh;
}

.home-page .home-slide:not(.is-active):not(.is-nearby) {
  content-visibility: hidden;
  visibility: hidden;
}

/* Slides 03–04 stay visually rich without live CSS filters on moving layers. */
.home-page .direct-visual::after,
.home-page .direct-world::before,
.home-page .direct-world::after,
.home-page .product-journey-visual::after {
  filter: none;
}

.home-page .direct-phone,
.home-page .journey-device,
.home-page .journey-device-order {
  filter: none;
}

.home-page .journey-device { opacity: .43; }
.home-page .journey-device-order { opacity: 1; }

.home-page .direct-phone .device-frame,
.home-page .journey-device .device-frame {
  box-shadow: 0 26px 40px rgba(0, 0, 0, .72);
}

.home-page .journey-device-order .device-frame {
  box-shadow: 0 30px 46px rgba(0, 0, 0, .82), 0 0 12px rgba(120, 166, 234, .14);
}

.home-page .space-stars-direct,
.home-page .space-stars-journey,
.home-page .direct-orbits > i,
.home-page .product-journey-orbits > i {
  backface-visibility: hidden;
  will-change: transform;
}

.home-page .direct-world {
  contain: paint;
  transform: translate3d(-50%, -50%, 0);
}

.home-page .home-slide:not(.is-active) *,
.home-page .home-slide:not(.is-active) *::before,
.home-page .home-slide:not(.is-active) *::after,
.home-page .home-slide.is-active:not(.is-motion-ready) *,
.home-page .home-slide.is-active:not(.is-motion-ready) *::before,
.home-page .home-slide.is-active:not(.is-motion-ready) *::after,
.home-page.intro-running .home-slide *,
.home-page.intro-running .home-slide *::before,
.home-page.intro-running .home-slide *::after {
  animation-play-state: paused !important;
}

.home-page.intro-running .home-deck,
.home-page.intro-running .site-header {
  visibility: hidden;
}

.home-page .cinematic-intro::after { filter: none; }

.home-page .intro-mark,
.home-page .intro-arch,
.home-page .intro-single-phone {
  will-change: transform, opacity;
}

.home-page .intro-single-phone,
.home-page .cinematic-intro.stage-phone .intro-single-phone,
.home-page .cinematic-intro.stage-screen .intro-single-phone,
.home-page .cinematic-intro.stage-settle .intro-single-phone {
  filter: none;
}

.home-page .intro-single-phone {
  transition-property: opacity, transform;
}

/* Slide 08 — Founding pilot pricing. */
:root {
  --pilot-visual-opacity: 0;
  --pilot-visual-shift: 90px;
  --pilot-copy-opacity: 0;
  --pilot-copy-shift: 110px;
}

.home-page .pilot-slide {
  display: grid;
  grid-template-columns: minmax(330px, .84fr) minmax(340px, .72fr) minmax(350px, .84fr);
  align-items: center;
  gap: clamp(24px, 3vw, 54px);
  padding: 116px max(42px, calc((100vw - 1500px) / 2)) 54px;
  background:
    radial-gradient(ellipse at 50% 48%, rgba(121, 150, 190, .15), transparent 28%),
    radial-gradient(ellipse at 50% 100%, rgba(21, 54, 101, .2), transparent 44%),
    #020407;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .13);
}

.home-page .space-stars-pilot {
  z-index: 0;
  opacity: .35;
}

.home-page .pilot-slide-label {
  position: absolute;
  z-index: 8;
  top: 82px;
  left: max(42px, calc((100vw - 1500px) / 2));
  display: flex;
  align-items: center;
  gap: 20px;
  color: rgba(255, 255, 255, .68);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .22em;
  line-height: 1.45;
  text-transform: uppercase;
  opacity: var(--pilot-copy-opacity);
  transform: translateX(var(--pilot-copy-shift));
}

.home-page .pilot-slide-label span { color: #fff; }

.home-page .pilot-copy,
.home-page .pilot-pricing {
  position: relative;
  z-index: 6;
  opacity: var(--pilot-copy-opacity);
  transform: translateX(var(--pilot-copy-shift));
  will-change: transform, opacity;
}

.home-page .pilot-copy { max-width: 470px; }

.home-page .pilot-copy > p:first-child {
  margin-bottom: 27px;
  color: #91b7ff;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .19em;
  line-height: 1.48;
  text-transform: uppercase;
}

.home-page .pilot-copy h2 {
  margin: 0 0 30px;
  font-family: var(--sans);
  font-size: clamp(2.05rem, 2.6vw, 2.9rem);
  font-weight: 500;
  font-kerning: normal;
  letter-spacing: .01em;
  line-height: 1.18;
  text-transform: uppercase;
  text-wrap: balance;
}

.home-page .pilot-copy > p:nth-of-type(2) {
  max-width: 460px;
  color: rgba(255, 255, 255, .7);
  font-size: clamp(.88rem, 1vw, 1.02rem);
  letter-spacing: .008em;
  line-height: 1.65;
  text-wrap: pretty;
}

.home-page .pilot-visual {
  position: relative;
  z-index: 4;
  justify-self: stretch;
  width: 100%;
  height: min(690px, calc(100svh - 175px));
  opacity: var(--pilot-visual-opacity);
  transform: translateX(var(--pilot-visual-shift));
  will-change: transform, opacity;
}

.home-page .pilot-spotlight-plate {
  position: absolute;
  z-index: 1;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center bottom;
  opacity: var(--pilot-visual-opacity);
  pointer-events: none;
  filter: brightness(.68);
  -webkit-mask-image: radial-gradient(ellipse at 50% 60%, #000 0 48%, rgba(0, 0, 0, .96) 68%, transparent 100%);
  mask-image: radial-gradient(ellipse at 50% 60%, #000 0 48%, rgba(0, 0, 0, .96) 68%, transparent 100%);
  will-change: opacity;
}

.home-page .pilot-phone {
  position: absolute;
  z-index: 4;
  top: 48%;
  left: 50%;
  width: min(250px, 19vw, calc((100svh - 175px) * .485));
  transform: translate(-50%, -50%);
}

.home-page .pilot-pricing {
  align-self: center;
  width: min(100%, 440px);
  max-width: 440px;
  justify-self: end;
}

.home-page .pilot-price {
  display: grid;
  gap: 10px;
  padding: 0 0 32px;
}

.home-page .pilot-price + .pilot-price {
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, .45);
}

.home-page .pilot-price strong {
  color: #efe5ce;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.35rem, 4.6vw, 5rem);
  font-weight: 400;
  letter-spacing: -.035em;
  line-height: .95;
}

.home-page .pilot-price strong small {
  font-family: var(--sans);
  font-size: .24em;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.home-page .pilot-price > span {
  color: rgba(255, 255, 255, .75);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .18em;
  line-height: 1.55;
  text-transform: uppercase;
}

.home-page .pilot-action {
  display: flex;
  width: 100%;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  margin-top: 3px;
  border: 1px solid rgba(255, 255, 255, .78);
  border-radius: 2px;
  background: #f4f1ea;
  color: #08090b;
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
  transition: background 180ms ease, color 180ms ease;
}

.home-page .pilot-action:hover,
.home-page .pilot-action:focus-visible {
  background: #fff;
  color: #000;
}

.home-page .pilot-pricing > p {
  margin-top: 15px;
  color: rgba(255, 255, 255, .55);
  font-size: .84rem;
  line-height: 1.5;
}

@media (min-width: 681px) and (max-width: 1250px),
       (min-width: 681px) and (max-aspect-ratio: 4 / 3) {
  .home-page .pilot-slide {
    grid-template-columns: minmax(260px, .88fr) minmax(230px, .66fr) minmax(250px, .86fr);
    gap: 18px;
    padding: 94px 30px 42px;
  }

  .home-page .pilot-slide-label { top: 74px; left: 30px; font-size: .52rem; }
  .home-page .pilot-copy { max-width: 310px; }
  .home-page .pilot-copy > p:first-child { margin-bottom: 16px; font-size: .5rem; }
  .home-page .pilot-copy h2 { margin-bottom: 18px; font-size: clamp(1.55rem, 2.5vw, 2rem); line-height: 1.18; }
  .home-page .pilot-copy > p:nth-of-type(2) { font-size: .72rem; line-height: 1.58; }
  .home-page .pilot-visual { height: calc(100svh - 145px); }
  .home-page .pilot-phone { width: min(190px, 19vw, calc((100svh - 150px) * .485)); }
  .home-page .pilot-price { gap: 7px; padding-bottom: 20px; }
  .home-page .pilot-price + .pilot-price { padding-top: 20px; }
  .home-page .pilot-price strong { font-size: clamp(2.5rem, 4.2vw, 3.5rem); }
  .home-page .pilot-price > span { font-size: .5rem; }
  .home-page .pilot-action { min-height: 44px; font-size: .54rem; }
  .home-page .pilot-pricing > p { margin-top: 10px; font-size: .62rem; }
}

@media (max-width: 680px) {
  .home-page .pilot-slide { display: block; padding: 72px 18px 28px; }
  .home-page .pilot-slide-label { top: 68px; left: 18px; font-size: .48rem; }

  .home-page .pilot-visual {
    position: absolute;
    top: 72px;
    right: 16%;
    left: 16%;
    width: auto;
    height: min(43svh, 370px);
  }

  .home-page .pilot-phone { width: min(132px, 32vw, calc((43svh - 16px) * .485)); }

  .home-page .pilot-copy {
    position: absolute;
    right: 51%;
    bottom: 26px;
    left: 18px;
    max-width: none;
  }

  .home-page .pilot-copy > p:first-child { margin-bottom: 8px; font-size: .42rem; }
  .home-page .pilot-copy h2 { margin-bottom: 10px; font-size: clamp(1.02rem, 4.9vw, 1.4rem); line-height: 1.16; }
  .home-page .pilot-copy > p:nth-of-type(2) { font-size: .52rem; line-height: 1.48; }

  .home-page .pilot-pricing {
    position: absolute;
    right: 18px;
    bottom: 26px;
    width: calc(47% - 18px);
  }

  .home-page .pilot-price { gap: 5px; padding-bottom: 12px; }
  .home-page .pilot-price + .pilot-price { padding-top: 12px; }
  .home-page .pilot-price strong { font-size: clamp(1.85rem, 9vw, 2.65rem); }
  .home-page .pilot-price > span { font-size: .36rem; letter-spacing: .12em; }
  .home-page .pilot-action { min-height: 38px; font-size: .39rem; letter-spacing: .09em; }
  .home-page .pilot-pricing > p { margin-top: 7px; font-size: .44rem; }
}

@media (prefers-reduced-motion: reduce) {
  .home-page .pilot-copy,
  .home-page .pilot-visual,
  .home-page .pilot-pricing,
  .home-page .pilot-slide-label {
    opacity: 1;
    transform: none;
  }
}

/* First-slide handoff: avoid global repaints and expensive animated filters. */
.home-page .hero-copy {
  filter: none;
  will-change: transform, opacity;
}

.home-page .hero-phone-featured,
.home-page .problem-phone { filter: none; }

.home-page .marketplace-panel {
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
  background: linear-gradient(145deg, rgba(92, 108, 134, .96), rgba(22, 31, 45, .98) 45%, rgba(11, 16, 25, .99));
}

/* Slide 09 — Final call to action. */
:root {
  --final-visual-opacity: 0;
  --final-visual-shift: 90px;
  --final-copy-opacity: 0;
  --final-copy-shift: 110px;
}

.home-page .final-slide {
  display: grid;
  grid-template-columns: minmax(420px, .78fr) minmax(650px, 1.22fr);
  align-items: center;
  gap: clamp(36px, 4vw, 72px);
  padding: 116px max(42px, calc((100vw - 1500px) / 2)) 54px;
  background:
    radial-gradient(circle at 63% 43%, rgba(27, 62, 121, .18), transparent 29%),
    radial-gradient(ellipse at 62% 100%, rgba(14, 45, 89, .28), transparent 43%),
    #020407;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .13);
}

.home-page .space-stars-final {
  z-index: 0;
  opacity: .54;
}

.home-page .final-slide-label {
  position: absolute;
  z-index: 8;
  top: 82px;
  left: max(42px, calc((100vw - 1500px) / 2));
  display: flex;
  align-items: center;
  gap: 20px;
  color: rgba(255, 255, 255, .68);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .22em;
  line-height: 1.45;
  text-transform: uppercase;
  opacity: var(--final-copy-opacity);
  transform: translateX(var(--final-copy-shift));
}

.home-page .final-slide-label span { color: #fff; }

.home-page .final-copy {
  position: relative;
  z-index: 6;
  max-width: 560px;
  opacity: var(--final-copy-opacity);
  transform: translateX(var(--final-copy-shift));
  will-change: transform, opacity;
}

.home-page .final-copy > p:first-child {
  margin-bottom: 27px;
  color: #91b7ff;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .19em;
  line-height: 1.48;
  text-transform: uppercase;
}

.home-page .final-copy h2 {
  margin: 0 0 34px;
  font-family: var(--sans);
  font-size: clamp(2.05rem, 2.65vw, 3rem);
  font-weight: 500;
  font-kerning: normal;
  letter-spacing: .01em;
  line-height: 1.2;
  text-transform: uppercase;
  text-wrap: balance;
}

.home-page .final-actions {
  display: grid;
  justify-items: start;
  gap: 24px;
}

.home-page .final-primary-action {
  display: inline-flex;
  min-width: 230px;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, .82);
  border-radius: 2px;
  background: #f4f1ea;
  color: #08090b;
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
  transition: background 180ms ease, color 180ms ease;
}

.home-page .final-primary-action:hover,
.home-page .final-primary-action:focus-visible {
  background: #fff;
  color: #000;
}

.home-page .final-text-action {
  color: #91b7ff;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.home-page .final-text-action span {
  display: inline-block;
  margin-left: 12px;
  font-size: 1.1em;
  transition: transform 180ms ease;
}

.home-page .final-text-action:hover span,
.home-page .final-text-action:focus-visible span { transform: translateX(5px); }

.home-page .final-trust {
  margin-top: 42px;
  color: rgba(255, 255, 255, .52);
  font-size: .57rem;
  font-weight: 700;
  letter-spacing: .14em;
  line-height: 1.5;
  text-transform: uppercase;
}

.home-page .final-visual {
  position: relative;
  z-index: 4;
  width: 100%;
  max-height: min(710px, calc(100svh - 165px));
  aspect-ratio: 1.18;
  opacity: var(--final-visual-opacity);
  transform: translateX(var(--final-visual-shift));
  will-change: transform, opacity;
}

.home-page .final-orbit {
  position: absolute;
  z-index: 1;
  top: 48%;
  left: 50%;
  width: min(620px, 46vw, 76vh);
  aspect-ratio: 1;
  border: 1px solid rgba(158, 199, 255, .72);
  border-radius: 50%;
  box-shadow: 0 0 7px rgba(194, 220, 255, .52), 0 0 24px rgba(73, 135, 229, .34), inset 0 0 24px rgba(66, 126, 219, .08);
  transform: translate(-50%, -50%);
  animation: final-orbit-spin 26s linear infinite;
}

.home-page .final-slide .final-orbit::before,
.home-page .final-slide .final-orbit::after { content: none; }

.home-page .final-orbit > i {
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 6px #fff, 0 0 16px #8bb5ff, 0 0 28px #3979f2;
  animation: sphere-star-twinkle 4.4s ease-in-out infinite;
}

.home-page .final-orbit > i:nth-child(1) { top: -3px; left: 50%; }
.home-page .final-orbit > i:nth-child(2) { top: 31%; right: -3px; animation-delay: -1.4s; }
.home-page .final-orbit > i:nth-child(3) { right: 17%; bottom: 8%; animation-delay: -2.8s; }

.home-page .final-floor {
  position: absolute;
  z-index: 0;
  right: -3%;
  bottom: -4%;
  left: -3%;
  height: 32%;
  border-radius: 50%;
  background:
    repeating-linear-gradient(90deg, transparent 0 44px, rgba(74, 119, 181, .04) 45px 46px),
    radial-gradient(ellipse, rgba(53, 105, 180, .22), rgba(11, 35, 70, .08) 42%, transparent 70%);
  mask-image: linear-gradient(to bottom, transparent, #000 28%, transparent 94%);
  transform: perspective(480px) rotateX(68deg);
}

.home-page .final-phone {
  position: absolute;
  z-index: 5;
  top: 49%;
  left: 50%;
  width: min(248px, 19vw, calc((100svh - 175px) * .485));
  aspect-ratio: .485;
  padding: 3px;
  border: 1px solid rgba(226, 226, 219, .48);
  border-radius: clamp(32px, 3.2vw, 46px);
  background: linear-gradient(115deg, #8e8579 0, #24262b 8%, #050609 38%, #0b0c10 72%, #a99c8b 96%);
  box-shadow: 0 40px 65px rgba(0, 0, 0, .86), 0 0 20px rgba(95, 143, 218, .18), inset 0 0 0 1px rgba(255, 255, 255, .12);
  transform: translate(-50%, -50%);
}

.home-page .final-phone-screen {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: inherit;
  background:
    radial-gradient(circle at 50% 43%, rgba(21, 37, 79, .2), transparent 27%),
    linear-gradient(180deg, #030508, #000 70%);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .035);
}

.home-page .final-phone-screen::before {
  content: "";
  position: absolute;
  top: 13px;
  left: 50%;
  width: 32%;
  height: 20px;
  border-radius: 999px;
  background: #000;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .025);
  transform: translateX(-50%);
}

.home-page .final-phone-orb {
  position: absolute;
  top: 38%;
  left: 50%;
  width: 43%;
  aspect-ratio: 1;
  border: 1px solid rgba(219, 231, 255, .94);
  border-radius: 50%;
  background: radial-gradient(circle at 31% 26%, #fff 0 2%, #d5dcf2 8%, #7887ba 24%, #1b2762 54%, #070b31 76%);
  box-shadow: 0 0 7px #e4edff, 0 0 25px rgba(104, 149, 255, .75), 0 0 54px rgba(55, 99, 205, .35), inset -15px -18px 24px rgba(0, 0, 20, .56);
  transform: translate(-50%, -50%);
  animation: final-orb-breathe 6.5s ease-in-out infinite;
}

.home-page .final-phone-orb::after {
  content: "";
  position: absolute;
  inset: 8% -12%;
  border: 1px solid rgba(236, 238, 224, .74);
  border-color: transparent transparent rgba(242, 235, 207, .84) rgba(242, 235, 207, .84);
  border-radius: 50%;
  transform: rotate(42deg);
}

.home-page .final-phone-logo {
  position: absolute;
  top: 62%;
  left: 50%;
  transform: translateX(-50%) scale(.72);
  transform-origin: center top;
}

@keyframes final-orbit-spin {
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes final-orb-breathe {
  0%, 100% { filter: brightness(.9); transform: translate(-50%, -50%) scale(.96); }
  50% { filter: brightness(1.15); transform: translate(-50%, -50%) scale(1.035); }
}

@media (min-width: 681px) and (max-width: 1250px),
       (min-width: 681px) and (max-aspect-ratio: 4 / 3) {
  .home-page .final-slide {
    grid-template-columns: minmax(300px, .78fr) minmax(430px, 1.22fr);
    gap: 24px;
    padding: 94px 30px 42px;
  }

  .home-page .final-slide-label { top: 74px; left: 30px; font-size: .52rem; }
  .home-page .final-copy { max-width: 390px; }
  .home-page .final-copy > p:first-child { margin-bottom: 16px; font-size: .5rem; }
  .home-page .final-copy h2 { margin-bottom: 20px; font-size: clamp(1.55rem, 2.5vw, 2.05rem); line-height: 1.19; }
  .home-page .final-actions { gap: 16px; }
  .home-page .final-primary-action { min-width: 180px; min-height: 44px; font-size: .54rem; }
  .home-page .final-text-action { font-size: .5rem; }
  .home-page .final-trust { margin-top: 27px; font-size: .42rem; }
  .home-page .final-visual { max-height: calc(100svh - 145px); }
  .home-page .final-phone { width: min(188px, 19vw, calc((100svh - 150px) * .485)); }
  .home-page .final-orbit { width: min(500px, 47vw, 72vh); }
}

@media (max-width: 680px) {
  .home-page .final-slide { display: block; padding: 72px 18px 28px; }
  .home-page .final-slide-label { top: 68px; left: 18px; font-size: .48rem; }

  .home-page .final-visual {
    position: absolute;
    top: 72px;
    right: 4%;
    left: 34%;
    width: auto;
    height: min(55svh, 470px);
    aspect-ratio: auto;
  }

  .home-page .final-orbit { width: min(66vw, 42vh); }
  .home-page .final-phone { width: min(135px, 32vw, calc((55svh - 50px) * .485)); }

  .home-page .final-copy {
    position: absolute;
    right: 18px;
    bottom: 28px;
    left: 18px;
    max-width: 430px;
  }

  .home-page .final-copy > p:first-child { margin-bottom: 9px; font-size: .44rem; }
  .home-page .final-copy h2 { margin-bottom: 15px; font-size: clamp(1.2rem, 5.8vw, 1.65rem); line-height: 1.17; }
  .home-page .final-actions { grid-template-columns: auto 1fr; align-items: center; gap: 13px; }
  .home-page .final-primary-action { min-width: 142px; min-height: 40px; font-size: .46rem; }
  .home-page .final-text-action { font-size: .42rem; }
  .home-page .final-trust { margin-top: 16px; font-size: .34rem; }
}

@media (prefers-reduced-motion: reduce) {
  .home-page .final-orbit,
  .home-page .final-orbit > i,
  .home-page .final-phone-orb { animation: none; }

  .home-page .final-copy,
  .home-page .final-visual,
  .home-page .final-slide-label {
    opacity: 1;
    transform: none;
  }
}

/* Production responsive pass: keep the approved composition without overlap. */
@media (max-width: 680px) {
  .home-page .hero-single-product .hero-phone-featured {
    left: auto;
    right: auto;
    bottom: auto;
    width: min(230px, 53vw, calc((100svh - 355px) * .485));
    opacity: 1;
    pointer-events: none;
    transform: none !important;
  }
}

@media (min-width: 681px) and (max-width: 1100px) and (orientation: portrait) and (min-height: 900px) {
  .home-page .hero-product-stage,
  .home-page .hero-single-product {
    inset: 66px 0 240px;
  }

  .home-page .hero-orbits { top: 44%; }
  .home-page .hero-copy { top: 47%; }
}

@media (min-width: 1800px) and (min-height: 1000px) {
  .home-page { --home-page: min(1680px, calc(100vw - 128px)); }

  .home-page .hero-copy {
    left: max(64px, calc((100vw - 1680px) / 2));
    width: min(470px, 28vw);
  }

  .home-page .hero-copy h1 { font-size: clamp(3.8rem, 3.05vw, 4.75rem); }
  .home-page .hero-copy > p:not(.eyebrow) { max-width: 440px; font-size: 1rem; }
  .home-page .hero-actions .button { min-width: 270px; min-height: 48px; }

  .home-page .hero-phone-featured {
    width: min(390px, 18vw, calc((100svh - 190px) * .485));
  }

  .home-page .hero-orbits {
    --orbit-field-size: min(950px, 48vw, 78vh);
  }

  .home-page .hero-trust {
    right: max(64px, calc((100vw - 1680px) / 2));
    width: 420px;
    font-size: .64rem;
  }
}
