:root {
  --black: #000000;
  --white: #ffffff;
  --muted: rgba(255, 255, 255, 0.62);
  --graphite: #0a0a0d;
  --violet: #885cf6;
  --purple: #885cf6;
  --purple-hot: #c4b5fd;
  --purple-deep: #1a1325;
  --violet-soft: rgba(136, 92, 246, 0.28);
  --purple-glow: rgba(136, 92, 246, 0.3);
  --glow: rgba(255, 255, 255, 0.86);
  --pointer-x: 0;
  --pointer-y: 0;
  --scroll-progress: 0;
  --hero-scroll: 0;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-premium: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-responsive: cubic-bezier(0.2, 0.8, 0.2, 1);
  --elastic: cubic-bezier(0.17, 0.84, 0.31, 1.18);
  --font-display:
    "Inter Tight", Inter, ui-sans-serif, system-ui, -apple-system,
    BlinkMacSystemFont, "SF Pro Display", "Helvetica Neue", Arial, sans-serif;
  color-scheme: dark;
  font-family: var(--font-display);
  font-optical-sizing: auto;
}

* {
  box-sizing: border-box;
  min-width: 0;
}

html {
  min-height: 100%;
  background: var(--black);
  overflow-x: hidden;
  scroll-behavior: smooth;
  scroll-padding-top: 112px;
}

@supports (overflow-x: clip) {
  html,
  body {
    overflow-x: clip;
  }
}

body {
  min-height: 100vh;
  margin: 0;
  overflow-x: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 50% 43%, rgba(255, 255, 255, 0.12), transparent 15rem),
    radial-gradient(circle at 68% 56%, rgba(136, 92, 246, 0.24), transparent 24rem),
    radial-gradient(circle at 27% 74%, rgba(196, 181, 253, 0.11), transparent 19rem),
    radial-gradient(circle at 20% 28%, rgba(26, 19, 37, 0.88), transparent 25rem),
    radial-gradient(circle at 83% 20%, rgba(136, 92, 246, 0.1), transparent 22rem),
    radial-gradient(circle at 46% 42%, rgba(136, 92, 246, 0.07), transparent 27rem),
    linear-gradient(180deg, #000000, var(--graphite) 48%, #000000);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-feature-settings: "kern" 1, "liga" 1, "calt" 1;
  animation: pageEnter 900ms var(--ease-premium) both;
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -6;
  pointer-events: none;
}

body::before {
  background:
    radial-gradient(circle at 51% 46%, rgba(255, 255, 255, 0.36), transparent 0.1rem),
    radial-gradient(circle at 38% 36%, rgba(136, 92, 246, 0.26), transparent 0.1rem),
    radial-gradient(circle at 72% 24%, rgba(255, 255, 255, 0.24), transparent 0.1rem),
    radial-gradient(circle at 19% 70%, rgba(136, 92, 246, 0.22), transparent 0.1rem),
    radial-gradient(circle at 86% 64%, rgba(196, 181, 253, 0.2), transparent 0.1rem),
    radial-gradient(circle at 61% 83%, rgba(136, 92, 246, 0.18), transparent 0.09rem);
  opacity: 0;
  animation: starWake 2200ms ease-out 540ms forwards;
}

body::after {
  background:
    repeating-radial-gradient(circle at 30% 24%, rgba(255, 255, 255, 0.016) 0 1px, transparent 1px 4px),
    linear-gradient(180deg, rgba(0, 0, 0, 0.14), #000000 88%),
    radial-gradient(ellipse at center, transparent 0 22%, rgba(0, 0, 0, 0.58) 66%, rgba(0, 0, 0, 0.96) 100%);
  transform: translate3d(0, calc(var(--scroll-progress) * -18px), 0);
  will-change: transform;
}

button,
input {
  font: inherit;
}

button {
  border: 0;
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  width: min(100% - 32px, 1160px);
  min-height: 72px;
  margin: 0 auto -72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 0;
  pointer-events: auto;
  transition:
    transform 560ms var(--ease-premium),
    opacity 560ms var(--ease-premium);
  will-change: transform;
  overflow: visible;
}

.site-header::before {
  content: "";
  position: fixed;
  inset: 0 0 auto;
  z-index: -1;
  height: 96px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.84), rgba(0, 0, 0, 0.44), transparent);
  opacity: 0.74;
  backdrop-filter: blur(16px);
  pointer-events: none;
  transition:
    opacity 520ms var(--ease-premium),
    background 520ms var(--ease-premium);
}

.is-scrolled .site-header::before {
  opacity: 1;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.92), rgba(0, 0, 0, 0.54), transparent);
}

.site-brand {
  width: 86px;
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  margin: -6px;
  padding: 6px;
  overflow: visible;
  filter:
    drop-shadow(0 0 8px rgba(255, 255, 255, 0.44))
    drop-shadow(0 0 20px rgba(136, 92, 246, 0.16));
  transition:
    filter 360ms var(--ease-premium),
    transform 360ms var(--ease-premium);
}

.site-brand:hover {
  transform: translate3d(0, -1px, 0) scale(1.025);
  filter:
    drop-shadow(0 0 10px rgba(255, 255, 255, 0.5))
    drop-shadow(0 0 28px rgba(136, 92, 246, 0.22));
}

.site-brand img,
.footer-brand img {
  width: 100%;
  height: auto;
  display: block;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 6px;
  overflow-x: auto;
  scrollbar-width: none;
}

.site-nav::-webkit-scrollbar {
  display: none;
}

.site-nav a {
  position: relative;
  overflow: hidden;
  flex: 0 0 auto;
  padding: 8px 10px;
  border: 1px solid transparent;
  border-radius: 999px;
  color: rgba(238, 238, 244, 0.68);
  font-size: 0.84rem;
  font-weight: 750;
  line-height: 1;
  transition:
    color 240ms var(--ease-premium),
    border-color 240ms var(--ease-premium),
    background 240ms var(--ease-premium),
    box-shadow 240ms var(--ease-premium),
    transform 240ms var(--ease-premium);
  transform: translate3d(0, 0, 0);
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--white);
  border-color: rgba(196, 181, 253, 0.24);
  background: rgba(255, 255, 255, 0.055);
}

.site-nav a:hover {
  transform: translate3d(0, -1px, 0);
}

.site-nav .nav-pill {
  color: #08080b;
  background: rgba(255, 255, 255, 0.96);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.36) inset,
    0 16px 46px rgba(136, 92, 246, 0.22);
}

.site-nav .nav-pill:hover {
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.54) inset,
    0 18px 58px rgba(136, 92, 246, 0.32),
    0 0 32px rgba(255, 255, 255, 0.12);
}

.teaser {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: max(48px, env(safe-area-inset-top)) 20px max(62px, env(safe-area-inset-bottom));
  isolation: isolate;
}

.ambient {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
  perspective: 1300px;
  contain: layout paint;
}

.ambient::before {
  content: "";
  position: absolute;
  inset: -18%;
  background:
    radial-gradient(ellipse at 48% 50%, rgba(255, 255, 255, 0.13), transparent 0.7rem),
    radial-gradient(ellipse at 53% 50%, rgba(136, 92, 246, 0.23), transparent 16rem),
    radial-gradient(ellipse at 54% 55%, rgba(26, 19, 37, 0.78), transparent 31rem),
    conic-gradient(from 212deg at 51% 47%, transparent 0 16%, rgba(136, 92, 246, 0.16) 20%, transparent 28%, rgba(196, 181, 253, 0.08) 35%, rgba(136, 92, 246, 0.13) 43%, transparent 54%, rgba(255, 255, 255, 0.055) 69%, transparent 83%);
  filter: blur(18px);
  opacity: 0;
  transform: scale(0.7) rotate(-8deg);
  animation: coreBloom 2600ms var(--ease) 540ms forwards;
}

.ambient::after {
  content: "";
  position: absolute;
  inset: 10%;
  border: 1px solid rgba(255, 255, 255, 0.045);
  border-radius: 48% 52% 44% 56% / 56% 46% 54% 44%;
  filter: blur(0.5px);
  opacity: 0;
  transform: scale(0.82) rotate(-12deg);
  animation: fieldFrame 2800ms var(--ease) 800ms forwards, slowSpin 42s linear 3600ms infinite;
}

