/* NIVYN Website v1.0
   Built from the approved NIVYN brand system.
   Primary colors: #8A3BFF, #C9A8FF, #FFFFFF, #0A0A0F, #1A1A24
*/

:root {
  --purple: #8a3bff;
  --purple-light: #c9a8ff;
  --purple-deep: #5510bf;
  --white: #ffffff;
  --black: #0a0a0f;
  --black-2: #0e0d15;
  --graphite: #1a1a24;
  --graphite-2: #232331;
  --muted: #a9a5b4;
  --muted-2: #737080;
  --line: rgba(255, 255, 255, 0.12);
  --line-strong: rgba(255, 255, 255, 0.22);
  --glass: rgba(14, 13, 21, 0.68);
  --glass-soft: rgba(255, 255, 255, 0.045);
  --shadow: 0 35px 100px rgba(0, 0, 0, 0.52);
  --glow: 0 0 45px rgba(138, 59, 255, 0.32);
  --display: "Orbitron", "Arial Black", sans-serif;
  --body: "Montserrat", Arial, sans-serif;
  --shell: min(1240px, calc(100vw - 64px));
  --header-height: 92px;
  --radius-sm: 12px;
  --radius: 22px;
  --radius-lg: 34px;
  --ease: cubic-bezier(0.2, 0.75, 0.25, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--black);
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 82% 15%, rgba(138, 59, 255, 0.09), transparent 28rem),
    var(--black);
  color: var(--white);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.is-loading,
body.menu-open {
  overflow: hidden;
}

::selection {
  color: var(--white);
  background: rgba(138, 59, 255, 0.75);
}

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: var(--black);
}

::-webkit-scrollbar-thumb {
  border: 3px solid var(--black);
  border-radius: 999px;
  background: linear-gradient(var(--purple-light), var(--purple));
}

img,
svg {
  display: block;
  max-width: 100%;
}

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

button,
input,
textarea {
  color: inherit;
  font: inherit;
}

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

button {
  border: 0;
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--purple-light);
  outline-offset: 4px;
}

.site-shell {
  width: var(--shell);
  margin-inline: auto;
}

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

.skip-link {
  position: fixed;
  z-index: 10000;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  transform: translateY(-160%);
  border-radius: 8px;
  color: var(--black);
  background: var(--white);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

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

.signal-field {
  position: fixed;
  z-index: 0;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0.38;
}

.scroll-progress {
  position: fixed;
  z-index: 1200;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: rgba(255, 255, 255, 0.04);
}

.scroll-progress span {
  display: block;
  width: 100%;
  height: 100%;
  transform: scaleX(0);
  transform-origin: left center;
  background: linear-gradient(90deg, var(--purple), var(--purple-light), var(--white));
  box-shadow: 0 0 16px rgba(138, 59, 255, 0.8);
}

.cursor-dot,
.cursor-ring {
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%);
  opacity: 0;
}

.cursor-dot {
  width: 5px;
  height: 5px;
  background: var(--white);
}

.cursor-ring {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(201, 168, 255, 0.7);
  background: rgba(138, 59, 255, 0.05);
  backdrop-filter: blur(2px);
  transition: width 220ms var(--ease), height 220ms var(--ease), background 220ms ease, border-color 220ms ease;
}

.cursor-ring.is-hovering {
  width: 54px;
  height: 54px;
  border-color: rgba(255, 255, 255, 0.85);
  background: rgba(138, 59, 255, 0.13);
}

.preloader {
  position: fixed;
  z-index: 100000;
  inset: 0;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 50% 44%, rgba(138, 59, 255, 0.16), transparent 27rem),
    var(--black);
  transition: opacity 650ms var(--ease), visibility 650ms var(--ease);
}

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

.preloader__inner {
  width: min(420px, calc(100vw - 56px));
  text-align: center;
}

.preloader__mark {
  width: 96px;
  margin: 0 auto 22px;
  border-radius: 24px;
  box-shadow: 0 0 60px rgba(138, 59, 255, 0.42);
  animation: preload-float 1.8s ease-in-out infinite;
}

.preloader__word {
  font-family: var(--display);
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.46em;
  text-indent: 0.46em;
}

.preloader__track {
  height: 2px;
  margin-top: 30px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.1);
}

.preloader__track span {
  display: block;
  width: 100%;
  height: 100%;
  transform: scaleX(0);
  transform-origin: left center;
  background: linear-gradient(90deg, var(--purple), var(--purple-light), white);
}

.preloader__meta {
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
  color: var(--muted);
  font-family: var(--display);
  font-size: 8px;
  letter-spacing: 0.24em;
}

@keyframes preload-float {
  50% { transform: translateY(-8px) scale(1.02); }
}

.site-header {
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  width: 100%;
  border-bottom: 1px solid transparent;
  transition: background 350ms ease, border-color 350ms ease, transform 450ms var(--ease-out);
}

.site-header.is-scrolled {
  border-color: rgba(255, 255, 255, 0.08);
  background: rgba(10, 10, 15, 0.72);
  backdrop-filter: blur(22px) saturate(140%);
}

.site-header.is-hidden {
  transform: translateY(-110%);
}

.site-header__inner {
  display: grid;
  grid-template-columns: 260px 1fr 260px;
  align-items: center;
  min-height: var(--header-height);
}

.brand-link {
  display: inline-flex;
  align-items: center;
  width: 205px;
}

.brand-link img {
  width: 100%;
}

.desktop-nav {
  display: flex;
  justify-content: center;
  gap: clamp(22px, 3vw, 46px);
}

.desktop-nav a {
  position: relative;
  color: rgba(255, 255, 255, 0.72);
  font-family: var(--display);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  transition: color 220ms ease;
}

.desktop-nav a::after {
  position: absolute;
  bottom: -10px;
  left: 50%;
  width: 0;
  height: 1px;
  content: "";
  transform: translateX(-50%);
  background: var(--purple-light);
  box-shadow: 0 0 10px var(--purple);
  transition: width 260ms var(--ease-out);
}

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

.desktop-nav a:hover::after {
  width: 100%;
}

.desktop-cta {
  justify-self: end;
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  cursor: pointer;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 1px;
  margin: 5px auto;
  background: var(--white);
}

.mobile-menu {
  position: fixed;
  z-index: 2000;
  inset: 0;
  visibility: hidden;
  pointer-events: none;
}

.mobile-menu.is-open {
  visibility: visible;
  pointer-events: auto;
}

.mobile-menu__backdrop {
  position: absolute;
  inset: 0;
  opacity: 0;
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(10px);
  transition: opacity 350ms ease;
}

.mobile-menu.is-open .mobile-menu__backdrop {
  opacity: 1;
}

.mobile-menu__panel {
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  width: min(460px, 100%);
  height: 100%;
  padding: 28px 30px 34px;
  transform: translateX(105%);
  border-left: 1px solid var(--line);
  background:
    radial-gradient(circle at 90% 10%, rgba(138, 59, 255, 0.22), transparent 22rem),
    #0d0c13;
  transition: transform 520ms var(--ease-out);
}

