:root {
  --black: #030407;
  --ink: #080a0f;
  --surface: rgba(255, 255, 255, 0.055);
  --surface-strong: rgba(255, 255, 255, 0.11);
  --white: #f7fbff;
  --muted: #9da9b9;
  --line: rgba(255, 255, 255, 0.14);
  --blue: #70d7ff;
  --cyan: #8ffff0;
  --silver: #dce8f4;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--black);
  color: var(--white);
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  overflow-x: hidden;
}

body.no-scroll {
  overflow: hidden;
}

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

#current-canvas {
  position: fixed;
  inset: 0;
  z-index: -3;
  width: 100vw;
  height: 100vh;
  background:
    radial-gradient(circle at 50% 20%, rgba(112, 215, 255, 0.16), transparent 34%),
    linear-gradient(180deg, #05070b 0%, #020306 68%, #000000 100%);
}

.grain {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  opacity: 0.26;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(180deg, transparent 0%, #000 18%, #000 82%, transparent 100%);
}

.site-nav {
  position: fixed;
  top: 18px;
  left: 50%;
  z-index: 20;
  width: min(calc(100% - 32px), var(--max));
  height: 64px;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 0 18px 0 20px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(4, 6, 11, 0.72);
  backdrop-filter: blur(22px);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.36);
}

.brand,
.site-nav nav,
.hero-actions,
.card-top,
.card-bottom,
.search-row {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  font-family: Syne, Inter, sans-serif;
  font-size: 17px;
  font-weight: 800;
}

.brand-mark {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 1px solid var(--blue);
  box-shadow: inset -5px -2px 0 rgba(112, 215, 255, 0.65), 0 0 22px rgba(112, 215, 255, 0.4);
}

.site-nav nav {
  gap: 24px;
  color: var(--muted);
  font-size: 13px;
}

.site-nav nav a,
.nav-cta {
  transition: color 180ms ease, border-color 180ms ease, background 180ms ease;
}

.site-nav nav a:hover {
  color: var(--white);
}

.nav-cta {
  padding: 11px 15px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  font-size: 13px;
  font-weight: 700;
}

.nav-cta:hover {
  border-color: rgba(112, 215, 255, 0.6);
  background: rgba(112, 215, 255, 0.1);
}

section {
  position: relative;
  min-height: 92vh;
  padding: 128px max(24px, calc((100vw - var(--max)) / 2)) 110px;
  scroll-margin-top: 92px;
}

.section-dark {
  background: rgba(2, 3, 6, 0.2);
}

.section-light {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.015));
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.hero {
  min-height: 100svh;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 440px;
  align-items: center;
  gap: 48px;
  padding-top: 144px;
}

.hero::after,
.closing::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 34vh;
  pointer-events: none;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.92));
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1,
h2 {
  font-family: Syne, Inter, sans-serif;
  letter-spacing: 0;
}

h1 {
  margin-bottom: 20px;
  font-size: clamp(84px, 15vw, 178px);
  line-height: 0.78;
}

h2 {
  max-width: 850px;
  margin-bottom: 22px;
  font-size: clamp(42px, 6vw, 82px);
  line-height: 0.95;
}

h3 {
  margin-bottom: 8px;
  font-size: 18px;
}

.hero-sub,
.section-copy p,
.product-copy > p,
.mission-inner p,
.closing-copy p {
  max-width: 650px;
  color: var(--silver);
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.5;
}

.hero-actions {
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 34px;
}

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 800;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button.primary {
  background: var(--white);
  color: #020408;
}

.button.secondary {
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.055);
}

.hero-signal {
  position: relative;
  width: min(100%, 440px);
  aspect-ratio: 1;
}

.signal-ring,
.signal-core {
  position: absolute;
  inset: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
}

.signal-ring {
  border: 1px solid rgba(112, 215, 255, 0.28);
  animation: pulseRing 5s ease-in-out infinite;
}

.ring-one {
  width: 78%;
  height: 78%;
}

.ring-two {
  width: 52%;
  height: 52%;
  animation-delay: -2.2s;
}

