:root {
  --black: #020106;
  --black-2: #070510;
  --graphite: #12101b;
  --white: #fbf7ff;
  --muted: #bdb2cf;
  --muted-2: #8f83a3;
  --purple: #7c3cff;
  --purple-2: #4c1db3;
  --lilac: #d9b6ff;
  --lilac-2: #b985ff;
  --line: rgba(217, 182, 255, 0.18);
  --line-strong: rgba(217, 182, 255, 0.38);
  --glass: rgba(9, 7, 17, 0.72);
  --max: 1240px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 76% 8%, rgba(217, 182, 255, 0.12), transparent 28vw),
    radial-gradient(circle at 10% 28%, rgba(124, 60, 255, 0.18), transparent 26vw),
    linear-gradient(120deg, rgba(124, 60, 255, 0.1), transparent 35%, rgba(217, 182, 255, 0.06)),
    repeating-linear-gradient(90deg, rgba(217, 182, 255, 0.032) 0 1px, transparent 1px 70px),
    repeating-linear-gradient(0deg, rgba(217, 182, 255, 0.024) 0 1px, transparent 1px 70px),
    var(--black);
  color: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
  text-rendering: geometricPrecision;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -4;
  pointer-events: none;
  background:
    linear-gradient(165deg, transparent 0 26%, rgba(217, 182, 255, 0.08) 27%, transparent 28% 100%),
    linear-gradient(24deg, transparent 0 58%, rgba(124, 60, 255, 0.12) 59%, transparent 61% 100%);
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -3;
  pointer-events: none;
  opacity: 0.06;
  background-image: linear-gradient(rgba(255, 255, 255, 0.7) 1px, transparent 1px);
  background-size: 100% 5px;
}

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

button,
input,
textarea,
select {
  font: inherit;
  letter-spacing: 0;
}

button {
  border: 0;
  cursor: pointer;
}

svg {
  width: 1em;
  height: 1em;
}

::selection {
  background: rgba(217, 182, 255, 0.38);
}

body.intro-locked {
  overflow: hidden;
}

.preloader {
  --intro-duration: 6.2s;
  --intro-ease: cubic-bezier(0.78, 0, 0.12, 1);
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 48%, rgba(251, 247, 255, 0.18), transparent 18%),
    radial-gradient(circle at 50% 50%, rgba(158, 103, 255, 0.19), transparent 36%),
    radial-gradient(circle at 50% 50%, transparent 0 46%, rgba(5, 4, 10, 0.74) 77%, #000 100%),
    #000;
  transition: opacity 620ms ease, visibility 620ms ease;
}

