:root {
  --color-bg: #020204;
  --color-bg-secondary: #090910;
  --color-text: #f7f7f0;
  --color-text-muted: #9b9a94;
  --color-accent: #014D4E;
  --color-border: rgba(247, 247, 240, 0.13);
  --color-surface: #111117;
  --font-display: "Inter", system-ui, sans-serif;
  --font-body: "Inter", system-ui, sans-serif;
  --font-serif: "Instrument Serif", Georgia, serif;
  --space-xs: 0.5rem;
  --space-sm: 0.875rem;
  --space-md: 1.5rem;
  --space-lg: 3rem;
  --space-xl: 6rem;
  --space-xxl: 10rem;
  --container-width: 1440px;
  --page-padding: clamp(1.25rem, 4.7vw, 5rem);
  --header-height: 4.5rem;
  --ease-primary: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-expo: cubic-bezier(0.16, 1, 0.3, 1);
}

* {
  box-sizing: border-box;
}

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

html.lenis,
html.lenis body {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

.lenis.lenis-stopped {
  overflow: hidden;
}

.lenis [data-lenis-prevent] {
  overscroll-behavior: contain;
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  background: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-body);
}

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

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

button {
  border: 0;
  color: inherit;
  font: inherit;
}

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

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

:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 5px;
}

.skip-link {
  position: fixed;
  left: 1rem;
  top: 1rem;
  z-index: 1000;
  padding: 0.75rem 1rem;
  background: var(--color-accent);
  color: #050507;
  transform: translateY(-160%);
}

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

.section-dark,
.section-light {
  position: relative;
  padding-inline: var(--page-padding);
}

.section-dark {
  background: var(--color-bg);
  color: var(--color-text);
}

.section-light {
  background: #f5f5ef;
  color: #08080b;
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  color: var(--color-accent);
  font-size: clamp(0.68rem, 0.8vw, 0.82rem);
  font-weight: 800;
  letter-spacing: 0.35em;
  text-transform: uppercase;
}

.section-kicker span {
  width: 2.75rem;
  height: 1px;
  background: currentColor;
}

.section-note {
  max-width: 31rem;
  color: var(--color-text-muted);
  font-size: clamp(1rem, 1.2vw, 1.18rem);
  line-height: 1.65;
}

.large-copy {
  max-width: 40rem;
  color: #3d3d39;
  font-size: clamp(1.25rem, 2.2vw, 2rem);
  line-height: 1.35;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 90;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
  padding-inline: var(--page-padding);
  transition: background 300ms var(--ease-primary), border 300ms var(--ease-primary), transform 300ms var(--ease-primary);
}

.site-header.is-scrolled {
  background: rgba(2, 2, 4, 0.8);
  border-bottom: 1px solid var(--color-border);
  backdrop-filter: blur(18px);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.96rem;
  font-weight: 900;
  letter-spacing: -0.02em;
}

.brand__mark {
  display: grid;
  width: 2.2rem;
  aspect-ratio: 1;
  place-items: center;
  border-radius: 50%;
  background: var(--color-accent);
  color: #050507;
  font-weight: 900;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(1.3rem, 2.8vw, 3rem);
  color: #d9d9d2;
  font-size: 0.88rem;
  font-weight: 700;
}

.desktop-nav a,
.site-footer a {
  position: relative;
}

.desktop-nav a::after,
.site-footer a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -0.45rem;
  left: 0;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 280ms var(--ease-primary);
}

.desktop-nav a:hover::after,
.site-footer a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-cta,
.button,
.text-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  min-height: 3.2rem;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  transform-style: preserve-3d;
}

.header-cta {
  padding: 0.9rem 1.2rem;
  background: var(--color-accent);
  color: #050507;
}

.button {
  position: relative;
  overflow: hidden;
  padding: 1rem 1.45rem;
  border: 1px solid currentColor;
  background: transparent;
  cursor: pointer;
}

.button::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: currentColor;
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 360ms var(--ease-primary);
}

.button--primary {
  border-color: var(--color-accent);
  background: var(--color-accent);
  color: #050507;
}

.button--primary::before {
  background: #f7f7f0;
}

.button--ghost {
  color: var(--color-text);
}

.button--ghost:hover {
  color: #050507;
}

.button:hover::before {
  transform: scaleY(1);
}

.button i {
  font-style: normal;
  transition: transform 260ms var(--ease-primary);
}

.button:hover i {
  transform: translate3d(0.25rem, -0.1rem, 0) rotate(-15deg);
}

.text-button {
  justify-content: flex-start;
  color: #050507;
}

.menu-toggle {
  display: none;
  position: relative;
  z-index: 120;
  width: 3rem;
  height: 3rem;
  background: transparent;
}

.menu-toggle span {
  display: block;
  width: 1.6rem;
  height: 1px;
  margin: 0.34rem auto;
  background: var(--color-text);
  transition: transform 300ms var(--ease-primary);
}

.menu-toggle.is-open span:first-child {
  transform: translateY(0.33rem) rotate(45deg);
}

.menu-toggle.is-open span:last-child {
  transform: translateY(-0.33rem) rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  align-content: center;
  padding: var(--page-padding);
  background: #050507;
  clip-path: inset(0 0 100% 0);
  pointer-events: none;
  transition: clip-path 600ms var(--ease-expo);
}

.mobile-menu.is-open {
  clip-path: inset(0);
  pointer-events: auto;
}

.mobile-menu nav {
  display: grid;
  gap: 0.5rem;
}

.mobile-menu nav a {
  opacity: 0;
  transform: translate3d(0, 2rem, 0);
  font-size: clamp(3rem, 14vw, 7rem);
  font-weight: 900;
  line-height: 0.9;
  text-transform: uppercase;
  transition: opacity 420ms var(--ease-primary), transform 560ms var(--ease-expo);
}