.mobile-menu.is-open .mobile-menu__panel {
  transform: translateX(0);
}

.mobile-menu__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mobile-menu__top img {
  width: 190px;
}

.mobile-menu__top button {
  display: grid;
  width: 48px;
  height: 48px;
  cursor: pointer;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
}

.mobile-menu__top svg {
  width: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
}

.mobile-menu nav {
  display: grid;
  margin: auto 0;
}

.mobile-menu nav a {
  display: flex;
  align-items: baseline;
  gap: 18px;
  padding: 17px 0;
  border-bottom: 1px solid var(--line);
  font-family: var(--display);
  font-size: clamp(24px, 7vw, 42px);
  font-weight: 600;
  letter-spacing: 0.02em;
}

.mobile-menu nav a span {
  color: var(--purple-light);
  font-size: 9px;
  letter-spacing: 0.14em;
}

.mobile-menu__panel > p {
  margin: 0;
  color: var(--muted);
  font-family: var(--display);
  font-size: 10px;
  line-height: 1.9;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 0 28px;
  overflow: hidden;
  cursor: pointer;
  border: 1px solid transparent;
  border-radius: 999px;
  font-family: var(--display);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: transform 250ms var(--ease), border-color 250ms ease, background 250ms ease, color 250ms ease, box-shadow 250ms ease;
}

.button::before {
  position: absolute;
  inset: 0;
  content: "";
  transform: translateX(-115%) skewX(-18deg);
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
  transition: transform 650ms var(--ease-out);
}

.button:hover::before {
  transform: translateX(115%) skewX(-18deg);
}

.button span,
.button svg {
  position: relative;
  z-index: 1;
}

.button svg {
  width: 19px;
  margin-left: 14px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
  transition: transform 250ms var(--ease);
}

.button:hover svg {
  transform: translateX(4px);
}

.button--small {
  min-height: 46px;
  padding: 0 20px;
  font-size: 9px;
}

.button--primary {
  color: var(--white);
  border-color: rgba(201, 168, 255, 0.45);
  background: linear-gradient(135deg, #641be1 0%, var(--purple) 55%, #ad75ff 120%);
  box-shadow: 0 12px 35px rgba(95, 26, 213, 0.36), inset 0 1px 0 rgba(255, 255, 255, 0.24);
}

.button--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 48px rgba(95, 26, 213, 0.48), inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.button--glass {
  border-color: var(--line-strong);
  background: rgba(255, 255, 255, 0.055);
  backdrop-filter: blur(14px);
}

.button--glass:hover,
.button--quiet:hover {
  border-color: rgba(201, 168, 255, 0.55);
  background: rgba(138, 59, 255, 0.12);
}

.button--quiet {
  min-height: 56px;
  border-color: var(--line);
  background: rgba(10, 10, 15, 0.4);
}

.button__play {
  display: grid;
  width: 26px;
  height: 26px;
  margin-left: 13px;
  place-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  font-size: 13px;
}

.button--white {
  color: var(--black);
  border-color: rgba(255, 255, 255, 0.9);
  background: var(--white);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.24);
}

.button--white:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.34);
}

.hero {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 100svh;
  overflow: hidden;
  align-items: center;
  padding: calc(var(--header-height) + 62px) 0 96px;
  isolation: isolate;
}

.hero__background,
.hero__image,
.hero__veil {
  position: absolute;
  inset: 0;
}

.hero__background {
  z-index: -2;
  overflow: hidden;
  background: #09080e;
}

.hero__image {
  inset: -5%;
  background-image: url("../assets/images/liquid-hero.webp");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  filter: saturate(1.05) contrast(1.08) brightness(0.68);
  transform: scale(1.08);
}

.hero__veil {
  background:
    linear-gradient(90deg, rgba(7, 7, 11, 0.96) 0%, rgba(7, 7, 11, 0.84) 38%, rgba(7, 7, 11, 0.35) 70%, rgba(7, 7, 11, 0.56) 100%),
    linear-gradient(0deg, var(--black) 0%, transparent 22%, transparent 78%, rgba(0, 0, 0, 0.25) 100%);
}

.hero__aurora {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  mix-blend-mode: screen;
  opacity: 0.38;
  animation: aurora-drift 10s ease-in-out infinite alternate;
}

.hero__aurora--one {
  top: 12%;
  right: 2%;
  width: 430px;
  height: 430px;
  background: rgba(138, 59, 255, 0.38);
}

.hero__aurora--two {
  right: 28%;
  bottom: -10%;
  width: 300px;
  height: 300px;
  background: rgba(201, 168, 255, 0.2);
  animation-delay: -4s;
}

@keyframes aurora-drift {
  to { transform: translate3d(-45px, 38px, 0) scale(1.12); }
}

.hero__layout {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(380px, 0.96fr);
  align-items: center;
  gap: clamp(44px, 7vw, 110px);
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 730px;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: rgba(255, 255, 255, 0.78);
  font-family: var(--display);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow__pulse {
  position: relative;
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--purple-light);
  box-shadow: 0 0 12px var(--purple);
}

.eyebrow__pulse::after {
  position: absolute;
  inset: -5px;
  content: "";
  border: 1px solid rgba(201, 168, 255, 0.5);
  border-radius: 50%;
  animation: pulse-ring 1.8s ease-out infinite;
}

@keyframes pulse-ring {
  100% { transform: scale(1.55); opacity: 0; }
}

.hero__title {
  max-width: 790px;
  margin: 29px 0 24px;
  font-family: var(--display);
  font-size: clamp(48px, 5.55vw, 84px);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -0.045em;
  text-wrap: balance;
}

.hero__title-gradient {
  display: block;
  color: transparent;
  background: linear-gradient(90deg, var(--white) 0%, var(--purple-light) 43%, #8b38ff 77%, #f6ebff 120%);
  -webkit-background-clip: text;
  background-clip: text;
  filter: drop-shadow(0 0 25px rgba(138, 59, 255, 0.22));
}

.hero__lede {
  max-width: 680px;
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: clamp(16px, 1.3vw, 19px);
  line-height: 1.82;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-top: 37px;
}

.hero__signal {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 48px;
  font-family: var(--display);
  font-size: 8px;
  letter-spacing: 0.17em;
}

.hero__signal::before {
  width: 52px;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, var(--purple), var(--purple-light));
  box-shadow: 0 0 10px var(--purple);
}

.hero__signal-label {
  color: var(--muted-2);
}

.hero__signal-word {
  min-width: 88px;
  color: var(--purple-light);
}

.hero__art {
  position: relative;
  display: grid;
  width: min(100%, 540px);
  aspect-ratio: 1;
  place-items: center;
  justify-self: end;
  perspective: 1200px;
}

.hero__art::before,
.hero__art::after {
  position: absolute;
  content: "";
  border-radius: 50%;
}

.hero__art::before {
  inset: 8%;
  border: 1px solid rgba(201, 168, 255, 0.16);
  box-shadow: inset 0 0 70px rgba(138, 59, 255, 0.12);
}

