:root {
  color-scheme: dark;
  --bg: #050505;
  --ink: #f3f1ea;
  --muted: #8d8b84;
  --line: rgba(243, 241, 234, 0.16);
  --line-strong: rgba(243, 241, 234, 0.38);
  --acid: rgb(78, 158, 255);
  --blue: #8fb2ff;
  --orange: #ff7a2f;
  --on-acid: #050505;
  --tone-rose: #ff5c8a;
  --tone-gold: #ffb84d;
  --tone-mint: #8fffd2;
  --tone-cyan: #56d9ff;
  --tone-violet: #b99cff;
  --panel: #0c0c0c;
  --title-font: "Instrument Sans Variable", "Helvetica Neue", Arial, sans-serif;
  --body-font: "Instrument Sans Variable", "Helvetica Neue", Arial, sans-serif;
  --mono-font: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-family: var(--body-font);
  background: var(--bg);
  color: var(--ink);
  font-synthesis: none;
  text-rendering: geometricPrecision;
}

@property --logo-main {
  syntax: "<color>";
  inherits: true;
  initial-value: #f3f1ea;
}

@property --logo-side {
  syntax: "<color>";
  inherits: true;
  initial-value: #bdbdbd;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

body.lightbox-open {
  overflow: hidden;
}

img:not([data-no-lightbox]) {
  cursor: zoom-in;
}

.image-lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  grid-template-columns: minmax(52px, 0.12fr) minmax(0, 1fr) minmax(52px, 0.12fr);
  align-items: center;
  gap: clamp(8px, 2vw, 32px);
  padding: clamp(16px, 3vw, 48px);
  color: #f7f6f2;
  background: rgba(5, 5, 5, 0.94);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 260ms ease, visibility 260ms ease;
}

.image-lightbox.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.image-lightbox-figure {
  grid-column: 2;
  min-width: 0;
  max-width: min(1440px, 100%);
  max-height: calc(100vh - clamp(80px, 10vw, 132px));
  margin: 0 auto;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  gap: 14px;
}

.image-lightbox-stage {
  min-width: 0;
  min-height: 0;
  display: grid;
  place-items: center;
}

.image-lightbox-image {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: calc(100vh - clamp(116px, 14vw, 172px));
  object-fit: contain;
  cursor: default;
  box-shadow: 0 24px 90px rgba(0, 0, 0, 0.42);
  transform: translateY(18px) scale(0.975);
  opacity: 0;
  transition: transform 420ms cubic-bezier(0.16, 1, 0.3, 1), opacity 260ms ease;
}

.image-lightbox.is-open:not(.is-loading) .image-lightbox-image {
  transform: translateY(0) scale(1);
  opacity: 1;
}

.image-lightbox-caption,
.image-lightbox-count,
.image-lightbox button {
  font-family: var(--mono-font);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: uppercase;
}

.image-lightbox-caption {
  max-width: 84ch;
  color: rgba(247, 246, 242, 0.7);
  line-height: 1.55;
}

.image-lightbox-count {
  position: absolute;
  right: clamp(16px, 3vw, 48px);
  bottom: clamp(16px, 3vw, 36px);
  color: rgba(247, 246, 242, 0.58);
}

.image-lightbox button {
  appearance: none;
  border: 1px solid rgba(247, 246, 242, 0.28);
  color: #f7f6f2;
  background: rgba(18, 18, 18, 0.72);
  cursor: pointer;
  transition: color 180ms ease, background-color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.image-lightbox button:hover,
.image-lightbox button:focus-visible {
  color: #050505;
  background: #f7f6f2;
  border-color: #f7f6f2;
  outline: none;
}

.image-lightbox-close {
  position: absolute;
  top: clamp(16px, 3vw, 32px);
  right: clamp(16px, 3vw, 32px);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  font-family: var(--title-font) !important;
  font-size: 30px !important;
  line-height: 1;
}

.image-lightbox-nav {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  justify-self: center;
}

.image-lightbox-prev {
  grid-column: 1;
  grid-row: 1;
}

.image-lightbox-next {
  grid-column: 3;
  grid-row: 1;
}

@media (max-width: 700px) {
  .image-lightbox {
    grid-template-columns: 44px minmax(0, 1fr) 44px;
    align-items: end;
    gap: 8px;
    padding: 72px 12px 18px;
  }

  .image-lightbox-figure {
    grid-column: 1 / -1;
    grid-row: 1;
    align-self: center;
    max-height: calc(100dvh - 136px);
  }

  .image-lightbox-image {
    max-height: calc(100dvh - 184px);
  }

  .image-lightbox-prev,
  .image-lightbox-next {
    grid-row: 2;
    position: relative;
    z-index: 1;
  }

  .image-lightbox-prev {
    grid-column: 1;
  }

  .image-lightbox-next {
    grid-column: 3;
  }

  .image-lightbox-count {
    left: 50%;
    right: auto;
    bottom: 34px;
    transform: translateX(-50%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .image-lightbox,
  .image-lightbox-image {
    transition: none;
  }
}

.page-wipe {
  position: fixed;
  inset: 0;
  z-index: 180;
  pointer-events: none;
  background:
    radial-gradient(circle at 18% 16%, color-mix(in srgb, var(--transition-accent), transparent 82%), transparent 30rem),
    radial-gradient(circle at 82% 78%, color-mix(in srgb, var(--transition-accent), transparent 90%), transparent 34rem),
    var(--transition-bg);
  transform: translateY(0);
  transform-origin: 50% 100%;
  will-change: transform, border-radius;
}

.page-wipe::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 28%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.08), transparent 30%);
  opacity: 0.38;
}

body:not(.is-loading) .page-wipe {
  animation: page-transition-reveal 680ms cubic-bezier(0.16, 1, 0.3, 1) 40ms both;
}