.signal-core {
  width: 138px;
  height: 138px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background:
    linear-gradient(145deg, rgba(255,255,255,0.14), rgba(255,255,255,0.03)),
    #06080c;
  box-shadow: 0 0 70px rgba(112, 215, 255, 0.22);
  font-family: Syne, Inter, sans-serif;
  font-weight: 800;
}

.platform {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  align-items: center;
  gap: 34px;
  min-height: auto;
  padding-top: 104px;
  padding-bottom: 84px;
}

.platform .section-copy h2 {
  max-width: 520px;
  font-size: clamp(34px, 4.5vw, 62px);
  line-height: 0.98;
}

.platform .section-copy p {
  max-width: 480px;
  font-size: clamp(16px, 1.45vw, 20px);
  line-height: 1.42;
}

.ecosystem {
  min-height: 430px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(205, 224, 240, 0.18);
  border-radius: 14px;
  background:
    linear-gradient(180deg, rgba(160, 220, 240, 0.055), rgba(255, 255, 255, 0.012)),
    rgba(4, 7, 12, 0.72);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 30px 90px rgba(0, 0, 0, 0.4);
  overflow: hidden;
}

.ecosystem::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, transparent 0 8%, rgba(112, 215, 255, 0.14) 8.6% 9.3%, transparent 9.9% 43%, rgba(112, 215, 255, 0.16) 43.6% 44.4%, transparent 45% 78%, rgba(112, 215, 255, 0.13) 78.6% 79.4%, transparent 80% 100%),
    linear-gradient(0deg, transparent 0 10%, rgba(143, 255, 240, 0.09) 10.4% 11.1%, transparent 11.6% 38%, rgba(143, 255, 240, 0.1) 38.5% 39.3%, transparent 39.8% 66%, rgba(143, 255, 240, 0.08) 66.4% 67.1%, transparent 67.6% 100%),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255,255,255,0.018) 1px, transparent 1px);
  background-size: 100% 100%, 100% 100%, 60px 60px, 60px 60px;
  opacity: 0.75;
}

.ecosystem::after {
  content: "";
  position: absolute;
  inset: -8%;
  background:
        radial-gradient(circle at 38% 20%, rgba(112, 215, 255, 0.12), transparent 28%),
    linear-gradient(172deg, transparent 0 18%, rgba(112, 215, 255, 0.08) 19%, transparent 20% 100%),
    linear-gradient(14deg, transparent 0 46%, rgba(255, 255, 255, 0.055) 47%, transparent 48% 100%),
    linear-gradient(166deg, transparent 0 62%, rgba(143, 255, 240, 0.045) 63%, transparent 64% 100%);
  opacity: 0.62;
  animation: ecosystemDrift 10s ease-in-out infinite alternate;
}

.system-node {
  position: absolute;
  z-index: 3;
  min-width: 112px;
  height: 66px;
  display: grid;
  place-items: center;
  padding: 0 20px;
  border: 1px solid rgba(206, 226, 242, 0.22);
  border-radius: 12px;
  background: rgba(1, 5, 10, 0.86);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.055),
    0 18px 54px rgba(0, 0, 0, 0.36);
  color: #e8f2ff;
  font-size: 20px;
  font-weight: 850;
  line-height: 1;
  text-align: center;
}

.system-node-core {
  border-color: rgba(143, 255, 240, 0.34);
  background: rgba(143, 255, 240, 0.08);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.07),
    0 0 36px rgba(143, 255, 240, 0.18),
    0 18px 54px rgba(0, 0, 0, 0.36);
}