.hero__art::after {
  inset: 19%;
  background: radial-gradient(circle, rgba(138, 59, 255, 0.22), transparent 68%);
  filter: blur(20px);
}

.hero__icon-stage {
  position: relative;
  z-index: 4;
  width: 47%;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 30%;
  box-shadow:
    0 55px 95px rgba(0, 0, 0, 0.58),
    0 0 85px rgba(138, 59, 255, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.25);
  transform-style: preserve-3d;
}

.hero__icon-stage img {
  width: 100%;
}

.hero__icon-reflection {
  position: absolute;
  z-index: 3;
  top: -60%;
  left: -100%;
  width: 130%;
  height: 220%;
  transform: rotate(25deg);
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.23), transparent);
  animation: icon-shine 5s ease-in-out infinite 1.5s;
}

.hero__icon-scan {
  position: absolute;
  z-index: 5;
  top: -20%;
  left: 7%;
  width: 86%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.95), transparent);
  box-shadow: 0 0 16px rgba(201, 168, 255, 0.8);
  opacity: 0;
  animation: icon-scan 4.6s ease-in-out infinite 1s;
}

@keyframes icon-shine {
  0%, 18% { left: -120%; }
  46%, 100% { left: 130%; }
}

@keyframes icon-scan {
  0%, 20% { top: -10%; opacity: 0; }
  28% { opacity: 1; }
  70% { top: 108%; opacity: 0.8; }
  100% { top: 108%; opacity: 0; }
}

.orbital {
  position: absolute;
  z-index: 2;
  border: 1px solid rgba(201, 168, 255, 0.19);
  border-radius: 50%;
}

.orbital::before,
.orbital::after {
  position: absolute;
  content: "";
  border-radius: 50%;
  background: var(--purple-light);
  box-shadow: 0 0 14px var(--purple), 0 0 35px var(--purple);
}

.orbital--outer {
  inset: 5%;
  animation: orbital-spin 15s linear infinite;
}

.orbital--outer::before {
  top: 17%;
  right: 4%;
  width: 6px;
  height: 6px;
}

.orbital--outer::after {
  bottom: 8%;
  left: 23%;
  width: 4px;
  height: 4px;
}

.orbital--inner {
  inset: 15%;
  border-style: dashed;
  animation: orbital-spin 18s linear infinite reverse;
}

.orbital--inner::before {
  top: 1%;
  left: 49%;
  width: 5px;
  height: 5px;
}

.orbital--inner::after {
  right: 7%;
  bottom: 25%;
  width: 3px;
  height: 3px;
}

@keyframes orbital-spin {
  to { transform: rotate(360deg); }
}

.hero__art-glow {
  position: absolute;
  z-index: 1;
  width: 48%;
  height: 48%;
  border-radius: 50%;
  background: var(--purple);
  filter: blur(85px);
  opacity: 0.48;
  animation: glow-breathe 4s ease-in-out infinite alternate;
}

@keyframes glow-breathe {
  to { transform: scale(1.22); opacity: 0.3; }
}

.hero__code-mark {
  position: absolute;
  z-index: 4;
  bottom: 17%;
  left: 8%;
  width: 21%;
  filter: drop-shadow(0 0 15px rgba(138, 59, 255, 0.55));
  animation: float-mark 5s ease-in-out infinite;
}

@keyframes float-mark {
  50% { transform: translateY(-11px) rotate(-2deg); }
}

.hero__data {
  position: absolute;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 9px 12px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 999px;
  background: rgba(10, 10, 15, 0.5);
  backdrop-filter: blur(10px);
  font-family: var(--display);
  font-size: 7px;
  letter-spacing: 0.14em;
}

.hero__data span {
  color: var(--muted);
}

.hero__data strong {
  color: var(--purple-light);
  font-size: 10px;
}

.hero__data--top {
  top: 12%;
  left: 15%;
}

.hero__data--bottom {
  right: 8%;
  bottom: 14%;
}

.hero__sidecopy {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: max(18px, calc((100vw - 1420px) / 2));
  display: flex;
  flex-direction: column;
  gap: 14px;
  transform: translateY(-50%);
  color: rgba(255, 255, 255, 0.34);
  font-family: var(--display);
  font-size: 7px;
  letter-spacing: 0.28em;
}

.hero__sidecopy::after {
  width: 34px;
  height: 2px;
  margin-top: 8px;
  content: "";
  background: var(--purple);
  box-shadow: 0 0 12px var(--purple);
}

.hero__footer {
  position: absolute;
  right: 0;
  bottom: 28px;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.scroll-cue {
  display: flex;
  align-items: center;
  gap: 13px;
  color: var(--muted-2);
  font-family: var(--display);
  font-size: 7px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.scroll-cue i {
  position: relative;
  width: 34px;
  height: 34px;
  border: 1px solid var(--line);
  border-radius: 50%;
}

.scroll-cue i::before {
  position: absolute;
  top: 9px;
  left: 50%;
  width: 1px;
  height: 9px;
  content: "";
  transform: translateX(-50%);
  background: var(--purple-light);
  animation: scroll-cue 1.6s ease-in-out infinite;
}

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

.hero__footer p {
  margin: 0;
  color: var(--muted-2);
  font-family: var(--display);
  font-size: 7px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero__footer strong {
  color: var(--white);
  font-weight: 500;
}

.marquee-band {
  position: relative;
  z-index: 2;
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #0d0c13;
}

.marquee {
  width: 100%;
  padding: 19px 0;
  overflow: hidden;
}

.marquee__track {
  display: flex;
  width: max-content;
  align-items: center;
  animation: marquee-move 33s linear infinite;
}

.marquee__track span {
  padding: 0 30px;
  color: rgba(255, 255, 255, 0.65);
  font-family: var(--display);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.18em;
}

.marquee__track i {
  width: 6px;
  height: 6px;
  transform: rotate(45deg);
  border: 1px solid var(--purple-light);
  box-shadow: 0 0 10px rgba(138, 59, 255, 0.7);
}

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

.section-kicker {
  color: var(--muted);
}

.section-kicker span {
  color: var(--purple-light);
}

.display-heading {
  margin: 25px 0 0;
  font-family: var(--display);
  font-size: clamp(38px, 5vw, 70px);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.04em;
  text-wrap: balance;
}

.display-heading em {
  color: transparent;
  background: linear-gradient(90deg, var(--purple-light), var(--purple), #e7d7ff);
  -webkit-background-clip: text;
  background-clip: text;
  font-style: normal;
}

.manifesto {
  z-index: 1;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 8% 30%, rgba(138, 59, 255, 0.09), transparent 24rem),
    var(--black);
}

.manifesto__grid {
  display: grid;
  grid-template-columns: 0.7fr 2.3fr 1fr;
  gap: clamp(36px, 6vw, 95px);
  align-items: start;
}

.manifesto .section-kicker {
  padding-top: 12px;
}

.manifesto__statement .display-heading {
  margin-top: 0;
  font-size: clamp(38px, 4.6vw, 66px);
}

.manifesto__accent {
  max-width: 720px;
  margin: 28px 0 0;
  color: var(--purple-light);
  font-size: clamp(18px, 1.8vw, 26px);
  line-height: 1.5;
}

.manifesto__body {
  padding-top: 13px;
}

.manifesto__body p {
  margin: 0 0 28px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.9;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 6px;
  border-bottom: 1px solid rgba(201, 168, 255, 0.45);
  font-family: var(--display);
  font-size: 8px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.text-link span {
  color: var(--purple-light);
  font-size: 13px;
  transition: transform 220ms var(--ease);
}

.text-link:hover span {
  transform: translate(3px, -3px);
}

.capabilities {
  z-index: 1;
  overflow: hidden;
  background: #0d0c13;
}

.capabilities__wash {
  position: absolute;
  top: 13%;
  right: -16%;
  width: 650px;
  height: 650px;
  border-radius: 50%;
  background: rgba(138, 59, 255, 0.14);
  filter: blur(130px);
}

.section-heading {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(280px, 0.55fr);
  align-items: end;
  gap: 70px;
  margin-bottom: 72px;
}

.section-heading__copy {
  max-width: 460px;
  margin: 0 0 7px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.9;
}

.section-heading--center {
  display: block;
  max-width: 860px;
  margin: 0 auto 72px;
  text-align: center;
}

.section-heading--center .section-heading__copy {
  margin: 25px auto 0;
}

.capability-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 18px;
}

.capability-card {
  position: relative;
  grid-column: span 4;
  min-height: 365px;
  padding: 28px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.018)),
    rgba(15, 14, 23, 0.8);
  box-shadow: 0 25px 65px rgba(0, 0, 0, 0.22);
  transform-style: preserve-3d;
  transition: border-color 300ms ease, box-shadow 300ms ease, background 300ms ease;
}

.capability-card::before {
  position: absolute;
  inset: 0;
  content: "";
  opacity: 0;
  background: radial-gradient(circle at var(--mx, 50%) var(--my, 50%), rgba(138, 59, 255, 0.2), transparent 37%);
  transition: opacity 300ms ease;
}

.capability-card:hover {
  border-color: rgba(201, 168, 255, 0.32);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.34), 0 0 60px rgba(138, 59, 255, 0.08);
}