.mobile-menu.is-open nav a {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.mobile-menu.is-open nav a:nth-child(1) { transition-delay: 120ms; }
.mobile-menu.is-open nav a:nth-child(2) { transition-delay: 180ms; }
.mobile-menu.is-open nav a:nth-child(3) { transition-delay: 240ms; }
.mobile-menu.is-open nav a:nth-child(4) { transition-delay: 300ms; }

.mobile-menu__meta {
  opacity: 0;
  transform: translate3d(0, 1rem, 0);
  transition: opacity 420ms var(--ease-primary), transform 560ms var(--ease-expo);
}

.mobile-menu.is-open .mobile-menu__meta {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  transition-delay: 380ms;
}

.mobile-menu__meta {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 3rem;
  color: var(--color-text-muted);
}

.mobile-menu__meta a {
  font-size: 1rem;
  overflow-wrap: anywhere;
}

.mobile-menu__graphic {
  position: absolute;
  right: -20vw;
  bottom: -20vw;
  width: 58vw;
  aspect-ratio: 1;
  border-radius: 50%;
  border: 1px solid var(--color-border);
  background: radial-gradient(circle at 35% 30%, var(--color-accent), transparent 56%);
  opacity: 0.45;
}

.preloader {
  --eyex-accent: var(--color-accent);
  position: fixed;
  inset: 0;
  z-index: 300;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #050505;
  color: var(--color-text);
}

.preloader.is-disabled {
  display: none;
}

.preloader__ambient {
  position: absolute;
  inset: -18%;
  background:
    radial-gradient(circle at 50% 50%, rgba(191,255,0,0.16), transparent 12%),
    radial-gradient(circle at 50% 50%, rgba(247,247,240,0.06), transparent 28%),
    linear-gradient(rgba(255,255,255,0.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.018) 1px, transparent 1px);
  background-size: auto, auto, 4rem 4rem, 4rem 4rem;
  opacity: 0;
  transform: perspective(1000px) rotateX(58deg) translateY(10rem) scale(1.1);
}

.preloader__scan {
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(62vw, 48rem);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(191,255,0,0.86), transparent);
  opacity: 0;
  transform: translate3d(-50%, -50%, 0) scaleX(0.08);
  filter: drop-shadow(0 0 1rem rgba(191,255,0,0.42));
}

.preloader__stage {
  position: relative;
  z-index: 2;
  display: grid;
  width: min(48rem, 82vw);
  justify-items: center;
  perspective: 1200px;
  transform-style: preserve-3d;
}

.preloader__meta {
  display: flex;
  justify-content: space-between;
  width: min(28rem, 82vw);
  margin-top: 1.2rem;
  color: var(--eyex-accent);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.24em;
  opacity: 0;
  text-transform: uppercase;
}

.preloader__brand {
  display: grid;
  justify-items: center;
  margin-top: -1.2rem;
  overflow: hidden;
  opacity: 0;
  text-align: center;
  text-transform: uppercase;
}

.preloader__brand strong {
  display: block;
  color: var(--color-text);
  font-size: clamp(3.8rem, 8vw, 7.5rem);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 0.86;
}

.preloader__brand span {
  display: block;
  margin-top: 0.7rem;
  color: var(--eyex-accent);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.48em;
}

.digital-eye {
  width: clamp(19rem, 42vw, 42rem);
  overflow: visible;
  transform: translateZ(0);
  filter: drop-shadow(0 0 1.5rem rgba(191,255,0,0.06));
}

.digital-eye path,
.digital-eye circle {
  vector-effect: non-scaling-stroke;
}

.digital-eye__light path {
  fill: none;
  stroke: var(--eyex-accent);
  stroke-width: 2;
  stroke-linecap: round;
  opacity: 0.55;
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
}

.digital-eye__lid {
  fill: none;
  stroke: rgba(247,247,240,0.88);
  stroke-width: 5;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
}

.digital-eye__lid--lower {
  stroke: rgba(247,247,240,0.62);
}

.digital-eye__outline {
  fill: none;
  stroke: rgba(247,247,240,0.96);
  stroke-width: 4.6;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
  filter: drop-shadow(0 0 0.7rem rgba(247,247,240,0.42));
}

.digital-eye__iris {
  opacity: 0;
  transform-box: fill-box;
  transform-origin: center;
}

.digital-eye__iris-glow {
  fill: url(#eyexIrisGradient);
  opacity: 0.42;
}

.digital-eye__progress-base,
.digital-eye__progress {
  fill: none;
  stroke-width: 2;
  transform-box: fill-box;
  transform-origin: center;
  transform: rotate(-90deg);
}

.digital-eye__progress-base {
  stroke: rgba(247,247,240,0.1);
}

.digital-eye__progress {
  stroke: var(--eyex-accent);
  stroke-dasharray: 0 100;
  filter: drop-shadow(0 0 0.5rem rgba(191,255,0,0.5));
}

.digital-eye__ring {
  fill: none;
  stroke: rgba(191,255,0,0.64);
  stroke-width: 1.4;
  transform-box: fill-box;
  transform-origin: center;
}

.digital-eye__ring--middle {
  stroke: rgba(247,247,240,0.44);
}

.digital-eye__radials path,
.digital-eye__x-pattern path,
.digital-eye__pupil path {
  fill: none;
  stroke-linecap: round;
}

.digital-eye__radials path {
  stroke: rgba(247,247,240,0.42);
  stroke-width: 1;
}

.digital-eye__x-pattern path {
  stroke: var(--eyex-accent);
  stroke-width: 3;
  opacity: 0.82;
}

.digital-eye__pupil {
  transform-box: fill-box;
  transform-origin: center;
}

.digital-eye__pupil circle:first-child {
  fill: #050505;
  stroke: rgba(191,255,0,0.5);
  stroke-width: 1.5;
}

.digital-eye__pupil path {
  stroke: rgba(247,247,240,0.45);
  stroke-width: 1.6;
}

.digital-eye__reflection {
  fill: rgba(247,247,240,0.88);
  stroke: none;
}

.preloader__iris-wipe {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 4;
  width: 12vmax;
  aspect-ratio: 1;
  border-radius: 50%;
  background: #050505;
  opacity: 0;
  pointer-events: none;
  transform: translate3d(-50%, -50%, 0) scale(0);
}

.page-transition {
  position: fixed;
  inset: 0;
  z-index: 260;
  background: var(--color-accent);
  pointer-events: none;
  transform: translateY(101%);
}

.scroll-progress {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 200;
  width: 0.35rem;
  height: 100vh;
  background: transparent;
}

.scroll-progress span {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 999px;
  background: var(--color-accent);
  transform: scaleY(0);
  transform-origin: top;
}

.cursor {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 250;
  display: grid;
  width: 1rem;
  aspect-ratio: 1;
  place-items: center;
  border-radius: 50%;
  background: var(--color-accent);
  color: #050507;
  font-size: 0.62rem;
  font-weight: 900;
  pointer-events: none;
  transform: translate3d(-50%, -50%, 0);
  transition: width 180ms var(--ease-primary), background 180ms var(--ease-primary);
  mix-blend-mode: difference;
}

.cursor.is-active {
  width: 4.8rem;
  background: var(--color-text);
  mix-blend-mode: normal;
}

.hero {
  display: grid;
  min-height: 100svh;
  align-items: center;
  overflow: hidden;
  padding-top: var(--header-height);
}

.hero::after,
.selected-work::before,
.why::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at 78% 22%, rgba(191,255,0,0.12), transparent 24%), radial-gradient(circle at 18% 80%, rgba(255,255,255,0.06), transparent 24%);
}