.node-orca {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.node-user { left: 76px; top: 56px; }
.node-card { right: 76px; top: 56px; }
.node-network { left: 76px; bottom: 56px; }
.node-merchant { right: 76px; bottom: 56px; }

.system-web {
  position: absolute;
  inset: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: visible;
}

.web-line {
  fill: none;
  vector-effect: non-scaling-stroke;
  stroke: rgba(143, 255, 240, 0.78);
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-dasharray: 26 170;
  filter:
    drop-shadow(0 0 8px rgba(143, 255, 240, 0.48))
    drop-shadow(0 0 18px rgba(112, 215, 255, 0.22));
  animation: webPulse 3.2s linear infinite;
}

.web-line-soft {
  stroke: rgba(112, 215, 255, 0.28);
  stroke-width: 1.3;
  stroke-dasharray: none;
  animation: webSoftBreathe 4.8s ease-in-out infinite;
}

.web-line-b { animation-delay: -0.65s; }
.web-line-c { animation-delay: -1.3s; }
.web-line-d { animation-delay: -1.95s; }

.eco-line {
  position: absolute;
  z-index: 1;
  height: 2px;
  border-radius: 999px;
  background:
    repeating-linear-gradient(
      90deg,
      rgba(112, 215, 255, 0.12) 0 10px,
      rgba(143, 255, 240, 0.58) 10px 18px,
      rgba(112, 215, 255, 0.12) 18px 30px
    );
  box-shadow: 0 0 18px rgba(112, 215, 255, 0.2);
  transform-origin: left center;
  overflow: hidden;
  opacity: 0.68;
  animation: railBreathe 2.8s ease-in-out infinite;
}

.eco-line::before {
  content: "";
  position: absolute;
  inset: -5px 0;
  background: linear-gradient(90deg, transparent, rgba(112, 215, 255, 0.22), transparent);
  animation: digitalCurrent 2.6s linear infinite;
}

.eco-line span {
  position: absolute;
  top: 50%;
  left: 0;
  width: 46px;
  height: 8px;
  border-radius: 999px;
  transform: translate(-100%, -50%);
  background: linear-gradient(90deg, transparent, var(--white), var(--cyan), transparent);
  box-shadow: 0 0 18px rgba(143, 255, 240, 0.85), 0 0 36px rgba(112, 215, 255, 0.48);
  animation: packetPulse 2.6s cubic-bezier(0.45, 0, 0.2, 1) infinite;
}

.line-a { width: 330px; top: 140px; left: 206px; transform: rotate(18deg); }
.line-b { width: 300px; top: 304px; right: 172px; transform: rotate(149deg); animation-delay: -0.8s; }
.line-c { width: 300px; top: 474px; left: 144px; transform: rotate(136deg); animation-delay: -1.4s; }
.line-d { width: 340px; bottom: 70px; left: 224px; transform: rotate(12deg); animation-delay: -2s; }

.line-b::before,
.line-b span { animation-delay: -0.8s; }
.line-c::before,
.line-c span { animation-delay: -1.4s; }
.line-d::before,
.line-d span { animation-delay: -2s; }

.product {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 70px;
}

.product-visual {
  min-height: 440px;
  display: grid;
  place-items: center;
}

.zero-stage {
  position: relative;
  width: min(100%, 440px);
  height: 330px;
  display: grid;
  place-items: center;
  perspective: 1000px;
}

.zero-card {
  position: relative;
  z-index: 2;
  width: min(92vw, 390px);
  aspect-ratio: 1.58;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.18), rgba(255,255,255,0.03) 36%, rgba(112,215,255,0.12)),
    linear-gradient(160deg, #0a0d12, #020306);
  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.55);
  transform: rotateX(9deg) rotateY(-14deg);
  transition: transform 240ms ease;
  animation: cardAuthorize 5s ease-in-out infinite;
}