.capability-card:hover::before {
  opacity: 1;
}

.capability-card--feature {
  grid-column: span 8;
  display: grid;
  grid-template-columns: auto 1fr;
  min-height: 430px;
  gap: 45px;
  align-content: center;
  padding: 48px;
  background:
    linear-gradient(110deg, rgba(138, 59, 255, 0.11), transparent 58%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.065), rgba(255, 255, 255, 0.018)),
    rgba(15, 14, 23, 0.9);
}

.capability-card__number {
  position: absolute;
  top: 24px;
  right: 26px;
  color: rgba(255, 255, 255, 0.24);
  font-family: var(--display);
  font-size: 9px;
  letter-spacing: 0.17em;
}

.capability-card__icon {
  position: relative;
  z-index: 1;
  display: grid;
  width: 68px;
  height: 68px;
  margin-bottom: 60px;
  place-items: center;
  border: 1px solid rgba(201, 168, 255, 0.25);
  border-radius: 18px;
  background: rgba(138, 59, 255, 0.1);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 0 30px rgba(138, 59, 255, 0.08);
}

.capability-card--feature .capability-card__icon {
  width: 100px;
  height: 100px;
  margin: 0;
  border-radius: 25px;
}

.capability-card__icon svg {
  width: 32px;
  fill: none;
  stroke: var(--purple-light);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.35;
  filter: drop-shadow(0 0 8px rgba(138, 59, 255, 0.65));
}

.capability-card--feature .capability-card__icon svg {
  width: 50px;
}

.capability-card h3 {
  position: relative;
  z-index: 1;
  margin: 0 0 17px;
  font-family: var(--display);
  font-size: 21px;
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: -0.02em;
}

.capability-card--feature h3 {
  font-size: clamp(25px, 2.7vw, 38px);
}

.capability-card p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.85;
}

.capability-card ul {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 25px 0 0;
  padding: 0;
  list-style: none;
}

.capability-card li,
.capability-card__tag {
  display: inline-flex;
  align-items: center;
  min-height: 29px;
  padding: 0 11px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.62);
  font-family: var(--display);
  font-size: 7px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.capability-card__tag {
  position: absolute;
  z-index: 1;
  bottom: 27px;
  left: 28px;
}

.capability-card__line {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 50%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--purple-light));
  box-shadow: 0 0 18px var(--purple);
}

.capability-card--visual {
  grid-column: span 4;
  padding: 0;
}

.capability-card__visual {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.capability-card__visual > img:first-child {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.6) saturate(1.15);
  transition: transform 900ms var(--ease-out);
}

.capability-card--visual:hover .capability-card__visual > img:first-child {
  transform: scale(1.08);
}

.capability-card__mask {
  position: absolute;
  top: 8%;
  right: 4%;
  width: 62%;
  opacity: 0.8;
  filter: drop-shadow(0 0 25px rgba(138, 59, 255, 0.55));
}

.capability-card__visual::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(0deg, rgba(10, 10, 15, 0.96), transparent 65%);
}

.capability-card__visual-copy {
  position: absolute;
  z-index: 2;
  right: 26px;
  bottom: 27px;
  left: 26px;
  font-family: var(--display);
  line-height: 0.9;
}

.capability-card__visual-copy span {
  display: block;
  color: var(--purple-light);
  font-size: 10px;
  letter-spacing: 0.35em;
}

.capability-card__visual-copy strong {
  display: block;
  margin-top: 11px;
  font-size: 36px;
  letter-spacing: 0.02em;
}

.system {
  z-index: 1;
  background:
    radial-gradient(circle at 50% 25%, rgba(138, 59, 255, 0.12), transparent 36rem),
    var(--black);
}

.system-console {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-lg);
  background: rgba(13, 12, 19, 0.83);
  box-shadow: 0 50px 120px rgba(0, 0, 0, 0.5), 0 0 80px rgba(138, 59, 255, 0.08);
  backdrop-filter: blur(22px);
}

.system-console__chrome {
  display: flex;
  height: 62px;
  align-items: center;
  justify-content: space-between;
  padding: 0 25px;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.025);
}

.system-console__status {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-family: var(--display);
  font-size: 8px;
  letter-spacing: 0.14em;
}

.system-console__status i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #9effc8;
  box-shadow: 0 0 12px rgba(115, 255, 177, 0.8);
}

.system-console__dots {
  display: flex;
  gap: 8px;
}

.system-console__dots span {
  width: 7px;
  height: 7px;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
}

.system-console__body {
  display: grid;
  grid-template-columns: 220px 1fr;
  min-height: 610px;
}

.system-console__nav {
  display: flex;
  flex-direction: column;
  padding: 38px 22px;
  border-right: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.015);
}