.preloader.is-hidden,
.preloader.is-ending {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.portal-stage {
  position: absolute;
  inset: -22vmax;
  z-index: 1;
  display: grid;
  place-items: center;
  overflow: visible;
  pointer-events: none;
  transform-origin: 50% 50%;
  will-change: transform, opacity, filter;
  animation: portalCamera var(--intro-duration) var(--intro-ease) forwards;
}

.portal-stage::before,
.portal-stage::after {
  content: "";
  position: absolute;
  inset: -34%;
  pointer-events: none;
}

.portal-stage::before {
  z-index: 1;
  opacity: 0;
  background:
    repeating-radial-gradient(circle at center, rgba(217, 182, 255, 0.15) 0 1px, transparent 1px 42px),
    conic-gradient(from 0deg, transparent, rgba(151, 78, 255, 0.18), transparent, rgba(251, 247, 255, 0.1), transparent);
  mix-blend-mode: screen;
  transform: scale(0.42) rotate(0deg);
  animation: portalGrid var(--intro-duration) var(--intro-ease) forwards;
}

.portal-stage::after {
  z-index: 5;
  opacity: 0.68;
  background:
    radial-gradient(circle at center, rgba(251, 247, 255, 0.1) 0 5%, rgba(217, 182, 255, 0.085) 6% 21%, transparent 38%, rgba(124, 60, 255, 0.085) 51%, rgba(0, 0, 0, 0.7) 76%, #000 100%),
    linear-gradient(90deg, rgba(217, 182, 255, 0.06), transparent 18% 82%, rgba(217, 182, 255, 0.06));
  animation: portalVignette var(--intro-duration) ease forwards;
}

.portal-particles {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  mix-blend-mode: screen;
  animation: portalParticles var(--intro-duration) ease forwards;
}

.portal-veil,
.portal-tunnel,
.portal-aperture,
.portal-rift,
.portal-core,
.portal-sheen,
.portal-grain {
  position: absolute;
  pointer-events: none;
}

.portal-veil {
  inset: -42%;
  z-index: 0;
  opacity: 0;
  background:
    conic-gradient(from 210deg at 50% 50%, transparent 0 12%, rgba(124, 60, 255, 0.34), transparent 34% 52%, rgba(217, 182, 255, 0.25), transparent 78% 100%),
    radial-gradient(circle at 44% 48%, rgba(251, 247, 255, 0.15), transparent 36%);
  filter: blur(24px);
  mix-blend-mode: screen;
  transform: scale(0.76) rotate(-18deg);
  animation: portalAurora var(--intro-duration) ease forwards;
}

.portal-tunnel {
  inset: -38%;
  z-index: 1;
  opacity: 0;
  background:
    repeating-conic-gradient(from 0deg at 50% 50%, rgba(217, 182, 255, 0.16) 0deg 0.75deg, transparent 0.75deg 9.5deg),
    repeating-radial-gradient(circle at 50% 50%, transparent 0 30px, rgba(217, 182, 255, 0.09) 31px, transparent 35px);
  -webkit-mask-image: radial-gradient(circle at center, transparent 0 13%, #000 24% 76%, transparent 88%);
  mask-image: radial-gradient(circle at center, transparent 0 13%, #000 24% 76%, transparent 88%);
  transform: scale(0.55) rotate(0deg);
  animation: portalTunnel var(--intro-duration) var(--intro-ease) forwards;
}

.portal-aperture {
  z-index: 3;
  width: min(78vmin, 760px);
  aspect-ratio: 1;
  border-radius: 50%;
  opacity: 0;
  background:
    conic-gradient(from 35deg, transparent 0 7%, rgba(251, 247, 255, 0.28) 8% 9%, transparent 10% 24%, rgba(151, 78, 255, 0.24) 25% 27%, transparent 28% 49%, rgba(217, 182, 255, 0.2) 50% 51%, transparent 52% 74%, rgba(251, 247, 255, 0.3) 75% 77%, transparent 78% 100%),
    radial-gradient(circle, transparent 0 54%, rgba(217, 182, 255, 0.18) 55%, transparent 57% 100%);
  -webkit-mask-image: radial-gradient(circle, transparent 0 48%, #000 52% 58%, transparent 64%);
  mask-image: radial-gradient(circle, transparent 0 48%, #000 52% 58%, transparent 64%);
  filter: drop-shadow(0 0 30px rgba(217, 182, 255, 0.27));
  transform: scale(0.72) rotate(0deg);
  animation: portalAperture var(--intro-duration) var(--intro-ease) forwards;
}

.portal-rift {
  z-index: 3;
  width: min(26vmin, 250px);
  aspect-ratio: 1;
  border-radius: 50%;
  opacity: 0;
  background:
    radial-gradient(circle, rgba(251, 247, 255, 0.74) 0 6%, rgba(217, 182, 255, 0.28) 18%, rgba(124, 60, 255, 0.14) 38%, transparent 68%);
  filter: blur(8px);
  mix-blend-mode: screen;
  transform: scale(0.28);
  animation: portalRift var(--intro-duration) ease forwards;
}

.portal-core {
  z-index: 2;
  width: min(54vmin, 500px);
  aspect-ratio: 1;
  border-radius: 50%;
  opacity: 0;
  background:
    radial-gradient(circle, rgba(251, 247, 255, 0.7) 0 7%, rgba(217, 182, 255, 0.23) 21%, rgba(124, 60, 255, 0.13) 45%, transparent 70%);
  filter: blur(20px);
  mix-blend-mode: screen;
  transform: scale(0.34);
  animation: portalCore var(--intro-duration) ease forwards;
}

.portal-depth {
  position: absolute;
  z-index: 2;
  width: min(66vmin, 650px);
  aspect-ratio: 1;
  border: 1px solid rgba(217, 182, 255, 0.24);
  border-radius: 50%;
  opacity: 0;
  box-shadow:
    0 0 90px rgba(217, 182, 255, 0.16),
    inset 0 0 110px rgba(124, 60, 255, 0.12);
  transform: scale(0.72);
  animation: portalDepth var(--intro-duration) var(--intro-ease) forwards;
}

.portal-depth--two {
  width: min(84vmin, 820px);
  animation-delay: 120ms;
}

.portal-depth--three {
  width: min(104vmin, 1040px);
  border-color: rgba(151, 78, 255, 0.16);
  animation-delay: 240ms;
}

.portal-logo {
  position: relative;
  z-index: 4;
  width: min(72vmin, 690px);
  height: auto;
  overflow: visible;
  transform-origin: 50% 50%;
  filter:
    drop-shadow(0 0 24px rgba(251, 247, 255, 0.38))
    drop-shadow(0 0 56px rgba(124, 60, 255, 0.26));
  animation: portalLogoDrift var(--intro-duration) var(--intro-ease) forwards;
}

.portal-fill {
  --portal-fill: url(#portal-fill-gradient);
  --portal-stroke: transparent;
  --portal-stroke-width: 0;
  --portal-ring-stroke: url(#portal-fill-gradient);
  --portal-ring-width: 23;
  opacity: 0;
  filter: url("#portal-glow");
  animation: portalFill var(--intro-duration) ease forwards;
}

.portal-outline {
  --portal-fill: transparent;
  --portal-stroke: #fbf7ff;
  --portal-stroke-width: 5.5;
  --portal-ring-stroke: #fbf7ff;
  --portal-ring-width: 9;
  opacity: 0;
  filter: drop-shadow(0 0 22px rgba(251, 247, 255, 0.62));
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
  animation: portalTrace var(--intro-duration) cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.portal-outline--glow {
  --portal-stroke-width: 12;
  --portal-ring-width: 17;
  filter: url("#portal-glow");
  animation-name: portalTraceGlow;
}

.portal-sheen {
  top: -50%;
  bottom: -50%;
  left: -46%;
  z-index: 5;
  width: 18%;
  opacity: 0;
  background: linear-gradient(90deg, transparent, rgba(251, 247, 255, 0.72), rgba(217, 182, 255, 0.28), transparent);
  filter: blur(16px);
  mix-blend-mode: screen;
  transform: rotate(18deg) translateX(-20vw);
  animation: portalSheen var(--intro-duration) ease forwards;
}

.portal-flash {
  position: absolute;
  inset: -24vmax;
  z-index: 6;
  pointer-events: none;
  opacity: 0;
  mix-blend-mode: screen;
  background:
    radial-gradient(circle at 50% 50%, rgba(251, 247, 255, 0.82), rgba(217, 182, 255, 0.2) 15%, rgba(124, 60, 255, 0.08) 32%, transparent 42%);
  transform: scale(0.3);
  animation: portalFlash var(--intro-duration) ease forwards;
}

.portal-grain {
  inset: -12%;
  z-index: 7;
  opacity: 0;
  background:
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 3px),
    repeating-linear-gradient(90deg, rgba(217, 182, 255, 0.025) 0 1px, transparent 1px 5px);
  mix-blend-mode: soft-light;
  transform: translate3d(0, 0, 0);
  animation: portalGrain var(--intro-duration) steps(8, end) forwards;
}

.intro-skip {
  position: absolute;
  right: max(18px, calc((100vw - var(--max)) / 2));
  bottom: 22px;
  z-index: 10;
  min-height: 40px;
  padding: 0 14px;
  border: 1px solid rgba(217, 182, 255, 0.22);
  border-radius: 8px;
  color: rgba(251, 247, 255, 0.78);
  background: rgba(5, 4, 10, 0.48);
  backdrop-filter: blur(16px);
  transition: opacity 220ms ease, border-color 220ms ease, color 220ms ease, transform 220ms ease;
}

.intro-skip:hover {
  border-color: rgba(217, 182, 255, 0.5);
  color: var(--white);
  transform: translateY(-2px);
}

.preloader.is-ending .intro-skip,
.preloader.is-hidden .intro-skip {
  opacity: 0;
  pointer-events: none;
}

@keyframes portalFill {
  0% {
    opacity: 0;
    transform: scale(0.68);
    filter: blur(18px);
  }
  8%,
  27% {
    opacity: 1;
    transform: scale(1);
    filter: blur(0);
  }
  43% {
    opacity: 0.28;
  }
  55%,
  100% {
    opacity: 0;
  }
}

@keyframes portalTrace {
  0%,
  18% {
    opacity: 0;
    stroke-dashoffset: 1;
  }
  38%,
  77% {
    opacity: 1;
    stroke-dashoffset: 0;
  }
  94%,
  100% {
    opacity: 0;
    stroke-dashoffset: 0;
  }
}

@keyframes portalTraceGlow {
  0%,
  22% {
    opacity: 0;
    stroke-dashoffset: 1;
  }
  44% {
    opacity: 0.76;
    stroke-dashoffset: 0;
  }
  78% {
    opacity: 0.62;
  }
  95%,
  100% {
    opacity: 0;
  }
}

@keyframes portalCamera {
  0% {
    opacity: 1;
    transform: scale(0.88);
    filter: blur(0);
  }
  34% {
    opacity: 1;
    transform: scale(1);
  }
  58% {
    opacity: 1;
    transform: scale(1.28);
  }
  77% {
    opacity: 1;
    transform: scale(5.8);
    filter: blur(0);
  }
  92% {
    opacity: 0.96;
    transform: scale(18);
    filter: blur(2px);
  }
  100% {
    opacity: 0;
    transform: scale(38);
    filter: blur(8px);
  }
}

@keyframes portalLogoDrift {
  0% {
    transform: scale(0.76);
  }
  38% {
    transform: scale(1);
  }
  68% {
    transform: scale(1.06);
  }
  88% {
    transform: scale(1.28);
  }
  100% {
    transform: scale(1.42);
  }
}

@keyframes portalDepth {
  0%,
  18% {
    opacity: 0;
    transform: scale(0.68);
  }
  35% {
    opacity: 0.56;
    transform: scale(1);
  }
  77% {
    opacity: 0.38;
    transform: scale(2.8);
  }
  92% {
    opacity: 0.2;
    transform: scale(8.2);
  }
  100% {
    opacity: 0;
    transform: scale(12);
  }
}

@keyframes portalGrid {
  0% {
    opacity: 0;
    transform: scale(0.45) rotate(0deg);
  }
  36% {
    opacity: 0.34;
  }
  78% {
    opacity: 0.34;
  }
  100% {
    opacity: 0;
    transform: scale(7) rotate(16deg);
  }
}

@keyframes portalVignette {
  0%,
  82% {
    opacity: 0.72;
  }
  100% {
    opacity: 0;
  }
}

@keyframes portalParticles {
  0%,
  5% {
    opacity: 0;
  }
  18%,
  78% {
    opacity: 0.82;
  }
  100% {
    opacity: 0;
  }
}

@keyframes portalAurora {
  0% {
    opacity: 0;
    transform: scale(0.76) rotate(-18deg);
  }
  18% {
    opacity: 0.4;
  }
  58% {
    opacity: 0.54;
    transform: scale(1.08) rotate(9deg);
  }
  100% {
    opacity: 0;
    transform: scale(2.8) rotate(34deg);
  }
}

@keyframes portalAperture {
  0%,
  16% {
    opacity: 0;
    transform: scale(0.68) rotate(-24deg);
  }
  34% {
    opacity: 0.46;
    transform: scale(1) rotate(0deg);
  }
  70% {
    opacity: 0.4;
    transform: scale(1.18) rotate(34deg);
  }
  88% {
    opacity: 0.24;
    transform: scale(3.2) rotate(88deg);
  }
  100% {
    opacity: 0;
    transform: scale(8) rotate(120deg);
  }
}

@keyframes portalRift {
  0%,
  12% {
    opacity: 0;
    transform: scale(0.24);
  }
  30% {
    opacity: 0.58;
    transform: scale(0.86);
  }
  62% {
    opacity: 0.34;
    transform: scale(1.18);
  }
  86% {
    opacity: 0.7;
    transform: scale(3.8);
  }
  100% {
    opacity: 0;
    transform: scale(6.2);
  }
}

@keyframes portalTunnel {
  0%,
  14% {
    opacity: 0;
    transform: scale(0.55) rotate(0deg);
  }
  34% {
    opacity: 0.31;
  }
  78% {
    opacity: 0.4;
    transform: scale(2.8) rotate(42deg);
  }
  100% {
    opacity: 0;
    transform: scale(8.8) rotate(74deg);
  }
}

@keyframes portalCore {
  0%,
  12% {
    opacity: 0;
    transform: scale(0.34);
  }
  28% {
    opacity: 0.54;
    transform: scale(0.86);
  }
  70% {
    opacity: 0.29;
    transform: scale(1.22);
  }
  92% {
    opacity: 0.66;
    transform: scale(3);
  }
  100% {
    opacity: 0;
    transform: scale(4.4);
  }
}

@keyframes portalSheen {
  0%,
  20% {
    opacity: 0;
    transform: rotate(18deg) translateX(-20vw);
  }
  34% {
    opacity: 0.64;
  }
  52% {
    opacity: 0;
    transform: rotate(18deg) translateX(150vw);
  }
  100% {
    opacity: 0;
    transform: rotate(18deg) translateX(150vw);
  }
}

@keyframes portalGrain {
  0%,
  12% {
    opacity: 0;
    transform: translate3d(0, 0, 0);
  }
  20%,
  88% {
    opacity: 0.13;
  }
  100% {
    opacity: 0;
    transform: translate3d(-2%, 1%, 0);
  }
}

@keyframes portalFlash {
  0%,
  67% {
    opacity: 0;
    transform: scale(0.3);
  }
  78% {
    opacity: 0.23;
    transform: scale(0.86);
  }
  91% {
    opacity: 0.68;
    transform: scale(1.2);
  }
  100% {
    opacity: 0;
    transform: scale(2.7);
  }
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  width: 0%;
  height: 2px;
  background: linear-gradient(90deg, var(--purple), var(--lilac), var(--white));
  box-shadow: 0 0 22px rgba(217, 182, 255, 0.65);
}

.cursor-light {
  position: fixed;
  z-index: 998;
  width: 340px;
  height: 340px;
  pointer-events: none;
  opacity: 0;
  translate: -50% -50%;
  filter: blur(34px);
  mix-blend-mode: screen;
  background: radial-gradient(circle, rgba(217, 182, 255, 0.2), rgba(124, 60, 255, 0.08), transparent 68%);
  transition: opacity 180ms ease;
}

.topbar {
  position: fixed;
  top: 14px;
  left: 50%;
  z-index: 900;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
  width: min(calc(100% - 32px), var(--max));
  height: 68px;
  padding: 0 14px;
  border: 1px solid rgba(217, 182, 255, 0.14);
  border-radius: 8px;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.07), transparent 36%),
    rgba(5, 4, 10, 0.74);
  box-shadow: 0 18px 80px rgba(0, 0, 0, 0.44);
  backdrop-filter: blur(22px);
  transform: translateX(-50%);
  transition: height 240ms ease, background 240ms ease;
}

.topbar.is-compact {
  height: 56px;
  background: rgba(5, 4, 10, 0.9);
}

.brand,
.footer__brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.brand__mark {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  padding: 5px;
  border: 1px solid rgba(217, 182, 255, 0.28);
  border-radius: 8px;
  background:
    radial-gradient(circle at 50% 48%, rgba(251, 247, 255, 0.13), transparent 58%),
    linear-gradient(135deg, rgba(124, 60, 255, 0.78), rgba(217, 182, 255, 0.16)),
    rgba(255, 255, 255, 0.055);
  box-shadow: 0 0 24px rgba(124, 60, 255, 0.28);
}

.brand__mark img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 0 8px rgba(251, 247, 255, 0.42));
}

.brand__name {
  max-width: 225px;
  font-size: 0.82rem;
  line-height: 1.05;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.nav {
  display: flex;
  justify-content: center;
  gap: 24px;
  color: var(--muted);
  font-size: 0.92rem;
}

.nav a {
  position: relative;
  padding: 10px 0;
  transition: color 180ms ease;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 4px;
  height: 1px;
  transform: scaleX(0);
  background: linear-gradient(90deg, transparent, var(--lilac), transparent);
  transition: transform 220ms ease;
}

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

.nav a:hover::after {
  transform: scaleX(1);
}

.topbar__cta,
.button {
  position: relative;
  isolation: isolate;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 46px;
  padding: 0 18px;
  overflow: hidden;
  border-radius: 8px;
  white-space: nowrap;
  font-weight: 850;
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.topbar__cta {
  border: 1px solid rgba(217, 182, 255, 0.22);
  background: rgba(255, 255, 255, 0.05);
  color: var(--white);
}

.button--primary {
  border: 1px solid rgba(217, 182, 255, 0.46);
  background:
    linear-gradient(135deg, rgba(124, 60, 255, 1), rgba(185, 133, 255, 0.74)),
    rgba(255, 255, 255, 0.05);
  color: var(--white);
  box-shadow: 0 18px 64px rgba(124, 60, 255, 0.32), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.button--ghost {
  border: 1px solid rgba(217, 182, 255, 0.2);
  background: rgba(255, 255, 255, 0.04);
}

.button::before,
.topbar__cta::before {
  content: "";
  position: absolute;
  inset: -1px;
  z-index: -1;
  background: linear-gradient(110deg, transparent 0 32%, rgba(255, 255, 255, 0.4), transparent 68% 100%);
  transform: translateX(-110%);
  transition: transform 700ms cubic-bezier(0.16, 1, 0.3, 1);
}

.button:hover,
.topbar__cta:hover {
  transform: translateY(-2px);
  border-color: rgba(217, 182, 255, 0.46);
}

.button:hover::before,
.topbar__cta:hover::before {
  transform: translateX(110%);
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  place-items: center;
  gap: 5px;
  border: 1px solid rgba(217, 182, 255, 0.22);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
}

.menu-button span {
  display: block;
  width: 17px;
  height: 2px;
  background: var(--white);
}

.icon {
  display: inline-grid;
  place-items: center;
  font-size: 1.08rem;
}

.hero {
  position: relative;
  display: grid;
  align-items: start;
  min-height: 100svh;
  padding: 96px 0 34px;
  overflow: hidden;
}

.neural-canvas,
.hero__vignette,
.hero__wordmark,
.hero__orbital,
.hero__panels {
  position: absolute;
  inset: 0;
}

.neural-canvas {
  z-index: 0;
  opacity: 0.82;
}

.hero__vignette {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(2, 1, 6, 0.96) 0%, rgba(2, 1, 6, 0.68) 38%, rgba(2, 1, 6, 0.16) 78%),
    linear-gradient(0deg, rgba(2, 1, 6, 0.96), transparent 34%, rgba(2, 1, 6, 0.76));
}

.hero__wordmark {
  z-index: 2;
  display: flex;
  align-items: end;
  padding-left: max(18px, calc((100vw - var(--max)) / 2));
  padding-bottom: 3vh;
  color: rgba(255, 255, 255, 0.035);
  font-size: clamp(4rem, 15vw, 15rem);
  font-weight: 950;
  line-height: 0.75;
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 20;
  width: min(calc(100% - 36px), var(--max));
  margin: 0 auto;
  padding-top: 36px;
  filter: drop-shadow(0 24px 80px rgba(0, 0, 0, 0.46));
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--lilac);
  font-size: 0.82rem;
  font-weight: 950;
  line-height: 1.25;
  text-transform: uppercase;
}

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

h1 {
  width: min(720px, 100%);
  font-size: clamp(3.15rem, 5.3vw, 5.15rem);
  line-height: 1.03;
  font-weight: 950;
  text-wrap: balance;
}

.split-line {
  display: block;
  overflow: visible;
  min-height: 1.04em;
  line-height: 1.03;
}

.split-line + .split-line {
  margin-top: -0.08em;
}

.split-line > span {
  display: block;
  line-height: 1.03;
  opacity: 1;
  transform: translateY(0);
  text-shadow: 0 0 34px rgba(217, 182, 255, 0.1);
  animation: titleIgnite 780ms cubic-bezier(0.16, 1, 0.3, 1);
  animation-delay: calc(var(--line-index, 0) * 95ms + 180ms);
}

@keyframes titleIgnite {
  from {
    opacity: 0.56;
    transform: translateY(18px) scale(0.99);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

h2 {
  max-width: 980px;
  font-size: clamp(2.6rem, 5.2vw, 5rem);
  line-height: 0.98;
  font-weight: 920;
}

h3 {
  font-size: 1.35rem;
  line-height: 1.1;
}

p {
  color: var(--muted);
  line-height: 1.6;
}

.hero__copy {
  width: min(610px, 100%);
  margin-top: 18px;
  color: rgba(251, 247, 255, 0.82);
  font-size: 1.04rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.hero__actions .button {
  white-space: normal;
  text-align: center;
  line-height: 1.15;
}

.hero__metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: min(760px, 100%);
  margin-top: 18px;
  border: 1px solid rgba(217, 182, 255, 0.16);
  border-radius: 8px;
  overflow: hidden;
  background: rgba(5, 4, 10, 0.62);
  backdrop-filter: blur(18px);
}

.hero__metrics span {
  min-height: 64px;
  display: grid;
  align-content: center;
  gap: 4px;
  padding: 14px 16px;
  border-right: 1px solid rgba(217, 182, 255, 0.12);
  color: var(--muted);
  font-size: 0.88rem;
}

.hero__metrics span:last-child {
  border-right: 0;
}

.hero__metrics strong {
  color: var(--white);
  font-size: 1.35rem;
}

.hero__orbital {
  z-index: 3;
  left: auto;
  right: max(-80px, calc((100vw - var(--max)) / 2 - 78px));
  top: 17vh;
  width: min(42vw, 560px);
  height: min(42vw, 560px);
  pointer-events: none;
}

.orbit {
  position: absolute;
  inset: var(--inset);
  border: 1px solid rgba(217, 182, 255, var(--alpha));
  border-radius: 8px;
  transform: rotate(var(--rot));
  box-shadow: 0 0 58px rgba(124, 60, 255, 0.11), inset 0 0 80px rgba(124, 60, 255, 0.07);
  animation: orbitSpin var(--dur) linear infinite;
}

.orbit--one {
  --inset: 3%;
  --alpha: 0.14;
  --rot: 16deg;
  --dur: 34s;
}

.orbit--two {
  --inset: 14%;
  --alpha: 0.2;
  --rot: -24deg;
  --dur: 24s;
}

.orbit--three {
  --inset: 25%;
  --alpha: 0.26;
  --rot: 41deg;
  --dur: 18s;
}

@keyframes orbitSpin {
  to {
    rotate: 360deg;
  }
}

.command-core {
  position: absolute;
  inset: 33%;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 10px;
  overflow: hidden;
  padding: clamp(14px, 1.5vw, 20px);
  border: 1px solid rgba(217, 182, 255, 0.38);
  border-radius: 8px;
  background:
    radial-gradient(circle at 50% 16%, rgba(251, 247, 255, 0.2), transparent 38%),
    radial-gradient(circle at 50% 64%, rgba(124, 60, 255, 0.46), transparent 58%),
    linear-gradient(140deg, rgba(124, 60, 255, 0.7), rgba(7, 5, 14, 0.9));
  box-shadow: 0 0 90px rgba(124, 60, 255, 0.36), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.command-core::before {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(251, 247, 255, 0.16);
  border-radius: 8px;
  pointer-events: none;
}

.command-core__mark {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: clamp(58px, 7vw, 82px);
  aspect-ratio: 1;
  padding: 8px;
  border: 1px solid rgba(251, 247, 255, 0.22);
  border-radius: 50%;
  background: rgba(251, 247, 255, 0.07);
  box-shadow: 0 0 28px rgba(217, 182, 255, 0.28);
}

.command-core__mark img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 0 10px rgba(251, 247, 255, 0.42));
}

.command-core strong {
  position: relative;
  z-index: 1;
  display: block;
  width: min(100%, 132px);
  padding-bottom: 2px;
  color: rgba(251, 247, 255, 0.78);
  font-size: clamp(0.62rem, 0.85vw, 0.76rem);
  line-height: 1.2;
  letter-spacing: 0;
  text-align: center;
  text-transform: uppercase;
  text-wrap: balance;
}

.command-core strong span {
  display: block;
}

.hero__panels {
  z-index: 4;
  width: min(100%, 1500px);
  margin: 0 auto;
  pointer-events: none;
}

.hud,
.os-console,
.system-card,
.engine-step,
.proof-card,
.case-slide,
.simulator-card,
.testimonial-card,
.contact-form {
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.015)),
    rgba(8, 6, 15, 0.76);
  box-shadow: 0 24px 90px rgba(0, 0, 0, 0.38);
  backdrop-filter: blur(18px);
}

.hud {
  position: absolute;
  overflow: hidden;
  padding: 16px;
  animation: floatHud 7s ease-in-out infinite;
}

.hud::after,
.system-card::after,
.proof-card::after,
.case-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(110deg, transparent, rgba(217, 182, 255, 0.13), transparent);
  transform: translateX(-120%);
  transition: transform 700ms cubic-bezier(0.16, 1, 0.3, 1);
}

.hud:hover::after,
.system-card:hover::after,
.proof-card:hover::after,
.case-slide:hover::after {
  transform: translateX(120%);
}

@keyframes floatHud {
  0%,
  100% {
    translate: 0 0;
  }
  50% {
    translate: 10px -14px;
  }
}

.hud span,
.hud small {
  color: var(--muted-2);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.hud strong {
  display: block;
  color: var(--lilac);
}

.hud--score {
  top: 24vh;
  right: clamp(300px, 22vw, 430px);
  width: 150px;
}

.hud--score strong {
  margin-top: 8px;
  font-size: 3.4rem;
  line-height: 0.9;
}

.hud--score i {
  display: block;
  height: 3px;
  margin-top: 14px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--purple), var(--lilac));
}

.hud--pipeline {
  top: 16vh;
  right: clamp(28px, 5vw, 96px);
  width: 330px;
}

.hud__header {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 18px;
}

.pipeline-bars {
  display: flex;
  align-items: end;
  gap: 12px;
  height: 142px;
}

.pipeline-bars i {
  flex: 1;
  height: var(--h);
  border-radius: 8px 8px 0 0;
  background: linear-gradient(180deg, var(--lilac), var(--purple));
  box-shadow: 0 0 24px rgba(185, 133, 255, 0.32);
}

.hud--creative {
  top: 50vh;
  right: clamp(260px, 20vw, 380px);
  width: 210px;
  animation-delay: -1.4s;
}

.creative-thumb {
  height: 130px;
  margin-top: 12px;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(217, 182, 255, 0.36), transparent 42%),
    linear-gradient(320deg, rgba(124, 60, 255, 0.58), transparent 60%),
    #100c1d;
}

.hud--intent {
  right: clamp(44px, 8vw, 132px);
  bottom: 11vh;
  width: 210px;
  animation-delay: -2.2s;
}

.hud--intent strong {
  margin: 8px 0 4px;
  font-size: 2.45rem;
}

.chapter-strip {
  position: relative;
  z-index: 5;
  margin-top: -1px;
  overflow: hidden;
  border-top: 1px solid rgba(217, 182, 255, 0.14);
  border-bottom: 1px solid rgba(217, 182, 255, 0.14);
  background: rgba(4, 3, 9, 0.82);
}

.chapter-strip__track {
  display: flex;
  width: max-content;
  min-width: max-content;
  animation: ticker 34s linear infinite;
  will-change: transform;
}

.chapter-strip span {
  flex: 0 0 auto;
  padding: 18px 42px;
  color: rgba(251, 247, 255, 0.7);
  font-weight: 900;
  text-transform: uppercase;
}

@keyframes ticker {
  to {
    transform: translateX(-50%);
  }
}

.section {
  position: relative;
  padding: 96px 0;
}

.section__inner {
  width: min(calc(100% - 36px), var(--max));
  margin: 0 auto;
}

.section-heading {
  display: grid;
  gap: 0;
}

.section-heading--center {
  justify-items: center;
  text-align: center;
}

.system__grid {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 24px;
  align-items: start;
}

.os-console {
  min-height: 520px;
  overflow: hidden;
  padding: 16px;
}

.console-top {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 36px;
  margin-bottom: 14px;
}

.console-top span {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(217, 182, 255, 0.35);
}

.console-top strong {
  margin-left: auto;
  color: var(--muted);
  font-size: 0.8rem;
  text-transform: uppercase;
}

.console-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.console-module {
  min-height: 110px;
  padding: 16px;
  border: 1px solid rgba(217, 182, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.035);
  color: var(--white);
  text-align: left;
  transition: border-color 220ms ease, background 220ms ease, transform 220ms ease;
}

.console-module span {
  display: block;
  margin-bottom: 20px;
  color: var(--lilac);
  font-weight: 950;
}

.console-module.is-active {
  border-color: rgba(217, 182, 255, 0.46);
  background: rgba(124, 60, 255, 0.17);
  box-shadow: 0 0 44px rgba(124, 60, 255, 0.17);
  transform: translateY(-3px);
}

.console-output {
  min-height: 185px;
  margin-top: 14px;
  padding: 22px;
  border: 1px solid rgba(217, 182, 255, 0.14);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(124, 60, 255, 0.22), transparent 62%),
    rgba(255, 255, 255, 0.035);
}