.energy-thread {
  position: absolute;
  display: block;
  width: 52vw;
  height: 18vh;
  border-radius: 999px;
  border: 1px solid rgba(136, 92, 246, 0.3);
  background:
    linear-gradient(90deg, transparent, rgba(136, 92, 246, 0.26), rgba(196, 181, 253, 0.2), rgba(136, 92, 246, 0.12), transparent),
    rgba(255, 255, 255, 0.012);
  filter: blur(1px) drop-shadow(0 0 30px var(--purple-glow));
  opacity: 0;
  transform-origin: center;
  animation: threadWake 2200ms var(--ease) 700ms forwards, threadFloat 18s ease-in-out 2800ms infinite;
}

.energy-thread--one {
  left: -12vw;
  top: 23vh;
  transform: rotate(-22deg) scale(0.78);
}

.energy-thread--two {
  right: -15vw;
  bottom: 18vh;
  transform: rotate(-18deg) scale(0.88);
  animation-delay: 860ms, 3000ms;
}

.sphere,
.liquid {
  position: absolute;
  display: block;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background:
    radial-gradient(circle at 31% 23%, rgba(255, 255, 255, 0.88) 0 4%, rgba(255, 255, 255, 0.22) 9%, transparent 21%),
    radial-gradient(circle at 78% 26%, rgba(136, 92, 246, 0.34), transparent 22%),
    radial-gradient(circle at 66% 70%, rgba(196, 181, 253, 0.22), transparent 28%),
    radial-gradient(circle at 44% 42%, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.015) 48%, rgba(0, 0, 0, 0.46) 100%);
  box-shadow:
    inset 10px 12px 26px rgba(255, 255, 255, 0.11),
    inset -16px -18px 36px rgba(0, 0, 0, 0.52),
    0 0 28px rgba(136, 92, 246, 0.18),
    0 0 70px rgba(136, 92, 246, 0.08),
    0 0 74px rgba(196, 181, 253, 0.055);
  backdrop-filter: blur(18px) saturate(145%);
  opacity: 0;
  will-change: transform, opacity, filter;
}

.sphere {
  width: var(--size);
  height: var(--size);
  left: var(--left);
  top: var(--top);
  border-radius: 999px;
  translate: calc(var(--pointer-x) * var(--depth-x, 10px)) calc(var(--pointer-y) * var(--depth-y, 7px));
  animation:
    sphereIntro 2600ms var(--elastic) var(--intro-delay) both,
    sphereOrbit var(--orbit-speed) ease-in-out calc(var(--intro-delay) + 2600ms) infinite;
}

.sphere::after,
.liquid::after {
  content: "";
  position: absolute;
  inset: 14%;
  border-radius: inherit;
  border: 1px solid rgba(255, 255, 255, 0.15);
  filter: blur(0.1px);
}

.sphere--one {
  --size: clamp(122px, 18vw, 260px);
  --left: -4vw;
  --top: 12vh;
  --intro-delay: 70ms;
  --orbit-speed: 21s;
  --start-x: -18vw;
  --start-y: 8vh;
  --pull-x: 42vw;
  --pull-y: 25vh;
  --depth-x: 16px;
  --depth-y: 11px;
}

.sphere--two {
  --size: clamp(82px, 12vw, 170px);
  --left: 14vw;
  --top: 7vh;
  --intro-delay: 160ms;
  --orbit-speed: 24s;
  --start-x: -3vw;
  --start-y: -22vh;
  --pull-x: 34vw;
  --pull-y: 34vh;
  --depth-x: -8px;
  --depth-y: 14px;
}

.sphere--three {
  --size: clamp(86px, 11vw, 156px);
  --left: 73vw;
  --top: 12vh;
  --intro-delay: 230ms;
  --orbit-speed: 23s;
  --start-x: 18vw;
  --start-y: -16vh;
  --pull-x: -24vw;
  --pull-y: 31vh;
  --depth-x: 13px;
  --depth-y: -9px;
}

.sphere--four {
  --size: clamp(154px, 22vw, 330px);
  --left: 86vw;
  --top: 31vh;
  --intro-delay: 90ms;
  --orbit-speed: 26s;
  --start-x: 20vw;
  --start-y: 4vh;
  --pull-x: -37vw;
  --pull-y: 11vh;
  --depth-x: -20px;
  --depth-y: 12px;
}

.sphere--five {
  --size: clamp(96px, 15vw, 220px);
  --left: 10vw;
  --top: 66vh;
  --intro-delay: 330ms;
  --orbit-speed: 25s;
  --start-x: -12vw;
  --start-y: 20vh;
  --pull-x: 38vw;
  --pull-y: -20vh;
  --depth-x: 18px;
  --depth-y: -10px;
}

.sphere--six {
  --size: clamp(68px, 9vw, 132px);
  --left: 74vw;
  --top: 69vh;
  --intro-delay: 420ms;
  --orbit-speed: 22s;
  --start-x: 12vw;
  --start-y: 20vh;
  --pull-x: -22vw;
  --pull-y: -22vh;
  --depth-x: -14px;
  --depth-y: -12px;
}

.sphere--seven {
  --size: clamp(42px, 6vw, 80px);
  --left: 61vw;
  --top: 22vh;
  --intro-delay: 520ms;
  --orbit-speed: 18s;
  --start-x: 4vw;
  --start-y: -30vh;
  --pull-x: -11vw;
  --pull-y: 21vh;
  --depth-x: 10px;
  --depth-y: 8px;
}

.sphere--eight {
  --size: clamp(38px, 5vw, 72px);
  --left: 32vw;
  --top: 72vh;
  --intro-delay: 580ms;
  --orbit-speed: 19s;
  --start-x: -8vw;
  --start-y: 26vh;
  --pull-x: 18vw;
  --pull-y: -26vh;
  --depth-x: -9px;
  --depth-y: 10px;
}

.liquid {
  width: var(--w);
  height: var(--h);
  left: var(--left);
  top: var(--top);
  border-radius: 48% 52% 42% 58% / 58% 42% 58% 42%;
  translate: calc(var(--pointer-x) * var(--depth-x, -12px)) calc(var(--pointer-y) * var(--depth-y, 9px));
  animation:
    liquidIntro 2600ms var(--elastic) var(--intro-delay) both,
    liquidMorph var(--morph-speed) ease-in-out calc(var(--intro-delay) + 2600ms) infinite;
}

.liquid--one {
  --w: clamp(150px, 24vw, 340px);
  --h: clamp(52px, 8vw, 116px);
  --left: -2vw;
  --top: 33vh;
  --intro-delay: 180ms;
  --morph-speed: 19s;
  --start-x: -20vw;
  --start-y: -2vh;
  --pull-x: 47vw;
  --pull-y: 12vh;
  --depth-x: -18px;
  --depth-y: 8px;
}

.liquid--two {
  --w: clamp(160px, 27vw, 380px);
  --h: clamp(58px, 9vw, 126px);
  --left: 72vw;
  --top: 48vh;
  --intro-delay: 280ms;
  --morph-speed: 22s;
  --start-x: 19vw;
  --start-y: 8vh;
  --pull-x: -23vw;
  --pull-y: -3vh;
  --depth-x: 15px;
  --depth-y: -12px;
}

.liquid--three {
  --w: clamp(98px, 17vw, 230px);
  --h: clamp(38px, 6vw, 86px);
  --left: 44vw;
  --top: 79vh;
  --intro-delay: 460ms;
  --morph-speed: 20s;
  --start-x: 4vw;
  --start-y: 23vh;
  --pull-x: 4vw;
  --pull-y: -34vh;
  --depth-x: -10px;
  --depth-y: -8px;
}

.constellation {
  position: absolute;
  display: block;
  width: 7px;
  height: 7px;
  left: var(--left);
  top: var(--top);
  border-radius: 999px;
  background: rgba(196, 181, 253, 0.62);
  box-shadow:
    32px -20px 0 rgba(136, 92, 246, 0.46),
    70px 4px 0 rgba(255, 255, 255, 0.4),
    42px 38px 0 rgba(136, 92, 246, 0.38),
    96px 34px 0 rgba(196, 181, 253, 0.34);
  filter: drop-shadow(0 0 18px rgba(136, 92, 246, 0.3));
  opacity: 0;
  translate: calc(var(--pointer-x) * var(--depth-x, 12px)) calc(var(--pointer-y) * var(--depth-y, 10px));
  animation:
    constellationWake 2200ms var(--ease) var(--intro-delay) forwards,
    constellationDrift var(--drift-speed) ease-in-out calc(var(--intro-delay) + 2200ms) infinite;
}

