:root {
  --bg: #050509;
  --panel: rgba(255, 255, 255, 0.075);
  --panel-strong: rgba(255, 255, 255, 0.13);
  --line: rgba(255, 255, 255, 0.16);
  --text: #f7f4ee;
  --muted: rgba(247, 244, 238, 0.62);
  --violet: #8357ff;
  --blue: #5d8cff;
  --pink: #ff79bc;
  --mint: #77f7d0;
  --paper: #f4f0e8;
  --danger: #ff6f7d;
  --ok: #b8ff69;
  --progress: 0;
  --mx: 50vw;
  --my: 50vh;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  scroll-behavior: smooth;
  overflow-x: clip;
  background: var(--bg);
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: clip;
  background:
    radial-gradient(900px circle at 16% -8%, rgba(93, 140, 255, 0.22), transparent 56%),
    radial-gradient(760px circle at 85% 8%, rgba(255, 121, 188, 0.16), transparent 54%),
    linear-gradient(180deg, #050509, #080812 48%, #050509);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  text-rendering: geometricPrecision;
  -webkit-font-smoothing: antialiased;
}

button,
input {
  font: inherit;
}

button {
  border: 0;
  cursor: pointer;
}

img,
canvas {
  display: block;
}

::selection {
  background: var(--mint);
  color: #05110d;
}

.grain {
  position: fixed;
  inset: 0;
  z-index: 60;
  pointer-events: none;
  opacity: 0.14;
  mix-blend-mode: overlay;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(255,255,255,.5) 0 1px, transparent 1px),
    radial-gradient(circle at 80% 70%, rgba(255,255,255,.35) 0 1px, transparent 1px);
  background-size: 3px 3px, 5px 5px;
}

.topbar {
  position: fixed;
  left: 50%;
  top: 22px;
  z-index: 50;
  display: grid;
  width: min(1180px, calc(100vw - 32px));
  grid-template-columns: auto minmax(300px, 1fr) auto;
  gap: 12px;
  align-items: start;
  transform: translateX(-50%);
}

.brand,
.nav-pill,
.top-actions {
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(7, 7, 13, 0.68);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.1), 0 18px 70px rgba(0,0,0,.24);
  backdrop-filter: blur(22px) saturate(135%);
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  gap: 10px;
  padding: 0 14px 0 8px;
  color: var(--text);
  font-weight: 900;
}

.brand-mark {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border-radius: 999px;
  background: var(--paper);
  color: #07070b;
}

.nav-pill {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
  padding: 4px;
}

.nav-pill button,
.ghost-button,
.light-button {
  min-height: 36px;
  border-radius: 999px;
  background: transparent;
  padding: 0 16px;
  color: rgba(255,255,255,.74);
  font-size: 13px;
  font-weight: 760;
  transition: background .24s ease, color .24s ease, transform .24s ease;
}

.nav-pill button:hover,
.ghost-button:hover {
  background: rgba(255,255,255,.1);
  color: white;
}

.top-actions {
  display: inline-flex;
  justify-self: end;
  align-items: center;
  gap: 4px;
  padding: 4px;
}

.light-button,
.primary-cta {
  background: var(--paper);
  color: #07070b;
}

.light-button:hover,
.primary-cta:hover {
  transform: translateY(-2px);
}

.hero-section {
  position: relative;
  min-height: 930px;
  overflow: hidden;
  border-bottom: 1px solid rgba(255,255,255,.08);
  background:
    linear-gradient(90deg, rgba(255,255,255,.055) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255,255,255,.045) 1px, transparent 1px);
  background-size: 25vw 100%, 100% 25vh;
}

.liquid-canvas,
.security-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-halo {
  position: absolute;
  left: 68%;
  top: 48%;
  width: min(660px, 54vw);
  aspect-ratio: 1;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 999px;
  transform: translate(-50%, -50%) rotateX(68deg);
  box-shadow:
    inset 0 0 80px rgba(255,255,255,.05),
    0 0 120px rgba(131,87,255,.26);
}

.hero-copy {
  position: absolute;
  left: clamp(20px, 5vw, 72px);
  top: 142px;
  z-index: 8;
  max-width: 575px;
}

.status-badge,
.section-label span,
.security-copy span,
.velocity-copy span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,255,255,.055);
  padding: 8px 12px;
  color: rgba(255,255,255,.76);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.hero-copy h1 {
  margin: 18px 0 0;
  max-width: 575px;
  font-size: 6.2rem;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 0.88;
}

.hero-copy h1 span {
  display: block;
  color: rgba(255,255,255,.48);
}

.hero-copy p {
  max-width: 470px;
  margin: 22px 0 0;
  color: rgba(255,255,255,.72);
  font-size: 16px;
  line-height: 1.68;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.primary-cta,
.secondary-cta,
.price-card button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 999px;
  padding: 0 20px;
  font-weight: 900;
  box-shadow: 0 22px 70px rgba(244,240,232,.13);
  transition: transform .24s ease, box-shadow .24s ease, background .24s ease;
}