.console-output span,
.proof-card span,
.case-slide span,
.simulator-score span {
  color: var(--lilac);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.console-output h3 {
  margin: 18px 0 12px;
  font-size: 1.7rem;
}

.system-cards {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 12px;
}

.system-card {
  position: relative;
  overflow: hidden;
  min-height: 240px;
  padding: 24px;
}

.system-card--dark {
  --tilt-offset: -22px;
  transform: translateY(var(--tilt-offset));
}

.system-card .icon {
  color: var(--lilac);
  font-size: 1.6rem;
}

.system-card h3 {
  margin: 46px 0 12px;
}

.trust-engine__inner {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 42px;
}

.sticky-copy {
  position: sticky;
  top: 110px;
  align-self: start;
}

.sticky-copy p:last-child {
  margin-top: 22px;
  font-size: 1.05rem;
}

.engine-steps {
  display: grid;
  gap: 12px;
  counter-reset: engine;
}

.engine-step {
  position: relative;
  min-height: 170px;
  padding: 24px;
  overflow: hidden;
}

.engine-step::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--lilac), transparent);
  transform: scaleY(var(--line-progress, 0.2));
  transform-origin: top;
}

.engine-step span {
  color: var(--lilac);
  font-weight: 950;
}

.engine-step h3 {
  margin: 18px 0 12px;
  font-size: 1.7rem;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: minmax(190px, auto);
  gap: 12px;
  margin-top: 42px;
}