.card-top,
.card-bottom {
  justify-content: space-between;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.card-chip {
  width: 48px;
  height: 36px;
  margin-top: 48px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: linear-gradient(135deg, rgba(255,255,255,0.32), rgba(255,255,255,0.05));
}

.card-number {
  margin-top: 24px;
  color: var(--white);
  font-size: clamp(17px, 3vw, 24px);
  font-weight: 700;
}

.card-bottom {
  margin-top: 28px;
}

.transaction-pulse {
  position: absolute;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  border: 1px solid rgba(143, 255, 240, 0.26);
  animation: burnPulse 5s ease-in-out infinite;
}

.feature-list {
  display: grid;
  gap: 13px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.feature-list li {
  position: relative;
  padding-left: 24px;
  color: var(--silver);
  font-size: 16px;
  line-height: 1.45;
}

.feature-list li::before {
  content: "";
  position: absolute;
  top: 0.64em;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 18px rgba(112, 215, 255, 0.7);
}

.tagline,
.ai-tag {
  margin-top: 32px;
  color: var(--white);
  font-size: 22px;
  font-weight: 800;
}

.virtual-flow {
  position: relative;
  width: min(100%, 460px);
  min-height: 340px;
  display: grid;
  place-items: center;
}

.mini-card,
.checkout-panel {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(4, 8, 14, 0.82);
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.42);
}

.mini-card {
  left: 10px;
  top: 76px;
  width: 230px;
  height: 145px;
  display: grid;
  place-items: center;
  font-weight: 800;
  animation: virtualUse 5.2s ease-in-out infinite;
}

.checkout-panel {
  right: 0;
  bottom: 62px;
  width: 230px;
  padding: 26px;
}

.checkout-panel span {
  display: block;
  color: var(--muted);
  font-size: 13px;
  margin-bottom: 26px;
}

.checkout-panel strong {
  font-size: 34px;
}

.dissolve-field {
  position: absolute;
  right: 80px;
  top: 46px;
  width: 140px;
  height: 160px;
}

.dissolve-field span {
  position: absolute;
  width: 4px;
  height: 34px;
  border-radius: 999px;
  background: var(--blue);
  opacity: 0;
  animation: dissolve 3.4s ease-in-out infinite;
}

.dissolve-field span:nth-child(1) { left: 10px; animation-delay: 0s; }
.dissolve-field span:nth-child(2) { left: 36px; animation-delay: 0.35s; }
.dissolve-field span:nth-child(3) { left: 68px; animation-delay: 0.7s; }
.dissolve-field span:nth-child(4) { left: 96px; animation-delay: 1.05s; }
.dissolve-field span:nth-child(5) { left: 124px; animation-delay: 1.4s; }

.flow-network {
  position: relative;
  min-height: 430px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 50%, rgba(112, 215, 255, 0.1), transparent 44%),
    rgba(255, 255, 255, 0.025);
}

.person {
  position: absolute;
  z-index: 3;
  width: 74px;
  height: 74px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  background: rgba(3, 5, 9, 0.84);
  font-weight: 900;
  box-shadow: 0 0 45px rgba(112, 215, 255, 0.22);
}

.node-left { left: 62px; top: 165px; }
.node-right { right: 62px; top: 165px; }

.flow-line {
  position: absolute;
  left: 132px;
  right: 132px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, var(--cyan), var(--blue), transparent);
  animation: transferFlow 3s ease-in-out infinite;
}

.flow-one { top: 178px; }
.flow-two { top: 216px; animation-delay: -0.9s; }
.flow-three { top: 254px; animation-delay: -1.8s; }

.ai-layer {
  min-height: auto;
}

.neural {
  position: relative;
  height: 360px;
  margin: 38px 0;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.026);
  overflow: hidden;
}

.neural-node {
  position: absolute;
  z-index: 2;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--white);
  box-shadow: 0 0 30px rgba(143, 255, 240, 0.6);
  animation: neuralPulse 3s ease-in-out infinite;
}

.n1 { left: 16%; top: 28%; }
.n2 { left: 35%; top: 62%; animation-delay: -0.7s; }
.n3 { left: 52%; top: 34%; animation-delay: -1.4s; }
.n4 { left: 70%; top: 70%; animation-delay: -2.1s; }
.n5 { left: 84%; top: 30%; animation-delay: -2.8s; }

.neural-connection {
  position: absolute;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(143,255,240,0.8), transparent);
  transform-origin: left center;
  animation: lineFlow 3s ease-in-out infinite;
}

.c1 { width: 250px; left: 18%; top: 34%; transform: rotate(28deg); }
.c2 { width: 245px; left: 36%; top: 62%; transform: rotate(-40deg); animation-delay: -0.8s; }
.c3 { width: 250px; left: 53%; top: 38%; transform: rotate(36deg); animation-delay: -1.4s; }
.c4 { width: 180px; left: 71%; top: 66%; transform: rotate(-58deg); animation-delay: -2s; }

.ai-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.ai-grid article {
  min-height: 190px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.035);
}

.ai-grid span {
  display: block;
  margin-bottom: 42px;
  color: var(--blue);
  font-weight: 900;
}

.ai-grid p {
  color: var(--muted);
  line-height: 1.5;
}