.primary-cta span {
  display: grid;
  width: 20px;
  height: 20px;
  place-items: center;
  border-radius: 999px;
  background: #07070b;
  color: white;
}

.secondary-cta,
.price-card button {
  border: 1px solid var(--line);
  background: rgba(255,255,255,.06);
  color: white;
  box-shadow: none;
}

.card-theater {
  position: absolute;
  left: 68%;
  top: 49%;
  z-index: 3;
  width: min(630px, 52vw);
  height: min(630px, 52vw);
  transform: translate(-50%, -50%);
  perspective: 1400px;
}

.floating-card {
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(360px, 29vw);
  aspect-ratio: .72;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.26);
  border-radius: 28px;
  background:
    radial-gradient(circle at 72% 18%, rgba(255,255,255,.82), transparent 0 3.2rem),
    radial-gradient(circle at 88% 78%, rgba(119,247,208,.26), transparent 32%),
    radial-gradient(circle at 18% 82%, rgba(255,121,188,.34), transparent 42%),
    linear-gradient(135deg, #05050a 0%, #15113c 31%, #4c2ff0 61%, #efe7ff 100%);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.38),
    0 55px 150px rgba(0,0,0,.48),
    0 0 120px rgba(131,87,255,.42);
  transform:
    translate(-50%, -50%)
    rotateX(calc((var(--tilt-y, 0) * -1deg) + 10deg))
    rotateY(calc((var(--tilt-x, 0) * 1deg) - 10deg))
    rotateZ(-1deg);
  transform-style: preserve-3d;
  will-change: transform;
  animation: card-float 6s ease-in-out infinite;
}

.floating-card::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: 27px;
  background:
    linear-gradient(90deg, rgba(255,255,255,.08) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255,255,255,.075) 1px, transparent 1px);
  background-size: 18px 18px;
  mask-image: linear-gradient(180deg, transparent, black 18%, black 84%, transparent);
  opacity: .34;
  pointer-events: none;
}

.floating-card::after {
  content: "";
  position: absolute;
  left: 24px;
  right: 24px;
  top: 136px;
  height: 128px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 24px;
  background:
    linear-gradient(90deg, transparent 0 46%, rgba(255,255,255,.12) 46% 47%, transparent 47%),
    linear-gradient(180deg, rgba(255,255,255,.08), rgba(0,0,0,.08));
  opacity: .7;
  pointer-events: none;
}

.card-reflection {
  position: absolute;
  inset: -20% 20% -20% 54%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.55), transparent);
  filter: blur(10px);
  transform: rotate(13deg);
  animation: card-shine 6s ease-in-out infinite;
}

.card-chip {
  position: absolute;
  right: 32px;
  top: 34px;
  width: 42px;
  height: 34px;
  border-radius: 9px;
  background:
    linear-gradient(90deg, transparent 45%, rgba(0,0,0,.36) 45% 52%, transparent 52%),
    linear-gradient(180deg, rgba(255,255,255,.9), rgba(255,255,255,.62));
}

.card-topline {
  position: absolute;
  left: 28px;
  top: 30px;
  color: rgba(255,255,255,.7);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.card-network {
  position: absolute;
  left: 28px;
  top: 56px;
  color: rgba(255,255,255,.46);
  font-size: 10px;
  font-weight: 900;
}

.contactless {
  position: absolute;
  right: 34px;
  top: 82px;
  width: 38px;
  height: 34px;
}

.contactless i {
  position: absolute;
  inset: 0;
  border-right: 2px solid rgba(255,255,255,.72);
  border-radius: 50%;
}

.contactless i:nth-child(1) { right: 18px; opacity: .45; }
.contactless i:nth-child(2) { right: 9px; opacity: .62; }
.contactless i:nth-child(3) { right: 0; opacity: .82; }

.card-gridline {
  position: absolute;
  left: -18%;
  width: 136%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.25), transparent);
  transform: rotate(-18deg);
}

.card-gridline-a { top: 46%; }
.card-gridline-b { top: 68%; opacity: .6; }
.card-gridline-c { top: 57%; opacity: .36; transform: rotate(12deg); }

.card-brand {
  position: absolute;
  left: 28px;
  bottom: 96px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 26px;
  font-weight: 780;
}

.card-logo {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 999px;
  background: rgba(255,255,255,.18);
  backdrop-filter: blur(16px);
}

.card-number {
  position: absolute;
  left: 28px;
  bottom: 62px;
  color: rgba(255,255,255,.72);
  font-size: 13px;
  font-weight: 850;
}

.card-meta {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 24px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  color: rgba(255,255,255,.64);
  font-size: 12px;
  font-weight: 850;
}

.card-meta strong {
  color: white;
  font-size: 20px;
}

.orbit-ring {
  position: absolute;
  left: 50%;
  top: 50%;
  border: 1px solid rgba(255,255,255,.24);
  border-radius: 999px;
  transform: translate(-50%, -50%);
}

