@font-face {
  font-family: "Involve";
  src: url("/static/assets/fonts/Involve-Regular.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Involve";
  src: url("/static/assets/fonts/Involve-SemiBold.woff2") format("woff2");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

:root {
  --ink: #f3f8f8;
  --muted: #a9b5b8;
  --dim: #758388;
  --black: #05080b;
  --panel: rgba(7, 13, 17, .66);
  --line: rgba(205, 238, 239, .16);
  --cyan: #43f5ec;
  --cyan-bright: #a6fff9;
  --pink: #ff2c82;
  --lime: #c8ff42;
  --world-shift: 0%;
  --world-x: 0px;
  --story-progress: 0;
  --header-h: 84px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scrollbar-color: var(--cyan) #090d10;
  scrollbar-width: thin;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--black);
  font-family: "Involve", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

body.is-locked {
  overflow: hidden;
}

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

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

::selection {
  color: #02100f;
  background: var(--cyan);
}

.page-grain {
  position: fixed;
  inset: 0;
  z-index: 90;
  opacity: .055;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 160 160' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.9'/%3E%3C/svg%3E");
  mix-blend-mode: soft-light;
}

.loader {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-content: center;
  justify-items: center;
  gap: 28px;
  background: #05080b;
  transition: visibility .7s, opacity .7s cubic-bezier(.2, .8, .2, 1);
}

.loader.is-hidden {
  visibility: hidden;
  opacity: 0;
}

.loader p {
  margin: 0;
  color: #d9e4e5;
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .24em;
  text-transform: uppercase;
}

.loader__route {
  position: relative;
  width: min(260px, 62vw);
  height: 2px;
  background: rgba(255, 255, 255, .14);
}

.loader__route i {
  position: absolute;
  inset: 0 auto 0 0;
  width: 100%;
  background: linear-gradient(90deg, var(--pink), var(--cyan));
  transform-origin: left;
  animation: loader-line 1.3s cubic-bezier(.65, 0, .35, 1) infinite;
}

.loader__route b,
.loader__route span {
  position: absolute;
  top: 50%;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  background: var(--cyan);
  box-shadow: 0 0 18px var(--cyan), 0 0 42px rgba(67, 245, 236, .75);
}

.loader__route b { left: 0; }
.loader__route span { left: 100%; }

@keyframes loader-line {
  0% { transform: scaleX(0); opacity: .2; }
  55% { transform: scaleX(1); opacity: 1; }
  100% { transform: scaleX(1); opacity: 0; }
}

.topbar {
  position: fixed;
  top: max(14px, env(safe-area-inset-top));
  left: 50%;
  z-index: 70;
  display: grid;
  grid-template-columns: auto auto 1fr auto;
  align-items: center;
  gap: clamp(20px, 3vw, 56px);
  width: min(1440px, calc(100% - 40px));
  min-height: var(--header-h);
  padding: 12px 14px 12px 18px;
  border: 1px solid rgba(227, 255, 255, .14);
  border-radius: 24px;
  background: rgba(5, 9, 12, .58);
  box-shadow: 0 20px 60px rgba(0, 0, 0, .18);
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  transform: translateX(-50%);
  transition: background .35s ease, border-color .35s ease, box-shadow .35s ease;
}

.topbar.is-scrolled {
  border-color: rgba(67, 245, 236, .22);
  background: rgba(5, 9, 12, .88);
  box-shadow: 0 20px 70px rgba(0, 0, 0, .5), inset 0 1px rgba(255, 255, 255, .04);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}

.brand__mark {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: 17px;
  background: linear-gradient(145deg, rgba(255, 44, 130, .9), rgba(142, 11, 72, .86));
  box-shadow: 0 12px 28px rgba(255, 44, 130, .22), inset 0 1px rgba(255, 255, 255, .3);
}

.brand__mark svg {
  width: 35px;
  fill: #fff;
}

.brand > span:last-child {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.brand strong {
  font-size: 1.16rem;
  letter-spacing: .07em;
}

.brand small {
  margin-top: 7px;
  color: var(--muted);
  font-size: .75rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.topbar__status {
  display: flex;
  align-items: center;
  gap: 9px;
  color: #dce6e7;
  font-size: .8rem;
  letter-spacing: .05em;
  white-space: nowrap;
}

.topbar__status i {
  position: relative;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 16px var(--lime);
}

.topbar__status i::after {
  position: absolute;
  inset: -6px;
  border: 1px solid rgba(200, 255, 66, .55);
  border-radius: inherit;
  content: "";
  animation: status-pulse 1.9s ease-out infinite;
}

@keyframes status-pulse {
  from { opacity: .8; transform: scale(.45); }
  to { opacity: 0; transform: scale(1.35); }
}

.topbar__nav {
  display: flex;
  justify-content: center;
  gap: clamp(18px, 2.5vw, 40px);
}

.topbar__nav a {
  position: relative;
  padding: 12px 0;
  color: #d0dadb;
  font-size: .9rem;
}

.topbar__nav a::after {
  position: absolute;
  right: 0;
  bottom: 7px;
  left: 0;
  height: 1px;
  content: "";
  background: var(--cyan);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .3s ease;
}

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

.topbar__phone {
  display: flex;
  align-items: flex-end;
  flex-direction: column;
  min-width: max-content;
  padding: 10px 15px;
  border: 1px solid rgba(67, 245, 236, .2);
  border-radius: 15px;
  background: rgba(67, 245, 236, .07);
  line-height: 1.1;
  transition: color .25s ease, background .25s ease, transform .25s ease;
}

.topbar__phone:hover,
.topbar__phone:focus-visible {
  color: #00100f;
  background: var(--cyan);
  transform: translateY(-2px);
}

.topbar__phone span {
  margin-bottom: 5px;
  color: var(--muted);
  font-size: .7rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.topbar__phone:hover span,
.topbar__phone:focus-visible span { color: #164a47; }

.topbar__phone strong {
  font-size: .95rem;
  letter-spacing: .025em;
}

.progress {
  position: fixed;
  top: 50%;
  right: max(18px, calc((100vw - 1530px) / 2));
  z-index: 60;
  display: grid;
  grid-template-rows: auto min(300px, 40vh) auto;
  justify-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, .68);
  transform: translateY(-46%);
}

.progress__number,
.progress__total {
  font-size: .76rem;
  font-weight: 600;
  letter-spacing: .12em;
  font-variant-numeric: tabular-nums;
}

.progress__number { color: var(--cyan); }

.progress__rail {
  position: relative;
  width: 3px;
  height: 100%;
  border-radius: 4px;
  background: rgba(255, 255, 255, .32);
}

.progress__rail i {
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 0;
  background: var(--cyan);
  box-shadow: 0 0 15px var(--cyan);
}

.progress__rail b {
  position: absolute;
  top: 0;
  left: 50%;
  width: 15px;
  height: 15px;
  border: 2px solid #d8fffc;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 16px var(--cyan), 0 0 42px rgba(67, 245, 236, .75);
  transform: translate(-50%, -50%);
}

.progress p {
  position: absolute;
  top: 50%;
  right: 29px;
  width: max-content;
  margin: 0;
  color: #c5d1d2;
  font-size: .72rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  transform: translateY(-50%) rotate(-90deg);
  transform-origin: right center;
}

.journey {
  position: relative;
  isolation: isolate;
}

.world {
  position: sticky;
  top: 0;
  z-index: 0;
  height: 100svh;
  overflow: hidden;
  background: #070b0e;
}

.world img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 186%;
  max-width: none;
  object-fit: cover;
  object-position: 50% 50%;
  filter: saturate(1.02) contrast(1.02) brightness(.96);
  transform: translate3d(var(--world-x), var(--world-shift), 0) scale(1.035);
  transform-origin: center top;
  will-change: transform;
}

.world__shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(2, 5, 7, .58) 0%, rgba(2, 5, 7, .12) 38%, rgba(2, 5, 7, .08) 64%, rgba(2, 5, 7, .4) 100%),
    linear-gradient(180deg, rgba(3, 7, 9, .24), transparent 24%, transparent 78%, rgba(2, 5, 7, .48));
}

.world__grid {
  position: absolute;
  inset: 0;
  opacity: .18;
  background-image:
    linear-gradient(rgba(111, 245, 236, .08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(111, 245, 236, .08) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(90deg, #000, transparent 56%, #000);
}

.world__scan {
  position: absolute;
  right: 0;
  left: 0;
  height: 22vh;
  opacity: .6;
  background: linear-gradient(180deg, transparent, rgba(67, 245, 236, .08), transparent);
  mix-blend-mode: screen;
  animation: world-scan 7s linear infinite;
}

@keyframes world-scan {
  from { transform: translateY(-25vh); }
  to { transform: translateY(110vh); }
}

.world__coordinates {
  position: absolute;
  right: 8vw;
  bottom: 34px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(222, 244, 245, .54);
  font-size: .7rem;
  letter-spacing: .18em;
}

.world__coordinates i {
  width: 34px;
  height: 1px;
  background: rgba(255, 255, 255, .25);
}

.world__signal {
  position: absolute;
  right: 6vw;
  top: 24%;
  width: 120px;
  height: 120px;
}

.world__signal i {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(67, 245, 236, .22);
  border-radius: 50%;
  animation: world-signal 3s ease-out infinite;
}

.world__signal i:nth-child(2) { animation-delay: 1s; }
.world__signal i:nth-child(3) { animation-delay: 2s; }

.route-hud {
  position: absolute;
  top: calc(var(--header-h) + max(36px, env(safe-area-inset-top)));
  left: 50%;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 22px;
  width: min(650px, calc(100% - 240px));
  min-height: 64px;
  padding: 9px 11px 9px 20px;
  border: 1px solid rgba(166, 255, 249, .33);
  border-radius: 18px;
  color: #eafffd;
  background: rgba(4, 12, 15, .58);
  box-shadow: 0 16px 52px rgba(0, 0, 0, .3), inset 0 1px rgba(255, 255, 255, .09);
  backdrop-filter: blur(18px) saturate(135%);
  -webkit-backdrop-filter: blur(18px) saturate(135%);
  transform: translateX(-50%);
}

.route-hud__places {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 12px;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.route-hud__places span:last-child { text-align: right; }

.route-hud__places i {
  color: var(--cyan);
  font-size: 1rem;
  font-style: normal;
  text-shadow: 0 0 12px var(--cyan);
}

.route-hud__now {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 0 8px;
  min-width: 178px;
  min-height: 46px;
  padding: 5px 12px;
  border-radius: 12px;
  color: #061312;
  background: var(--cyan);
  box-shadow: 0 0 28px rgba(67, 245, 236, .22);
}

.route-hud__now small {
  grid-column: 1 / -1;
  font-size: .59rem;
  font-weight: 600;
  letter-spacing: .09em;
  opacity: .65;
  text-transform: uppercase;
}

.route-hud__now b {
  font-size: .76rem;
  font-variant-numeric: tabular-nums;
}

.route-hud__now strong {
  overflow: hidden;
  font-size: .82rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

@keyframes world-signal {
  from { opacity: 0; transform: scale(.05); }
  18% { opacity: .8; }
  to { opacity: 0; transform: scale(1); }
}

.journey__content {
  position: relative;
  z-index: 2;
  margin-top: -100svh;
}

.scene {
  position: relative;
  min-height: 100svh;
  padding: calc(var(--header-h) + 66px) max(7vw, 80px) 60px;
}

.hero {
  display: flex;
  justify-content: center;
  flex-direction: column;
  min-height: 100svh;
  padding-left: max(7vw, calc((100vw - 1380px) / 2));
}

.hero::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background: radial-gradient(circle at 12% 48%, rgba(0, 0, 0, .55), transparent 51%);
}

.hero__eyebrow,
.delivery__head > span,
.contact__copy > span {
  display: flex;
  align-items: center;
  gap: 10px;
  width: max-content;
  margin-bottom: 24px;
  color: var(--cyan-bright);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.hero__eyebrow i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 16px var(--cyan);
}

.hero h1 {
  max-width: 980px;
  margin: 0;
  font-size: clamp(3.4rem, 7.2vw, 7.6rem);
  font-weight: 400;
  line-height: .86;
  letter-spacing: -.075em;
  text-wrap: balance;
}

.hero h1 em,
.chapter h2 em,
.arrival h2 em,
.delivery h2 em,
.contact h2 em {
  color: var(--cyan);
  font-style: normal;
  text-shadow: 0 0 35px rgba(67, 245, 236, .17);
}

.hero > p {
  max-width: 680px;
  margin: 34px 0 0;
  color: #c5d0d1;
  font-size: clamp(1.08rem, 1.65vw, 1.38rem);
  line-height: 1.52;
}

.hero__actions,
.arrival__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  min-height: 62px;
  padding: 0 25px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 18px;
  font-size: .98rem;
  font-weight: 600;
  transition: border-color .25s ease, color .25s ease, background .25s ease, transform .25s ease, box-shadow .25s ease;
}

.button span {
  font-size: 1.2rem;
  transition: transform .25s ease;
}

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

.button:hover span,
.button:focus-visible span {
  transform: translate(3px, 3px);
}

.button--light {
  color: #03110f;
  border-color: var(--cyan);
  background: var(--cyan);
  box-shadow: 0 16px 42px rgba(67, 245, 236, .18);
}

.button--light:hover,
.button--light:focus-visible {
  background: var(--cyan-bright);
  box-shadow: 0 18px 55px rgba(67, 245, 236, .29);
}

.button--glass {
  background: rgba(255, 255, 255, .055);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.button--glass:hover,
.button--glass:focus-visible {
  border-color: rgba(67, 245, 236, .58);
  background: rgba(67, 245, 236, .1);
}

.hero__data {
  display: flex;
  gap: 0;
  width: min(780px, calc(100% - 90px));
  margin-top: 56px;
  border-top: 1px solid var(--line);
}

.hero__data div {
  display: flex;
  flex: 1;
  align-items: flex-start;
  gap: 15px;
  padding: 20px 24px 0 0;
}

.hero__data div + div {
  padding-left: 24px;
  border-left: 1px solid var(--line);
}

.hero__data b {
  color: #fff;
  font-size: 1rem;
  white-space: nowrap;
}

.hero__data span {
  color: var(--muted);
  font-size: .78rem;
  line-height: 1.35;
}

.scroll-cue {
  position: absolute;
  right: max(7vw, 100px);
  bottom: 50px;
  display: flex;
  align-items: center;
  gap: 14px;
  color: rgba(255, 255, 255, .7);
  font-size: .72rem;
  letter-spacing: .17em;
  text-transform: uppercase;
}

.scroll-cue > i {
  position: relative;
  display: block;
  width: 26px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, .35);
  border-radius: 18px;
}

.scroll-cue b {
  position: absolute;
  top: 8px;
  left: 50%;
  width: 3px;
  height: 8px;
  border-radius: 2px;
  background: var(--cyan);
  box-shadow: 0 0 8px var(--cyan);
  transform: translateX(-50%);
  animation: scroll-cue 1.6s ease-in-out infinite;
}

@keyframes scroll-cue {
  0%, 100% { opacity: .3; transform: translate(-50%, 0); }
  50% { opacity: 1; transform: translate(-50%, 15px); }
}

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

.chapter {
  display: flex;
  align-items: center;
}

.chapter--right { justify-content: flex-end; }
.chapter--left { justify-content: flex-start; }

.chapter__card {
  position: relative;
  width: min(640px, calc(100vw - 180px));
  padding: clamp(28px, 4vw, 54px);
  overflow: hidden;
  border: 1px solid rgba(218, 247, 247, .18);
  border-radius: 30px;
  background:
    linear-gradient(145deg, rgba(12, 20, 25, .76), rgba(4, 9, 12, .62)),
    radial-gradient(circle at 80% 0, rgba(67, 245, 236, .14), transparent 45%);
  box-shadow: 0 40px 100px rgba(0, 0, 0, .4), inset 0 1px rgba(255, 255, 255, .06);
  backdrop-filter: blur(24px) saturate(125%);
  -webkit-backdrop-filter: blur(24px) saturate(125%);
  opacity: .48;
  transform: perspective(1200px) translateY(56px) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg)) scale(.965);
  transition: opacity .65s ease, transform .8s cubic-bezier(.2, .8, .2, 1), border-color .65s ease;
}

.scene.is-active .chapter__card {
  opacity: 1;
  border-color: rgba(67, 245, 236, .32);
  transform: perspective(1200px) translateY(0) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg)) scale(1);
}

.chapter__card::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 2px;
  content: "";
  background: linear-gradient(90deg, var(--pink), var(--cyan));
  box-shadow: 0 0 22px rgba(67, 245, 236, .55);
  transition: width 1s .18s cubic-bezier(.2, .8, .2, 1);
}

