@font-face {
  font-family: "Lobster";
  src: url("/assets/fonts/lobster-400.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Pacifico";
  src: url("/assets/fonts/pacifico-400.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "DM Mono";
  src: url("/assets/fonts/dm-mono-400.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "DM Mono";
  src: url("/assets/fonts/dm-mono-500.woff2") format("woff2");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: "Manrope";
  src: url("/assets/fonts/manrope-400.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Manrope";
  src: url("/assets/fonts/manrope-500.woff2") format("woff2");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: "Manrope";
  src: url("/assets/fonts/manrope-600.woff2") format("woff2");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: "Manrope";
  src: url("/assets/fonts/manrope-700.woff2") format("woff2");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

@font-face {
  font-family: "Manrope";
  src: url("/assets/fonts/manrope-800.woff2") format("woff2");
  font-style: normal;
  font-weight: 800;
  font-display: swap;
}

:root {
  --ink: #050913;
  --navy: #071650;
  --navy-2: #0a1d70;
  --blue: #173fdb;
  --electric: #315dff;
  --sky: #dcefff;
  --cream: #f4efe4;
  --paper: #fbfaf6;
  --gold: #d8c9ac;
  --pink: #9fe8f6;
  --grid-dark: rgba(158, 192, 255, 0.15);
  --grid-light: rgba(7, 22, 80, 0.13);
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-cinema: cubic-bezier(0.22, 0.75, 0.15, 1);
  --wind: 0px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
  background: var(--navy);
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--paper);
  background: var(--navy);
  font-family: "Manrope", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

body.is-loading {
  overflow: hidden;
}

::selection {
  color: var(--paper);
  background: var(--blue);
}

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

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

.page-section {
  position: relative;
}

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

.section-bloom {
  position: fixed;
  z-index: 440;
  top: 50%;
  left: 50%;
  width: 18vmax;
  aspect-ratio: 1;
  border-radius: 50%;
  pointer-events: none;
  background: radial-gradient(circle, var(--bloom-color, rgba(76, 112, 255, .36)), transparent 68%);
  filter: blur(22px);
  opacity: 0;
  transform: translate(-50%, -50%) scale(.2);
  mix-blend-mode: screen;
}

.section-bloom.is-pulsing {
  animation: section-bloom 1.15s var(--ease) both;
}

@keyframes section-bloom {
  0% { opacity: 0; transform: translate(-50%, -50%) scale(.2); }
  26% { opacity: .62; }
  100% { opacity: 0; transform: translate(-50%, -50%) scale(8); }
}

.page-transition {
  position: fixed;
  z-index: 900;
  inset: 0;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  pointer-events: none;
  visibility: hidden;
}

.page-transition > span {
  height: 100%;
  background: linear-gradient(145deg, rgba(255,255,255,.09), transparent 36%), rgba(5, 17, 73, .91);
  border-right: 1px solid rgba(173, 205, 255, .18);
  backdrop-filter: blur(24px) saturate(1.35);
  transform: translateY(-104%);
}

.page-transition > p {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  gap: 10px;
  justify-items: center;
  margin: 0;
  opacity: 0;
  transform: translate(-50%, -30%);
}

.page-transition > p i {
  color: var(--gold);
  font: 500 8px "DM Mono", monospace;
  font-style: normal;
  letter-spacing: .22em;
}

.page-transition > p b {
  white-space: nowrap;
  font-size: clamp(28px, 5vw, 82px);
  line-height: 1;
  letter-spacing: -.07em;
}

body.is-page-transitioning .page-transition { visibility: visible; }
body.is-page-transitioning .page-transition > span { animation: transition-slat 1.06s var(--ease-cinema) both; }
body.is-page-transitioning .page-transition > span:nth-child(2) { animation-delay: .035s; }
body.is-page-transitioning .page-transition > span:nth-child(3) { animation-delay: .07s; }
body.is-page-transitioning .page-transition > span:nth-child(4) { animation-delay: .105s; }
body.is-page-transitioning .page-transition > span:nth-child(5) { animation-delay: .14s; }
body.is-page-transitioning .page-transition > p { animation: transition-label 1.06s var(--ease) .08s both; }

@keyframes transition-slat {
  0% { transform: translateY(-104%); }
  42%, 58% { transform: translateY(0); }
  100% { transform: translateY(104%); }
}

@keyframes transition-label {
  0%, 22% { opacity: 0; transform: translate(-50%, -15%); filter: blur(10px); }
  43%, 58% { opacity: 1; transform: translate(-50%, -50%); filter: blur(0); }
  80%, 100% { opacity: 0; transform: translate(-50%, -75%); filter: blur(10px); }
}

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

.scroll-progress {
  position: fixed;
  z-index: 470;
  top: 0;
  right: 0;
  left: 0;
  height: 3px;
  pointer-events: none;
}

.scroll-progress i {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, #f4efe4 0%, #ffffff 34%, #8ee8f5 68%, #dcefff 100%);
  box-shadow: 0 0 14px rgba(116, 224, 244, 0.54);
  transform: scaleX(0);
  transform-origin: left;
}

/* Cinematic opening */
.intro {
  position: fixed;
  z-index: 1000;
  inset: 0;
  display: grid;
  place-content: center;
  justify-items: center;
  gap: 18px;
  overflow: hidden;
  color: white;
  background: var(--navy);
  transition: visibility 0s 1.5s;
}

.intro.is-done {
  visibility: hidden;
}

.intro__counter {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: start;
  min-width: 154px;
  font: 500 clamp(58px, 8vw, 112px)/0.8 "DM Mono", monospace;
  letter-spacing: -0.08em;
}

.intro__counter i {
  margin-left: 8px;
  color: var(--gold);
  font-size: 11px;
  font-style: normal;
  letter-spacing: 0;
}

.intro__word {
  position: relative;
  z-index: 3;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.25em;
}

.intro__line {
  position: relative;
  z-index: 3;
  width: min(300px, 66vw);
  height: 1px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.18);
}

.intro__line i {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--sky);
  transform: translateX(-100%);
}

.intro.is-running .intro__line i {
  animation: intro-load 1.25s var(--ease) forwards;
}

.intro > p {
  position: relative;
  z-index: 3;
  margin: 0;
  color: rgba(255, 255, 255, 0.48);
  font: 400 8px "DM Mono", monospace;
  letter-spacing: 0.18em;
}

.intro__curtain {
  position: absolute;
  z-index: 2;
  top: 0;
  bottom: 0;
  width: 51%;
  background: var(--navy);
  transition: transform 1.25s var(--ease-cinema) 0.12s;
}

.intro__curtain--left { left: 0; transform-origin: left; }
.intro__curtain--right { right: 0; transform-origin: right; }
.intro.is-done .intro__curtain--left { transform: translateX(-103%); }
.intro.is-done .intro__curtain--right { transform: translateX(103%); }
.intro.is-done .intro__counter,
.intro.is-done .intro__word,
.intro.is-done .intro__line,
.intro.is-done > p { opacity: 0; transition: opacity 0.25s; }

@keyframes intro-load { to { transform: translateX(0); } }

/* Slow 3D sticker rain */
.sticker-rain {
  position: fixed;
  z-index: 5;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  contain: layout paint;
}

.rain-drop {
  position: absolute;
  top: -32vh;
  left: var(--left);
  width: var(--size);
  opacity: var(--opacity);
  filter: blur(var(--blur)) saturate(1.08) drop-shadow(0 22px 24px rgba(0, 5, 35, 0.2));
  animation: rain-fall var(--duration) linear var(--delay) infinite;
  will-change: transform;
}

.rain-drop img {
  width: 100%;
  animation: rain-tumble var(--tumble) ease-in-out var(--delay) infinite alternate;
  will-change: transform;
}

.rain-drop.is-far {
  z-index: -1;
  filter: blur(1.4px) saturate(0.8);
}

@keyframes rain-fall {
  0% { transform: translate3d(calc(var(--wind) * -0.2), -24vh, 0); }
  45% { transform: translate3d(calc(var(--wind) + var(--sway)), 52vh, 0); }
  100% { transform: translate3d(calc(var(--wind) * 1.4), 142vh, 0); }
}

@keyframes rain-tumble {
  0% { transform: rotate(var(--from-rotate)) scale(0.94); }
  45% { transform: rotate(var(--mid-rotate)) scale(1.04) translateX(8px); }
  100% { transform: rotate(var(--to-rotate)) scale(0.96) translateX(-8px); }
}

/* Navigation */
.site-nav {
  position: fixed;
  z-index: 300;
  top: 0;
  right: 0;
  left: 0;
  display: grid;
  grid-template-columns: 1.1fr 1fr 2.6fr 0.8fr;
  align-items: start;
  gap: 20px;
  min-height: 88px;
  padding: 27px clamp(20px, 2.15vw, 42px) 17px;
  border-bottom: 1px solid rgba(176, 204, 255, 0.15);
  color: white;
  background: linear-gradient(to bottom, rgba(3, 12, 54, 0.76), rgba(3, 12, 54, 0));
  backdrop-filter: blur(0);
  transition: color 0.5s, background 0.5s, backdrop-filter 0.5s, transform 0.6s var(--ease);
}

.site-nav.is-compact {
  min-height: 66px;
  padding-top: 18px;
  background: rgba(5, 12, 39, 0.68);
  backdrop-filter: blur(18px) saturate(140%);
}

.site-nav.is-light {
  color: var(--ink);
  border-color: rgba(7, 22, 80, 0.12);
  background: rgba(244, 239, 228, 0.74);
}

.site-logo {
  justify-self: start;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: -0.06em;
}

.site-logo span {
  margin-left: 3px;
  color: var(--gold);
  font: 500 10px "DM Mono", monospace;
  vertical-align: top;
}

.nav-role,
.nav-time {
  margin: 0;
  font: 400 9px/1.5 "DM Mono", monospace;
  letter-spacing: 0.04em;
}

.nav-role {
  opacity: 0.64;
}

.site-nav nav {
  display: flex;
  justify-content: flex-end;
  gap: clamp(20px, 3.1vw, 60px);
}

.site-nav nav a {
  position: relative;
  padding: 1px 0 8px;
  font: 400 10px "DM Mono", monospace;
  letter-spacing: 0.08em;
}

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

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

.site-nav nav a.is-current::after {
  transform: scaleX(1);
  transform-origin: left;
}

.site-nav nav a.is-current {
  color: var(--gold);
}

.site-nav nav sup {
  margin-right: 5px;
  color: var(--gold);
  font-size: 6px;
}

.nav-time {
  justify-self: end;
  text-align: right;
}

.nav-time span,
.nav-time b {
  display: block;
}

.nav-time b {
  font-weight: 400;
  opacity: 0.55;
}

/* Hero */
.hero {
  min-height: max(820px, 100svh);
  overflow: hidden;
  color: white;
  background: var(--navy);
}

.hero-grid,
.studio-grid {
  position: absolute;
  z-index: 0;
  inset: 0;
  background-image:
    linear-gradient(var(--grid-dark) 1px, transparent 1px),
    linear-gradient(90deg, var(--grid-dark) 1px, transparent 1px);
  background-size: clamp(120px, 16.66vw, 320px) clamp(120px, 16.66vw, 320px);
  mask-image: linear-gradient(to bottom, black 0%, black 88%, transparent 100%);
}

.hero-glow {
  position: absolute;
  z-index: 0;
  top: 24%;
  left: 50%;
  width: min(82vw, 1450px);
  height: 46%;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(65, 92, 255, 0.22), transparent 68%);
  filter: blur(80px);
  transform: translate(-50%, -50%);
}

.hero-editorial {
  position: absolute;
  z-index: 12;
  top: 112px;
  right: clamp(22px, 2.15vw, 42px);
  left: clamp(22px, 2.15vw, 42px);
  display: grid;
  grid-template-columns: 1.1fr 1fr 1.5fr;
  gap: 30px;
}

.hero-editorial p {
  margin: 0;
  font: 400 clamp(9px, 0.75vw, 12px)/1.55 "DM Mono", monospace;
  letter-spacing: 0.035em;
}

.hero-eyebrow span {
  color: rgba(255, 255, 255, 0.5);
}

.hero-thinking {
  justify-self: center;
}

.hero-bio {
  justify-self: end;
}

.hero-logo-scene {
  position: absolute;
  z-index: 10;
  top: 19%;
  left: 50%;
  width: min(86vw, 1570px);
  height: 57%;
  perspective: 1450px;
  transform: translate3d(-50%, var(--hero-y, 0px), 0) scale(var(--hero-scale, 1));
  transform-style: preserve-3d;
  transition: transform 0.25s linear;
  will-change: transform;
}

.logo-pointer {
  position: absolute;
  z-index: 4;
  inset: 0;
  display: grid;
  place-items: center;
  transform-style: preserve-3d;
  transform:
    translate3d(var(--logo-x, 0px), var(--logo-y, 0px), 90px)
    rotateX(var(--logo-rx, 0deg))
    rotateY(var(--logo-ry, 0deg))
    scale(var(--logo-hover-scale, 1));
  transition: transform .9s var(--ease), filter .8s var(--ease);
  will-change: transform;
}

.logo-pointer.is-hovered {
  --logo-hover-scale: 1.035;
  filter: drop-shadow(0 44px 40px rgba(0, 3, 35, .56));
}

.logo-float {
  position: relative;
  width: 100%;
  max-width: 1570px;
  aspect-ratio: 1810 / 869;
  transform-style: preserve-3d;
  animation: logo-flight 7.5s ease-in-out infinite;
  will-change: transform;
}

.glass-logo-art,
.logo-depth,
.logo-refraction,
.logo-spectrum,
.logo-glint {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.glass-logo-art {
  z-index: 5;
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: .86;
  filter: saturate(1.15) contrast(1.04) drop-shadow(0 30px 30px rgba(0, 3, 40, .44));
  transform: translateZ(50px);
}

.logo-depth,
.logo-refraction,
.logo-spectrum {
  -webkit-mask: none;
  mask: none;
}

.logo-depth {
  z-index: 1;
  background: linear-gradient(180deg, rgba(48, 79, 255, .88), rgba(4, 10, 65, .95));
  filter: blur(1.2px) drop-shadow(0 28px 22px rgba(0, 2, 28, .62));
  opacity: .88;
  transform: translate3d(13px, 26px, -35px) scale(.992);
}

.logo-refraction {
  z-index: 3;
  background: rgba(39, 72, 255, .18);
  backdrop-filter: blur(4px) saturate(1.7) contrast(1.08);
  opacity: .9;
  transform: translateZ(24px);
}

.logo-spectrum {
  z-index: 6;
  background:
    radial-gradient(circle at var(--shine-x, 28%) var(--shine-y, 24%), rgba(255,255,255,.92) 0 1.5%, rgba(87,240,255,.52) 3%, transparent 14%),
    linear-gradient(108deg, transparent 24%, rgba(102,235,255,.28) 39%, rgba(255,255,255,.64) 46%, rgba(255,117,214,.28) 51%, rgba(255,213,106,.24) 55%, transparent 64%);
  background-size: 100% 100%, 230% 100%;
  background-position: center, var(--spectrum-x, 120%) 0;
  mix-blend-mode: screen;
  opacity: .8;
  transform: translateZ(64px);
  animation: spectrum-drift 6.5s ease-in-out infinite;
}

.logo-glint {
  z-index: 7;
  top: 18%;
  left: 9%;
  width: 34%;
  height: 10%;
  border-radius: 50%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.85), rgba(101,242,255,.4), transparent);
  filter: blur(5px);
  mix-blend-mode: screen;
  opacity: .65;
  transform: translate3d(var(--glint-x, 0px), var(--glint-y, 0px), 85px) rotate(-7deg);
}

@keyframes logo-flight {
  0%, 100% { transform: translate3d(-1.2%, -2%, 0) rotateZ(-.6deg) rotateX(1deg); }
  28% { transform: translate3d(.8%, 1.2%, 8px) rotateZ(.45deg) rotateX(-1.2deg); }
  56% { transform: translate3d(1.4%, -1%, 16px) rotateZ(.75deg) rotateY(1.4deg); }
  78% { transform: translate3d(-.6%, 1.8%, 5px) rotateZ(-.35deg) rotateY(-.8deg); }
}

@keyframes spectrum-drift {
  0%, 15% { background-position: center, 145% 0; }
  68%, 100% { background-position: center, -85% 0; }
}

.logo-caption {
  position: absolute;
  z-index: 9;
  right: 2%;
  bottom: 0;
  margin: 0;
  color: rgba(255,255,255,.45);
  font: 400 8px "DM Mono", monospace;
  letter-spacing: .12em;
}

.hero-sticker-field {
  position: absolute;
  z-index: 7;
  inset: 0;
  pointer-events: none;
}

.hero-sticker {
  position: absolute;
  width: clamp(80px, 9vw, 170px);
  filter: drop-shadow(0 25px 28px rgba(0,0,0,.28));
  opacity: 0;
  transform: translateY(-80vh) rotate(var(--r, 0deg));
}

body.is-ready .hero-sticker {
  opacity: var(--o, .88);
  animation: sticker-arrive 1.8s var(--ease) var(--d, .1s) forwards, hero-sticker-float 6s ease-in-out calc(var(--d, .1s) + 1.8s) infinite alternate;
}

.hs-1 { --r: -8deg; --d: .05s; --o: .78; top: 20%; left: 5%; width: clamp(70px, 7vw, 130px); }
.hs-2 { --r: 9deg; --d: .18s; --o: .9; top: 15%; right: 8%; width: clamp(75px, 7vw, 135px); }
.hs-3 { --r: -12deg; --d: .3s; --o: .7; right: 23%; bottom: 8%; width: clamp(90px, 10vw, 180px); }
.hs-4 { --r: 7deg; --d: .36s; --o: .84; top: 35%; left: 20%; width: clamp(65px, 6vw, 110px); }
.hs-5 { --r: -5deg; --d: .44s; --o: .65; top: 45%; right: 5%; width: clamp(72px, 8vw, 150px); }

@keyframes sticker-arrive {
  0% { transform: translateY(-100vh) rotate(calc(var(--r) - 70deg)) scale(.5); }
  76% { transform: translateY(14px) rotate(calc(var(--r) + 6deg)) scale(1.04); }
  100% { transform: translateY(0) rotate(var(--r)) scale(1); }
}

@keyframes hero-sticker-float {
  0% { transform: translate3d(-7px, -8px, 0) rotate(calc(var(--r) - 4deg)); }
  100% { transform: translate3d(10px, 13px, 0) rotate(calc(var(--r) + 6deg)); }
}

.hero-statement {
  position: absolute;
  z-index: 16;
  bottom: 72px;
  left: clamp(22px, 2.15vw, 42px);
}

.hero-statement p {
  width: max-content;
  margin: -0.08em 0;
  font-size: clamp(45px, 5.1vw, 96px);
  font-weight: 800;
  line-height: .94;
  letter-spacing: -0.07em;
}

.selected-copy {
  position: relative;
  padding: 0 .075em .035em;
  border: 1px solid var(--gold);
}

.selected-copy > i {
  position: absolute;
  width: 6px;
  height: 6px;
  border: 1px solid var(--gold);
  background: var(--navy);
}

.selected-copy > i:nth-of-type(1) { top: -4px; left: -4px; }
.selected-copy > i:nth-of-type(2) { top: -4px; right: -4px; }
.selected-copy > i:nth-of-type(3) { right: -4px; bottom: -4px; }
.selected-copy > i:nth-of-type(4) { bottom: -4px; left: -4px; }

.selected-copy b {
  position: absolute;
  z-index: 5;
  top: 50%;
  right: auto;
  left: calc(100% + 10px);
  display: inline-flex;
  align-items: center;
  min-height: 18px;
  padding: 3px 7px;
  border: 0;
  color: var(--navy);
  background: var(--gold);
  box-shadow: none;
  font: 500 8px/1.2 "DM Mono", monospace;
  letter-spacing: .07em;
  white-space: nowrap;
  transform: translateY(-50%);
}

.hero-status {
  position: absolute;
  z-index: 14;
  right: clamp(22px, 2.15vw, 42px);
  bottom: 28px;
  left: clamp(22px, 2.15vw, 42px);
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  font: 400 8px "DM Mono", monospace;
  letter-spacing: .08em;
}

.hero-status p { margin: 0; }
.hero-status p:nth-child(2) { justify-self: center; }
.hero-status a { justify-self: end; }
.hero-status i { display: inline-block; margin-left: 12px; font-style: normal; animation: arrow-bob 1.4s ease-in-out infinite; }
@keyframes arrow-bob { 50% { transform: translateY(5px); } }

body.is-ready .hero-logo-scene {
  animation: logo-scene-enter 1.75s var(--ease-cinema) .06s both;
}

@keyframes logo-scene-enter {
  0% { opacity: 0; filter: blur(28px); transform: translate3d(-50%, 120px, 0) scale(.78) rotateX(20deg); }
  68% { opacity: 1; filter: blur(0); transform: translate3d(-50%, -8px, 0) scale(1.025) rotateX(-2deg); }
  100% { opacity: 1; transform: translate3d(-50%, 0, 0) scale(1) rotateX(0); }
}

/* Marquee */
.ticker {
  z-index: 20;
  display: flex;
  align-items: center;
  overflow: hidden;
  margin-top: -8px;
  margin-bottom: -18px;
  padding: 18px 0;
  color: white;
  background: var(--blue);
  transform: rotate(-1.1deg) scale(1.015);
  transform-origin: center;
}

.ticker__track {
  display: flex;
  align-items: center;
  width: max-content;
  min-height: 1em;
  will-change: transform;
  animation: ticker-slide 22s linear infinite;
}

.ticker span {
  margin: 0 clamp(25px, 3.2vw, 58px);
  font-size: clamp(23px, 2.6vw, 50px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.06em;
  white-space: nowrap;
}

.ticker i {
  color: var(--gold);
  font-style: normal;
}

@keyframes ticker-slide {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(-50%, 0, 0); }
}

/* Shared editorial sections */
.section-index {
  position: relative;
  z-index: 20;
  display: grid;
  grid-template-columns: .5fr 1fr 1fr;
  gap: 20px;
  max-width: 1580px;
  margin: 0 auto clamp(75px, 9vw, 145px);
  font: 400 9px/1.55 "DM Mono", monospace;
  letter-spacing: .06em;
}

.section-index span {
  color: var(--gold);
}

.section-index p {
  margin: 0;
}

.section-index p:last-child {
  justify-self: end;
  text-align: right;
  opacity: .62;
}

.section-title {
  position: relative;
  z-index: 20;
  max-width: 1580px;
  margin: 0 auto clamp(70px, 10vw, 160px);
}

.section-title h2 {
  max-width: 1100px;
  margin: 0;
  font-size: clamp(68px, 9.2vw, 176px);
  font-weight: 700;
  line-height: .8;
  letter-spacing: -.085em;
}

.section-title em {
  color: var(--blue);
  font: 400 italic .93em Georgia, serif;
}

.title-orbit {
  position: absolute;
  right: 4%;
  bottom: 0;
  display: grid;
  place-items: center;
  width: clamp(120px, 16vw, 250px);
  aspect-ratio: 1;
  border: 1px dashed rgba(7,22,80,.27);
  border-radius: 50%;
  animation: orbit-rotate 18s linear infinite;
}

.title-orbit::before,
.title-orbit::after {
  position: absolute;
  border: 1px solid rgba(7,22,80,.12);
  border-radius: 50%;
  content: "";
}

.title-orbit::before { inset: 12%; }
.title-orbit::after { inset: 28%; }
.title-orbit img { width: 58%; animation: orbit-counter 18s linear infinite; }
.title-orbit span { position: absolute; right: -8%; bottom: 10%; font: 500 8px/1.3 "DM Mono", monospace; text-align: right; }
@keyframes orbit-rotate { to { transform: rotate(360deg); } }
@keyframes orbit-counter { to { transform: rotate(-360deg); } }

/* Work */
.work {
  padding: clamp(120px, 12vw, 220px) clamp(20px, 3.3vw, 64px);
  color: var(--ink);
  background:
    radial-gradient(circle at 85% 15%, rgba(213,165,49,.12), transparent 18%),
    var(--cream);
}

.work-list {
  position: relative;
  z-index: 20;
  display: grid;
  gap: clamp(70px, 9vw, 150px);
  max-width: 1580px;
  margin: auto;
}

.work-card {
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  position: relative;
  padding: clamp(13px, 1.35vw, 23px);
  overflow: hidden;
  border: 1px solid rgba(7,22,80,.16);
  border-radius: clamp(23px, 2.8vw, 46px);
  background: rgba(255,255,255,.5);
  box-shadow: 0 18px 60px rgba(9,17,55,.05);
  transform: perspective(1500px) rotateX(var(--tilt-x)) rotateY(var(--tilt-y));
  transform-style: preserve-3d;
  transition: transform .6s var(--ease), box-shadow .6s var(--ease), border-color .5s;
}

.work-card:hover {
  border-color: rgba(23,63,219,.36);
  box-shadow: 0 55px 130px rgba(9,17,55,.16);
}

.work-card::after {
  position: absolute;
  z-index: 30;
  inset: 0;
  pointer-events: none;
  content: "";
  opacity: 0;
  background: radial-gradient(circle at var(--shine-x, 50%) var(--shine-y, 50%), rgba(255,255,255,.38), transparent 22%);
  transition: opacity .45s;
}

.work-card:hover::after { opacity: 1; }

.work-card__top {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  padding: 3px 5px 17px;
  font: 400 8px "DM Mono", monospace;
  letter-spacing: .08em;
  transform: translateZ(35px);
}

.work-card__top span:nth-child(2) { justify-self: center; }
.work-card__top span:last-child { justify-self: end; }

.work-media {
  position: relative;
  min-height: clamp(470px, 54vw, 850px);
  overflow: hidden;
  border-radius: clamp(17px, 2.1vw, 34px);
  transform: translateZ(22px);
}

.armor-media {
  background:
    radial-gradient(circle at 70% 45%, rgba(76,114,255,.72), transparent 25%),
    linear-gradient(140deg, #07123e, #183ec9 56%, #080d24);
}

.armor-grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.1) 1px, transparent 1px), linear-gradient(90deg,rgba(255,255,255,.1) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, black, transparent 88%);
}