.hero__stars {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle, rgba(255,255,255,0.9) 1px, transparent 1px),
    radial-gradient(circle, rgba(191,255,0,0.8) 1px, transparent 1px);
  background-position: 1rem 2rem, 5rem 8rem;
  background-size: 10rem 10rem, 18rem 18rem;
  opacity: 0.32;
}

.hero-particle-network {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  opacity: 0.9;
  pointer-events: none;
}

.hero__copy {
  position: relative;
  z-index: 3;
  max-width: 67rem;
  pointer-events: none;
}

.hero__copy a,
.hero__copy button {
  pointer-events: auto;
}

.hero-title {
  margin: 2rem 0;
}

.hero-title span {
  display: block;
}

.hero-title .accent {
  color: var(--color-accent);
  font-size: 0.94em;
}

.hero-title--changing {
  --hero-word-ch: 9;
  max-width: min(100%, 12ch);
}

.hero-title__static {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
}

.hero-word-mask {
  position: relative;
  display: block;
  width: min(100%, calc(var(--hero-word-ch) * 0.72em));
  height: 0.94em;
  margin: 0.04em 0 0.02em;
  overflow: hidden;
  color: var(--color-accent);
  line-height: 0.86;
  contain: layout paint;
  perspective: 900px;
}

.hero-title .hero-changing-word {
  position: absolute;
  inset: 0 auto auto 0;
  display: flex;
  align-items: flex-start;
  white-space: nowrap;
  opacity: 0;
  will-change: transform, opacity, filter;
}

.hero-title .hero-changing-word.is-active {
  opacity: 1;
}

.hero-title .hero-char,
.hero-title .hero-word-dot {
  display: inline-block;
  transform-origin: 50% 82%;
  will-change: transform, opacity, filter;
}

.hero-title .hero-word-dot {
  color: #12d8ff;
  margin-left: 0.04em;
  text-shadow: 0 0 0.22em rgba(18, 216, 255, 0.7);
}

.hero-title__suffix {
  font-size: 0.9em;
}

.hero__lead {
  max-width: 43rem;
  color: var(--color-text-muted);
  font-size: clamp(1rem, 1.6vw, 1.35rem);
  line-height: 1.65;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2.4rem;
}

.hero__visual {
  position: absolute;
  inset: 7rem 0 0 48%;
  z-index: 2;
  perspective: 1000px;
  transform-style: preserve-3d;
}

.service-universe {
  --pointer-x: 50%;
  --pointer-y: 50%;
  min-height: calc(100svh - 7rem);
  overflow: visible;
}

.service-universe__glow {
  position: absolute;
  inset: 5% 4% 7% 0;
  background:
    radial-gradient(circle at var(--pointer-x) var(--pointer-y), rgba(191,255,0,0.12), transparent 18rem),
    radial-gradient(circle at 64% 54%, rgba(18,216,255,0.18), transparent 17rem),
    radial-gradient(circle at 38% 74%, rgba(255,77,157,0.11), transparent 15rem);
  opacity: 0.82;
  pointer-events: none;
  transition: opacity 240ms var(--ease-primary);
}

.service-universe__line {
  position: absolute;
  pointer-events: none;
  background: rgba(18,216,255,0.18);
  box-shadow: 0 0 1.1rem rgba(18,216,255,0.16);
  transform-origin: left center;
}

.service-universe__line--horizontal {
  left: 21%;
  right: -4%;
  top: 55%;
  height: 1px;
}

.service-universe__line--vertical {
  top: 12%;
  bottom: 2%;
  left: 66%;
  width: 1px;
  background: rgba(191,255,0,0.1);
  transform-origin: top center;
}

.service-universe__line--diagonal {
  width: 42%;
  height: 1px;
  left: 9%;
  top: 35%;
  opacity: 0.42;
  transform: rotate(-14deg);
}

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

.service-planet {
  --planet-size: 120px;
  --planet-x: 50%;
  --planet-y: 50%;
  --planet-depth: 1;
  position: absolute;
  left: var(--planet-x);
  top: var(--planet-y);
  z-index: calc(10 + var(--planet-index, 1));
  width: var(--planet-size);
  aspect-ratio: 1;
  opacity: 1;
  transform: translate3d(-50%, -50%, 0);
  transition: opacity 320ms var(--ease-primary);
}

.service-universe.has-active .service-planet:not(.is-active) {
  opacity: 0.58;
}

.service-planet__parallax,
.service-planet__float {
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
}

.service-planet__button {
  position: relative;
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  width: 100%;
  aspect-ratio: 1;
  padding: 0;
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  border-radius: 50%;
  transform-style: preserve-3d;
  filter: saturate(1.04) brightness(0.96);
  transition: filter 300ms var(--ease-primary), transform 300ms var(--ease-primary);
}

.service-planet__button:hover,
.service-planet__button:focus-visible,
.service-planet.is-active .service-planet__button {
  outline: 0;
  filter: saturate(1.3) brightness(1.12);
}

.service-planet__visual {
  position: absolute;
  inset: 0;
  overflow: hidden;
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 22%, rgba(247,247,240,0.72), transparent 7%),
    radial-gradient(circle at 64% 66%, rgba(0,0,0,0.54), transparent 38%),
    radial-gradient(circle at 42% 38%, var(--planet-a), var(--planet-b) 42%, var(--planet-c) 78%);
  box-shadow:
    inset -1.25rem -1.4rem 2.6rem rgba(0,0,0,0.45),
    inset 0.65rem 0.5rem 1.8rem rgba(255,255,255,0.08),
    0 0 calc(var(--planet-size) * 0.24) rgba(var(--planet-glow), 0.26);
}

.service-planet__visual::before,
.service-planet__visual::after {
  content: "";
  position: absolute;
  inset: -18%;
  border-radius: 50%;
  pointer-events: none;
}