.proof-card {
  position: relative;
  overflow: hidden;
  padding: 24px;
}

.proof-card--large {
  grid-column: 1 / span 2;
  grid-row: 1 / span 2;
}

.proof-card:nth-child(2) {
  grid-column: 3;
  grid-row: 1;
}

.proof-card:nth-child(3) {
  grid-column: 4;
  grid-row: 1;
}

.proof-card:nth-child(4) {
  grid-column: 3;
  grid-row: 2;
}

.proof-card strong {
  display: block;
  margin-top: 26px;
  color: var(--white);
  font-size: clamp(2.6rem, 6vw, 5.7rem);
  line-height: 0.85;
  text-shadow: 0 0 38px rgba(217, 182, 255, 0.24);
}

.proof-card:not(.proof-card--large) strong {
  font-size: clamp(2.8rem, 4.3vw, 4.3rem);
  white-space: nowrap;
}

.proof-card p {
  margin-top: 18px;
}

.proof-card--trust {
  grid-column: 4;
  grid-row: 2;
}

.proof-card ul {
  display: grid;
  gap: 12px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
  color: var(--muted);
}

.proof-card li {
  padding-left: 22px;
  position: relative;
}

.proof-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.68em;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--lilac);
  box-shadow: 0 0 18px rgba(217, 182, 255, 0.62);
}