.constellation::before {
  content: "";
  position: absolute;
  left: -26px;
  top: -28px;
  width: 142px;
  height: 86px;
  border-top: 1px solid rgba(136, 92, 246, 0.14);
  border-right: 1px solid rgba(196, 181, 253, 0.09);
  border-radius: 999px;
  transform: rotate(var(--arc-rotate));
}

.constellation--one {
  --left: 22vw;
  --top: 25vh;
  --intro-delay: 1120ms;
  --drift-speed: 22s;
  --arc-rotate: -18deg;
  --depth-x: 16px;
  --depth-y: -8px;
}

.constellation--two {
  --left: 68vw;
  --top: 26vh;
  --intro-delay: 1360ms;
  --drift-speed: 26s;
  --arc-rotate: 22deg;
  --depth-x: -15px;
  --depth-y: 12px;
}

.constellation--three {
  --left: 41vw;
  --top: 65vh;
  --intro-delay: 1580ms;
  --drift-speed: 24s;
  --arc-rotate: 8deg;
  --depth-x: 12px;
  --depth-y: 14px;
}

.particle-field {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 13% 22%, rgba(255, 255, 255, 0.34) 0 1px, transparent 2px),
    radial-gradient(circle at 23% 70%, rgba(136, 92, 246, 0.5) 0 1px, transparent 2px),
    radial-gradient(circle at 42% 18%, rgba(255, 255, 255, 0.24) 0 1px, transparent 2px),
    radial-gradient(circle at 58% 76%, rgba(136, 92, 246, 0.42) 0 1px, transparent 2px),
    radial-gradient(circle at 71% 34%, rgba(255, 255, 255, 0.28) 0 1px, transparent 2px),
    radial-gradient(circle at 88% 62%, rgba(196, 181, 253, 0.28) 0 1px, transparent 2px),
    radial-gradient(circle at 34% 53%, rgba(136, 92, 246, 0.32) 0 1px, transparent 2px),
    radial-gradient(circle at 78% 82%, rgba(196, 181, 253, 0.28) 0 1px, transparent 2px);
  opacity: 0;
  filter: blur(0.15px);
  translate: calc(var(--pointer-x) * 8px) calc(var(--pointer-y) * 6px);
  animation: particlesWake 2600ms ease-out 620ms forwards, particleDrift 36s linear 2600ms infinite;
}

.hero {
  position: relative;
  z-index: 2;
  width: min(100%, 940px);
  display: grid;
  justify-items: center;
  text-align: center;
}

.hero::before {
  content: "";
  position: absolute;
  z-index: -1;
  width: min(94vw, 760px);
  height: min(86vw, 520px);
  border-radius: 999px;
  background:
    radial-gradient(circle at 50% 34%, rgba(255, 255, 255, 0.12), transparent 18%),
    radial-gradient(circle at 50% 48%, rgba(136, 92, 246, 0.22), transparent 48%),
    radial-gradient(circle at 50% 72%, rgba(26, 19, 37, 0.76), transparent 68%);
  filter: blur(42px);
  opacity: 0;
  transform: translateY(-4%) scale(0.9);
  animation: heroAuraWake 2600ms var(--ease) 700ms forwards, heroAuraPulse 7200ms ease-in-out 3300ms infinite;
}

.logo-stage {
  position: relative;
  z-index: 4;
  width: min(90vw, 420px);
  min-height: clamp(190px, 38vw, 270px);
  display: grid;
  place-items: center;
  overflow: visible;
  padding: 42px 0 46px;
  isolation: isolate;
  opacity: 0;
  transform: translateY(24px) scale(0.58);
  filter: blur(22px);
  will-change: transform, opacity, filter;
}

.logo-stage::before,
.logo-stage::after {
  content: "";
  position: absolute;
  inset: 14% 0;
  z-index: -1;
  border-radius: 999px;
  background:
    radial-gradient(circle, rgba(255, 255, 255, 0.48), rgba(255, 255, 255, 0.12) 24%, rgba(136, 92, 246, 0.16) 44%, rgba(196, 181, 253, 0.06) 58%, transparent 72%);
  opacity: 0;
  filter: blur(18px);
  transform: scale(0.5);
}

.logo-stage::after {
  inset: 20% 10%;
  background:
    radial-gradient(circle, rgba(136, 92, 246, 0.32), rgba(196, 181, 253, 0.12) 40%, transparent 74%);
  filter: blur(30px);
}

.hero.is-visible .logo-stage {
  animation: logoIgnite 1050ms var(--elastic) 420ms forwards;
}

.hero.is-visible .logo-stage::before {
  animation: haloIgnite 1400ms var(--ease-premium) 360ms forwards;
}

.hero.is-visible .logo-stage::after {
  animation: haloIgnite 1550ms var(--ease-premium) 520ms forwards, logoPulse 6200ms ease-in-out 2300ms infinite;
}

.we-logo {
  position: relative;
  z-index: 3;
  width: 70%;
  max-width: 282px;
  height: auto;
  display: block;
  filter:
    drop-shadow(0 0 6px rgba(255, 255, 255, 0.6))
    drop-shadow(0 0 16px rgba(255, 255, 255, 0.18))
    drop-shadow(0 0 34px rgba(136, 92, 246, 0.18))
    drop-shadow(0 0 60px rgba(196, 181, 253, 0.08));
}

.hero h1,
.hero__line,
.hero__status,
.hero__company,
.hero__availability,
.app-preview,
.waitlist-form {
  opacity: 0;
  transform: translateY(-16px) scale(0.96);
  filter: blur(12px);
}

.hero h1 {
  max-width: 13ch;
  margin: 2px 0 0;
  padding-bottom: 0.08em;
  font-size: 3.05rem;
  font-weight: 900;
  line-height: 1.04;
  letter-spacing: 0;
  text-shadow:
    0 0 18px rgba(255, 255, 255, 0.16),
    0 0 46px rgba(136, 92, 246, 0.12);
}

.hero h1 span {
  display: inline-block;
  padding-bottom: 0.08em;
  color: var(--purple);
  background: linear-gradient(180deg, var(--purple-hot), var(--purple) 62%, #7c3df1);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow:
    0 0 18px rgba(136, 92, 246, 0.38),
    0 0 44px rgba(136, 92, 246, 0.22);
}

.hero.is-visible h1 {
  animation: popFromLogo 780ms var(--elastic) 820ms forwards;
}

.hero__line,
.hero__status,
.hero__company,
.hero__availability {
  margin: 20px 0 0;
  color: rgba(238, 238, 244, 0.72);
  font-size: 1.08rem;
  font-weight: 650;
  line-height: 1.35;
  letter-spacing: 0;
}

.hero__line {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 800;
  text-shadow: 0 0 24px rgba(136, 92, 246, 0.12);
}

.hero__status {
  margin-top: 7px;
  color: rgba(255, 255, 255, 0.88);
  font-weight: 720;
  text-shadow: 0 0 20px rgba(136, 92, 246, 0.12);
}

.hero__company,
.hero__availability {
  max-width: 700px;
  margin-top: 12px;
  color: rgba(238, 238, 244, 0.58);
  font-size: 0.94rem;
  font-weight: 650;
}

.hero__availability {
  margin-top: 14px;
  color: rgba(196, 181, 253, 0.72);
}

.hero.is-visible .hero__line {
  animation: popFromLogo 720ms var(--ease-premium) 980ms forwards;
}

.hero.is-visible .hero__status {
  animation: popFromLogo 720ms var(--ease-premium) 1080ms forwards;
}

.hero.is-visible .hero__company {
  animation: popFromLogo 720ms var(--ease-premium) 1140ms forwards;
}

.app-preview {
  position: relative;
  width: min(38vw, 150px);
  margin: 18px auto 0;
  display: grid;
  justify-items: center;
  gap: 10px;
}

.app-preview::before {
  content: "";
  position: absolute;
  inset: 10% -26% 4%;
  z-index: -1;
  border-radius: 999px;
  background:
    radial-gradient(circle at 50% 38%, rgba(255, 255, 255, 0.16), transparent 18%),
    radial-gradient(circle at 50% 52%, rgba(136, 92, 246, 0.28), transparent 58%);
  filter: blur(28px);
  opacity: 0.72;
}

.app-preview__phone {
  position: relative;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 1320 / 2868;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.035);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.08) inset,
    0 22px 58px rgba(0, 0, 0, 0.58),
    0 0 44px rgba(136, 92, 246, 0.15);
  transform: translate3d(0, 0, 0);
}