.scene.is-active .chapter__card::before { width: 100%; }

.chapter__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.chapter__meta span { color: var(--cyan); }

.chapter__icon {
  display: grid;
  place-items: center;
  width: 66px;
  height: 66px;
  margin-top: 31px;
  border: 1px solid rgba(67, 245, 236, .25);
  border-radius: 21px;
  color: var(--cyan);
  background: rgba(67, 245, 236, .08);
  box-shadow: inset 0 1px rgba(255, 255, 255, .08), 0 0 0 8px rgba(67, 245, 236, .025);
}

.chapter__icon svg {
  width: 34px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

.chapter h2 {
  margin: 26px 0 0;
  font-size: clamp(2.1rem, 4.25vw, 4.35rem);
  font-weight: 400;
  line-height: .97;
  letter-spacing: -.055em;
}

.chapter h2 em { display: inline-block; }

.chapter__card > p {
  margin: 24px 0 0;
  color: #becacc;
  font-size: clamp(1rem, 1.3vw, 1.16rem);
  line-height: 1.62;
}

.chapter__card > ul {
  display: grid;
  gap: 0;
  margin: 30px 0 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.chapter__card > ul li {
  display: flex;
  align-items: center;
  gap: 18px;
  min-height: 49px;
  border-bottom: 1px solid var(--line);
  color: #d7e1e2;
  font-size: .92rem;
}

.chapter__card > ul span {
  color: var(--dim);
  font-size: .7rem;
  letter-spacing: .12em;
}

.chapter__pulse {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 13px;
  margin-top: 30px;
  padding: 15px 17px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: rgba(255, 255, 255, .035);
}

.chapter__pulse i {
  position: relative;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 14px var(--lime);
}

.chapter__pulse span {
  color: #d8e2e3;
  font-size: .86rem;
}

.chapter__pulse b {
  color: var(--dim);
  font-size: .68rem;
  letter-spacing: .14em;
}

.scan-panel {
  display: grid;
  gap: 8px;
  margin-top: 28px;
}

.scan-panel div {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 42px;
  padding: 0 14px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .09);
  border-radius: 11px;
  background: rgba(0, 0, 0, .18);
}

.scan-panel div::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: -25%;
  width: 16%;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(67, 245, 236, .2), transparent);
}