body.is-page-leaving .page-wipe {
  animation: page-transition-cover 740ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

body:not(.is-loading) > main {
  animation: page-content-arrive 620ms cubic-bezier(0.16, 1, 0.3, 1) 30ms both;
  transform-origin: 50% 100%;
}

body.is-page-leaving > main,
body.is-page-leaving .site-header {
  animation: page-content-leave 700ms cubic-bezier(0.16, 1, 0.3, 1) both;
  transform-origin: 50% 42%;
}

@media (prefers-reduced-motion: reduce) {
  body:not(.is-loading) .page-wipe,
  body.is-page-leaving .page-wipe,
  body:not(.is-loading) > main,
  body.is-page-leaving > main,
  body.is-page-leaving .site-header {
    animation-duration: 1ms;
  }
}

@keyframes page-transition-reveal {
  0% {
    transform: translateY(0) scale(1);
    border-radius: 0;
  }
  100% {
    transform: translateY(-104%) scale(0.985);
    border-radius: 0 0 42px 42px;
  }
}

@keyframes page-transition-cover {
  from {
    transform: translateY(104%) scale(0.985);
    border-radius: 42px 42px 0 0;
  }
  to {
    transform: translateY(0) scale(1);
    border-radius: 0;
  }
}

@keyframes page-content-arrive {
  from {
    opacity: 0.12;
    transform: translateY(3svh) scale(0.985);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes page-content-leave {
  from {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
  to {
    opacity: 0.68;
    transform: translateY(-2svh) scale(0.94);
    filter: blur(5px);
  }
}

body[data-page="deeview"] {
  color-scheme: light;
  --bg: #ffffff;
  --ink: #151014;
  --muted: #70646a;
  --line: rgba(21, 16, 20, 0.14);
  --line-strong: rgba(21, 16, 20, 0.34);
  --acid: #e85e87;
  --blue: #e85e87;
  --on-acid: #151014;
  --panel: #fff5f8;
  --transition-bg: #ffffff;
}

body[data-page="geo-inspector"] {
  color-scheme: light;
  --bg: #ffffff;
  --ink: #171225;
  --muted: rgba(23, 18, 37, 0.64);
  --line: rgba(103, 71, 198, 0.16);
  --line-strong: rgba(103, 71, 198, 0.36);
  --acid: #6747c6;
  --blue: #6747c6;
  --on-acid: #ffffff;
  --panel: #f7f4ff;
  --transition-bg: #ffffff;
}

body[data-page="admin-dashboard"] {
  color-scheme: light;
  --bg: #ffffff;
  --ink: #131313;
  --muted: rgba(19, 19, 19, 0.64);
  --line: rgba(19, 19, 19, 0.14);
  --line-strong: rgba(19, 19, 19, 0.34);
  --acid: #131313;
  --blue: #131313;
  --on-acid: #ffffff;
  --panel: #f5f5f5;
  --transition-bg: #ffffff;
}

body[data-page="mobile-design-system"] {
  color-scheme: light;
  --bg: #ffffff;
  --ink: #10201c;
  --muted: rgba(16, 32, 28, 0.64);
  --line: rgba(39, 124, 102, 0.16);
  --line-strong: rgba(39, 124, 102, 0.34);
  --acid: #277c66;
  --blue: #277c66;
  --on-acid: #ffffff;
  --panel: #f4fbf8;
  --transition-bg: #ffffff;
}

body.is-loading {
  overflow: hidden;
}

body[data-page="home"].is-loading main,
body[data-page="home"].is-loading .site-header,
body[data-page="home"].is-loading .cursor {
  visibility: hidden;
}

.site-loader {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  padding: 24px;
  background:
    radial-gradient(circle at 28% 28%, rgba(78, 158, 255, 0.18), transparent 28rem),
    radial-gradient(circle at 78% 72%, rgba(255, 79, 216, 0.14), transparent 26rem),
    #050505;
  transition: opacity 560ms ease, visibility 560ms ease, transform 560ms cubic-bezier(0.16, 1, 0.3, 1);
}

body:not(.is-loading) .site-loader {
  visibility: hidden;
  opacity: 0;
  transform: translateY(-4%) scale(1.02);
  pointer-events: none;
}

.loader-panel {
  width: min(760px, calc(100vw - 48px));
}

.loader-number {
  position: relative;
  display: grid;
  place-items: center;
  min-height: clamp(9rem, 24vw, 18rem);
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.loader-number::before,
.loader-number::after {
  content: "";
  position: absolute;
  inset: 18%;
  border: 1px solid rgba(78, 158, 255, 0.36);
  border-radius: 50%;
  animation: loader-orbit 2500ms cubic-bezier(0.16, 1, 0.3, 1) infinite;
}

.loader-number::after {
  inset: 31%;
  border-color: rgba(255, 79, 216, 0.34);
  animation-direction: reverse;
}

.loader-number span {
  position: relative;
  z-index: 1;
  color: var(--ink);
  font-family: "JetBrains Mono", monospace;
  font-size: clamp(5.4rem, 19vw, 16rem);
  font-weight: 700;
  line-height: 0.78;
  letter-spacing: -0.12em;
  text-shadow:
    0 0 22px rgba(78, 158, 255, 0.42),
    0 0 54px rgba(255, 79, 216, 0.18);
  transform: translateX(-0.04em);
  animation: loader-number-pulse 2500ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.loader-meter {
  height: 2px;
  margin-top: 18px;
  overflow: hidden;
  background: rgba(243, 241, 234, 0.16);
}

.loader-meter span {
  display: block;
  width: 42%;
  height: 100%;
  background: linear-gradient(90deg, #4e9eff, #c8ff4d, #ff4fd8);
  animation: loader-meter 1100ms cubic-bezier(0.7, 0, 0.18, 1) infinite;
}

@keyframes loader-orbit {
  0% {
    transform: rotate(0deg) scale(0.72);
    opacity: 0;
  }
  22% {
    opacity: 1;
  }
  100% {
    transform: rotate(310deg) scale(1.24);
    opacity: 0;
  }
}

@keyframes loader-number-pulse {
  0% {
    filter: blur(12px);
    opacity: 0;
    transform: translateX(-0.04em) scale(0.94);
  }
  18%,
  82% {
    filter: blur(0);
    opacity: 1;
    transform: translateX(-0.04em) scale(1);
  }
  100% {
    filter: blur(8px);
    opacity: 0.4;
    transform: translateX(-0.04em) scale(1.04);
  }
}

@keyframes loader-meter {
  0% {
    transform: translateX(-110%) scaleX(0.45);
  }
  55% {
    transform: translateX(72%) scaleX(1);
  }
  100% {
    transform: translateX(245%) scaleX(0.35);
  }
}

body:not(.is-loading) .site-header {
  animation: page-bar-in 820ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

body:not(.is-loading) .hero-meta {
  animation: page-rise-in 920ms cubic-bezier(0.16, 1, 0.3, 1) 90ms both;
}

body:not(.is-loading) .hero-lower,
body:not(.is-loading) .live-proof {
  animation: page-rise-in 920ms cubic-bezier(0.16, 1, 0.3, 1) 440ms both;
}

body:not(.is-loading) #motionField {
  animation: field-wake 1300ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

@keyframes page-bar-in {
  from {
    opacity: 0;
    transform: translateY(-100%);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes page-rise-in {
  from {
    opacity: 0;
    transform: translateY(22px);
    filter: blur(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

@keyframes field-wake {
  from {
    filter: saturate(0.4) brightness(0.6);
    transform: scale(1.035);
  }
  to {
    filter: saturate(1) brightness(1);
    transform: scale(1);
  }
}

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

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

button {
  font: inherit;
}

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

#motionField {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  z-index: -2;
  pointer-events: none;
  background:
    radial-gradient(circle at 78% 18%, rgba(78, 158, 255, 0.16), transparent 25rem),
    radial-gradient(circle at 8% 82%, rgba(143, 178, 255, 0.12), transparent 28rem),
    #050505;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 9.09vw 9.09vw;
  mask-image: linear-gradient(to bottom, black 0 55%, transparent 96%);
}

.cursor {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 90;
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  border: 1px solid rgba(78, 158, 255, 0.75);
  border-radius: 50%;
  pointer-events: none;
  opacity: 0;
  transform: translate(-50%, -50%);
  transition: opacity 180ms ease, width 200ms ease, height 200ms ease, background 200ms ease;
  mix-blend-mode: difference;
}

.cursor span {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--acid);
}

.cursor.is-link {
  width: 92px;
  height: 92px;
  background: rgba(78, 158, 255, 0.12);
}

.soundscape-toggle {
  position: static;
  z-index: auto;
  min-height: 32px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 0;
  border-radius: 0;
  padding: 6px 0;
  background: transparent;
  color: currentColor;
  box-shadow: none;
  backdrop-filter: none;
  cursor: pointer;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  transition:
    color 180ms ease,
    opacity 180ms ease;
}

.sound-bars {
  width: 18px;
  height: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 3px;
}

.sound-bars span {
  width: 3px;
  height: 6px;
  border-radius: 999px;
  background: currentColor;
  opacity: 0.42;
  transform-origin: 50% 50%;
  transition: background 180ms ease, opacity 180ms ease, transform 180ms ease;
}

.soundscape-toggle:hover {
  opacity: 0.68;
}

.soundscape-toggle.is-active {
  background: transparent;
}

.soundscape-toggle.is-active .sound-bars span {
  background: currentColor;
  opacity: 1;
}

.soundscape-toggle.is-playing .sound-bars span {
  animation: sound-bar-pulse 760ms ease-in-out infinite;
}

.soundscape-toggle.is-playing .sound-bars span:nth-child(2) {
  animation-delay: 120ms;
}

.soundscape-toggle.is-playing .sound-bars span:nth-child(3) {
  animation-delay: 240ms;
}

@keyframes sound-bar-pulse {
  0%,
  100% {
    transform: scaleY(0.72);
  }
  50% {
    transform: scaleY(1.9);
  }
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 60;
  display: grid;
  grid-template-columns: 120px 1fr auto;
  align-items: center;
  width: 100%;
  height: 72px;
  border-bottom: 1px solid var(--line);
  background: rgba(5, 5, 5, 0.66);
  backdrop-filter: blur(18px);
  transition:
    opacity 240ms ease,
    transform 360ms cubic-bezier(0.16, 1, 0.3, 1),
    background 180ms ease,
    box-shadow 180ms ease;
}

body.footer-active .site-header {
  opacity: 0;
  pointer-events: none;
  transform: translateY(-110%);
  animation: none;
}

body[data-page="deeview"] .site-header {
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 18px 44px rgba(232, 94, 135, 0.08);
}

body[data-page="geo-inspector"] .site-header {
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 18px 44px rgba(103, 71, 198, 0.08);
}

body[data-page="admin-dashboard"] .site-header {
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 18px 44px rgba(19, 19, 19, 0.06);
}

body[data-page="mobile-design-system"] .site-header {
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 18px 44px rgba(39, 124, 102, 0.08);
}

body[data-page="deeview"] .noise {
  opacity: 0.035;
  mix-blend-mode: multiply;
}

body[data-page="geo-inspector"] .noise {
  opacity: 0.03;
  mix-blend-mode: multiply;
}

body[data-page="admin-dashboard"] .noise {
  opacity: 0.026;
  mix-blend-mode: multiply;
}

body[data-page="mobile-design-system"] .noise {
  opacity: 0.028;
  mix-blend-mode: multiply;
}

body[data-page="deeview"] #motionField {
  opacity: 0.16;
  mix-blend-mode: multiply;
}

body[data-page="geo-inspector"] #motionField {
  opacity: 0.14;
  mix-blend-mode: multiply;
}

body[data-page="admin-dashboard"] #motionField {
  opacity: 0.12;
  mix-blend-mode: multiply;
}

body[data-page="mobile-design-system"] #motionField {
  opacity: 0.12;
  mix-blend-mode: multiply;
}

body[data-page="deeview"] .cursor {
  mix-blend-mode: normal;
  border-color: rgba(232, 94, 135, 0.62);
}

body[data-page="geo-inspector"] .cursor {
  mix-blend-mode: normal;
  border-color: rgba(103, 71, 198, 0.62);
}

body[data-page="admin-dashboard"] .cursor {
  mix-blend-mode: normal;
  border-color: rgba(19, 19, 19, 0.48);
}

body[data-page="mobile-design-system"] .cursor {
  mix-blend-mode: normal;
  border-color: rgba(39, 124, 102, 0.54);
}

body[data-page="deeview"] .cursor.is-link {
  background: rgba(232, 94, 135, 0.12);
}

body[data-page="geo-inspector"] .cursor.is-link {
  background: rgba(103, 71, 198, 0.12);
}

body[data-page="admin-dashboard"] .cursor.is-link {
  background: rgba(19, 19, 19, 0.08);
}

body[data-page="mobile-design-system"] .cursor.is-link {
  background: rgba(39, 124, 102, 0.1);
}

.brand,
.availability,
nav a {
  min-height: 72px;
  display: inline-flex;
  align-items: center;
  border-right: 1px solid var(--line);
  font-family: "JetBrains Mono", monospace;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

.brand {
  justify-content: center;
  color: var(--acid);
  font-size: 1rem;
}

.brand-logo {
  position: relative;
  overflow: hidden;
}

.brand-logo::before {
  content: "";
  position: absolute;
  inset: 19px 46px;
  border: 1px solid rgba(243, 241, 234, 0.16);
  border-radius: 999px;
  opacity: 0;
  transform: scale(0.45) rotate(-18deg);
  animation: logo-orbit 3200ms cubic-bezier(0.16, 1, 0.3, 1) 120ms both;
}

.logo-mark {
  width: 36px;
  height: 36px;
  display: block;
  object-fit: contain;
  --logo-main: #f3f1ea;
  --logo-side: #bdbdbd;
  filter: drop-shadow(0 0 12px rgba(243, 241, 234, 0.18));
  transform-origin: 50% 50%;
  animation: none;
}

.brand-logo .logo-mark {
  animation: logo-color-story 2800ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.logo-mark-main {
  fill: var(--logo-main);
}

.logo-mark-side {
  fill: var(--logo-side);
}

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

@keyframes logo-color-story {
  0% {
    --logo-main: #ff3b3f;
    --logo-side: #ff9a9f;
    filter: drop-shadow(0 0 14px rgba(255, 48, 79, 0.44));
    transform: translateY(7px) scale(0.82) rotate(-8deg);
    opacity: 0;
  }
  14% {
    opacity: 1;
    transform: translateY(0) scale(1) rotate(0deg);
  }
  28% {
    --logo-main: #ff3b3f;
    --logo-side: #ff9a9f;
    filter: drop-shadow(0 0 16px rgba(255, 48, 79, 0.42));
  }
  45% {
    --logo-main: #a9f76a;
    --logo-side: #d7f2b3;
    filter: drop-shadow(0 0 17px rgba(140, 255, 73, 0.34));
    transform: translateY(0) scale(1.04) rotate(0deg);
  }
  64% {
    --logo-main: #266bf5;
    --logo-side: #6195ff;
    filter: drop-shadow(0 0 18px rgba(78, 158, 255, 0.42));
    transform: translateY(0) scale(1) rotate(0deg);
  }
  82%,
  100% {
    --logo-main: #f3f1ea;
    --logo-side: #bdbdbd;
    filter: drop-shadow(0 0 10px rgba(243, 241, 234, 0.18));
    transform: translateY(0) scale(1) rotate(0deg);
    opacity: 1;
  }
}

@keyframes logo-orbit {
  0% {
    opacity: 0;
    transform: scale(0.45) rotate(-18deg);
  }
  18%,
  70% {
    opacity: 0.68;
  }
  100% {
    opacity: 0;
    transform: scale(1.32) rotate(210deg);
  }
}

body[data-page="deeview"] .brand-logo::before {
  border-color: rgba(232, 94, 135, 0.2);
}

body[data-page="geo-inspector"] .brand-logo::before {
  border-color: rgba(103, 71, 198, 0.2);
}

body[data-page="admin-dashboard"] .brand-logo::before {
  border-color: rgba(19, 19, 19, 0.18);
}

body[data-page="mobile-design-system"] .brand-logo::before {
  border-color: rgba(39, 124, 102, 0.2);
}

body[data-page="deeview"] .logo-mark {
  animation-name: logo-color-story-deeview;
}

body[data-page="geo-inspector"] .logo-mark {
  animation-name: logo-color-story-geo;
}

body[data-page="admin-dashboard"] .logo-mark {
  animation-name: logo-color-story-admin;
}

body[data-page="mobile-design-system"] .logo-mark {
  animation-name: logo-color-story-mobile-system;
}

@keyframes logo-color-story-deeview {
  0% {
    --logo-main: #ff3b3f;
    --logo-side: #ff9a9f;
    filter: drop-shadow(0 0 14px rgba(255, 48, 79, 0.36));
    transform: translateY(7px) scale(0.82) rotate(-8deg);
    opacity: 0;
  }
  14% {
    opacity: 1;
    transform: translateY(0) scale(1) rotate(0deg);
  }
  28% {
    --logo-main: #ff3b3f;
    --logo-side: #ff9a9f;
    filter: drop-shadow(0 0 16px rgba(255, 48, 79, 0.28));
  }
  45% {
    --logo-main: #a9f76a;
    --logo-side: #d7f2b3;
    filter: drop-shadow(0 0 17px rgba(140, 255, 73, 0.24));
    transform: translateY(0) scale(1.04) rotate(0deg);
  }
  64% {
    --logo-main: #266bf5;
    --logo-side: #6195ff;
    filter: drop-shadow(0 0 18px rgba(78, 158, 255, 0.28));
    transform: translateY(0) scale(1) rotate(0deg);
  }
  82%,
  100% {
    --logo-main: #050505;
    --logo-side: #5f5f5f;
    filter: drop-shadow(0 0 10px rgba(5, 5, 5, 0.12));
    transform: translateY(0) scale(1) rotate(0deg);
    opacity: 1;
  }
}

@keyframes logo-color-story-geo {
  0% {
    --logo-main: #ff3b3f;
    --logo-side: #ff9a9f;
    filter: drop-shadow(0 0 14px rgba(255, 48, 79, 0.34));
    transform: translateY(7px) scale(0.82) rotate(-8deg);
    opacity: 0;
  }
  14% {
    opacity: 1;
    transform: translateY(0) scale(1) rotate(0deg);
  }
  28% {
    --logo-main: #ff3b3f;
    --logo-side: #ff9a9f;
    filter: drop-shadow(0 0 16px rgba(255, 48, 79, 0.26));
  }
  45% {
    --logo-main: #a9f76a;
    --logo-side: #d7f2b3;
    filter: drop-shadow(0 0 17px rgba(140, 255, 73, 0.22));
    transform: translateY(0) scale(1.04) rotate(0deg);
  }
  64% {
    --logo-main: #266bf5;
    --logo-side: #6195ff;
    filter: drop-shadow(0 0 18px rgba(103, 71, 198, 0.26));
    transform: translateY(0) scale(1) rotate(0deg);
  }
  82%,
  100% {
    --logo-main: #050505;
    --logo-side: #5f5f5f;
    filter: drop-shadow(0 0 10px rgba(5, 5, 5, 0.12));
    transform: translateY(0) scale(1) rotate(0deg);
    opacity: 1;
  }
}

@keyframes logo-color-story-admin {
  0% {
    --logo-main: #ff3b3f;
    --logo-side: #ff9a9f;
    filter: drop-shadow(0 0 14px rgba(255, 48, 79, 0.28));
    transform: translateY(7px) scale(0.82) rotate(-8deg);
    opacity: 0;
  }
  14% {
    opacity: 1;
    transform: translateY(0) scale(1) rotate(0deg);
  }
  28% {
    --logo-main: #ff3b3f;
    --logo-side: #ff9a9f;
  }
  45% {
    --logo-main: #a9f76a;
    --logo-side: #d7f2b3;
    transform: translateY(0) scale(1.04) rotate(0deg);
  }
  64% {
    --logo-main: #266bf5;
    --logo-side: #6195ff;
    transform: translateY(0) scale(1) rotate(0deg);
  }
  82%,
  100% {
    --logo-main: #050505;
    --logo-side: #5f5f5f;
    filter: drop-shadow(0 0 10px rgba(5, 5, 5, 0.12));
    transform: translateY(0) scale(1) rotate(0deg);
    opacity: 1;
  }
}

@keyframes logo-color-story-mobile-system {
  0% {
    --logo-main: #ff3b3f;
    --logo-side: #ff9a9f;
    filter: drop-shadow(0 0 14px rgba(255, 48, 79, 0.28));
    transform: translateY(7px) scale(0.82) rotate(-8deg);
    opacity: 0;
  }
  14% {
    opacity: 1;
    transform: translateY(0) scale(1) rotate(0deg);
  }
  28% {
    --logo-main: #ff3b3f;
    --logo-side: #ff9a9f;
  }
  45% {
    --logo-main: #a9f76a;
    --logo-side: #d7f2b3;
    transform: translateY(0) scale(1.04) rotate(0deg);
  }
  64% {
    --logo-main: #266bf5;
    --logo-side: #6195ff;
    transform: translateY(0) scale(1) rotate(0deg);
  }
  82%,
  100% {
    --logo-main: #050505;
    --logo-side: #5f5f5f;
    filter: drop-shadow(0 0 10px rgba(5, 5, 5, 0.12));
    transform: translateY(0) scale(1) rotate(0deg);
    opacity: 1;
  }
}

nav {
  display: flex;
  height: 72px;
}

nav a {
  padding: 0 clamp(12px, 1.15vw, 22px);
  color: var(--muted);
  transition: color 180ms ease, background 180ms ease;
}

nav a:hover {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.04);
}

body[data-page="deeview"] nav a:hover {
  background: rgba(232, 94, 135, 0.08);
}

body[data-page="geo-inspector"] nav a:hover {
  background: rgba(103, 71, 198, 0.08);
}

body[data-page="admin-dashboard"] nav a:hover {
  background: rgba(19, 19, 19, 0.07);
}

body[data-page="mobile-design-system"] nav a:hover {
  background: rgba(39, 124, 102, 0.08);
}

.availability {
  gap: 9px;
  padding: 0 22px;
  border-left: 1px solid var(--line);
  border-right: 0;
  color: var(--ink);
}

.availability span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #c7ff3d;
  box-shadow: 0 0 20px #c7ff3d;
}

body[data-page="deeview"] .availability span {
  background: var(--acid);
  box-shadow: 0 0 20px rgba(232, 94, 135, 0.42);
}

body[data-page="geo-inspector"] .availability span {
  background: var(--acid);
  box-shadow: 0 0 20px rgba(103, 71, 198, 0.42);
}

body[data-page="admin-dashboard"] .availability span {
  background: var(--acid);
  box-shadow: 0 0 18px rgba(19, 19, 19, 0.26);
}

body[data-page="mobile-design-system"] .availability span {
  background: var(--acid);
  box-shadow: 0 0 20px rgba(39, 124, 102, 0.36);
}

.hero {
  min-height: 100svh;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: end;
  padding: 104px 24px 28px;
}

.hero-meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  width: min(920px, 100%);
  margin-bottom: 34px;
  background: var(--line);
}

.hero-meta p {
  margin: 0;
  padding: 11px 13px;
  background: rgba(5, 5, 5, 0.82);
  color: var(--muted);
  font-family: "JetBrains Mono", monospace;
  font-size: 0.72rem;
  text-transform: uppercase;
}

.hero-title {
  max-width: 1600px;
  margin-left: -0.07em;
  font-family: var(--title-font);
  font-size: clamp(5.6rem, 16.8vw, 19rem);
  font-weight: 720;
  letter-spacing: -0.043em;
  line-height: 0.86;
  text-transform: uppercase;
}

.line-mask {
  display: block;
  overflow: hidden;
}

.line-mask b {
  display: block;
  transform: translateY(112%);
}

body:not(.is-loading) .line-mask b {
  animation: title-in 1000ms cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

body:not(.is-loading) .line-mask:nth-child(2) b {
  animation-delay: 120ms;
}

body:not(.is-loading) .line-mask:nth-child(3) b {
  animation-delay: 240ms;
}

.accent-line {
  color: var(--wordmark-solid, var(--acid));
  font-family: var(--wordmark-font, "Instrument Serif", serif);
  font-style: var(--wordmark-style, italic);
  font-weight: var(--wordmark-weight, 400);
  letter-spacing: var(--wordmark-tracking, -0.035em);
  line-height: 0.9;
  padding-bottom: 0.12em;
  text-transform: none;
  transition: color 520ms ease;
}

.versatile-wordmark {
  --wordmark-solid: #5c9dff;
  --wordmark-gradient: linear-gradient(102deg, #86b8ff 0%, #4e9eff 42%, #d7f7ff 72%, #6d7cff 100%);
  --wordmark-glow: rgba(78, 158, 255, 0.38);
  position: relative;
  display: inline-grid;
  grid-template-areas: "stack";
  min-width: min(9ch, 92vw);
  min-height: 0.98em;
  isolation: isolate;
  color: var(--wordmark-solid);
  font-family: var(--wordmark-font, "Instrument Serif", serif);
  font-style: var(--wordmark-style, italic);
  font-weight: var(--wordmark-weight, 400);
  letter-spacing: var(--wordmark-tracking, -0.035em);
  filter: drop-shadow(0 0 22px var(--wordmark-glow));
  transition:
    filter 520ms ease,
    transform 520ms cubic-bezier(0.16, 1, 0.3, 1);
}

.line-mask b.versatile-wordmark {
  display: inline-grid;
}

.wordmark-layer {
  --layer-solid: var(--wordmark-solid);
  --layer-gradient: var(--wordmark-gradient);
  --layer-font: var(--wordmark-font);
  --layer-style: var(--wordmark-style);
  --layer-weight: var(--wordmark-weight);
  --layer-tracking: var(--wordmark-tracking);
  --layer-transform: none;
  grid-area: stack;
  display: block;
  width: max-content;
  max-width: calc(100vw - 24px);
  color: var(--layer-solid);
  background: var(--layer-gradient);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: var(--layer-font, "Instrument Serif", serif);
  font-style: var(--layer-style, italic);
  font-weight: var(--layer-weight, 400);
  letter-spacing: var(--layer-tracking, -0.035em);
  text-transform: var(--layer-transform);
  text-wrap: nowrap;
  will-change: transform, opacity, filter;
}

.wordmark-current {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.wordmark-next {
  opacity: 0;
  transform: translateY(42%) scale(0.96);
  filter: blur(16px);
}

.versatile-wordmark.is-changing .wordmark-current {
  animation: wordmark-out 620ms cubic-bezier(0.7, 0, 0.18, 1) forwards;
}

.versatile-wordmark.is-changing .wordmark-next {
  animation: wordmark-in 720ms cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.wordmark-sheen {
  position: absolute;
  inset: 0.03em -0.06em 0.05em;
  z-index: -1;
  border-radius: 999px;
  opacity: 0.26;
  background:
    radial-gradient(circle at 18% 20%, color-mix(in srgb, var(--wordmark-solid), white 34%) 0 8%, transparent 25%),
    linear-gradient(90deg, transparent, var(--wordmark-solid), transparent);
  filter: blur(26px);
  transform: scaleX(0.92);
  transition: background 520ms ease, opacity 520ms ease;
}

.versatile-wordmark.is-pixel {
  --wordmark-font: "Pixelify Sans", "JetBrains Mono", monospace;
  --wordmark-style: normal;
  --wordmark-weight: 700;
  --wordmark-tracking: -0.025em;
  text-transform: uppercase;
}

.versatile-wordmark.is-serif {
  --wordmark-font: "Instrument Serif", serif;
  --wordmark-style: italic;
  --wordmark-weight: 400;
  --wordmark-tracking: -0.035em;
}

.versatile-wordmark.is-editorial {
  --wordmark-font: "Bodoni Moda", "Instrument Serif", serif;
  --wordmark-style: normal;
  --wordmark-weight: 900;
  --wordmark-tracking: -0.065em;
  text-transform: uppercase;
}

.versatile-wordmark.is-grotesk {
  --wordmark-font: "Space Grotesk", "Inter Tight", sans-serif;
  --wordmark-style: normal;
  --wordmark-weight: 700;
  --wordmark-tracking: -0.07em;
  text-transform: uppercase;
}

.versatile-wordmark.is-mono {
  --wordmark-font: "JetBrains Mono", monospace;
  --wordmark-style: normal;
  --wordmark-weight: 700;
  --wordmark-tracking: -0.08em;
  text-transform: uppercase;
}

.versatile-wordmark.palette-signal {
  --wordmark-solid: #5c9dff;
  --wordmark-gradient: linear-gradient(102deg, #86b8ff 0%, #4e9eff 42%, #d7f7ff 72%, #6d7cff 100%);
  --wordmark-glow: rgba(78, 158, 255, 0.38);
}

.versatile-wordmark.palette-system {
  --wordmark-solid: #c8ff4d;
  --wordmark-gradient: linear-gradient(108deg, #e5ff8a 0%, #b7ff27 44%, #80f6c5 100%);
  --wordmark-glow: rgba(183, 255, 39, 0.32);
}

.versatile-wordmark.palette-care {
  --wordmark-solid: #63e7d2;
  --wordmark-gradient: linear-gradient(104deg, #baf7f0 0%, #55decf 38%, #517cff 100%);
  --wordmark-glow: rgba(85, 222, 207, 0.32);
}

.versatile-wordmark.palette-commerce {
  --wordmark-solid: #ffbc6e;
  --wordmark-gradient: linear-gradient(105deg, #ffe0a3 0%, #ff9f43 36%, #ff5c7a 100%);
  --wordmark-glow: rgba(255, 159, 67, 0.34);
}

.versatile-wordmark.palette-play {
  --wordmark-solid: #ff4fd8;
  --wordmark-gradient: linear-gradient(100deg, #ff7ade 0%, #7f5cff 48%, #39e7ff 100%);
  --wordmark-glow: rgba(255, 79, 216, 0.36);
}

.versatile-wordmark.palette-ink {
  --wordmark-solid: #f5efe4;
  --wordmark-gradient: linear-gradient(106deg, #fff9ed 0%, #d8c7ff 44%, #9bb6ff 100%);
  --wordmark-glow: rgba(245, 239, 228, 0.24);
}

@keyframes wordmark-out {
  0% {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
  100% {
    opacity: 0;
    transform: translateY(-34%) scale(1.04);
    filter: blur(14px);
  }
}

@keyframes wordmark-in {
  0% {
    opacity: 0;
    transform: translateY(46%) scale(0.96);
    filter: blur(18px);
  }
  62% {
    opacity: 1;
    filter: blur(0);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
}

@keyframes title-in {
  to {
    transform: translateY(0);
  }
}

.hero-lower {
  display: grid;
  grid-template-columns: minmax(320px, 620px) auto;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-top: 38px;
}

.hero-thesis,
.section-intro p,
.method-card p,
.lab-panel p,
.lab-feed p,
.about-large p,
.case-row h3 {
  color: var(--muted);
  font-size: clamp(1rem, 1.55vw, 1.25rem);
  line-height: 1.45;
}

.hero-thesis {
  margin: 0;
  max-width: 620px;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.primary-link,
.secondary-link {
  position: relative;
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  padding: 0 22px;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
}

.primary-link {
  background: var(--acid);
  color: var(--on-acid);
  border-color: var(--acid);
}

.secondary-link {
  color: var(--ink);
}

.live-proof {
  position: absolute;
  right: 24px;
  top: 112px;
  width: min(430px, calc(100vw - 48px));
  border: 1px solid var(--line);
  background: rgba(5, 5, 5, 0.66);
  backdrop-filter: blur(18px);
}

.proof-label,
.kicker {
  margin: 0;
  max-width: 100%;
  color: var(--acid);
  font-family: "JetBrains Mono", monospace;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.proof-label {
  padding: 13px;
  border-bottom: 1px solid var(--line);
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

.proof-grid div {
  min-height: 118px;
  padding: 15px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.proof-grid div:nth-child(2n) {
  border-right: 0;
}

.proof-grid div:nth-last-child(-n + 2) {
  border-bottom: 0;
}

.proof-grid strong {
  display: block;
  color: var(--ink);
  font-family: var(--title-font);
  font-size: clamp(2.4rem, 5vw, 4.4rem);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: -0.025em;
}

.proof-grid span {
  display: block;
  margin-top: 10px;
  color: var(--muted);
}

.ticker {
  display: flex;
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--acid);
  color: #111;
}

.ticker div {
  display: flex;
  flex: none;
  gap: 36px;
  min-width: 100%;
  padding: 14px 18px;
  animation: ticker 26s linear infinite;
}

.ticker span {
  font-family: "JetBrains Mono", monospace;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
}

@keyframes ticker {
  to {
    transform: translateX(-100%);
  }
}

.work-section,
.method-section,
.lab-section,
.about-section,
.contact-section,
.gallery-hero,
.gallery-section {
  width: min(1480px, calc(100vw - 48px));
  margin: 0 auto;
}

.work-section,
.method-section {
  padding-top: 142px;
}

.section-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 0.45fr);
  gap: 48px;
  align-items: end;
  margin-bottom: 44px;
}

.section-intro h2,
.contact-section h2 {
  grid-column: 1;
  margin: 0;
  font-family: var(--title-font);
  font-size: clamp(3.2rem, 9vw, 9.8rem);
  font-weight: 720;
  line-height: 0.9;
  letter-spacing: -0.043em;
  text-transform: uppercase;
}

.section-intro p:not(.kicker) {
  grid-column: 2;
  margin: 0 0 12px;
}

.work-stage {
  display: grid;
  grid-template-columns: minmax(340px, 0.46fr) minmax(0, 0.54fr);
  gap: 24px;
}

.project-preview {
  position: sticky;
  top: 96px;
  height: calc(100svh - 124px);
  overflow: hidden;
  border: 1px solid var(--line);
  background: #0d0d0d;
}

.project-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.1) contrast(1.08);
  transform: scale(1.05);
  transition: opacity 220ms ease, transform 700ms cubic-bezier(0.16, 1, 0.3, 1);
}

.project-preview.is-changing img {
  opacity: 0.22;
  transform: scale(1.14);
}

.preview-caption {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 14px;
  border-top: 1px solid var(--preview-line, rgba(255, 255, 255, 0.3));
  background: var(--preview-scrim, rgba(5, 5, 5, 0.34));
  backdrop-filter: blur(10px);
  font-family: "JetBrains Mono", monospace;
  font-size: 0.74rem;
  text-transform: uppercase;
  transition: background 180ms ease, border-color 180ms ease;
}

.preview-caption span {
  color: var(--preview-muted, rgba(243, 241, 234, 0.68));
}

.preview-caption b {
  color: var(--preview-strong, var(--acid));
  text-align: right;
}

.preview-caption.is-light {
  --preview-scrim: rgba(255, 255, 255, 0.68);
  --preview-line: rgba(5, 5, 5, 0.16);
  --preview-muted: rgba(5, 5, 5, 0.62);
  --preview-strong: #0c0c0c;
}

.preview-caption.is-dark {
  --preview-scrim: rgba(5, 5, 5, 0.38);
  --preview-line: rgba(255, 255, 255, 0.3);
  --preview-muted: rgba(243, 241, 234, 0.68);
  --preview-strong: var(--acid);
}

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

.mobile-case-image {
  display: none;
}

.case-row a {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr) minmax(220px, 0.36fr);
  gap: 24px;
  min-height: 210px;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
  transition: color 220ms ease, padding-left 220ms ease;
}

.case-row a:hover {
  color: var(--acid);
  padding-left: 18px;
}

.case-index,
.case-row p,
.case-row li {
  font-family: "JetBrains Mono", monospace;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.case-index {
  color: var(--muted);
}

.case-row p {
  margin: 0 0 14px;
  color: var(--ink);
}

.case-row h3 {
  margin: 0;
  max-width: 680px;
  color: currentColor;
  font-family: var(--title-font);
  font-size: clamp(1.45rem, 3vw, 3.4rem);
  font-weight: 560;
  line-height: 1;
  letter-spacing: -0.018em;
}

.case-row ul {
  display: flex;
  flex-wrap: wrap;
  align-content: start;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.case-row li {
  padding: 7px 9px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
}

.method-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.method-card {
  min-height: 410px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 22px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.015);
  transition: background 220ms ease;
}

.method-card span,
.lab-feed span {
  color: var(--acid);
  font-family: "JetBrains Mono", monospace;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
}

.method-card:nth-child(1) span {
  color: var(--tone-rose);
}

.method-card:nth-child(2) span {
  color: var(--tone-mint);
}

.method-card:nth-child(3) span {
  color: var(--tone-violet);
}

.method-card:nth-child(4) span {
  color: var(--tone-gold);
}

.method-card:nth-child(1):hover {
  background: rgba(255, 92, 138, 0.08);
}

.method-card:nth-child(2):hover {
  background: rgba(143, 255, 210, 0.07);
}

.method-card:nth-child(3):hover {
  background: rgba(185, 156, 255, 0.08);
}

.method-card:nth-child(4):hover {
  background: rgba(255, 184, 77, 0.08);
}

.method-card h3 {
  margin: auto 0 18px;
  font-family: var(--title-font);
  font-size: clamp(1.5rem, 2.5vw, 2.8rem);
  font-weight: 660;
  line-height: 1;
  letter-spacing: -0.02em;
}

.method-card p {
  margin: 0;
}

.lab-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.55fr);
  gap: 24px;
  padding-top: 142px;
}

.lab-panel {
  min-height: 540px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at 78% 20%, rgba(255, 122, 47, 0.18), transparent 23rem),
    #090909;
}

.lab-panel h2 {
  max-width: 820px;
  margin: 14px 0 20px;
  font-family: var(--title-font);
  font-size: clamp(3rem, 8vw, 8.5rem);
  font-weight: 720;
  line-height: 0.9;
  letter-spacing: -0.043em;
  text-transform: uppercase;
}

.lab-panel p:not(.kicker) {
  max-width: 640px;
}

.lab-feed {
  border-top: 1px solid var(--line);
}

.lab-feed div {
  min-height: 180px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.lab-feed b {
  display: block;
  margin: 20px 0 8px;
  font-family: var(--title-font);
  font-size: clamp(1.5rem, 3vw, 2.6rem);
  font-weight: 680;
  letter-spacing: -0.018em;
}

.lab-feed p {
  margin: 0;
}

.about-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.44fr);
  gap: 24px;
  padding-top: 142px;
}

.about-large {
  padding-right: 30px;
}

.about-large p {
  margin: 0;
  color: var(--ink);
  font-family: var(--title-font);
  font-size: clamp(2.2rem, 6.3vw, 7rem);
  line-height: 1;
  letter-spacing: -0.028em;
}

.scroll-text {
  color: rgba(243, 241, 234, 0.18);
}

.scroll-word {
  color: rgba(243, 241, 234, 0.2);
  transition: color 180ms ease, text-shadow 180ms ease;
}

.scroll-word.is-active {
  color: var(--ink);
}

.scroll-word.is-key.is-active {
  color: var(--highlight-color, var(--acid));
  text-shadow: 0 0 28px var(--highlight-glow, rgba(78, 158, 255, 0.22));
}

.scroll-word.tone-rose {
  --highlight-color: var(--tone-rose);
  --highlight-glow: rgba(255, 92, 138, 0.2);
}

.scroll-word.tone-gold {
  --highlight-color: var(--tone-gold);
  --highlight-glow: rgba(255, 184, 77, 0.2);
}

.scroll-word.tone-mint {
  --highlight-color: var(--tone-mint);
  --highlight-glow: rgba(143, 255, 210, 0.18);
}

.scroll-word.tone-cyan {
  --highlight-color: var(--tone-cyan);
  --highlight-glow: rgba(86, 217, 255, 0.2);
}

.scroll-word.tone-violet {
  --highlight-color: var(--tone-violet);
  --highlight-glow: rgba(185, 156, 255, 0.2);
}

.about-card {
  align-self: end;
  padding: 24px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.02);
}

.about-card h3 {
  margin-top: 22px;
}

.about-card ul {
  margin: 24px 0 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.7;
}

.contact-section {
  min-height: 90svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 150px 0 80px;
}

.contact-section h2 {
  max-width: 1160px;
  margin: 20px 0 32px;
}

.site-footer {
  --footer-bg: #020202;
  --footer-ink: #f5f4ef;
  --footer-muted: rgba(245, 244, 239, 0.72);
  --footer-button-bg: rgba(255, 255, 255, 0.24);
  --footer-button-ink: #f5f4ef;
  --footer-button-hover-bg: var(--acid);
  --footer-button-hover-ink: #050505;
  --footer-glow-a: rgba(78, 158, 255, 0.1);
  --footer-glow-b: rgba(255, 92, 138, 0.08);
  position: relative;
  min-height: 100svh;
  width: 100vw;
  margin-top: clamp(96px, 13vw, 220px);
  margin-left: calc(50% - 50vw);
  justify-content: flex-start;
  overflow: visible;
  scroll-margin-top: 72px;
  padding: clamp(104px, 8.4vw, 154px) 0 clamp(120px, 18svh, 190px);
  background:
    radial-gradient(circle at 16% 8%, var(--footer-glow-a), transparent 34rem),
    radial-gradient(circle at 88% 54%, var(--footer-glow-b), transparent 38rem),
    var(--footer-bg);
  box-shadow: 0 100svh 0 100svh var(--footer-bg);
  color: var(--footer-ink);
  isolation: isolate;
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: -18vw 0 0;
  pointer-events: none;
  opacity: 0.42;
  background:
    radial-gradient(circle at 18% 12%, var(--footer-glow-a), transparent 38rem),
    radial-gradient(circle at 88% 66%, var(--footer-glow-b), transparent 42rem),
    linear-gradient(110deg, transparent 0 18%, color-mix(in srgb, var(--footer-glow-a), transparent 55%) 44%, transparent 82%);
  filter: blur(4px);
}

.footer-topline,
.footer-middle,
.footer-bottom {
  position: relative;
  z-index: 1;
}

.footer-topline {
  max-width: min(1540px, 100%);
}

.site-footer .footer-topline,
.site-footer .footer-middle,
.site-footer .footer-bottom {
  width: min(100% - 48px, 1848px);
  margin-left: auto;
  margin-right: auto;
}

.footer-topline h2 {
  max-width: 1520px;
  margin: 0;
  color: var(--footer-ink);
  font-family: var(--title-font);
  font-size: clamp(4.4rem, 9.4vw, 13.6rem);
  font-weight: 430;
  line-height: 0.94;
  letter-spacing: -0.042em;
  text-transform: none;
}

.case-page .site-footer .footer-topline h2,
.gallery-page .site-footer .footer-topline h2 {
  max-width: 1220px;
  font-size: clamp(4rem, 7.2vw, 9.4rem);
  line-height: 0.96;
  letter-spacing: -0.052em;
}

.case-page .site-footer,
.gallery-page .site-footer {
  min-height: 100svh;
}

.footer-middle {
  display: grid;
  grid-template-columns: minmax(0, 0.58fr) minmax(300px, 0.42fr);
  grid-template-areas:
    "nav availability"
    "socials availability";
  gap: clamp(26px, 4vw, 72px) clamp(42px, 8vw, 150px);
  align-items: end;
  margin-top: clamp(54px, 6vw, 104px);
}

.footer-nav {
  grid-area: nav;
  display: grid;
  grid-template-columns: repeat(4, max-content);
  gap: clamp(34px, 5vw, 96px);
}

.footer-nav a {
  color: var(--footer-ink);
  font-family: "JetBrains Mono", monospace;
  font-size: clamp(0.82rem, 1vw, 1.08rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  transition: color 180ms ease, transform 180ms ease;
}

.footer-nav a:hover {
  color: var(--acid);
  transform: translateY(-3px);
}

.footer-socials {
  grid-area: socials;
  display: flex;
  flex-wrap: wrap;
  gap: clamp(14px, 2vw, 26px);
  margin: 0;
}

.footer-socials .primary-link,
.footer-socials .secondary-link {
  min-width: clamp(140px, 13vw, 220px);
  min-height: clamp(54px, 5vw, 74px);
  border: 0;
  border-radius: 999px;
  background: var(--footer-button-bg);
  color: var(--footer-button-ink);
  padding: 0 26px;
}

.footer-socials .primary-link::before,
.footer-socials .secondary-link::before {
  display: none;
}

.footer-socials .primary-link:hover,
.footer-socials .secondary-link:hover {
  background: var(--footer-button-hover-bg);
  color: var(--footer-button-hover-ink);
  transform: translateY(-3px);
}

.footer-availability {
  grid-area: availability;
  max-width: 560px;
  margin: 0;
  justify-self: end;
  color: var(--footer-ink);
  font-family: var(--title-font);
  font-size: clamp(1.55rem, 2.45vw, 3.6rem);
  font-weight: 440;
  line-height: 1.04;
  letter-spacing: -0.026em;
}

.footer-bottom {
  display: grid;
  grid-template-columns: 72px auto minmax(220px, 1fr) minmax(120px, 0.34fr) auto;
  gap: clamp(16px, 3.8vw, 72px);
  align-items: center;
  margin-top: clamp(24px, 3vw, 44px);
  color: var(--footer-ink);
}

.footer-bottom span,
.footer-bottom a:not(.footer-brand) {
  color: var(--footer-ink);
  font-family: "JetBrains Mono", monospace;
  font-size: clamp(0.64rem, 0.76vw, 0.86rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.03em;
  text-transform: uppercase;
}

.footer-brand {
  width: 60px;
  height: 60px;
  display: inline-grid;
  place-items: center;
}

.footer-brand .logo-mark {
  width: 46px;
  height: 46px;
  animation: none;
  --logo-main: #f3f1ea;
  --logo-side: #bdbdbd;
}

.footer-brand:hover .logo-mark {
  filter: drop-shadow(0 0 16px rgba(243, 241, 234, 0.3));
}

.footer-brand:hover .logo-mark-main {
  animation: footer-logo-main-story 1400ms cubic-bezier(0.16, 1, 0.3, 1) infinite;
}

.footer-brand:hover .logo-mark-side {
  animation: footer-logo-side-story 1400ms cubic-bezier(0.16, 1, 0.3, 1) infinite;
}

@keyframes footer-logo-main-story {
  0%,
  24% {
    fill: #ff3b3f;
  }
  44% {
    fill: #a9f76a;
  }
  68% {
    fill: #266bf5;
  }
  88%,
  100% {
    fill: #eeeeee;
  }
}

@keyframes footer-logo-side-story {
  0%,
  24% {
    fill: #ff9a9f;
  }
  44% {
    fill: #d7f2b3;
  }
  68% {
    fill: #6195ff;
  }
  88%,
  100% {
    fill: #bdbdbd;
  }
}

.footer-bottom a[href="#top"]:not(.footer-brand) {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}

.footer-bottom a[href="#top"]:not(.footer-brand)::after {
  content: "↑";
  font-family: var(--title-font);
  font-size: 0.9em;
  line-height: 1;
}

.gallery-page {
  padding-top: 72px;
}

.gallery-hero {
  min-height: 74svh;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(280px, 0.34fr);
  gap: 54px;
  align-items: end;
  padding: 116px 0 52px;
}

.gallery-title {
  max-width: 1180px;
  margin: 12px 0 28px;
  font-family: var(--title-font);
  font-size: clamp(5.2rem, 14vw, 14.5rem);
  font-weight: 720;
  line-height: 0.86;
  letter-spacing: -0.036em;
  text-transform: uppercase;
}

.gallery-subtitle {
  max-width: 760px;
  margin: 0;
  font-size: clamp(1.15rem, 1.8vw, 2rem);
  line-height: 1.28;
  color: var(--muted);
}

.gallery-stats {
  border-top: 1px solid var(--line);
}

.gallery-stats div {
  display: grid;
  grid-template-columns: 0.52fr 1fr;
  gap: 18px;
  align-items: center;
  min-height: 88px;
  border-bottom: 1px solid var(--line);
}

.gallery-stats strong,
.gallery-stats span,
.gallery-item figcaption {
  font-family: "JetBrains Mono", monospace;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.gallery-stats strong {
  color: var(--accent);
}

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

.gallery-section {
  padding: 26px 0 80px;
}

.gallery-grid {
  columns: 3 320px;
  column-gap: 18px;
}

.gallery-item {
  break-inside: avoid;
  display: inline-block;
  width: 100%;
  margin: 0 0 18px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.028);
}

.gallery-image-wrap {
  position: relative;
  overflow: hidden;
  background: #080808;
}

.gallery-image-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.gallery-item img {
  display: block;
  width: 100%;
  height: auto;
  transform: scale(1.01);
  transition: transform 700ms cubic-bezier(0.16, 1, 0.3, 1), filter 260ms ease;
}

.gallery-item:hover img {
  transform: scale(1.045);
  filter: contrast(1.05) saturate(1.04);
}

.gallery-item figcaption {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 16px;
  padding: 14px;
  border-top: 1px solid var(--line);
  background: rgba(7, 7, 7, 0.86);
}

.gallery-item figcaption span {
  color: var(--accent);
}

.gallery-item figcaption div {
  display: grid;
  gap: 6px;
}

.gallery-item figcaption strong {
  color: var(--ink);
}

.gallery-item figcaption em {
  color: var(--muted);
  font-style: normal;
}

.gallery-contact {
  min-height: 70svh;
}

.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 900ms cubic-bezier(0.16, 1, 0.3, 1), transform 900ms cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1050px) {
  .live-proof {
    position: static;
    width: 100%;
    margin-top: 26px;
  }

  .hero-lower,
  .section-intro,
  .work-stage,
  .lab-section,
  .about-section {
    grid-template-columns: 1fr;
  }

  .section-intro p:not(.kicker) {
    grid-column: 1;
  }

  .project-preview {
    position: relative;
    top: auto;
    height: 58svh;
  }

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

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

  .site-header {
    grid-template-columns: 72px 1fr;
  }

  .ticker {
    display: none;
  }

  nav {
    display: none;
  }

  .availability {
    justify-content: flex-end;
    padding: 0 14px;
    font-size: 0.68rem;
  }

  .hero {
    padding: 92px 12px 22px;
  }

  .hero-meta {
    grid-template-columns: 1fr;
    margin-bottom: 28px;
  }

  .hero-title {
    margin-left: -0.03em;
    font-size: clamp(3.8rem, 17vw, 6.8rem);
    line-height: 0.94;
    letter-spacing: -0.045em;
    overflow-wrap: anywhere;
  }

  .hero-title .line-mask {
    padding-bottom: 0.05em;
  }

  .hero-lower {
    margin-top: 28px;
  }

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

  .proof-grid div,
  .proof-grid div:nth-child(2n),
  .proof-grid div:nth-last-child(-n + 2) {
    min-height: 88px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .proof-grid div:last-child {
    border-bottom: 0;
  }

  .work-section,
  .method-section,
  .lab-section,
  .about-section,
  .contact-section,
  .gallery-hero,
  .gallery-section {
    width: calc(100vw - 24px);
    overflow: visible;
  }

  .gallery-hero {
    min-height: auto;
    display: block;
    padding: 86px 0 36px;
  }

  .gallery-title {
    font-size: clamp(3.6rem, 15.5vw, 6.8rem);
    line-height: 0.94;
    letter-spacing: -0.04em;
    overflow-wrap: anywhere;
  }

  .gallery-subtitle {
    font-size: 1.08rem;
  }

  .gallery-stats {
    margin-top: 34px;
  }

  .gallery-grid {
    columns: 1;
  }

  .gallery-item {
    margin-bottom: 14px;
  }

  .section-intro {
    display: block;
    overflow: visible;
  }

  .section-intro h2,
  .section-intro p,
  .kicker {
    width: auto;
    max-width: 100%;
  }

  .project-preview img {
    transform: none;
  }

  .work-stage {
    display: block;
  }

  .project-preview {
    display: none;
  }

  .case-list {
    display: flex;
    gap: 14px;
    margin: 0 -12px;
    padding: 2px 12px 18px;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scroll-padding-left: 12px;
    scroll-snap-type: x mandatory;
    border-top: 0;
    scrollbar-width: none;
  }

  .case-list::-webkit-scrollbar {
    display: none;
  }

  .section-intro h2,
  .contact-section h2 {
    font-size: clamp(3rem, 14.5vw, 5.4rem);
    line-height: 0.96;
    letter-spacing: -0.045em;
    overflow-wrap: anywhere;
  }

  .case-row a {
    width: min(82vw, 330px);
    min-height: 520px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding: 0 0 16px;
    overflow: hidden;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.025);
  }

  .case-row {
    flex: 0 0 auto;
    scroll-snap-align: start;
  }

  .case-row a:hover {
    padding-left: 0;
  }

  .mobile-case-image {
    width: 100%;
    aspect-ratio: 1 / 1;
    display: block;
    object-fit: cover;
    border-bottom: 1px solid var(--line);
  }

  .case-index,
  .case-row a > div,
  .case-row ul {
    margin-right: 16px;
    margin-left: 16px;
  }

  .case-row h3 {
    font-size: clamp(1.45rem, 7.6vw, 2.2rem);
    line-height: 1;
  }

  .case-row ul {
    margin-top: auto;
  }

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

  .method-card {
    min-height: 260px;
  }

  .lab-panel {
    min-height: 420px;
  }

  .about-large p {
    font-size: clamp(2.25rem, 11.5vw, 4.2rem);
    line-height: 1.05;
  }

  .site-footer {
    min-height: 100svh;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    padding-top: 86px;
    padding-bottom: 110px;
  }

  .footer-topline {
    display: block;
  }

  .footer-topline h2 {
    font-size: clamp(3.65rem, 14vw, 6.4rem);
    font-weight: 430;
    line-height: 1;
    letter-spacing: -0.052em;
  }

  .case-page .site-footer .footer-topline h2,
  .gallery-page .site-footer .footer-topline h2 {
    font-size: clamp(3.1rem, 12vw, 5.3rem);
    line-height: 1;
  }

  .footer-middle {
    grid-template-columns: 1fr;
    grid-template-areas:
      "nav"
      "socials"
      "availability";
    gap: 30px;
    margin-top: 42px;
  }

  .footer-nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px 24px;
  }

  .footer-nav a {
    font-size: clamp(0.82rem, 3.7vw, 1rem);
  }

  .footer-socials {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .footer-socials .primary-link,
  .footer-socials .secondary-link {
    width: 100%;
    min-height: 58px;
    color: #f5f4ef;
  }

  .footer-availability {
    justify-self: start;
    max-width: 100%;
    font-size: clamp(1.55rem, 7vw, 2.8rem);
    line-height: 1.08;
    font-weight: 440;
  }

  .footer-bottom {
    grid-template-columns: 54px 1fr;
    gap: 16px 22px;
    margin-top: 34px;
  }

  .footer-brand {
    width: 54px;
    height: 54px;
    grid-row: span 4;
    align-self: start;
  }

  .footer-brand .logo-mark {
    width: 42px;
    height: 42px;
  }

  .footer-bottom span,
  .footer-bottom a:not(.footer-brand) {
    min-height: auto;
    border-right: 0;
    font-size: 0.68rem;
  }
}

body[data-page="deeview"] .case-kicker {
  background: rgba(232, 94, 135, 0.16);
}

/* Compact cross-project footer used only by case-study pages. */
.case-page .case-work-footer {
  box-sizing: border-box;
  position: relative;
  display: grid;
  grid-template-rows: max-content minmax(0, 1fr) max-content;
  align-content: stretch;
  gap: clamp(12px, 2svh, 24px);
  width: 100vw;
  height: 100svh;
  min-height: 0;
  max-height: 100svh;
  padding: clamp(38px, 5.5svh, 68px) 0 clamp(20px, 3svh, 34px);
  overflow: hidden;
  box-shadow: none;
}

.case-work-footer .footer-topline,
.case-work-footer .footer-projects,
.case-work-footer .footer-bottom {
  width: min(100% - 48px, 1760px);
  margin-left: auto;
  margin-right: auto;
}

.case-work-footer .footer-topline {
  grid-row: 1;
  max-width: none;
  text-align: center;
}

.case-work-footer .footer-kicker {
  display: block;
  margin-bottom: clamp(6px, 1svh, 12px);
  color: var(--footer-muted);
  font-family: "JetBrains Mono", monospace;
  font-size: clamp(0.64rem, 0.72vw, 0.78rem);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.case-page .case-work-footer .footer-topline h2 {
  max-width: none;
  margin: 0 auto;
  font-size: clamp(2.7rem, 5vw, 5.8rem);
  font-weight: 430;
  line-height: 0.96;
  letter-spacing: -0.045em;
  text-align: center;
}

.case-work-footer .footer-projects {
  grid-row: 2;
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(10px, 1.2vw, 20px);
  min-height: 0;
  align-self: stretch;
  align-content: center;
  margin-top: 0;
  box-sizing: border-box;
  width: min(calc(100% - 48px), 1900px);
  padding: clamp(28px, 4.8svh, 58px) clamp(18px, 3.2vw, 64px);
  background: rgba(255, 255, 255, 0.012);
}

.case-work-footer .footer-project-card {
  min-width: 0;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  overflow: hidden;
  border: 1px solid rgba(245, 244, 239, 0.2);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.055);
  color: var(--footer-ink);
  transition: border-color 220ms ease, background-color 220ms ease, transform 280ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.case-work-footer .footer-project-card:hover {
  border-color: rgba(245, 244, 239, 0.62);
  background: rgba(255, 255, 255, 0.09);
  transform: translateY(-5px);
}

.case-work-footer .footer-project-media {
  display: block;
  height: clamp(112px, 20svh, 210px);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.08);
}

.case-work-footer .footer-project-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 520ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.case-work-footer .footer-project-card:hover img {
  transform: scale(1.035);
}

.case-work-footer .footer-project-copy {
  display: grid;
  gap: 5px;
  padding: clamp(12px, 1.2vw, 18px);
}

.case-work-footer .footer-project-copy small {
  overflow: hidden;
  color: var(--footer-muted);
  font-family: "JetBrains Mono", monospace;
  font-size: clamp(0.56rem, 0.58vw, 0.68rem);
  font-weight: 600;
  letter-spacing: 0.02em;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}

.case-work-footer .footer-project-copy strong {
  overflow: hidden;
  color: var(--footer-ink);
  font-family: var(--title-font);
  font-size: clamp(1rem, 1.3vw, 1.45rem);
  font-weight: 520;
  line-height: 1.05;
  letter-spacing: -0.025em;
  text-overflow: ellipsis;
  white-space: nowrap;
}

body[data-page="geo-inspector"] .case-work-footer [data-project="geo-inspector"],
body[data-page="deeview"] .case-work-footer [data-project="deeview"],
body[data-page="admin-dashboard"] .case-work-footer [data-project="admin-dashboard"],
body[data-page="mobile-design-system"] .case-work-footer [data-project="mobile-design-system"] {
  display: none;
}

.case-work-footer .footer-bottom {
  position: relative;
  grid-row: 3;
  align-self: end;
  left: auto;
  bottom: auto;
  transform: none;
  margin-top: 0;
  padding-top: clamp(12px, 1.8svh, 20px);
  border-top: 1px solid rgba(245, 244, 239, 0.14);
}

@media (max-width: 820px) {
  .case-page .case-work-footer {
    gap: clamp(10px, 1.8svh, 16px);
    padding: clamp(26px, 4svh, 42px) 0 clamp(16px, 2.4svh, 24px);
  }

  .case-work-footer .footer-topline,
  .case-work-footer .footer-projects,
  .case-work-footer .footer-bottom {
    width: calc(100% - 32px);
  }

  .case-page .case-work-footer .footer-topline h2 {
    font-size: clamp(2.25rem, 10.8vw, 3.6rem);
  }

  .case-work-footer .footer-projects {
    width: 100%;
    grid-template-columns: none;
    grid-auto-flow: column;
    grid-auto-columns: minmax(188px, 68vw);
    gap: 12px;
    padding: clamp(18px, 3svh, 28px) 16px;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-padding-inline: 16px;
    scroll-snap-type: inline proximity;
    scrollbar-width: none;
  }

  .case-work-footer .footer-projects::-webkit-scrollbar {
    display: none;
  }

  .case-work-footer .footer-project-card {
    scroll-snap-align: start;
  }

  .case-work-footer .footer-project-media {
    height: clamp(104px, 17svh, 146px);
  }

  .case-work-footer .footer-project-copy {
    padding: 11px 12px 12px;
  }

  .case-work-footer .footer-project-copy strong {
    font-size: 1rem;
  }

  .case-work-footer .footer-bottom {
    gap: 10px 16px;
    padding-top: 12px;
  }

  .case-work-footer .footer-brand {
    width: 44px;
    height: 44px;
  }

  .case-work-footer .footer-brand .logo-mark {
    width: 36px;
    height: 36px;
  }

  .case-work-footer .footer-bottom span,
  .case-work-footer .footer-bottom a:not(.footer-brand) {
    font-size: 0.58rem;
  }
}

@media (max-height: 700px) and (min-width: 821px) {
  .case-page .case-work-footer {
    padding-top: 24px;
    padding-bottom: 18px;
  }

  .case-page .case-work-footer .footer-topline h2 {
    font-size: clamp(2.4rem, 4vw, 4.2rem);
  }

  .case-work-footer .footer-project-media {
    height: clamp(100px, 17svh, 142px);
  }

}

body[data-page="deeview"] .case-kicker span {
  background: rgba(255, 255, 255, 0.88);
  color: rgba(21, 16, 20, 0.78);
}

body[data-page="deeview"] .case-title span:first-child,
body[data-page="deeview"] .section-lock h2,
body[data-page="deeview"] .next-steps h2 {
  color: var(--ink);
}

body[data-page="deeview"] .case-title span:last-child {
  color: var(--acid);
}

body[data-page="deeview"] .case-device,
body[data-page="deeview"] .screen-grid figure,
body[data-page="deeview"] .screen-marquee img {
  background: linear-gradient(135deg, rgba(232, 94, 135, 0.08), rgba(255, 255, 255, 0.9));
  box-shadow: 0 28px 80px rgba(21, 16, 20, 0.08);
}

body[data-page="deeview"] .case-device figcaption {
  border-top-color: rgba(21, 16, 20, 0.16);
  color: rgba(21, 16, 20, 0.78);
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(14px);
}

body[data-page="deeview"] .image-placeholder {
  background:
    linear-gradient(135deg, rgba(232, 94, 135, 0.18), transparent 36%),
    radial-gradient(circle at 82% 18%, rgba(232, 94, 135, 0.12), transparent 18rem),
    rgba(232, 94, 135, 0.04);
}

body[data-page="deeview"] .evidence-grid article,
body[data-page="deeview"] .product-card,
body[data-page="deeview"] .roadmap article {
  background:
    linear-gradient(145deg, rgba(232, 94, 135, 0.08), transparent 48%),
    rgba(255, 255, 255, 0.74);
}

body[data-page="deeview"] .source-links a,
body[data-page="deeview"] .flow div {
  background:
    linear-gradient(135deg, rgba(232, 94, 135, 0.08), rgba(255, 244, 248, 0.92)),
    #fff4f8;
}

body[data-page="deeview"] .source-links a {
  color: #9f214f;
}

body[data-page="deeview"] .flow div {
  border-color: rgba(232, 94, 135, 0.24);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.66);
}

body[data-page="deeview"] .flow span {
  background: linear-gradient(90deg, rgba(232, 94, 135, 0.2), var(--acid));
}

body[data-page="deeview"] .role-list {
  background: rgba(232, 94, 135, 0.14);
}

body[data-page="deeview"] .role-list li {
  background: rgba(255, 255, 255, 0.82);
}

body[data-page="geo-inspector"] .case-kicker {
  background: rgba(103, 71, 198, 0.14);
}

body[data-page="geo-inspector"] .case-kicker span {
  background: rgba(255, 255, 255, 0.88);
  color: rgba(23, 18, 37, 0.78);
}

body[data-page="geo-inspector"] .case-title span:first-child,
body[data-page="geo-inspector"] .section-lock h2,
body[data-page="geo-inspector"] .next-steps h2 {
  color: var(--ink);
}

body[data-page="geo-inspector"] .case-title span:last-child {
  color: var(--acid);
}

body[data-page="geo-inspector"] .case-device,
body[data-page="geo-inspector"] .screen-grid figure,
body[data-page="geo-inspector"] .screen-marquee img {
  background: linear-gradient(135deg, rgba(103, 71, 198, 0.08), rgba(255, 255, 255, 0.92));
  box-shadow: 0 28px 80px rgba(23, 18, 37, 0.08);
}

body[data-page="geo-inspector"] .case-device figcaption {
  border-top-color: rgba(23, 18, 37, 0.16);
  color: rgba(23, 18, 37, 0.78);
  background: rgba(255, 255, 255, 0.74);
  backdrop-filter: blur(14px);
}

body[data-page="geo-inspector"] .image-placeholder {
  background:
    linear-gradient(135deg, rgba(103, 71, 198, 0.16), transparent 36%),
    radial-gradient(circle at 82% 18%, rgba(103, 71, 198, 0.12), transparent 18rem),
    rgba(103, 71, 198, 0.04);
}

body[data-page="geo-inspector"] .evidence-grid article,
body[data-page="geo-inspector"] .product-card,
body[data-page="geo-inspector"] .roadmap article {
  background:
    linear-gradient(145deg, rgba(103, 71, 198, 0.08), transparent 48%),
    rgba(255, 255, 255, 0.76);
}

body[data-page="geo-inspector"] .source-links a,
body[data-page="geo-inspector"] .flow div {
  background:
    linear-gradient(135deg, rgba(103, 71, 198, 0.08), rgba(247, 244, 255, 0.94)),
    #f7f4ff;
}

body[data-page="geo-inspector"] .flow div {
  border-color: rgba(103, 71, 198, 0.24);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.68);
}

body[data-page="geo-inspector"] .flow span {
  background: linear-gradient(90deg, rgba(103, 71, 198, 0.18), var(--acid));
}

body[data-page="geo-inspector"] .role-list {
  background: rgba(103, 71, 198, 0.12);
}

body[data-page="geo-inspector"] .role-list li {
  background: rgba(255, 255, 255, 0.84);
}

body[data-page="admin-dashboard"] .case-kicker {
  background: rgba(19, 19, 19, 0.08);
}

body[data-page="admin-dashboard"] .site-footer {
  --footer-button-hover-bg: #f3f1ea;
  --footer-button-hover-ink: #131313;
}

body[data-page="admin-dashboard"] .case-kicker span {
  background: rgba(255, 255, 255, 0.9);
  color: rgba(19, 19, 19, 0.78);
}

body[data-page="admin-dashboard"] .case-title span:first-child,
body[data-page="admin-dashboard"] .section-lock h2,
body[data-page="admin-dashboard"] .next-steps h2 {
  color: var(--ink);
}

body[data-page="admin-dashboard"] .case-title span:last-child {
  color: rgba(19, 19, 19, 0.78);
}

body[data-page="admin-dashboard"] .case-device,
body[data-page="admin-dashboard"] .screen-grid figure,
body[data-page="admin-dashboard"] .screen-marquee img {
  background: linear-gradient(135deg, rgba(19, 19, 19, 0.05), rgba(255, 255, 255, 0.92));
  box-shadow: 0 28px 80px rgba(19, 19, 19, 0.08);
}

body[data-page="admin-dashboard"] .case-device figcaption {
  border-top-color: rgba(19, 19, 19, 0.14);
  color: rgba(19, 19, 19, 0.78);
  background: rgba(255, 255, 255, 0.74);
  backdrop-filter: blur(14px);
}

body[data-page="admin-dashboard"] .image-placeholder {
  background:
    linear-gradient(135deg, rgba(19, 19, 19, 0.1), transparent 36%),
    radial-gradient(circle at 82% 18%, rgba(19, 19, 19, 0.08), transparent 18rem),
    rgba(19, 19, 19, 0.035);
}

body[data-page="admin-dashboard"] .evidence-grid article,
body[data-page="admin-dashboard"] .product-card,
body[data-page="admin-dashboard"] .roadmap article {
  background:
    linear-gradient(145deg, rgba(19, 19, 19, 0.055), transparent 48%),
    rgba(255, 255, 255, 0.78);
}

body[data-page="admin-dashboard"] .source-links a,
body[data-page="admin-dashboard"] .flow div {
  background:
    linear-gradient(135deg, rgba(19, 19, 19, 0.055), rgba(246, 246, 246, 0.94)),
    #f6f6f6;
}

body[data-page="admin-dashboard"] .flow div {
  border-color: rgba(19, 19, 19, 0.18);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.68);
}

body[data-page="admin-dashboard"] .flow span {
  background: linear-gradient(90deg, rgba(19, 19, 19, 0.14), var(--acid));
}

body[data-page="admin-dashboard"] .role-list {
  background: rgba(19, 19, 19, 0.08);
}

body[data-page="admin-dashboard"] .role-list li {
  background: rgba(255, 255, 255, 0.86);
}

body[data-page="mobile-design-system"] .case-kicker {
  background: rgba(39, 124, 102, 0.12);
}

body[data-page="mobile-design-system"] .case-kicker span {
  background: rgba(255, 255, 255, 0.9);
  color: rgba(16, 32, 28, 0.78);
}

body[data-page="mobile-design-system"] .case-title span:first-child,
body[data-page="mobile-design-system"] .section-lock h2,
body[data-page="mobile-design-system"] .next-steps h2 {
  color: var(--ink);
}

body[data-page="mobile-design-system"] .case-title span:last-child {
  color: var(--acid);
}

body[data-page="mobile-design-system"] .case-device,
body[data-page="mobile-design-system"] .screen-grid figure,
body[data-page="mobile-design-system"] .screen-marquee img {
  background: linear-gradient(135deg, rgba(39, 124, 102, 0.08), rgba(255, 255, 255, 0.94));
  box-shadow: 0 28px 80px rgba(16, 32, 28, 0.08);
}

body[data-page="mobile-design-system"] .case-device figcaption {
  border-top-color: rgba(16, 32, 28, 0.14);
  color: rgba(16, 32, 28, 0.78);
}

body[data-page="mobile-design-system"] .image-placeholder {
  background:
    linear-gradient(135deg, rgba(39, 124, 102, 0.14), transparent 36%),
    radial-gradient(circle at 78% 20%, rgba(118, 208, 181, 0.18), transparent 32%),
    #f7fcfa;
}

body[data-page="mobile-design-system"] .evidence-grid article,
body[data-page="mobile-design-system"] .product-card,
body[data-page="mobile-design-system"] .roadmap article {
  background:
    linear-gradient(145deg, rgba(39, 124, 102, 0.075), transparent 48%),
    rgba(255, 255, 255, 0.88);
}

body[data-page="mobile-design-system"] .source-links a,
body[data-page="mobile-design-system"] .flow div {
  background:
    linear-gradient(135deg, rgba(39, 124, 102, 0.08), rgba(247, 252, 250, 0.94)),
    #ffffff;
}

body[data-page="mobile-design-system"] .flow div {
  border-color: rgba(39, 124, 102, 0.24);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.68);
}

body[data-page="mobile-design-system"] .flow span {
  background: linear-gradient(90deg, rgba(39, 124, 102, 0.18), var(--acid));
}

body[data-page="mobile-design-system"] .role-list {
  background: rgba(39, 124, 102, 0.12);
}

body[data-page="mobile-design-system"] .role-list li {
  background: rgba(255, 255, 255, 0.86);
}

/* Editorial homepage direction: warm canvas, restrained green, product proof. */
body[data-page="home"] {
  color-scheme: light;
  --bg: #f2f0e9;
  --ink: #171916;
  --muted: rgba(23, 25, 22, 0.62);
  --line: rgba(23, 25, 22, 0.1);
  --line-strong: rgba(23, 25, 22, 0.28);
  --acid: #5f956a;
  --blue: #5f956a;
  --on-acid: #f7f5ef;
  --panel: #e9e7df;
  --transition-bg: #f2f0e9;
  color: var(--ink);
  background: var(--bg);
}

body[data-page="home"] .noise {
  opacity: 0.026;
  mix-blend-mode: multiply;
}

body[data-page="home"]::before {
  background-size: 96px 96px;
  mask-image: linear-gradient(to bottom, black 0 82%, transparent 100%);
}

body[data-page="home"] #motionField {
  background: #f2f0e9;
}

body[data-page="home"] .cursor {
  border-color: rgba(69, 118, 79, 0.62);
  mix-blend-mode: multiply;
}

body[data-page="home"] .cursor.is-link {
  background: rgba(95, 149, 106, 0.12);
}

body[data-page="home"] .site-loader {
  background: #f2f0e9;
}

body[data-page="home"] .loader-number {
  border-color: rgba(23, 25, 22, 0.12);
}

body[data-page="home"] .loader-number::before,
body[data-page="home"] .loader-number::after {
  border-color: rgba(95, 149, 106, 0.34);
}

body[data-page="home"] .loader-number span {
  color: #171916;
  text-shadow: 0 0 38px rgba(95, 149, 106, 0.18);
}

body[data-page="home"] .loader-meter {
  background: rgba(23, 25, 22, 0.12);
}

body[data-page="home"] .loader-meter span {
  background: #5f956a;
}

body[data-page="home"] .site-header {
  grid-template-columns: 1fr auto 1fr;
  height: 96px;
  padding: 0 clamp(28px, 4.8vw, 72px);
  border-color: rgba(23, 25, 22, 0.1);
  background: rgba(242, 240, 233, 0.88);
  box-shadow: none;
  backdrop-filter: blur(20px);
}

body[data-page="home"] .brand,
body[data-page="home"] .availability,
body[data-page="home"] nav a {
  min-height: auto;
  border: 0;
  color: #171916;
  font-family: var(--body-font);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
}

body[data-page="home"] .brand {
  justify-self: start;
  justify-content: flex-start;
  gap: 12px;
}

body[data-page="home"] .brand-name {
  white-space: nowrap;
  font-weight: 650;
}

body[data-page="home"] .brand-logo::before {
  display: none;
}

body[data-page="home"] .brand-logo .logo-mark {
  width: 34px;
  height: 34px;
  animation-name: logo-color-story-home-light;
}

@keyframes logo-color-story-home-light {
  0% {
    --logo-main: #ff3b3f;
    --logo-side: #ff9a9f;
    transform: translateY(7px) scale(0.82);
    opacity: 0;
  }
  16% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
  38% {
    --logo-main: #a9f76a;
    --logo-side: #d7f2b3;
  }
  62% {
    --logo-main: #266bf5;
    --logo-side: #6195ff;
  }
  84%,
  100% {
    --logo-main: #171916;
    --logo-side: #555a57;
    filter: none;
    transform: translateY(0) scale(1);
    opacity: 1;
  }
}

body[data-page="home"] nav {
  height: auto;
  gap: clamp(22px, 3vw, 48px);
  justify-self: center;
}

body[data-page="home"] nav a {
  padding: 12px 0;
  background: transparent;
}

body[data-page="home"] nav a:hover {
  color: #4f8059;
  background: transparent;
}

body[data-page="home"] .availability {
  min-height: 46px;
  justify-self: end;
  gap: 10px;
  border-radius: 999px;
  padding: 0 22px;
  color: #f7f5ef;
  background: #171916;
  font-weight: 650;
}

body[data-page="home"] .availability span {
  display: none;
}

body[data-page="home"] .availability b {
  font-size: 1rem;
  font-weight: 500;
}

body[data-page="home"] .hero {
  position: relative;
  min-height: 100svh;
  display: block;
  padding: 132px clamp(28px, 4.8vw, 72px) 270px;
  overflow: hidden;
}

body[data-page="home"] .hero-meta {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 24px;
  margin: 0;
  background: transparent;
}

body[data-page="home"] .hero-meta p {
  padding: 0;
  color: rgba(23, 25, 22, 0.72);
  background: transparent;
  font-size: 0.7rem;
  letter-spacing: 0.06em;
}

body[data-page="home"] .hero-meta p:first-child {
  color: #315f3a;
  font-weight: 700;
}

body[data-page="home"] .hero-meta p:nth-child(2) {
  justify-self: center;
}

body[data-page="home"] .hero-meta p:last-child {
  justify-self: end;
}

body[data-page="home"] .hero-title {
  max-width: none;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  margin: clamp(92px, 11vh, 126px) 0 0;
  color: #171916;
  font-size: clamp(5.4rem, 9vw, 9.2rem);
  font-weight: 520;
  letter-spacing: -0.052em;
  line-height: 0.91;
  text-transform: none;
}

body[data-page="home"] .hero-title .line-mask:first-child {
  margin-right: 0.22em;
}

body[data-page="home"] .hero-title .accent-line {
  flex-basis: 100%;
  padding: 0 0 0.12em;
  line-height: 0.9;
}

body[data-page="home"] .hero-title .line-mask b:not(.versatile-wordmark) {
  font-weight: 520;
}

body[data-page="home"] .versatile-wordmark,
body[data-page="home"] .versatile-wordmark.palette-signal,
body[data-page="home"] .versatile-wordmark.palette-system,
body[data-page="home"] .versatile-wordmark.palette-care,
body[data-page="home"] .versatile-wordmark.palette-commerce,
body[data-page="home"] .versatile-wordmark.palette-play,
body[data-page="home"] .versatile-wordmark.palette-ink {
  --wordmark-solid: #5f956a;
  --wordmark-gradient: linear-gradient(104deg, #477b52 0%, #73a77c 52%, #416d49 100%);
  --wordmark-glow: rgba(95, 149, 106, 0.16);
}

body[data-page="home"] .wordmark-sheen {
  opacity: 0.08;
}

body[data-page="home"] .hero-lower {
  display: grid;
  grid-template-columns: minmax(80px, 1fr) minmax(340px, 520px) auto;
  align-items: end;
  gap: clamp(28px, 5vw, 72px);
  margin-top: 34px;
}

body[data-page="home"] .hero-thesis {
  grid-column: 2;
  max-width: 520px;
  color: rgba(23, 25, 22, 0.76);
  font-size: clamp(1rem, 1.35vw, 1.28rem);
  line-height: 1.48;
}

body[data-page="home"] .hero-actions {
  grid-column: 3;
  align-items: center;
}

body[data-page="home"] .hero-actions .primary-link {
  min-height: 42px;
  border: 0;
  border-bottom: 1px solid #171916;
  border-radius: 0;
  padding: 0;
  color: #171916;
  background: transparent;
  font-family: var(--body-font);
  font-size: 0.84rem;
  font-weight: 650;
  text-transform: none;
}

body[data-page="home"] .hero-actions .secondary-link {
  display: none;
}

body[data-page="home"] .live-proof {
  top: auto;
  right: auto;
  bottom: 0;
  left: 29%;
  width: 66%;
  min-height: 226px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 0;
  border-radius: 22px 22px 0 0;
  color: #f2f0e9;
  background: #0d100d;
  box-shadow: 0 28px 80px rgba(23, 25, 22, 0.12);
  backdrop-filter: none;
}

body[data-page="home"] .proof-label {
  padding: 16px 20px;
  border-color: rgba(255, 255, 255, 0.1);
  color: #9fd2a8;
}

body[data-page="home"] .proof-grid {
  grid-template-columns: repeat(4, 1fr);
}

body[data-page="home"] .proof-grid div {
  min-height: 158px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 0;
  padding: 22px 20px;
}

body[data-page="home"] .proof-grid div:last-child {
  border-right: 0;
}

body[data-page="home"] .proof-grid strong {
  color: #f2f0e9;
  font-size: clamp(2.6rem, 4.8vw, 4.6rem);
  font-weight: 520;
}

body[data-page="home"] .proof-grid span {
  color: rgba(242, 240, 233, 0.58);
}

body[data-page="home"] .ticker {
  border-color: rgba(23, 25, 22, 0.12);
  color: rgba(23, 25, 22, 0.66);
  background: rgba(242, 240, 233, 0.74);
}

body[data-page="home"] .ticker div {
  padding-top: 17px;
  padding-bottom: 17px;
}

body[data-page="home"] .work-section,
body[data-page="home"] .method-section {
  padding-top: clamp(128px, 13vw, 190px);
}

body[data-page="home"] .section-intro h2,
body[data-page="home"] .contact-section h2 {
  color: #171916;
  font-size: clamp(3.4rem, 7vw, 7.6rem);
  font-weight: 520;
  line-height: 0.94;
  letter-spacing: -0.05em;
  text-transform: none;
}

body[data-page="home"] .site-footer .footer-topline h2 {
  color: var(--footer-ink);
}

body[data-page="home"] .project-preview {
  overflow: hidden;
  border-radius: 20px;
  background: #171916;
  box-shadow: 0 32px 90px rgba(23, 25, 22, 0.12);
}

body[data-page="home"] .case-row a {
  padding-right: 18px;
  transition: color 220ms ease, padding-left 220ms ease, background-color 220ms ease;
}

body[data-page="home"] .case-row a:hover {
  color: #315f3a;
  background: rgba(95, 149, 106, 0.075);
}

body[data-page="home"] .method-card,
body[data-page="home"] .about-card {
  background: rgba(255, 255, 255, 0.24);
}

body[data-page="home"] .method-card h3 {
  font-weight: 540;
}

body[data-page="home"] .method-card:nth-child(1):hover,
body[data-page="home"] .method-card:nth-child(2):hover,
body[data-page="home"] .method-card:nth-child(3):hover,
body[data-page="home"] .method-card:nth-child(4):hover {
  background: rgba(95, 149, 106, 0.1);
}

body[data-page="home"] .lab-panel {
  overflow: hidden;
  border-radius: 20px;
  color: #f2f0e9;
  background: #101210;
}

body[data-page="home"] .lab-panel h2 {
  color: #f2f0e9;
  font-weight: 520;
  text-transform: none;
}

body[data-page="home"] .lab-panel p:not(.kicker) {
  color: rgba(242, 240, 233, 0.64);
}

body[data-page="home"] .scroll-text,
body[data-page="home"] .scroll-word {
  color: rgba(23, 25, 22, 0.16);
}

body[data-page="home"] .scroll-word.is-active {
  color: #171916;
}

body[data-page="home"] .about-large p {
  font-weight: 480;
}

@media (max-width: 760px) {
  body[data-page="home"] .site-header {
    grid-template-columns: 52px 1fr;
    height: 72px;
    padding: 0 12px;
  }

  body[data-page="home"] .brand-name,
  body[data-page="home"] nav {
    display: none;
  }

  body[data-page="home"] .brand-logo .logo-mark {
    width: 32px;
    height: 32px;
  }

  body[data-page="home"] .availability {
    min-height: 40px;
    padding: 0 16px;
    font-size: 0.74rem;
  }

  body[data-page="home"] .hero {
    min-height: auto;
    padding: 104px 12px 0;
  }

  body[data-page="home"] .hero-meta {
    grid-template-columns: 1fr auto;
  }

  body[data-page="home"] .hero-meta p:nth-child(2) {
    display: none;
  }

  body[data-page="home"] .hero-meta p:last-child {
    justify-self: end;
  }

  body[data-page="home"] .hero-title {
    display: block;
    margin-top: 72px;
    font-size: clamp(4rem, 18vw, 5rem);
    line-height: 0.91;
  }

  body[data-page="home"] .hero-title .line-mask:first-child {
    margin-right: 0;
  }

  body[data-page="home"] .hero-lower {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 34px;
  }

  body[data-page="home"] .hero-thesis,
  body[data-page="home"] .hero-actions {
    grid-column: 1;
  }

  body[data-page="home"] .hero-actions {
    justify-content: flex-start;
  }

  body[data-page="home"] .live-proof {
    position: relative;
    inset: auto;
    width: 100%;
    min-height: 0;
    margin-top: 64px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 18px 18px 0 0;
  }

  body[data-page="home"] .proof-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  body[data-page="home"] .proof-grid div {
    min-height: 126px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  body[data-page="home"] .proof-grid div:nth-child(2n) {
    border-right: 0;
  }

  body[data-page="home"] .proof-grid div:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

  body[data-page="home"] .proof-grid strong {
    font-size: 3rem;
  }

  body[data-page="home"] .work-section,
  body[data-page="home"] .method-section,
  body[data-page="home"] .lab-section,
  body[data-page="home"] .about-section {
    width: calc(100vw - 24px);
    padding-top: 104px;
  }

  body[data-page="home"] .section-intro h2,
  body[data-page="home"] .contact-section h2 {
    font-size: clamp(3.2rem, 15vw, 4.7rem);
    line-height: 0.96;
  }

  body[data-page="home"] .case-row a:hover {
    padding-left: 0;
    background: transparent;
  }

  body[data-page="home"] .mobile-case-image {
    border-radius: 14px 14px 0 0;
  }
}