.armor-window {
  position: absolute;
  z-index: 5;
  top: 50%;
  left: 9%;
  width: min(54%, 760px);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.26);
  border-radius: 18px;
  color: white;
  background: rgba(2,9,42,.68);
  box-shadow: 0 40px 100px rgba(0,0,0,.35), inset 0 1px 0 rgba(255,255,255,.16);
  backdrop-filter: blur(20px);
  transform: translate3d(calc(var(--inner-x, 0px) * -.5), calc(-50% + var(--inner-y, 0px) * -.5), 80px) rotateY(7deg);
  transition: transform .55s var(--ease);
}

.armor-window > div {
  display: flex;
  align-items: center;
  gap: 7px;
  height: 46px;
  padding: 0 18px;
  border-bottom: 1px solid rgba(255,255,255,.12);
}

.armor-window > div i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #8ee8f5;
}

.armor-window > div i:nth-child(2) { background: #f4efe4; }
.armor-window > div i:nth-child(3) { background: #dcefff; }
.armor-window > div span { margin-left: auto; color: rgba(255,255,255,.48); font: 400 8px "DM Mono", monospace; }

.armor-window pre {
  margin: 0;
  padding: clamp(26px, 4vw, 70px);
  font: 400 clamp(11px, 1.25vw, 19px)/2 "DM Mono", monospace;
}

.armor-window pre b { margin-right: 18px; color: rgba(255,255,255,.3); font-weight: 400; }
.armor-window pre em { color: #8fdfff; font-style: normal; }
.armor-window pre strong { color: #f4efe4; font-weight: 400; }
.armor-window pre u { color: #9fe8f6; text-decoration: none; }

.armor-sticker {
  position: absolute;
  z-index: 7;
  top: 50%;
  right: 10%;
  width: clamp(180px, 29vw, 470px);
  filter: drop-shadow(0 42px 42px rgba(0,0,0,.32));
  transform: translate3d(var(--inner-x, 0px), calc(-50% + var(--inner-y, 0px)), 130px) rotate(var(--depth-r, -6deg));
  transition: transform .6s var(--ease);
  animation: object-breathe 5s ease-in-out infinite;
}

.media-chip {
  position: absolute;
  z-index: 9;
  right: 5%;
  bottom: 5%;
  padding: 10px 13px;
  border: 1px solid rgba(255,255,255,.45);
  border-radius: 7px;
  color: white;
  background: rgba(0,6,40,.38);
  backdrop-filter: blur(12px);
  font: 400 8px "DM Mono", monospace;
  letter-spacing: .1em;
}

@keyframes object-breathe { 50% { margin-top: -14px; filter: drop-shadow(0 56px 48px rgba(0,0,0,.22)); } }

.solo-media {
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #ffffff, #dcefff 48%, #173fdb);
}

.solo-blob {
  position: absolute;
  width: 70%;
  aspect-ratio: 1.5;
  border-radius: 50%;
  background: rgba(255,255,255,.55);
  filter: blur(60px);
}

.solo-shot {
  position: relative;
  z-index: 5;
  width: 82%;
  border: 1px solid rgba(255,255,255,.42);
  border-radius: 12px;
  box-shadow: 0 44px 100px rgba(64,20,51,.42);
  transform: translate3d(calc(var(--inner-x, 0px) * -.35), var(--inner-y, 0px), 75px) rotate(-2.5deg);
  transition: transform .6s var(--ease);
}

.solo-brain {
  position: absolute;
  z-index: 8;
  top: 6%;
  right: 3%;
  width: clamp(120px, 17vw, 290px);
  filter: drop-shadow(0 28px 35px rgba(64,20,51,.28));
  transform: translate3d(var(--inner-x, 0px), var(--inner-y, 0px), 140px) rotate(9deg);
  transition: transform .6s var(--ease);
  animation: brain-hover 5.5s ease-in-out infinite;
}

@keyframes brain-hover { 50% { margin-top: 16px; transform: rotate(3deg); } }

.viro-media {
  display: grid;
  place-items: center;
  background: radial-gradient(circle, #430f16, #15070b 46%, #040405 82%);
}

.viro-radar,
.viro-radar i {
  position: absolute;
  border: 1px solid rgba(255,56,57,.28);
  border-radius: 50%;
}

.viro-radar { width: 70%; aspect-ratio: 1; animation: radar-turn 24s linear infinite; }
.viro-radar i:nth-child(1) { inset: 10%; border-style: dashed; }
.viro-radar i:nth-child(2) { inset: 23%; border-color: rgba(255,255,255,.14); }
.viro-radar i:nth-child(3) { inset: 36%; border-style: dotted; }
.viro-radar i:nth-child(4) { top: 50%; right: -10%; left: -10%; height: 1px; border: 0; border-top: 1px solid rgba(255,56,57,.24); border-radius: 0; }
@keyframes radar-turn { to { transform: rotate(360deg); } }

.viro-mark {
  position: relative;
  z-index: 7;
  width: clamp(280px, 38%, 570px);
  filter: drop-shadow(0 0 45px rgba(255,0,0,.5));
  transform: translate3d(var(--inner-x, 0px), var(--inner-y, 0px), 115px);
  transition: transform .6s var(--ease);
}

.viro-loop {
  position: absolute;
  z-index: 5;
  top: 10%;
  left: 8%;
  width: clamp(120px, 18vw, 300px);
  opacity: .68;
  filter: hue-rotate(110deg) drop-shadow(0 28px 32px rgba(0,0,0,.35));
  transform: translate3d(calc(var(--inner-x, 0px) * -.5), calc(var(--inner-y, 0px) * -.5), 60px) rotate(-16deg);
  transition: transform .6s var(--ease);
}

.work-card__bottom {
  display: flex;
  justify-content: space-between;
  align-items: end;
  padding: clamp(24px, 3vw, 48px) 5px clamp(8px, 1vw, 15px);
  transform: translateZ(48px);
}

.work-card__bottom p {
  margin: 0 0 9px;
  color: rgba(5,9,19,.52);
  font: 400 8px "DM Mono", monospace;
  letter-spacing: .1em;
}

.work-card__bottom h3 {
  margin: 0;
  font-size: clamp(45px, 6.2vw, 110px);
  font-weight: 650;
  line-height: .9;
  letter-spacing: -.075em;
}

.work-card__bottom > i {
  display: grid;
  place-items: center;
  width: clamp(55px, 7vw, 102px);
  aspect-ratio: 1;
  border: 1px solid rgba(7,22,80,.24);
  border-radius: 50%;
  color: var(--blue);
  font-size: clamp(24px, 2.5vw, 40px);
  font-style: normal;
  transition: color .4s, background .4s, transform .55s var(--ease);
}

.work-card:hover .work-card__bottom > i { color: white; background: var(--blue); transform: rotate(45deg); }

/* Studio */
.studio {
  min-height: 100svh;
  overflow: hidden;
  padding: clamp(120px, 12vw, 220px) clamp(20px, 3.3vw, 64px);
  background: var(--navy);
}

.studio::before {
  position: absolute;
  z-index: 0;
  top: 20%;
  left: 50%;
  width: 60vw;
  aspect-ratio: 1;
  border-radius: 50%;
  content: "";
  background: rgba(35,66,212,.2);
  filter: blur(120px);
  transform: translateX(-50%);
}

.section-index--dark { color: white; }

.studio-heading {
  position: relative;
  z-index: 20;
  max-width: 1580px;
  margin: 0 auto clamp(130px, 17vw, 300px);
}

.studio-heading p {
  margin: -.08em 0;
  font-size: clamp(60px, 10.1vw, 188px);
  font-weight: 800;
  line-height: .88;
  letter-spacing: -.085em;
}

.studio-heading p:nth-child(2) { text-align: center; }
.studio-heading p:last-child { text-align: right; }
.studio-heading em { color: var(--sky); font: 400 italic 1.02em Georgia, serif; }

.sticker-orbit {
  position: absolute;
  z-index: 12;
  top: 25%;
  left: 50%;
  width: min(65vw, 1050px);
  aspect-ratio: 1.8;
  border: 1px dashed rgba(157,192,255,.28);
  border-radius: 50%;
  transform: translateX(-50%) rotate(-8deg);
  animation: studio-orbit 24s linear infinite;
}

.sticker-orbit img {
  position: absolute;
  width: clamp(90px, 10vw, 180px);
  filter: drop-shadow(0 25px 30px rgba(0,0,0,.32));
  animation: orbit-counter 24s linear infinite;
}

.sticker-orbit img:nth-child(1) { top: -10%; left: 9%; }
.sticker-orbit img:nth-child(2) { top: 30%; right: -8%; }
.sticker-orbit img:nth-child(3) { right: 24%; bottom: -20%; }
.sticker-orbit img:nth-child(4) { bottom: -8%; left: 11%; }
@keyframes studio-orbit { to { transform: translateX(-50%) rotate(352deg); } }

.principles {
  position: relative;
  z-index: 20;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 1580px;
  margin: auto;
  border-top: 1px solid rgba(255,255,255,.15);
  border-bottom: 1px solid rgba(255,255,255,.15);
}

.principles article {
  min-height: 360px;
  padding: clamp(28px, 3.5vw, 58px);
  border-right: 1px solid rgba(255,255,255,.15);
  transition: color .45s, background .45s;
}

.principles article:last-child { border-right: 0; }
.principles article:hover { color: var(--navy); background: var(--sky); }
.principles span { color: var(--gold); font: 400 9px "DM Mono", monospace; }
.principles h3 { margin: 90px 0 20px; font-size: clamp(30px, 3vw, 48px); letter-spacing: -.055em; }
.principles p { max-width: 370px; margin: 0; color: rgba(255,255,255,.55); font-size: 13px; line-height: 1.8; }
.principles article:hover p { color: rgba(7,22,80,.62); }

/* About */
.about {
  padding: clamp(120px, 12vw, 220px) clamp(20px, 3.3vw, 64px);
  color: var(--ink);
  background:
    linear-gradient(var(--grid-light) 1px, transparent 1px),
    linear-gradient(90deg, var(--grid-light) 1px, transparent 1px),
    var(--sky);
  background-size: clamp(120px, 16.66vw, 320px) clamp(120px, 16.66vw, 320px);
}

.about-layout {
  position: relative;
  z-index: 20;
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: clamp(40px, 7vw, 130px);
  max-width: 1580px;
  margin: auto;
}

.about-copy h2 {
  margin: 0;
  font-size: clamp(53px, 7vw, 116px);
  font-weight: 650;
  line-height: .94;
  letter-spacing: -.075em;
}

.about-copy em { color: var(--blue); font: 400 italic .98em Georgia, serif; }
.about-copy > p { max-width: 620px; margin: 60px 0 0; font-size: clamp(17px, 1.55vw, 24px); line-height: 1.55; }

.about-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px;
}

.about-card {
  position: relative;
  min-height: 340px;
  overflow: hidden;
  border: 1px solid rgba(7,22,80,.15);
  border-radius: 28px;
  background: rgba(255,255,255,.48);
  transform: perspective(1200px) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg));
  transform-style: preserve-3d;
  transition: transform .55s var(--ease), box-shadow .5s;
}

.about-card:hover { box-shadow: 0 32px 80px rgba(7,22,80,.14); }
.character-card { padding: 25px; background: var(--cream); }
.character-card img { position: absolute; z-index: 3; top: 47%; left: 50%; width: 70%; transform: translate3d(-50%,-50%,70px); transition: transform .55s var(--ease); }
.character-card:hover img { transform: translate3d(-50%,-56%,100px) rotate(4deg) scale(1.04); }
.character-ring { position: absolute; top: 14%; left: 15%; width: 70%; aspect-ratio: 1; border: 1px dashed rgba(23,63,219,.36); border-radius: 50%; animation: orbit-rotate 14s linear infinite; }
.character-card span,
.location-card span,
.stack-card > span { position: absolute; left: 25px; bottom: 23px; font: 400 8px "DM Mono", monospace; letter-spacing: .1em; }
.character-card strong { position: absolute; right: 25px; bottom: 19px; color: var(--blue); font-size: 23px; }

.location-card { padding: 28px; color: white; background: var(--blue); }
.location-card span { top: 27px; bottom: auto; }
.location-card strong { position: absolute; bottom: 25px; left: 25px; font-size: clamp(27px, 2.5vw, 43px); line-height: .88; letter-spacing: -.06em; }
.location-card p { position: absolute; right: 24px; bottom: 23px; margin: 0; color: rgba(255,255,255,.55); font: 400 8px/1.5 "DM Mono", monospace; text-align: right; }
.location-card::before { position: absolute; top: -35%; right: -25%; width: 100%; aspect-ratio: 1; border: 1px solid rgba(255,255,255,.2); border-radius: 50%; content: ""; box-shadow: 0 0 0 34px rgba(255,255,255,.04), 0 0 0 68px rgba(255,255,255,.025); }

.stack-card { grid-column: 1 / -1; min-height: 310px; padding: 65px 24px 24px; background: rgba(255,255,255,.68); }
.stack-card > span { top: 24px; bottom: auto; }
.stack-card > div { position: relative; z-index: 3; display: flex; justify-content: space-between; padding: 18px 5px; border-top: 1px solid rgba(7,22,80,.16); font: 500 11px "DM Mono", monospace; }
.stack-card > div i { color: var(--gold); font-style: normal; }
.stack-card img { position: absolute; z-index: 2; right: -3%; bottom: -22%; width: 41%; opacity: .2; transform: rotate(12deg); }

/* Contact */
.contact {
  min-height: 100svh;
  overflow: hidden;
  padding: clamp(120px, 11vw, 190px) clamp(20px, 3.3vw, 64px) 28px;
  color: var(--ink);
  background: var(--cream);
}

.contact::before {
  position: absolute;
  z-index: -1;
  top: -35%;
  right: -18%;
  width: 70vw;
  aspect-ratio: 1;
  border-radius: 50%;
  content: "";
  background: rgba(220,239,255,.72);
  filter: blur(90px);
}

.contact-cta {
  position: relative;
  z-index: 20;
  display: block;
  max-width: 1580px;
  margin: clamp(90px, 11vw, 190px) auto 150px;
  font-size: clamp(70px, 13.5vw, 250px);
  font-weight: 800;
  line-height: .7;
  letter-spacing: -.095em;
}

.contact-cta span,
.contact-cta strong { display: block; }
.contact-cta strong { color: transparent; -webkit-text-stroke: 2px var(--blue); transform: translateY(clamp(10px, 1.2vw, 20px)); transition: color .55s var(--ease), -webkit-text-stroke .55s; }
.contact-cta:hover strong { color: var(--blue); -webkit-text-stroke-color: transparent; }
.contact-cta > i { position: absolute; right: 2%; bottom: 0; display: grid; place-items: center; width: clamp(72px, 6vw, 100px); aspect-ratio: 1; border-radius: 50%; color: white; background: var(--blue); font-size: .25em; font-style: normal; transition: transform .6s var(--ease), background .4s; }
.contact-cta:hover > i { background: var(--navy); transform: translate(14px,-14px) rotate(45deg); }

.contact-sticker {
  position: absolute;
  z-index: 12;
  top: 17%;
  right: 6%;
  width: clamp(110px, 13vw, 230px);
  animation: contact-pointer 4.2s ease-in-out infinite alternate;
}

@keyframes contact-pointer { to { transform: translate3d(-30px,25px,0) rotate(-13deg); } }

.contact footer {
  position: absolute;
  z-index: 20;
  right: clamp(20px, 3.3vw, 64px);
  bottom: 26px;
  left: clamp(20px, 3.3vw, 64px);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  padding-top: 20px;
  border-top: 1px solid rgba(7,22,80,.22);
  font: 400 8px "DM Mono", monospace;
  letter-spacing: .08em;
}

.contact footer p { margin: 0; }
.contact footer div { display: flex; gap: 30px; }
.contact footer > a { justify-self: end; }

/* Reveal and micro motion */
[data-reveal] {
  opacity: 0;
  transform: translateY(70px);
  filter: blur(10px);
  transition: opacity 1.05s var(--ease), transform 1.15s var(--ease), filter 1s var(--ease);
}

[data-reveal][data-motion="left"] { transform: translate3d(-86px, 28px, 0) rotate(-1.2deg); }
[data-reveal][data-motion="right"] { transform: translate3d(86px, 28px, 0) rotate(1.2deg); }
[data-reveal][data-motion="zoom"] { transform: translate3d(0, 56px, 0) scale(.9) rotateX(8deg); }
[data-reveal][data-motion="flip"] { transform: perspective(1100px) translateY(70px) rotateX(14deg); transform-origin: top center; }

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

[data-reveal][data-motion].is-visible { transform: translate3d(0, 0, 0) scale(1) rotate(0); }

.page-section:not(.hero) .section-index::after {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 1px;
  content: "";
  background: currentColor;
  opacity: .35;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 1.5s var(--ease) .18s;
}

.page-section.is-section-active .section-index::after { transform: scaleX(1); }

.page-section.is-section-active .section-title em,
.page-section.is-section-active .studio-heading em,
.page-section.is-section-active .about-copy em {
  animation: type-breathe 3.8s ease-in-out infinite alternate;
}

@keyframes type-breathe {
  to { letter-spacing: -.015em; text-shadow: 0 12px 35px rgba(49,93,255,.2); }
}

.work-card[data-reveal],
.about-card[data-reveal] {
  transition: opacity 1.05s var(--ease), transform .6s var(--ease), filter 1s var(--ease), box-shadow .6s, border-color .5s;
}

.work-card[data-reveal].is-visible,
.about-card[data-reveal].is-visible {
  transform: perspective(1500px) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg));
}

.magnetic {
  transition: transform .45s var(--ease);
}

@media (max-width: 1120px) {
  .site-nav { grid-template-columns: 1fr .8fr 2.4fr; }
  .nav-time { display: none; }
  .hero-editorial { grid-template-columns: 1fr 1fr; }
  .hero-bio { display: none; }
  .hero-logo-scene { top: 24%; width: 106vw; }
  .hero-statement p { font-size: clamp(43px, 6vw, 72px); }
  .section-index { grid-template-columns: .45fr 1fr 1fr; }
  .about-layout { grid-template-columns: 1fr; }
  .about-copy { max-width: 1000px; }
  .about-cards { max-width: 850px; }
  .principles article { min-height: 330px; }
}

@media (max-width: 780px) {
  .site-nav {
    grid-template-columns: 1fr auto;
    min-height: 62px;
    padding: 18px;
    background: rgba(4,11,41,.58);
    backdrop-filter: blur(14px);
  }
  .nav-role,
  .site-nav nav a:nth-child(2) { display: none; }
  .site-nav nav { gap: 17px; }
  .site-nav nav a { font-size: 8px; }
  .site-nav nav sup { display: none; }
  .hero { min-height: max(760px, 100svh); }
  .hero-grid,
  .studio-grid { background-size: 112px 112px; }
  .hero-editorial { top: 86px; right: 18px; left: 18px; display: block; }
  .hero-thinking { display: none; }
  .hero-editorial p { font-size: 8px; }
  .hero-logo-scene { top: 25%; width: 118vw; height: 42%; }
  .glass-logo-art { opacity: .9; }
  .logo-depth { transform: translate3d(7px, 14px, -35px) scale(.992); }
  .logo-caption { display: none; }
  .hero-statement { bottom: 104px; left: 18px; }
  .hero-statement p { font-size: clamp(36px, 11.8vw, 55px); }
  .hero-status { right: 18px; bottom: 24px; left: 18px; grid-template-columns: 1fr 1fr; font-size: 7px; }
  .hero-status p:nth-child(2) { display: none; }
  .hero-status a {
    position: absolute;
    left: 50%;
    justify-self: auto;
    transform: translateX(-50%);
  }
  .hs-1 { top: 19%; left: 4%; }
  .hs-2 { top: 19%; right: 4%; }
  .hs-3 { right: 4%; bottom: 18%; }
  .hs-4 { top: 49%; left: 4%; }
  .hs-5 { display: none; }
  .rain-drop { max-width: 120px; }
  .ticker { margin-top: -5px; margin-bottom: -12px; padding: 13px 0; }
  .ticker span { margin: 0 20px; font-size: 22px; }
  .work,
  .studio,
  .about,
  .contact { padding-right: 18px; padding-left: 18px; }
  .section-index { display: grid; grid-template-columns: 1fr 1fr; margin-bottom: 70px; }
  .section-index p:last-child { display: none; }
  .section-title h2 { font-size: clamp(62px, 18vw, 92px); }
  .title-orbit { position: relative; right: auto; bottom: auto; width: 126px; margin: 50px 0 0 auto; }
  .work-list { gap: 65px; }
  .work-card { border-radius: 24px; }
  .work-card__top { font-size: 7px; }
  .work-card__top span:nth-child(2) { display: none; }
  .work-card__top { grid-template-columns: 1fr 1fr; }
  .work-media { min-height: 420px; border-radius: 18px; }
  .armor-window { top: 29%; left: 6%; width: 88%; transform: none; }
  .armor-window > div { height: 35px; }
  .armor-window pre { padding: 18px 14px; font-size: 9px; }
  .armor-window pre b { margin-right: 8px; }
  .armor-sticker { top: auto; right: 6%; bottom: 3%; width: 180px; transform: rotate(-7deg); }
  .solo-shot { width: 115%; max-width: none; }
  .solo-brain { top: 3%; right: -4%; width: 140px; }
  .viro-mark { width: 75%; }
  .viro-loop { width: 140px; }
  .work-card__bottom h3 { font-size: 39px; }
  .work-card__bottom > i { width: 48px; }
  .studio-heading p { font-size: clamp(52px, 14.8vw, 74px); }
  .sticker-orbit { top: 33%; width: 90vw; }
  .sticker-orbit img { width: 82px; }
  .principles { display: block; }
  .principles article { min-height: auto; padding: 35px 10px 42px; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.15); }
  .principles article:last-child { border-bottom: 0; }
  .principles h3 { margin: 45px 0 14px; }
  .about-copy h2 { font-size: clamp(49px, 13vw, 70px); }
  .about-copy > p { margin-top: 38px; }
  .about-cards { display: block; }
  .about-card { min-height: 340px; margin-bottom: 12px; }
  .stack-card { min-height: 300px; }
  .contact { min-height: 770px; padding-bottom: 90px; }
  .contact-cta { margin-top: 125px; font-size: clamp(62px, 18vw, 92px); }
  .contact-cta > i {
    right: auto;
    bottom: -225%;
    left: 50%;
    width: clamp(56px, 15vw, 64px);
    transform: translateX(-50%);
  }
  .contact-sticker { top: 22%; right: 1%; width: 100px; }
  .contact footer { right: 18px; bottom: 20px; left: 18px; grid-template-columns: 1fr auto; gap: 15px; }
  .contact footer div { order: -1; grid-column: 1 / -1; justify-content: space-between; }
}