.mission {
  min-height: 70vh;
  display: grid;
  place-items: center;
  text-align: center;
}

.mission-inner {
  max-width: 900px;
}

.mission-inner p {
  margin-inline: auto;
}

.app-experience {
  min-height: auto;
}

.phones {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: end;
  margin-top: 42px;
}

.phone {
  min-height: 580px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 36px;
  background: linear-gradient(145deg, #10141d, #05070b);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.42);
}

.phone-two {
  transform: translateY(-42px);
}

.phone-screen {
  height: 100%;
  min-height: 548px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 18px;
  padding: 24px;
  border-radius: 26px;
  background:
    linear-gradient(180deg, rgba(112,215,255,0.12), transparent 44%),
    #04070d;
  text-align: center;
}

.phone-label {
  color: var(--blue);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.phone-screen strong {
  font-family: Syne, Inter, sans-serif;
  font-size: clamp(34px, 5vw, 58px);
}

.phone-screen p {
  color: var(--muted);
}

.phone-screen button {
  width: 100%;
  max-width: 210px;
  height: 50px;
  border: 0;
  border-radius: 8px;
  background: var(--white);
  color: #020408;
  font-weight: 900;
}

.score-ring {
  width: 142px;
  height: 142px;
  border-radius: 50%;
  border: 12px solid rgba(255, 255, 255, 0.08);
  border-top-color: var(--blue);
  border-right-color: var(--cyan);
  animation: slowSpin 6s linear infinite;
}

.summary-lines {
  width: 80%;
  display: grid;
  gap: 10px;
}

.summary-lines span {
  display: block;
  height: 9px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
}

.summary-lines span:nth-child(2) {
  width: 74%;
}

.summary-lines span:nth-child(3) {
  width: 48%;
}

.closing {
  min-height: 100vh;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.72fr);
  align-items: center;
  gap: 46px;
  text-align: center;
}

.closing-copy {
  position: relative;
  z-index: 2;
  text-align: left;
}

.closing-copy p,
.closing .hero-actions {
  justify-content: flex-start;
}

.access-actions {
  align-items: stretch;
}

.prelaunch-pill {
  cursor: default;
}

.prelaunch-pill:hover {
  transform: none;
}

.access-form {
  position: relative;
  z-index: 2;
  width: 100%;
  scroll-margin-top: 96px;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 10px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.028)),
    rgba(4, 8, 14, 0.74);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.38);
  backdrop-filter: blur(20px);
  text-align: left;
}

.access-page {
  min-height: 100svh;
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(320px, 0.72fr);
  align-items: center;
  gap: 48px;
  padding-top: 128px;
}

.access-page-copy h1,
.thanks-card h1 {
  max-width: 780px;
  margin-bottom: 22px;
  font-family: Syne, Inter, sans-serif;
  font-size: clamp(54px, 8vw, 112px);
  line-height: 0.9;
}

.access-page-copy p,
.thanks-card p {
  max-width: 620px;
  color: var(--silver);
  font-size: clamp(17px, 2vw, 22px);
  line-height: 1.5;
}

.hidden-field {
  display: none;
}

.thanks-page {
  min-height: 100svh;
  display: grid;
  place-items: center;
}

.thanks-card {
  width: min(760px, 100%);
  padding: 36px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 10px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.028)),
    rgba(4, 8, 14, 0.74);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.38);
}

.thanks-card .button {
  margin-top: 22px;
}