.app-preview__phone::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.18), transparent 18% 76%, rgba(255, 255, 255, 0.08)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 18% 82%, rgba(255, 255, 255, 0.08));
  mix-blend-mode: screen;
  opacity: 0.55;
}

.app-preview__phone img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.app-preview figcaption {
  margin: 0;
  color: rgba(238, 238, 244, 0.54);
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0;
  white-space: nowrap;
}

.hero.is-visible .app-preview {
  animation: popFromLogo 760ms var(--ease-premium) 1080ms forwards;
}

.waitlist-form {
  position: relative;
  width: min(100%, 430px);
  margin-top: 22px;
  display: grid;
  gap: 12px;
  filter: drop-shadow(0 18px 48px rgba(0, 0, 0, 0.35));
}

.waitlist-anchor {
  position: absolute;
  inset: 0 auto auto 0;
  width: 1px;
  height: 1px;
  overflow: hidden;
  pointer-events: none;
}

.hero.is-visible .waitlist-form {
  animation: popFromLogo 820ms var(--elastic) 1160ms forwards;
}

.hero.is-visible .hero__availability {
  animation: popFromLogo 680ms var(--ease-premium) 1260ms forwards;
}

.waitlist-copy {
  display: grid;
  gap: 4px;
  text-align: center;
}

.waitlist-copy strong {
  color: var(--white);
  font-size: 1.02rem;
  font-weight: 850;
}

.waitlist-copy span {
  color: rgba(238, 238, 244, 0.56);
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.35;
}

.waitlist-form input,
.waitlist-form button {
  width: 100%;
  min-height: 54px;
  border-radius: 999px;
}

.waitlist-form input {
  border: 1px solid rgba(255, 255, 255, 0.18);
  padding: 0 20px;
  color: var(--white);
  font-weight: 600;
  letter-spacing: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.035)),
    rgba(0, 0, 0, 0.28);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.028) inset,
    0 0 20px rgba(136, 92, 246, 0.1),
    0 22px 72px rgba(0, 0, 0, 0.36);
  outline: none;
  backdrop-filter: blur(22px) saturate(130%);
  transition:
    border-color 180ms var(--ease),
    box-shadow 180ms var(--ease),
    background 180ms var(--ease);
}

.waitlist-form input::placeholder {
  color: rgba(255, 255, 255, 0.43);
}

.waitlist-form input:focus {
  border-color: rgba(136, 92, 246, 0.62);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.095), rgba(255, 255, 255, 0.04)),
    rgba(14, 14, 18, 0.44);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.07) inset,
    0 0 30px rgba(136, 92, 246, 0.28),
    0 0 54px rgba(196, 181, 253, 0.11);
}

@media (hover: hover) {
  .waitlist-form input:hover {
    border-color: rgba(136, 92, 246, 0.48);
    box-shadow:
      0 0 0 1px rgba(255, 255, 255, 0.035) inset,
      0 0 30px rgba(136, 92, 246, 0.18),
      0 22px 72px rgba(0, 0, 0, 0.36);
  }
}

.motion-surface {
  --glow-x: 50%;
  --glow-y: 50%;
  --spot-opacity: 0;
  isolation: isolate;
}

.motion-surface::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  border-radius: inherit;
  background:
    radial-gradient(circle at var(--glow-x) var(--glow-y), rgba(255, 255, 255, 0.18), rgba(196, 181, 253, 0.12) 18%, rgba(136, 92, 246, 0.08) 34%, transparent 58%);
  opacity: var(--spot-opacity);
  pointer-events: none;
  transition: opacity 320ms var(--ease-premium);
  mix-blend-mode: screen;
}

.waitlist-form button {
  --button-y: 0px;
  --button-scale: 1;
  position: relative;
  overflow: hidden;
  color: #050507;
  font-weight: 850;
  letter-spacing: 0;
  cursor: pointer;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 1), rgba(237, 237, 242, 0.98)),
    #ffffff;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.48) inset,
    0 0 36px rgba(255, 255, 255, 0.18),
    0 18px 62px rgba(136, 92, 246, 0.22),
    0 18px 82px rgba(0, 0, 0, 0.28);
  transform: translate3d(0, var(--button-y), 0) scale(var(--button-scale));
  will-change: transform;
  transition:
    transform 260ms var(--ease-premium),
    box-shadow 260ms var(--ease-premium),
    filter 260ms var(--ease-premium);
}

.waitlist-form button::before {
  content: "";
  position: absolute;
  inset: -1px;
  z-index: 1;
  background: linear-gradient(115deg, transparent, rgba(255, 255, 255, 0.72), transparent);
  transform: translateX(-130%);
  transition: transform 720ms var(--ease-premium);
  pointer-events: none;
}

.waitlist-form button::after {
  z-index: 0;
}

.waitlist-form button {
  isolation: isolate;
}

.waitlist-form button > * {
  position: relative;
  z-index: 2;
}

.waitlist-form button:hover {
  --button-y: -2px;
  --button-scale: 1.015;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.58) inset,
    0 0 42px rgba(255, 255, 255, 0.2),
    0 24px 86px rgba(136, 92, 246, 0.34),
    0 24px 96px rgba(0, 0, 0, 0.32);
}

.waitlist-form button:hover::before {
  transform: translateX(130%);
}

.waitlist-form button:disabled {
  cursor: progress;
  opacity: 0.72;
  --button-y: 0px;
  --button-scale: 1;
}

.waitlist-form button:disabled::before {
  transform: translateX(130%);
}

.waitlist-form button:active {
  --button-y: 1px;
  --button-scale: 0.99;
}

.waitlist-form input:focus-visible,
.waitlist-form button:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.86);
  outline-offset: 4px;
}

.form-status {
  min-height: 1.4em;
  margin: 2px 0 0;
  color: rgba(238, 238, 244, 0.54);
  font-size: 0.86rem;
  font-weight: 600;
  line-height: 1.4;
}

.site-section {
  position: relative;
  z-index: 1;
  padding: 92px 0;
  overflow: hidden;
}

.site-section[data-section-reveal] {
  opacity: 0;
  transform: translate3d(0, 34px, 0) scale(0.985);
  filter: blur(16px);
  transition:
    opacity 1100ms var(--ease-premium) var(--reveal-delay, 0ms),
    transform 1100ms var(--ease-premium) var(--reveal-delay, 0ms),
    filter 1100ms var(--ease-premium) var(--reveal-delay, 0ms);
  will-change: opacity, transform, filter;
}

.site-section[data-section-reveal].is-visible {
  opacity: 1;
  transform: none;
  filter: none;
}

.site-section::before {
  content: "";
  position: absolute;
  inset: 10% -20%;
  z-index: -1;
  background:
    radial-gradient(circle at 72% 14%, rgba(136, 92, 246, 0.09), transparent 22rem),
    radial-gradient(circle at 18% 68%, rgba(196, 181, 253, 0.045), transparent 18rem);
  pointer-events: none;
  transform: translate3d(calc(var(--pointer-x) * 5px), calc((var(--hero-scroll) * -22px) + (var(--pointer-y) * 4px)), 0);
  transition: transform 700ms var(--ease-premium);
  will-change: transform;
}

.section-shell,
.site-footer {
  width: min(100% - 36px, 1120px);
  margin: 0 auto;
}

.section-centered {
  max-width: 800px;
  text-align: center;
}

.story-section {
  padding-top: 118px;
  padding-bottom: 112px;
}