.case-head {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: end;
}

.case-controls {
  display: flex;
  gap: 10px;
}

.case-controls button {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(217, 182, 255, 0.22);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--white);
}

.case-rail {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 380px;
  gap: 14px;
  margin-top: 34px;
  padding-bottom: 12px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
  scrollbar-color: rgba(217, 182, 255, 0.5) transparent;
}

.case-slide {
  position: relative;
  min-height: 500px;
  padding: 16px 16px 24px;
  overflow: hidden;
  scroll-snap-align: start;
}

.case-visual {
  position: relative;
  height: 260px;
  margin-bottom: 22px;
  overflow: hidden;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(217, 182, 255, 0.24), transparent 40%),
    linear-gradient(320deg, rgba(124, 60, 255, 0.6), transparent 62%),
    #0d0a17;
}

.case-visual::before {
  content: "";
  position: absolute;
  inset: 20px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
}

.case-visual::after {
  content: "";
  position: absolute;
  left: 30px;
  right: 62px;
  bottom: 34px;
  height: 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
}

.case-visual--clinic {
  background:
    radial-gradient(circle at 74% 22%, rgba(217, 182, 255, 0.48), transparent 18%),
    linear-gradient(135deg, rgba(217, 182, 255, 0.22), transparent 38%),
    linear-gradient(320deg, rgba(124, 60, 255, 0.55), transparent 62%),
    #100c1d;
}