.system-console__nav button {
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px 18px;
  cursor: pointer;
  border-radius: 12px;
  color: var(--muted-2);
  background: transparent;
  font-family: var(--display);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.11em;
  text-align: left;
  text-transform: uppercase;
  transition: color 220ms ease, background 220ms ease;
}

.system-console__nav button::after {
  position: absolute;
  right: 0;
  width: 2px;
  height: 0;
  content: "";
  background: var(--purple-light);
  box-shadow: 0 0 12px var(--purple);
  transition: height 280ms var(--ease-out);
}

.system-console__nav button span {
  color: rgba(201, 168, 255, 0.5);
  font-size: 7px;
}

.system-console__nav button:hover,
.system-console__nav button.is-active {
  color: var(--white);
  background: linear-gradient(90deg, rgba(138, 59, 255, 0.12), transparent);
}

.system-console__nav button.is-active::after {
  height: 60%;
}

.system-console__screen {
  position: relative;
  min-width: 0;
}

.system-panel {
  position: absolute;
  inset: 0;
  display: grid;
  visibility: hidden;
  grid-template-columns: minmax(0, 0.92fr) minmax(340px, 1.08fr);
  align-items: center;
  gap: 48px;
  padding: 64px 58px;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 380ms ease, transform 480ms var(--ease-out), visibility 380ms ease;
}

.system-panel.is-active {
  position: relative;
  visibility: visible;
  min-height: 610px;
  opacity: 1;
  transform: translateY(0);
}

.system-panel__eyebrow {
  color: var(--purple-light);
  font-family: var(--display);
  font-size: 8px;
  letter-spacing: 0.18em;
}

.system-panel h3 {
  margin: 22px 0 22px;
  font-family: var(--display);
  font-size: clamp(30px, 3.25vw, 48px);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.035em;
}

.system-panel p {
  max-width: 500px;
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.9;
}

.system-panel__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 28px;
}

.system-panel__chips span {
  padding: 8px 11px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.58);
  font-family: var(--display);
  font-size: 7px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.system-visual {
  position: relative;
  display: grid;
  width: 100%;
  aspect-ratio: 1.15;
  overflow: hidden;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 28px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    radial-gradient(circle at center, rgba(138, 59, 255, 0.14), transparent 65%),
    #0c0b12;
  background-size: 32px 32px, 32px 32px, auto, auto;
  box-shadow: inset 0 0 80px rgba(0, 0, 0, 0.5);
}

.system-visual::after {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(201, 168, 255, 0.04), inset 0 0 70px rgba(138, 59, 255, 0.06);
}

.radar {
  position: relative;
  width: 62%;
  aspect-ratio: 1;
  border: 1px solid rgba(201, 168, 255, 0.35);
  border-radius: 50%;
  background:
    radial-gradient(circle, transparent 28%, rgba(201, 168, 255, 0.12) 28.5%, transparent 29%, transparent 54%, rgba(201, 168, 255, 0.12) 54.5%, transparent 55%),
    linear-gradient(90deg, transparent 49.8%, rgba(201, 168, 255, 0.13) 50%, transparent 50.2%),
    linear-gradient(transparent 49.8%, rgba(201, 168, 255, 0.13) 50%, transparent 50.2%);
}

.radar i {
  position: absolute;
  inset: 50% 0 0 50%;
  transform-origin: top left;
  background: conic-gradient(from 270deg, transparent 0deg, rgba(138, 59, 255, 0.42) 26deg, transparent 62deg);
  animation: radar-sweep 4s linear infinite;
}

.radar b {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 8px;
  height: 8px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: var(--purple-light);
  box-shadow: 0 0 18px var(--purple);
}

.radar span {
  position: absolute;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--white);
  box-shadow: 0 0 12px var(--purple-light), 0 0 28px var(--purple);
}

.radar span:nth-of-type(1) { top: 22%; left: 62%; }
.radar span:nth-of-type(2) { top: 60%; left: 25%; }
.radar span:nth-of-type(3) { top: 72%; left: 72%; }

@keyframes radar-sweep {
  to { transform: rotate(360deg); }
}

.radar-label {
  position: absolute;
  padding: 5px 7px;
  border: 1px solid var(--line);
  border-radius: 5px;
  color: var(--muted);
  background: rgba(10, 10, 15, 0.75);
  font-family: var(--display);
  font-size: 6px;
  letter-spacing: 0.12em;
}

.radar-label--one { top: 18%; right: 7%; }
.radar-label--two { bottom: 18%; left: 7%; }
.radar-label--three { right: 8%; bottom: 15%; }

.system-visual--nodes svg {
  width: 82%;
}

.system-visual--nodes path {
  fill: none;
  stroke: rgba(201, 168, 255, 0.42);
  stroke-width: 1.5;
  stroke-dasharray: 8 7;
  animation: dash-move 12s linear infinite;
}

.system-visual--nodes circle {
  fill: #17131f;
  stroke: var(--purple-light);
  stroke-width: 2;
  filter: drop-shadow(0 0 8px rgba(138, 59, 255, 0.7));
}

@keyframes dash-move {
  to { stroke-dashoffset: -150; }
}

.builder-window {
  position: relative;
  width: 78%;
  height: 66%;
  padding: 45px 28px 25px;
  border: 1px solid rgba(201, 168, 255, 0.24);
  border-radius: 20px;
  background: rgba(16, 15, 24, 0.92);
  box-shadow: 0 25px 55px rgba(0, 0, 0, 0.35);
}

.builder-window > div {
  position: absolute;
  top: 18px;
  left: 22px;
  display: flex;
  gap: 7px;
}

.builder-window > div span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
}

.builder-window b,
.builder-window i,
.builder-window em {
  display: block;
  border-radius: 7px;
}

.builder-window b {
  width: 48%;
  height: 23px;
  background: linear-gradient(90deg, var(--purple), rgba(201, 168, 255, 0.45));
  box-shadow: 0 0 20px rgba(138, 59, 255, 0.22);
}

.builder-window i {
  width: 100%;
  height: 11px;
  margin-top: 18px;
  background: rgba(255, 255, 255, 0.085);
}

.builder-window i:nth-of-type(2) {
  width: 78%;
}

.builder-window em {
  position: absolute;
  right: 28px;
  bottom: 25px;
  left: 28px;
  height: 34%;
  border: 1px solid rgba(201, 168, 255, 0.16);
  background:
    radial-gradient(circle at 74% 33%, rgba(138, 59, 255, 0.42), transparent 24%),
    linear-gradient(135deg, rgba(138, 59, 255, 0.2), rgba(255, 255, 255, 0.035));
}

.system-visual--growth {
  align-items: end;
  padding: 11% 9%;
}

.growth-chart {
  display: flex;
  width: 100%;
  height: 75%;
  align-items: end;
  justify-content: space-around;
  gap: 7%;
}

.growth-chart span {
  width: 8%;
  height: var(--h);
  border-radius: 6px 6px 2px 2px;
  background: linear-gradient(180deg, var(--purple-light), var(--purple-deep));
  box-shadow: 0 0 20px rgba(138, 59, 255, 0.22);
  transform-origin: bottom;
  animation: bar-rise 1.2s var(--ease-out) both;
}