.service-planet__visual::before {
  background:
    repeating-linear-gradient(8deg, transparent 0 0.7rem, rgba(255,255,255,0.08) 0.74rem 0.82rem, transparent 0.86rem 1.35rem),
    radial-gradient(circle at 26% 28%, rgba(255,255,255,0.35), transparent 8%);
  mix-blend-mode: overlay;
  opacity: 0.72;
}

.service-planet__visual::after {
  inset: 2%;
  border: 1px solid rgba(247,247,240,0.14);
  background: linear-gradient(140deg, rgba(255,255,255,0.18), transparent 32%, rgba(0,0,0,0.16) 72%);
}

.service-planet__visual--cyan {
  --planet-a: #8ffff0;
  --planet-b: #24d0ae;
  --planet-c: #063d4b;
  --planet-glow: 18,216,255;
}

.service-planet__visual--blue {
  --planet-a: #d5ffff;
  --planet-b: #28aee7;
  --planet-c: #0a304c;
  --planet-glow: 18,216,255;
}

.service-planet__visual--magenta {
  --planet-a: #ffadd4;
  --planet-b: #e42d83;
  --planet-c: #3c0b32;
  --planet-glow: 255,77,157;
}

.service-planet__visual--amber {
  --planet-a: #ffd992;
  --planet-b: #a85f0a;
  --planet-c: #211006;
  --planet-glow: 255,177,65;
}

.service-planet__visual--rose,
.service-planet__visual--pink {
  --planet-a: #ffe5f5;
  --planet-b: #ea6eb7;
  --planet-c: #3a102d;
  --planet-glow: 255,77,157;
}

.service-planet__rings {
  position: absolute;
  left: -35%;
  top: 44%;
  z-index: 2;
  width: 170%;
  height: 34%;
  border: 3px solid rgba(255,177,65,0.26);
  border-radius: 50%;
  box-shadow: 0 0 0.85rem rgba(255,177,65,0.16);
  transform: rotate(-9deg);
  pointer-events: none;
}

.service-planet__focus {
  position: absolute;
  inset: -12%;
  border: 1px solid var(--color-accent);
  border-radius: 50%;
  opacity: 0;
  transform: scale(1.24);
  transition: opacity 280ms var(--ease-primary), transform 560ms var(--ease-primary);
  pointer-events: none;
  box-shadow: 0 0 1.6rem rgba(191,255,0,0.18);
}

.service-planet__button:hover .service-planet__focus,
.service-planet__button:focus-visible .service-planet__focus,
.service-planet.is-active .service-planet__focus {
  opacity: 1;
  transform: scale(1.02);
}

.service-planet__label {
  position: absolute;
  left: 50%;
  top: calc(100% + 0.55rem);
  display: grid;
  justify-items: center;
  gap: 0.18rem;
  min-width: max-content;
  color: rgba(247,247,240,0.45);
  font-size: 0.56rem;
  font-weight: 900;
  letter-spacing: 0.32em;
  text-align: center;
  text-transform: uppercase;
  transform: translateX(-50%);
  transition: color 260ms var(--ease-primary), opacity 260ms var(--ease-primary);
}

.service-planet__label b {
  color: rgba(247,247,240,0.34);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
}

.service-planet.is-active .service-planet__label,
.service-planet__button:hover .service-planet__label,
.service-planet__button:focus-visible .service-planet__label {
  color: var(--color-accent);
  opacity: 1;
}

.planet-info-card {
  position: absolute;
  z-index: 40;
  width: min(16.75rem, 82vw);
  padding: 0.9rem;
  border: 1px solid rgba(191,255,0,0.28);
  border-radius: 0.45rem;
  background: rgba(5,7,8,0.76);
  box-shadow: 0 0 2.4rem rgba(191,255,0,0.08);
  opacity: 0;
  pointer-events: none;
  backdrop-filter: blur(18px);
  clip-path: inset(0 0 100% 0);
}

.planet-info-card.is-visible {
  pointer-events: auto;
}

.planet-info-card small,
.planet-info-card li,
.planet-info-card a {
  color: var(--color-text-muted);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.planet-info-card small {
  display: block;
  color: var(--color-accent);
}

.planet-info-card strong {
  display: block;
  margin: 0.42rem 0;
  font-size: 1.12rem;
}

.planet-info-card p {
  color: var(--color-text-muted);
  font-size: 0.76rem;
  line-height: 1.55;
}

.planet-info-card ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.35rem 0.8rem;
  margin: 0.8rem 0;
  padding: 0;
  list-style: none;
}

.planet-info-card a {
  display: inline-flex;
  margin-top: 0.45rem;
  color: var(--color-text);
}

.planet-card-line {
  position: absolute;
  z-index: 35;
  height: 1px;
  background: linear-gradient(90deg, rgba(191,255,0,0.48), rgba(18,216,255,0.14));
  opacity: 0;
  transform-origin: left center;
  pointer-events: none;
}

.scroll-cue {
  position: absolute;
  bottom: 2rem;
  right: var(--page-padding);
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 0.85rem;
  color: var(--color-text-muted);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.scroll-cue span {
  width: 2.5rem;
  height: 1px;
  background: currentColor;
}

.interactive-reveal {
  display: grid;
  min-height: 128svh;
  place-items: start center;
  overflow: hidden;
  padding-top: 7rem;
  background: radial-gradient(circle at 50% 60%, rgba(86,32,180,0.35), transparent 36%), #07001a;
}

.section-intro--center {
  position: relative;
  z-index: 2;
  max-width: 70rem;
  text-align: center;
}

.portal {
  --mx: 50%;
  --my: 52%;
  position: sticky;
  top: 19vh;
  width: min(70rem, calc(100vw - (var(--page-padding) * 2)));
  height: min(34rem, 52vh);
  margin-top: 8vh;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 0.6rem;
  background: #090910;
  perspective: 1200px;
  animation: portal-breathe 7s ease-in-out infinite;
}

.portal img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.12);
  filter: saturate(0.9) contrast(1.08);
  clip-path: circle(10rem at var(--mx) var(--my));
  transition: clip-path 140ms linear;
}

.portal::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: radial-gradient(circle at var(--mx) var(--my), transparent 0 8rem, rgba(2,2,4,0.72) 13rem), linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: auto, 100% 3rem;
  pointer-events: none;
}

.portal__glass {
  position: absolute;
  z-index: 2;
  right: 1rem;
  bottom: 1rem;
  width: min(22rem, calc(100% - 2rem));
  padding: 1.1rem;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(4,4,8,0.62);
  backdrop-filter: blur(18px);
}