.orbit-ring-one {
  width: 82%;
  height: 82%;
  animation: slow-spin 18s linear infinite;
}

.orbit-ring-two {
  width: 106%;
  height: 46%;
  transform: translate(-50%, -50%) rotate(-14deg);
  opacity: .6;
}

.card-satellite {
  position: absolute;
  z-index: 5;
  min-width: 150px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(7,7,13,.62);
  padding: 14px;
  box-shadow: 0 22px 80px rgba(0,0,0,.34);
  backdrop-filter: blur(18px);
}

.card-satellite span {
  display: block;
  color: var(--muted);
  font-size: 12px;
}

.card-satellite strong {
  display: block;
  margin-top: 6px;
  color: white;
  font-size: 24px;
}

.card-satellite-a { left: 6%; top: 22%; animation: bob-a 5.5s ease-in-out infinite; }
.card-satellite-b { right: 0; top: 39%; animation: bob-b 6.3s ease-in-out infinite; }
.card-satellite-c { left: 24%; bottom: 4%; animation: bob-c 5.8s ease-in-out infinite; }

.hero-bottom {
  position: absolute;
  left: clamp(20px, 5vw, 72px);
  right: clamp(20px, 5vw, 72px);
  bottom: 38px;
  z-index: 6;
  display: grid;
  grid-template-columns: minmax(250px, 0.34fr) minmax(500px, 1fr);
  gap: 24px;
  align-items: end;
}

.hero-note {
  border-top: 1px solid var(--line);
  padding-top: 18px;
  max-width: 320px;
}

.hero-note span {
  color: white;
  font-weight: 900;
}

.hero-note p {
  margin: 7px 0 0;
  color: var(--muted);
  line-height: 1.5;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255,255,255,.055);
  overflow: hidden;
  backdrop-filter: blur(20px);
}

.hero-metrics div {
  min-height: 92px;
  padding: 18px;
  border-right: 1px solid var(--line);
}

.hero-metrics div:last-child {
  border-right: 0;
}

.hero-metrics strong {
  display: block;
  font-size: 30px;
  line-height: 1;
}

.hero-metrics span {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.velocity-section {
  position: relative;
  height: 330vh;
  background:
    linear-gradient(90deg, rgba(5,5,9,.035) 1px, transparent 1px),
    linear-gradient(180deg, rgba(5,5,9,.03) 1px, transparent 1px),
    #f4f0e8;
  background-size: 25% 100%, 100% 25%;
  color: #050509;
}

.velocity-sticky {
  position: sticky;
  top: 0;
  min-height: 100svh;
  overflow: hidden;
}

.velocity-bg {
  position: absolute;
  inset: 52% 0 0;
  background:
    radial-gradient(860px circle at 52% 0%, rgba(131,87,255,.48), transparent 62%),
    linear-gradient(180deg, #0c0618, #030306 68%);
}

.marquee-word {
  position: absolute;
  z-index: 0;
  font-size: 7.4rem;
  font-weight: 820;
  letter-spacing: 0;
  line-height: .75;
  white-space: nowrap;
  color: rgba(5, 5, 9, .105);
  mix-blend-mode: normal;
  transform: translateX(calc(var(--progress) * -9vw));
  will-change: transform;
}

.marquee-one { left: 5vw; top: 16vh; }
.marquee-two { left: 50vw; top: 31vh; color: rgba(255,255,255,.16); }

.velocity-copy {
  position: absolute;
  left: clamp(20px, 5vw, 72px);
  top: 86px;
  z-index: 4;
  max-width: 700px;
}

.velocity-copy h2,
.section-label h2,
.security-copy h2 {
  margin: 14px 0 0;
  font-size: 5.7rem;
  font-weight: 520;
  letter-spacing: 0;
  line-height: .86;
}

.velocity-copy h2 {
  max-width: 680px;
  font-size: 4.9rem;
}

.deck-stage {
  position: absolute;
  left: 50%;
  top: 59%;
  z-index: 5;
  width: min(1180px, calc(100vw - 104px));
  height: 510px;
  transform: translate(-50%, -50%);
  perspective: 1500px;
}

.deck-card {
  position: absolute;
  width: 280px;
  min-height: 352px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.24);
  border-radius: 26px;
  background:
    radial-gradient(circle at 78% 16%, rgba(255,255,255,.42), transparent 0 3rem),
    linear-gradient(145deg, rgba(255,255,255,.14), rgba(255,255,255,.03)),
    #08070d;
  padding: 22px;
  color: white;
  box-shadow: 0 40px 130px rgba(0,0,0,.48);
  backdrop-filter: blur(18px);
  transform-style: preserve-3d;
  will-change: transform, opacity;
}

.deck-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(340px circle at var(--card-x, 50%) var(--card-y, 50%), rgba(255,255,255,.18), transparent 56%),
    linear-gradient(180deg, transparent 42%, rgba(131,87,255,.22));
  pointer-events: none;
}