@media (max-width: 390px) {
  .site-nav nav { gap: 11px; }
  .hero-statement p { font-size: 32px; }
  .selected-copy b {
    left: calc(100% + 6px);
    min-height: 17px;
    padding: 3px 6px;
    font-size: 7px;
    line-height: 1.2;
    letter-spacing: .06em;
  }
  .hero-logo-scene { top: 27%; width: 120vw; }
  .section-title h2 { font-size: 56px; }
}

@media (hover: none), (pointer: coarse) {
  .work-card,
  .about-card { transform: none !important; }
  .work-card::after { display: none; }
}

/* V4 interaction and rendering corrections */
.sticker-rain { z-index: 14; }

.hero-logo-scene {
  z-index: 18;
  top: 15%;
  width: min(78vw, 1460px);
  height: 64%;
  pointer-events: none;
}

.logo-pointer {
  transform: translate3d(var(--logo-x, 0px), var(--logo-y, 0px), 100px) rotateX(var(--logo-rx, 0deg)) rotateY(var(--logo-ry, 0deg)) scale(var(--logo-hover-scale, 1));
  transition: filter .6s var(--ease);
}

.logo-pointer.is-hovered { --logo-hover-scale: 1.025; }
.logo-pointer.is-pressed { --logo-hover-scale: .965; filter: drop-shadow(0 22px 28px rgba(0,3,35,.7)); }