.portal__glass span {
  color: var(--color-accent);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.portal__glass strong {
  display: block;
  margin-top: 0.6rem;
  font-size: clamp(1.5rem, 3vw, 3rem);
  line-height: 0.95;
  text-transform: uppercase;
}

.future-eye {
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  position: sticky;
  top: 15vh;
  isolation: isolate;
  width: min(74rem, calc(100vw - (var(--page-padding) * 2)));
  aspect-ratio: 1.78;
  margin-top: 8vh;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 0.75rem;
  background: #050507;
  box-shadow: 0 4rem 10rem rgba(0,0,0,0.56);
  transform: perspective(1200px) rotateX(var(--tilt-y)) rotateY(var(--tilt-x));
  transform-style: preserve-3d;
  transition: border-color 420ms var(--ease-primary), transform 260ms var(--ease-primary);
}

.future-eye::before,
.future-eye::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
}

.future-eye::before {
  background:
    radial-gradient(circle at 50% 50%, transparent 0 26%, rgba(191,255,0,0.15) 27%, transparent 31%),
    radial-gradient(circle at 50% 50%, transparent 0 46%, rgba(5,5,7,0.48) 78%);
  mix-blend-mode: screen;
}

.future-eye::after {
  background: linear-gradient(rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size: 100% 8px;
  opacity: 0.28;
}

.future-eye:hover,
.future-eye.is-playing,
.future-eye.is-ended {
  border-color: rgba(191,255,0,0.66);
}

.future-eye__poster,
.future-eye__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.future-eye__poster {
  z-index: 1;
  transform: scale(1.03);
  transition: opacity 620ms var(--ease-primary), transform 900ms var(--ease-expo), filter 620ms var(--ease-primary);
}

.future-eye__video {
  z-index: 2;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 520ms var(--ease-primary), transform 900ms var(--ease-expo), filter 520ms var(--ease-primary);
}

.future-eye.is-playing .future-eye__poster,
.future-eye.is-ended .future-eye__poster {
  opacity: 0;
  transform: scale(1.12);
}

.future-eye.is-playing .future-eye__video,
.future-eye.is-ended .future-eye__video {
  opacity: 1;
  transform: scale(1);
}

.future-eye.is-ended .future-eye__video {
  filter: brightness(0.16) blur(6px) saturate(0.75);
  transform: scale(1.03);
}

.future-eye__hud {
  position: absolute;
  inset: 1rem 1rem auto;
  z-index: 5;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  color: var(--color-accent);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  pointer-events: none;
}

.future-eye__controls {
  position: absolute;
  inset: 0;
  z-index: 6;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  justify-items: center;
  gap: clamp(1rem, 4vw, 4rem);
  padding: clamp(1rem, 4vw, 4rem);
  transition: opacity 420ms var(--ease-primary), transform 520ms var(--ease-expo);
}

.future-eye.is-playing .future-eye__controls,
.future-eye.is-ended .future-eye__controls {
  opacity: 0;
  pointer-events: none;
  transform: scale(0.96);
}

.future-eye__play {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  border: 1px solid rgba(247,247,240,0.28);
  border-radius: 999px;
  background: rgba(5,5,7,0.62);
  color: var(--color-text);
  cursor: pointer;
  backdrop-filter: blur(18px);
  transition: transform 320ms var(--ease-primary), background 320ms var(--ease-primary), border-color 320ms var(--ease-primary);
}

.future-eye__play:hover,
.future-eye__play:focus-visible {
  border-color: var(--color-accent);
  background: rgba(191,255,0,0.14);
  transform: translate3d(0, -0.35rem, 0);
}

.future-eye__play span {
  width: 0;
  height: 0;
  border-top: 0.45rem solid transparent;
  border-bottom: 0.45rem solid transparent;
  border-left: 0.7rem solid currentColor;
}

.future-eye__play--main {
  width: clamp(6rem, 13vw, 10rem);
  aspect-ratio: 1;
  border-color: rgba(191,255,0,0.76);
  background: var(--color-accent);
  color: #050507;
  box-shadow: 0 0 0 1.2rem rgba(191,255,0,0.08), 0 2rem 5rem rgba(191,255,0,0.2);
}

.future-eye__play--main span {
  border-top-width: 0.8rem;
  border-bottom-width: 0.8rem;
  border-left-width: 1.2rem;
  transform: translateX(0.1rem);
}

.future-eye__play--side {
  min-height: 3.6rem;
  padding: 0 1.15rem;
  color: #f7f7f0;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.future-eye__end {
  position: absolute;
  inset: 0;
  z-index: 8;
  display: grid;
  place-content: center;
  justify-items: center;
  gap: 1rem;
  padding: var(--page-padding);
  background: rgba(2,2,4,0.86);
  backdrop-filter: blur(8px);
  text-align: center;
  opacity: 0;
  pointer-events: none;
  transform: translate3d(0, 1.5rem, 0);
  transition: opacity 520ms var(--ease-primary), transform 640ms var(--ease-expo);
}

.future-eye.is-ended .future-eye__end {
  opacity: 1;
  pointer-events: auto;
  transform: translate3d(0, 0, 0);
}

.future-eye__end p {
  color: var(--color-accent);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.26em;
  text-transform: uppercase;
}

.future-eye__end strong {
  max-width: 36rem;
  font-size: clamp(2.4rem, 5.8vw, 5.6rem);
  font-weight: 900;
  line-height: 0.9;
  text-transform: uppercase;
}

.future-eye__end div {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

.future-eye__end button {
  color: var(--color-text);
  cursor: pointer;
}

.future-eye__end .button--ghost:hover {
  color: #050507;
}

.future-eye__end .button--ghost:focus-visible {
  color: #050507;
}

.future-eye.is-playing + .reveal-links,
.future-eye.is-ended + .reveal-links {
  opacity: 0.24;
}

.reveal-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem 3rem;
  margin-top: 2rem;
  color: var(--color-text-muted);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.intro {
  padding-block: clamp(6rem, 12vw, 13rem);
}

.intro__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(18rem, 0.8fr);
  gap: clamp(3rem, 10vw, 10rem);
  align-items: end;
}

.intro .section-kicker,
.client-marquee .section-kicker,
.results .section-kicker {
  color: #111;
}

.intro .section-title,
.results .section-title {
  margin-top: 2rem;
}

.intro__body {
  display: grid;
  gap: 2rem;
}

.client-marquee {
  overflow: hidden;
  padding-block: 4rem;
  border-top: 1px solid rgba(5,5,7,0.1);
}

.marquee {
  display: flex;
  width: max-content;
  margin-top: 2rem;
  white-space: nowrap;
  animation: marquee 32s linear infinite;
}

.marquee:hover {
  animation-play-state: paused;
}

.marquee__group {
  display: flex;
  align-items: center;
}

.marquee span {
  color: transparent;
  -webkit-text-stroke: 1px rgba(5,5,7,0.55);
  font-size: clamp(3.4rem, 8vw, 8rem);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1;
  text-transform: uppercase;
}

.marquee i {
  margin-inline: clamp(1rem, 3vw, 3rem);
  color: #050507;
  font-style: normal;
  font-size: clamp(2rem, 5vw, 4rem);
}

.stats-band {
  padding: clamp(3rem, 6vw, 5rem) var(--page-padding);
  background: var(--color-accent);
  color: #050507;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: rgba(5,5,7,0.16);
}

.stat-card {
  min-height: 13rem;
  padding: clamp(1.4rem, 3vw, 2.4rem);
  background: var(--color-accent);
}

.stat-card strong {
  display: block;
  font-size: clamp(3rem, 6vw, 7rem);
  font-weight: 900;
  line-height: 0.9;
}

.stat-card span {
  display: block;
  margin-top: 1.25rem;
  font-weight: 900;
  text-transform: uppercase;
}

.stat-card p {
  margin-top: 0.45rem;
  color: rgba(5,5,7,0.68);
}

.services,
.portfolio-explorer,
.selected-work,
.feature-showcase,
.final-cta {
  overflow: hidden;
  padding-block: clamp(6rem, 12vw, 12rem);
}

.section-head,
.selected-work__top {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  align-items: end;
  margin-bottom: clamp(3rem, 7vw, 6rem);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  perspective: 1200px;
}

.service-grid:has(.service-card:hover) .service-card:not(:hover) {
  opacity: 0.62;
  transform: translate3d(0, 1rem, -2rem) scale(0.985);
}

.service-card {
  position: relative;
  min-height: clamp(27rem, 40vw, 39rem);
  overflow: hidden;
  border: 1px solid var(--color-border);
  border-radius: 0.4rem;
  background: var(--color-surface);
  transform-style: preserve-3d;
  transition: transform 450ms var(--ease-primary), border 300ms var(--ease-primary), opacity 300ms var(--ease-primary);
}

.service-card__hint {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 3;
  color: var(--color-text-muted);
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.service-card:focus-within,
.service-card:hover,
.service-card.is-open {
  border-color: rgba(191,255,0,0.7);
}

.service-card__image {
  position: absolute;
  inset: 0;
  opacity: 0.2;
  transition: opacity 450ms var(--ease-primary), transform 600ms var(--ease-primary);
}

.service-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.08);
}