.deck-card span,
.deck-card h3,
.deck-card p,
.deck-card small {
  position: relative;
  z-index: 1;
}

.deck-card span {
  color: var(--mint);
  font-size: 12px;
  font-weight: 920;
  text-transform: uppercase;
}

.deck-card h3 {
  margin: 104px 0 0;
  font-size: 2.55rem;
  letter-spacing: 0;
  line-height: .9;
}

.deck-card p {
  margin: 18px 0 0;
  color: rgba(255,255,255,.67);
  line-height: 1.58;
}

.deck-card small {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 20px;
  display: block;
  border-top: 1px solid rgba(255,255,255,.14);
  padding-top: 14px;
  color: rgba(255,255,255,.58);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.deck-card-1 {
  left: 50%;
  top: 50%;
  z-index: 4;
  transform:
    translate3d(
      calc(-50% + ((1 - var(--progress)) * -36px) + (var(--progress) * -420px)),
      calc(-50% + ((1 - var(--progress)) * 28px) + (var(--progress) * 72px)),
      calc(var(--progress) * 20px)
    )
    rotateY(calc(var(--progress) * -12deg))
    rotateZ(calc(((1 - var(--progress)) * -8deg) + (var(--progress) * -5deg)));
}

.deck-card-2 {
  left: 50%;
  top: 50%;
  z-index: 1;
  transform:
    translate3d(
      calc(-50% + ((1 - var(--progress)) * -12px) + (var(--progress) * -145px)),
      calc(-50% + ((1 - var(--progress)) * 10px) + (var(--progress) * -152px)),
      calc(-120px + (var(--progress) * 40px))
    )
    rotateY(calc(var(--progress) * -7deg))
    rotateZ(calc(((1 - var(--progress)) * -3deg) + (var(--progress) * 0deg)))
    scale(calc(.96 + (var(--progress) * .03)));
  background:
    radial-gradient(circle at 82% 18%, rgba(255,255,255,.5), transparent 0 3rem),
    linear-gradient(145deg, #101020, #4225d9 54%, #f2e8ff);
}

.deck-card-3 {
  left: 50%;
  top: 50%;
  z-index: 4;
  transform:
    translate3d(
      calc(-50% + ((1 - var(--progress)) * 36px) + (var(--progress) * 420px)),
      calc(-50% + ((1 - var(--progress)) * -22px) + (var(--progress) * 62px)),
      calc(var(--progress) * 24px)
    )
    rotateY(calc(var(--progress) * 12deg))
    rotateZ(calc(((1 - var(--progress)) * 7deg) + (var(--progress) * 5deg)));
}

.deck-card-4 {
  left: 50%;
  top: 50%;
  z-index: 5;
  transform:
    translate3d(
      calc(-50% + ((1 - var(--progress)) * 12px) + (var(--progress) * 140px)),
      calc(-50% + ((1 - var(--progress)) * -6px) + (var(--progress) * 24px)),
      calc(40px + (var(--progress) * 35px))
    )
    rotateX(calc(var(--progress) * 5deg))
    rotateZ(calc(((1 - var(--progress)) * 2deg) + (var(--progress) * 0deg)));
  opacity: calc(.58 + var(--progress) * .42);
}

.velocity-index {
  position: absolute;
  left: clamp(20px, 5vw, 72px);
  right: clamp(20px, 5vw, 72px);
  bottom: 30px;
  z-index: 8;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 18px;
  align-items: center;
  color: white;
}

.velocity-index i {
  height: 1px;
  background: linear-gradient(90deg, var(--mint), var(--violet));
  transform: scaleX(calc(.08 + var(--progress) * .92));
  transform-origin: left center;
}

.section-pad {
  position: relative;
  padding: 140px clamp(20px, 5vw, 72px);
}

.split-lab {
  display: grid;
  grid-template-columns: minmax(280px, .8fr) minmax(380px, 1.2fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
  background:
    radial-gradient(900px circle at 90% 8%, rgba(93,140,255,.18), transparent 60%),
    #050509;
}

.section-label {
  position: sticky;
  top: 110px;
}

.flow-grid {
  display: grid;
  gap: 12px;
}

.flow-item {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255,255,255,.055);
  padding: 24px;
  color: white;
  text-align: left;
  transition: min-height .28s ease, background .28s ease, transform .28s ease;
}

.flow-item.active,
.flow-item:hover {
  background:
    radial-gradient(420px circle at 88% 10%, rgba(131,87,255,.38), transparent 64%),
    rgba(255,255,255,.09);
  transform: translateY(-4px);
}

.flow-item span {
  color: var(--mint);
  font-weight: 900;
}

.flow-item strong {
  display: block;
  margin-top: 38px;
  font-size: 30px;
  letter-spacing: 0;
}

.flow-item p {
  max-height: 0;
  margin: 0;
  overflow: hidden;
  color: var(--muted);
  line-height: 1.62;
  transition: max-height .3s ease, margin .3s ease;
}

.flow-item.active p {
  max-height: 120px;
  margin-top: 14px;
}

.flow-visual {
  grid-column: 1 / -1;
  position: relative;
  min-height: 560px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 32px;
  background:
    linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255,255,255,.045) 1px, transparent 1px),
    radial-gradient(700px circle at 50% 50%, rgba(131,87,255,.22), transparent 58%),
    #07070c;
  background-size: 25% 100%, 100% 33.333%, auto, auto;
}

