:root {
  --bg: #04050a;
  --bg-soft: #080a12;
  --panel: rgba(11, 13, 23, 0.72);
  --panel-solid: #0c0f19;
  --white: #f7f8ff;
  --text: #e9ecf7;
  --muted: #a0a8bb;
  --dim: #6e778e;
  --line: rgba(255, 255, 255, 0.1);
  --line-strong: rgba(255, 255, 255, 0.2);
  --pink: #ff38c7;
  --violet: #995cff;
  --blue: #407cff;
  --cyan: #35dbff;
  --gradient: linear-gradient(115deg, var(--pink), var(--violet) 46%, var(--cyan));
  --gradient-soft: linear-gradient(115deg, rgba(255, 56, 199, 0.18), rgba(64, 124, 255, 0.12));
  --font-display: "Oxanium", "Arial Narrow", sans-serif;
  --font-body: "Space Grotesk", Inter, system-ui, sans-serif;
  --shell: min(1240px, calc(100% - 48px));
  --radius-lg: 30px;
  --radius-md: 20px;
  --ease: cubic-bezier(0.2, 0.72, 0.18, 1);
  --scroll-y: 0px;
  --scroll-progress: 0;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 94px;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--text);
  background: var(--bg);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

body > main,
.site-footer {
  position: relative;
  z-index: 1;
}

::selection {
  color: #fff;
  background: rgba(213, 50, 255, 0.58);
}

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

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

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

button {
  cursor: pointer;
}

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

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

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  color: #070910;
  background: #fff;
  border-radius: 8px;
  font-weight: 700;
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

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

.site-background {
  position: fixed;
  z-index: 0;
  inset: 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% -10%, rgba(87, 73, 255, 0.12), transparent 33rem),
    var(--bg);
  pointer-events: none;
}

#ambientCanvas,
.space-grid,
.scan-beam {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

#ambientCanvas {
  opacity: 0.72;
}

.space-grid {
  opacity: 0.16;
  background-image:
    linear-gradient(rgba(111, 142, 255, 0.14) 1px, transparent 1px),
    linear-gradient(90deg, rgba(111, 142, 255, 0.14) 1px, transparent 1px);
  background-position: center calc(var(--scroll-y) * -0.045);
  background-size: 76px 76px;
  mask-image: radial-gradient(ellipse at center, #000 0%, transparent 78%);
  transform: perspective(700px) rotateX(64deg) scale(1.8) translateY(24%);
  transform-origin: center bottom;
}

.aurora {
  position: absolute;
  width: 42vw;
  height: 42vw;
  border-radius: 50%;
  filter: blur(88px);
  opacity: 0.15;
  mix-blend-mode: screen;
  animation: auroraDrift 18s ease-in-out infinite alternate;
}

.aurora--one {
  top: 5%;
  left: -22%;
  background: var(--pink);
}

.aurora--two {
  right: -22%;
  bottom: 12%;
  background: var(--blue);
  animation-delay: -7s;
}

.aurora--three {
  top: 48%;
  left: 34%;
  width: 28vw;
  height: 28vw;
  background: var(--violet);
  opacity: 0.085;
  animation-delay: -12s;
}

.scan-beam {
  width: 32vw;
  left: -40vw;
  background: linear-gradient(90deg, transparent, rgba(84, 208, 255, 0.075), transparent);
  transform: skewX(-18deg);
  animation: scanPage 15s linear infinite;
}

.ambient-logo {
  position: absolute;
  width: min(42vw, 560px);
  opacity: 0.075;
  mix-blend-mode: screen;
  filter: saturate(1.15) drop-shadow(0 0 34px rgba(82, 112, 255, 0.38));
  will-change: transform, opacity;
}

.ambient-logo img {
  width: 100%;
  height: auto;
}

.ambient-logo--one {
  top: 18%;
  right: -10%;
  animation: ambientLogoDriftOne 20s ease-in-out infinite alternate;
}

.ambient-logo--two {
  bottom: 5%;
  left: -14%;
  opacity: 0.045;
  transform: rotate(-12deg) scale(0.78);
  animation: ambientLogoDriftTwo 26s ease-in-out infinite alternate;
}

.signal-rings {
  position: absolute;
  top: 52%;
  left: 50%;
  width: min(74vw, 980px);
  aspect-ratio: 1;
  transform: translate(-50%, -50%);
}

.signal-rings i {
  position: absolute;
  inset: 20%;
  border: 1px solid rgba(106, 135, 255, 0.11);
  border-radius: 50%;
  box-shadow: inset 0 0 36px rgba(125, 82, 255, 0.035), 0 0 26px rgba(59, 134, 255, 0.035);
  animation: backgroundRingPulse 11s ease-in-out infinite;
}

.signal-rings i:nth-child(2) {
  inset: 8%;
  animation-delay: -3.6s;
}

.signal-rings i:nth-child(3) {
  inset: -4%;
  animation-delay: -7.2s;
}

.cursor-light {
  position: absolute;
  width: 520px;
  height: 520px;
  margin: -260px 0 0 -260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(102, 85, 255, 0.11), transparent 62%);
  opacity: 0;
  transform: translate3d(-500px, -500px, 0);
  transition: opacity 500ms ease;
  will-change: transform;
}

body.has-pointer .cursor-light {
  opacity: 1;
}

.scroll-progress {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  pointer-events: none;
}

.scroll-progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--gradient);
  box-shadow: 0 0 16px rgba(74, 177, 255, 0.9);
  transform: scaleX(0);
  transform-origin: left;
  will-change: transform;
}

.site-header {
  position: fixed;
  z-index: 90;
  top: 0;
  right: 0;
  left: 0;
  border-bottom: 1px solid transparent;
  transition: background 260ms ease, border-color 260ms ease, backdrop-filter 260ms ease;
}

.site-header.is-scrolled {
  border-color: var(--line);
  background: rgba(4, 5, 10, 0.74);
  backdrop-filter: blur(22px) saturate(130%);
}

.header-inner {
  display: flex;
  min-height: 82px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

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

.brand-mark {
  display: grid;
  width: 48px;
  height: 42px;
  place-items: center;
}

.brand-mark img,
.footer-brand img {
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 0 8px rgba(255, 46, 204, 0.48)) drop-shadow(0 0 12px rgba(46, 139, 255, 0.32));
}

.brand-copy,
.footer-brand > span {
  display: grid;
  line-height: 1.1;
}