.section-kicker {
  margin: 0 0 12px;
  color: var(--purple-hot);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.section-heading {
  display: grid;
  gap: 12px;
  max-width: 820px;
  margin-bottom: 32px;
}

.section-heading p:not(.section-kicker),
.section-centered p,
.about-story p,
.founder-card p,
.premium-card p,
.trust-item p,
.company-panel p,
.legal-section p,
.legal-list li,
.footer-legal p {
  margin: 0;
  color: rgba(238, 238, 244, 0.66);
  font-size: 1rem;
  font-weight: 610;
  line-height: 1.65;
}

.site-section h2,
.page-hero h1 {
  margin: 0;
  color: var(--white);
  font-size: 2.4rem;
  font-weight: 900;
  line-height: 0.98;
  text-shadow:
    0 0 26px rgba(255, 255, 255, 0.08),
    0 0 44px rgba(136, 92, 246, 0.08);
}

.story-section h2 {
  max-width: 13ch;
  margin-inline: auto;
}

.philosophy-strip {
  padding: 44px 0 58px;
}

.philosophy-grid {
  display: grid;
  gap: 14px;
}

.philosophy-grid p,
.brand-line {
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.35rem;
  font-weight: 830;
  line-height: 1.12;
  text-shadow:
    0 0 24px rgba(255, 255, 255, 0.06),
    0 0 44px rgba(136, 92, 246, 0.16);
}

.philosophy-grid p {
  --card-lift: 0px;
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  position: relative;
  min-height: 148px;
  display: grid;
  align-content: end;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.095);
  border-radius: 8px;
  background:
    radial-gradient(circle at 86% 14%, rgba(136, 92, 246, 0.16), transparent 10rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.052), rgba(255, 255, 255, 0.018)),
    rgba(0, 0, 0, 0.24);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.016) inset,
    0 26px 72px rgba(0, 0, 0, 0.26);
  overflow: hidden;
  transform: perspective(900px) translate3d(0, var(--card-lift), 0) rotateX(var(--tilt-y)) rotateY(var(--tilt-x));
  transform-style: preserve-3d;
  transition:
    transform 360ms var(--ease-premium),
    border-color 360ms var(--ease-premium),
    background 360ms var(--ease-premium),
    box-shadow 360ms var(--ease-premium);
  will-change: transform;
}

.experience-layout {
  display: grid;
  gap: 22px;
}

.product-glimpse {
  position: relative;
  min-height: 460px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 8px;
  background:
    radial-gradient(circle at 50% 38%, rgba(255, 255, 255, 0.095), transparent 9rem),
    radial-gradient(circle at 52% 54%, rgba(136, 92, 246, 0.18), transparent 22rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.042), rgba(255, 255, 255, 0.014)),
    rgba(0, 0, 0, 0.28);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.016) inset,
    0 34px 120px rgba(0, 0, 0, 0.36);
  isolation: isolate;
  transform: translate3d(calc(var(--pointer-x) * -4px), calc(var(--pointer-y) * -3px), 0);
  transition:
    transform 800ms var(--ease-premium),
    border-color 360ms var(--ease-premium),
    box-shadow 360ms var(--ease-premium);
  will-change: transform;
}

.product-glimpse::before,
.product-glimpse::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.product-glimpse::before {
  inset: 12% 12% auto;
  height: 62%;
  border-radius: 999px;
  border: 1px solid rgba(196, 181, 253, 0.12);
  filter: blur(0.2px);
  transform: rotate(-18deg);
  opacity: 0.76;
}

.product-glimpse::after {
  inset: auto -12% -18%;
  height: 46%;
  background: radial-gradient(ellipse at center, rgba(136, 92, 246, 0.22), transparent 68%);
  filter: blur(28px);
}

.phone-shell {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 34px;
  background:
    radial-gradient(circle at 50% 8%, rgba(255, 255, 255, 0.17), transparent 7rem),
    radial-gradient(circle at 60% 42%, rgba(136, 92, 246, 0.22), transparent 13rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.094), rgba(255, 255, 255, 0.028)),
    rgba(4, 4, 7, 0.82);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.035) inset,
    0 0 48px rgba(255, 255, 255, 0.045),
    0 28px 90px rgba(0, 0, 0, 0.54);
  backdrop-filter: blur(24px) saturate(128%);
  will-change: transform;
}

.phone-shell--main {
  width: min(68%, 290px);
  height: 78%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  padding: 22px;
  animation: phoneFloat 8.5s ease-in-out infinite;
}

.phone-shell--back {
  width: min(48%, 220px);
  height: 58%;
  right: 6%;
  top: 16%;
  opacity: 0.38;
  transform: rotate(7deg);
  animation: phoneBackFloat 10s ease-in-out 700ms infinite;
}

.phone-topline,
.phone-feed,
.mini-lines {
  display: grid;
  gap: 10px;
}

.phone-topline span,
.phone-feed span,
.mini-lines span {
  display: block;
  height: 11px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.13);
}

.phone-topline {
  grid-template-columns: 1fr 0.35fr;
}

.phone-orbit {
  position: relative;
  height: 158px;
  margin: 34px 0 22px;
}

.phone-orbit span {
  position: absolute;
  display: block;
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.18) 22%, rgba(136, 92, 246, 0.18) 54%, rgba(0, 0, 0, 0.04) 72%);
  box-shadow:
    inset -12px -16px 28px rgba(0, 0, 0, 0.34),
    inset 8px 8px 20px rgba(255, 255, 255, 0.1),
    0 0 38px rgba(255, 255, 255, 0.12),
    0 0 62px rgba(136, 92, 246, 0.26);
}

.phone-orbit span:nth-child(1) {
  width: 104px;
  height: 104px;
  left: calc(50% - 52px);
  top: 18px;
  animation: orbitCellOne 7.5s ease-in-out infinite;
}

.phone-orbit span:nth-child(2) {
  width: 54px;
  height: 54px;
  left: 14%;
  top: 72px;
  opacity: 0.82;
  animation: orbitCellTwo 8.4s ease-in-out 420ms infinite;
}

.phone-orbit span:nth-child(3) {
  width: 42px;
  height: 42px;
  right: 16%;
  top: 52px;
  opacity: 0.72;
  animation: orbitCellThree 9.2s ease-in-out 260ms infinite;
}

.phone-title {
  color: var(--white);
  font-size: 2rem;
  font-weight: 900;
  line-height: 1;
  text-align: center;
  text-shadow:
    0 0 18px rgba(255, 255, 255, 0.2),
    0 0 38px rgba(136, 92, 246, 0.22);
}

.phone-feed {
  margin-top: 28px;
}

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

.premium-card,
.about-panel,
.founder-card,
.team-card,
.company-panel,
.legal-section {
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.115);
  border-radius: 8px;
  background:
    radial-gradient(circle at 86% 14%, rgba(136, 92, 246, 0.13), transparent 8rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.068), rgba(255, 255, 255, 0.026)),
    rgba(0, 0, 0, 0.28);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.022) inset,
    0 28px 90px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(22px) saturate(132%);
}

.premium-card {
  --card-lift: 0px;
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  min-height: 156px;
  display: grid;
  align-content: end;
  gap: 9px;
  padding: 18px;
  overflow: hidden;
  transform: perspective(900px) translate3d(0, var(--card-lift), 0) rotateX(var(--tilt-y)) rotateY(var(--tilt-x));
  transform-style: preserve-3d;
  will-change: transform;
  transition:
    transform 360ms var(--ease-premium),
    border-color 360ms var(--ease-premium),
    background 360ms var(--ease-premium),
    box-shadow 360ms var(--ease-premium);
}

.premium-card h3,
.founder-card h3,
.legal-section h2 {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--white);
  font-size: 1.12rem;
  font-weight: 850;
  line-height: 1.15;
}

.premium-card p {
  position: relative;
  z-index: 1;
  font-size: 0.92rem;
  line-height: 1.45;
}

.card-orb {
  position: relative;
  z-index: 1;
  width: 34px;
  height: 34px;
  margin-bottom: auto;
  border-radius: 50%;
  background:
    radial-gradient(circle at 32% 22%, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.22) 26%, rgba(136, 92, 246, 0.16) 58%, rgba(0, 0, 0, 0.02) 78%);
  box-shadow:
    inset -8px -10px 16px rgba(0, 0, 0, 0.28),
    0 0 24px rgba(255, 255, 255, 0.12),
    0 0 34px rgba(136, 92, 246, 0.2);
  animation: smallOrbPulse 7.5s ease-in-out infinite;
}