.service-card:hover .service-card__image,
.service-card.is-open .service-card__image {
  opacity: 0.56;
  transform: translateZ(3rem);
}

.service-card__content {
  position: relative;
  z-index: 2;
  display: grid;
  height: 100%;
  min-height: inherit;
  align-content: space-between;
  padding: clamp(1.2rem, 2vw, 1.8rem);
}

.service-card__content span {
  color: var(--color-accent);
  font-size: 0.78rem;
  font-weight: 900;
}

.service-card h3 {
  font-size: clamp(2rem, 3.4vw, 4.2rem);
  line-height: 0.92;
  text-transform: uppercase;
}

.service-card p {
  max-height: 0;
  margin-top: 1rem;
  overflow: hidden;
  color: #d5d5cd;
  line-height: 1.55;
  transition: max-height 420ms var(--ease-primary);
}

.service-card:hover p,
.service-card.is-open p {
  max-height: 12rem;
}

.service-card a {
  justify-self: start;
  color: var(--color-accent);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.portfolio-explorer {
  background: radial-gradient(circle at 50% 48%, rgba(191,255,0,0.08), transparent 32%), var(--color-bg);
}

.portfolio-pod {
  position: relative;
  display: grid;
  width: min(34rem, 88vw);
  aspect-ratio: 1.35;
  margin: clamp(3rem, 7vw, 6rem) auto 2rem;
  place-items: center;
  cursor: pointer;
  perspective: 1200px;
}

.portfolio-pod::after {
  content: "";
  position: absolute;
  inset: 18% 10%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(191,255,0,0.26), transparent 66%);
  filter: blur(22px);
  opacity: 0.58;
  transform: translateZ(-6rem);
  transition: opacity 500ms var(--ease-primary), transform 700ms var(--ease-expo);
}

.portfolio-pod__shell {
  position: absolute;
  inset: 0;
  transform-style: preserve-3d;
  transition: transform 700ms var(--ease-expo);
}

.portfolio-pod:hover .portfolio-pod__shell,
.portfolio-pod.is-open .portfolio-pod__shell {
  transform: rotateX(54deg) rotateZ(-14deg);
}

.portfolio-pod:hover::after,
.portfolio-pod.is-open::after {
  opacity: 0.95;
  transform: translate3d(0, 1.5rem, -8rem) scale(1.15);
}

.portfolio-pod__shell span {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(191,255,0,0.38);
  border-radius: 0.5rem;
  background: linear-gradient(135deg, rgba(191,255,0,0.14), rgba(255,255,255,0.02));
  transform: translateZ(calc(var(--i, 0) * 2rem));
}

.portfolio-pod__shell span:nth-child(1) { --i: 0; }
.portfolio-pod__shell span:nth-child(2) { --i: 1; }
.portfolio-pod__shell span:nth-child(3) { --i: 2; }
.portfolio-pod__shell span:nth-child(4) { --i: 3; }

.portfolio-pod__content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.portfolio-pod__content p,
.portfolio-pod__content span {
  color: var(--color-accent);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.portfolio-pod__content h3 {
  margin: 0.8rem 0;
  font-size: clamp(2.6rem, 6vw, 6rem);
  line-height: 0.9;
  text-transform: uppercase;
}

.portfolio-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}

.portfolio-tabs button {
  min-height: 2.8rem;
  padding: 0.75rem 1rem;
  border: 1px solid var(--color-border);
  border-radius: 999px;
  background: transparent;
  color: var(--color-text-muted);
  cursor: pointer;
}