.brand-copy strong,
.footer-brand strong {
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.brand-copy small,
.footer-brand small {
  margin-top: 4px;
  color: var(--dim);
  font-family: var(--font-display);
  font-size: 0.58rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.header-tools {
  position: relative;
  z-index: 2;
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 9px;
  pointer-events: auto;
}

.language-switcher {
  position: relative;
  z-index: 1;
  display: grid;
  width: 70px;
  height: 36px;
  padding: 3px;
  align-items: center;
  border: 1px solid rgba(116, 135, 255, 0.26);
  background: rgba(7, 9, 17, 0.72);
  grid-template-columns: 1fr 1px 1fr;
  clip-path: polygon(7px 0, 100% 0, 100% calc(100% - 7px), calc(100% - 7px) 100%, 0 100%, 0 7px);
  isolation: isolate;
  pointer-events: auto;
  touch-action: manipulation;
}

.language-switcher > span {
  width: 1px;
  height: 14px;
  background: rgba(255, 255, 255, 0.14);
}

.language-switcher :is(a, button) {
  display: grid;
  height: 28px;
  padding: 0;
  place-items: center;
  color: #69748a;
  border: 0;
  background: transparent;
  font-family: var(--font-display);
  font-size: 0.52rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  transition: color 180ms ease, background 180ms ease, box-shadow 180ms ease;
  cursor: pointer;
  pointer-events: auto;
}

.language-switcher :is(a, button):hover,
.language-switcher :is(a, button):focus-visible {
  color: #fff;
}

.language-switcher :is(a, button)[aria-pressed="true"] {
  color: #fff;
  background: linear-gradient(125deg, rgba(255, 48, 198, 0.2), rgba(55, 157, 255, 0.2));
  box-shadow: 0 0 15px rgba(78, 112, 255, 0.14);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.site-nav > :is(a, button) {
  position: relative;
  color: #bec5d5;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 180ms ease;
}

.site-nav > button {
  padding: 0;
  border: 0;
  background: transparent;
}

.site-nav > :is(a, button):not(.nav-cta)::after {
  position: absolute;
  right: 0;
  bottom: -9px;
  left: 0;
  height: 1px;
  content: "";
  background: var(--gradient);
  box-shadow: 0 0 8px rgba(64, 175, 255, 0.7);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 220ms var(--ease);
}

.site-nav > :is(a, button):hover,
.site-nav > :is(a, button):focus-visible,
.site-nav > :is(a, button).is-active {
  color: #fff;
}

.site-nav > :is(a, button):hover::after,
.site-nav > :is(a, button):focus-visible::after,
.site-nav > :is(a, button).is-active::after {
  transform: scaleX(1);
}

.nav-creator-shortcut {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.nav-creator-shortcut i {
  color: var(--cyan);
  font-size: 0.78rem;
  font-style: normal;
  line-height: 1;
}

.nav-cta {
  padding: 11px 17px;
  border: 1px solid rgba(121, 135, 255, 0.38);
  background: linear-gradient(120deg, rgba(255, 43, 194, 0.11), rgba(66, 139, 255, 0.11));
  clip-path: polygon(9px 0, 100% 0, 100% calc(100% - 9px), calc(100% - 9px) 100%, 0 100%, 0 9px);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  place-items: center;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  clip-path: polygon(9px 0, 100% 0, 100% calc(100% - 9px), calc(100% - 9px) 100%, 0 100%, 0 9px);
}

.menu-toggle span {
  grid-area: 1 / 1;
  width: 19px;
  height: 1px;
  background: #fff;
  transition: transform 220ms ease;
}

.menu-toggle span:first-child { transform: translateY(-4px); }
.menu-toggle span:last-child { transform: translateY(4px); }
.menu-toggle[aria-expanded="true"] span:first-child { transform: rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:last-child { transform: rotate(-45deg); }

.hero {
  position: relative;
  display: grid;
  min-height: 900px;
  overflow: hidden;
  isolation: isolate;
  align-items: center;
  border-bottom: 1px solid var(--line);
}

.hero-backdrop,
.hero-vignette {
  position: absolute;
  inset: 0;
}

.hero-backdrop {
  z-index: -4;
  width: 100%;
  height: calc(100% + 80px);
  object-fit: cover;
  object-position: center;
  opacity: 0.42;
  filter: saturate(0.88) contrast(1.12) hue-rotate(-3deg);
  transform: translate3d(0, calc(var(--scroll-y) * 0.05), 0) scale(1.06);
  will-change: auto;
}

.hero-vignette {
  z-index: -3;
  background:
    radial-gradient(circle at 72% 47%, transparent 0, rgba(4, 5, 10, 0.08) 23%, rgba(4, 5, 10, 0.45) 57%),
    linear-gradient(90deg, #04050a 0%, rgba(4, 5, 10, 0.95) 27%, rgba(4, 5, 10, 0.35) 67%, rgba(4, 5, 10, 0.73) 100%),
    linear-gradient(180deg, rgba(4, 5, 10, 0.56), transparent 34%, #04050a 100%);
}

.hero::before {
  position: absolute;
  z-index: -2;
  inset: 0;
  content: "";
  opacity: 0.16;
  background-image:
    linear-gradient(rgba(128, 144, 255, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(128, 144, 255, 0.12) 1px, transparent 1px);
  background-position: 50% calc(var(--scroll-y) * -0.07);
  background-size: 84px 84px;
  mask-image: linear-gradient(90deg, #000, transparent 82%);
}

.hero-layout {
  display: grid;
  padding: 132px 0 112px;
  grid-template-columns: minmax(0, 1fr) minmax(390px, 0.72fr);
  gap: clamp(24px, 5vw, 76px);
  align-items: center;
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 760px;
}

.eyebrow,
.section-kicker {
  display: flex;
  margin: 0 0 20px;
  align-items: center;
  gap: 12px;
  color: #c8cfe0;
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.eyebrow::before,
.section-kicker::before {
  width: 30px;
  height: 1px;
  flex: 0 0 auto;
  content: "";
  background: var(--gradient);
  box-shadow: 0 0 12px rgba(83, 183, 255, 0.82);
}

.hero h1 {
  max-width: 830px;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 6.7vw, 6.9rem);
  font-weight: 650;
  letter-spacing: -0.065em;
  line-height: 0.94;
  text-wrap: balance;
}

.hero h1 span,
.hero h1 strong {
  display: block;
}

.hero h1 strong {
  margin-top: 8px;
  color: transparent;
  background: linear-gradient(105deg, #fff 0%, #ff7ddd 25%, #a175ff 57%, #65dfff 94%);
  -webkit-background-clip: text;
  background-clip: text;
  font-weight: 750;
  filter: drop-shadow(0 0 24px rgba(111, 89, 255, 0.18));
}

.hero-lead {
  max-width: 680px;
  margin: 28px 0 0;
  color: #b5bdce;
  font-size: clamp(1rem, 1.45vw, 1.18rem);
  line-height: 1.8;
}

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

.hero-shortcuts {
  display: flex;
  margin-top: 14px;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-shortcut {
  display: inline-grid;
  min-height: 48px;
  padding: 8px 14px 8px 9px;
  align-items: center;
  border: 1px solid var(--line);
  background: rgba(7, 9, 17, 0.52);
  grid-template-columns: 32px auto 16px;
  gap: 10px;
  color: #cbd3e3;
  clip-path: polygon(9px 0, 100% 0, 100% calc(100% - 9px), calc(100% - 9px) 100%, 0 100%, 0 9px);
  backdrop-filter: blur(12px);
  transition: border-color 200ms ease, color 200ms ease, background 200ms ease, transform 200ms var(--ease);
}

.hero-shortcut:hover,
.hero-shortcut:focus-visible {
  color: #fff;
  border-color: rgba(93, 175, 255, 0.46);
  background: linear-gradient(120deg, rgba(255, 50, 198, 0.1), rgba(60, 142, 255, 0.1));
  transform: translateY(-2px);
}

.hero-shortcut__icon {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  color: var(--cyan);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.035);
}

.hero-shortcut svg,
.link-hub-item svg,
.link-hub-social svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero-shortcut strong {
  font-family: var(--font-display);
  font-size: 0.59rem;
  font-weight: 650;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.hero-shortcut > i {
  color: var(--cyan);
  font-size: 0.85rem;
  font-style: normal;
}

.button {
  position: relative;
  display: inline-flex;
  min-height: 52px;
  padding: 0 22px;
  overflow: hidden;
  isolation: isolate;
  align-items: center;
  justify-content: center;
  gap: 18px;
  border: 1px solid transparent;
  background: transparent;
  font-family: var(--font-display);
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  clip-path: polygon(12px 0, 100% 0, 100% calc(100% - 12px), calc(100% - 12px) 100%, 0 100%, 0 12px);
  transition: border-color 220ms ease, color 220ms ease, background 220ms ease, box-shadow 220ms ease, transform 180ms ease;
}

.button::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  content: "";
  background: linear-gradient(105deg, transparent 5%, rgba(255, 255, 255, 0.19), transparent 38%);
  transform: translateX(-130%);
  transition: transform 520ms var(--ease);
}

.button:hover::before,
.button:focus-visible::before {
  transform: translateX(150%);
}

.button i {
  font-size: 1.05rem;
  font-style: normal;
  transition: transform 220ms var(--ease);
}

.button:hover i,
.button:focus-visible i { transform: translate(3px, -2px); }

.button--primary {
  color: #fff;
  border-color: rgba(255, 121, 231, 0.34);
  background: linear-gradient(110deg, rgba(215, 35, 196, 0.92), rgba(88, 72, 255, 0.94) 62%, rgba(37, 166, 245, 0.94));
  box-shadow: 0 12px 34px rgba(95, 66, 255, 0.2), inset 0 1px rgba(255, 255, 255, 0.22);
}

.button--primary:hover,
.button--primary:focus-visible {
  box-shadow: 0 16px 42px rgba(116, 76, 255, 0.33), 0 0 24px rgba(46, 188, 255, 0.14);
}

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

.button--ghost:hover,
.button--glass:hover {
  border-color: rgba(111, 171, 255, 0.48);
  background: rgba(98, 87, 255, 0.09);
}

.button.is-pending {
  cursor: default;
  color: #9ba5b9;
  border-style: dashed;
  background: rgba(255, 255, 255, 0.022);
  box-shadow: none;
}

.button.is-pending i {
  color: var(--violet);
  font-size: 0.62rem;
}

.hero-badges {
  display: flex;
  margin: 30px 0 0;
  padding: 0;
  flex-wrap: wrap;
  gap: 9px;
  list-style: none;
}

.hero-badges li {
  padding: 7px 11px;
  color: #9da6ba;
  border: 1px solid var(--line);
  background: rgba(8, 10, 18, 0.38);
  font-family: var(--font-display);
  font-size: 0.58rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  clip-path: polygon(7px 0, 100% 0, 100% calc(100% - 7px), calc(100% - 7px) 100%, 0 100%, 0 7px);
}

.hero-core {
  --rx: 0deg;
  --ry: 0deg;
  position: relative;
  display: grid;
  width: min(44vw, 520px);
  aspect-ratio: 1;
  place-items: center;
  justify-self: end;
  transform: perspective(1000px) rotateX(var(--rx)) rotateY(var(--ry));
  transform-style: preserve-3d;
  transition: transform 160ms ease-out;
}

.core-halo,
.core-orbit,
.core-beam {
  position: absolute;
  border-radius: 50%;
}

.core-halo {
  inset: 14%;
  background: radial-gradient(circle, rgba(102, 86, 255, 0.28), rgba(255, 48, 193, 0.12) 35%, transparent 68%);
  filter: blur(24px);
  animation: haloPulse 3.8s ease-in-out infinite;
}

.core-halo--outer {
  inset: 1%;
  opacity: 0.46;
  filter: blur(54px);
  animation-delay: -1.8s;
}

.core-orbit {
  inset: 3%;
  border: 1px solid rgba(118, 138, 255, 0.2);
  box-shadow: inset 0 0 34px rgba(104, 75, 255, 0.04), 0 0 28px rgba(65, 171, 255, 0.05);
  animation: orbitSpin 17s linear infinite;
}

.core-orbit--two {
  inset: 13%;
  border-color: rgba(255, 77, 204, 0.18);
  animation-direction: reverse;
  animation-duration: 12s;
}

.core-orbit i {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 8px #fff, 0 0 20px var(--cyan), 0 0 38px var(--blue);
}

.core-orbit i:nth-child(1) { top: 7%; left: 27%; }
.core-orbit i:nth-child(2) { right: 2%; bottom: 34%; background: var(--pink); box-shadow: 0 0 8px #fff, 0 0 24px var(--pink); }
.core-orbit i:nth-child(3) { bottom: 4%; left: 38%; width: 5px; height: 5px; }

.core-beam {
  inset: 23%;
  border: 1px dashed rgba(255, 255, 255, 0.13);
  animation: orbitSpin 30s linear infinite reverse;
}

.core-logo {
  position: relative;
  z-index: 4;
  width: 78%;
  height: auto;
  object-fit: contain;
  transform: translateZ(70px);
  filter:
    drop-shadow(0 0 8px rgba(255, 255, 255, 0.35))
    drop-shadow(0 0 18px rgba(255, 41, 196, 0.6))
    drop-shadow(0 0 38px rgba(59, 133, 255, 0.52));
  animation: logoFloat 5s ease-in-out infinite, logoElectric 4.4s steps(1, end) infinite;
}

.core-reflection {
  position: absolute;
  z-index: 2;
  right: 14%;
  bottom: 19%;
  left: 14%;
  height: 11%;
  border-radius: 50%;
  background: linear-gradient(90deg, rgba(255, 54, 201, 0.44), rgba(76, 113, 255, 0.54), rgba(59, 219, 255, 0.4));
  filter: blur(25px);
  opacity: 0.7;
  transform: translateZ(-25px) rotateX(78deg);
  animation: reflectionPulse 4s ease-in-out infinite;
}

.core-caption {
  position: absolute;
  z-index: 5;
  right: 9%;
  bottom: 4%;
  left: 9%;
  display: flex;
  padding-top: 12px;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  color: var(--dim);
  font-family: var(--font-display);
  font-size: 0.52rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.core-caption strong {
  color: #c9d5e9;
  font-weight: 600;
}

.hero-foot {
  position: absolute;
  right: 0;
  bottom: 24px;
  left: 0;
  display: flex;
  align-items: center;
  gap: 18px;
  color: #747d91;
  font-family: var(--font-display);
  font-size: 0.56rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-foot i {
  height: 1px;
  flex: 1;
  overflow: hidden;
  background: var(--line);
}

.hero-foot i::after {
  display: block;
  width: 24%;
  height: 100%;
  content: "";
  background: var(--gradient);
  animation: trackSignal 4s ease-in-out infinite;
}

.quick-access {
  position: relative;
  z-index: 10;
  border-bottom: 1px solid var(--line);
  background: rgba(5, 6, 11, 0.72);
  backdrop-filter: blur(18px);
}

.quick-access__track {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}

.quick-access__track > :is(a, button) {
  position: relative;
  display: grid;
  min-height: 118px;
  padding: 24px 20px;
  overflow: hidden;
  align-content: center;
  color: inherit;
  border-left: 1px solid var(--line);
  border-top: 0;
  border-right: 0;
  border-bottom: 0;
  background: transparent;
  font: inherit;
  text-align: left;
  transition: background 240ms ease;
}

.quick-access__track > :is(a, button):last-child { border-right: 1px solid var(--line); }

.quick-access__track > :is(a, button)::before {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  content: "";
  background: var(--gradient);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 260ms var(--ease);
}

.quick-access__track > :is(a, button):hover,
.quick-access__track > :is(a, button):focus-visible {
  background: linear-gradient(135deg, rgba(255, 51, 196, 0.08), rgba(49, 139, 255, 0.07));
}

.quick-access__track > :is(a, button):hover::before,
.quick-access__track > :is(a, button):focus-visible::before { transform: scaleX(1); }

.quick-access__track em {
  color: var(--dim);
  font-family: var(--font-display);
  font-size: 0.54rem;
  font-style: normal;
  letter-spacing: 0.13em;
}

.quick-access__track strong {
  margin-top: 5px;
  font-family: var(--font-display);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.quick-access__track small {
  color: var(--dim);
  font-size: 0.75rem;
}

.section {
  position: relative;
  padding: clamp(92px, 11vw, 150px) 0;
  content-visibility: auto;
  contain-intrinsic-size: auto 900px;
}

.section + .section {
  border-top: 1px solid rgba(255, 255, 255, 0.045);
}

.section-heading {
  display: grid;
  margin-bottom: 52px;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.48fr);
  gap: 54px;
  align-items: end;
}

.section-title {
  max-width: 820px;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 4.5vw, 4.5rem);
  font-weight: 650;
  letter-spacing: -0.045em;
  line-height: 1.02;
  text-wrap: balance;
}

.section-description,
.intro-copy > p,
.project-intro > p {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.62fr);
  gap: clamp(46px, 8vw, 120px);
  align-items: start;
}

.intro-copy {
  padding-top: 42px;
}

.metrics {
  display: grid;
  margin-top: 40px;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
}

.metric {
  padding: 22px 16px 0 0;
}

.metric strong {
  display: block;
  color: transparent;
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
}

.metric small {
  display: block;
  color: var(--dim);
  font-size: 0.68rem;
  line-height: 1.4;
}

.services {
  overflow: hidden;
}

.services::before {
  position: absolute;
  z-index: -1;
  top: 14%;
  right: -26%;
  width: 560px;
  height: 560px;
  content: "";
  border-radius: 50%;
  background: rgba(72, 81, 255, 0.11);
  filter: blur(140px);
}

.feature-carousel {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(117, 132, 255, 0.25);
  background:
    radial-gradient(circle at 50% 35%, rgba(76, 81, 255, 0.14), transparent 32rem),
    linear-gradient(145deg, rgba(255, 255, 255, 0.038), rgba(255, 255, 255, 0.008)),
    rgba(5, 7, 14, 0.78);
  box-shadow: 0 36px 110px rgba(0, 0, 0, 0.35), inset 0 0 80px rgba(66, 77, 255, 0.035);
  clip-path: polygon(22px 0, 100% 0, 100% calc(100% - 22px), calc(100% - 22px) 100%, 0 100%, 0 22px);
  backdrop-filter: blur(18px);
}

.feature-carousel::before {
  position: absolute;
  inset: 0;
  content: "";
  opacity: 0.11;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(#000, transparent 67%);
  pointer-events: none;
}

.feature-viewport {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  outline: none;
  touch-action: pan-y;
  contain: layout paint;
}

.feature-viewport:focus-visible {
  box-shadow: inset 0 0 0 2px rgba(53, 219, 255, 0.55);
}

.feature-stage {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
}

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

.feature-stage::before {
  top: 50%;
  right: 6%;
  left: 6%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(92, 123, 255, 0.28), rgba(255, 66, 203, 0.28), transparent);
}

.feature-stage::after {
  inset: 10% 24%;
  background: radial-gradient(ellipse at center, rgba(81, 82, 255, 0.16), rgba(255, 52, 202, 0.045) 42%, transparent 70%);
}

.service-grid {
  position: absolute;
  inset: 0;
}

.service-card {
  position: absolute;
  z-index: var(--carousel-z, 10);
  top: 50%;
  left: 50%;
  width: clamp(235px, 28vw, 330px);
  aspect-ratio: 0.78;
  padding: 0;
  overflow: hidden;
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: #070911;
  opacity: var(--carousel-opacity, 0);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.42);
  clip-path: polygon(13px 0, 100% 0, 100% calc(100% - 13px), calc(100% - 13px) 100%, 0 100%, 0 13px);
  transform:
    translate(-50%, -50%)
    translate3d(var(--carousel-x, 0), 0, 0)
    scale(var(--carousel-scale, 0.82));
  transform-origin: center;
  transition:
    transform 620ms var(--ease),
    opacity 440ms ease,
    border-color 260ms ease,
    box-shadow 260ms ease;
}

.service-card:hover,
.service-card:focus-visible,
.service-card.is-active {
  border-color: rgba(92, 203, 255, 0.52);
  box-shadow: 0 28px 65px rgba(0, 0, 0, 0.56), 0 0 28px rgba(64, 132, 255, 0.18);
}

.service-card:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 4px;
}

.service-card__media {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.service-card__media::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(180deg, rgba(5, 7, 14, 0.04) 32%, rgba(5, 7, 14, 0.94) 94%),
    linear-gradient(135deg, rgba(255, 57, 200, 0.12), transparent 42%);
  pointer-events: none;
}

.service-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 900ms var(--ease), filter 400ms ease;
}

.service-card:hover .service-card__media img,
.service-card.is-active .service-card__media img {
  transform: scale(1.045);
}

.service-card__caption {
  position: absolute;
  z-index: 2;
  right: 15px;
  bottom: 16px;
  left: 15px;
  display: grid;
  text-align: left;
}

.service-card__caption em {
  color: var(--cyan);
  font-family: var(--font-display);
  font-size: 0.58rem;
  font-style: normal;
  letter-spacing: 0.18em;
}

.service-card__caption strong {
  margin-top: 5px;
  font-family: var(--font-display);
  font-size: 0.76rem;
  font-weight: 650;
  letter-spacing: 0.04em;
  line-height: 1.25;
  text-transform: uppercase;
}

.service-number {
  color: var(--cyan);
  font-family: var(--font-display);
  font-size: 0.62rem;
  letter-spacing: 0.16em;
}

.feature-detail {
  position: relative;
  z-index: 92;
  display: grid;
  min-height: 250px;
  padding: 38px 42px;
  align-items: center;
  border-top: 1px solid var(--line);
  background: linear-gradient(110deg, rgba(9, 11, 20, 0.96), rgba(11, 13, 25, 0.88));
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 42px;
}

.feature-detail.is-changing .feature-detail__copy > *,
.feature-detail.is-changing .feature-detail__action {
  animation: featureDetailReveal 480ms var(--ease) both;
}

.feature-detail.is-changing .feature-detail__copy > *:nth-child(2) { animation-delay: 40ms; }
.feature-detail.is-changing .feature-detail__copy > *:nth-child(3) { animation-delay: 75ms; }
.feature-detail.is-changing .feature-detail__copy > *:nth-child(4) { animation-delay: 105ms; }

.feature-detail h3 {
  margin: 12px 0 9px;
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 3.3rem);
  letter-spacing: -0.045em;
  line-height: 1.05;
}

.feature-detail p {
  max-width: 760px;
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
}

.feature-detail .tag-list { margin-top: 20px; }

.feature-detail__action {
  display: flex;
  min-width: 210px;
  padding: 18px 20px;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  border: 1px solid rgba(101, 148, 255, 0.36);
  background: linear-gradient(115deg, rgba(255, 50, 199, 0.1), rgba(53, 166, 255, 0.11));
  font-family: var(--font-display);
  font-size: 0.62rem;
  font-weight: 650;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  clip-path: polygon(9px 0, 100% 0, 100% calc(100% - 9px), calc(100% - 9px) 100%, 0 100%, 0 9px);
  transition: border-color 200ms ease, background 200ms ease, transform 220ms var(--ease);
}

.feature-detail__action:hover,
.feature-detail__action:focus-visible {
  border-color: rgba(70, 205, 255, 0.68);
  background: linear-gradient(115deg, rgba(255, 50, 199, 0.16), rgba(53, 166, 255, 0.16));
  transform: translateY(-3px);
}

.feature-detail__action i { color: var(--cyan); font-size: 1rem; font-style: normal; }

.tag-list {
  display: flex;
  margin: 24px 0 0;
  padding: 0;
  flex-wrap: wrap;
  gap: 7px;
  list-style: none;
}

.tag-list li {
  padding: 5px 8px;
  color: #949db1;
  border: 1px solid var(--line);
  font-family: var(--font-display);
  font-size: 0.52rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.feature-controls {
  position: relative;
  z-index: 94;
  display: grid;
  min-height: 84px;
  padding: 13px 22px;
  align-items: center;
  border-top: 1px solid var(--line);
  background: rgba(5, 7, 14, 0.94);
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 24px;
}

.feature-counter {
  display: flex;
  min-width: 88px;
  align-items: baseline;
  color: #667087;
  font-family: var(--font-display);
  gap: 7px;
}

.feature-counter strong {
  color: transparent;
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  font-size: 1.4rem;
  letter-spacing: -0.04em;
}

.feature-counter span { font-size: 0.62rem; letter-spacing: 0.1em; }

.feature-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3px;
}

.feature-dot {
  position: relative;
  width: 34px;
  height: 38px;
  padding: 0;
  color: #626c81;
  border: 0;
  background: transparent;
  font-family: var(--font-display);
  font-size: 0.48rem;
  letter-spacing: 0.04em;
  transition: color 180ms ease, transform 220ms var(--ease);
}

.feature-dot::before {
  position: absolute;
  right: 5px;
  bottom: 5px;
  left: 5px;
  height: 2px;
  content: "";
  background: rgba(255, 255, 255, 0.12);
  transition: background 180ms ease, box-shadow 180ms ease, transform 220ms var(--ease);
}

.feature-dot:hover,
.feature-dot:focus-visible,
.feature-dot.is-active {
  color: #fff;
  transform: translateY(-2px);
}

.feature-dot.is-active::before {
  background: var(--gradient);
  box-shadow: 0 0 10px rgba(75, 160, 255, 0.65);
  transform: scaleX(1.2);
}

.feature-navigation {
  display: flex;
  align-items: center;
  gap: 7px;
}

.feature-control {
  display: grid;
  width: 44px;
  height: 44px;
  padding: 0;
  place-items: center;
  color: #dce6f7;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
  font-family: var(--font-display);
  transition: color 180ms ease, border-color 180ms ease, background 180ms ease, transform 200ms var(--ease);
}

.feature-control:hover,
.feature-control:focus-visible {
  color: #fff;
  border-color: rgba(64, 196, 255, 0.52);
  background: rgba(73, 104, 255, 0.12);
  transform: translateY(-2px);
}

.feature-control--play { width: 52px; height: 38px; color: var(--cyan); font-size: 0.46rem; letter-spacing: 0.08em; }
.feature-control:disabled { opacity: 0.4; cursor: default; transform: none; }

.feature-progress {
  position: absolute;
  z-index: 98;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.045);
  pointer-events: none;
}

.feature-progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--gradient);
  box-shadow: 0 0 14px rgba(65, 168, 255, 0.85);
  transform: scaleX(0);
  transform-origin: left;
}

.feature-progress span.is-running { animation: featureProgress linear both; }

.ecosystem-console {
  overflow: hidden;
  border: 1px solid var(--line);
  background: rgba(7, 9, 16, 0.69);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.25);
  clip-path: polygon(22px 0, 100% 0, 100% calc(100% - 22px), calc(100% - 22px) 100%, 0 100%, 0 22px);
  backdrop-filter: blur(16px);
}

.ecosystem-tabs {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-bottom: 1px solid var(--line);
}

.ecosystem-tab {
  position: relative;
  min-height: 88px;
  padding: 17px 14px;
  overflow: hidden;
  border: 0;
  border-right: 1px solid var(--line);
  background: transparent;
  font-family: var(--font-display);
  text-align: left;
  transition: color 220ms ease, background 220ms ease;
}

.ecosystem-tab:last-child { border-right: 0; }

.ecosystem-tab::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  content: "";
  background: var(--gradient);
  box-shadow: 0 0 16px rgba(89, 164, 255, 0.8);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 260ms var(--ease);
}

.ecosystem-tab em {
  display: block;
  color: var(--dim);
  font-size: 0.5rem;
  font-style: normal;
  letter-spacing: 0.12em;
}

.ecosystem-tab span {
  display: block;
  margin-top: 8px;
  font-size: 0.68rem;
  font-weight: 650;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.ecosystem-tab:hover,
.ecosystem-tab:focus-visible,
.ecosystem-tab.is-active {
  color: #fff;
  background: linear-gradient(145deg, rgba(255, 61, 198, 0.09), rgba(63, 142, 255, 0.07));
}

.ecosystem-tab.is-active::after { transform: scaleX(1); }

.ecosystem-panel {
  display: grid;
  min-height: 530px;
  grid-template-columns: minmax(0, 0.93fr) minmax(0, 1.08fr);
}

.ecosystem-panel[hidden] { display: none; }

.ecosystem-panel.is-entering .panel-copy > *,
.ecosystem-panel.is-entering .panel-visual {
  animation: tabReveal 620ms var(--ease) both;
}

.ecosystem-panel.is-entering .panel-copy > *:nth-child(2) { animation-delay: 50ms; }
.ecosystem-panel.is-entering .panel-copy > *:nth-child(3) { animation-delay: 90ms; }
.ecosystem-panel.is-entering .panel-copy > *:nth-child(4) { animation-delay: 130ms; }
.ecosystem-panel.is-entering .panel-copy > *:nth-child(5) { animation-delay: 170ms; }

.panel-copy {
  display: flex;
  padding: clamp(34px, 5vw, 68px);
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.panel-eyebrow {
  color: var(--cyan);
  font-family: var(--font-display);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.panel-meta {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.panel-meta > strong {
  padding: 6px 8px;
  color: #d6e5f5;
  border: 1px solid rgba(74, 192, 255, 0.22);
  background: rgba(58, 147, 255, 0.06);
  font-family: var(--font-display);
  font-size: 0.5rem;
  font-weight: 600;
  letter-spacing: 0.11em;
  white-space: nowrap;
}

.panel-copy h3 {
  max-width: 560px;
  margin: 20px 0 18px;
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3.4vw, 3.3rem);
  font-weight: 620;
  letter-spacing: -0.04em;
  line-height: 1.06;
}

.panel-copy > p {
  max-width: 580px;
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}

.panel-copy .button { margin-top: 30px; }

.panel-visual {
  position: relative;
  min-height: 470px;
  overflow: hidden;
  isolation: isolate;
  contain: paint;
}

.panel-visual img {
  position: absolute;
  z-index: -2;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 900ms var(--ease), filter 500ms ease;
}

.panel-visual::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, var(--panel-solid) 0%, transparent 32%), linear-gradient(180deg, transparent 56%, rgba(4, 5, 10, 0.72));
}

.panel-visual::after {
  position: absolute;
  inset: 18px;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.12);
  clip-path: polygon(0 0, 72px 0, 72px 1px, 1px 1px, 1px 72px, 0 72px, 0 100%, 100% 100%, 100% calc(100% - 72px), calc(100% - 1px) calc(100% - 72px), calc(100% - 1px) calc(100% - 1px), calc(100% - 72px) calc(100% - 1px), calc(100% - 72px) 100%, 0 100%);
  pointer-events: none;
}

.ecosystem-panel:hover .panel-visual img { transform: scale(1.045); filter: saturate(1.08); }

.panel-code {
  position: absolute;
  right: 32px;
  bottom: 28px;
  padding: 8px 10px;
  color: #d9e1f2;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(4, 5, 10, 0.54);
  font-family: var(--font-display);
  font-size: 0.54rem;
  letter-spacing: 0.13em;
  backdrop-filter: blur(12px);
}

.social-dock {
  position: fixed;
  z-index: 72;
  top: 50%;
  right: 18px;
  display: grid;
  gap: 8px;
  transform: translateY(-50%);
}

.social-dock a,
.social-dock button {
  position: relative;
  display: grid;
  width: 42px;
  height: 42px;
  padding: 0;
  overflow: hidden;
  place-items: center;
  color: #dce4f4;
  border: 1px solid var(--line);
  background: rgba(6, 8, 15, 0.66);
  backdrop-filter: blur(14px);
  clip-path: polygon(8px 0, 100% 0, 100% calc(100% - 8px), calc(100% - 8px) 100%, 0 100%, 0 8px);
  transition: color 180ms ease, border-color 180ms ease, background 180ms ease, transform 180ms var(--ease);
}

.social-dock a:hover,
.social-dock button:hover {
  color: #fff;
  border-color: rgba(91, 181, 255, 0.48);
  background: linear-gradient(135deg, rgba(255, 55, 198, 0.18), rgba(62, 143, 255, 0.18));
  transform: translateX(-4px);
}

.social-dock svg,
.social-button svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.social-dock .is-disabled {
  color: #626b7f;
  cursor: pointer;
}

.social-connect {
  padding-top: 46px;
}

.social-connect__card {
  position: relative;
  display: grid;
  padding: clamp(34px, 5vw, 66px);
  overflow: hidden;
  isolation: isolate;
  border: 1px solid var(--line);
  background:
    linear-gradient(120deg, rgba(254, 47, 196, 0.09), transparent 34%, rgba(56, 142, 255, 0.08)),
    rgba(7, 9, 16, 0.76);
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(34px, 6vw, 86px);
  align-items: center;
  clip-path: polygon(20px 0, 100% 0, 100% calc(100% - 20px), calc(100% - 20px) 100%, 0 100%, 0 20px);
}

.social-connect__card::before {
  position: absolute;
  z-index: -1;
  right: -100px;
  bottom: -190px;
  width: 430px;
  height: 430px;
  content: "";
  border-radius: 50%;
  background: radial-gradient(circle, rgba(72, 118, 255, 0.2), transparent 68%);
  filter: blur(20px);
}

.social-connect__copy .section-title {
  font-size: clamp(2rem, 3.6vw, 3.7rem);
}

.social-connect__copy > p:last-child {
  max-width: 560px;
  margin: 22px 0 0;
  color: var(--muted);
  line-height: 1.8;
}

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

.social-button {
  position: relative;
  display: grid;
  min-height: 92px;
  padding: 18px 20px;
  overflow: hidden;
  align-items: center;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.025);
  grid-template-columns: 38px 1fr auto;
  gap: 14px;
  text-align: left;
  transition: border-color 220ms ease, background 220ms ease, transform 240ms var(--ease);
}

.social-button:last-child:nth-child(odd) {
  grid-column: 1 / -1;
}

.social-button:hover,
.social-button:focus-visible {
  border-color: rgba(113, 159, 255, 0.4);
  background: linear-gradient(120deg, rgba(255, 53, 198, 0.1), rgba(56, 143, 255, 0.08));
  transform: translateY(-3px);
}

.social-button__icon {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.13);
  background: rgba(255, 255, 255, 0.035);
  color: var(--cyan);
}