.scene.is-active .scan-panel div::before { animation: panel-scan 1.2s ease-out forwards; }
.scene.is-active .scan-panel div:nth-child(2)::before { animation-delay: .2s; }
.scene.is-active .scan-panel div:nth-child(3)::before { animation-delay: .4s; }

@keyframes panel-scan { to { left: 110%; } }

.scan-panel span { color: #b8c4c6; font-size: .82rem; }
.scan-panel b { color: var(--lime); font-size: .72rem; letter-spacing: .12em; }

.merge-flow {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 16px) 1fr 38px;
  align-items: center;
  gap: 9px;
  height: 62px;
  margin-top: 30px;
  padding: 0 15px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: rgba(0, 0, 0, .18);
}

.merge-flow i {
  display: block;
  width: 14px;
  height: 14px;
  border: 1px solid rgba(255, 255, 255, .48);
  border-radius: 3px;
}

.merge-flow span {
  position: relative;
  height: 1px;
  overflow: visible;
  background: linear-gradient(90deg, rgba(255, 255, 255, .22), var(--cyan));
}

.merge-flow span::after {
  position: absolute;
  top: 50%;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  content: "";
  background: var(--cyan);
  box-shadow: 0 0 12px var(--cyan);
  transform: translateY(-50%);
}

.scene.is-active .merge-flow span::after { animation: merge 1.8s ease-in-out infinite; }