.case-visual--clinic::after {
  left: 34px;
  right: 34px;
  bottom: 42px;
  height: 74px;
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.82) 0 28%, transparent 28% 34%, rgba(217, 182, 255, 0.44) 34% 100%);
}

.case-visual--restaurant {
  background:
    radial-gradient(circle at 24% 22%, rgba(251, 247, 255, 0.28), transparent 16%),
    linear-gradient(135deg, rgba(185, 133, 255, 0.2), transparent 34%),
    linear-gradient(320deg, rgba(124, 60, 255, 0.5), transparent 64%),
    #130b1e;
}

.case-visual--restaurant::after {
  left: 28px;
  right: 92px;
  bottom: 36px;
  height: 96px;
  border-radius: 999px 999px 12px 12px;
  background:
    linear-gradient(180deg, rgba(251, 247, 255, 0.86), rgba(217, 182, 255, 0.26));
}

.case-visual--saas {
  background:
    linear-gradient(90deg, rgba(217, 182, 255, 0.16) 1px, transparent 1px),
    linear-gradient(rgba(217, 182, 255, 0.12) 1px, transparent 1px),
    linear-gradient(135deg, rgba(124, 60, 255, 0.34), transparent 48%),
    #0b0815;
  background-size: 36px 36px, 36px 36px, auto, auto;
}