.logo-float {
  max-width: 1460px;
  aspect-ratio: 1537 / 644;
  overflow: visible;
  animation: logo-flight 6.8s ease-in-out infinite;
}

.glass-logo-art {
  opacity: .94;
  filter: saturate(1.08) drop-shadow(0 22px 24px rgba(0,3,40,.34));
  transform: translate3d(var(--art-x, 0px), var(--art-y, 0px), 54px);
}

.logo-depth,
.logo-refraction,
.logo-spectrum {
  -webkit-mask: none;
  mask: none;
}

.logo-depth {
  background: linear-gradient(180deg, rgba(38,68,239,.45), rgba(4,10,65,.64));
  filter: blur(.35px) drop-shadow(0 18px 20px rgba(0,2,28,.42));
  opacity: .42;
  transform: translate3d(calc(7px + var(--depth-x, 0px)), calc(10px + var(--depth-y, 0px)), -28px) scale(.995);
}

.logo-refraction {
  background: linear-gradient(135deg, rgba(255,255,255,.08), rgba(38,90,255,.15) 44%, rgba(96,235,255,.09));
  backdrop-filter: none;
  mix-blend-mode: screen;
  opacity: .52;
  transform: translate3d(var(--refraction-x, 0px), var(--refraction-y, 0px), 25px);
}