@keyframes merge {
  from { left: 0; }
  to { left: calc(100% - 7px); }
}

.merge-flow b {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 9px;
  color: #061311;
  background: var(--cyan);
  box-shadow: 0 0 25px rgba(67, 245, 236, .27);
}

.route-ticker {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 14px;
  margin-top: 32px;
  color: #d5dfe0;
  font-size: .69rem;
  font-weight: 600;
  letter-spacing: .12em;
}

.route-ticker i {
  position: relative;
  height: 1px;
  background: rgba(255, 255, 255, .24);
}

.route-ticker i::before,
.route-ticker i::after {
  position: absolute;
  top: 50%;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  content: "";
  background: #b6c2c4;
  transform: translateY(-50%);
}

.route-ticker i::before { left: 0; }
.route-ticker i::after { right: 0; }

.route-ticker b {
  position: absolute;
  top: 50%;
  left: 0;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 16px var(--cyan);
  transform: translateY(-50%);
}

.scene.is-active .route-ticker b { animation: route-ticker 2.6s ease-in-out infinite; }

@keyframes route-ticker {
  0% { left: 0; }
  70%, 100% { left: calc(100% - 9px); }
}

.delivery-switch {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: 30px;
}

.delivery-switch > span {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 2px 12px;
  min-height: 74px;
  padding: 13px 15px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, .035);
}