.flow-phone {
  position: absolute;
  left: 13%;
  top: 50%;
  width: 272px;
  height: 438px;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 38px;
  background:
    radial-gradient(circle at 76% 16%, rgba(255,255,255,.36), transparent 0 2rem),
    radial-gradient(circle at 28% 76%, rgba(119,247,208,.22), transparent 34%),
    linear-gradient(145deg, #0a0a10, #2a1788 58%, #d9d0ff);
  box-shadow: 0 40px 130px rgba(0,0,0,.44);
  transform: translateY(-50%) rotate(-4deg);
}

.phone-top,
.phone-card,
.phone-field,
.phone-action {
  position: absolute;
  left: 28px;
  right: 28px;
  border-radius: 18px;
  background: rgba(255,255,255,.15);
}

.phone-top {
  top: 28px;
  height: 34px;
  width: 112px;
  right: auto;
  display: grid;
  place-items: center;
  color: rgba(255,255,255,.78);
  font-size: 12px;
  font-weight: 900;
}

.phone-card {
  top: 92px;
  min-height: 164px;
  background:
    radial-gradient(circle at 80% 18%, rgba(255,255,255,.28), transparent 0 2.4rem),
    linear-gradient(145deg, rgba(0,0,0,.48), rgba(255,255,255,.08));
  padding: 18px;
}

.phone-card span,
.phone-field span {
  display: block;
  color: rgba(255,255,255,.56);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.phone-card strong {
  display: block;
  margin-top: 34px;
  color: white;
  font-size: 22px;
  line-height: 1.05;
}

.phone-card small {
  display: block;
  margin-top: 10px;
  color: rgba(255,255,255,.62);
  line-height: 1.35;
}

.phone-field {
  top: 282px;
  min-height: 54px;
  padding: 10px 14px;
  background: rgba(255,255,255,.13);
}

.phone-field strong {
  display: block;
  margin-top: 4px;
  color: white;
  font-size: 15px;
}

.phone-field.short { top: 346px; right: 108px; }
.phone-action {
  bottom: 28px;
  height: 48px;
  display: grid;
  place-items: center;
  background: var(--paper);
  color: #07070b;
  font-size: 13px;
  font-weight: 900;
}

.flow-console {
  position: absolute;
  right: 8%;
  top: 50%;
  width: min(500px, 43vw);
  border: 1px solid var(--line);
  border-radius: 26px;
  background: rgba(255,255,255,.075);
  padding: 28px;
  backdrop-filter: blur(20px);
  transform: translateY(-50%);
}

.flow-console span {
  color: var(--mint);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.flow-console strong {
  display: block;
  margin-top: 54px;
  font-size: 4.15rem;
  letter-spacing: 0;
  line-height: .92;
}

.flow-console p {
  margin: 18px 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.security-section {
  overflow: hidden;
  min-height: 920px;
  background:
    radial-gradient(800px circle at 16% 90%, rgba(255,121,188,.16), transparent 58%),
    #f4f0e8;
  color: #08080d;
}

.security-copy {
  position: relative;
  z-index: 2;
  max-width: 900px;
}

.security-copy span {
  border-color: rgba(0,0,0,.14);
  background: rgba(0,0,0,.06);
  color: rgba(0,0,0,.58);
}

.security-copy p {
  max-width: 560px;
  color: rgba(0,0,0,.58);
  font-size: 17px;
  line-height: 1.7;
}

.security-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-top: 70px;
}

.security-grid article,
.price-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,.12);
  border-radius: 24px;
  background: rgba(255,255,255,.52);
  padding: 24px;
  min-height: 240px;
  box-shadow: 0 28px 90px rgba(0,0,0,.08);
  transform-style: preserve-3d;
}

.security-grid article::before,
.price-card::before {
  content: "";
  position: absolute;
  inset: -60% -50% auto;
  height: 100%;
  background: radial-gradient(closest-side, rgba(131,87,255,.22), transparent 70%);
  pointer-events: none;
}

.security-grid span,
.price-card span {
  position: relative;
  color: rgba(0,0,0,.48);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.security-grid strong {
  position: relative;
  display: block;
  margin-top: 84px;
  font-size: 30px;
  letter-spacing: 0;
  line-height: .96;
}

.security-grid p {
  position: relative;
  color: rgba(0,0,0,.56);
  line-height: 1.55;
}

.pricing-section {
  overflow: hidden;
  background:
    radial-gradient(780px circle at 82% 6%, rgba(131,87,255,.22), transparent 56%),
    #050509;
}

.pricing-section .section-label {
  position: relative;
  top: auto;
  z-index: 2;
  max-width: 820px;
}

.pricing-section .section-label h2 {
  max-width: 760px;
  font-size: 4.7rem;
}

.pricing-grid {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 58px;
}

.price-card {
  min-height: 430px;
  border-color: var(--line);
  background:
    radial-gradient(520px circle at 90% 10%, rgba(131,87,255,.22), transparent 58%),
    rgba(255,255,255,.06);
  color: white;
  box-shadow: 0 32px 120px rgba(0,0,0,.28);
}

.price-card.featured {
  background:
    radial-gradient(520px circle at 90% 10%, rgba(255,255,255,.42), transparent 0 4rem),
    linear-gradient(145deg, #0b0b12, #3620bd 58%, #f6edff);
}

.price-card span {
  color: rgba(255,255,255,.62);
}

.price-card strong {
  position: relative;
  display: block;
  margin-top: 96px;
  font-size: 4.8rem;
  letter-spacing: 0;
  line-height: .95;
}

.price-card p {
  position: relative;
  max-width: 280px;
  color: rgba(255,255,255,.66);
  line-height: 1.6;
}

.price-card button {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .72s ease, transform .72s cubic-bezier(.22, 1, .36, 1);
}

[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}

.portal-drawer {
  position: fixed;
  inset: 0;
  z-index: 80;
  pointer-events: none;
}

.portal-drawer.open {
  pointer-events: auto;
}

.drawer-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.56);
  opacity: 0;
  backdrop-filter: blur(10px);
  transition: opacity .28s ease;
}

.portal-drawer.open .drawer-backdrop {
  opacity: 1;
}

.drawer-panel {
  position: absolute;
  right: 18px;
  top: 18px;
  bottom: 18px;
  width: min(620px, calc(100vw - 36px));
  overflow-y: auto;
  border: 1px solid var(--line);
  border-radius: 32px;
  background:
    radial-gradient(700px circle at 80% 0%, rgba(131,87,255,.22), transparent 56%),
    rgba(7,7,13,.92);
  padding: 22px;
  box-shadow: 0 40px 180px rgba(0,0,0,.62);
  transform: translateX(calc(100% + 24px));
  transition: transform .42s cubic-bezier(.22, 1, .36, 1);
  backdrop-filter: blur(28px) saturate(130%);
}

.portal-drawer.open .drawer-panel {
  transform: translateX(0);
}

.drawer-head {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 18px;
}

.drawer-head span {
  color: var(--mint);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.drawer-head h2 {
  margin: 8px 0 0;
  font-size: 46px;
  letter-spacing: 0;
}

.close-button {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,255,255,.08);
  color: white;
  font-weight: 900;
}

.drawer-tabs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 6px;
  margin: 24px 0;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,255,255,.06);
  padding: 5px;
}