.portfolio-tabs button.is-active {
  border-color: var(--color-accent);
  color: var(--color-accent);
}

.work-controls {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.work-controls button,
.footer-contact button {
  display: grid;
  width: 3rem;
  aspect-ratio: 1;
  place-items: center;
  border: 1px solid var(--color-border);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
}

.work-controls span {
  min-width: 4.8rem;
  color: var(--color-text-muted);
  font-size: 0.82rem;
  font-weight: 900;
}

.work-viewport {
  overflow-x: auto;
  overflow-y: hidden;
  padding-bottom: 1.2rem;
  cursor: grab;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.work-viewport::-webkit-scrollbar {
  display: none;
}

.work-viewport.is-dragging {
  cursor: grabbing;
  user-select: none;
}

.work-track {
  display: flex;
  gap: 1.4rem;
  width: max-content;
}

.project-card {
  position: relative;
  display: block;
  width: min(36rem, 82vw);
  height: clamp(31rem, 56vw, 42rem);
  overflow: hidden;
  border: 1px solid var(--color-border);
  border-radius: 0.6rem;
  background: #111;
  scroll-snap-align: start;
  transform: perspective(1200px) rotateY(4deg) scale(0.94);
  opacity: 0.58;
  transition: transform 520ms var(--ease-primary), opacity 520ms var(--ease-primary), border-color 300ms var(--ease-primary);
}

.project-card.is-active,
.project-card:hover,
.project-card:focus-visible {
  border-color: rgba(191,255,0,0.58);
  opacity: 1;
  transform: perspective(1200px) rotateY(0deg) scale(1);
}

.project-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.08);
  transition: transform 700ms var(--ease-primary);
}

.project-card:hover img {
  transform: scale(1.02);
}

.project-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent 30%, rgba(0,0,0,0.85));
}

.project-card__content {
  position: absolute;
  inset: auto 0 0;
  z-index: 2;
  padding: 1.5rem;
}

.project-card__meta {
  display: flex;
  justify-content: space-between;
  color: var(--color-accent);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.project-card strong {
  display: block;
  margin-top: 7rem;
  color: var(--color-accent);
  font-size: clamp(3rem, 7vw, 6.8rem);
  line-height: 0.8;
}

.project-card h3 {
  margin: 1rem 0 0.4rem;
  font-size: clamp(1.8rem, 3vw, 3rem);
}

.project-card p {
  max-width: 29rem;
  color: #d8d8d1;
  line-height: 1.5;
}

.work-progress {
  height: 2px;
  margin-top: 1rem;
  background: rgba(255,255,255,0.12);
}

.work-progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--color-accent);
  transform: scaleX(0);
  transform-origin: left;
}

.results {
  padding-block: clamp(6rem, 11vw, 11rem);
}

.results-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-top: 4rem;
  background: rgba(5,5,7,0.12);
}

.result-card {
  min-height: 18rem;
  padding: 1.5rem;
  background: #f5f5ef;
}

.result-card span {
  color: #616159;
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.result-card strong {
  display: block;
  margin: 4rem 0 0.5rem;
  font-size: clamp(4rem, 8vw, 8rem);
  line-height: 0.85;
}

.result-card p {
  color: #55554f;
}

.why {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(2rem, 6vw, 6rem);
  min-height: 150svh;
  padding-block: clamp(6rem, 10vw, 10rem);
}

.why__sticky {
  position: sticky;
  top: 8rem;
  align-self: start;
}

.why__sticky .section-title {
  margin-top: 2rem;
  font-size: clamp(3rem, 6vw, 7rem);
}

.why__progress {
  width: 100%;
  height: 2px;
  margin-top: 3rem;
  background: rgba(255,255,255,0.12);
}

.why__progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--color-accent);
  transform: scaleX(0.2);
  transform-origin: left;
}

.benefit-list {
  display: grid;
  gap: 1rem;
}

.benefit-card {
  min-height: 22rem;
  padding: clamp(1.3rem, 3vw, 2.5rem);
  border: 1px solid var(--color-border);
  border-radius: 0.5rem;
  background: rgba(255,255,255,0.035);
  opacity: 0.35;
  transform: perspective(900px) rotateX(7deg);
  transition: opacity 400ms var(--ease-primary), transform 400ms var(--ease-primary), border 400ms var(--ease-primary);
}

.benefit-card.is-active {
  border-color: rgba(191,255,0,0.55);
  opacity: 1;
  transform: none;
}

.benefit-card span {
  color: var(--color-accent);
  font-size: clamp(2rem, 5vw, 5rem);
  font-weight: 900;
}

.benefit-card h3 {
  margin: 2rem 0 1rem;
  font-size: clamp(2rem, 4vw, 4.7rem);
  line-height: 0.9;
  text-transform: uppercase;
}

.benefit-card p {
  max-width: 36rem;
  color: var(--color-text-muted);
  font-size: 1.08rem;
  line-height: 1.65;
}

.feature-showcase {
  display: grid;
  grid-template-columns: 1fr minmax(20rem, 0.85fr);
  gap: clamp(2rem, 7vw, 7rem);
  align-items: center;
  background: #050507;
}

.assistant-preview {
  position: relative;
  display: grid;
  gap: 1rem;
  padding: clamp(1.2rem, 3vw, 2.3rem);
  border: 1px solid var(--color-border);
  border-radius: 0.6rem;
  background: linear-gradient(145deg, rgba(255,255,255,0.1), rgba(255,255,255,0.03));
  box-shadow: 0 4rem 8rem rgba(0,0,0,0.42);
  transform: perspective(1200px) rotateY(-8deg) rotateX(4deg);
}

.assistant-preview__status {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-accent);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.assistant-preview__status span {
  width: 0.65rem;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--color-accent);
  animation: pulse-dot 1.3s infinite;
}

.message {
  max-width: 82%;
  padding: 1rem;
  border: 1px solid var(--color-border);
  border-radius: 0.55rem;
  color: #e7e7df;
  line-height: 1.5;
}

.message--user {
  justify-self: end;
  border-color: rgba(191,255,0,0.35);
  background: rgba(191,255,0,0.08);
}

.typing {
  display: flex;
  gap: 0.35rem;
  width: 5rem;
}

.typing span {
  width: 0.45rem;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--color-accent);
  animation: pulse-dot 1s infinite;
}

.typing span:nth-child(2) { animation-delay: 120ms; }
.typing span:nth-child(3) { animation-delay: 240ms; }