.form-head h3 {
  margin-bottom: 22px;
  font-family: Syne, Inter, sans-serif;
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.02;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.access-form label {
  display: grid;
  gap: 8px;
  margin-bottom: 14px;
  color: var(--silver);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.access-form input,
.access-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.34);
  color: var(--white);
  font: 500 15px/1.4 Inter, sans-serif;
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.access-form input {
  height: 48px;
  padding: 0 14px;
}

.access-form textarea {
  resize: vertical;
  min-height: 96px;
  padding: 13px 14px;
}

.access-form input::placeholder,
.access-form textarea::placeholder {
  color: rgba(220, 232, 244, 0.42);
}

.access-form input:focus,
.access-form textarea:focus {
  border-color: rgba(112, 215, 255, 0.72);
  background: rgba(3, 8, 14, 0.7);
  box-shadow: 0 0 0 3px rgba(112, 215, 255, 0.12);
}

.form-submit {
  width: 100%;
  margin-top: 6px;
  border: 0;
  cursor: pointer;
}

.form-note {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 800ms ease, transform 800ms ease;
}

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

@keyframes pulseRing {
  0%, 100% { transform: translate(-50%, -50%) scale(0.92); opacity: 0.55; }
  50% { transform: translate(-50%, -50%) scale(1.06); opacity: 1; }
}

@keyframes driftGrid {
  from { background-position: 0 0; }
  to { background-position: 120px 120px; }
}

@keyframes ecosystemDrift {
  from { transform: translate3d(-2%, -1%, 0); }
  to { transform: translate3d(2%, 1%, 0); }
}

@keyframes lineFlow {
  0%, 100% { opacity: 0.25; filter: blur(0); }
  50% { opacity: 1; filter: blur(0.5px); }
}

@keyframes railBreathe {
  0%, 100% { opacity: 0.52; filter: saturate(0.85); }
  50% { opacity: 1; filter: saturate(1.35); }
}

@keyframes digitalCurrent {
  from { transform: translateX(-100%); }
  to { transform: translateX(100%); }
}

@keyframes packetPulse {
  0% { transform: translate(-120%, -50%) scaleX(0.72); opacity: 0; }
  12% { opacity: 1; }
  76% { opacity: 1; }
  100% { transform: translate(260px, -50%) scaleX(1); opacity: 0; }
}

@keyframes routeDash {
  from { stroke-dashoffset: 248; opacity: 0.22; }
  18% { opacity: 1; }
  82% { opacity: 1; }
  to { stroke-dashoffset: 0; opacity: 0.24; }
}

@keyframes webPulse {
  from { stroke-dashoffset: 196; opacity: 0.38; }
  18% { opacity: 1; }
  82% { opacity: 1; }
  to { stroke-dashoffset: 0; opacity: 0.38; }
}

@keyframes webSoftBreathe {
  0%, 100% { opacity: 0.38; }
  50% { opacity: 0.86; }
}

@keyframes cardAuthorize {
  0%, 65%, 100% { opacity: 1; filter: blur(0); }
  74% { opacity: 0.22; filter: blur(2px); }
  82% { opacity: 0; transform: rotateX(9deg) rotateY(-14deg) translateX(34px) scale(0.96); }
  92% { opacity: 1; filter: blur(0); }
}

@keyframes burnPulse {
  0%, 58%, 100% { transform: scale(0.55); opacity: 0; }
  70% { transform: scale(1.06); opacity: 0.7; }
  86% { transform: scale(1.45); opacity: 0; }
}

@keyframes virtualUse {
  0%, 100% { transform: translateX(0); opacity: 1; }
  46% { transform: translateX(150px); opacity: 1; }
  72% { transform: translateX(190px); opacity: 0; }
  88% { transform: translateX(0); opacity: 0; }
}

@keyframes dissolve {
  0%, 100% { opacity: 0; transform: translateY(24px) scaleY(0.4); }
  42% { opacity: 0.8; transform: translateY(-24px) scaleY(1); }
  72% { opacity: 0; transform: translateY(-62px) scaleY(0.2); }
}

@keyframes transferFlow {
  0%, 100% { clip-path: inset(0 100% 0 0); opacity: 0.25; }
  52% { clip-path: inset(0 0 0 0); opacity: 1; }
}

@keyframes neuralPulse {
  0%, 100% { transform: scale(0.82); opacity: 0.62; }
  50% { transform: scale(1.2); opacity: 1; }
}

@keyframes slowSpin {
  to { transform: rotate(360deg); }
}

@media (max-width: 920px) {
  .site-nav {
    top: 12px;
  }

  .site-nav nav {
    display: none;
  }

  section {
    min-height: auto;
    padding: 106px 22px 84px;
  }

  .platform {
    gap: 26px;
    padding-top: 86px;
    padding-bottom: 62px;
  }

  .platform .section-copy h2 {
    max-width: 620px;
    margin-bottom: 14px;
    font-size: clamp(30px, 8vw, 48px);
  }

  .platform .section-copy p {
    max-width: 620px;
    font-size: 15px;
    line-height: 1.36;
  }

  .platform .eyebrow {
    margin-bottom: 10px;
  }

  .hero,
  .platform,
  .product {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 100svh;
    padding-top: 120px;
  }

  .hero-signal {
    width: min(76vw, 360px);
    margin-inline: auto;
  }

  .ecosystem,
  .flow-network,
  .neural {
    min-height: 330px;
  }

  .ecosystem {
    width: 100%;
  }

  .ecosystem {
    padding: 22px;
  }

  .system-node {
    min-width: 104px;
    height: 58px;
    padding: 0 18px;
    font-size: 19px;
  }

  .node-user { left: 38px; top: 42px; }
  .node-card { right: 38px; top: 42px; }
  .node-network { left: 38px; bottom: 42px; }
  .node-merchant { right: 38px; bottom: 42px; }

  .product.online .product-copy {
    order: 2;
  }

  .product.online .product-visual {
    order: 1;
  }

  .ai-grid,
  .phones {
    grid-template-columns: 1fr;
  }

  .phone,
  .phone-two {
    min-height: 500px;
    transform: none;
  }

  .phone-screen {
    min-height: 468px;
  }

  .closing {
    grid-template-columns: 1fr;
    gap: 28px;
    text-align: left;
  }

  .access-page {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

@media (max-width: 620px) {
  .site-nav {
    height: 56px;
    width: calc(100% - 20px);
    padding: 0 10px 0 14px;
  }

  .nav-cta {
    padding: 9px 10px;
    font-size: 12px;
  }

  h1 {
    font-size: clamp(72px, 22vw, 112px);
  }

  h2 {
    font-size: clamp(36px, 12vw, 58px);
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .hero-actions {
    align-items: stretch;
  }

  .closing {
    padding-top: 86px;
  }

  .form-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .access-form {
    padding: 20px;
  }

  .access-page {
    padding-top: 92px;
  }

  .access-page-copy h1,
  .thanks-card h1 {
    font-size: clamp(42px, 13vw, 64px);
  }

  .thanks-card {
    padding: 24px;
  }

  .ecosystem {
    min-height: 300px;
    padding: 16px;
  }

  .system-node {
    min-width: 96px;
    height: 48px;
    padding: 0 12px;
    border-radius: 10px;
    font-size: 15px;
  }

  .node-user { left: 16px; top: 28px; }
  .node-card { right: 16px; top: 28px; }
  .node-network { left: 16px; bottom: 28px; }
  .node-merchant { right: 16px; bottom: 28px; }

  .platform {
    gap: 16px;
    padding-top: 54px;
    padding-bottom: 42px;
  }

  .platform .section-copy h2 {
    margin-bottom: 10px;
    font-size: clamp(28px, 8vw, 32px);
    line-height: 1.02;
  }

  .platform .section-copy p {
    font-size: 13px;
    line-height: 1.32;
  }

  .platform .eyebrow {
    margin-bottom: 8px;
    font-size: 11px;
  }

  .ecosystem {
    min-height: 240px;
  }

  .mini-card,
  .checkout-panel {
    width: 205px;
  }

  .zero-stage {
    height: 300px;
  }

  .zero-card {
    width: calc(100vw - 72px);
    padding: 20px;
    transform: rotateX(7deg) rotateY(-5deg);
    animation-name: cardAuthorizeMobile;
  }

  .card-chip {
    margin-top: 36px;
  }

  .card-number {
    font-size: 17px;
  }

  .mini-card {
    left: 0;
  }

  .checkout-panel {
    right: 0;
  }

  .flow-line {
    left: 96px;
    right: 96px;
  }

  .node-left { left: 26px; }
  .node-right { right: 26px; }
}

@keyframes cardAuthorizeMobile {
  0%, 65%, 100% { opacity: 1; filter: blur(0); }
  74% { opacity: 0.22; filter: blur(2px); }
  82% { opacity: 0; transform: rotateX(7deg) rotateY(-5deg) translateX(16px) scale(0.96); }
  92% { opacity: 1; filter: blur(0); }
}