.drawer-tabs button {
  min-height: 40px;
  border-radius: 999px;
  background: transparent;
  color: rgba(255,255,255,.66);
  font-weight: 900;
}

.drawer-tabs button.active {
  background: var(--paper);
  color: #07070b;
}

.auth-view {
  display: none;
}

.auth-view.active {
  display: block;
}

.auth-card {
  display: grid;
  gap: 12px;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: rgba(255,255,255,.06);
  padding: 18px;
}

.auth-card.hidden {
  display: none;
}

.auth-card label {
  display: grid;
  gap: 8px;
  color: rgba(255,255,255,.66);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.auth-card input {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 16px;
  outline: 0;
  background: rgba(0,0,0,.24);
  padding: 0 14px;
  color: white;
}

.cabinet-view,
.admin-view {
  display: grid;
  gap: 12px;
  margin-top: 14px;
}

.drawer-metrics,
.admin-metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.drawer-metrics div,
.admin-metrics div {
  min-height: 118px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255,255,255,.06);
  padding: 18px;
}

.drawer-metrics strong,
.admin-metrics strong {
  display: block;
  font-size: 30px;
}

.drawer-metrics span,
.admin-metrics span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.cabinet-card,
.order-row,
.user-row {
  display: grid;
  grid-template-columns: minmax(160px, .52fr) 1fr;
  gap: 12px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255,255,255,.055);
  padding: 12px;
}

.mini-card {
  min-height: 140px;
  border-radius: 18px;
  background:
    radial-gradient(circle at 78% 20%, rgba(255,255,255,.4), transparent 0 2rem),
    linear-gradient(145deg, #08080e, #3421ba 62%, #efe7ff);
  padding: 16px;
  color: white;
}

.mini-card span,
.mini-card small {
  display: block;
  color: rgba(255,255,255,.72);
  font-weight: 900;
}

.mini-card strong {
  display: block;
  margin-top: 46px;
  font-size: 28px;
}

.transaction-list,
.admin-list {
  display: grid;
  gap: 8px;
}

.transaction-row,
.order-row,
.user-row {
  align-items: center;
}

.transaction-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255,255,255,.05);
  padding: 14px;
}