.link-card:hover {
  transform: translateY(-2px);
  border-color: rgba(196, 181, 253, 0.34);
  background:
    radial-gradient(circle at 84% 16%, rgba(136, 92, 246, 0.18), transparent 9rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.084), rgba(255, 255, 255, 0.032)),
    rgba(0, 0, 0, 0.28);
}

.about-panel {
  display: grid;
  gap: 18px;
  padding: 24px;
}

.about-story {
  display: grid;
  gap: 12px;
}

.story-signoff,
.closing-line {
  color: var(--white) !important;
  font-weight: 850 !important;
}

.founder-card {
  --card-lift: 0px;
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  display: grid;
  gap: 14px;
  padding: 18px;
  overflow: hidden;
  background:
    radial-gradient(circle at 20% 8%, rgba(255, 255, 255, 0.09), transparent 7rem),
    radial-gradient(circle at 86% 18%, rgba(136, 92, 246, 0.18), transparent 10rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.078), rgba(255, 255, 255, 0.03)),
    rgba(0, 0, 0, 0.34);
  transform: perspective(900px) translate3d(0, var(--card-lift), 0) rotateX(var(--tilt-y)) rotateY(var(--tilt-x));
  transform-style: preserve-3d;
  transition:
    transform 360ms var(--ease-premium),
    border-color 360ms var(--ease-premium),
    background 360ms var(--ease-premium),
    box-shadow 360ms var(--ease-premium);
  will-change: transform;
}

.founder-card > div p {
  margin-top: 5px;
  color: rgba(196, 181, 253, 0.78);
  font-size: 0.92rem;
  font-weight: 760;
}


.founder-card h3 {
  margin: 4px 0;
  font-size: clamp(1.18rem, 3.8vw, 1.34rem);
  font-weight: 900;
}

.team-label,
.team-names {
  position: relative;
  z-index: 1;
}

.team-label {
  margin: 0 0 9px;
  color: rgba(238, 238, 244, 0.48);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.team-names {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.98rem;
  font-weight: 760;
  line-height: 1.45;
}
.team-card {
  --card-lift: 0px;
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  padding: 16px;
  overflow: hidden;
  transform: perspective(900px) translate3d(0, var(--card-lift), 0) rotateX(var(--tilt-y)) rotateY(var(--tilt-x));
  transform-style: preserve-3d;
  transition:
    transform 360ms var(--ease-premium),
    border-color 360ms var(--ease-premium),
    box-shadow 360ms var(--ease-premium);
  will-change: transform;
}

.team-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.team-list span {
  position: relative;
  z-index: 1;
  padding: 7px 10px;
  border: 1px solid rgba(196, 181, 253, 0.22);
  border-radius: 999px;
  color: rgba(238, 238, 244, 0.62);
  background: rgba(255, 255, 255, 0.035);
  font-size: 0.84rem;
  font-weight: 700;
}

.closing-line {
  margin: 6px 0 0;
  font-size: 1.55rem;
  line-height: 1.12;
  text-shadow: 0 0 24px rgba(136, 92, 246, 0.16);
}

.brand-line-section,
.closing-manifesto {
  padding: 116px 0;
}

.brand-line {
  max-width: 12ch;
  margin: 0 auto;
  font-size: 3rem;
  line-height: 0.98;
}

.closing-manifesto h2 {
  max-width: 11ch;
  margin-inline: auto;
}

.section-cta {
  --button-y: 0px;
  --button-scale: 1;
  position: relative;
  overflow: hidden;
  width: fit-content;
  margin: 28px auto 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  color: #050507;
  background: rgba(255, 255, 255, 0.96);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.48) inset,
    0 18px 62px rgba(136, 92, 246, 0.22);
  font-weight: 850;
  transform: translate3d(0, var(--button-y), 0) scale(var(--button-scale));
  will-change: transform;
  transition:
    transform 260ms var(--ease-premium),
    box-shadow 260ms var(--ease-premium),
    filter 260ms var(--ease-premium);
}

.section-cta:hover {
  --button-y: -2px;
  --button-scale: 1.015;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.58) inset,
    0 24px 86px rgba(136, 92, 246, 0.32);
}

.section-cta:active {
  --button-y: 1px;
  --button-scale: 0.99;
}

.company-panel {
  --card-lift: 0px;
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  display: grid;
  gap: 18px;
  padding: 20px;
  overflow: hidden;
  transform: perspective(1000px) translate3d(0, var(--card-lift), 0) rotateX(var(--tilt-y)) rotateY(var(--tilt-x));
  transform-style: preserve-3d;
  transition:
    transform 360ms var(--ease-premium),
    border-color 360ms var(--ease-premium),
    box-shadow 360ms var(--ease-premium);
  will-change: transform;
}

.company-details {
  display: grid;
  gap: 8px;
  align-content: end;
}

.company-mini-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 12px;
}

.company-details a,
.footer-legal a,
.legal-section a {
  color: var(--white);
  text-decoration: underline;
  text-decoration-color: rgba(196, 181, 253, 0.58);
  text-underline-offset: 4px;
}

.trust-section {
  padding-top: 72px;
}

.trust-list {
  display: grid;
  gap: 10px;
}

.trust-item {
  --card-lift: 0px;
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.018)),
    rgba(0, 0, 0, 0.24);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.016) inset,
    0 22px 70px rgba(0, 0, 0, 0.24);
  overflow: hidden;
  transform: perspective(900px) translate3d(0, var(--card-lift), 0) rotateX(var(--tilt-y)) rotateY(var(--tilt-x));
  transform-style: preserve-3d;
  transition:
    transform 360ms var(--ease-premium),
    border-color 360ms var(--ease-premium),
    background 360ms var(--ease-premium),
    box-shadow 360ms var(--ease-premium);
  will-change: transform;
}

.trust-item[open] {
  border-color: rgba(196, 181, 253, 0.25);
  background:
    radial-gradient(circle at 70% 8%, rgba(136, 92, 246, 0.12), transparent 9rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.064), rgba(255, 255, 255, 0.022)),
    rgba(0, 0, 0, 0.24);
}

.trust-item summary {
  position: relative;
  z-index: 1;
  min-height: 62px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 16px;
  color: var(--white);
  cursor: pointer;
  font-size: 1rem;
  font-weight: 820;
  list-style: none;
}

.trust-item summary::-webkit-details-marker {
  display: none;
}

.trust-mark {
  flex: 0 0 auto;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 32% 22%, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.2) 28%, rgba(136, 92, 246, 0.18) 58%, rgba(0, 0, 0, 0.02) 78%);
  box-shadow:
    0 0 18px rgba(255, 255, 255, 0.11),
    0 0 28px rgba(136, 92, 246, 0.2);
}

.trust-item p,
.trust-item a {
  position: relative;
  z-index: 1;
  display: block;
  margin: 0;
  padding: 0 16px 14px 54px;
}

.trust-item[open] p,
.trust-item[open] a {
  animation: detailsReveal 320ms var(--ease-premium) both;
}

.trust-item a {
  color: var(--white);
  font-size: 0.92rem;
  font-weight: 760;
  text-decoration: underline;
  text-decoration-color: rgba(196, 181, 253, 0.58);
  text-underline-offset: 4px;
}

@media (hover: hover) {
  .philosophy-grid p:hover,
  .premium-card:hover,
  .founder-card:hover,
  .team-card:hover,
  .company-panel:hover,
  .legal-section:hover,
  .trust-item:hover {
    --card-lift: -5px;
    border-color: rgba(196, 181, 253, 0.28);
    box-shadow:
      0 0 0 1px rgba(255, 255, 255, 0.032) inset,
      0 26px 90px rgba(0, 0, 0, 0.34),
      0 0 56px rgba(136, 92, 246, 0.12);
  }

  .product-glimpse:hover {
    border-color: rgba(196, 181, 253, 0.22);
    box-shadow:
      0 0 0 1px rgba(255, 255, 255, 0.022) inset,
      0 36px 128px rgba(0, 0, 0, 0.4),
      0 0 72px rgba(136, 92, 246, 0.1);
  }

  .company-details a:hover,
  .footer-legal a:hover,
  .legal-section a:hover,
  .footer-links a:hover,
  .trust-item a:hover {
    color: var(--white);
    text-decoration-color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 0 24px rgba(136, 92, 246, 0.18);
  }
}