.logo-spectrum {
  background:
    radial-gradient(circle at var(--shine-x, 28%) var(--shine-y, 24%), rgba(255,255,255,.98) 0 1%, rgba(90,242,255,.62) 2.4%, rgba(60,119,255,.2) 8%, transparent 17%),
    linear-gradient(var(--light-angle, 108deg), transparent 25%, rgba(99,237,255,.3) 39%, rgba(255,255,255,.74) 47%, rgba(174,113,255,.28) 52%, transparent 65%);
  opacity: .92;
  transition: background-position .08s linear;
}

.logo-glint {
  opacity: .8;
  filter: blur(4px);
  transition: transform .08s linear;
}

.hero-statement { z-index: 24; pointer-events: none; }
.hero-editorial,
.hero-status { z-index: 25; }
.hero-sticker-field { z-index: 8; }

.ui-icon {
  display: block;
  width: 1em;
  height: 1em;
  overflow: visible;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.ui-icon--mini { width: 13px; height: 13px; }
.hero-status a { display: inline-flex; align-items: center; gap: 10px; }
.hero-status a .ui-icon { width: 15px; height: 15px; animation: arrow-bob 1.4s ease-in-out infinite; }
.ticker-star { display: block; width: 22px; height: 22px; fill: currentColor; }
.ticker i { display: grid; place-items: center; }

.viro-feature {
  display: block;
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}

.viro-feature::before {
  position: absolute;
  z-index: 31;
  inset: 8px;
  border: 1px solid rgba(23,63,219,0);
  border-radius: inherit;
  content: "";
  pointer-events: none;
  transition: inset .55s var(--ease), border-color .55s var(--ease);
}

.viro-feature:hover::before { inset: 15px; border-color: rgba(23,63,219,.32); }
.viro-feature:active { transform: perspective(1500px) rotateX(var(--tilt-x)) rotateY(var(--tilt-y)) scale(.985); }
.work-card.is-pressed,
.about-card.is-pressed { transform: perspective(1500px) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg)) scale(.985) !important; }