.transaction-row span,
.order-row span,
.user-row span {
  color: var(--muted);
  font-size: 12px;
}

.positive { color: var(--ok); }
.negative { color: var(--danger); }

.status-select {
  min-height: 40px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(0,0,0,.24);
  color: white;
  padding: 0 10px;
}

@keyframes card-float {
  0%, 100% { translate: 0 0; }
  50% { translate: 0 -18px; }
}

@keyframes card-shine {
  0%, 35% { opacity: .18; transform: translateX(-80%) rotate(13deg); }
  70%, 100% { opacity: .68; transform: translateX(90%) rotate(13deg); }
}

@keyframes slow-spin {
  to { rotate: 360deg; }
}

@keyframes bob-a { 50% { transform: translate3d(-10px, 18px, 0); } }
@keyframes bob-b { 50% { transform: translate3d(14px, -16px, 0); } }
@keyframes bob-c { 50% { transform: translate3d(18px, 8px, 0); } }

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

  .nav-pill {
    display: none;
  }

  .hero-section {
    min-height: 1280px;
  }

  .hero-copy {
    top: 126px;
    max-width: 600px;
  }

  .hero-copy h1 {
    font-size: 5.35rem;
  }

  .marquee-word {
    font-size: 6.4rem;
  }

  .velocity-copy h2,
  .section-label h2,
  .security-copy h2 {
    font-size: 4.8rem;
  }

  .pricing-section .section-label h2 {
    font-size: 4rem;
  }

  .deck-card h3 {
    font-size: 2.25rem;
  }

  .flow-console strong {
    font-size: 3rem;
  }

  .price-card strong {
    font-size: 4.2rem;
  }

  .card-theater {
    left: 50%;
    top: 55%;
    width: min(620px, 94vw);
    height: min(620px, 94vw);
  }

  .hero-halo {
    left: 50%;
    top: 55%;
    width: min(650px, 94vw);
  }

  .hero-bottom {
    grid-template-columns: 1fr;
  }

  .hero-metrics {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-metrics div:nth-child(2) {
    border-right: 0;
  }

  .split-lab,
  .pricing-grid,
  .security-grid {
    grid-template-columns: 1fr;
  }

  .section-label {
    position: static;
  }

  .flow-console {
    left: 24px;
    right: 24px;
    bottom: 24px;
    top: auto;
    width: auto;
    transform: none;
  }

  .deck-stage {
    top: 61%;
    width: min(820px, calc(100vw - 52px));
    height: 540px;
  }

  .deck-card {
    width: 250px;
    min-height: 330px;
  }

  .deck-card-1 {
    left: 50%;
    top: 50%;
  }

  .deck-card-2 {
    left: 50%;
    top: 50%;
  }

  .deck-card-3 {
    left: 50%;
    right: auto;
    top: 50%;
  }

  .deck-card-4 {
    left: 50%;
    top: 50%;
  }
}