.page-main {
  position: relative;
  z-index: 1;
  padding: 132px 0 48px;
  animation: contentRise 820ms var(--ease-premium) 120ms both;
}

.page-hero {
  width: min(100% - 36px, 980px);
  margin: 0 auto;
  padding: 44px 0 28px;
}

.page-hero p {
  max-width: 760px;
  margin: 16px 0 0;
  color: rgba(238, 238, 244, 0.68);
  font-size: 1.05rem;
  font-weight: 610;
  line-height: 1.65;
}

.legal-layout {
  width: min(100% - 36px, 920px);
  margin: 0 auto;
  display: grid;
  gap: 14px;
}

.legal-section {
  --card-lift: 0px;
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  padding: 20px;
  overflow: hidden;
  transform: perspective(1000px) translate3d(0, var(--card-lift), 0) rotateX(var(--tilt-y)) rotateY(var(--tilt-x));
  transform-style: preserve-3d;
  transition:
    transform 360ms var(--ease-premium),
    border-color 360ms var(--ease-premium),
    box-shadow 360ms var(--ease-premium),
    background 360ms var(--ease-premium);
  will-change: transform;
}

.legal-section p + p {
  margin-top: 10px;
}

.legal-list {
  display: grid;
  gap: 10px;
  margin: 12px 0 0;
  padding-left: 20px;
}

.site-footer {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 22px;
  padding: 34px 0 max(44px, env(safe-area-inset-bottom));
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-brand {
  display: grid;
  gap: 8px;
}

.footer-brand img {
  width: 82px;
  filter:
    drop-shadow(0 0 8px rgba(255, 255, 255, 0.44))
    drop-shadow(0 0 22px rgba(136, 92, 246, 0.16));
}

.footer-brand p {
  margin: 0;
  color: var(--white);
  font-weight: 850;
}

.footer-legal {
  display: grid;
  gap: 7px;
}

.footer-legal p {
  font-size: 0.92rem;
  line-height: 1.5;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
}

.footer-links a {
  color: rgba(238, 238, 244, 0.62);
  font-size: 0.92rem;
  font-weight: 650;
}

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

.orb-experience-section {
  position: relative;
  z-index: 1;
  min-height: 78vh;
  min-height: 78svh;
  display: grid;
  place-items: center;
  padding: 54px 0 max(92px, env(safe-area-inset-bottom));
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(circle at 50% 18%, rgba(255, 255, 255, 0.075), transparent 12rem),
    radial-gradient(circle at 36% 42%, rgba(136, 92, 246, 0.12), transparent 24rem),
    radial-gradient(circle at 72% 64%, rgba(196, 181, 253, 0.075), transparent 22rem),
    linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(10, 10, 13, 0.72) 26%, #000000 100%);
}

.orb-experience-section::before,
.orb-experience-section::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.orb-experience-section::before {
  inset: 2% -16% auto;
  height: 82%;
  z-index: -2;
  background:
    radial-gradient(ellipse at 50% 48%, rgba(255, 255, 255, 0.07), transparent 26%),
    radial-gradient(ellipse at 50% 48%, rgba(136, 92, 246, 0.13), transparent 43%),
    radial-gradient(ellipse at 50% 62%, rgba(26, 19, 37, 0.54), transparent 60%),
    conic-gradient(from 130deg at 50% 50%, transparent 0 18%, rgba(196, 181, 253, 0.09) 28%, transparent 42%, rgba(136, 92, 246, 0.075) 58%, transparent 74%);
  filter: blur(48px);
  opacity: 0.74;
}

.orb-experience-section::after {
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 18% 20%, rgba(255, 255, 255, 0.18) 0 1px, transparent 2px),
    radial-gradient(circle at 78% 31%, rgba(136, 92, 246, 0.42) 0 1px, transparent 2px),
    radial-gradient(circle at 34% 82%, rgba(196, 181, 253, 0.28) 0 1px, transparent 2px),
    radial-gradient(circle at 86% 72%, rgba(255, 255, 255, 0.18) 0 1px, transparent 2px);
  opacity: 0.36;
}

.orb-experience-board {
  position: relative;
  width: min(100%, 980px);
  height: min(72vh, 620px);
  min-height: 520px;
  overflow: hidden;
  border-radius: 0;
  background:
    radial-gradient(circle at 50% 46%, rgba(255, 255, 255, 0.062), transparent 8rem),
    radial-gradient(circle at 38% 38%, rgba(136, 92, 246, 0.085), transparent 18rem),
    radial-gradient(circle at 76% 68%, rgba(196, 181, 253, 0.055), transparent 17rem);
  box-shadow:
    0 0 78px rgba(255, 255, 255, 0.035),
    0 0 104px rgba(136, 92, 246, 0.06);
  touch-action: none;
}

.orb-experience-board::before {
  content: "";
  position: absolute;
  inset: 12%;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  opacity: 0.46;
  filter: blur(0.4px);
}

.orb-experience-canvas {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  display: block;
  cursor: none;
  touch-action: none;
}

.footer {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 20px max(18px, env(safe-area-inset-bottom));
  color: rgba(238, 238, 244, 0.36);
  text-shadow: 0 0 16px rgba(136, 92, 246, 0.12);
  font-size: 0.78rem;
  font-weight: 650;
  letter-spacing: 0;
  pointer-events: none;
}

.footer p {
  margin: 0;
}

@media (max-width: 430px) {
  .site-header {
    width: min(100% - 24px, 1160px);
    min-height: 108px;
    margin-bottom: -108px;
    align-items: flex-start;
    flex-direction: column;
    padding-top: max(18px, env(safe-area-inset-top));
  }

  .site-brand {
    width: 80px;
  }

  .site-nav {
    width: 100%;
    justify-content: space-between;
    gap: 4px;
  }

  .site-nav a {
    padding: 8px 9px;
    font-size: 0.8rem;
  }

  .site-nav .nav-pill {
    display: none;
  }

  .teaser {
    padding: max(108px, env(safe-area-inset-top)) 20px max(62px, env(safe-area-inset-bottom));
  }

  .logo-stage {
    width: min(96vw, 370px);
    min-height: 226px;
    padding: 44px 0 48px;
  }

  .we-logo {
    width: 68%;
    max-width: 252px;
  }

  .sphere--one {
    --left: -22vw;
    --top: 10vh;
  }

  .sphere--four {
    --left: 82vw;
    --top: 35vh;
  }

  .sphere--five {
    --left: -8vw;
    --top: 68vh;
  }

  .liquid--one {
    --left: -16vw;
    --top: 46vh;
  }

  .liquid--two {
    --left: 68vw;
    --top: 56vh;
  }

  .energy-thread {
    width: 72vw;
  }

  .orb-experience-section {
    min-height: 72vh;
    min-height: 72svh;
    padding: 36px 0 max(88px, env(safe-area-inset-bottom));
  }

  .orb-experience-board {
    height: 520px;
    min-height: 520px;
  }

  .section-shell,
  .site-footer,
  .page-hero,
  .legal-layout {
    width: min(100% - 28px, 1120px);
  }

  .site-section {
    padding: 54px 0;
  }

  .site-section h2,
  .page-hero h1 {
    font-size: 2.05rem;
  }

  .story-section,
  .brand-line-section,
  .closing-manifesto {
    padding: 76px 0;
  }

  .philosophy-grid p {
    min-height: 126px;
  }

  .brand-line {
    font-size: 2.45rem;
  }

  .product-glimpse {
    min-height: 390px;
  }

  .phone-shell--main {
    width: min(74%, 260px);
    height: 72%;
  }

  .phone-shell--back {
    width: min(46%, 180px);
    height: 48%;
    right: -2%;
  }
}