.delivery-switch i {
  grid-row: 1 / 3;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  color: var(--cyan);
  background: rgba(67, 245, 236, .09);
  font-size: .68rem;
  font-style: normal;
}

.delivery-switch b { font-size: .87rem; }
.delivery-switch small { color: var(--muted); font-size: .72rem; }

.arrival {
  display: grid;
  place-items: center;
  overflow: hidden;
  text-align: center;
}

.arrival::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background: radial-gradient(circle at 50% 58%, rgba(4, 8, 10, .2), rgba(3, 6, 8, .78) 70%);
}

.arrival__halo {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: -1;
  width: min(72vw, 900px);
  aspect-ratio: 1;
  transform: translate(-50%, -50%);
}

.arrival__halo i {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(67, 245, 236, .16);
  border-radius: 50%;
  box-shadow: inset 0 0 90px rgba(67, 245, 236, .025);
  animation: arrival-halo 5s ease-in-out infinite;
}

.arrival__halo i:nth-child(2) { inset: 16%; animation-delay: -.8s; }
.arrival__halo i:nth-child(3) { inset: 32%; animation-delay: -1.6s; }

@keyframes arrival-halo {
  0%, 100% { opacity: .3; transform: scale(.96); }
  50% { opacity: .85; transform: scale(1.04); }
}

.arrival__panel {
  width: min(780px, 100%);
  padding: 64px 46px;
  border: 1px solid rgba(67, 245, 236, .22);
  border-radius: 34px;
  background: rgba(4, 9, 12, .67);
  box-shadow: 0 40px 120px rgba(0, 0, 0, .5), inset 0 1px rgba(255, 255, 255, .07);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
}

.arrival__code {
  color: var(--lime);
  font-size: .73rem;
  font-weight: 600;
  letter-spacing: .17em;
}

.arrival h2 {
  margin: 28px 0 0;
  font-size: clamp(4rem, 8vw, 8rem);
  font-weight: 400;
  line-height: .8;
  letter-spacing: -.08em;
}

.arrival p {
  max-width: 580px;
  margin: 32px auto 0;
  color: #c3ced0;
  font-size: clamp(1rem, 1.45vw, 1.2rem);
}

.arrival__actions { justify-content: center; }

.delivery {
  position: relative;
  z-index: 4;
  padding: 130px max(6vw, calc((100vw - 1380px) / 2));
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 25%, rgba(67, 245, 236, .08), transparent 30%),
    linear-gradient(180deg, #070b0e, #0b1014 65%, #06090c);
}