.social-button__copy {
  display: grid;
  min-width: 0;
}

.social-button__copy strong {
  font-family: var(--font-display);
  font-size: 0.69rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.social-button__copy small {
  overflow: hidden;
  margin-top: 3px;
  color: var(--dim);
  font-size: 0.68rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.social-button > i {
  color: var(--cyan);
  font-size: 1rem;
  font-style: normal;
}

.social-button.is-disabled {
  color: #8a92a4;
  cursor: pointer;
}

.social-button.is-disabled .social-button__icon {
  color: #697388;
}

.process-title { max-width: 760px; }

.process-grid {
  display: grid;
  margin: 58px 0 0;
  padding: 0;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  list-style: none;
}

.process-step {
  position: relative;
  min-height: 260px;
  padding: 30px 28px 26px 0;
  border-right: 1px solid var(--line);
}

.process-step:not(:first-child) { padding-left: 28px; }
.process-step:last-child { border-right: 0; }

.process-step::before {
  position: absolute;
  top: -4px;
  left: 0;
  width: 7px;
  height: 7px;
  content: "";
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 8px #fff, 0 0 20px var(--cyan);
}

.process-step span {
  color: var(--dim);
  font-family: var(--font-display);
  font-size: 0.57rem;
  letter-spacing: 0.14em;
}

.process-step h3 {
  margin: 56px 0 13px;
  font-family: var(--font-display);
  font-size: 1.15rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.process-step p {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.7;
}

.project {
  padding-top: 70px;
}

.project-card {
  position: relative;
  display: grid;
  overflow: hidden;
  isolation: isolate;
  border: 1px solid rgba(113, 120, 255, 0.25);
  background:
    radial-gradient(circle at 6% 12%, rgba(236, 44, 206, 0.14), transparent 31rem),
    radial-gradient(circle at 94% 90%, rgba(44, 153, 255, 0.12), transparent 31rem),
    rgba(8, 10, 18, 0.82);
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  clip-path: polygon(24px 0, 100% 0, 100% calc(100% - 24px), calc(100% - 24px) 100%, 0 100%, 0 24px);
}

.project-card::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  content: "";
  opacity: 0.1;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.12) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(90deg, #000, transparent 76%);
}

.project-intro,
.project-form {
  padding: clamp(38px, 5.5vw, 72px);
}

.project-intro {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  border-right: 1px solid var(--line);
}

.project-intro .section-title { font-size: clamp(2.2rem, 4vw, 4rem); }
.project-intro > p { margin-top: 24px; }

.contact-chip {
  display: grid;
  margin-top: 36px;
  padding: 16px 18px;
  border: 1px solid var(--line-strong);
  background: rgba(255, 255, 255, 0.035);
  transition: border-color 200ms ease, background 200ms ease;
}

.contact-chip:hover { border-color: rgba(89, 190, 255, 0.45); background: rgba(81, 78, 255, 0.08); }
.contact-chip span { color: var(--dim); font-family: var(--font-display); font-size: 0.5rem; letter-spacing: 0.13em; }
.contact-chip strong { margin-top: 3px; font-family: var(--font-display); font-size: 0.86rem; letter-spacing: 0.07em; }

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

.project-form label {
  display: grid;
  align-content: start;
  gap: 8px;
}

.project-form label > span {
  color: #aeb6c8;
  font-family: var(--font-display);
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.project-form input,
.project-form select,
.project-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 0;
  outline: 0;
  background: rgba(4, 6, 12, 0.58);
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.project-form input,
.project-form select { height: 52px; padding: 0 15px; }
.project-form textarea { min-height: 132px; padding: 14px 15px; resize: vertical; }

.project-form input:focus,
.project-form select:focus,
.project-form textarea:focus {
  border-color: rgba(89, 177, 255, 0.52);
  background: rgba(9, 11, 22, 0.78);
  box-shadow: 0 0 0 3px rgba(72, 112, 255, 0.09), 0 0 24px rgba(63, 153, 255, 0.07);
}

.project-form select option { color: #fff; background: #0a0c15; }
.project-form ::placeholder { color: #626b80; }
.form-wide { grid-column: 1 / -1; }
.project-form .button { width: 100%; }

.project-form .is-prefilled {
  animation: fieldSignal 900ms var(--ease);
}

.form-status {
  min-height: 22px;
  margin: -6px 0 0;
  color: var(--cyan);
  font-size: 0.78rem;
}

.site-footer {
  padding: 55px 0 26px;
  border-top: 1px solid var(--line);
  background: rgba(4, 5, 10, 0.82);
}

.footer-main,
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.footer-brand img { width: 62px; }

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

.footer-links a {
  color: #9ca5b8;
  font-family: var(--font-display);
  font-size: 0.58rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color 180ms ease;
}

.footer-links a:hover { color: #fff; }

.footer-bottom {
  margin-top: 38px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  color: #5f687d;
  font-family: var(--font-display);
  font-size: 0.5rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.link-hub-dialog {
  width: min(570px, calc(100% - 30px));
  max-height: min(88vh, 820px);
  margin: auto;
  padding: 0;
  overflow: auto;
  color: var(--text);
  border: 1px solid rgba(121, 133, 255, 0.32);
  background:
    radial-gradient(circle at 20% 0%, rgba(243, 47, 203, 0.15), transparent 19rem),
    radial-gradient(circle at 100% 82%, rgba(53, 160, 255, 0.13), transparent 22rem),
    rgba(6, 8, 15, 0.97);
  box-shadow: 0 40px 130px rgba(0, 0, 0, 0.7), 0 0 58px rgba(72, 92, 255, 0.12);
  clip-path: polygon(22px 0, 100% 0, 100% calc(100% - 22px), calc(100% - 22px) 100%, 0 100%, 0 22px);
  backdrop-filter: blur(28px) saturate(135%);
}

.link-hub-dialog::backdrop {
  background: rgba(2, 3, 8, 0.78);
  backdrop-filter: blur(9px);
}

.link-hub-dialog[open] {
  animation: hubEnter 340ms var(--ease) both;
}

.link-hub-shell {
  position: relative;
  padding: 34px;
}

.link-hub-shell::before {
  position: absolute;
  inset: 0;
  content: "";
  opacity: 0.08;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.12) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(#000, transparent 60%);
  pointer-events: none;
}

.link-hub-close {
  position: absolute;
  z-index: 3;
  top: 18px;
  right: 18px;
  display: grid;
  width: 38px;
  height: 38px;
  padding: 0;
  place-items: center;
  color: #c7cfde;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.035);
  font-family: var(--font-display);
  font-size: 1.25rem;
  line-height: 1;
  transition: color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.link-hub-close:hover {
  color: #fff;
  border-color: rgba(255, 85, 204, 0.46);
  transform: rotate(5deg);
}

.link-hub-brand {
  position: relative;
  display: grid;
  padding: 12px 28px 28px;
  place-items: center;
  text-align: center;
}

.link-hub-brand img {
  width: 112px;
  height: auto;
  filter: drop-shadow(0 0 14px rgba(255, 55, 202, 0.52)) drop-shadow(0 0 22px rgba(55, 145, 255, 0.42));
  animation: logoFloat 5s ease-in-out infinite;
}

.link-hub-brand p {
  margin: 18px 0 0;
  color: var(--cyan);
  font-family: var(--font-display);
  font-size: 0.55rem;
  letter-spacing: 0.15em;
}

.link-hub-brand h2 {
  margin: 7px 0 0;
  color: transparent;
  background: linear-gradient(105deg, #fff 10%, #fb62d3 44%, #55cfff);
  -webkit-background-clip: text;
  background-clip: text;
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 8vw, 4.3rem);
  font-weight: 700;
  letter-spacing: -0.05em;
  line-height: 1;
}

.link-hub-brand > span {
  max-width: 390px;
  margin-top: 13px;
  color: var(--muted);
  font-size: 0.88rem;
}

.link-hub-links {
  position: relative;
  display: grid;
  gap: 9px;
}

.link-hub-item {
  display: grid;
  min-height: 76px;
  padding: 12px 15px;
  align-items: center;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.025);
  grid-template-columns: 42px 1fr 24px;
  gap: 13px;
  clip-path: polygon(9px 0, 100% 0, 100% calc(100% - 9px), calc(100% - 9px) 100%, 0 100%, 0 9px);
  transition: border-color 190ms ease, background 190ms ease, transform 210ms var(--ease);
}

.link-hub-item:hover,
.link-hub-item:focus-visible {
  border-color: rgba(108, 159, 255, 0.42);
  background: linear-gradient(110deg, rgba(255, 48, 196, 0.1), rgba(56, 148, 255, 0.08));
  transform: translateX(4px);
}

.link-hub-item__icon {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--cyan);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.035);
}

.link-hub-item__copy {
  display: grid;
  min-width: 0;
}

.link-hub-item__copy strong {
  font-family: var(--font-display);
  font-size: 0.68rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.link-hub-item__copy small {
  overflow: hidden;
  margin-top: 3px;
  color: var(--dim);
  font-size: 0.68rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.link-hub-item > i {
  color: var(--cyan);
  font-size: 0.95rem;
  font-style: normal;
}

.link-hub-social {
  position: relative;
  display: flex;
  margin-top: 18px;
  justify-content: center;
  gap: 9px;
}

.link-hub-social > :is(a, button) {
  display: grid;
  width: 44px;
  height: 44px;
  padding: 0;
  place-items: center;
  color: #d7e1f2;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
  transition: color 180ms ease, border-color 180ms ease, background 180ms ease;
}

.link-hub-social > :is(a, button):hover {
  color: #fff;
  border-color: rgba(85, 190, 255, 0.46);
  background: rgba(71, 112, 255, 0.11);
}

.link-hub-social .is-disabled { color: #596275; }

.link-hub-domain {
  position: relative;
  display: block;
  margin-top: 22px;
  padding-top: 17px;
  color: #646e83;
  border-top: 1px solid var(--line);
  font-family: var(--font-display);
  font-size: 0.51rem;
  letter-spacing: 0.16em;
  text-align: center;
  text-transform: uppercase;
}

.signal-toast {
  position: fixed;
  z-index: 110;
  right: 22px;
  bottom: 22px;
  max-width: min(360px, calc(100vw - 44px));
  padding: 13px 16px;
  color: #e9f6ff;
  border: 1px solid rgba(71, 196, 255, 0.28);
  background: rgba(7, 9, 17, 0.9);
  font-family: var(--font-display);
  font-size: 0.62rem;
  letter-spacing: 0.07em;
  opacity: 0;
  pointer-events: none;
  transform: translateY(16px);
  backdrop-filter: blur(18px);
  transition: opacity 220ms ease, transform 220ms var(--ease);
}

.signal-toast.is-visible { opacity: 1; transform: translateY(0); }

.noscript {
  position: fixed;
  z-index: 999;
  right: 16px;
  bottom: 16px;
  left: 16px;
  margin: 0;
  padding: 14px;
  color: #fff;
  background: #171927;
  text-align: center;
}

.interactive:not(.service-card),
.service-card,
.ecosystem-tab,
.quick-access__track > :is(a, button) {
  overflow: hidden;
}

.interactive:not(.service-card),
.ecosystem-tab,
.quick-access__track > :is(a, button) {
  position: relative;
}

.click-wave {
  position: absolute;
  z-index: 20;
  width: 16px;
  height: 16px;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.25), rgba(91, 126, 255, 0.13) 42%, transparent 70%);
  pointer-events: none;
  transform: translate(-50%, -50%) scale(0);
  animation: clickWave 650ms var(--ease) forwards;
}

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

.reveal.delay-1 { transition-delay: 90ms; }
.reveal.delay-2 { transition-delay: 170ms; }
.reveal.delay-3 { transition-delay: 250ms; }
.reveal.delay-4 { transition-delay: 330ms; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@keyframes auroraDrift {
  0% { transform: translate3d(-3%, -4%, 0) scale(0.9); }
  100% { transform: translate3d(10%, 8%, 0) scale(1.14); }
}

@keyframes ambientLogoDriftOne {
  0% { opacity: 0.045; transform: translate3d(0, -3%, 0) rotate(7deg) scale(0.9); }
  52% { opacity: 0.09; }
  100% { opacity: 0.055; transform: translate3d(-16%, 12%, 0) rotate(-5deg) scale(1.06); }
}

@keyframes ambientLogoDriftTwo {
  0% { opacity: 0.028; transform: translate3d(-5%, 4%, 0) rotate(-12deg) scale(0.74); }
  100% { opacity: 0.06; transform: translate3d(18%, -10%, 0) rotate(7deg) scale(0.88); }
}

@keyframes backgroundRingPulse {
  0%, 100% { opacity: 0.18; transform: scale(0.86) rotate(0deg); }
  50% { opacity: 0.72; transform: scale(1.04) rotate(8deg); }
}

@keyframes featureDetailReveal {
  from { opacity: 0; transform: translateY(13px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes featureProgress {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}

@keyframes scanPage {
  from { transform: translateX(0) skewX(-18deg); }
  to { transform: translateX(180vw) skewX(-18deg); }
}

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

@keyframes haloPulse {
  0%, 100% { opacity: 0.46; transform: scale(0.93); }
  50% { opacity: 0.88; transform: scale(1.08); }
}

@keyframes logoFloat {
  0%, 100% { transform: translate3d(0, -4px, 70px) scale(0.98); }
  50% { transform: translate3d(0, 13px, 90px) scale(1.02); }
}

@keyframes logoElectric {
  0%, 91%, 94%, 100% { opacity: 1; }
  92% { opacity: 0.84; }
  93% { opacity: 0.96; }
}

@keyframes reflectionPulse {
  0%, 100% { opacity: 0.44; transform: translateZ(-25px) rotateX(78deg) scaleX(0.88); }
  50% { opacity: 0.77; transform: translateZ(-25px) rotateX(78deg) scaleX(1.08); }
}

@keyframes trackSignal {
  0% { transform: translateX(-110%); }
  60%, 100% { transform: translateX(430%); }
}

@keyframes tabReveal {
  from { opacity: 0; transform: translateY(20px) scale(0.99); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes fieldSignal {
  0%, 100% { box-shadow: none; }
  45% { border-color: var(--cyan); box-shadow: 0 0 0 3px rgba(53, 219, 255, 0.09), 0 0 28px rgba(53, 219, 255, 0.14); }
}

@keyframes clickWave {
  0% { opacity: 0.86; transform: translate(-50%, -50%) scale(0); }
  100% { opacity: 0; transform: translate(-50%, -50%) scale(18); }
}

@keyframes hubEnter {
  from { opacity: 0; transform: translateY(24px) scale(0.96); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@media (max-width: 1080px) {
  .site-nav { gap: 20px; }
  .hero-layout { grid-template-columns: minmax(0, 1fr) minmax(350px, 0.65fr); }
  .project-card { grid-template-columns: 0.8fr 1.2fr; }
}

@media (max-width: 880px) {
  :root { --shell: min(100% - 34px, 1240px); }

  .menu-toggle { display: grid; }

  .site-nav {
    position: fixed;
    top: 74px;
    right: 17px;
    left: 17px;
    display: grid;
    padding: 18px;
    gap: 0;
    border: 1px solid var(--line);
    background: rgba(5, 6, 12, 0.95);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px) scale(0.98);
    backdrop-filter: blur(22px);
    transition: opacity 220ms ease, transform 220ms var(--ease);
  }

  .site-nav.is-open { opacity: 1; pointer-events: auto; transform: translateY(0) scale(1); }
  .site-nav > :is(a, button) { width: 100%; padding: 16px 12px; border-bottom: 1px solid var(--line); text-align: left; }
  .site-nav > :is(a, button)::after { display: none; }
  .site-nav .nav-creator-shortcut { justify-content: space-between; }
  .site-nav .nav-cta { margin-top: 10px; border-bottom: 1px solid rgba(121, 135, 255, 0.38); }

  .hero { min-height: auto; }
  .hero-layout { padding: 126px 0 104px; grid-template-columns: 1fr; }
  .hero-copy { max-width: 760px; }
  .hero-core { width: min(86vw, 540px); margin: -30px auto 10px; justify-self: center; }
  .hero-vignette { background: linear-gradient(180deg, rgba(4, 5, 10, 0.72), rgba(4, 5, 10, 0.87) 44%, #04050a); }

  .quick-access__track { display: flex; width: 100%; overflow-x: auto; scrollbar-width: none; }
  .quick-access__track::-webkit-scrollbar { display: none; }
  .quick-access__track > :is(a, button) { min-width: 210px; flex: 0 0 210px; }

  .intro-grid,
  .section-heading { grid-template-columns: 1fr; gap: 25px; }
  .intro-copy { padding-top: 0; }
  .section-heading { align-items: start; }

  .feature-detail {
    padding: 34px;
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .feature-detail__action { width: min(100%, 320px); }

  .ecosystem-tabs { display: flex; overflow-x: auto; scrollbar-width: none; }
  .ecosystem-tabs::-webkit-scrollbar { display: none; }
  .ecosystem-tab { min-width: 170px; }
  .ecosystem-panel { grid-template-columns: 1fr; }
  .panel-visual { min-height: 400px; order: -1; }
  .panel-visual::before { background: linear-gradient(180deg, transparent 55%, var(--panel-solid)); }

  .social-dock { display: none; }
  .social-connect__card { grid-template-columns: 1fr; }

  .process-grid { grid-template-columns: 1fr 1fr; }
  .process-step:nth-child(2) { border-right: 0; }
  .process-step:nth-child(n + 3) { border-top: 1px solid var(--line); }

  .project-card { grid-template-columns: 1fr; }
  .project-intro { border-right: 0; border-bottom: 1px solid var(--line); }
}

@media (max-width: 600px) {
  :root { --shell: min(100% - 28px, 1240px); }
  body { font-size: 15px; }
  .aurora { width: 76vw; height: 76vw; filter: blur(62px); }
  .ambient-logo { width: 88vw; }
  .ambient-logo--one { right: -34%; opacity: 0.06; }
  .ambient-logo--two { left: -38%; opacity: 0.035; }
  .signal-rings { width: 135vw; }
  .hero-backdrop { object-position: 70% center; opacity: 0.34; }
  .header-inner { min-height: 74px; gap: 12px; }
  .brand { gap: 8px; }
  .brand-copy small { display: none; }
  .brand-copy strong { font-size: 0.7rem; letter-spacing: 0.09em; }
  .brand-mark { width: 38px; height: 36px; }
  .header-tools { gap: 6px; }
  .language-switcher { width: 58px; height: 34px; padding: 2px; }
  .language-switcher :is(a, button) { height: 28px; font-size: 0.48rem; }
  .menu-toggle { width: 42px; height: 42px; }

  .hero-layout { padding-top: 112px; }
  .hero h1 { font-size: clamp(2.8rem, 15vw, 4.6rem); }
  .hero-lead { font-size: 0.96rem; }
  .hero-actions { display: grid; }
  .hero-shortcuts { display: grid; grid-template-columns: 1fr 1fr; }
  .hero-shortcut { width: 100%; }
  .button { width: 100%; }
  .hero-core { width: min(96vw, 500px); margin-top: -20px; }
  .core-caption { right: 5%; left: 5%; font-size: 0.43rem; }
  .core-caption strong { display: none; }
  .hero-foot strong { display: none; }

  .section { padding: 86px 0; }
  .section-title { font-size: clamp(2rem, 10vw, 3.2rem); }
  .section-kicker { font-size: 0.59rem; letter-spacing: 0.15em; }

  .metrics { grid-template-columns: 1fr; }
  .metric { display: flex; align-items: baseline; gap: 14px; }
  .metric strong { font-size: 1.35rem; }

  .feature-carousel { clip-path: polygon(14px 0, 100% 0, 100% calc(100% - 14px), calc(100% - 14px) 100%, 0 100%, 0 14px); }
  .feature-viewport { min-height: 430px; }
  .feature-stage::after { inset: 12% 5%; }
  .service-card { width: min(72vw, 282px); }
  .service-card__caption { right: 14px; bottom: 15px; left: 14px; }
  .service-card__caption em { font-size: 0.54rem; }
  .service-card__caption strong { margin-top: 4px; font-size: 0.68rem; }
  .feature-detail { min-height: 0; padding: 30px 23px 34px; gap: 24px; }
  .feature-detail h3 { font-size: clamp(1.75rem, 9vw, 2.6rem); }
  .feature-detail p { font-size: 0.9rem; }
  .feature-detail__action { width: 100%; min-width: 0; }
  .feature-controls { min-height: 116px; padding: 13px 14px 18px; grid-template-columns: auto 1fr; gap: 8px 14px; }
  .feature-counter { min-width: 74px; }
  .feature-counter strong { font-size: 1.22rem; }
  .feature-navigation { justify-self: end; }
  .feature-control { width: 40px; height: 40px; }
  .feature-control--play { width: 48px; height: 35px; }
  .feature-dots { grid-column: 1 / -1; grid-row: 2; justify-content: space-between; gap: 2px; }
  .feature-dot { width: 24px; height: 30px; font-size: 0.43rem; }

  .ecosystem-console { clip-path: polygon(14px 0, 100% 0, 100% calc(100% - 14px), calc(100% - 14px) 100%, 0 100%, 0 14px); }
  .ecosystem-tab { min-width: 150px; }
  .panel-copy { padding: 30px 23px 38px; }
  .panel-copy h3 { font-size: 1.85rem; }
  .panel-copy .button { width: 100%; }
  .panel-visual { min-height: 285px; }

  .project-card { clip-path: polygon(14px 0, 100% 0, 100% calc(100% - 14px), calc(100% - 14px) 100%, 0 100%, 0 14px); }

  .social-buttons { grid-template-columns: 1fr; }
  .social-button:last-child:nth-child(odd) { grid-column: 1; }

  .process-grid { grid-template-columns: 1fr; }
  .process-step,
  .process-step:not(:first-child) { min-height: auto; padding: 28px 0 32px 28px; border-right: 0; border-bottom: 1px solid var(--line); }
  .process-step:nth-child(n + 3) { border-top: 0; }
  .process-step::before { top: 35px; }
  .process-step h3 { margin: 0 0 10px; }
  .process-step span { display: block; margin-bottom: 8px; }

  .project-intro,
  .project-form { padding: 34px 23px; }
  .project-form { grid-template-columns: 1fr; }
  .form-wide { grid-column: 1; }

  .footer-main,
  .footer-bottom { align-items: flex-start; flex-direction: column; }
  .footer-links { gap: 17px 21px; }
  .footer-bottom { gap: 8px; }

  .link-hub-shell { padding: 28px 17px 23px; }
  .link-hub-brand { padding-inline: 24px; }
  .link-hub-brand img { width: 94px; }
  .link-hub-dialog { width: calc(100% - 18px); max-height: 92vh; clip-path: polygon(14px 0, 100% 0, 100% calc(100% - 14px), calc(100% - 14px) 100%, 0 100%, 0 14px); }
}

/* Mode ringan aktif otomatis pada layar sentuh/HP. Animasi neon utama tetap hidup,
   sementara lapisan blur ganda yang paling mahal disederhanakan. */
html.performance-lite .scan-beam,
html.performance-lite .signal-rings,
html.performance-lite .aurora--two,
html.performance-lite .aurora--three,
html.performance-lite .ambient-logo--two,
html.performance-lite .core-halo--outer,
html.performance-lite .core-orbit--two,
html.performance-lite .core-beam,
html.performance-lite .core-reflection {
  display: none;
}

html.performance-lite .space-grid {
  opacity: 0.09;
  background-position: center;
}

html.performance-lite .hero-backdrop {
  filter: saturate(0.82) contrast(1.06);
  transform: scale(1.04);
}

html.performance-lite .hero::before {
  background-position: 50% 50%;
}

html.performance-lite .aurora {
  opacity: 0.1;
  filter: blur(40px);
  mix-blend-mode: normal;
  animation: none;
}

html.performance-lite .ambient-logo {
  opacity: 0.04;
  mix-blend-mode: normal;
  filter: drop-shadow(0 0 18px rgba(82, 112, 255, 0.3));
  transform: rotate(5deg) scale(0.9);
  animation: none;
  will-change: auto;
}

html.performance-lite .link-hub-brand img,
html.performance-lite .hero-foot i::after {
  animation: none !important;
}

html.performance-lite .aurora--one {
  animation: auroraDrift 26s ease-in-out infinite alternate;
}

html.performance-lite .ambient-logo--one {
  animation: ambientLogoDriftOne 28s ease-in-out infinite alternate;
}

html.performance-lite .core-halo--middle {
  animation-duration: 5.8s;
}

html.performance-lite .core-orbit--one {
  animation-duration: 24s;
}

html.performance-lite .core-logo {
  animation: logoFloat 6.2s ease-in-out infinite, logoElectric 8s steps(1, end) infinite;
}

html.performance-lite :is(
  .site-header.is-scrolled,
  .hero-shortcut,
  .button--ghost,
  .button--glass,
  .quick-access,
  .feature-carousel,
  .ecosystem-console,
  .panel-code,
  .link-hub-dialog,
  .signal-toast,
  .site-nav
) {
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
}

html.performance-lite .link-hub-dialog::backdrop {
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
}

html.performance-lite .site-header.is-scrolled {
  background: rgba(4, 5, 10, 0.94);
}

html.performance-lite .service-card {
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.32);
  transition: transform 480ms var(--ease), opacity 380ms ease, border-color 180ms ease;
}

html.performance-lite .service-card:hover,
html.performance-lite .service-card:focus-visible,
html.performance-lite .service-card.is-active {
  box-shadow: 0 15px 34px rgba(0, 0, 0, 0.42), 0 0 20px rgba(88, 100, 255, 0.11);
}

html.performance-lite .button::before {
  display: none;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; filter: none; }
  .hero-backdrop { transform: scale(1.04); }
  .cursor-light { display: none; }
  .ambient-logo { animation: none !important; opacity: 0.045; }
  .signal-rings { display: none; }
}