.viro-media {
  min-height: clamp(430px, 46vw, 760px);
  isolation: isolate;
  background:
    radial-gradient(circle at 50% 45%, rgba(255,27,50,.3), transparent 34%),
    linear-gradient(135deg, #200307, #080408 52%, #200307);
}

.viro-banner {
  position: relative;
  z-index: 5;
  width: min(82%, 1080px);
  border: 1px solid rgba(255,92,107,.26);
  border-radius: clamp(12px, 1.5vw, 24px);
  box-shadow: 0 55px 100px rgba(0,0,0,.62), 0 0 80px rgba(255,0,36,.18);
  transform: translate3d(calc(var(--inner-x, 0px) * -.34), calc(var(--inner-y, 0px) * -.34), 70px) rotateX(1deg);
  transition: transform .7s var(--ease), filter .7s var(--ease);
  animation: viro-banner-float 6.4s ease-in-out infinite;
}

.viro-feature:hover .viro-banner {
  filter: saturate(1.18) contrast(1.04);
  transform: translate3d(calc(var(--inner-x, 0px) * -.5), calc(-12px + var(--inner-y, 0px) * -.5), 105px) scale(1.025) rotateX(0);
}

.viro-light {
  position: absolute;
  z-index: 1;
  width: 78%;
  aspect-ratio: 1.65;
  border-radius: 50%;
  background: rgba(255,20,45,.22);
  filter: blur(80px);
  animation: viro-pulse 3.4s ease-in-out infinite alternate;
}

.viro-scan {
  position: absolute;
  z-index: 8;
  top: 0;
  bottom: 0;
  width: 18%;
  pointer-events: none;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.18), rgba(255,49,76,.2), transparent);
  filter: blur(8px);
  mix-blend-mode: screen;
  transform: skewX(-12deg) translateX(-650%);
  animation: viro-scan 4.8s ease-in-out infinite;
}

@keyframes viro-banner-float { 50% { margin-top: -12px; } }
@keyframes viro-pulse { to { transform: scale(1.16); opacity: .65; } }
@keyframes viro-scan { 0%, 16% { transform: skewX(-12deg) translateX(-650%); } 75%, 100% { transform: skewX(-12deg) translateX(650%); } }

.round-arrow { flex: 0 0 auto; }
.round-arrow .ui-icon { width: 42%; height: 42%; }

.contact-cta {
  width: 100%;
  padding: 0;
  border: 0;
  color: inherit;
  background: none;
  font-family: inherit;
  text-align: left;
  cursor: pointer;
}

.contact-cta > i .ui-icon { width: 42%; height: 42%; }
.contact-cta:active > i { transform: scale(.9) rotate(45deg); }
.contact footer button { padding: 0; border: 0; color: inherit; background: none; font: inherit; letter-spacing: inherit; cursor: pointer; }
.contact footer button,
.contact footer a { display: inline-flex; align-items: center; gap: 6px; }

.interactive-type {
  transform: perspective(900px) translate3d(var(--type-x, 0px), var(--type-y, 0px), 0) rotateX(var(--type-rx, 0deg)) rotateY(var(--type-ry, 0deg));
  transform-style: preserve-3d;
  transition: transform .55s var(--ease), text-shadow .55s var(--ease), letter-spacing .55s var(--ease);
}

.interactive-type:hover { text-shadow: 0 18px 45px rgba(49,93,255,.22); }
.interactive-type.is-touched { transform: perspective(900px) translate3d(0, 3px, 0) scale(.985); }

.glass-modal {
  position: fixed;
  z-index: 1200;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 20px;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition: opacity .5s var(--ease), visibility 0s .5s;
}

.glass-modal.is-open {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  transition-delay: 0s;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  background: rgba(1,3,18,.66);
  backdrop-filter: blur(18px) saturate(.8);
  cursor: pointer;
}

.glass-dialog {
  position: relative;
  z-index: 2;
  width: min(620px, calc(100vw - 34px));
  max-height: calc(100svh - 34px);
  overflow: auto;
  padding: clamp(28px, 5vw, 58px);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: clamp(24px, 4vw, 42px);
  color: white;
  background:
    linear-gradient(145deg, rgba(255,255,255,.13), transparent 35%),
    rgba(10,14,54,.78);
  box-shadow: 0 55px 150px rgba(0,0,0,.58), inset 0 1px 0 rgba(255,255,255,.16);
  backdrop-filter: blur(30px) saturate(1.45);
  opacity: 0;
  transform: translateY(60px) scale(.86) rotateX(10deg);
  transform-origin: center;
  transition: opacity .55s var(--ease), transform .7s var(--ease);
}

.glass-modal.is-open .glass-dialog { opacity: 1; transform: translateY(0) scale(1) rotateX(0); }
.viro-dialog { text-align: center; background: linear-gradient(145deg, rgba(142,232,245,.23), transparent 38%), rgba(7,22,80,.88); }

.dialog-close {
  position: absolute;
  z-index: 4;
  top: 18px;
  right: 18px;
  display: grid;
  place-items: center;
  width: 42px;
  aspect-ratio: 1;
  padding: 0;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 50%;
  color: white;
  background: rgba(255,255,255,.08);
  cursor: pointer;
  transition: transform .4s var(--ease), background .4s;
}