@media (min-width: 720px) {
  .teaser {
    padding-inline: 40px;
  }

  .hero h1 {
    font-size: 5.95rem;
  }

  .hero__line,
  .hero__status {
    font-size: 1.28rem;
  }

  .hero__company,
  .hero__availability {
    font-size: 1rem;
  }

  .app-preview {
    width: min(22vw, 230px);
    margin-top: 28px;
    gap: 12px;
  }

  .app-preview__phone {
    border-radius: 34px;
  }

  .waitlist-form {
    grid-template-columns: 1fr auto;
    align-items: start;
    gap: 10px;
  }

  .waitlist-form button {
    width: auto;
    min-width: 196px;
    padding: 0 25px;
  }

  .waitlist-copy,
  .form-status {
    grid-column: 1 / -1;
  }

  .premium-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .philosophy-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .experience-layout {
    grid-template-columns: 0.95fr 1.05fr;
    align-items: stretch;
  }

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

  .safety-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .trust-list {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .trust-item {
    min-height: 158px;
  }

  .trust-item summary {
    align-items: flex-start;
    flex-direction: column;
    justify-content: flex-end;
    min-height: 92px;
    padding: 16px 16px 10px;
  }

  .trust-item p,
  .trust-item a {
    padding-left: 16px;
  }

  .site-section h2,
  .page-hero h1 {
    font-size: 4.3rem;
  }

  .story-section h2 {
    max-width: 14ch;
  }

  .brand-line {
    font-size: 5.2rem;
  }

  .about-panel {
    grid-template-columns: 1.15fr 0.85fr;
    padding: 28px;
  }

  .about-story,
  .closing-line {
    grid-column: 1 / -1;
  }

  .company-panel {
    grid-template-columns: 1.2fr 0.8fr;
    padding: 28px;
  }

  .site-footer {
    grid-template-columns: 0.7fr 1fr 1.2fr;
    align-items: start;
  }

  .orb-experience-section {
    padding-inline: 40px;
  }
}

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

  .sphere,
  .liquid,
  .constellation,
  .logo-stage,
  .hero::before,
  .hero h1,
  .hero__line,
  .hero__status,
  .hero__company,
  .hero__availability,
  .app-preview,
  .waitlist-form,
  .site-section[data-section-reveal],
  .page-main {
    opacity: 1 !important;
    filter: none !important;
    transform: none !important;
  }
}

@keyframes pageEnter {
  from {
    opacity: 0;
    filter: blur(8px);
  }
  to {
    opacity: 1;
    filter: blur(0);
  }
}

@keyframes contentRise {
  from {
    opacity: 0;
    filter: blur(12px);
    transform: translate3d(0, 18px, 0);
  }
  to {
    opacity: 1;
    filter: blur(0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes detailsReveal {
  from {
    opacity: 0;
    filter: blur(7px);
    transform: translate3d(0, -6px, 0);
  }
  to {
    opacity: 1;
    filter: blur(0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes phoneFloat {
  0%,
  100% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  50% {
    transform: translate(calc(-50% + 5px), calc(-50% - 8px)) rotate(-0.8deg);
  }
}

@keyframes phoneBackFloat {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(7deg);
  }
  50% {
    transform: translate3d(-8px, 10px, 0) rotate(5deg);
  }
}

@keyframes orbitCellOne {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(4px, -8px, 0) scale(1.035);
  }
}

@keyframes orbitCellTwo {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(-6px, 5px, 0) scale(0.96);
  }
}

@keyframes orbitCellThree {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(7px, 7px, 0) scale(1.08);
  }
}

@keyframes smallOrbPulse {
  0%,
  100% {
    filter: brightness(1);
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    filter: brightness(1.12);
    transform: translate3d(0, -1px, 0) scale(1.045);
  }
}

@keyframes sphereIntro {
  0% {
    opacity: 0;
    filter: blur(24px);
    transform: translate3d(var(--start-x), var(--start-y), 0) scale(1.2);
  }
  54% {
    opacity: 0.96;
    filter: blur(0);
    transform: translate3d(var(--pull-x), var(--pull-y), 180px) scale(0.2);
  }
  72% {
    opacity: 0.78;
  }
  100% {
    opacity: 0.78;
    filter: blur(0);
    transform: translate3d(0, 0, 0) scale(1);
  }
}

@keyframes liquidIntro {
  0% {
    opacity: 0;
    filter: blur(24px);
    transform: translate3d(var(--start-x), var(--start-y), 0) rotate(-8deg) scale(1.25);
  }
  52% {
    opacity: 0.86;
    filter: blur(0);
    transform: translate3d(var(--pull-x), var(--pull-y), 180px) rotate(12deg) scale(0.22);
  }
  100% {
    opacity: 0.62;
    filter: blur(0);
    transform: translate3d(0, 0, 0) rotate(-12deg) scale(1);
  }
}

@keyframes sphereOrbit {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  33% {
    transform: translate3d(18px, -24px, 50px) scale(1.035);
  }
  66% {
    transform: translate3d(-20px, 18px, -20px) scale(0.98);
  }
}

@keyframes liquidMorph {
  0%,
  100% {
    border-radius: 48% 52% 42% 58% / 58% 42% 58% 42%;
    transform: translate3d(0, 0, 0) rotate(-12deg) scale(1);
  }
  50% {
    border-radius: 62% 38% 58% 42% / 44% 60% 40% 56%;
    transform: translate3d(-18px, 20px, 0) rotate(8deg) scale(1.06);
  }
}

@keyframes logoIgnite {
  0% {
    opacity: 0;
    filter: blur(24px);
    transform: translateY(24px) scale(0.58);
  }
  58% {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0) scale(1.08);
  }
  100% {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0) scale(1);
  }
}

@keyframes logoPulse {
  0%,
  100% {
    opacity: 0.34;
    transform: scale(1.08);
  }
  50% {
    opacity: 0.56;
    transform: scale(1.3);
  }
}

@keyframes haloIgnite {
  0% {
    opacity: 0;
    transform: scale(0.35);
  }
  54% {
    opacity: 0.7;
  }
  100% {
    opacity: 0.38;
    transform: scale(1.22);
  }
}

@keyframes heroAuraWake {
  0% {
    opacity: 0;
    transform: translateY(-4%) scale(0.84);
  }
  100% {
    opacity: 0.74;
    transform: translateY(-4%) scale(1);
  }
}

@keyframes heroAuraPulse {
  0%,
  100% {
    opacity: 0.56;
    transform: translateY(-4%) scale(1);
  }
  50% {
    opacity: 0.78;
    transform: translateY(-5%) scale(1.04);
  }
}

@keyframes popFromLogo {
  0% {
    opacity: 0;
    filter: blur(14px);
    transform: translateY(-28px) scale(0.9);
  }
  68% {
    opacity: 1;
    filter: blur(0);
    transform: translateY(3px) scale(1.025);
  }
  100% {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0) scale(1);
  }
}

@keyframes constellationWake {
  0% {
    opacity: 0;
    filter: blur(10px) drop-shadow(0 0 18px rgba(136, 92, 246, 0.2));
    transform: translate3d(18px, 14px, 0) scale(0.7);
  }
  100% {
    opacity: 0.72;
    filter: blur(0) drop-shadow(0 0 18px rgba(136, 92, 246, 0.3));
    transform: translate3d(0, 0, 0) scale(1);
  }
}

@keyframes constellationDrift {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(-10px, 12px, 0);
  }
}

@keyframes coreBloom {
  0% {
    opacity: 0;
    transform: scale(0.6) rotate(-8deg);
  }
  58% {
    opacity: 0.62;
    transform: scale(1.02) rotate(4deg);
  }
  100% {
    opacity: 0.46;
    transform: scale(1) rotate(0);
  }
}

@keyframes fieldFrame {
  to {
    opacity: 0.38;
    transform: scale(1) rotate(-8deg);
  }
}

@keyframes slowSpin {
  to {
    transform: scale(1) rotate(352deg);
  }
}

@keyframes threadWake {
  0% {
    opacity: 0;
    filter: blur(14px);
  }
  100% {
    opacity: 0.5;
    filter: blur(1px) drop-shadow(0 0 30px var(--purple-glow));
  }
}

@keyframes threadFloat {
  0%,
  100% {
    translate: 0 0;
  }
  50% {
    translate: 16px -18px;
  }
}

@keyframes particlesWake {
  to {
    opacity: 0.46;
  }
}

@keyframes particleDrift {
  to {
    transform: translate3d(-72px, -88px, 0);
  }
}

@keyframes starWake {
  to {
    opacity: 0.7;
  }
}