.growth-chart span:nth-child(2) { animation-delay: 90ms; }
.growth-chart span:nth-child(3) { animation-delay: 180ms; }
.growth-chart span:nth-child(4) { animation-delay: 270ms; }
.growth-chart span:nth-child(5) { animation-delay: 360ms; }
.growth-chart span:nth-child(6) { animation-delay: 450ms; }

@keyframes bar-rise {
  from { transform: scaleY(0); }
}

.system-visual--growth svg {
  position: absolute;
  right: 8%;
  bottom: 13%;
  left: 8%;
  width: 84%;
  overflow: visible;
}

.system-visual--growth path {
  fill: none;
  stroke: var(--white);
  stroke-width: 2;
  filter: drop-shadow(0 0 8px rgba(201, 168, 255, 0.9));
}

.showcase {
  z-index: 1;
  overflow: hidden;
  background: #0d0c13;
}

.showcase__backdrop {
  position: absolute;
  top: -10%;
  left: -10%;
  width: 620px;
  height: 620px;
  border-radius: 50%;
  background: rgba(138, 59, 255, 0.1);
  filter: blur(150px);
}

.showcase-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-auto-rows: 335px;
  gap: 18px;
}

.showcase-card {
  position: relative;
  grid-column: span 4;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--graphite);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.3);
  transform-style: preserve-3d;
}

.showcase-card--wide {
  grid-column: span 8;
}

.showcase-card--feature {
  grid-column: span 8;
}

.showcase-card > img:not(.showcase-card__logo),
.showcase-card__liquid,
.showcase-card__liquid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.showcase-card > img:not(.showcase-card__logo),
.showcase-card__liquid img {
  transition: transform 900ms var(--ease-out), filter 500ms ease;
}

.showcase-card:hover > img:not(.showcase-card__logo),
.showcase-card:hover .showcase-card__liquid img {
  transform: scale(1.07);
  filter: brightness(1.08);
}

.showcase-card::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(0deg, rgba(7, 7, 11, 0.96) 0%, rgba(7, 7, 11, 0.12) 58%, transparent 100%);
}

.showcase-card figcaption {
  position: absolute;
  z-index: 3;
  right: 25px;
  bottom: 24px;
  left: 25px;
}

.showcase-card figcaption span {
  display: block;
  margin-bottom: 7px;
  color: var(--purple-light);
  font-family: var(--display);
  font-size: 7px;
  letter-spacing: 0.16em;
}

.showcase-card figcaption strong {
  font-family: var(--display);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.35;
}

.showcase-card__liquid img {
  filter: saturate(1.12) brightness(0.68);
}

.showcase-card__logo {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  width: 58%;
  transform: translate(-50%, -58%);
  filter: drop-shadow(0 18px 45px rgba(0, 0, 0, 0.55));
}

.process {
  z-index: 1;
  background:
    radial-gradient(circle at 70% 20%, rgba(138, 59, 255, 0.09), transparent 28rem),
    var(--black);
}

.process-list {
  border-top: 1px solid var(--line);
}

.process-step {
  position: relative;
  display: grid;
  grid-template-columns: 90px minmax(0, 1fr) 180px 60px;
  align-items: center;
  min-height: 142px;
  padding: 20px 10px 20px 0;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  transition: padding 350ms var(--ease-out), background 350ms ease;
}

.process-step::before {
  position: absolute;
  inset: 0;
  content: "";
  transform: translateX(-101%);
  background: linear-gradient(90deg, rgba(138, 59, 255, 0.14), transparent 75%);
  transition: transform 520ms var(--ease-out);
}

.process-step:hover {
  padding-left: 24px;
}

.process-step:hover::before {
  transform: translateX(0);
}

.process-step > * {
  position: relative;
  z-index: 1;
}

.process-step__number {
  color: var(--purple-light);
  font-family: var(--display);
  font-size: 9px;
  letter-spacing: 0.16em;
}

.process-step h3 {
  margin: 0 0 5px;
  font-family: var(--display);
  font-size: clamp(25px, 3vw, 38px);
  font-weight: 600;
  letter-spacing: -0.02em;
}

.process-step p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.process-step__meta {
  color: var(--muted-2);
  font-family: var(--display);
  font-size: 8px;
  letter-spacing: 0.18em;
}

.process-step__arrow {
  justify-self: end;
  color: rgba(255, 255, 255, 0.3);
  font-family: var(--display);
  font-size: 25px;
  transition: color 250ms ease, transform 250ms var(--ease);
}

.process-step:hover .process-step__arrow {
  color: var(--purple-light);
  transform: rotate(-45deg);
}

.statement {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 620px;
  overflow: hidden;
  align-items: center;
  isolation: isolate;
}

.statement__image,
.statement__overlay {
  position: absolute;
  z-index: -2;
  inset: 0;
}

.statement__image {
  background-image: url("../assets/images/liquid-panel.webp");
  background-position: center;
  background-size: cover;
  filter: brightness(0.72) saturate(1.12);
  transform: scale(1.04);
}

.statement__overlay {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(10, 10, 15, 0.83), rgba(10, 10, 15, 0.2) 60%, rgba(10, 10, 15, 0.48)),
    linear-gradient(0deg, rgba(10, 10, 15, 0.68), transparent 55%);
}

.statement__inner {
  display: grid;
  grid-template-columns: 170px 1fr auto;
  align-items: center;
  gap: 56px;
}

.statement__mark {
  position: relative;
  width: 160px;
}

.statement__mark::before {
  position: absolute;
  inset: -24px;
  content: "";
  border: 1px solid rgba(201, 168, 255, 0.24);
  border-radius: 34%;
  box-shadow: 0 0 50px rgba(138, 59, 255, 0.18);
}

.statement__mark img {
  position: relative;
  border-radius: 28%;
  box-shadow: 0 28px 65px rgba(0, 0, 0, 0.42);
}

.statement__copy .section-kicker {
  color: rgba(255, 255, 255, 0.72);
}

.statement__copy h2 {
  max-width: 760px;
  margin: 20px 0 0;
  font-family: var(--display);
  font-size: clamp(40px, 5.2vw, 76px);
  font-weight: 600;
  line-height: 1.06;
  letter-spacing: -0.045em;
}

.contact {
  z-index: 1;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 10%, rgba(138, 59, 255, 0.14), transparent 30rem),
    var(--black);
}

.contact::after {
  position: absolute;
  right: -10%;
  bottom: -30%;
  width: 580px;
  height: 580px;
  content: "";
  border-radius: 50%;
  background: rgba(138, 59, 255, 0.08);
  filter: blur(150px);
}

.contact__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.83fr) minmax(520px, 1.17fr);
  gap: clamp(65px, 9vw, 135px);
  align-items: start;
}

.contact__intro {
  position: sticky;
  top: 140px;
}

.contact__intro > p {
  max-width: 520px;
  margin: 27px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.9;
}