.dialog-close:hover { background: rgba(255,255,255,.18); transform: rotate(90deg); }
.dialog-close .ui-icon { width: 18px; height: 18px; }
.dialog-kicker { margin: 0 0 20px; color: rgba(255,255,255,.56); font: 500 8px "DM Mono", monospace; letter-spacing: .15em; }
.glass-dialog h2 { margin: 0; font-size: clamp(42px, 7vw, 76px); line-height: .92; letter-spacing: -.075em; }
.glass-dialog h2 em { color: #9fe8f6; font: 400 italic 1em Georgia, serif; }
.dialog-copy { max-width: 430px; margin: 24px auto 34px; color: rgba(255,255,255,.62); font-size: 13px; line-height: 1.8; }

.discord-orb {
  display: grid;
  place-items: center;
  width: 92px;
  aspect-ratio: 1;
  margin: 0 auto 28px;
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 32px;
  color: white;
  background: linear-gradient(145deg, #ffffff, #8ee8f5 48%, #173fdb);
  box-shadow: 0 25px 55px rgba(23,63,219,.3), inset 0 1px 0 rgba(255,255,255,.62);
  animation: discord-float 2.8s ease-in-out infinite;
}

.discord-orb svg { width: 60px; height: 60px; fill: currentColor; }
.discord-orb circle { fill: #173fdb; }
@keyframes discord-float { 50% { transform: translateY(-8px) rotate(3deg); } }

.redirect-progress { width: 100%; height: 7px; overflow: hidden; border: 0; border-radius: 99px; background: rgba(255,255,255,.1); appearance: none; }
.redirect-progress::-webkit-progress-bar { border-radius: inherit; background: rgba(255,255,255,.1); }
.redirect-progress::-webkit-progress-value { border-radius: inherit; background: linear-gradient(90deg,#f4efe4,#8ee8f5,#fff); box-shadow: 0 0 24px rgba(114,223,238,.55); }
.redirect-progress::-moz-progress-bar { border-radius: inherit; background: linear-gradient(90deg,#f4efe4,#8ee8f5,#fff); box-shadow: 0 0 24px rgba(114,223,238,.55); }
.redirect-count { display: flex; align-items: baseline; justify-content: center; margin: 22px 0; font: 500 54px/.8 "DM Mono", monospace; }
.redirect-count b { color: #9fe8f6; font-size: 13px; }
.redirect-count small { margin-left: auto; color: rgba(255,255,255,.42); font-size: 8px; }
.cancel-link { padding: 10px 0; border: 0; color: rgba(255,255,255,.64); background: none; font: 500 9px "DM Mono", monospace; letter-spacing: .12em; cursor: pointer; }
.cancel-link:hover { color: white; }

.contact-dialog { width: min(720px, calc(100vw - 34px)); }
.contact-dialog .dialog-kicker { color: #88e9ff; }
.contact-dialog h2 em { color: #8de9ff; }
.contact-dialog form { display: grid; gap: 15px; margin-top: 34px; }
.contact-dialog label { display: grid; gap: 8px; }
.contact-dialog label > span { color: rgba(255,255,255,.52); font: 500 8px "DM Mono", monospace; letter-spacing: .12em; }
.contact-dialog input,
.contact-dialog select,
.contact-dialog textarea { width: 100%; padding: 15px 16px; border: 1px solid rgba(255,255,255,.15); border-radius: 13px; outline: none; color: white; background: rgba(255,255,255,.07); font: 500 14px "Manrope", sans-serif; transition: border-color .35s, background .35s, transform .35s var(--ease); }
.contact-dialog textarea { resize: vertical; }
.contact-dialog input:focus,
.contact-dialog select:focus,
.contact-dialog textarea:focus { border-color: #82e8ff; background: rgba(255,255,255,.11); transform: translateY(-2px); }
.contact-dialog option { color: #071650; }
.send-project { display: flex; align-items: center; justify-content: space-between; margin-top: 8px; padding: 17px 18px; border: 0; border-radius: 14px; color: var(--navy); background: linear-gradient(90deg,#8cecff,#fff); font: 700 11px "DM Mono", monospace; letter-spacing: .08em; cursor: pointer; transition: transform .4s var(--ease), box-shadow .4s; }
.send-project:hover { transform: translateY(-4px); box-shadow: 0 18px 40px rgba(105,233,255,.22); }
.send-project .ui-icon { width: 19px; height: 19px; }
.contact-actions { display: flex; gap: 10px; margin-top: 12px; }
.contact-actions > * { flex: 1; padding: 12px; border: 1px solid rgba(255,255,255,.14); border-radius: 12px; color: rgba(255,255,255,.72); background: rgba(255,255,255,.05); font: 500 8px "DM Mono", monospace; text-align: center; cursor: pointer; }
.contact-feedback { min-height: 18px; margin: 13px 0 0; color: #8de9ff; font: 500 9px "DM Mono", monospace; text-align: center; }
body.has-modal { overflow: hidden; }

@media (max-width: 1120px) {
  .hero-logo-scene { top: 18%; width: 88vw; height: 60%; }
}

@media (max-width: 780px) {
  .hero-logo-scene { top: 24%; width: 106vw; height: 35%; }
  .glass-logo-art { opacity: .96; }
  .logo-depth { opacity: .3; transform: translate3d(calc(4px + var(--depth-x, 0px)), calc(6px + var(--depth-y, 0px)), -20px) scale(.997); }
  .logo-spectrum { opacity: .78; }
  .hero-statement { bottom: 102px; }
  .work-media.viro-media { min-height: 330px; }
  .viro-banner { width: 94%; }
  .contact-dialog { padding-top: 60px; }
  .contact-actions { flex-direction: column; }
  .glass-dialog { border-radius: 24px; }
  .page-transition { grid-template-columns: repeat(3, 1fr); }
  .page-transition > span:nth-child(4),
  .page-transition > span:nth-child(5) { display: none; }
}

@media (max-width: 390px) {
  .hero-logo-scene { top: 25%; width: 100vw; height: 34%; }
}

@media (hover: none), (pointer: coarse) {
  .viro-feature:active,
  .about-card:active { transform: scale(.985) !important; }
}

/* V5 — code-native optical glass wordmark */
.logo-float--vector {
  display: grid;
  place-items: center;
  width: 100%;
  max-width: 1460px;
  aspect-ratio: 1600 / 650;
  overflow: visible;
  isolation: isolate;
}

.glass-logo-svg {
  width: 100%;
  height: 100%;
  overflow: visible;
  filter: drop-shadow(0 32px 34px rgba(0, 3, 38, .48));
  transform: translate3d(0, 0, 55px);
  transform-origin: center;
  transition: filter .7s var(--ease), transform .7s var(--ease);
}

.glass-logo-svg use {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  transform-origin: center;
  transform-box: view-box;
}

.svg-logo-shadow use {
  stroke: rgba(1, 6, 42, .78);
  stroke-width: 126px;
  filter: url("#zoko-shadow");
  opacity: .76;
  transform: translate(25px, 34px);
}

.svg-logo-depth use {
  stroke: url("#zoko-depth");
  stroke-width: 122px;
}

.svg-logo-depth use:nth-child(1) { opacity: .68; transform: translate(21px, 27px); }
.svg-logo-depth use:nth-child(2) { opacity: .54; transform: translate(14px, 18px); }
.svg-logo-depth use:nth-child(3) { opacity: .44; transform: translate(7px, 9px); }

.svg-logo-body {
  stroke: url("#zoko-glass");
  stroke-width: 112px;
  opacity: .95;
}

.svg-logo-reflection {
  stroke: url("#zoko-glow");
  stroke-width: 78px;
  opacity: .42;
  mix-blend-mode: screen;
}

.svg-logo-caustic {
  fill: none;
  stroke: url("#zoko-caustic");
  stroke-width: 13px;
  stroke-linecap: round;
  stroke-dasharray: 105 28 190 50 80 34 235 55;
  opacity: .74;
  mix-blend-mode: screen;
  transform: translate(var(--caustic-x, 0px), var(--caustic-y, 0px));
  transition: opacity .35s, stroke-width .5s var(--ease);
}

.svg-logo-rim {
  fill: none;
  stroke: url("#zoko-edge");
  stroke-width: 124px;
  opacity: .62;
  mix-blend-mode: screen;
}

.logo-pointer.is-hovered .glass-logo-svg {
  filter: drop-shadow(0 48px 44px rgba(0, 3, 38, .62)) drop-shadow(0 0 24px rgba(96, 224, 255, .2));
  transform: translate3d(0, -3px, 72px);
}

.logo-pointer.is-hovered .svg-logo-caustic {
  stroke-width: 19px;
  opacity: .96;
}

.logo-pointer.is-pressed .glass-logo-svg {
  filter: drop-shadow(0 21px 24px rgba(0, 3, 38, .68));
  transform: translate3d(0, 8px, 24px) scale(.985);
}

.rain-drop {
  top: -38vh;
}

.rain-drop img {
  filter: saturate(1.04);
}

@media (max-width: 1120px) {
  .hero-logo-scene { top: 18%; width: 88vw; height: 58%; }
}

@media (max-width: 780px) {
  .hero-logo-scene { top: 24%; width: 96vw; height: 39%; }
  .glass-logo-svg { filter: drop-shadow(0 21px 23px rgba(0, 3, 38, .44)); }
  .svg-logo-body { stroke-width: 110px; }
  .svg-logo-depth use:nth-child(1) { transform: translate(15px, 20px); }
  .svg-logo-depth use:nth-child(2) { transform: translate(10px, 13px); }
  .svg-logo-depth use:nth-child(3) { transform: translate(5px, 7px); }
  .svg-logo-shadow use { transform: translate(17px, 25px); }
  .rain-drop { max-width: 104px; }
}

@media (max-width: 390px) {
  .hero-logo-scene { top: 25%; width: 94vw; height: 37%; }
}

/* V7 — clarity, centering and unified sky/cream palette */
.intro__counter {
  display: block;
  width: 3.15ch;
  min-width: 0;
  font-family: "Manrope", Arial, sans-serif;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
  line-height: .82;
  letter-spacing: -.065em;
  text-align: center;
}

.intro__counter span {
  display: block;
  width: 100%;
  font-family: inherit;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

.intro__counter i {
  position: absolute;
  top: .08em;
  left: calc(100% + 7px);
  width: 24px;
  margin-left: 0;
  color: var(--sky);
  font-family: "Manrope", Arial, sans-serif;
  font-size: clamp(16px, 1.3vw, 20px);
  font-weight: 700;
  line-height: 1;
  text-align: left;
}

.glass-logo-svg text {
  font-family: "Pacifico", cursive;
  font-size: 500px;
  font-weight: 400;
  letter-spacing: -18px;
  paint-order: stroke fill;
  transform-origin: center;
  transform-box: fill-box;
}

.svg-logo-shadow text {
  fill: rgba(2, 8, 48, .8);
  stroke: rgba(2, 8, 48, .68);
  stroke-width: 12px;
  filter: url("#zoko-shadow");
  opacity: .72;
  transform: translate(24px, 32px);
}

.svg-logo-depth text {
  fill: url("#zoko-depth");
  stroke: rgba(7, 24, 112, .74);
  stroke-width: 8px;
}

.svg-logo-depth text:nth-child(1) { opacity: .76; transform: translate(20px, 26px); }
.svg-logo-depth text:nth-child(2) { opacity: .62; transform: translate(13px, 17px); }
.svg-logo-depth text:nth-child(3) { opacity: .5; transform: translate(7px, 9px); }

.svg-logo-rim {
  fill: url("#zoko-glass");
  stroke: url("#zoko-edge");
  stroke-width: 16px;
  opacity: .94;
  mix-blend-mode: normal;
}

.svg-logo-body {
  fill: url("#zoko-glass");
  stroke: rgba(142, 232, 245, .48);
  stroke-width: 4px;
  opacity: .98;
}

.svg-logo-reflection {
  fill: url("#zoko-glow");
  stroke: none;
  opacity: .26;
  mix-blend-mode: screen;
}

.svg-logo-caustic {
  fill: none;
  stroke: url("#zoko-caustic");
  stroke-width: 9px;
  stroke-linecap: round;
  stroke-dasharray: 116 38 224 54 86 34;
  opacity: .72;
  mix-blend-mode: screen;
  transform: translate(var(--caustic-x, 0px), var(--caustic-y, 0px));
}

.logo-pointer.is-hovered .svg-logo-caustic { stroke-width: 12px; opacity: .92; }

.stack-card {
  min-height: 380px;
  padding: 0;
  isolation: isolate;
  color: var(--navy);
  border-color: rgba(7,22,80,.13);
  background:
    radial-gradient(circle at 8% 0%, rgba(139,222,244,.24), transparent 30%),
    radial-gradient(circle at 100% 100%, rgba(105,135,255,.13), transparent 38%),
    linear-gradient(145deg, rgba(255,255,255,.93), rgba(235,247,255,.82));
  box-shadow: 0 28px 70px rgba(32,72,148,.12), inset 0 1px 0 white;
}

.stack-card::before {
  position: absolute;
  z-index: -2;
  inset: 0;
  content: "";
  background:
    linear-gradient(rgba(23,63,219,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(23,63,219,.05) 1px, transparent 1px);
  background-size: 52px 52px;
  opacity: .55;
  pointer-events: none;
  -webkit-mask-image: linear-gradient(to bottom, black, transparent 90%);
  mask-image: linear-gradient(to bottom, black, transparent 90%);
}

.stack-card::after {
  display: none;
}

@keyframes stack-orbit { to { transform: rotate(360deg); } }

.stack-card > .stack-head {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 28px;
  border: 0;
  border-bottom: 1px solid rgba(7,22,80,.1);
}

.stack-head > div { display: block; padding: 0; border: 0; }

.stack-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 0;
  color: rgba(7,22,80,.48);
  font: 500 9px "DM Mono", monospace;
  letter-spacing: .12em;
}

.stack-kicker i {
  width: 6px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 0 5px rgba(23,63,219,.09), 0 0 14px rgba(23,63,219,.28);
  animation: stack-pulse 2.2s ease-in-out infinite;
}

@keyframes stack-pulse { 50% { opacity: .45; transform: scale(.72); } }

.stack-head h3 {
  margin: 0;
  font-family: "Manrope", Arial, sans-serif;
  font-size: clamp(27px, 2.5vw, 42px);
  font-weight: 700;
  line-height: .95;
  letter-spacing: -.045em;
  word-spacing: .04em;
}

.stack-head > p {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin: 0;
  padding: 8px 10px;
  border: 1px solid rgba(23,63,219,.1);
  border-radius: 999px;
  color: rgba(7,22,80,.38);
  background: rgba(255,255,255,.58);
  font: 500 7px "DM Mono", monospace;
  letter-spacing: .12em;
}

.stack-head > p strong {
  color: var(--blue);
  font: 500 16px/1 "DM Mono", monospace;
  letter-spacing: -.04em;
}

.stack-card > .tech-grid {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  padding: 14px;
  border: 0;
}

.tech-item {
  --tool-accent: #9fe8f6;
  position: relative;
  display: block;
  min-width: 0;
  min-height: 128px;
  overflow: hidden;
  padding: 15px;
  border: 1px solid rgba(23,63,219,.1);
  border-radius: 18px;
  background: linear-gradient(145deg, rgba(255,255,255,.94), rgba(226,242,255,.62));
  box-shadow: 0 10px 28px rgba(30,68,143,.055), inset 0 1px 0 white;
  transition: transform .55s var(--ease), border-color .4s, background .4s, box-shadow .5s;
}

.tech-item::before {
  position: absolute;
  top: -45px;
  left: -35px;
  width: 115px;
  aspect-ratio: 1;
  border-radius: 50%;
  content: "";
  background: var(--tool-accent);
  filter: blur(36px);
  opacity: .08;
  transition: opacity .45s, transform .6s var(--ease);
}

.tech-item[data-tool="python"] { --tool-accent: #69c7ff; }
.tech-item[data-tool="javascript"] { --tool-accent: #f7df42; }
.tech-item[data-tool="lua"] { --tool-accent: #819cff; }
.tech-item[data-tool="html"] { --tool-accent: #ff6948; }
.tech-item[data-tool="css"] { --tool-accent: #35b9f1; }
.tech-item[data-tool="mysql"] { --tool-accent: #55c8df; }

.tech-item:hover {
  z-index: 2;
  border-color: var(--tool-accent);
  background: linear-gradient(145deg, white, rgba(232,246,255,.94));
  box-shadow: 0 18px 38px rgba(30,68,143,.13), inset 0 1px 0 white;
  transform: translateY(-5px);
}

.tech-item[data-tool="python"]:hover {
  background:
    linear-gradient(100deg, rgba(55,118,171,.13) 0%, rgba(55,118,171,.035) 48%, rgba(255,211,67,.035) 52%, rgba(255,211,67,.16) 100%),
    linear-gradient(145deg, white, rgba(232,246,255,.94));
}

.tech-item:hover::before { opacity: .18; transform: scale(1.2) translate(8px, 8px); }

.tech-index {
  position: absolute;
  top: 14px;
  right: 14px;
  color: rgba(7,22,80,.28);
  font: 400 7px "DM Mono", monospace;
  letter-spacing: .1em;
}

.tech-icon {
  position: relative;
  display: grid;
  place-items: center;
  width: 43px;
  aspect-ratio: 1;
  border: 1px solid rgba(7,22,80,.08);
  border-radius: 13px;
  background: rgba(255,255,255,.92);
  box-shadow: 0 9px 24px rgba(30,68,143,.12), inset 0 1px 0 white;
  transition: transform .55s var(--ease), box-shadow .45s;
}

.tech-item:hover .tech-icon { box-shadow: 0 14px 30px rgba(30,68,143,.16), 0 0 20px color-mix(in srgb, var(--tool-accent) 22%, transparent); transform: translateY(-3px) scale(1.06); }

.stack-card .tech-item .tech-icon img {
  position: static;
  z-index: auto;
  width: 27px;
  height: 27px;
  opacity: 1;
  filter: none;
  transform: none;
}

.tech-copy {
  position: absolute;
  bottom: 14px;
  left: 15px;
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 0;
}

.tech-copy b {
  overflow: hidden;
  color: var(--navy);
  font: 500 clamp(9px, .76vw, 12px) "DM Mono", monospace;
  letter-spacing: .04em;
  text-overflow: ellipsis;
}

.tech-copy small {
  color: rgba(7,22,80,.38);
  font: 400 6px "DM Mono", monospace;
  letter-spacing: .12em;
}

.tech-arrow {
  position: absolute;
  right: 14px;
  bottom: 13px;
  color: rgba(7,22,80,.24);
  font: 400 14px/1 "DM Mono", monospace;
  transition: color .35s, transform .45s var(--ease);
}

.tech-item:hover .tech-arrow { color: var(--tool-accent); transform: translate(2px, -2px); }

.stack-card > .stack-foot {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 20px 18px;
  border: 0;
  color: rgba(7,22,80,.32);
  font: 400 6px "DM Mono", monospace;
  letter-spacing: .17em;
}

.stack-foot i { width: 3px; aspect-ratio: 1; border-radius: 50%; background: var(--blue); opacity: .38; }

.contact-choice-label {
  position: absolute;
  z-index: 21;
  bottom: 92px;
  left: 50%;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  color: rgba(7, 22, 80, .58);
  font: 500 8px "DM Mono", monospace;
  letter-spacing: .13em;
  white-space: nowrap;
  transform: translateX(-50%);
}

.contact-choice-label .ui-icon { width: 15px; height: 15px; animation: arrow-bob 1.4s ease-in-out infinite; }
.contact-cta:hover > i { color: var(--navy); background: var(--sky); transform: translateY(12px); }

.contact footer div > * {
  padding: 10px 14px;
  border: 1px solid rgba(23, 63, 219, .14);
  border-radius: 999px;
  background: rgba(255,255,255,.5);
  transition: color .35s, background .35s, border-color .35s, transform .4s var(--ease), box-shadow .4s;
}

.contact footer div > *:hover,
.contact footer div > *:focus-visible {
  border-color: rgba(64, 199, 226, .62);
  outline: none;
  color: var(--blue);
  background: rgba(220,239,255,.8);
  box-shadow: 0 10px 28px rgba(74, 194, 221, .14);
  transform: translateY(-3px);
}

.contact footer.is-cued div > * { animation: contact-cue 1.05s var(--ease) both; }
.contact footer.is-cued div > *:nth-child(2) { animation-delay: .12s; }

@keyframes contact-cue {
  0%, 100% { box-shadow: 0 0 0 0 rgba(83, 210, 236, 0); transform: translateY(0); }
  45% { border-color: #72dfee; background: #eefcff; box-shadow: 0 0 0 12px rgba(83, 210, 236, .14); transform: translateY(-8px); }
}

@media (max-width: 780px) {
  .glass-logo-svg text { font-size: 480px; letter-spacing: -16px; }
  .selected-copy b {
    left: calc(100% + 7px);
    min-height: 17px;
    padding: 3px 6px;
    font-size: 7px;
    line-height: 1.2;
    letter-spacing: .06em;
  }
  .svg-logo-depth text:nth-child(1) { transform: translate(14px, 18px); }
  .svg-logo-depth text:nth-child(2) { transform: translate(9px, 12px); }
  .svg-logo-depth text:nth-child(3) { transform: translate(5px, 6px); }
  .svg-logo-shadow text { transform: translate(15px, 22px); }
  .stack-card { min-height: 490px; }
  .stack-card > .stack-head { align-items: center; padding: 19px 20px; }
  .stack-head > p { align-items: baseline; gap: 5px; padding: 7px 9px; }
  .stack-head > p strong { font-size: 15px; }
  .stack-card > .tech-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 9px; padding: 11px; }
  .tech-item { min-height: 124px; padding: 14px; border-radius: 16px; }
  .stack-card .tech-item .tech-icon img { width: 25px; height: 25px; }
  .contact-choice-label { bottom: 108px; }
  .hero-status a {
    position: absolute;
    left: 50%;
    justify-self: auto;
    transform: translateX(-50%);
  }
  .contact-cta > i {
    right: auto;
    bottom: -225%;
    left: 50%;
    width: clamp(56px, 15vw, 64px);
    transform: translateX(-50%);
  }
  .contact-cta:hover > i { transform: translateX(-50%) translateY(12px); }
  .contact-cta:active > i { transform: translateX(-50%) scale(.9); }
}

@media (max-width: 390px) {
  .glass-logo-svg text { font-size: 466px; }
  .tech-item { min-height: 116px; padding: 12px; }
  .tech-copy { bottom: 12px; left: 12px; }
  .tech-copy b { max-width: 78px; font-size: 8px; }
  .tech-arrow { right: 12px; bottom: 11px; }
}