.case-visual--saas::after {
  left: 34px;
  right: 34px;
  bottom: 36px;
  height: 116px;
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.16), transparent 1px),
    linear-gradient(90deg, rgba(217, 182, 255, 0.74) 0 22%, rgba(124, 60, 255, 0.84) 22% 44%, rgba(217, 182, 255, 0.34) 44% 100%);
}

.case-visual--realty {
  background:
    radial-gradient(circle at 82% 24%, rgba(217, 182, 255, 0.32), transparent 18%),
    linear-gradient(150deg, rgba(217, 182, 255, 0.24), transparent 42%),
    linear-gradient(330deg, rgba(124, 60, 255, 0.5), transparent 66%),
    #0b0912;
}

.case-visual--realty::after {
  left: 42px;
  right: 42px;
  bottom: 34px;
  height: 112px;
  clip-path: polygon(50% 0, 100% 38%, 100% 100%, 0 100%, 0 38%);
  border-radius: 0;
  background: linear-gradient(180deg, rgba(251, 247, 255, 0.82), rgba(217, 182, 255, 0.24));
}

.case-slide h3 {
  margin: 12px 0;
  font-size: 1.7rem;
}

.simulator__inner {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 36px;
  align-items: center;
}

.simulator__inner > div:first-child p:last-child {
  margin-top: 22px;
  font-size: 1.05rem;
}

.simulator-card {
  padding: 24px;
}

.simulator-score {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 26px;
}

.simulator-score strong {
  color: var(--white);
  font-size: clamp(4rem, 9vw, 7rem);
  line-height: 0.8;
}

.simulator-card label {
  display: grid;
  gap: 10px;
  margin-top: 18px;
  color: var(--muted);
  font-weight: 800;
}

.simulator-card input[type="range"] {
  width: 100%;
  accent-color: var(--lilac);
}

.simulator-result {
  margin-top: 24px;
  padding: 16px;
  border: 1px solid rgba(217, 182, 255, 0.18);
  border-radius: 8px;
  color: var(--white);
  background: rgba(124, 60, 255, 0.12);
}

.testimonial-stack {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 34px;
}

.testimonial-card {
  min-height: 290px;
  padding: 26px;
}

.testimonial-card p {
  color: rgba(251, 247, 255, 0.83);
  font-size: 1.05rem;
}

.testimonial-card strong {
  display: block;
  margin-top: 26px;
}

.testimonial-card span {
  color: var(--muted-2);
}

.final__inner {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 34px;
  align-items: start;
}

.final__copy {
  position: sticky;
  top: 110px;
}