.contact__direct {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  margin-top: 42px;
}

.contact__direct > span:first-child {
  color: var(--muted-2);
  font-family: var(--display);
  font-size: 7px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.contact__direct a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid rgba(201, 168, 255, 0.38);
  font-size: 14px;
}

.contact__direct a strong {
  color: var(--purple-light);
}

.contact__direct [data-contact-placeholder] {
  color: rgba(255, 255, 255, 0.48);
  font-size: 13px;
  line-height: 1.6;
}

.project-form {
  padding: 38px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.015)),
    rgba(14, 13, 21, 0.82);
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.36);
  backdrop-filter: blur(18px);
}

.project-form label,
.project-form fieldset {
  display: block;
  margin: 0 0 25px;
}

.project-form label > span,
.project-form legend {
  display: block;
  margin-bottom: 9px;
  color: rgba(255, 255, 255, 0.67);
  font-family: var(--display);
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.project-form input,
.project-form textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 0;
  outline: none;
  color: var(--white);
  background: transparent;
  transition: border-color 240ms ease, box-shadow 240ms ease;
}

.project-form input {
  height: 49px;
}

.project-form textarea {
  min-height: 135px;
  padding: 13px 0;
  resize: vertical;
}

.project-form input::placeholder,
.project-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.28);
}

.project-form input:focus,
.project-form textarea:focus {
  border-color: var(--purple-light);
  box-shadow: 0 1px 0 var(--purple-light);
}

.project-form input.is-invalid,
.project-form textarea.is-invalid {
  border-color: #ff8fa3;
  box-shadow: 0 1px 0 #ff8fa3;
}

.project-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.project-form fieldset {
  padding: 0;
  border: 0;
}

.project-form__options {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.project-form__options label {
  position: relative;
  margin: 0;
  cursor: pointer;
}

.project-form__options input {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
}

.project-form__options label span {
  display: inline-flex;
  min-height: 40px;
  margin: 0;
  align-items: center;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.025);
  font-family: var(--display);
  font-size: 7px;
  letter-spacing: 0.1em;
  transition: color 220ms ease, border-color 220ms ease, background 220ms ease, box-shadow 220ms ease;
}

.project-form__options input:focus-visible + span {
  outline: 2px solid var(--purple-light);
  outline-offset: 3px;
}

.project-form__options input:checked + span {
  color: var(--white);
  border-color: rgba(201, 168, 255, 0.55);
  background: rgba(138, 59, 255, 0.16);
  box-shadow: 0 0 22px rgba(138, 59, 255, 0.1);
}

.project-form__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 8px;
}

.project-form__footer p {
  max-width: 205px;
  margin: 0;
  color: var(--muted-2);
  font-size: 10px;
  line-height: 1.6;
}

.form-status {
  min-height: 0;
  margin-top: 0;
  overflow: hidden;
  color: var(--purple-light);
  font-size: 12px;
  line-height: 1.7;
  transition: min-height 250ms ease, margin 250ms ease;
}

.form-status:not(:empty) {
  min-height: 44px;
  margin-top: 18px;
  padding: 11px 13px;
  border: 1px solid rgba(201, 168, 255, 0.25);
  border-radius: 9px;
  background: rgba(138, 59, 255, 0.08);
}

.site-footer {
  position: relative;
  z-index: 1;
  padding: 65px 0 28px;
  border-top: 1px solid var(--line);
  background: #08080c;
}

.site-footer__top {
  display: grid;
  grid-template-columns: 230px 1fr auto;
  align-items: center;
  gap: 34px;
  padding-bottom: 52px;
}

.site-footer__brand img {
  width: 220px;
}

.site-footer__line {
  display: flex;
  align-items: center;
}

.site-footer__line span {
  display: block;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.16), rgba(138, 59, 255, 0.4));
}

.site-footer__line i {
  width: 6px;
  height: 6px;
  transform: rotate(45deg);
  border: 1px solid var(--purple-light);
  box-shadow: 0 0 10px var(--purple);
}