.assistant-preview__input {
  display: flex;
  justify-content: space-between;
  padding: 1rem;
  border-radius: 999px;
  background: #f5f5ef;
  color: #050507;
  font-weight: 800;
}

.assistant-preview__input i {
  font-style: normal;
}

.final-cta {
  min-height: 100svh;
  display: grid;
  align-content: center;
}

.final-cta::before {
  content: "";
  position: absolute;
  inset: 10% -20% auto auto;
  width: 55vw;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(191,255,0,0.18), transparent 62%);
}

.final-cta__title {
  position: relative;
  z-index: 2;
  margin: 2rem 0;
}

.site-footer {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 0.7fr 0.8fr;
  gap: 2rem;
  overflow: hidden;
  padding: clamp(4rem, 8vw, 7rem) var(--page-padding) 2rem;
  border-top: 1px solid var(--color-border);
  background: #090910;
}

.site-footer p {
  max-width: 28rem;
  margin-top: 1.2rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}

.site-footer nav,
.footer-contact {
  display: grid;
  align-content: start;
  gap: 0.8rem;
}

.footer-contact button {
  margin-top: 1rem;
}

.footer-wordmark {
  grid-column: 1 / -1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(247,247,240,0.22);
  font-size: clamp(6rem, 24vw, 28rem);
  font-weight: 900;
  line-height: 0.8;
  letter-spacing: 0;
}

.reveal-line,
.reveal-lines > span,
.reveal-mask,
.reveal-up {
  will-change: transform, opacity, clip-path;
}

@media (max-width: 1180px) {
  .service-grid,
  .stats-grid,
  .results-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero__visual {
    left: 44%;
  }

  .service-planet {
    width: calc(var(--planet-size) * 0.84);
  }
}

@media (max-width: 900px) {
  .cursor {
    display: none;
  }

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

  .menu-toggle {
    display: block;
  }

  .hero {
    min-height: 960px;
    align-items: start;
    padding-top: 8rem;
  }

  .digital-eye {
    width: clamp(20rem, 58vw, 34rem);
  }

  .hero__visual {
    inset: 36rem 0 auto 0;
    min-height: 27rem;
    height: 29rem;
  }

  .service-universe__line--vertical {
    left: 70%;
  }

  .service-planet {
    width: calc(var(--planet-size) * 0.68);
  }

  .planet-info-card {
    width: min(20rem, calc(100vw - 2rem));
  }

  .intro__grid,
  .why,
  .feature-showcase,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .section-head,
  .selected-work__top {
    display: grid;
  }

  .why__sticky {
    position: relative;
    top: 0;
  }

  .benefit-card {
    min-height: 18rem;
  }
}

@media (max-width: 640px) {
  .preloader__stage {
    width: 88vw;
  }

  .digital-eye {
    width: clamp(17rem, 78vw, 25rem);
  }

  .preloader__brand strong {
    font-size: clamp(3.1rem, 16vw, 5rem);
  }

  .preloader__brand span,
  .preloader__meta {
    font-size: 0.58rem;
    letter-spacing: 0.28em;
  }

  .preloader__meta {
    width: min(21rem, 88vw);
  }

  .section-kicker {
    gap: 0.55rem;
    max-width: 100%;
    font-size: 0.58rem;
    letter-spacing: 0.22em;
    line-height: 1.4;
  }

  .section-kicker span {
    width: 2rem;
    flex: 0 0 2rem;
  }

  .section-title {
    font-size: clamp(3rem, 16vw, 5.8rem);
  }

  .hero-title {
    font-size: clamp(3.05rem, 13vw, 5.2rem);
  }

  .hero-title--changing {
    max-width: 100%;
  }

  .hero-title__suffix {
    font-size: clamp(0.62em, 11vw, 0.76em);
  }

  .hero {
    min-height: 1030px;
  }

  .hero__actions,
  .reveal-links,
  .mobile-menu__meta {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .hero__visual {
    inset: 34rem 0 auto 0;
    min-height: 31rem;
    height: 33rem;
    transform: none;
  }

  .hero-particle-network {
    opacity: 0.58;
  }

  .service-universe__glow {
    inset: 0;
    opacity: 0.62;
  }

  .service-universe__line--horizontal {
    left: 7%;
    right: 3%;
    top: 54%;
  }

  .service-universe__line--vertical {
    left: 66%;
    top: 6%;
    bottom: 5%;
  }

  .service-universe__line--diagonal {
    left: 4%;
    top: 24%;
    width: 56%;
  }

  .service-planet {
    width: calc(var(--planet-size) * 0.56);
  }

  .service-planet__label {
    font-size: 0.48rem;
    letter-spacing: 0.24em;
  }

  .planet-info-card {
    padding: 0.9rem;
  }

  .planet-info-card strong {
    font-size: 1.08rem;
  }

  .planet-info-card p {
    font-size: 0.78rem;
  }

  .planet-info-card ul {
    grid-template-columns: 1fr;
    gap: 0.25rem;
  }

  .portal {
    height: 28rem;
  }

  .future-eye {
    top: 11vh;
    aspect-ratio: 0.78;
    width: min(100%, 35rem);
  }

  .future-eye__poster,
  .future-eye__video {
    object-position: center;
  }

  .future-eye__hud {
    flex-direction: column;
    align-items: flex-start;
    font-size: 0.58rem;
  }

  .future-eye__controls {
    grid-template-columns: 1fr;
    align-content: center;
  }

  .future-eye__play--side {
    min-height: 3.2rem;
  }

  .future-eye__end div,
  .future-eye__end .button {
    width: 100%;
  }

  .service-grid,
  .stats-grid,
  .results-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: 24rem;
  }

  .work-controls {
    justify-content: space-between;
  }

  .project-card {
    width: 84vw;
  }

  .site-footer {
    padding-bottom: 1rem;
  }
}

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

  .service-card p {
    max-height: 12rem;
  }

  .planet-info-card.is-visible {
    pointer-events: auto;
  }
}

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

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

  .preloader {
    display: none;
  }

  body.is-loading {
    overflow: auto;
  }

  .reveal-line,
  .reveal-lines > span,
  .reveal-mask,
  .reveal-up,
  .service-planet,
  .service-planet__parallax,
  .service-planet__float {
    opacity: 1 !important;
    transform: none !important;
    clip-path: none !important;
  }

  .hero-particle-network {
    opacity: 0.35;
  }
}