.final__copy p:last-child {
  margin-top: 22px;
  font-size: 1.05rem;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  padding: 20px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-weight: 800;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  border: 1px solid rgba(217, 182, 255, 0.16);
  border-radius: 8px;
  outline: 0;
  background: rgba(255, 255, 255, 0.055);
  color: var(--white);
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.contact-form input,
.contact-form select {
  height: 52px;
  padding: 0 14px;
}

.contact-form textarea {
  resize: vertical;
  min-height: 122px;
  padding: 14px;
}

.contact-form select option {
  color: #080610;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  border-color: rgba(217, 182, 255, 0.52);
  background: rgba(255, 255, 255, 0.075);
  box-shadow: 0 0 0 4px rgba(124, 60, 255, 0.16), 0 0 30px rgba(217, 182, 255, 0.12);
}

.form-wide {
  grid-column: 1 / -1;
}

.form-status {
  display: none;
  grid-column: 1 / -1;
  padding: 14px;
  border: 1px solid rgba(217, 182, 255, 0.2);
  border-radius: 8px;
  color: var(--lilac);
  background: rgba(124, 60, 255, 0.13);
}

.form-status.is-visible {
  display: block;
}

.footer {
  width: min(calc(100% - 36px), var(--max));
  margin: 0 auto 28px;
  display: grid;
  grid-template-columns: 1.4fr 1fr auto;
  gap: 26px;
  align-items: start;
  padding: 28px;
  border: 1px solid rgba(217, 182, 255, 0.14);
  border-radius: 8px;
  background: rgba(4, 3, 9, 0.84);
}

.footer p {
  color: var(--muted-2);
  font-size: 0.92rem;
}

.footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  color: var(--muted);
}

[data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  filter: blur(12px);
  transition: opacity 760ms ease, transform 760ms cubic-bezier(0.16, 1, 0.3, 1), filter 760ms ease;
  transition-delay: calc(var(--reveal-delay, 0) * 70ms);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

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

.tilt {
  --tilt-offset: 0px;
  transform-style: preserve-3d;
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.tilt:hover {
  border-color: var(--line-strong);
  box-shadow: 0 28px 100px rgba(0, 0, 0, 0.46), 0 0 46px rgba(124, 60, 255, 0.16);
}

@media (pointer: fine) {
  .tilt.is-tilting {
    transform: perspective(900px) rotateX(var(--rx, 0deg)) rotateY(var(--ry, 0deg)) translateY(calc(var(--tilt-offset, 0px) - 4px));
  }
}

@media (max-width: 1320px) {
  .hero__orbital {
    right: -150px;
  }

  .hud--score,
  .hud--creative {
    display: none;
  }

  .hud--pipeline {
    right: 6vw;
  }

  .hud--intent {
    right: 8vw;
  }
}

@media (max-width: 1120px) {
  .nav {
    gap: 15px;
  }

  .hero__orbital {
    right: -8vw;
    width: 520px;
    height: 520px;
    opacity: 0.7;
  }

  .hud--pipeline {
    right: 3vw;
  }

  .hud--score,
  .hud--creative {
    display: none;
  }

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

  .proof-card:nth-child(n) {
    grid-column: auto;
    grid-row: auto;
  }

  .proof-card--large,
  .proof-card--trust {
    grid-column: span 2;
    grid-row: auto;
  }
}

@media (max-width: 900px) {
  .topbar {
    grid-template-columns: auto 1fr auto auto;
    width: calc(100% - 24px);
    height: 64px;
  }

  .menu-button {
    display: grid;
  }

  .topbar__cta span:last-child {
    display: none;
  }

  .nav {
    position: absolute;
    left: 0;
    right: 0;
    top: calc(100% + 10px);
    display: grid;
    gap: 0;
    padding: 10px;
    border: 1px solid rgba(217, 182, 255, 0.16);
    border-radius: 8px;
    background: rgba(5, 4, 10, 0.96);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 220ms ease, transform 220ms ease;
  }

  .nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav a {
    padding: 14px;
  }

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

  .hero__vignette {
    background:
      linear-gradient(90deg, rgba(2, 1, 6, 0.94), rgba(2, 1, 6, 0.62)),
      linear-gradient(0deg, rgba(2, 1, 6, 0.96), transparent 44%, rgba(2, 1, 6, 0.52));
  }

  .hero__orbital,
  .hud {
    display: none;
  }

  .hero__content,
  .section__inner,
  .footer {
    width: calc(100% - 28px);
  }

  h1 {
    font-size: clamp(3rem, 13vw, 4.7rem);
  }

  h2 {
    font-size: clamp(2.35rem, 10.5vw, 3.7rem);
  }

  .hero__metrics,
  .system__grid,
  .system-cards,
  .trust-engine__inner,
  .simulator__inner,
  .testimonial-stack,
  .final__inner,
  .footer {
    grid-template-columns: 1fr;
  }

  .hero__metrics span {
    min-height: 58px;
    border-right: 0;
    border-bottom: 1px solid rgba(217, 182, 255, 0.12);
  }

  .hero__metrics span:last-child {
    border-bottom: 0;
  }

  .system-card--dark {
    --tilt-offset: 0px;
    transform: translateY(0);
  }

  .sticky-copy,
  .final__copy {
    position: relative;
    top: auto;
  }

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

  .proof-card:nth-child(n) {
    grid-column: auto;
    grid-row: auto;
  }

  .proof-card--large,
  .proof-card--trust {
    grid-column: auto;
    grid-row: auto;
  }

  .case-head {
    display: grid;
  }

  .case-rail {
    grid-auto-columns: minmax(280px, 86vw);
  }

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

  .form-wide {
    grid-column: auto;
  }
}

@media (max-width: 560px) {
  .brand__mark {
    width: 40px;
    height: 40px;
  }

  .brand__name {
    max-width: 170px;
    font-size: 0.72rem;
  }

  .topbar__cta {
    display: none;
  }

  .topbar {
    left: 14px;
    grid-template-columns: auto 1fr auto;
    width: min(360px, calc(100% - 24px));
    gap: 8px;
    padding: 0 8px;
    transform: none;
  }

  .hero {
    padding-top: 88px;
  }

  .hero__content,
  .section__inner,
  .footer {
    width: min(360px, calc(100% - 28px));
    margin-left: 14px;
    margin-right: auto;
  }

  h1 {
    font-size: clamp(2.85rem, 12vw, 4.25rem);
  }

  .eyebrow {
    max-width: 96%;
    margin-bottom: 12px;
    font-size: 0.68rem;
  }

  .hero__copy {
    font-size: 1rem;
  }

  .hero__actions .button {
    width: 100%;
    min-height: 56px;
    padding-inline: 14px;
  }

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

  .os-console {
    min-height: auto;
  }
}

@media (max-width: 380px) {
  .brand__name {
    max-width: 145px;
    font-size: 0.66rem;
  }
}

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

  .cursor-light,
  .neural-canvas {
    display: none;
  }
}