@media (max-width: 640px) {
  .topbar {
    top: 12px;
    width: calc(100vw - 20px);
    grid-template-columns: auto auto;
    justify-content: space-between;
    gap: 8px;
  }

  .brand span:last-child,
  .ghost-button {
    display: none;
  }

  .brand {
    width: 46px;
    justify-content: center;
    padding: 0 7px;
  }

  .top-actions {
    min-height: 46px;
  }

  .light-button {
    min-height: 38px;
    padding: 0 14px;
    font-size: 13px;
  }

  .wide-label {
    display: none;
  }

  .hero-section {
    min-height: 1280px;
  }

  .hero-copy {
    top: 88px;
    left: 16px;
    right: 16px;
    max-width: none;
  }

  .hero-copy h1 {
    max-width: 320px;
    font-size: 3.28rem;
    line-height: .95;
    overflow-wrap: break-word;
  }

  .hero-copy p {
    max-width: 318px;
    font-size: 15px;
    line-height: 1.55;
    overflow-wrap: break-word;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: start;
    gap: 10px;
    margin-top: 22px;
  }

  .primary-cta,
  .secondary-cta,
  .price-card button {
    min-height: 46px;
    padding: 0 16px;
  }

  .hero-buttons .primary-cta,
  .hero-buttons .secondary-cta {
    width: min(230px, 100%);
  }

  .marquee-word {
    font-size: 4.4rem;
    opacity: .62;
  }

  .velocity-copy h2,
  .section-label h2,
  .security-copy h2 {
    font-size: 3rem;
    line-height: .94;
  }

  .pricing-section .section-label h2 {
    font-size: 2.8rem;
  }

  .deck-card h3 {
    margin-top: 74px;
    font-size: 1.58rem;
    line-height: 1;
  }

  .deck-card p {
    margin-top: 12px;
    font-size: 13px;
    line-height: 1.46;
  }

  .deck-card small {
    left: 16px;
    right: 16px;
    bottom: 15px;
    padding-top: 10px;
    font-size: 10px;
  }

  .flow-console strong {
    margin-top: 34px;
    font-size: 2.1rem;
    line-height: 1;
  }

  .price-card strong {
    margin-top: 70px;
    font-size: 3rem;
  }

  .card-theater,
  .hero-halo {
    top: 60%;
    width: min(500px, 96vw);
    height: min(500px, 96vw);
  }

  .floating-card {
    width: min(292px, 76vw);
    border-radius: 24px;
  }

  .card-satellite {
    min-width: 118px;
    padding: 10px;
    border-radius: 15px;
  }

  .card-satellite strong {
    font-size: 20px;
  }

  .card-satellite-a { left: 0; top: 26%; }
  .card-satellite-b { right: 0; top: 44%; }
  .card-satellite-c { left: 20px; bottom: 4%; }

  .hero-bottom {
    left: 16px;
    right: 16px;
    bottom: 22px;
    gap: 14px;
  }

  .hero-note {
    max-width: none;
    padding-top: 14px;
  }

  .hero-note p {
    font-size: 14px;
  }

  .hero-metrics div {
    min-height: 86px;
    padding: 16px;
  }

  .hero-metrics strong {
    font-size: 26px;
  }

  .velocity-section {
    height: 260vh;
  }

  .velocity-bg {
    inset: 48% 0 0;
  }

  .marquee-one { left: 16px; top: 19vh; }
  .marquee-two { left: 34vw; top: 33vh; }

  .velocity-copy {
    left: 16px;
    right: 16px;
    top: 78px;
    max-width: none;
  }

  .velocity-copy h2 {
    max-width: 340px;
    font-size: 2.75rem;
  }

  .deck-stage {
    top: 61%;
    width: calc(100vw - 32px);
    height: 520px;
  }

  .deck-card {
    width: min(208px, 61vw);
    min-height: 276px;
    border-radius: 22px;
    padding: 16px;
  }

  .deck-card-1 {
    left: 50%;
    top: 50%;
    transform:
      translate3d(
        calc(-50% + ((1 - var(--progress)) * -26px) + (var(--progress) * -78px)),
        calc(-50% + ((1 - var(--progress)) * 22px) + (var(--progress) * 92px)),
        calc(var(--progress) * 16px)
      )
      rotateZ(calc(((1 - var(--progress)) * -8deg) + (var(--progress) * -5deg)));
  }

  .deck-card-2 {
    left: 50%;
    top: 50%;
    transform:
      translate3d(
        calc(-50% + ((1 - var(--progress)) * -8px) + (var(--progress) * 0px)),
        calc(-50% + ((1 - var(--progress)) * 8px) + (var(--progress) * -92px)),
        calc(-95px + (var(--progress) * 15px))
      )
      rotateZ(calc(((1 - var(--progress)) * -3deg) + (var(--progress) * 0deg)))
      scale(calc(.96 + (var(--progress) * .02)));
  }

  .deck-card-3 {
    left: 50%;
    right: auto;
    top: 50%;
    transform:
      translate3d(
        calc(-50% + ((1 - var(--progress)) * 26px) + (var(--progress) * 82px)),
        calc(-50% + ((1 - var(--progress)) * -18px) + (var(--progress) * 94px)),
        calc(var(--progress) * 18px)
      )
      rotateZ(calc(((1 - var(--progress)) * 7deg) + (var(--progress) * 5deg)));
  }

  .deck-card-4 {
    left: 50%;
    top: 50%;
    bottom: auto;
    transform:
      translate3d(
        calc(-50% + ((1 - var(--progress)) * 10px) + (var(--progress) * 36px)),
        calc(-50% + ((1 - var(--progress)) * -6px) + (var(--progress) * 40px)),
        calc(35px + (var(--progress) * 25px))
      )
      rotateZ(calc(((1 - var(--progress)) * 2deg) + (var(--progress) * -1deg)))
      scale(calc(.94 + (var(--progress) * .02)));
  }

  .section-pad {
    padding: 96px 16px;
  }

  .flow-visual {
    display: grid;
    gap: 18px;
    min-height: auto;
    padding: 22px 14px;
    border-radius: 26px;
  }

  .flow-phone {
    position: relative;
    left: auto;
    top: auto;
    width: min(246px, 78vw);
    height: 398px;
    margin: 0 auto;
    transform: rotate(-3deg);
  }

  .phone-field {
    top: 262px;
  }

  .phone-field.short {
    top: 324px;
    right: 96px;
  }

  .flow-console {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    top: auto;
    width: 100%;
    padding: 22px;
    transform: none;
  }

  .price-card {
    min-height: 360px;
  }

  .drawer-panel {
    inset: 10px;
    width: auto;
    border-radius: 24px;
  }

  .drawer-metrics,
  .admin-metrics,
  .cabinet-card,
  .order-row,
  .user-row {
    grid-template-columns: 1fr;
  }
}