.delivery::before {
  position: absolute;
  inset: 0;
  opacity: .2;
  content: "";
  background-image: linear-gradient(rgba(137, 216, 215, .08) 1px, transparent 1px), linear-gradient(90deg, rgba(137, 216, 215, .08) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(180deg, transparent, #000 20%, #000 80%, transparent);
}

.delivery__head,
.delivery__layout {
  position: relative;
  z-index: 1;
  width: min(1380px, 100%);
  margin: 0 auto;
}

.delivery__head {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  align-items: end;
  gap: 60px;
}

.delivery__head > span {
  grid-column: 1 / -1;
  margin-bottom: -35px;
}

.delivery h2,
.contact h2 {
  margin: 0;
  font-size: clamp(3.2rem, 6.5vw, 6.8rem);
  font-weight: 400;
  line-height: .88;
  letter-spacing: -.07em;
}

.delivery__head p {
  max-width: 520px;
  margin: 0 0 8px;
  color: var(--muted);
  font-size: clamp(1rem, 1.35vw, 1.16rem);
}

.delivery__layout {
  display: grid;
  grid-template-columns: 1.45fr .55fr;
  gap: 18px;
  margin-top: 70px;
}

.pickup-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  margin: 0;
  padding: 1px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 28px;
  background: rgba(255, 255, 255, .12);
  list-style: none;
}

.pickup-grid li {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 17px;
  min-height: 104px;
  padding: 20px 24px;
  background: rgba(8, 14, 18, .92);
  transition: color .25s ease, background .25s ease;
}

.pickup-grid li:hover {
  color: #07110f;
  background: var(--cyan);
}

.pickup-grid span {
  color: var(--dim);
  font-size: .69rem;
  letter-spacing: .1em;
}

.pickup-grid li:hover span { color: #25635f; }

.pickup-grid p {
  margin: 0;
  font-size: clamp(.96rem, 1.3vw, 1.15rem);
}

.pickup-grid b {
  color: var(--cyan);
  font-size: 1.15rem;
}

.pickup-grid li:hover b { color: #07110f; }

.courier-card {
  display: flex;
  justify-content: flex-end;
  flex-direction: column;
  min-height: 344px;
  padding: 34px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 28px;
  background:
    linear-gradient(180deg, transparent, rgba(5, 8, 10, .82)),
    radial-gradient(circle at 72% 12%, rgba(255, 44, 130, .36), transparent 34%),
    linear-gradient(140deg, #152127, #090d10);
}

.courier-card > span {
  margin-bottom: auto;
  color: var(--cyan-bright);
  font-size: .73rem;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.courier-card h3 {
  margin: 45px 0 0;
  font-size: clamp(2rem, 3.7vw, 3.6rem);
  font-weight: 400;
  line-height: .95;
  letter-spacing: -.05em;
}

.courier-card p {
  margin: 17px 0 25px;
  color: #b9c6c8;
  font-size: .94rem;
}

.courier-card a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 54px;
  padding: 0 17px;
  border: 1px solid rgba(67, 245, 236, .3);
  border-radius: 13px;
  color: var(--cyan);
  background: rgba(67, 245, 236, .07);
  font-size: .88rem;
  font-weight: 600;
}

.contact {
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 80px;
  min-height: 82svh;
  padding: 140px max(6vw, calc((100vw - 1380px) / 2)) 42px;
  overflow: hidden;
  background: #05080b;
}

.contact::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, transparent 49.96%, rgba(67, 245, 236, .09) 50%, transparent 50.04%),
    radial-gradient(circle at 50% 42%, rgba(67, 245, 236, .08), transparent 42%);
}

.contact__glow {
  position: absolute;
  top: 18%;
  left: 50%;
  width: min(52vw, 780px);
  aspect-ratio: 1;
  border: 1px solid rgba(67, 245, 236, .13);
  border-radius: 50%;
  box-shadow: 0 0 100px rgba(67, 245, 236, .04), inset 0 0 100px rgba(67, 245, 236, .035);
  transform: translateX(-50%);
}

.contact__copy,
.contact__actions,
.contact footer {
  position: relative;
  z-index: 1;
}

.contact__copy > p {
  max-width: 650px;
  margin: 32px 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.4vw, 1.2rem);
}

.contact__actions {
  align-self: end;
  padding-bottom: 20px;
}

.contact__phone {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 5px 20px;
  padding: 26px;
  border: 1px solid rgba(67, 245, 236, .26);
  border-radius: 22px;
  background: rgba(67, 245, 236, .07);
  transition: color .3s ease, background .3s ease, transform .3s ease;
}

.contact__phone:hover,
.contact__phone:focus-visible {
  color: #04110f;
  background: var(--cyan);
  transform: translateY(-3px);
}

.contact__phone small {
  color: var(--muted);
  font-size: .76rem;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.contact__phone:hover small,
.contact__phone:focus-visible small { color: #28625e; }

.contact__phone strong {
  grid-column: 1;
  font-size: clamp(1.4rem, 2.6vw, 2.45rem);
  letter-spacing: -.035em;
}

.contact__phone b {
  grid-column: 2;
  grid-row: 1 / 3;
  font-size: 1.7rem;
}

.contact__socials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 10px;
}

.contact__socials a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 58px;
  padding: 0 15px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 14px;
  color: #c7d2d3;
  background: rgba(255, 255, 255, .035);
  font-size: .78rem;
  transition: border-color .25s ease, color .25s ease, background .25s ease;
}

.contact__socials a:hover,
.contact__socials a:focus-visible {
  color: var(--cyan);
  border-color: rgba(67, 245, 236, .34);
  background: rgba(67, 245, 236, .07);
}

.contact footer {
  grid-column: 1 / -1;
  align-self: end;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  color: var(--dim);
  font-size: .69rem;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.contact footer a { color: #becacc; }
.contact footer p { margin: 0; text-align: center; }
.contact footer span { text-align: right; }

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

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

.mobile-dock { display: none; }

@media (max-width: 1160px) {
  .topbar {
    grid-template-columns: auto auto 1fr;
  }

  .topbar__nav { display: none; }
  .topbar__phone { justify-self: end; }

  .progress { right: 20px; }

  .chapter__card { width: min(610px, calc(100vw - 130px)); }

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

  .delivery__layout { grid-template-columns: 1.25fr .75fr; }

  .contact {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 820px) {
  :root { --header-h: 66px; }

  .topbar {
    top: max(8px, env(safe-area-inset-top));
    grid-template-columns: 1fr auto;
    gap: 10px;
    width: calc(100% - 20px);
    min-height: 66px;
    padding: 8px 9px 8px 10px;
    border-radius: 19px;
  }

  .brand { gap: 9px; }

  .brand__mark {
    width: 46px;
    height: 46px;
    border-radius: 14px;
  }

  .brand__mark svg { width: 31px; }
  .brand strong { font-size: 1rem; }
  .brand small { margin-top: 5px; font-size: .61rem; }
  .topbar__status { display: none; }

  .topbar__phone {
    width: 48px;
    min-width: 48px;
    height: 48px;
    padding: 0;
    border-radius: 14px;
    font-size: 0;
  }

  .topbar__phone::before {
    display: grid;
    place-items: center;
    width: 100%;
    height: 100%;
    content: "\260E";
    color: var(--cyan);
    font-size: 1.3rem;
  }

  .topbar__phone span,
  .topbar__phone strong { display: none; }

  .progress {
    top: auto;
    right: 10px;
    bottom: calc(80px + env(safe-area-inset-bottom));
    left: 10px;
    display: block;
    height: 3px;
    color: transparent;
    background: rgba(255, 255, 255, .14);
    transform: none;
  }

  .progress__rail {
    width: 100%;
    height: 3px;
  }

  .progress__rail i {
    width: 0;
    height: 3px;
  }

  .progress__rail b {
    top: 50%;
    left: 0;
  }

  .progress__number,
  .progress__total,
  .progress p { display: none; }

  .world img {
    left: -8%;
    width: 116%;
    height: 183%;
    filter: saturate(1.02) contrast(1.02) brightness(.94);
  }

  .world__shade {
    background:
      linear-gradient(180deg, rgba(2, 5, 7, .28), rgba(2, 5, 7, .03) 28%, rgba(2, 5, 7, .1) 58%, rgba(2, 5, 7, .66)),
      linear-gradient(90deg, rgba(2, 5, 7, .45), rgba(2, 5, 7, .08) 50%, rgba(2, 5, 7, .34));
  }

  .world__grid { background-size: 46px 46px; opacity: .2; }
  .world__coordinates { display: none; }
  .world__signal { top: 26%; right: -20px; width: 90px; height: 90px; }

  .route-hud {
    top: calc(var(--header-h) + max(24px, env(safe-area-inset-top)));
    gap: 8px;
    width: calc(100% - 20px);
    min-height: 55px;
    padding: 6px 7px 6px 13px;
    border-radius: 15px;
    background: rgba(4, 12, 15, .66);
  }

  .route-hud__places {
    gap: 5px;
    font-size: .59rem;
    letter-spacing: .035em;
  }

  .route-hud__places i { font-size: .75rem; }

  .route-hud__now {
    min-width: 128px;
    min-height: 41px;
    padding: 4px 8px;
    border-radius: 10px;
  }

  .route-hud__now small { font-size: .5rem; }
  .route-hud__now b { font-size: .65rem; }
  .route-hud__now strong { font-size: .72rem; }

  .scene {
    min-height: 100svh;
    padding: calc(var(--header-h) + 44px) 18px calc(98px + env(safe-area-inset-bottom));
  }

  .hero {
    justify-content: flex-end;
    padding-bottom: calc(104px + env(safe-area-inset-bottom));
  }

  .hero::before {
    background: linear-gradient(180deg, transparent 18%, rgba(3, 7, 9, .22) 45%, rgba(3, 7, 9, .83) 82%);
  }

  .hero__eyebrow { margin-bottom: 18px; font-size: .7rem; }

  .hero h1 {
    max-width: 100%;
    font-size: clamp(3rem, 14.6vw, 5.3rem);
    line-height: .87;
  }

  .hero > p {
    margin-top: 24px;
    font-size: 1rem;
    line-height: 1.48;
  }

  .hero__actions { margin-top: 26px; }

  .button {
    flex: 1 1 190px;
    min-height: 58px;
    padding: 0 19px;
    border-radius: 15px;
    font-size: .91rem;
  }

  .hero__data,
  .scroll-cue { display: none; }

  .chapter {
    align-items: flex-end;
    justify-content: stretch;
  }

  .chapter__card {
    width: 100%;
    padding: 25px 21px;
    border-radius: 24px;
    opacity: .35;
    transform: translateY(40px) scale(.98);
  }

  .chapter__meta {
    padding-bottom: 16px;
    font-size: .64rem;
  }

  .chapter__icon {
    width: 52px;
    height: 52px;
    margin-top: 22px;
    border-radius: 16px;
  }

  .chapter__icon svg { width: 29px; }

  .chapter h2 {
    margin-top: 20px;
    font-size: clamp(2.2rem, 11vw, 3.55rem);
  }

  .chapter__card > p {
    margin-top: 18px;
    font-size: .98rem;
    line-height: 1.5;
  }

  .chapter__card > ul,
  .chapter__pulse,
  .scan-panel,
  .merge-flow,
  .route-ticker,
  .delivery-switch { margin-top: 21px; }

  .chapter__pulse { grid-template-columns: auto 1fr; }
  .chapter__pulse b { display: none; }

  .arrival {
    align-items: end;
    padding-bottom: calc(112px + env(safe-area-inset-bottom));
  }

  .arrival__halo {
    top: 52%;
    width: 110vw;
  }

  .arrival__panel {
    padding: 38px 21px;
    border-radius: 26px;
  }

  .arrival__code { font-size: .63rem; }

  .arrival h2 {
    margin-top: 24px;
    font-size: clamp(4.1rem, 20vw, 6rem);
  }

  .arrival p {
    margin-top: 25px;
    font-size: .97rem;
  }

  .delivery {
    padding: 92px 18px 82px;
  }

  .delivery__head {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .delivery__head > span {
    grid-column: auto;
    margin-bottom: -7px;
  }

  .delivery h2,
  .contact h2 {
    font-size: clamp(3.1rem, 14vw, 5rem);
  }

  .delivery__layout {
    grid-template-columns: 1fr;
    margin-top: 42px;
  }

  .pickup-grid { grid-template-columns: 1fr; border-radius: 22px; }

  .pickup-grid li {
    min-height: 76px;
    padding: 15px 17px;
  }

  .courier-card {
    min-height: 330px;
    padding: 27px;
    border-radius: 22px;
  }

  .contact {
    grid-template-columns: 1fr;
    gap: 55px;
    min-height: auto;
    padding: 92px 18px calc(118px + env(safe-area-inset-bottom));
  }

  .contact__glow { top: 8%; width: 120vw; }

  .contact__actions { padding-bottom: 0; }

  .contact__phone { padding: 21px 18px; border-radius: 18px; }
  .contact__phone strong { font-size: 1.45rem; }

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

  .contact__socials a {
    min-height: 54px;
    padding: 0 17px;
    font-size: .86rem;
  }

  .contact footer {
    grid-template-columns: 1fr auto;
    gap: 12px;
  }

  .contact footer p { display: none; }

  .mobile-dock {
    position: fixed;
    right: 10px;
    bottom: max(10px, env(safe-area-inset-bottom));
    left: 10px;
    z-index: 65;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 7px;
    padding: 7px;
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 19px;
    background: rgba(5, 9, 12, .86);
    box-shadow: 0 18px 55px rgba(0, 0, 0, .45);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
  }

  .mobile-dock a {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    min-height: 54px;
    border-radius: 13px;
    background: rgba(255, 255, 255, .055);
    line-height: 1.12;
  }

  .mobile-dock a:first-child {
    color: #03110f;
    background: var(--cyan);
  }

  .mobile-dock span { font-size: .72rem; opacity: .7; }
  .mobile-dock b { margin-top: 3px; font-size: .88rem; }
}

@media (max-width: 430px) {
  .hero h1 { font-size: clamp(2.75rem, 14.2vw, 4rem); }
  .hero__actions { display: grid; grid-template-columns: 1fr; }
  .button { width: 100%; }
  .chapter__meta b { max-width: 55%; text-align: right; }
  .delivery-switch { grid-template-columns: 1fr; }
  .arrival__actions { display: grid; }
}

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

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

  .world img { transform: translate3d(0, -23%, 0); }
}