.site-footer__top p {
  margin: 0;
  color: var(--muted);
  font-family: var(--display);
  font-size: 9px;
  line-height: 1.85;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.site-footer__bottom {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 30px;
  padding-top: 27px;
  border-top: 1px solid var(--line);
  color: var(--muted-2);
  font-size: 10px;
}

.site-footer__bottom nav {
  display: flex;
  justify-content: center;
  gap: 24px;
}

.site-footer__bottom nav a,
.back-to-top {
  font-family: var(--display);
  font-size: 7px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: color 220ms ease;
}

.site-footer__bottom nav a:hover,
.back-to-top:hover {
  color: var(--white);
}

.back-to-top {
  justify-self: end;
}

.back-to-top span {
  margin-left: 7px;
  color: var(--purple-light);
}

.reveal-up,
.reveal-scale {
  opacity: 0;
  will-change: transform, opacity;
}

.reveal-up {
  transform: translateY(30px);
}

.reveal-scale {
  transform: scale(0.94);
}

.reveal-up.is-visible,
.reveal-scale.is-visible {
  opacity: 1;
  transform: none;
  transition: opacity 850ms var(--ease-out), transform 900ms var(--ease-out);
  transition-delay: var(--delay, 0ms);
}

.tilt-card {
  transform: perspective(1000px) rotateX(var(--rx, 0deg)) rotateY(var(--ry, 0deg)) translateZ(0);
  transition: transform 220ms ease-out;
}

.noscript-banner {
  position: fixed;
  z-index: 20000;
  right: 12px;
  bottom: 12px;
  left: 12px;
  padding: 12px 16px;
  border: 1px solid rgba(201, 168, 255, 0.4);
  border-radius: 10px;
  background: #15121d;
  font-size: 12px;
  text-align: center;
}

[hidden] {
  display: none !important;
}

@media (max-width: 1280px) {
  :root {
    --shell: min(1160px, calc(100vw - 48px));
  }

  .site-header__inner {
    grid-template-columns: 220px 1fr 220px;
  }

  .hero__sidecopy {
    display: none;
  }

  .hero__layout {
    grid-template-columns: minmax(0, 1.1fr) minmax(360px, 0.9fr);
    gap: 35px;
  }

  .system-panel {
    padding: 54px 42px;
    gap: 34px;
  }
}

@media (max-width: 1080px) {
  :root {
    --header-height: 82px;
  }

  .site-header__inner {
    grid-template-columns: 1fr auto;
  }

  .brand-link {
    width: 190px;
  }

  .desktop-nav,
  .desktop-cta {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .hero {
    display: block;
    min-height: auto;
    padding-top: 150px;
  }

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

  .hero__content {
    max-width: 850px;
  }

  .hero__title {
    max-width: 850px;
  }

  .hero__art {
    width: min(72vw, 570px);
    margin-top: 8px;
    justify-self: center;
  }

  .hero__footer {
    position: relative;
    bottom: auto;
    margin-top: 45px;
  }

  .manifesto__grid {
    grid-template-columns: 1fr 3fr;
  }

  .manifesto__body {
    grid-column: 2;
    max-width: 680px;
  }

  .capability-card {
    grid-column: span 6;
  }

  .capability-card--feature,
  .capability-card--visual {
    grid-column: span 6;
  }

  .capability-card--feature {
    display: block;
    padding: 34px;
  }

  .capability-card--feature .capability-card__icon {
    width: 72px;
    height: 72px;
    margin-bottom: 54px;
    border-radius: 19px;
  }

  .capability-card--feature .capability-card__icon svg {
    width: 35px;
  }

  .system-console__body {
    grid-template-columns: 180px 1fr;
  }

  .system-panel {
    grid-template-columns: 1fr;
    padding: 45px;
  }

  .system-panel.is-active {
    min-height: 900px;
  }

  .system-visual {
    width: min(100%, 580px);
    justify-self: center;
  }

  .showcase-grid {
    grid-auto-rows: 315px;
  }

  .statement__inner {
    grid-template-columns: 140px 1fr;
  }

  .statement__mark {
    width: 135px;
  }

  .statement .button {
    grid-column: 2;
    justify-self: start;
  }

  .contact__grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .contact__intro {
    position: static;
  }

  .project-form {
    max-width: 820px;
  }
}

@media (max-width: 760px) {
  :root {
    --shell: calc(100vw - 36px);
    --radius: 18px;
    --radius-lg: 24px;
  }

  .section {
    padding: 100px 0;
  }

  .site-header__inner {
    min-height: 75px;
  }

  .brand-link {
    width: 168px;
  }

  .menu-toggle {
    width: 44px;
    height: 44px;
  }

  .hero {
    padding: 125px 0 52px;
  }

  .hero__veil {
    background:
      linear-gradient(180deg, rgba(7, 7, 11, 0.75) 0%, rgba(7, 7, 11, 0.83) 48%, rgba(7, 7, 11, 0.97) 100%),
      linear-gradient(90deg, rgba(7, 7, 11, 0.65), transparent);
  }

  .hero__image {
    background-position: 64% center;
  }

  .eyebrow {
    max-width: 310px;
    line-height: 1.6;
  }

  .hero__title {
    margin-top: 22px;
    font-size: clamp(42px, 12vw, 62px);
    line-height: 1.04;
  }

  .hero__lede {
    font-size: 15px;
    line-height: 1.75;
  }

  .hero__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero__actions .button {
    width: 100%;
  }

  .hero__signal {
    flex-wrap: wrap;
    gap: 11px;
    margin-top: 35px;
  }

  .hero__signal::before {
    width: 30px;
  }

  .hero__art {
    width: min(94vw, 500px);
    margin-top: 18px;
  }

  .hero__icon-stage {
    width: 49%;
    border-radius: 28%;
  }

  .hero__data {
    display: none;
  }

  .hero__footer {
    justify-content: center;
  }

  .hero__footer p {
    display: none;
  }

  .marquee__track span {
    padding: 0 20px;
  }

  .display-heading {
    font-size: clamp(36px, 10.2vw, 54px);
  }

  .manifesto__grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .manifesto__statement .display-heading {
    font-size: clamp(35px, 9.7vw, 52px);
  }

  .manifesto__body {
    grid-column: auto;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 28px;
    margin-bottom: 48px;
  }

  .section-heading__copy {
    max-width: 100%;
  }

  .section-heading--center {
    margin-bottom: 50px;
  }

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

  .capability-card,
  .capability-card--feature,
  .capability-card--visual {
    grid-column: auto;
    min-height: 340px;
  }

  .capability-card--feature {
    min-height: 420px;
  }

  .system-console {
    border-radius: 20px;
  }

  .system-console__chrome {
    height: 54px;
    padding: 0 16px;
  }

  .system-console__body {
    display: block;
  }

  .system-console__nav {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    padding: 10px;
    overflow-x: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .system-console__nav button {
    justify-content: center;
    gap: 7px;
    padding: 14px 6px;
    font-size: 7px;
    text-align: center;
  }

  .system-console__nav button::after {
    right: auto;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    transform: translateX(-50%);
    transition: width 250ms ease;
  }

  .system-console__nav button.is-active::after {
    width: 55%;
    height: 2px;
  }

  .system-console__nav button span {
    display: none;
  }

  .system-panel {
    padding: 35px 20px 22px;
  }

  .system-panel.is-active {
    min-height: 720px;
  }

  .system-panel h3 {
    font-size: clamp(29px, 8.5vw, 42px);
  }

  .system-visual {
    border-radius: 20px;
  }

  .showcase-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 330px;
  }

  .showcase-card,
  .showcase-card--wide,
  .showcase-card--feature {
    grid-column: auto;
  }

  .showcase-card--wide,
  .showcase-card--feature {
    min-height: 380px;
  }

  .process-step {
    grid-template-columns: 45px 1fr 35px;
    min-height: 125px;
    padding-right: 0;
  }

  .process-step__meta {
    display: none;
  }

  .process-step p {
    max-width: 260px;
    font-size: 12px;
  }

  .process-step__arrow {
    font-size: 18px;
  }

  .statement {
    min-height: 680px;
  }

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

  .statement__mark {
    width: 105px;
  }

  .statement__copy h2 {
    font-size: clamp(40px, 11.5vw, 59px);
  }

  .statement .button {
    grid-column: auto;
    justify-self: stretch;
  }

  .contact__grid {
    gap: 48px;
  }

  .project-form {
    padding: 25px 20px;
  }

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

  .project-form__footer {
    flex-direction: column;
    align-items: stretch;
  }

  .project-form__footer .button {
    width: 100%;
  }

  .project-form__footer p {
    max-width: 100%;
  }

  .site-footer__top {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .site-footer__line {
    display: none;
  }

  .site-footer__bottom {
    grid-template-columns: 1fr;
    gap: 23px;
  }

  .site-footer__bottom nav {
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  .back-to-top {
    justify-self: start;
  }
}

@media (max-width: 390px) {
  .hero__title {
    font-size: 39px;
  }

  .system-console__nav button {
    font-size: 6px;
  }

  .project-form__options label span {
    padding: 0 11px;
    font-size: 6px;
  }
}

@media (hover: none), (pointer: coarse) {
  .cursor-dot,
  .cursor-ring {
    display: none;
  }

  .tilt-card {
    transform: none !important;
  }
}

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

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

  .reveal-up,
  .reveal-scale {
    opacity: 1;
    transform: none;
  }

  .signal-field,
  .cursor-dot,
  .cursor-ring {
    display: none;
  }
}

@media print {
  .preloader,
  .site-header,
  .mobile-menu,
  .noise,
  .signal-field,
  .cursor-dot,
  .cursor-ring,
  .scroll-progress,
  .hero__art,
  .marquee-band,
  .project-form {
    display: none !important;
  }

  body {
    color: #111;
    background: #fff;
  }

  .section,
  .hero {
    min-height: auto;
    padding: 40px 0;
  }
}

/* Progressive enhancement and form spam trap */
.no-js .preloader {
  display: none;
}

.form-honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}
