:root {
  --color-bg: #000;
  --color-bg-soft: #0b0b0b;
  --color-panel: #101010;
  --color-text: #f4f4f4;
  --color-muted: rgba(244, 244, 244, 0.78);
  --color-line: rgba(255, 255, 255, 0.34);
  --color-line-soft: rgba(255, 255, 255, 0.15);

  --color-light-bg: #f5f5f7;
  --color-light-text: #0e0e12;
  --color-light-muted: rgba(14, 14, 18, 0.72);
  --color-light-line: rgba(14, 14, 18, 0.2);

  --font-display: "Syne", "Avenir Next", "Helvetica Neue", sans-serif;
  --font-body: "Manrope", "Avenir Next", "Helvetica Neue", sans-serif;

  --space-2xs: 0.25rem;
  --space-xs: 0.5rem;
  --space-sm: 0.75rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 6rem;

  --radius-md: 14px;
  --radius-lg: 20px;

  --shell-width: min(1280px, 100% - 4rem);
  --hero-max: 900px;

  --dur-fast: 180ms;
  --dur-mid: 260ms;
  --ease-premium: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-bg);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.is-loading {
  overflow: hidden;
}

.page-loader {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: grid;
  place-items: center;
  background: #000;
  isolation: isolate;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition:
    opacity 520ms var(--ease-premium),
    visibility 520ms var(--ease-premium);
}

.page-loader::before,
.page-loader::after {
  content: none;
}

.page-loader::before {
  width: 0;
  height: 0;
}

.page-loader::after {
  width: 0;
  height: 0;
}

.page-loader-inner {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  gap: 0.85rem;
  padding: 1rem;
}

.page-loader-mark {
  width: clamp(188px, 26vw, 290px);
  opacity: 0;
  transform: translateY(10px) scale(0.99);
  animation: loaderMarkIn 700ms var(--ease-premium) forwards;
}

.page-loader-mark img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.page-loader-word {
  margin: 0;
  display: inline-flex;
  gap: 0.15em;
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2.1vw, 1.75rem);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.94);
}

.page-loader-word span {
  opacity: 0;
  transform: translateY(10px);
  animation: loaderGlyphIn 520ms var(--ease-premium) forwards;
}

.page-loader-word span:nth-child(1) {
  animation-delay: 300ms;
}

.page-loader-word span:nth-child(2) {
  animation-delay: 365ms;
}

.page-loader-word span:nth-child(3) {
  animation-delay: 430ms;
}

.page-loader-word span:nth-child(4) {
  animation-delay: 495ms;
}

.page-loader-word span:nth-child(5) {
  animation-delay: 560ms;
}

.page-loader-word span:nth-child(6) {
  animation-delay: 625ms;
}

.page-loader-word span:nth-child(7) {
  animation-delay: 690ms;
}

.page-loader-word span:nth-child(8) {
  animation-delay: 755ms;
}

body:not(.is-loading) .page-loader {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

@keyframes loaderMarkIn {
  from {
    opacity: 0;
    transform: translateY(10px) scale(0.99);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes loaderGlyphIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

body.menu-open {
  overflow: hidden;
}

body.menu-open .site-header,
body.menu-open .site-header.is-scrolled {
  background: #000;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

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

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

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

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  pointer-events: none;
  background: transparent;
  transition:
    background-color var(--dur-mid) var(--ease-premium),
    backdrop-filter var(--dur-mid) var(--ease-premium),
    -webkit-backdrop-filter var(--dur-mid) var(--ease-premium);
}

.nav-shell {
  min-height: 102px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  pointer-events: auto;
}

.site-header.is-scrolled {
  background: rgba(8, 8, 8, 0.48);
  backdrop-filter: blur(14px) saturate(135%);
  -webkit-backdrop-filter: blur(14px) saturate(135%);
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.brand-mark {
  height: clamp(62px, 6.1vw, 84px);
  min-width: clamp(188px, 20vw, 292px);
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  background: transparent;
  overflow: visible;
}

.brand img {
  height: 100%;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  transform: scale(1.32);
  transform-origin: left center;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(1.2rem, 2.8vw, 2.35rem);
}

.desktop-nav a {
  font-size: 0.76rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
  color: rgba(244, 244, 244, 0.92);
  position: relative;
  transition: color var(--dur-fast) ease;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.45rem;
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.86);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform var(--dur-mid) var(--ease-premium);
}

.desktop-nav a:hover,
.desktop-nav a:focus-visible {
  color: #fff;
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after {
  transform: scaleX(1);
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 0;
  margin: 0;
  padding: 0;
  background: transparent;
  cursor: pointer;
  position: relative;
  pointer-events: auto;
}

.menu-toggle span {
  position: absolute;
  left: 11px;
  right: 11px;
  height: 1.8px;
  background: rgba(255, 255, 255, 0.94);
  border-radius: 999px;
  transition: transform var(--dur-mid) var(--ease-premium), opacity var(--dur-fast) ease;
}

.menu-toggle span:nth-child(1) {
  top: 15px;
}

.menu-toggle span:nth-child(2) {
  top: 23px;
}

.menu-toggle span:nth-child(3) {
  top: 31px;
}

.menu-toggle.is-open span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.menu-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-open span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.82);
  backdrop-filter: blur(11px);
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--dur-mid) var(--ease-premium), visibility var(--dur-mid) var(--ease-premium);
  pointer-events: none;
}

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

.mobile-menu-inner {
  width: min(78vw, 360px);
  margin-left: auto;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.6rem;
  padding: 6.2rem 2rem 2rem;
  background: rgba(8, 8, 8, 0.95);
  border-left: 1px solid var(--color-line-soft);
  transform: translateX(100%);
  transition: transform var(--dur-mid) var(--ease-premium);
}

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

.mobile-menu a {
  font-size: 0.94rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-text);
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}

.mobile-menu-close-home {
  display: none;
}

.mobile-menu-close-icon {
  display: none;
}

.mobile-menu-footer {
  display: none;
}

.mobile-menu-dino {
  display: none;
}

.hero {
  position: relative;
  min-height: 100svh;
  background: #000;
  overflow: clip;
}

.hero-media {
  position: absolute;
  inset: 0;
  background: #000;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(140% 90% at 50% 0%, rgba(0, 0, 0, 0.16) 0%, rgba(0, 0, 0, 0.44) 68%, rgba(0, 0, 0, 0.59) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.43) 0%, rgba(0, 0, 0, 0.27) 34%, rgba(0, 0, 0, 0.45) 100%);
}

.hero-content-wrap {
  position: relative;
  z-index: 2;
  min-height: 100svh;
  display: grid;
  place-items: center;
  text-align: center;
  padding-top: clamp(7rem, 15vh, 11rem);
  padding-bottom: clamp(4rem, 9vh, 7rem);
}

.hero-content {
  width: min(100%, var(--hero-max));
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(1rem, 2.2vw, 1.8rem);
}

.hero-eyebrow {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.19em;
  font-size: 0.69rem;
  color: rgba(255, 255, 255, 0.78);
}

.hero h1 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2rem, 6.8vw, 5.55rem);
  line-height: 0.95;
  letter-spacing: -0.03em;
  font-weight: 700;
  max-width: 12ch;
  text-wrap: balance;
}

.hero-subtitle {
  margin: 0;
  max-width: 60ch;
  font-size: clamp(1rem, 2.05vw, 1.24rem);
  letter-spacing: 0.01em;
  line-height: 1.55;
  color: var(--color-muted);
  text-wrap: pretty;
}

.text-reveal {
  opacity: 0;
  transform: translate3d(0, 14px, 0) scale(0.995);
  filter: blur(2.4px);
  will-change: transform, opacity, filter;
  transition:
    opacity 620ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 760ms cubic-bezier(0.22, 1, 0.36, 1),
    filter 620ms cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--text-fx-delay, 0s);
}

.text-reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
  filter: blur(0);
  will-change: auto;
}

.hero h1.text-reveal {
  transition-duration: 700ms, 860ms;
}

.hero h1.text-reveal.is-visible {
  animation: heroHeadlineSheen 1300ms ease-out both;
}

@keyframes heroHeadlineSheen {
  0% {
    text-shadow: 0 0 0 rgba(255, 255, 255, 0);
  }
  35% {
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.16);
  }
  100% {
    text-shadow: 0 0 0 rgba(255, 255, 255, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .text-reveal {
    opacity: 1;
    transform: none;
    filter: none;
    transition: none;
  }

  .hero h1.text-reveal.is-visible {
    animation: none;
  }
}

.hero-actions {
  margin-top: clamp(1rem, 1.9vw, 1.8rem);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.78rem 1.75rem;
  border-radius: 999px;
  letter-spacing: 0.095em;
  text-transform: uppercase;
  font-size: 0.73rem;
  font-weight: 600;
  transition:
    color var(--dur-fast) ease,
    border-color var(--dur-fast) ease,
    background-color var(--dur-mid) var(--ease-premium),
    transform var(--dur-mid) var(--ease-premium);
}

.btn-outline {
  border: 1px solid var(--color-line);
  color: #fff;
  background: rgba(0, 0, 0, 0.18);
}

.btn-outline:hover,
.btn-outline:focus-visible {
  border-color: rgba(255, 255, 255, 0.82);
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-1px);
}

.hero-actions .btn-outline,
.final-cta-inner .btn-outline,
.page-cta-inner .btn-outline,
.contact-form .btn-outline {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  border-color: rgba(255, 255, 255, 0.36);
  background:
    linear-gradient(128deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.04) 34%, rgba(255, 255, 255, 0.01) 100%),
    rgba(16, 16, 16, 0.34);
  backdrop-filter: blur(5px) saturate(116%);
  -webkit-backdrop-filter: blur(5px) saturate(116%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    0 6px 18px rgba(0, 0, 0, 0.2);
  color: rgba(255, 255, 255, 0.99);
  text-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
}

.hero-actions .btn-outline::before,
.final-cta-inner .btn-outline::before,
.page-cta-inner .btn-outline::before,
.contact-form .btn-outline::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background: linear-gradient(108deg, rgba(255, 255, 255, 0.24) 0%, rgba(255, 255, 255, 0.08) 36%, rgba(255, 255, 255, 0) 64%);
  opacity: 0.38;
  transition: opacity var(--dur-mid) var(--ease-premium);
}

.hero-actions .btn-outline:hover,
.hero-actions .btn-outline:focus-visible,
.final-cta-inner .btn-outline:hover,
.final-cta-inner .btn-outline:focus-visible,
.page-cta-inner .btn-outline:hover,
.page-cta-inner .btn-outline:focus-visible,
.contact-form .btn-outline:hover,
.contact-form .btn-outline:focus-visible {
  border-color: rgba(255, 255, 255, 0.74);
  background:
    linear-gradient(128deg, rgba(255, 255, 255, 0.18) 0%, rgba(255, 255, 255, 0.08) 34%, rgba(255, 255, 255, 0.02) 100%),
    rgba(20, 20, 20, 0.42);
  backdrop-filter: blur(8px) saturate(126%);
  -webkit-backdrop-filter: blur(8px) saturate(126%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.24),
    0 10px 24px rgba(0, 0, 0, 0.28);
  color: #fff;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.35);
  transform: translateY(-1px) scale(1.005);
}

.hero-actions .btn-outline:hover::before,
.hero-actions .btn-outline:focus-visible::before,
.final-cta-inner .btn-outline:hover::before,
.final-cta-inner .btn-outline:focus-visible::before,
.page-cta-inner .btn-outline:hover::before,
.page-cta-inner .btn-outline:focus-visible::before,
.contact-form .btn-outline:hover::before,
.contact-form .btn-outline:focus-visible::before {
  opacity: 0.62;
}

.section {
  padding-block: clamp(4.5rem, 9vw, 8rem);
}

.services-marquee {
  position: relative;
  background: #030303;
  border-top: 1px solid var(--color-line-soft);
  border-bottom: 1px solid var(--color-line-soft);
  padding-block: clamp(0.82rem, 1.9vw, 1.2rem);
  margin-top: clamp(2rem, 4.8vw, 4rem);
  overflow: hidden;
}

.services-marquee::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.04) 22%, rgba(255, 255, 255, 0) 58%),
    linear-gradient(110deg, rgba(255, 255, 255, 0.07) 8%, rgba(255, 255, 255, 0.015) 34%, rgba(255, 255, 255, 0) 62%);
  mix-blend-mode: screen;
  opacity: 0.45;
}

.services-marquee-viewport {
  position: relative;
  z-index: 1;
  width: 100%;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent 0, #000 7%, #000 93%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0, #000 7%, #000 93%, transparent 100%);
}

.services-marquee-track {
  display: flex;
  width: max-content;
  align-items: center;
  animation: servicesTickerMove 26s linear infinite;
  will-change: transform;
}

.services-marquee-group {
  margin: 0;
  display: flex;
  align-items: center;
  gap: clamp(0.85rem, 1.8vw, 1.8rem);
  padding-right: clamp(0.85rem, 1.8vw, 1.8rem);
}

.services-marquee-group span {
  color: rgba(255, 255, 255, 0.92);
  font-family: var(--font-display);
  font-size: clamp(0.84rem, 1.12vw, 1.02rem);
  letter-spacing: 0.075em;
  text-transform: uppercase;
  white-space: nowrap;
  line-height: 1;
}

.services-marquee-group .services-marquee-sep {
  color: rgba(255, 255, 255, 0.54);
  font-size: clamp(0.66rem, 0.95vw, 0.82rem);
  letter-spacing: 0;
}

.services-marquee:hover .services-marquee-track,
.services-marquee:focus-within .services-marquee-track {
  animation-play-state: paused;
}

@keyframes servicesTickerMove {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.capabilities,
.selected-work,
.final-cta,
.site-footer {
  background: var(--color-bg);
}

.section-head {
  display: grid;
  gap: 0.75rem;
  margin-bottom: clamp(2rem, 4.6vw, 3.5rem);
}

.section-kicker {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.68rem;
  color: rgba(255, 255, 255, 0.72);
}

.section-head h2,
.final-cta-inner h2,
.testimonial-copy h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 5.2vw, 4.2rem);
  line-height: 0.97;
  letter-spacing: -0.028em;
  font-weight: 700;
  text-wrap: balance;
}

.capabilities {
  background: linear-gradient(180deg, #050505 0%, #030303 100%);
}

.capabilities-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-template-rows: auto auto;
  column-gap: clamp(0.9rem, 2vw, 1.5rem);
  row-gap: clamp(3rem, 5.6vw, 4.8rem);
}

.capability-block {
  border: 1px solid var(--color-line-soft);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.02);
  overflow: hidden;
}

.capability-media {
  grid-column: 1 / 8;
  grid-row: 1 / 2;
  height: clamp(290px, 33vw, 450px);
  min-height: clamp(290px, 33vw, 450px);
  max-height: clamp(290px, 33vw, 450px);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.capability-video {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 0;
  max-height: 100%;
  flex: 1;
  object-fit: cover;
}

.capability-meta {
  padding: 1rem 1.2rem 1.1rem;
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  border-top: 1px solid var(--color-line-soft);
}

.capability-meta span {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.76);
}

.capability-copy {
  grid-column: 8 / 13;
  grid-row: 1 / 2;
  padding: clamp(1.5rem, 3.6vw, 3rem);
  display: grid;
  align-content: center;
  gap: 1rem;
  border: 0;
  border-radius: 0;
  background: transparent;
  overflow: visible;
}

.capability-label {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.7);
}

.capability-copy h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.7vw, 2.25rem);
  line-height: 1.03;
  letter-spacing: -0.02em;
}

.capability-copy p {
  margin: 0;
  color: var(--color-muted);
  font-size: 1rem;
  line-height: 1.58;
}

.capability-image {
  grid-column: 1 / 6;
  grid-row: 2 / 3;
  min-height: clamp(250px, 28vw, 360px);
}

.capability-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--dur-mid) var(--ease-premium);
}

.capability-image:hover img {
  transform: scale(1.03);
}

.capability-list {
  grid-column: 1 / 13;
  grid-row: 2 / 3;
  width: 100vw;
  margin-inline: calc(50% - 50vw);
  padding: clamp(1.25rem, 2.6vw, 2.2rem) clamp(1rem, 4vw, 3rem);
  border: 0;
  border-radius: 0;
  background: transparent;
  overflow: visible;
}

.capability-list ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.95rem;
}

.capability-list li {
  display: grid;
  grid-template-columns: 4.3rem 1fr;
  gap: 0.55rem;
  align-items: start;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid var(--color-line-soft);
}

.capability-list li:last-child {
  padding-bottom: 0.85rem;
  border-bottom: 1px solid var(--color-line-soft);
}

.capability-list span {
  font-family: var(--font-display);
  font-size: 1.46rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  line-height: 1;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.78);
}

.capability-list p {
  margin: 0;
  font-size: clamp(1.08rem, 1.7vw, 1.32rem);
  letter-spacing: -0.01em;
}

.capability-list-link {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  padding-bottom: 0.5rem;
  color: inherit;
}

.capability-list-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: var(--color-line-soft);
  opacity: 0;
  transition: opacity var(--dur-mid) var(--ease-premium);
}

.capability-list-content {
  display: grid;
  gap: 0.35rem;
}

.capability-list-text {
  margin: 0;
  font-size: clamp(1.24rem, 2.1vw, 1.62rem);
  letter-spacing: -0.01em;
  color: rgba(244, 244, 244, 0.9);
}

.capability-list-text-mobile-only {
  display: none;
}

.capability-list-arrow {
  font-size: 1.78rem;
  font-weight: 900;
  line-height: 0.85;
  color: rgba(255, 255, 255, 0.78);
  transition: transform var(--dur-mid) var(--ease-premium), color var(--dur-fast) ease;
}

.capability-list-link:hover .capability-list-arrow,
.capability-list-link:focus-visible .capability-list-arrow {
  transform: translate(2px, -2px);
  color: #fff;
}

.capability-list-preview {
  display: grid;
  align-items: center;
  gap: 1rem;
  padding-top: 0;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transform: translateY(-4px);
  transition:
    max-height var(--dur-mid) var(--ease-premium),
    opacity var(--dur-mid) var(--ease-premium),
    transform var(--dur-mid) var(--ease-premium);
}

.capability-list-preview.is-right {
  grid-template-columns: 1fr 168px;
}

.capability-list-preview.is-left {
  grid-template-columns: 168px 1fr;
  column-gap: 1.4rem;
}

.capability-list-preview p {
  margin: 0;
  font-size: clamp(0.98rem, 1.25vw, 1.08rem);
  line-height: 1.62;
  letter-spacing: 0.005em;
  color: rgba(244, 244, 244, 0.82);
  max-width: 62ch;
}

.capability-list-preview.is-left p {
  order: 2;
}

.capability-list-preview img,
.capability-list-preview video {
  width: 168px;
  height: 106px;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.03);
  display: block;
}

.capability-list-preview.is-left img,
.capability-list-preview.is-left video {
  order: 1;
}

.capability-list li:hover .capability-list-preview,
.capability-list li:focus-within .capability-list-preview {
  padding-top: 0.65rem;
  max-height: 320px;
  opacity: 1;
  transform: translateY(0);
}

.capability-list li:hover .capability-list-link::after,
.capability-list li:focus-within .capability-list-link::after {
  opacity: 1;
}

@media (hover: none) and (pointer: coarse) {
  .capability-list-preview {
    display: none !important;
    max-height: 0 !important;
    opacity: 0 !important;
    padding-top: 0 !important;
    transform: none !important;
    overflow: hidden !important;
    transition: none !important;
  }

  .capability-list li:hover .capability-list-preview,
  .capability-list li:focus-within .capability-list-preview {
    display: none !important;
    max-height: 0 !important;
    opacity: 0 !important;
    padding-top: 0 !important;
    transform: none !important;
  }

  .capability-list li:hover .capability-list-link::after,
  .capability-list li:focus-within .capability-list-link::after {
    opacity: 0;
  }

  .capability-list-link:hover .capability-list-arrow,
  .capability-list-link:focus-visible .capability-list-arrow {
    transform: none;
    color: rgba(255, 255, 255, 0.78);
  }
}

.selected-work {
  background: #050505;
}

.home-work-motion {
  background: #040404;
}

.home-work-head {
  max-width: 68ch;
}

.home-work-head p {
  margin: 0;
  color: var(--color-muted);
  line-height: 1.62;
  max-width: 62ch;
}

.home-work-stage {
  --work-robot-progress: 0;
  --work-robot-lift: 0px;
  --work-robot-tilt: 0deg;
  position: relative;
  min-height: clamp(280px, 36vw, 420px);
  border: 1px solid var(--color-line-soft);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(100% 140% at 0% 0%, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0) 55%),
    radial-gradient(80% 120% at 100% 100%, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0) 58%),
    #080808;
  overflow: hidden;
  isolation: isolate;
}

.home-work-path {
  position: absolute;
  left: 7%;
  right: 7%;
  top: 58%;
  height: 1px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.4) 0 24%, rgba(255, 255, 255, 0) 24% 34%) 0 0 / 16px 1px repeat-x;
  opacity: 0.68;
}

.home-work-node {
  position: absolute;
  top: 58%;
  width: 0.56rem;
  height: 0.56rem;
  margin-top: -0.28rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.home-work-node-start {
  left: 7%;
}

.home-work-node-end {
  right: 7%;
}

.home-work-robot {
  position: absolute;
  left: calc(10% + (var(--work-robot-progress) * 80%));
  bottom: 21%;
  width: clamp(100px, 12vw, 154px);
  aspect-ratio: 1 / 1.24;
  transform: translate3d(-50%, calc(-1 * var(--work-robot-lift)), 0) rotate(var(--work-robot-tilt));
  transform-style: preserve-3d;
  transition: transform 220ms linear;
  will-change: transform, left;
  pointer-events: none;
}

.home-work-robot-shadow {
  position: absolute;
  left: 50%;
  bottom: -7%;
  width: 68%;
  height: 12%;
  transform: translateX(-50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0) 72%);
  filter: blur(8px);
  opacity: 0.24;
}

.home-work-robot-body {
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 50%;
  height: 44%;
  border-radius: 44% 44% 56% 56% / 36% 36% 64% 64%;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background:
    radial-gradient(92% 100% at 72% 84%, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0) 72%),
    linear-gradient(166deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.05) 58%),
    #161a22;
  transform: translateX(-50%);
  box-shadow:
    inset 0 12px 18px rgba(255, 255, 255, 0.1),
    inset -8px -10px 14px rgba(0, 0, 0, 0.28);
}

.home-work-robot-arm {
  position: absolute;
  top: 28%;
  width: 24%;
  height: 46%;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background:
    radial-gradient(circle at 34% 28%, rgba(255, 255, 255, 0.28) 0%, rgba(255, 255, 255, 0.05) 48%, rgba(255, 255, 255, 0) 78%),
    #131820;
}

.home-work-robot-arm-left {
  left: -20%;
  transform: rotate(12deg);
}

.home-work-robot-arm-right {
  right: -20%;
  transform: rotate(-12deg);
}

.home-work-robot-head {
  position: absolute;
  left: 50%;
  top: -96%;
  width: 160%;
  height: 122%;
  border-radius: 36% 36% 42% 42% / 44% 44% 34% 34%;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background:
    radial-gradient(90% 76% at 26% 18%, rgba(255, 255, 255, 0.28) 0%, rgba(255, 255, 255, 0) 62%),
    linear-gradient(165deg, rgba(255, 255, 255, 0.19) 0%, rgba(255, 255, 255, 0.04) 58%),
    #141922;
  transform: translateX(-50%);
  box-shadow:
    inset 0 12px 20px rgba(255, 255, 255, 0.12),
    inset -10px -12px 18px rgba(0, 0, 0, 0.28);
}

.home-work-robot-face {
  position: absolute;
  inset: 22% 14% 19%;
  border-radius: 30% / 34%;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background:
    radial-gradient(110% 90% at 50% 12%, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0) 58%),
    #05080e;
}

.home-work-robot-eye {
  position: absolute;
  top: 36%;
  width: 16%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: #f4f4f6;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
  animation: homeWorkRobotBlink 4.8s infinite ease-in-out;
}

.home-work-robot-eye:first-child {
  left: 27%;
}

.home-work-robot-eye:nth-child(2) {
  right: 27%;
  animation-delay: 120ms;
}

.home-work-robot-mouth {
  position: absolute;
  left: 50%;
  bottom: 18%;
  width: 34%;
  height: 15%;
  transform: translateX(-50%);
  border-radius: 0 0 999px 999px;
  border-bottom: 2px solid rgba(255, 255, 255, 0.96);
}

.home-work-actions {
  margin-top: clamp(1rem, 2.1vw, 1.6rem);
  display: flex;
  justify-content: flex-end;
}

@keyframes homeWorkRobotBlink {
  0%,
  46%,
  56%,
  100% {
    transform: scaleY(1);
  }
  50% {
    transform: scaleY(0.16);
  }
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: clamp(0.9rem, 2vw, 1.5rem);
}

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

.work-card-featured {
  grid-column: 1 / 13;
}

.work-card-link {
  display: grid;
  gap: 1rem;
}

.work-media {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-line-soft);
  background: #101010;
}

.case-video-media {
  min-height: clamp(260px, 42vw, 560px);
}

.work-card-featured .work-media {
  min-height: clamp(300px, 45vw, 560px);
}

.work-card:not(.work-card-featured) .work-media {
  min-height: clamp(220px, 26vw, 320px);
}

.work-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.02) 15%, rgba(0, 0, 0, 0.32) 100%);
}

.work-media.is-playing::after,
.work-stream-media.is-playing::after {
  opacity: 0;
}

.work-media img,
.work-media video {
  width: 100%;
  height: 100%;
  display: block;
}

.work-media img {
  object-fit: cover;
  transition: transform 420ms var(--ease-premium);
}

.work-media video {
  object-fit: contain;
  background: #000;
}

.work-card-link:hover .work-media img,
.work-card-link:focus-visible .work-media img {
  transform: scale(1.05);
}

.work-card-copy {
  display: grid;
  gap: 0.25rem;
}

.work-category {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  font-size: 0.67rem;
  color: rgba(255, 255, 255, 0.7);
}

.work-card-copy h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2vw, 1.8rem);
  letter-spacing: -0.02em;
  line-height: 1.05;
}

.why-choose {
  background: #000;
}

.home-work-curated {
  background: #000;
  color: #fff;
}

.home-work-frame {
  border: 0;
  background: transparent;
  padding: 0;
}

.home-work-topbar {
  display: grid;
  grid-template-columns: 1fr auto auto 1fr;
  align-items: center;
  gap: 0.6rem;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.66rem;
  letter-spacing: 0.045em;
  text-transform: none;
}

.home-work-top-nav,
.home-work-top-time {
  justify-self: center;
}

.home-work-top-cta {
  justify-self: end;
}

.home-work-headline {
  margin: 0 0 clamp(1rem, 2.2vw, 1.5rem);
}

.home-work-headline h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 5.2vw, 4.2rem);
  line-height: 0.97;
  font-weight: 700;
  letter-spacing: -0.028em;
  color: #fff;
  text-wrap: balance;
}

.home-work-curated-layout {
  display: grid;
  grid-template-columns: minmax(380px, 520px) minmax(0, 1fr);
  gap: clamp(1rem, 2.2vw, 1.8rem);
  align-items: start;
}

.home-work-curated-left {
  display: grid;
  gap: clamp(0.85rem, 1.8vw, 1.25rem);
}

.home-work-divider {
  height: 1px;
  margin: clamp(0.82rem, 1.8vw, 1.12rem) 0;
  background: rgba(255, 255, 255, 0.18);
}

.home-work-preview {
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 0;
  overflow: hidden;
  background: #080808;
  min-height: 0;
  width: min(100%, 520px);
  max-width: 520px;
  aspect-ratio: 16 / 9;
}

.home-work-preview img,
.home-work-preview video {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  transition:
    opacity var(--dur-mid) var(--ease-premium),
    transform var(--dur-mid) var(--ease-premium);
}

.home-work-preview video {
  display: block;
  background: #050505;
  object-fit: contain;
}

.home-work-preview img.is-swapping,
.home-work-preview video.is-swapping {
  opacity: 0.38;
  transform: scale(1.014);
}

.home-work-curated-right {
  display: grid;
  padding-left: 0;
}

.home-work-list {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.home-work-item {
  width: 100%;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  background: transparent;
  color: #f4f4f6;
  padding: clamp(0.8rem, 1.7vw, 1.08rem) 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(108px, 142px);
  align-items: start;
  gap: 0.7rem 0.72rem;
  text-align: left;
  cursor: pointer;
  transition:
    color var(--dur-fast) ease,
    background-color var(--dur-fast) ease,
    padding-inline var(--dur-mid) var(--ease-premium);
}

.home-work-item:hover,
.home-work-item:focus-visible,
.home-work-item.is-active {
  color: #fff;
  background: rgba(255, 255, 255, 0.035);
  padding-inline: 0.28rem;
}

.home-work-item-lead {
  display: grid;
  align-content: start;
  gap: 0.18rem;
  min-height: 100%;
}

.home-work-item-index {
  display: inline-block;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.92);
  text-transform: uppercase;
  transition: color var(--dur-fast) ease;
}

.home-work-item:hover .home-work-item-index,
.home-work-item:focus-visible .home-work-item-index,
.home-work-item.is-active .home-work-item-index {
  color: rgba(255, 255, 255, 0.92);
}

.home-work-item-title {
  font-family: var(--font-body);
  font-size: clamp(1.02rem, 1.55vw, 1.34rem);
  letter-spacing: -0.01em;
  line-height: 1.14;
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
}

.home-work-item:hover .home-work-item-title,
.home-work-item:focus-visible .home-work-item-title,
.home-work-item.is-active .home-work-item-title {
  text-decoration: underline;
  text-underline-offset: 0.12em;
}

.home-work-item-aside {
  display: grid;
  justify-items: start;
  align-content: start;
  gap: 0.12rem;
}

.home-work-item-year {
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 0.18rem;
}

.home-work-item-tag {
  font-size: 0.72rem;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.62);
  white-space: nowrap;
}

.home-work-footnote {
  margin: clamp(0.8rem, 1.8vw, 1.16rem) 0 0;
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.7rem;
  letter-spacing: 0.05em;
}

.home-work-item:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.42);
  outline-offset: -2px;
}

.shortcut-board {
  display: block;
  background: #000;
  padding-top: clamp(1.4rem, 3.2vw, 2.2rem);
}

.shortcut-board-wrap {
  display: grid;
  place-items: center;
  overflow: visible;
}

.shortcut-keyboard-3d {
  --kbd-base-x: 8deg;
  --kbd-base-y: 0deg;
  --kbd-base-z: 0deg;
  --kbd-tilt-x: 0deg;
  --kbd-tilt-y: 0deg;
  --kbd-drift-x: 0px;
  --kbd-drift-y: 0px;
  width: min(100%, 700px);
  perspective: 1900px;
  transform-style: preserve-3d;
  touch-action: none;
}

.shortcut-keyboard-bed {
  --bed-depth: 24px;
  position: relative;
  min-height: clamp(130px, 17vw, 180px);
  border-radius: clamp(1.22rem, 2.35vw, 1.72rem);
  transform-style: preserve-3d;
  transform:
    translate3d(var(--kbd-drift-x), var(--kbd-drift-y), 0)
    rotateX(calc(var(--kbd-base-x) + var(--kbd-tilt-x)))
    rotateY(calc(var(--kbd-base-y) + var(--kbd-tilt-y)))
    rotateZ(var(--kbd-base-z));
  will-change: transform;
}

.shortcut-bed-face {
  position: absolute;
  pointer-events: none;
}

.shortcut-bed-top {
  left: clamp(0.56rem, 1.36vw, 0.8rem);
  right: clamp(0.56rem, 1.36vw, 0.8rem);
  top: clamp(0.56rem, 1.36vw, 0.78rem);
  bottom: clamp(0.56rem, 1.36vw, 0.78rem);
  border-radius: clamp(1.1rem, 2vw, 1.45rem);
  border: 1px solid rgba(255, 255, 255, 0.2);
  background:
    linear-gradient(165deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0) 30%),
    linear-gradient(180deg, #747a82 0%, #5a5f67 72%, #4d525a 100%);
  transform: translateZ(0);
  z-index: 1;
}

.shortcut-bed-top::after {
  content: "";
  position: absolute;
  left: clamp(0.56rem, 1.1vw, 0.9rem);
  right: clamp(0.56rem, 1.1vw, 0.9rem);
  top: clamp(0.56rem, 1.1vw, 0.9rem);
  bottom: clamp(0.56rem, 1.1vw, 0.9rem);
  border-radius: clamp(0.78rem, 1.5vw, 1.05rem);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(120% 100% at 32% 8%, rgba(255, 255, 255, 0.07) 0%, rgba(255, 255, 255, 0) 58%),
    linear-gradient(180deg, #10141c 0%, #06090f 100%);
}

.shortcut-bed-front {
  left: clamp(0.56rem, 1.36vw, 0.8rem);
  right: clamp(0.56rem, 1.36vw, 0.8rem);
  top: calc(100% - clamp(0.56rem, 1.36vw, 0.78rem));
  height: var(--bed-depth);
  border-radius: 0 0 clamp(1rem, 1.8vw, 1.35rem) clamp(1rem, 1.8vw, 1.35rem);
  background: linear-gradient(180deg, #666c74 0%, #4a4f57 100%);
  transform-origin: top;
  transform: rotateX(-90deg);
  z-index: 0;
}

.shortcut-bed-right {
  top: clamp(0.56rem, 1.36vw, 0.78rem);
  bottom: clamp(0.56rem, 1.36vw, 0.78rem);
  left: calc(100% - clamp(0.56rem, 1.36vw, 0.78rem));
  width: var(--bed-depth);
  border-radius: 0 clamp(1rem, 1.8vw, 1.3rem) clamp(1rem, 1.8vw, 1.3rem) 0;
  background: linear-gradient(180deg, #6f757d 0%, #525860 100%);
  transform-origin: left;
  transform: rotateY(90deg);
  z-index: 0;
}

.shortcut-keyboard-keys {
  position: absolute;
  left: clamp(1.15rem, 2.1vw, 1.5rem);
  right: clamp(1.15rem, 2.1vw, 1.5rem);
  top: clamp(1.15rem, 2.1vw, 1.5rem);
  bottom: clamp(1.15rem, 2.1vw, 1.5rem);
  display: grid;
  place-items: center;
  z-index: 4;
}

.shortcut-wordmark-3d {
  margin: 0;
  font-family: "Syne", var(--font-display), "Manrope", sans-serif;
  width: 100%;
  display: block;
  text-align: center;
  font-size: clamp(1.78rem, 5.9vw, 4.6rem);
  font-weight: 700;
  letter-spacing: clamp(0.02em, 0.45vw, 0.14em);
  line-height: 1;
  color: rgba(247, 250, 255, 0.96);
  text-transform: lowercase;
  position: relative;
  transform: translateZ(48px) rotateX(7deg) scaleX(1.12);
  transform-origin: center;
  transform-style: preserve-3d;
  white-space: nowrap;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(203, 213, 229, 0.9) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-kerning: normal;
}

.shortcut-wordmark-3d::before,
.shortcut-wordmark-3d::after {
  content: attr(data-text);
  position: absolute;
  inset: 0;
  pointer-events: none;
  text-transform: inherit;
  letter-spacing: inherit;
  font: inherit;
  line-height: inherit;
  white-space: inherit;
  -webkit-text-fill-color: initial;
  background: none;
}

.shortcut-wordmark-3d::before {
  color: rgba(156, 169, 188, 0.92);
  transform: translateZ(-12px);
}

.shortcut-wordmark-3d::after {
  color: rgba(80, 93, 112, 0.96);
  transform: translateZ(-24px);
}

.shortcut-logo-3d {
  position: relative;
  display: block;
  width: clamp(170px, 58vw, 350px);
  transform: translateZ(54px) rotateX(7deg) scale(1.06);
  transform-style: preserve-3d;
}

.shortcut-logo-layer {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  user-select: none;
  pointer-events: none;
}

.shortcut-logo-front {
  position: relative;
  z-index: 3;
}

.shortcut-logo-mid,
.shortcut-logo-back {
  position: absolute;
  inset: 0;
}

.shortcut-logo-mid {
  z-index: 2;
  opacity: 0.62;
  transform: translateZ(-10px);
}

.shortcut-logo-back {
  z-index: 1;
  opacity: 0.34;
  transform: translateZ(-20px);
}

.shortcut-key {
  --key-rot: -2deg;
  --key-z: 34px;
  --key-depth: 22px;
  position: relative;
  border: 0;
  background: transparent;
  min-height: clamp(66px, 11.7vw, 90px);
  cursor: pointer;
  transform: translate3d(0, 0, var(--key-z)) rotateZ(var(--key-rot));
  transform-style: preserve-3d;
  overflow: visible;
  transition: transform 140ms var(--ease-premium), filter 140ms var(--ease-premium);
  z-index: 5;
}

.shortcut-key-cuboid {
  position: absolute;
  inset: 0;
  transform-style: preserve-3d;
}

.shortcut-key-face {
  position: absolute;
}

.shortcut-key-face-top {
  inset: 0;
  border-radius: clamp(0.72rem, 1.58vw, 1.02rem);
  display: grid;
  place-items: center;
  font-family: var(--font-body);
  font-size: clamp(0.98rem, 1.7vw, 1.24rem);
  font-weight: 500;
  letter-spacing: 0.02em;
  color: rgba(34, 38, 46, 0.94);
  background:
    radial-gradient(circle at 24% 11%, rgba(255, 255, 255, 0.99) 0%, rgba(255, 255, 255, 0.86) 38%, rgba(255, 255, 255, 0) 65%),
    radial-gradient(circle at 84% 84%, rgba(126, 135, 148, 0.2) 0%, rgba(126, 135, 148, 0) 52%),
    linear-gradient(179deg, #fcfdff 0%, #eceff4 63%, #d8dee7 100%);
  border: 1px solid rgba(210, 214, 222, 0.9);
  transform: translateZ(var(--key-depth));
}

.shortcut-key-face-front {
  left: 0;
  right: 0;
  top: 100%;
  height: var(--key-depth);
  border-radius: 0 0 clamp(0.52rem, 1vw, 0.68rem) clamp(0.52rem, 1vw, 0.68rem);
  background: linear-gradient(180deg, #9ca5b4 0%, #6f7888 100%);
  border: 1px solid rgba(78, 88, 105, 0.55);
  transform-origin: top;
  transform: rotateX(-90deg);
}

.shortcut-key-face-right {
  top: 0;
  bottom: 0;
  left: 100%;
  width: var(--key-depth);
  border-radius: 0 clamp(0.45rem, 0.9vw, 0.62rem) clamp(0.45rem, 0.9vw, 0.62rem) 0;
  background: linear-gradient(180deg, #a7afbd 0%, #727b8b 100%);
  border: 1px solid rgba(76, 86, 102, 0.55);
  transform-origin: left;
  transform: rotateY(90deg);
}

.shortcut-key-face-left {
  top: 0;
  bottom: 0;
  right: 100%;
  width: var(--key-depth);
  border-radius: clamp(0.45rem, 0.9vw, 0.62rem) 0 0 clamp(0.45rem, 0.9vw, 0.62rem);
  background: linear-gradient(180deg, #b4bcc9 0%, #7e8797 100%);
  border: 1px solid rgba(82, 92, 108, 0.52);
  transform-origin: right;
  transform: rotateY(-90deg);
}

.shortcut-key-ctrl {
  --key-rot: -4deg;
  --key-z: 40px;
  --key-depth: 26px;
}

.shortcut-key-ctrl .shortcut-key-face-top {
  color: rgba(255, 255, 255, 0.95);
  background:
    radial-gradient(circle at 40% 10%, rgba(255, 228, 182, 0.9) 0%, rgba(255, 163, 74, 0.5) 34%, rgba(255, 95, 30, 0) 64%),
    radial-gradient(circle at 86% 86%, rgba(160, 25, 0, 0.24) 0%, rgba(160, 25, 0, 0) 50%),
    linear-gradient(178deg, #ff7a2b 0%, #fb5b1f 62%, #e13815 100%);
  border-color: rgba(230, 88, 45, 0.9);
}

.shortcut-key-ctrl .shortcut-key-face-front {
  background: linear-gradient(180deg, #e95d2f 0%, #a92f1a 100%);
  border: 1px solid rgba(119, 28, 10, 0.62);
}

.shortcut-key-ctrl .shortcut-key-face-right {
  background: linear-gradient(180deg, #ec6c36 0%, #ad341d 100%);
  border: 1px solid rgba(122, 30, 11, 0.6);
}

.shortcut-key-ctrl .shortcut-key-face-left {
  background: linear-gradient(180deg, #f57a3e 0%, #b83b20 100%);
  border: 1px solid rgba(128, 32, 12, 0.58);
}

.shortcut-key:hover,
.shortcut-key:focus-visible,
.shortcut-key.is-pressed {
  transform: translate3d(0, 8px, calc(var(--key-z) - 10px)) rotateZ(var(--key-rot));
  filter: saturate(1.08);
}

.shortcut-key:nth-child(2) {
  --key-rot: -2.3deg;
  --key-z: 35px;
}

.shortcut-key:nth-child(3) {
  --key-rot: -1.3deg;
  --key-z: 35px;
}

.shortcut-key:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.52);
  outline-offset: 2px;
}

/* 3D PC Model (mobile section) */
.shortcut-keyboard-bed {
  min-height: clamp(190px, 62vw, 286px);
}

.shortcut-keyboard-keys {
  left: clamp(0.8rem, 1.6vw, 1.2rem);
  right: clamp(0.8rem, 1.6vw, 1.2rem);
  top: clamp(0.8rem, 1.6vw, 1.2rem);
  bottom: clamp(0.8rem, 1.6vw, 1.2rem);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
}

.shortcut-pc-monitor {
  --pc-depth: 24px;
  position: absolute;
  left: 50%;
  top: 6%;
  width: clamp(170px, 74%, 320px);
  aspect-ratio: 16 / 10;
  transform: translateX(-50%) translateZ(50px);
  transform-style: preserve-3d;
  z-index: 6;
}

.shortcut-pc-face {
  position: absolute;
}

.shortcut-pc-face-front {
  inset: 0;
  border-radius: clamp(0.72rem, 1.6vw, 1rem);
  background: linear-gradient(180deg, #262d36 0%, #171d25 100%);
  border: 1px solid rgba(255, 255, 255, 0.22);
  transform: translateZ(var(--pc-depth));
}

.shortcut-pc-face-back {
  inset: 0;
  border-radius: clamp(0.72rem, 1.6vw, 1rem);
  background: linear-gradient(180deg, #3a424f 0%, #2a313c 100%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  transform: translateZ(calc(-1 * var(--pc-depth)));
}

.shortcut-pc-face-top {
  left: 0;
  right: 0;
  bottom: 100%;
  height: var(--pc-depth);
  border-radius: clamp(0.5rem, 1vw, 0.7rem) clamp(0.5rem, 1vw, 0.7rem) 0 0;
  background: linear-gradient(180deg, #565f6f 0%, #39424f 100%);
  transform-origin: bottom;
  transform: rotateX(90deg);
}

.shortcut-pc-face-bottom {
  left: 0;
  right: 0;
  top: 100%;
  height: var(--pc-depth);
  border-radius: 0 0 clamp(0.5rem, 1vw, 0.7rem) clamp(0.5rem, 1vw, 0.7rem);
  background: linear-gradient(180deg, #3f4755 0%, #262d38 100%);
  transform-origin: top;
  transform: rotateX(-90deg);
}

.shortcut-pc-face-right {
  top: 0;
  bottom: 0;
  left: 100%;
  width: var(--pc-depth);
  border-radius: 0 clamp(0.45rem, 0.9vw, 0.62rem) clamp(0.45rem, 0.9vw, 0.62rem) 0;
  background: linear-gradient(180deg, #5e6778 0%, #3b4452 100%);
  transform-origin: left;
  transform: rotateY(90deg);
}

.shortcut-pc-face-left {
  top: 0;
  bottom: 0;
  right: 100%;
  width: var(--pc-depth);
  border-radius: clamp(0.45rem, 0.9vw, 0.62rem) 0 0 clamp(0.45rem, 0.9vw, 0.62rem);
  background: linear-gradient(180deg, #687184 0%, #465060 100%);
  transform-origin: right;
  transform: rotateY(-90deg);
}

.shortcut-pc-screen {
  position: absolute;
  inset: 9%;
  border-radius: clamp(0.52rem, 1vw, 0.72rem);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background:
    radial-gradient(120% 100% at 22% 10%, rgba(255, 255, 255, 0.09) 0%, rgba(255, 255, 255, 0) 55%),
    linear-gradient(180deg, #0e141c 0%, #06090f 100%);
  display: grid;
  place-items: center;
  overflow: hidden;
  transform: translateZ(calc(var(--pc-depth) + 1px));
}

.shortcut-pc-screen-video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.shortcut-logo-3d {
  position: relative;
  display: block;
  width: clamp(120px, 58%, 210px);
  transform-style: preserve-3d;
}

.shortcut-logo-layer {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  user-select: none;
  pointer-events: none;
}

.shortcut-logo-front {
  position: relative;
  z-index: 3;
}

.shortcut-logo-mid,
.shortcut-logo-back {
  position: absolute;
  inset: 0;
}

.shortcut-logo-mid {
  opacity: 0.52;
  transform: translateZ(-6px);
}

.shortcut-logo-back {
  opacity: 0.24;
  transform: translateZ(-12px);
}

.shortcut-pc-neck {
  position: absolute;
  left: 50%;
  top: 72%;
  width: clamp(16px, 5.4%, 24px);
  height: clamp(24px, 7.6vw, 34px);
  border-radius: 999px;
  background: linear-gradient(180deg, #838c98 0%, #515968 100%);
  transform: translateX(-50%) translateZ(26px);
  z-index: 4;
}

.shortcut-pc-base {
  position: absolute;
  left: 50%;
  top: calc(72% + clamp(24px, 7.8vw, 34px));
  width: clamp(96px, 40%, 164px);
  height: clamp(10px, 2.6vw, 16px);
  border-radius: 999px;
  background: linear-gradient(180deg, #6a7280 0%, #3b4350 100%);
  transform: translateX(-50%) translateZ(18px);
  z-index: 3;
}

.shortcut-pc-keyboard {
  --pc-kbd-depth: 18px;
  --pc-key-depth: clamp(3px, 0.5vw, 6px);
  position: absolute;
  left: 50%;
  top: calc(72% + clamp(54px, 14.2vw, 72px));
  width: clamp(178px, 76%, 286px);
  height: clamp(38px, 10vw, 56px);
  transform: translateX(-50%) translateZ(20px) rotateX(13deg);
  transform-style: preserve-3d;
  z-index: 3;
}

.shortcut-pc-kbd-face {
  position: absolute;
}

.shortcut-pc-kbd-top {
  inset: 0;
  border-radius: clamp(0.4rem, 1vw, 0.66rem);
  background:
    radial-gradient(130% 108% at 24% 10%, rgba(255, 255, 255, 0.19) 0%, rgba(255, 255, 255, 0) 62%),
    linear-gradient(180deg, #778190 0%, #4d5564 100%);
  border: 1px solid rgba(255, 255, 255, 0.16);
  transform: translateZ(var(--pc-kbd-depth));
  display: grid;
  place-items: center;
  overflow: hidden;
}

.shortcut-pc-kbd-top::before {
  content: "";
  position: absolute;
  inset: clamp(2px, 0.36vw, 5px);
  border-radius: clamp(0.28rem, 0.7vw, 0.5rem);
  border: 1px solid rgba(255, 255, 255, 0.09);
  background: linear-gradient(180deg, #424a58 0%, #282f3a 100%);
}

.shortcut-pc-kbd-top::after {
  content: "";
  position: absolute;
  left: 10%;
  right: 10%;
  top: 8%;
  height: 22%;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.22) 0%, rgba(255, 255, 255, 0) 100%);
  pointer-events: none;
}

.shortcut-pc-kbd-front {
  left: 0;
  right: 0;
  top: 100%;
  height: var(--pc-kbd-depth);
  border-radius: 0 0 clamp(0.3rem, 0.8vw, 0.5rem) clamp(0.3rem, 0.8vw, 0.5rem);
  background: linear-gradient(180deg, #707a8c 0%, #47505f 100%);
  transform-origin: top;
  transform: rotateX(-90deg);
}

.shortcut-pc-kbd-right {
  top: 0;
  bottom: 0;
  left: 100%;
  width: var(--pc-kbd-depth);
  border-radius: 0 clamp(0.3rem, 0.8vw, 0.5rem) clamp(0.3rem, 0.8vw, 0.5rem) 0;
  background: linear-gradient(180deg, #798393 0%, #505a6b 100%);
  transform-origin: left;
  transform: rotateY(90deg);
}

.shortcut-pc-kbd-left {
  top: 0;
  bottom: 0;
  right: 100%;
  width: var(--pc-kbd-depth);
  border-radius: clamp(0.3rem, 0.8vw, 0.5rem) 0 0 clamp(0.3rem, 0.8vw, 0.5rem);
  background: linear-gradient(180deg, #818b9b 0%, #566172 100%);
  transform-origin: right;
  transform: rotateY(-90deg);
}

.shortcut-pc-kbd-back {
  left: 0;
  right: 0;
  bottom: 100%;
  height: var(--pc-kbd-depth);
  border-radius: clamp(0.3rem, 0.8vw, 0.5rem) clamp(0.3rem, 0.8vw, 0.5rem) 0 0;
  background: linear-gradient(180deg, #748092 0%, #4d5869 100%);
  transform-origin: bottom;
  transform: rotateX(90deg);
}

.shortcut-pc-keys {
  width: 93%;
  height: 82%;
  display: grid;
  grid-template-rows: repeat(4, minmax(0, 1fr));
  gap: clamp(1px, 0.22vw, 3px);
  position: relative;
  z-index: 1;
}

.shortcut-pc-row {
  display: grid;
  gap: clamp(1px, 0.2vw, 3px);
}

.shortcut-pc-row.is-row-1 {
  grid-template-columns: 1.2fr repeat(8, minmax(0, 1fr)) 1.2fr;
}

.shortcut-pc-row.is-row-2 {
  grid-template-columns: 1.45fr repeat(9, minmax(0, 1fr)) 1.65fr;
}

.shortcut-pc-row.is-row-3 {
  grid-template-columns: 1.9fr repeat(7, minmax(0, 1fr)) 2.1fr;
}

.shortcut-pc-row.is-row-4 {
  grid-template-columns: 1.4fr 1.4fr 1.4fr 5fr 1.4fr 1.4fr;
}

.shortcut-pc-keycap {
  position: relative;
  height: 100%;
  min-height: 0;
  border-radius: clamp(3px, 0.4vw, 6px);
  background:
    radial-gradient(120% 95% at 26% 8%, rgba(255, 255, 255, 0.5) 0%, rgba(255, 255, 255, 0.05) 42%, rgba(255, 255, 255, 0) 70%),
    linear-gradient(180deg, #f4f7fc 0%, #c8d2df 100%);
  border: 1px solid rgba(255, 255, 255, 0.32);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.52),
    inset 0 -1px 0 rgba(77, 89, 108, 0.42);
  transform: translateZ(var(--pc-key-depth));
  transform-style: preserve-3d;
  display: grid;
  place-items: center;
  overflow: visible;
}

.shortcut-pc-keycap::before {
  content: attr(data-key);
  font-family: var(--font-body);
  font-size: clamp(0.28rem, 0.46vw, 0.5rem);
  line-height: 1;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: rgba(24, 29, 38, 0.9);
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.25);
  transform: translateZ(1px);
  white-space: nowrap;
}

.shortcut-pc-keycap::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  height: var(--pc-key-depth);
  border-radius: 0 0 clamp(2px, 0.32vw, 4px) clamp(2px, 0.32vw, 4px);
  background: linear-gradient(180deg, #a8b4c4 0%, #7e8b9c 100%);
  transform-origin: top;
  transform: rotateX(-90deg);
}

.shortcut-pc-keycap.is-space {
  border-radius: clamp(2px, 0.3vw, 4px);
}

.shortcut-pc-keycap.is-space::before {
  content: "";
}

.shortcut-pc-tagline {
  margin: 0;
  font-family: var(--font-body);
  font-size: clamp(0.5rem, 0.95vw, 0.65rem);
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.56);
  transform: translateZ(16px);
}

.why-choose-layout {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: clamp(1.2rem, 2.8vw, 2.2rem);
  align-items: start;
}

.why-choose-intro {
  display: grid;
  gap: 1rem;
}

.why-choose-intro h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4.6vw, 3.8rem);
  line-height: 0.97;
  letter-spacing: -0.03em;
  text-wrap: balance;
}

.why-choose-intro p {
  margin: 0;
  color: var(--color-muted);
  line-height: 1.62;
  max-width: 52ch;
}

.why-choose-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.why-item {
  border: 1px solid var(--color-line-soft);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.02);
  padding: clamp(1rem, 2vw, 1.35rem);
  display: grid;
  gap: 0.65rem;
}

.why-item h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.02rem, 1.5vw, 1.32rem);
  letter-spacing: -0.015em;
}

.why-item p {
  margin: 0;
  color: rgba(244, 244, 244, 0.76);
  line-height: 1.56;
  font-size: 0.96rem;
}

.final-cta {
  text-align: center;
  padding-block: clamp(4.8rem, 10vw, 8.4rem);
}

.final-cta-inner {
  max-width: 820px;
  margin-inline: auto;
  display: grid;
  gap: 1.2rem;
  place-items: center;
}

.final-cta-inner p {
  margin: 0;
  max-width: 60ch;
  color: var(--color-muted);
  line-height: 1.6;
}

.site-footer {
  position: relative;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: clamp(0.54rem, 1.12vw, 0.74rem);
  padding-bottom: 0.28rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0) 22%),
    #000;
}

.site-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: min(1100px, calc(100% - 3.5rem));
  height: 1px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.38) 50%, rgba(255, 255, 255, 0) 100%);
  pointer-events: none;
}

.footer-brand-row {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-bottom: clamp(0.26rem, 0.56vw, 0.42rem);
}

.footer-wordmark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 2.3vw, 2.15rem);
  letter-spacing: 0.16em;
  line-height: 1;
  font-weight: 700;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.95);
}

.footer-wordmark img {
  width: clamp(150px, 15vw, 210px);
  height: auto;
  object-fit: contain;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: grid;
  grid-template-columns: auto auto 1fr auto;
  grid-template-areas: "legal contact copy social";
  align-items: center;
  gap: 0.48rem 0.9rem;
  padding-top: 0.34rem;
}

.footer-legal {
  grid-area: legal;
  display: flex;
  align-items: center;
  gap: clamp(0.95rem, 2vw, 1.5rem);
  justify-self: start;
}

.footer-legal a {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.78);
  transition: color var(--dur-fast) ease;
}

.footer-legal a:hover,
.footer-legal a:focus-visible {
  color: #fff;
}

.footer-contact {
  grid-area: contact;
  justify-self: start;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  flex-wrap: wrap;
}

.footer-contact a {
  display: inline-flex;
  align-items: center;
  min-height: 1.85rem;
  padding: 0.18rem 0.62rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.72rem;
  letter-spacing: 0.03em;
  background: rgba(255, 255, 255, 0.03);
  transition:
    border-color var(--dur-fast) ease,
    color var(--dur-fast) ease,
    background-color var(--dur-fast) ease,
    transform var(--dur-fast) ease;
}

.footer-contact a:hover,
.footer-contact a:focus-visible {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-1px);
}

.footer-bottom p {
  margin: 0;
  grid-area: copy;
  justify-self: center;
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.74rem;
  letter-spacing: 0.015em;
  text-align: center;
}

.footer-social {
  grid-area: social;
  justify-self: end;
}

.social-list {
  display: flex;
  align-items: center;
  gap: clamp(0.55rem, 1.4vw, 0.88rem);
}

.social-link {
  width: 1.55rem;
  height: 1.55rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.72);
  transition: color var(--dur-fast) ease, transform var(--dur-fast) ease;
}

.social-link svg {
  width: 1.45rem;
  height: 1.45rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.social-link:hover,
.social-link:focus-visible {
  color: #fff;
  transform: translateY(-1px);
}

.btn:focus-visible,
.menu-toggle:focus-visible,
.desktop-nav a:focus-visible,
.mobile-menu a:focus-visible,
.mobile-menu-close-home:focus-visible,
.mobile-menu-footer a:focus-visible,
.work-card-link:focus-visible,
.work-page-link:focus-visible,
.footer-legal a:focus-visible,
.footer-contact a:focus-visible,
.social-link:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 3px;
}

.inner-page {
  min-height: 100vh;
  background: var(--color-bg);
}

.page-main {
  overflow: clip;
}

.page-hero {
  padding-top: clamp(9rem, 18vh, 13rem);
  padding-bottom: clamp(3.2rem, 7vw, 6rem);
}

.page-hero-inner {
  max-width: 920px;
  display: grid;
  gap: 1rem;
}

.page-title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 7.4vw, 6rem);
  line-height: 0.92;
  letter-spacing: -0.03em;
  text-wrap: balance;
}

.page-subtext {
  margin: 0;
  max-width: 62ch;
  color: var(--color-muted);
  font-size: clamp(1rem, 1.8vw, 1.18rem);
  line-height: 1.6;
}

.page-section {
  padding-block: clamp(3.2rem, 7vw, 6.2rem);
}

.compact-head {
  margin-bottom: clamp(1.6rem, 3.2vw, 2.4rem);
}

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

.services-breakdown {
  background:
    radial-gradient(120% 120% at 50% 0%, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0) 58%),
    #070707;
  border-top: 0;
}

.services-page {
  background: linear-gradient(180deg, #020202 0%, #050505 34%, #070707 100%);
}

.services-page,
.services-page .page-hero,
.services-page .services-editorial-intro,
.services-page .services-gap-media,
.services-page .services-breakdown,
.services-page .process-section,
.services-page .services-assurance,
.services-page .page-cta {
  background: #000;
}

.services-page .services-hero-reel,
.services-page .services-hero-highlights li,
.services-page .service-row,
.services-page .service-row:hover,
.services-page .service-media,
.services-page .services-assurance-grid article,
.services-page .process-strip li,
.services-page .page-cta-inner {
  background: #000;
}

.services-hero-layout {
  max-width: none;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 360px);
  align-items: start;
  column-gap: clamp(1.3rem, 3vw, 3.2rem);
  row-gap: clamp(0.75rem, 1.6vw, 1.2rem);
}

.services-hero-copy {
  display: grid;
  gap: clamp(0.85rem, 1.4vw, 1.15rem);
  max-width: 760px;
  align-content: start;
}

.services-hero-copy .page-subtext {
  max-width: 54ch;
}

.services-hero-description {
  margin: 0;
  max-width: 58ch;
  color: rgba(255, 255, 255, 0.74);
  line-height: 1.62;
}

.services-hero-highlights {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 0.65rem;
}

.services-hero-highlights li {
  border: 1px solid var(--color-line-soft);
  background: rgba(255, 255, 255, 0.03);
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.46rem 0.6rem;
}

.services-hero-note {
  margin: 0;
  font-size: 0.76rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.62);
}

.services-hero-reel {
  margin: 0;
  width: clamp(258px, 29vw, 365px);
  aspect-ratio: 9 / 16;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--color-line-soft);
  background: #060606;
  justify-self: end;
  align-self: start;
  position: relative;
  isolation: isolate;
}

.services-hero-reel::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 20%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.34) 100%);
  pointer-events: none;
}

.services-hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.services-hero-reel figcaption {
  position: absolute;
  left: 50%;
  bottom: 0.75rem;
  margin: 0;
  line-height: 0;
  transform: translateX(-50%);
}

.services-hero-reel figcaption img {
  display: block;
  width: clamp(104px, 9vw, 144px);
  height: auto;
}

.services-editorial-intro {
  background: #000;
  padding-top: clamp(0.5rem, 1.6vw, 1rem);
  padding-bottom: clamp(2.6rem, 5.2vw, 4.2rem);
}

.services-intro-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  align-items: start;
  gap: clamp(1rem, 2.4vw, 2.2rem);
}

.services-intro-layout h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 4.4vw, 3.9rem);
  line-height: 0.98;
  letter-spacing: -0.025em;
  text-wrap: balance;
}

.services-intro-copy {
  display: grid;
  gap: 0.9rem;
}

.services-intro-copy p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.62;
}

.services-gap-media {
  background: #000;
  padding-top: 0;
  padding-bottom: 0;
}

.services-gap-media .site-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: start;
}

.services-gap-video {
  margin: 0 0 clamp(0.95rem, 2vw, 1.7rem) auto;
  width: 100%;
  height: 258px;
  background: transparent;
  overflow: hidden;
}

.services-gap-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: contrast(1.06) saturate(1.05) brightness(1.02);
  transform: translateZ(0);
  backface-visibility: hidden;
}

.services-breakdown-head {
  max-width: 900px;
  display: grid;
  gap: 0.72rem;
}

.services-breakdown-head h2 {
  max-width: 16ch;
}

.services-breakdown-head p {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  max-width: 60ch;
  line-height: 1.65;
}

.service-stack {
  display: grid;
  gap: clamp(1.25rem, 2.8vw, 2.4rem);
}

.service-row {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  align-items: stretch;
  gap: clamp(1rem, 2.25vw, 1.75rem);
  padding: clamp(1rem, 2.25vw, 1.6rem);
  border: 1px solid var(--color-line-soft);
  background:
    linear-gradient(156deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.012) 34%, rgba(255, 255, 255, 0.006) 100%),
    #0b0b0b;
  overflow: hidden;
  isolation: isolate;
  transition:
    transform var(--dur-mid) var(--ease-premium),
    border-color var(--dur-fast) ease,
    background-color var(--dur-fast) ease;
}

.service-row::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 1px;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.08) 0%,
    rgba(255, 255, 255, 0.22) 50%,
    rgba(255, 255, 255, 0.08) 100%
  );
  pointer-events: none;
}

.service-row:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.2);
  background:
    linear-gradient(156deg, rgba(255, 255, 255, 0.045) 0%, rgba(255, 255, 255, 0.018) 34%, rgba(255, 255, 255, 0.008) 100%),
    #0b0b0b;
}

.service-row.is-reverse .service-content {
  order: 2;
}

.service-row.is-reverse .service-media {
  order: 1;
}

.service-content,
.service-media {
  border-radius: var(--radius-lg);
  border: 0;
  background: transparent;
}

.service-content {
  padding: clamp(1.35rem, 2.7vw, 2.15rem) clamp(1.15rem, 2.35vw, 1.9rem);
  display: grid;
  gap: clamp(0.86rem, 1.6vw, 1.1rem);
  align-content: start;
}

.service-index {
  margin: 0;
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.92);
  display: inline-block;
}

.service-content h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.38rem, 2.5vw, 2.2rem);
  line-height: 1.04;
  letter-spacing: -0.018em;
}

.service-content > p {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  line-height: 1.64;
  max-width: 58ch;
}

.service-features {
  margin: 0;
  padding: 0.84rem 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.11);
  list-style: none;
  display: grid;
  gap: 0.7rem;
}

.service-features li {
  position: relative;
  padding-left: 1.06rem;
  color: rgba(244, 244, 244, 0.84);
  line-height: 1.52;
}

.service-features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.58em;
  width: 0.35rem;
  height: 0.35rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.66);
}

.service-card-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: start;
  width: 132px;
  min-height: 36px;
  margin-top: 0.56rem;
  padding: 0.46rem 0.64rem;
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  font-size: 0.62rem;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.03);
  transition:
    border-color var(--dur-fast) ease,
    background-color var(--dur-fast) ease,
    color var(--dur-fast) ease,
    transform var(--dur-fast) ease;
}

.service-card-btn:hover,
.service-card-btn:focus-visible {
  border-color: rgba(255, 255, 255, 0.56);
  background: rgba(255, 255, 255, 0.09);
  color: #fff;
  transform: translateY(-1px);
}

@media (max-width: 640px) {
  .service-card-btn {
    width: 120px;
    min-height: 34px;
    padding: 0.4rem 0.56rem;
    font-size: 0.58rem;
    letter-spacing: 0.085em;
  }
}

.service-media {
  aspect-ratio: 168 / 106;
  min-height: 0;
  height: auto;
  align-self: start;
  border: 1px solid var(--color-line-soft);
  background: #0a0a0a;
  overflow: hidden;
}

.service-media img,
.service-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 420ms var(--ease-premium);
}

.service-row:hover .service-media img,
.service-row:hover .service-media video {
  transform: scale(1.04);
}

.process-section {
  background:
    radial-gradient(100% 90% at 0% 0%, rgba(255, 255, 255, 0.045) 0%, rgba(255, 255, 255, 0) 54%),
    #050505;
  border-top: 1px solid var(--color-line-soft);
}

.services-process-intro {
  margin: 0;
  max-width: 62ch;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.62;
}

.services-assurance {
  background: #030303;
  border-top: 1px solid var(--color-line-soft);
  border-bottom: 1px solid var(--color-line-soft);
}

.services-assurance-head {
  max-width: 980px;
}

.services-assurance-head h2 {
  max-width: 19ch;
}

.services-assurance-head p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  max-width: 72ch;
  line-height: 1.62;
}

.services-assurance-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(0.95rem, 2.2vw, 1.6rem);
}

.services-assurance-grid article {
  position: relative;
  border: 1px solid var(--color-line-soft);
  padding: clamp(1.05rem, 2.2vw, 1.5rem);
  background: linear-gradient(162deg, rgba(255, 255, 255, 0.035) 0%, rgba(255, 255, 255, 0.008) 100%);
  display: grid;
  gap: 0.58rem;
}

.services-assurance-grid article::before {
  position: absolute;
  top: 0.88rem;
  right: 0.92rem;
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.92);
}

.services-assurance-grid article:nth-child(1)::before {
  content: "01";
}

.services-assurance-grid article:nth-child(2)::before {
  content: "02";
}

.services-assurance-grid article:nth-child(3)::before {
  content: "03";
}

.services-assurance-grid h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.12rem, 1.85vw, 1.58rem);
  line-height: 1.08;
  letter-spacing: -0.015em;
  padding-right: 1.4rem;
}

.services-assurance-grid p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.6;
}

.process-strip {
  counter-reset: process-step;
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(0.8rem, 1.8vw, 1.15rem);
}

.process-strip li {
  counter-increment: process-step;
  position: relative;
  padding: 1.2rem 1rem 1.05rem;
  border: 1px solid var(--color-line-soft);
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.032) 0%, rgba(255, 255, 255, 0.008) 100%);
}

.process-strip li:not(:last-child)::after {
  display: none;
}

.process-strip li::before {
  content: "0" counter(process-step);
  position: absolute;
  top: 0.9rem;
  right: 0.95rem;
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.92);
}

.process-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(242, 246, 247, 0.84);
  box-shadow: 0 0 0 5px rgba(255, 255, 255, 0.04);
  display: inline-block;
}

.process-strip h3 {
  margin: 0.78rem 0 0;
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 1.65vw, 1.4rem);
  letter-spacing: -0.015em;
  line-height: 1.08;
}

.process-strip p {
  margin: 0.44rem 0 0;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.56;
  font-size: 0.94rem;
  max-width: none;
}

.page-cta {
  background: #040404;
  text-align: center;
}

.page-cta-inner {
  max-width: 860px;
  margin-inline: auto;
  display: grid;
  place-items: center;
  gap: 1.2rem;
}

.page-cta-inner h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 5.2vw, 4.2rem);
  line-height: 0.97;
  letter-spacing: -0.03em;
}

.services-page .page-cta {
  border-top: 1px solid var(--color-line-soft);
  background:
    radial-gradient(95% 85% at 50% 0%, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0) 62%),
    #040404;
}

.services-page .page-cta-inner {
  max-width: 900px;
  padding: clamp(1.3rem, 2.8vw, 2.2rem) clamp(1rem, 3vw, 2.3rem);
  border: 1px solid var(--color-line-soft);
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.032) 0%, rgba(255, 255, 255, 0.008) 100%);
  gap: clamp(0.95rem, 1.8vw, 1.35rem);
}

.services-page .page-cta-inner .section-kicker {
  color: rgba(255, 255, 255, 0.7);
}

.services-page .page-cta-inner p {
  margin: 0;
  max-width: 60ch;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}

.service-detail-main {
  background: #000;
}

.detail-overview {
  background: #070707;
}

.detail-overview-layout {
  display: grid;
  grid-template-columns: 7fr 5fr;
  gap: clamp(1rem, 2.2vw, 1.8rem);
}

.detail-copy {
  display: grid;
  gap: 1rem;
}

.detail-copy h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 3vw, 2.7rem);
  line-height: 1.02;
  letter-spacing: -0.02em;
}

.detail-copy p {
  margin: 0;
  color: var(--color-muted);
  line-height: 1.62;
}

.detail-copy a,
.detail-meta a {
  color: rgba(255, 255, 255, 0.92);
  text-decoration-color: rgba(255, 255, 255, 0.32);
  text-underline-offset: 0.18em;
}

.detail-copy a:hover,
.detail-copy a:focus-visible,
.detail-meta a:hover,
.detail-meta a:focus-visible {
  text-decoration-color: rgba(255, 255, 255, 0.82);
}

.detail-meta {
  border: 1px solid var(--color-line-soft);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.02);
  padding: clamp(1rem, 2.2vw, 1.5rem);
  display: grid;
  gap: 0.8rem;
}

.detail-meta p {
  margin: 0;
  color: rgba(244, 244, 244, 0.86);
  line-height: 1.5;
  padding-bottom: 0.72rem;
  border-bottom: 1px solid var(--color-line-soft);
}

.detail-meta p:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

@media (max-width: 980px) {
  .detail-overview-layout {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

.detail-deliverables {
  background: #050505;
}

.detail-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.detail-card {
  border: 1px solid var(--color-line-soft);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.02);
  padding: clamp(1rem, 2vw, 1.4rem);
  display: grid;
  gap: 0.72rem;
}

.detail-card h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.08rem, 1.7vw, 1.45rem);
  line-height: 1.05;
  letter-spacing: -0.015em;
}

.detail-card p {
  margin: 0;
  color: var(--color-muted);
  line-height: 1.55;
}

.work-editorial-page {
  background: #000;
  overflow-x: clip;
}

.work-editorial-hero {
  padding-top: clamp(5.7rem, 9vh, 6.6rem);
  padding-bottom: clamp(3.4rem, 7vw, 5.6rem);
}

.work-editorial-hero .site-shell {
  position: relative;
}

.work-editorial-meta {
  display: block;
  width: 100%;
  margin-top: clamp(0rem, 0.2vw, 0.12rem);
}

.work-meta-small {
  margin: 0;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.78);
}

.work-meta-intro {
  margin: 0;
  max-width: none;
  width: 100%;
  font-family: var(--font-display);
  color: rgba(255, 255, 255, 0.94);
  line-height: 1.1;
  font-size: clamp(1.24rem, 2.35vw, 1.92rem);
  letter-spacing: -0.02em;
  font-weight: 700;
  text-align: left;
  text-wrap: balance;
}

.work-meta-links {
  display: grid;
  gap: 0.2rem;
  justify-items: start;
}

.work-meta-links a {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.78rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  transition: color var(--dur-fast) ease;
}

.work-meta-links a:hover,
.work-meta-links a:focus-visible {
  color: #fff;
}

.work-editorial-stage {
  margin-top: clamp(0.08rem, 0.45vw, 0.22rem);
  min-height: clamp(350px, 54vw, 760px);
  display: grid;
  place-items: center;
  position: relative;
  overflow: visible;
  padding-inline: clamp(0.3rem, 0.9vw, 0.9rem);
}

.work-editorial-frame {
  margin: 0;
  width: min(40vw, 430px);
  min-width: 220px;
  aspect-ratio: 0.72;
  border: 1px solid var(--color-line-soft);
  background: #0b0b0b;
  display: grid;
  place-items: stretch;
  overflow: hidden;
  border-radius: 0;
  padding: 0;
  transform: translateY(-0.55rem);
}

.work-editorial-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.work-editorial-title {
  margin: 0;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -56%);
  width: min(1260px, 100%);
  text-align: center;
  display: grid;
  gap: 0.03em;
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 6vw, 4.4rem);
  line-height: 0.88;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  pointer-events: none;
}

.work-editorial-title span {
  display: block;
  white-space: nowrap;
  text-wrap: nowrap;
}

.work-editorial-title .solid {
  color: rgba(255, 255, 255, 0.95);
  font-weight: 800;
}

.work-editorial-title .outline {
  color: transparent;
  font-weight: 800;
  -webkit-text-stroke: 1.2px rgba(255, 255, 255, 0.62);
  text-stroke: 1.2px rgba(255, 255, 255, 0.62);
}

.work-editorial-stream {
  background: #000;
  padding-bottom: clamp(4.5rem, 9vw, 7rem);
}

.work-stream-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: clamp(1.5rem, 4vw, 2.8rem);
}

.work-stream-intro {
  align-self: flex-start;
  max-width: 64ch;
}

.work-stream-intro p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.62;
  font-size: clamp(0.92rem, 1.28vw, 1.04rem);
}

.work-word-stack {
  margin: 0;
  margin-left: auto;
  text-align: right;
  font-family: var(--font-display);
  font-size: clamp(2.45rem, 8vw, 6.35rem);
  line-height: 0.97;
  letter-spacing: -0.03em;
  font-weight: 700;
  text-transform: uppercase;
  display: grid;
}

.work-word-stack span:nth-child(1),
.work-word-stack span:nth-child(3) {
  color: rgba(255, 255, 255, 0.38);
  -webkit-text-stroke: 0;
  text-stroke: 0;
}

.work-word-stack span:nth-child(2) {
  color: rgba(255, 255, 255, 0.95);
}

.work-stream-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  column-gap: clamp(0.9rem, 2.2vw, 2rem);
  row-gap: clamp(2.2rem, 6vw, 4.6rem);
}

.work-stream-card {
  grid-column: 1 / span 6;
}

.work-stream-card.is-right {
  grid-column: 7 / span 6;
  margin-top: clamp(4rem, 10vw, 7.2rem);
}

@media (max-width: 1100px) {
  .work-stream-grid {
    grid-template-columns: 1fr;
    row-gap: clamp(1.8rem, 4vw, 2.8rem);
  }

  .work-stream-card,
  .work-stream-card.is-right {
    grid-column: 1;
    margin-top: 0;
  }

  .work-stream-media {
    aspect-ratio: 1.34;
    min-height: clamp(240px, 46vw, 380px);
  }
}

.work-stream-link {
  display: grid;
  gap: 0.9rem;
}

.work-stream-media {
  margin: 0;
  border: 1px solid var(--color-line-soft);
  background: #0b0b0b;
  overflow: hidden;
  aspect-ratio: 1.16;
  min-height: clamp(270px, 34vw, 420px);
}

.work-stream-media img,
.work-stream-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.work-stream-media img {
  transition: transform 420ms var(--ease-premium);
}

.work-stream-media-video {
  background: #000;
}

.work-stream-media-video video {
  object-fit: contain;
  object-position: center;
  background: #000;
}

.work-stream-link:hover .work-stream-media img,
.work-stream-link:focus-visible .work-stream-media img {
  transform: scale(1.04);
}

.video-play-button {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  transform: translate(-50%, -50%);
  width: clamp(58px, 6vw, 76px);
  height: clamp(58px, 6vw, 76px);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.14) 0%, rgba(255, 255, 255, 0.06) 100%),
    rgba(0, 0, 0, 0.42);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.16),
    0 10px 24px rgba(0, 0, 0, 0.3);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition:
    transform 220ms var(--ease-premium),
    background 220ms var(--ease-premium),
    border-color 220ms var(--ease-premium),
    opacity 220ms var(--ease-premium);
}

.video-play-button span {
  width: 0;
  height: 0;
  margin-left: 0.18rem;
  border-top: 0.7rem solid transparent;
  border-bottom: 0.7rem solid transparent;
  border-left: 1.08rem solid rgba(255, 255, 255, 0.94);
  position: relative;
  display: block;
}

.video-play-button:hover,
.video-play-button:focus-visible {
  transform: translate(-50%, -50%) scale(1.04);
  border-color: rgba(255, 255, 255, 0.42);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.18) 0%, rgba(255, 255, 255, 0.08) 100%),
    rgba(0, 0, 0, 0.5);
}

.work-media.is-playing .video-play-button,
.work-stream-media.is-playing .video-play-button {
  opacity: 0;
  pointer-events: none;
}

.work-stream-copy {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.7rem;
  align-items: start;
}

.work-stream-copy-body {
  display: grid;
  gap: 0.24rem;
}

.work-stream-index {
  margin: 0;
  font-size: 0.92rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.92);
  letter-spacing: 0.02em;
}

.work-stream-copy h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.16rem, 1.8vw, 1.62rem);
  letter-spacing: -0.015em;
  line-height: 1.02;
}

.work-stream-category {
  margin: 0.22rem 0 0;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  font-size: 0.69rem;
  color: rgba(255, 255, 255, 0.62);
}

.work-stream-summary {
  margin: 0.38rem 0 0;
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.56;
  font-size: 0.9rem;
  max-width: 54ch;
}

@media (min-width: 1600px) {
  .work-editorial-title {
    width: min(1480px, 118%);
    font-size: clamp(4.2rem, 5.8vw, 5.8rem);
  }

  .work-stream-grid {
    row-gap: clamp(3rem, 5vw, 5.4rem);
  }
}

.about-editorial-page {
  background: #000;
}

.about-editorial-hero {
  background: #000;
  padding-top: clamp(7rem, 13vh, 8.8rem);
  padding-bottom: clamp(3.4rem, 7vw, 4.8rem);
}

.about-editorial-shell {
  display: grid;
  justify-items: center;
  gap: clamp(1.25rem, 2.8vw, 2rem);
}

.about-editorial-breadcrumb {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(0.84rem, 1.15vw, 1rem);
  letter-spacing: 0.01em;
  color: rgba(255, 255, 255, 0.58);
}

.about-editorial-stage {
  position: relative;
  width: 100%;
  min-height: clamp(420px, 56vw, 700px);
}

.about-editorial-card {
  margin: 0;
  position: absolute;
  border: 1px solid var(--color-line-soft);
  background: #090909;
  overflow: hidden;
}

.about-editorial-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-editorial-card video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-editorial-card-main {
  width: clamp(250px, 31vw, 370px);
  aspect-ratio: 0.68;
  left: 50%;
  transform: translateX(-50%);
  top: clamp(1.2rem, 2.2vw, 2rem);
  z-index: 2;
}

.about-editorial-card-left {
  width: clamp(88px, 10vw, 122px);
  aspect-ratio: 0.82;
  left: clamp(4%, 12vw, 17%);
  top: clamp(0.4rem, 1.2vw, 0.9rem);
  z-index: 1;
}

.about-editorial-card-right {
  width: clamp(82px, 9.2vw, 116px);
  aspect-ratio: 0.82;
  right: clamp(4%, 12vw, 17%);
  top: clamp(10rem, 17vw, 14.5rem);
  z-index: 1;
}

.about-editorial-title {
  margin: 0;
  position: absolute;
  left: 50%;
  top: 57%;
  transform: translate(-50%, -50%);
  width: 100%;
  text-align: center;
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: lowercase;
  letter-spacing: -0.03em;
  font-size: clamp(4.2rem, 15vw, 13rem);
  line-height: 0.82;
  color: rgba(255, 255, 255, 0.95);
  z-index: 3;
  pointer-events: none;
}

.about-editorial-location {
  margin: 0;
  display: grid;
  justify-items: center;
  gap: 0.5rem;
  position: relative;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.08rem, 1.78vw, 1.58rem);
  letter-spacing: -0.02em;
  color: rgba(255, 255, 255, 0.95);
  text-align: center;
  line-height: 1;
}

.about-editorial-location::before {
  content: "";
  width: 1px;
  height: clamp(48px, 6vw, 68px);
  background: rgba(255, 255, 255, 0.28);
}

.about-location-dot {
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
}

.about-editorial-intro {
  background: #000;
  padding-top: clamp(0.9rem, 2.4vw, 1.6rem);
  padding-bottom: clamp(3.8rem, 8vw, 5.4rem);
}

.about-intro-layout {
  display: grid;
  justify-items: center;
  gap: clamp(1.2rem, 2.6vw, 1.8rem);
  text-align: center;
}

.about-intro-layout h2 {
  margin: 0;
  max-width: 18.5ch;
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: lowercase;
  letter-spacing: -0.02em;
  font-size: clamp(1.6rem, 4.9vw, 4rem);
  line-height: 0.98;
}

.about-intro-layout p {
  margin: 0;
  max-width: 54ch;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.62;
}

.about-editorial-process {
  background: #000;
  padding-top: clamp(1.2rem, 4vw, 2.2rem);
  padding-bottom: clamp(4rem, 8vw, 6rem);
}

.about-process-map {
  position: relative;
  min-height: clamp(620px, 78vw, 860px);
}

.about-process-line {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.about-process-line path {
  fill: none;
  stroke: rgba(214, 224, 145, 0.34);
  stroke-width: 2.2;
  filter: drop-shadow(0 0 6px rgba(210, 222, 137, 0.18));
}

.about-process-path-mobile {
  display: none;
}

.about-process-step {
  position: absolute;
  max-width: 28ch;
  --dot-x: 100%;
  --dot-y: 50%;
  padding: 0.72rem 0.8rem 0.68rem;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background:
    linear-gradient(155deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.02) 100%),
    rgba(8, 8, 8, 0.64);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 10px 22px rgba(0, 0, 0, 0.2);
}

.about-process-step::before {
  content: none;
  display: none;
}

.about-process-step h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.1vw, 1.9rem);
  line-height: 1;
  letter-spacing: -0.02em;
  text-transform: lowercase;
  color: rgba(255, 255, 255, 0.95);
}

.about-process-step p {
  margin: 0.42rem 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.92rem;
  line-height: 1.54;
}

.about-step-process .about-step-label {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.1vw, 1.9rem);
  line-height: 1;
  letter-spacing: -0.02em;
  text-transform: lowercase;
  color: rgba(255, 255, 255, 0.95);
}

.about-step-number {
  margin: 0 0 0.35rem;
  font-family: var(--font-display);
  color: rgba(214, 224, 145, 0.95);
  font-size: clamp(1.02rem, 1.4vw, 1.24rem);
  line-height: 1;
}

.about-step-process {
  left: 50.2%;
  top: -2.8%;
  transform: translateX(-50%);
  --dot-x: 50%;
  --dot-y: 100%;
}

.about-step-01 {
  left: 12%;
  top: 30%;
  --dot-x: 100%;
  --dot-y: 46%;
}

.about-step-02 {
  left: 45%;
  top: 47%;
  --dot-x: 0%;
  --dot-y: 52%;
}

.about-step-03 {
  left: 73%;
  top: 61%;
  --dot-x: 0%;
  --dot-y: 56%;
}

.about-step-04 {
  left: 45%;
  right: auto;
  top: 88%;
  --dot-x: 100%;
  --dot-y: 48%;
}

@media (max-width: 1180px) {
  .about-editorial-card-left {
    left: 5%;
  }

  .about-editorial-card-right {
    right: 5%;
  }

  .about-step-01 {
    left: 8%;
  }

  .about-step-03 {
    left: 66%;
  }
}

@media (max-width: 980px) {
  .about-editorial-hero {
    padding-top: clamp(6.3rem, 11vh, 7.4rem);
  }

  .about-editorial-stage {
    min-height: clamp(360px, 76vw, 580px);
  }

  .about-editorial-card-main {
    width: clamp(220px, 44vw, 330px);
  }

  .about-editorial-card-left {
    width: clamp(78px, 14vw, 110px);
    top: 0;
  }

  .about-editorial-card-right {
    width: clamp(76px, 12.5vw, 104px);
    top: clamp(8.6rem, 25vw, 12rem);
  }

  .about-editorial-title {
    top: 59%;
    font-size: clamp(3.3rem, 16vw, 8.4rem);
  }

  .about-process-map {
    min-height: 0;
    display: grid;
    gap: 1.2rem;
  }

  .about-process-line {
    display: none;
  }

  .about-process-step {
    position: relative;
    left: auto;
    top: auto;
    transform: none;
    max-width: none;
    width: 100%;
    padding-top: 0.85rem;
    border-top: 1px solid var(--color-line-soft);
  }

  .about-step-process {
    border-top: 0;
    padding-top: 0;
  }

  .about-step-process .about-step-label {
    font-size: clamp(1.25rem, 2.1vw, 1.9rem);
  }

  .about-step-02,
  .about-step-04 {
    padding-left: clamp(1rem, 6vw, 3.2rem);
  }
}

@media (max-width: 640px) {
  .about-editorial-shell {
    gap: 1rem;
  }

  .about-editorial-breadcrumb {
    font-size: 0.78rem;
  }

  .about-editorial-stage {
    min-height: clamp(320px, 85vw, 460px);
  }

  .about-editorial-card-main {
    width: clamp(200px, 53vw, 290px);
  }

  .about-editorial-card-left {
    width: clamp(62px, 13.5vw, 86px);
    left: 4%;
  }

  .about-editorial-card-right {
    width: clamp(58px, 12.5vw, 82px);
    right: 4%;
    top: clamp(7.4rem, 24vw, 9.8rem);
  }

  .about-editorial-title {
    width: 108%;
    top: 61%;
    font-size: clamp(2.9rem, 18vw, 5.6rem);
  }

  .about-editorial-location {
    gap: 0.4rem;
    font-size: clamp(0.94rem, 5vw, 1.18rem);
  }

  .about-editorial-location::before {
    height: 42px;
  }

  .about-intro-layout h2 {
    font-size: clamp(1.3rem, 8.8vw, 2.3rem);
    line-height: 1;
  }

  .about-intro-layout p {
    font-size: 0.92rem;
    line-height: 1.56;
  }

  .about-process-step h3 {
    font-size: clamp(1.06rem, 5.8vw, 1.36rem);
  }

  .about-step-process .about-step-label {
    font-size: clamp(1.06rem, 5.8vw, 1.36rem);
  }

  .about-process-step p {
    font-size: 0.86rem;
    line-height: 1.5;
  }
}

.about-team {
  background: #000;
  padding-top: clamp(2.2rem, 6vw, 3.8rem);
  padding-bottom: clamp(4rem, 8vw, 5.8rem);
}

.about-team-shell {
  display: grid;
  gap: clamp(1.5rem, 3vw, 2.2rem);
}

.about-team-head {
  max-width: 72ch;
}

.about-team-head h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 4.9vw, 4rem);
  font-weight: 700;
  text-transform: none;
  letter-spacing: -0.02em;
  line-height: 0.98;
  color: rgba(255, 255, 255, 0.96);
  white-space: nowrap;
}

.about-team-head p {
  margin: 0.85rem 0 0;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.65;
}

.about-team-grid {
  width: 100%;
  display: flex;
  flex-wrap: nowrap;
  gap: clamp(0.8rem, 1.6vw, 1rem);
  overflow-x: auto;
  overflow-y: hidden;
  padding-bottom: 0.3rem;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
}

.about-page .about-team-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: clamp(0.6rem, 1vw, 0.9rem);
  overflow: visible;
  padding-bottom: 0;
  scroll-snap-type: none;
}

.about-page .team-member-card {
  width: auto;
  min-width: 0;
  flex: initial;
}

@media (max-width: 640px) {
  .about-page .about-team-grid {
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .about-page .team-member-card {
    width: min(100%, 264px);
  }
}

.home-founders {
  padding-top: clamp(3.8rem, 7vw, 5.8rem);
  padding-bottom: clamp(1rem, 2vw, 1.8rem);
  background: #050505;
}

.home-founders .about-team-shell {
  width: min(calc(100vw - 6rem), 1280px);
  gap: clamp(2rem, 3vw, 2.8rem);
}

.home-founders-head {
  margin-bottom: clamp(1.4rem, 3vw, 2rem);
  max-width: 980px;
  padding-bottom: clamp(1.2rem, 2vw, 1.6rem);
}

.home-founders-head h2 {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 5.2vw, 4.2rem);
  font-weight: 700;
  line-height: 0.97;
  letter-spacing: -0.028em;
  text-transform: none;
  color: rgba(255, 255, 255, 0.96);
}

.home-founders-head p {
  font-family: var(--font-body);
  font-size: clamp(0.92rem, 1vw, 1rem);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.68);
  max-width: 58ch;
}

.home-founders-editorial {
  display: grid;
  gap: 0;
}

.founder-feature {
  display: grid;
  grid-template-columns: minmax(280px, 360px) minmax(0, 1fr);
  gap: clamp(3.2rem, 8vw, 8.8rem);
  align-items: start;
  width: 100%;
  padding: clamp(1.8rem, 3.4vw, 2.8rem) 0;
}

.founder-feature-reverse {
  grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
}

.founder-feature-primary {
  grid-template-columns: minmax(280px, 360px) minmax(0, 1fr);
  gap: clamp(2.8rem, 6.2vw, 5.8rem);
}

.founder-feature-reverse .founder-feature-media {
  order: 2;
}

.founder-feature-reverse .founder-feature-copy {
  order: 1;
}

.founder-feature-media {
  margin: 0;
  display: grid;
  gap: 0.7rem;
}

.founder-feature-media img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center 20%;
  display: block;
  background: #090909;
  border: 1px solid rgba(255, 255, 255, 0.12);
  filter: saturate(0.92) contrast(1.02);
}

.founder-feature-copy {
  display: grid;
  align-content: start;
  gap: 0.56rem;
  max-width: none;
}

.founder-feature-primary .founder-feature-copy {
  padding-left: 0;
  width: min(100%, 49ch);
  justify-self: end;
  gap: 0.46rem;
}

.founder-feature-primary .founder-feature-statement,
.founder-feature-reverse .founder-feature-statement,
.founder-feature-tertiary .founder-feature-statement {
  font-family: var(--font-body);
  font-size: clamp(0.94rem, 1.18vw, 1.08rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.68);
  max-width: 28ch;
}

.founder-feature-primary .founder-feature-quote {
  font-size: clamp(0.98rem, 1.35vw, 1.14rem);
}

.founder-feature-primary .founder-feature-body {
  font-size: clamp(0.9rem, 0.96vw, 0.98rem);
}

.founder-feature-tertiary {
  grid-template-columns: minmax(280px, 360px) minmax(0, 1fr);
  gap: clamp(2.8rem, 6.2vw, 5.8rem);
}

.founder-feature-tertiary .founder-feature-copy {
  width: min(100%, 44ch);
  justify-self: end;
}

.founder-feature-role {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.6vw, 2.05rem);
  font-weight: 700;
  line-height: 1.04;
  letter-spacing: -0.03em;
  text-transform: none;
  color: rgba(255, 255, 255, 0.94);
}

.founder-feature-name {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 4.1vw, 3.35rem);
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: -0.028em;
  color: rgba(255, 255, 255, 0.96);
}

.founder-feature-statement {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.6vw, 2.05rem);
  font-weight: 700;
  line-height: 1.04;
  letter-spacing: -0.03em;
  text-transform: none;
  color: rgba(255, 255, 255, 0.94);
  max-width: 16ch;
}

.founder-feature-quote {
  margin: 0;
  font-family: var(--font-body);
  font-size: clamp(0.98rem, 1.35vw, 1.14rem);
  font-weight: 500;
  line-height: 1.38;
  letter-spacing: -0.01em;
  color: rgba(255, 255, 255, 0.82);
  max-width: 36ch;
}

.founder-feature-body {
  margin: 0;
  font-family: var(--font-body);
  font-size: clamp(0.9rem, 0.96vw, 0.98rem);
  line-height: 1.62;
  color: rgba(255, 255, 255, 0.68);
  max-width: 58ch;
}

.team-member-card {
  display: grid;
  grid-template-rows: auto 1fr;
  flex: 0 0 clamp(180px, 20vw, 250px);
  width: clamp(180px, 20vw, 250px);
  scroll-snap-align: start;
  border: 1px solid var(--color-line-soft);
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01));
  min-height: 100%;
}

.team-member-media {
  margin: 0;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: #070707;
  border-bottom: 1px solid var(--color-line-soft);
}

.team-member-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
  display: block;
}

.team-member-media-profile img {
  object-position: center 20%;
}

.team-member-content {
  padding: clamp(0.82rem, 1.6vw, 1rem);
  display: grid;
  gap: 0.42rem;
  align-content: start;
}

.team-member-content h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(0.94rem, 1.2vw, 1.14rem);
  letter-spacing: -0.015em;
  line-height: 1.06;
  color: rgba(255, 255, 255, 0.95);
}

.team-member-role {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.71rem;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.78);
}

.team-member-contribution,
.team-member-contribution-list {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.48;
  font-size: 0.82rem;
}

.team-member-contribution-list {
  list-style: none;
  padding: 0;
  display: grid;
  gap: 0.24rem;
}

.team-member-contribution-list li {
  position: relative;
  padding-left: 0.8rem;
}

.team-member-contribution-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.52em;
  width: 0.24rem;
  height: 0.24rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.72);
}

@media (max-width: 640px) {
  .about-team {
    padding-top: 2rem;
    padding-bottom: 3.5rem;
  }

  .about-team-grid {
    display: grid;
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 0.8rem;
    overflow: visible;
    padding-bottom: 0;
    scroll-snap-type: none;
  }

  .about-team-head h2 {
    font-size: clamp(0.78rem, 3.9vw, 0.88rem);
    letter-spacing: 0.12em;
    line-height: 1.2;
    white-space: nowrap;
  }

  .about-team-head p {
    margin-top: 0.72rem;
    font-size: 0.9rem;
    line-height: 1.56;
  }

  .team-member-media {
    width: min(100%, 150px);
    aspect-ratio: 4 / 5;
    margin: 0.52rem auto 0;
    border: 1px solid var(--color-line-soft);
  }

  .team-member-card {
    width: min(100%, 264px);
    max-width: 264px;
    flex-basis: auto;
    flex: initial;
  }

  .team-member-content {
    padding: 0.68rem 0.7rem 0.72rem;
    gap: 0.34rem;
  }

  .team-member-content h3 {
    font-size: 0.92rem;
  }

  .team-member-contribution {
    font-size: 0.76rem;
    line-height: 1.38;
  }

  .team-member-contribution-list {
    gap: 0.2rem;
  }

  .home-founders {
    padding-top: 2.6rem;
  }

  .home-founders .about-team-shell {
    width: min(calc(100vw - 2rem), 1280px);
  }

  .home-founders-head {
    margin-bottom: 1.4rem;
    max-width: none;
    padding-bottom: 1rem;
  }

  .home-founders-head h2 {
    font-size: clamp(1.48rem, 7.2vw, 2.2rem);
    white-space: nowrap;
    line-height: 1;
    letter-spacing: -0.025em;
  }

  .home-founders .founder-feature-name {
    font-size: clamp(1.5rem, 8vw, 2rem);
  }

  .home-founders-editorial {
    gap: 1.8rem;
  }

  .founder-feature,
  .founder-feature-reverse {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 1.35rem 0 0;
  }

  .founder-feature-primary {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .founder-feature-tertiary {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .founder-feature-primary .founder-feature-media,
  .founder-feature-primary .founder-feature-copy,
  .founder-feature-tertiary .founder-feature-media,
  .founder-feature-tertiary .founder-feature-copy {
    grid-column: auto;
  }

  .founder-feature-reverse .founder-feature-media,
  .founder-feature-reverse .founder-feature-copy {
    order: initial;
  }

  .founder-feature-media {
    width: min(100%, 264px);
    justify-self: center;
  }

  .founder-feature-copy {
    gap: 0.62rem;
  }

  .home-founders .founder-feature-statement,
  .home-founders .founder-feature-quote,
  .home-founders .founder-feature-body {
    display: none;
  }

  .home-founders .founder-feature-copy {
    gap: 0.28rem;
  }

  .founder-feature-primary .founder-feature-copy {
    padding-left: 0;
    width: auto;
    justify-self: stretch;
  }

  .founder-feature-tertiary .founder-feature-copy {
    width: auto;
    justify-self: stretch;
  }

.founder-feature-name,
.founder-feature-statement,
.founder-feature-quote,
.founder-feature-body {
  max-width: none;
}
}

@media (max-width: 1120px) {
  .home-founders .about-team-shell {
    width: min(calc(100vw - 4.5rem), 1200px);
  }

  .founder-feature,
  .founder-feature-primary,
  .founder-feature-tertiary {
    grid-template-columns: clamp(240px, 28vw, 320px) minmax(0, 1fr);
    gap: clamp(2.2rem, 5vw, 4.5rem);
  }

  .founder-feature-reverse {
    grid-template-columns: minmax(0, 1fr) clamp(240px, 28vw, 320px);
    gap: clamp(2.2rem, 5vw, 4.5rem);
  }

  .founder-feature-copy,
  .founder-feature-primary .founder-feature-copy,
  .founder-feature-tertiary .founder-feature-copy {
    min-width: 0;
  }
}

@media (max-width: 900px) {
  .home-founders .about-team-shell {
    width: min(calc(100vw - 2rem), 1040px);
    gap: 1.6rem;
  }

  .home-founders-editorial {
    gap: 1.25rem;
  }

  .founder-feature,
  .founder-feature-primary,
  .founder-feature-tertiary,
  .founder-feature-reverse {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 1.25rem 0 0;
  }

  .founder-feature-reverse .founder-feature-media,
  .founder-feature-reverse .founder-feature-copy {
    order: initial;
  }

  .founder-feature-media {
    width: min(100%, clamp(300px, 58vw, 372px));
    justify-self: center;
  }

  .founder-feature-copy,
  .founder-feature-primary .founder-feature-copy,
  .founder-feature-tertiary .founder-feature-copy {
    width: min(100%, clamp(300px, 58vw, 372px));
    justify-self: center;
  }
}

@media (max-width: 768px) {
  .home-founders .about-team-shell {
    width: min(calc(100vw - 1.7rem), 1040px);
    gap: 1.45rem;
  }

  .home-founders-editorial {
    gap: 1.45rem;
  }

  .founder-feature {
    padding-top: 1rem;
  }

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

  .founder-feature-copy,
  .founder-feature-primary .founder-feature-copy,
  .founder-feature-tertiary .founder-feature-copy {
    width: min(100%, 320px);
  }
}

@media (max-width: 640px) {
  .home-founders .about-team-shell {
    width: min(calc(100vw - 1.5rem), 1120px);
  }

  .home-founders .founder-feature-media {
    width: min(100%, 304px);
  }

  .home-founders .founder-feature-copy,
  .home-founders .founder-feature-primary .founder-feature-copy,
  .home-founders .founder-feature-tertiary .founder-feature-copy {
    width: min(100%, 304px);
    justify-self: center;
  }

  .home-founders .founder-feature-role {
    font-size: clamp(0.98rem, 4.8vw, 1.18rem);
    line-height: 1.12;
    max-width: 100%;
  }

  .home-founders .founder-feature-name {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .home-founders .about-team-shell {
    width: min(calc(100vw - 1rem), 1120px);
  }

  .home-founders .founder-feature-media {
    width: min(100%, 286px);
  }

  .home-founders .founder-feature-copy,
  .home-founders .founder-feature-primary .founder-feature-copy,
  .home-founders .founder-feature-tertiary .founder-feature-copy {
    width: min(100%, 286px);
    justify-self: center;
  }

  .home-founders .founder-feature-role {
    font-size: clamp(0.9rem, 4.9vw, 1.04rem);
  }

  .home-founders-head h2 {
    font-size: clamp(1.34rem, 7.1vw, 1.86rem);
    letter-spacing: -0.02em;
  }
}

.story-section {
  background: #070707;
}

.story-layout {
  display: grid;
  grid-template-columns: 6fr 5fr;
  gap: clamp(1rem, 2.2vw, 1.6rem);
}

.story-copy {
  border: 1px solid var(--color-line-soft);
  border-radius: var(--radius-lg);
  background: #0b0b0b;
  padding: clamp(1.5rem, 3vw, 2.6rem);
  display: grid;
  gap: 1rem;
}

.story-copy h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3.2vw, 3rem);
  line-height: 1;
  letter-spacing: -0.02em;
}

.story-copy p {
  margin: 0;
  color: var(--color-muted);
  line-height: 1.62;
}

.story-media {
  margin: 0;
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-line-soft);
  overflow: hidden;
}

.story-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.values-section {
  background: #050505;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.value-item {
  padding: clamp(1.2rem, 2.2vw, 1.8rem) 0;
  border-top: 1px solid var(--color-line-soft);
  display: grid;
  gap: 0.7rem;
}

.value-item h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.18rem, 1.8vw, 1.55rem);
  letter-spacing: -0.018em;
}

.value-item p {
  margin: 0;
  color: var(--color-muted);
  line-height: 1.55;
  max-width: 30ch;
}

.contact-page,
.contact-page .page-hero,
.contact-page .contact-form-section,
.contact-page .contact-info-strip {
  background: #000;
}

.contact-form-section {
  background: #000;
}

.contact-layout {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: clamp(1.2rem, 2.4vw, 2rem);
  align-items: start;
}

.contact-intro {
  padding-top: 0.25rem;
  display: grid;
  gap: 1rem;
}

.contact-intro h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.9vw, 2.5rem);
  line-height: 1.04;
  letter-spacing: -0.02em;
}

.contact-intro p {
  margin: 0;
  color: var(--color-muted);
  line-height: 1.62;
}

.contact-hero-inner {
  max-width: 1100px;
  gap: clamp(0.72rem, 1.5vw, 1.15rem);
}

.contact-page .page-subtext {
  max-width: 58ch;
}

.contact-hero-metrics {
  margin-top: clamp(1.1rem, 2.1vw, 1.8rem);
  display: grid;
  grid-template-columns: repeat(3, minmax(220px, 1fr));
  gap: clamp(0.75rem, 1.4vw, 1.2rem);
  max-width: 100%;
}

.contact-hero-metric {
  margin: 0;
  border-top: 1px solid var(--color-line-soft);
  padding-top: clamp(0.72rem, 1vw, 0.95rem);
  min-height: clamp(86px, 8.5vw, 102px);
  display: grid;
  align-content: start;
  gap: 0.35rem;
}

.contact-hero-metric-label {
  margin: 0;
  font-size: 0.69rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.56);
}

.contact-hero-metric-value {
  margin: 0;
  color: rgba(255, 255, 255, 0.92);
  font-family: var(--font-display);
  font-size: clamp(0.95rem, 1.28vw, 1.12rem);
  line-height: 1.34;
  letter-spacing: -0.01em;
}

.contact-points {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.58rem;
}

.contact-points li {
  margin: 0;
  padding-left: 1.05rem;
  position: relative;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.5;
}

.contact-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.56em;
  width: 0.34rem;
  height: 0.34rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.64);
}

.contact-model-wrap {
  padding-block: clamp(0.35rem, 1vw, 0.85rem);
}

.contact-model-scene {
  width: min(100%, 420px);
  aspect-ratio: 1.24;
  position: relative;
  perspective: 1200px;
  isolation: isolate;
  contain: layout paint style;
  border: 0;
  background: #000;
  overflow: hidden;
  cursor: pointer;
  touch-action: pan-y;
  will-change: transform;
}

.contact-model-scene::after {
  content: none;
}

.contact-model-scene.is-dragging {
  cursor: grabbing;
}

.contact-model-scene:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.64);
  outline-offset: 4px;
}

.contact-model-canvas {
  width: 100%;
  height: 100%;
  display: block;
  transform: translateZ(0);
  backface-visibility: hidden;
}

.contact-form {
  border: 1px solid var(--color-line-soft);
  background: rgba(255, 255, 255, 0.02);
  border-radius: var(--radius-lg);
  padding: clamp(1.2rem, 2.6vw, 2rem);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.field {
  display: grid;
  gap: 0.55rem;
}

.field-full {
  grid-column: 1 / -1;
}

.field span {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.03);
  color: var(--color-text);
  font: inherit;
  padding: 0.9rem 0.95rem;
  transition: border-color var(--dur-fast) ease, background-color var(--dur-fast) ease;
}

.field select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  color-scheme: dark;
  background-image:
    linear-gradient(45deg, transparent 50%, rgba(255, 255, 255, 0.7) 50%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.7) 50%, transparent 50%);
  background-position:
    calc(100% - 18px) calc(50% + 1px),
    calc(100% - 13px) calc(50% + 1px);
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
}

.field select option {
  color: #f4f4f4;
  background: #0b0b0b;
}

.field select option[disabled] {
  color: rgba(244, 244, 244, 0.58);
}

.field textarea {
  resize: vertical;
  min-height: 140px;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.05);
}

.contact-framework-section {
  background: #000;
  border-top: 1px solid var(--color-line-soft);
}

.contact-framework-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
}

.contact-framework-card {
  border: 1px solid var(--color-line-soft);
  background: rgba(255, 255, 255, 0.015);
  padding: clamp(1rem, 2vw, 1.35rem);
  display: grid;
  gap: 0.62rem;
}

.contact-framework-card h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.08rem, 1.6vw, 1.42rem);
  letter-spacing: -0.015em;
  line-height: 1.05;
}

.contact-framework-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.56;
}

.contact-faq-section {
  background: #000;
}

.contact-faq-layout {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: clamp(1rem, 2.2vw, 1.8rem);
  align-items: start;
}

.contact-faq-intro {
  display: grid;
  gap: 0.85rem;
}

.contact-faq-intro h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.8vw, 2.45rem);
  line-height: 1.04;
  letter-spacing: -0.02em;
}

.contact-faq-intro p {
  margin: 0;
  color: var(--color-muted);
  line-height: 1.58;
}

.contact-faq-list {
  display: grid;
  gap: 0.72rem;
}

.contact-faq-list details {
  border-top: 1px solid var(--color-line-soft);
  padding-top: 0.72rem;
}

.contact-faq-list summary {
  cursor: pointer;
  list-style: none;
  font-family: var(--font-display);
  font-size: clamp(1.06rem, 1.5vw, 1.34rem);
  letter-spacing: -0.015em;
  color: rgba(255, 255, 255, 0.95);
}

.contact-faq-list summary::-webkit-details-marker {
  display: none;
}

.contact-faq-list p {
  margin: 0.58rem 0 0;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.56;
}

.contact-info-strip {
  border-top: 1px solid var(--color-line-soft);
  border-bottom: 1px solid var(--color-line-soft);
  background: #000;
}

.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.contact-info-grid p {
  margin: 0;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-wrap: wrap;
  color: rgba(255, 255, 255, 0.85);
  min-height: 58px;
}

.contact-info-grid span {
  text-transform: uppercase;
  letter-spacing: 0.11em;
  font-size: 0.68rem;
  color: rgba(255, 255, 255, 0.64);
}

.contact-info-grid a {
  color: inherit;
  transition: color var(--dur-fast) ease;
}

.contact-info-grid a:hover,
.contact-info-grid a:focus-visible {
  color: #fff;
}

@media (max-width: 1120px) {
  .services-hero-layout {
    grid-template-columns: minmax(0, 1fr) minmax(210px, 300px);
    column-gap: clamp(1rem, 2vw, 1.8rem);
    row-gap: 0.9rem;
  }

  .services-intro-layout {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .services-gap-video {
    width: 100%;
  }

  .services-hero-reel {
    justify-self: start;
    width: min(31vw, 275px);
  }

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

  .home-work-stage {
    min-height: clamp(250px, 44vw, 360px);
  }

  .home-work-robot {
    width: clamp(90px, 18vw, 130px);
  }

  .capability-media,
  .capability-copy,
  .capability-image,
  .capability-list {
    grid-column: auto;
    grid-row: auto;
  }

  .why-choose-layout {
    grid-template-columns: 1fr;
  }

  .home-work-curated-layout {
    grid-template-columns: 1fr;
  }

  .home-work-topbar {
    grid-template-columns: 1fr auto;
    row-gap: 0.3rem;
  }

  .home-work-top-time {
    display: none;
  }

  .home-work-top-nav {
    justify-self: end;
  }

  .home-work-preview {
    width: min(100%, 460px);
    max-width: min(100%, 460px);
    aspect-ratio: 16 / 9;
  }

  .shortcut-keyboard-3d {
    width: min(100%, 680px);
    --kbd-base-x: 8deg;
    --kbd-base-y: 0deg;
    --kbd-base-z: 0deg;
  }

  .shortcut-key {
    --key-depth: 18px;
  }

  .shortcut-key-ctrl {
    --key-depth: 22px;
  }

  .why-choose-grid {
    grid-template-columns: 1fr;
  }

  .service-row {
    grid-template-columns: 1fr;
  }

  .services-assurance-grid {
    grid-template-columns: 1fr;
  }

  .service-row.is-reverse .service-content,
  .service-row.is-reverse .service-media {
    order: initial;
  }

  .process-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 0.75rem;
  }

  .process-strip li:nth-child(2)::after,
  .process-strip li:last-child::after {
    display: none;
  }

  .story-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .work-editorial-meta {
    grid-template-columns: 1fr 1fr;
  }

  .work-meta-intro {
    max-width: none;
  }

  .work-meta-links {
    grid-column: 1 / -1;
    grid-auto-flow: column;
    justify-content: start;
    gap: 1.1rem;
  }

  .work-editorial-title {
    width: min(1180px, 100%);
  }

  .work-stream-head {
    align-items: flex-end;
  }

  .work-editorial-stage {
    min-height: clamp(320px, 58vw, 640px);
  }

  .work-editorial-frame {
    width: min(52vw, 500px);
  }

  .work-stream-grid {
    row-gap: clamp(1.8rem, 4.2vw, 3.4rem);
  }

  .detail-overview-layout {
    grid-template-columns: 1fr;
  }

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

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

  .contact-intro {
    max-width: 64ch;
  }

  .contact-model-scene {
    width: min(100%, 360px);
  }
}

@media (max-width: 980px) {
  .services-hero-layout {
    grid-template-columns: 1fr;
    gap: clamp(1rem, 2.8vw, 1.7rem);
  }

  .services-hero-copy {
    max-width: 100%;
  }

  .services-hero-reel {
    justify-self: start;
    width: min(52vw, 320px);
  }
}

@media (max-width: 980px) {
  :root {
    --shell-width: min(1280px, 100% - 2.25rem);
  }

  .desktop-nav {
    display: none;
  }

  .menu-toggle,
  .mobile-menu-close-home {
    display: inline-flex;
    width: 43px;
    height: 43px;
    border: 1px solid rgba(255, 255, 255, 0.34);
    border-radius: 999px;
    background:
      linear-gradient(128deg, rgba(255, 255, 255, 0.14) 0%, rgba(255, 255, 255, 0.06) 36%, rgba(255, 255, 255, 0.01) 100%),
      rgba(12, 12, 12, 0.42);
    backdrop-filter: blur(7px) saturate(118%);
    -webkit-backdrop-filter: blur(7px) saturate(118%);
    align-items: center;
    justify-content: center;
    overflow: hidden;
    isolation: isolate;
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.2),
      0 6px 16px rgba(0, 0, 0, 0.24);
    transition:
      border-color var(--dur-fast) ease,
      background-color var(--dur-fast) ease,
      backdrop-filter var(--dur-fast) ease,
      -webkit-backdrop-filter var(--dur-fast) ease,
      transform var(--dur-fast) ease;
  }

  .mobile-menu-close-home {
    position: absolute;
    top: 1.1rem;
    right: 1.2rem;
    min-height: 0;
    padding: 0;
    color: rgba(255, 255, 255, 0.92);
  }

  .menu-toggle::before,
  .mobile-menu-close-home::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    pointer-events: none;
    background: linear-gradient(112deg, rgba(255, 255, 255, 0.24) 0%, rgba(255, 255, 255, 0.08) 42%, rgba(255, 255, 255, 0) 70%);
    opacity: 0.44;
    transition: opacity var(--dur-fast) ease;
  }

  .menu-toggle:hover,
  .menu-toggle:focus-visible,
  .mobile-menu-close-home:hover,
  .mobile-menu-close-home:focus-visible {
    border-color: rgba(255, 255, 255, 0.72);
    background:
      linear-gradient(128deg, rgba(255, 255, 255, 0.18) 0%, rgba(255, 255, 255, 0.1) 36%, rgba(255, 255, 255, 0.02) 100%),
      rgba(18, 18, 18, 0.5);
    backdrop-filter: blur(10px) saturate(126%);
    -webkit-backdrop-filter: blur(10px) saturate(126%);
    transform: translateY(-1px);
  }

  .menu-toggle:hover::before,
  .menu-toggle:focus-visible::before,
  .mobile-menu-close-home:hover::before,
  .mobile-menu-close-home:focus-visible::before {
    opacity: 0.64;
  }

  .menu-toggle span {
    left: 12px;
    right: 12px;
    height: 2px;
  }

  .menu-toggle span:nth-child(1) {
    top: 14px;
  }

  .menu-toggle span:nth-child(2) {
    top: 22px;
  }

  .menu-toggle span:nth-child(3) {
    top: 30px;
  }

  .mobile-menu-inner {
    position: relative;
    width: 100%;
    max-width: none;
    margin-left: 0;
    min-height: 100dvh;
    height: 100dvh;
    justify-content: flex-start;
    gap: 0;
    padding: clamp(6.6rem, 14vh, 8rem) clamp(1.5rem, 4vw, 2.2rem) 1.8rem;
    background:
      radial-gradient(120% 90% at 100% 0%, rgba(255, 255, 255, 0.09) 0%, rgba(255, 255, 255, 0) 56%),
      linear-gradient(180deg, rgba(17, 17, 17, 0.97) 0%, rgba(5, 5, 5, 0.97) 100%);
    border-left: 0;
    box-shadow: none;
    transform: translateY(-100%);
  }

  .mobile-menu-close-icon {
    display: inline-block;
    width: 14px;
    height: 14px;
    position: relative;
  }

  .mobile-menu-close-icon::before,
  .mobile-menu-close-icon::after {
    content: "";
    position: absolute;
    left: 6px;
    top: -1px;
    width: 2px;
    height: 16px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.95);
  }

  .mobile-menu-close-icon::before {
    transform: rotate(45deg);
  }

  .mobile-menu-close-icon::after {
    transform: rotate(-45deg);
  }

  .mobile-menu.is-open .mobile-menu-inner {
    transform: translateY(0);
  }

  .mobile-menu a {
    width: 100%;
    min-height: 58px;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .nav-shell {
    min-height: 92px;
  }

  .brand-mark {
    height: clamp(54px, 9.1vw, 68px);
    min-width: clamp(165px, 40vw, 228px);
  }

  .brand img {
    transform: scale(1.24);
  }

  .hero-content-wrap {
    padding-top: clamp(6.5rem, 12vh, 8rem);
  }

  .hero-content {
    max-width: 780px;
  }

  .hero-subtitle {
    max-width: 48ch;
  }

  .section {
    padding-block: clamp(4rem, 9vw, 6rem);
  }

  .page-hero {
    padding-top: clamp(8rem, 15vh, 10rem);
  }

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

  .work-card,
  .work-card-featured {
    grid-column: 1;
  }

  .work-editorial-meta {
    grid-template-columns: 1fr;
    gap: 0.8rem;
  }

  .work-meta-links {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.35rem 0.7rem;
  }

  .work-editorial-stage {
    margin-top: clamp(0rem, 0.35vw, 0.12rem);
    min-height: clamp(300px, 65vw, 520px);
  }

  .work-editorial-frame {
    width: min(56vw, 380px);
  }

  .work-editorial-title {
    width: 100%;
    font-size: clamp(1.05rem, 6vw, 3.4rem);
    line-height: 0.9;
    transform: translate(-50%, -54%);
  }

  .work-meta-small {
    font-size: 0.68rem;
  }

  .work-meta-intro {
    font-size: clamp(1.1rem, 4.5vw, 1.46rem);
    line-height: 1.12;
  }

  .work-stream-head {
    flex-direction: column;
    align-items: flex-end;
    gap: 0.55rem;
  }

  .work-word-stack {
    margin-left: auto;
    text-align: right;
  }

  .work-stream-grid {
    grid-template-columns: 1fr;
    row-gap: 2rem;
  }

  .work-stream-card,
  .work-stream-card.is-right {
    grid-column: 1;
    margin-top: 0;
  }

  .work-stream-media {
    aspect-ratio: 1.28;
    min-height: 0;
  }

  .footer-bottom {
    grid-template-columns: 1fr;
    grid-template-areas:
      "legal"
      "contact"
      "copy"
      "social";
    justify-items: center;
    row-gap: 0.34rem;
    text-align: center;
  }

  .footer-legal {
    justify-self: center;
    order: 1;
  }

  .footer-contact {
    justify-self: center;
    justify-content: center;
    order: 2;
  }

  .footer-bottom p {
    order: 3;
  }

  .footer-social {
    justify-self: center;
    order: 4;
  }

  .contact-form {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    --shell-width: min(1280px, 100% - 1.5rem);
  }

  .nav-shell {
    min-height: 86px;
  }

  .section {
    padding-block: clamp(3.2rem, 8vw, 4.8rem);
  }

  .page-section {
    padding-block: clamp(2.6rem, 7vw, 4.3rem);
  }

  .page-hero {
    padding-top: clamp(7rem, 14vh, 8.6rem);
    padding-bottom: clamp(2.2rem, 6vw, 3.2rem);
  }

  .page-title {
    font-size: clamp(1.72rem, 7.8vw, 3.4rem);
    line-height: 0.96;
    letter-spacing: -0.02em;
  }

  .page-subtext {
    font-size: clamp(0.95rem, 3.2vw, 1.03rem);
    line-height: 1.55;
  }

  .capability-media {
    height: clamp(230px, 54vw, 320px);
    min-height: clamp(230px, 54vw, 320px);
    max-height: clamp(230px, 54vw, 320px);
  }

  .capability-copy {
    padding: clamp(1rem, 3.5vw, 1.4rem);
    gap: 0.7rem;
  }

  .capability-copy h3 {
    font-size: clamp(1.1rem, 4.6vw, 1.55rem);
  }

  .capability-list {
    padding-inline: clamp(0.8rem, 4vw, 1.2rem);
  }

  .capability-list li {
    grid-template-columns: 3.5rem 1fr;
    gap: 0.45rem;
    padding-bottom: 0.7rem;
  }

  .capability-list span {
    font-size: 1.18rem;
  }

  .capability-list-text {
    font-size: clamp(1rem, 3.8vw, 1.26rem);
  }

  .capability-list-arrow {
    font-size: 1.48rem;
  }

  .service-stack {
    gap: 0.9rem;
  }

  .service-row {
    gap: 0.8rem;
    padding: 0.85rem;
  }

  .service-content {
    padding: 1rem;
    gap: 0.8rem;
  }

  .service-content h3 {
    font-size: clamp(1.16rem, 5.5vw, 1.78rem);
  }

  .service-content > p,
  .service-features li {
    font-size: 0.95rem;
  }

  .service-media {
    aspect-ratio: 168 / 106;
    min-height: 0;
  }

  .process-strip li {
    padding: 1rem 0.4rem 0.9rem 0;
  }

  .process-strip h3 {
    font-size: clamp(1rem, 4.2vw, 1.25rem);
  }

  .process-strip p {
    font-size: 0.9rem;
    max-width: none;
  }

  .story-copy {
    padding: 1.05rem;
  }

  .story-copy h2 {
    font-size: clamp(1.2rem, 5.6vw, 1.8rem);
  }

  .value-item {
    padding: 0.95rem 0;
    gap: 0.55rem;
  }

  .value-item h3 {
    font-size: clamp(1.06rem, 4.6vw, 1.34rem);
  }

  .contact-layout {
    gap: 0.85rem;
  }

  .contact-model-scene {
    width: min(100%, 320px);
  }

  .contact-form {
    padding: 1rem;
    gap: 0.8rem;
  }

  .field input,
  .field select,
  .field textarea {
    padding: 0.78rem 0.82rem;
  }

  .contact-info-grid p {
    min-height: auto;
  }

  body.contact-route .contact-intro .section-kicker,
  body.contact-route .contact-points,
  body.contact-route .contact-framework-section,
  body.contact-route .contact-faq-section,
  body.contact-route .contact-page .page-hero {
    display: none;
  }

  body.contact-route .contact-form-section {
    padding-top: clamp(5.2rem, 11vh, 6.4rem);
    padding-bottom: clamp(1.25rem, 4vw, 1.9rem);
  }

  body.contact-route .contact-layout {
    gap: 0.9rem;
  }

  body.contact-route .contact-intro {
    gap: 0.72rem;
  }

  body.contact-route .contact-intro h2 {
    font-size: clamp(1.28rem, 5.4vw, 1.8rem);
    line-height: 1.06;
  }

  body.contact-route .contact-model-wrap {
    padding-block: 0.2rem 0.44rem;
  }

  body.contact-route .contact-model-scene {
    width: min(78vw, 286px);
    aspect-ratio: 1.02;
  }

  body.contact-route .contact-form {
    padding: 0.9rem;
    gap: 0.74rem;
  }

  .work-editorial-hero {
    padding-top: clamp(5.2rem, 8.8vh, 5.9rem);
    padding-bottom: clamp(2.6rem, 7vw, 3.3rem);
  }

  .work-editorial-stage {
    min-height: clamp(250px, 68vw, 420px);
    margin-top: 0.12rem;
  }

  .work-editorial-frame {
    width: min(74vw, 330px);
  }

  .work-editorial-title {
    width: 100%;
    font-size: clamp(0.92rem, 7.2vw, 2.15rem);
    line-height: 0.94;
    transform: translate(-50%, -53%);
  }

  .work-word-stack {
    font-size: clamp(1.55rem, 13.4vw, 2.6rem);
    line-height: 0.86;
  }

  .work-stream-grid {
    row-gap: 1.55rem;
  }

  .work-stream-media {
    aspect-ratio: 1.26;
  }
}

@media (max-width: 640px) {
  :root {
    --shell-width: min(1280px, 100% - 1.15rem);
  }

  .nav-shell {
    min-height: 80px;
  }

  .brand-mark {
    height: clamp(62px, 16vw, 78px);
    min-width: clamp(196px, 62vw, 270px);
  }

  .brand img {
    transform: scale(1.35);
  }

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

  .mobile-menu-close-home {
    top: 1.05rem;
    right: 0.95rem;
    width: 40px;
    height: 40px;
  }

  .menu-toggle span {
    left: 10px;
    right: 10px;
  }

  .menu-toggle span:nth-child(1) {
    top: 12px;
  }

  .menu-toggle span:nth-child(2) {
    top: 19px;
  }

  .menu-toggle span:nth-child(3) {
    top: 26px;
  }

  .mobile-menu-inner {
    width: min(88vw, 320px);
    padding: 5.2rem 1.35rem 1.35rem;
    gap: 1.2rem;
  }

  .mobile-menu {
    background: #000;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .mobile-menu-inner {
    width: 100%;
    max-width: none;
    min-height: 100dvh;
    height: 100dvh;
    justify-content: flex-start;
    padding: clamp(6.2rem, 14vh, 7.6rem) 1.15rem 1.2rem;
    gap: 0;
    background: #000;
    border-left: 0;
    box-shadow: none;
    transform: translateY(-100%);
  }

  .mobile-menu a {
    min-height: 56px;
    width: 100%;
    justify-content: space-between;
    font-size: 0.92rem;
    letter-spacing: 0.12em;
    font-weight: 600;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .mobile-menu a::after {
    content: "›";
    font-size: 1rem;
    line-height: 1;
    color: rgba(255, 255, 255, 0.66);
    transform: translateX(0);
    transition: transform var(--dur-fast) ease, color var(--dur-fast) ease;
  }

  .mobile-menu a:hover::after,
  .mobile-menu a:focus-visible::after {
    transform: translateX(3px);
    color: rgba(255, 255, 255, 0.92);
  }

  .mobile-menu-dino {
    display: flex;
    flex: 1 1 auto;
    min-height: 0;
    margin-top: 0.72rem;
    padding-top: 0.72rem;
    border-top: 0;
  }

  .mobile-menu-dino-stage {
    position: relative;
    flex: 1 1 auto;
    min-height: 0;
    height: 100%;
    border: 0;
    background: transparent;
    border-radius: 0;
    padding: 0;
    overflow: hidden;
    touch-action: manipulation;
  }

  .mobile-menu-dino-canvas {
    width: 100%;
    height: 100%;
    min-height: 150px;
    display: block;
    border-radius: 0;
    background: transparent;
  }

  .mobile-menu-dino-restart {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.34);
    border-radius: 999px;
    background:
      linear-gradient(128deg, rgba(255, 255, 255, 0.14) 0%, rgba(255, 255, 255, 0.06) 36%, rgba(255, 255, 255, 0.01) 100%),
      rgba(12, 12, 12, 0.42);
    backdrop-filter: blur(7px) saturate(118%);
    -webkit-backdrop-filter: blur(7px) saturate(118%);
    color: rgba(255, 255, 255, 0.95);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    isolation: isolate;
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.2),
      0 6px 16px rgba(0, 0, 0, 0.24);
    opacity: 0;
    pointer-events: none;
    transition:
      opacity var(--dur-fast) ease,
      border-color var(--dur-fast) ease,
      background-color var(--dur-fast) ease,
      backdrop-filter var(--dur-fast) ease,
      -webkit-backdrop-filter var(--dur-fast) ease,
      transform var(--dur-fast) ease;
  }

  .mobile-menu-dino-restart::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    pointer-events: none;
    background: linear-gradient(112deg, rgba(255, 255, 255, 0.24) 0%, rgba(255, 255, 255, 0.08) 42%, rgba(255, 255, 255, 0) 70%);
    opacity: 0.44;
    transition: opacity var(--dur-fast) ease;
  }

  .mobile-menu-dino-restart span {
    position: relative;
    z-index: 1;
    font-size: 1.02rem;
    line-height: 1;
    font-weight: 700;
  }

  .mobile-menu-dino-restart.is-visible {
    opacity: 1;
    pointer-events: auto;
    transform: translate(-50%, -50%);
  }

  .mobile-menu-dino-restart.is-visible:hover,
  .mobile-menu-dino-restart.is-visible:focus-visible {
    border-color: rgba(255, 255, 255, 0.72);
    background:
      linear-gradient(128deg, rgba(255, 255, 255, 0.18) 0%, rgba(255, 255, 255, 0.1) 36%, rgba(255, 255, 255, 0.02) 100%),
      rgba(18, 18, 18, 0.5);
    backdrop-filter: blur(10px) saturate(126%);
    -webkit-backdrop-filter: blur(10px) saturate(126%);
    transform: translate(-50%, -50%) translateY(-1px);
  }

  .mobile-menu-dino-restart.is-visible:hover::before,
  .mobile-menu-dino-restart.is-visible:focus-visible::before {
    opacity: 0.64;
  }

  .mobile-menu-dino-hint {
    margin: 0;
    position: absolute;
    right: 0.2rem;
    bottom: 0.32rem;
    font-size: 0.58rem;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.56);
    pointer-events: none;
  }

  .mobile-menu-footer {
    display: grid;
    gap: 0.78rem;
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
  }

  .mobile-menu-footer-brand {
    display: none;
    align-items: center;
    justify-content: flex-start;
    width: min(42vw, 136px);
  }

  .mobile-menu-footer-brand img {
    width: 100%;
    height: auto;
    object-fit: contain;
  }

  .mobile-menu-footer-legal {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
  }

  .mobile-menu-footer-legal a {
    font-size: 0.72rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.76);
    min-height: 44px;
    display: inline-flex;
    align-items: center;
  }

  .mobile-menu-footer-social {
    display: flex;
    align-items: center;
    gap: 0.7rem;
  }

  .mobile-menu-footer-social-link {
    width: 34px;
    height: 34px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    background: rgba(255, 255, 255, 0.04);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.82);
    transition:
      border-color var(--dur-fast) ease,
      background-color var(--dur-fast) ease,
      transform var(--dur-fast) ease,
      color var(--dur-fast) ease;
  }

  .mobile-menu-footer-social-link svg {
    width: 1rem;
    height: 1rem;
    stroke: currentColor;
    fill: none;
    stroke-width: 1.8;
  }

  .mobile-menu-footer-social-link:hover,
  .mobile-menu-footer-social-link:focus-visible {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.55);
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-1px);
  }

  .hero h1 {
    max-width: 10.5ch;
    font-size: clamp(1.7rem, 9.4vw, 2.8rem);
  }

  .hero-subtitle {
    max-width: 34ch;
    font-size: 0.9rem;
    line-height: 1.5;
  }

  .hero-actions {
    width: 100%;
    gap: 0.58rem;
    flex-wrap: nowrap;
    justify-content: center;
  }

  .hero-actions .btn {
    flex: 0 0 auto;
    width: auto;
    min-height: 42px;
    min-width: 136px;
    padding: 0.62rem 1rem;
    font-size: 0.64rem;
    letter-spacing: 0.085em;
  }

  .shortcut-board {
    display: block;
  }

  .shortcut-keyboard-3d {
    width: min(100%, 640px);
    --kbd-base-x: 8deg;
    --kbd-base-y: 0deg;
    --kbd-base-z: 0deg;
  }

  .shortcut-keyboard-bed {
    min-height: clamp(190px, 62vw, 286px);
  }

  .shortcut-keyboard-keys {
    left: clamp(0.78rem, 2.1vw, 1.05rem);
    right: clamp(0.78rem, 2.1vw, 1.05rem);
    top: clamp(0.78rem, 2.1vw, 1.05rem);
    bottom: clamp(0.78rem, 2.1vw, 1.05rem);
  }

  .shortcut-logo-3d {
    width: clamp(132px, 58vw, 240px);
  }

  .shortcut-pc-monitor {
    width: clamp(170px, 74%, 320px);
    top: 6%;
  }

  .shortcut-pc-neck {
    top: 72%;
    width: clamp(16px, 5.4%, 24px);
    height: clamp(24px, 7.6vw, 34px);
  }

  .shortcut-pc-base {
    top: calc(72% + clamp(24px, 7.8vw, 34px));
    width: clamp(96px, 40%, 164px);
    height: clamp(10px, 2.6vw, 16px);
  }

  .shortcut-pc-keyboard {
    top: calc(72% + clamp(54px, 14.2vw, 72px));
    width: clamp(178px, 76%, 286px);
    height: clamp(38px, 10vw, 56px);
  }

  .shortcut-pc-tagline {
    font-size: clamp(0.44rem, 1.25vw, 0.56rem);
    letter-spacing: 0.18em;
  }

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

  .home-work-item {
    grid-template-columns: 1fr minmax(96px, 122px);
    row-gap: 0.2rem;
    column-gap: 0.7rem;
    padding: 0.82rem 0;
  }

  .home-work-item-index {
    font-size: 0.6rem;
  }

  .home-work-item-title {
    font-size: clamp(0.92rem, 3.8vw, 1.08rem);
  }

  .home-work-item-aside {
    gap: 0.14rem;
  }

  .home-work-item-year {
    font-size: 0.64rem;
  }

  .home-work-item-tag {
    font-size: 0.62rem;
  }

  .home-work-footnote {
    font-size: 0.62rem;
  }

  .home-work-head p {
    max-width: 100%;
  }

  .home-work-stage {
    min-height: clamp(220px, 58vw, 300px);
  }

  .home-work-robot {
    width: clamp(82px, 24vw, 112px);
    bottom: 20%;
  }

  .home-work-actions {
    justify-content: flex-start;
  }

  .work-editorial-hero {
    padding-top: clamp(4.95rem, 8.2vh, 5.45rem);
  }

  .work-editorial-meta {
    gap: 0.5rem;
  }

  .work-meta-small {
    font-size: 0.64rem;
    letter-spacing: 0.11em;
  }

  .work-meta-intro {
    font-size: clamp(1rem, 6.2vw, 1.22rem);
    line-height: 1.14;
  }

  .work-meta-links {
    justify-content: flex-start;
    gap: 0.42rem 0.64rem;
  }

  .work-meta-links a {
    font-size: 0.7rem;
  }

  .work-editorial-frame {
    width: min(78vw, 300px);
    min-width: 0;
  }

  .work-editorial-title {
    width: 100%;
    font-size: clamp(0.82rem, 6.4vw, 1.7rem);
    line-height: 0.92;
    transform: translate(-50%, -52%);
  }

  .work-editorial-title .outline {
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.62);
    text-stroke: 1px rgba(255, 255, 255, 0.62);
  }

  .work-stream-copy {
    gap: 0.52rem;
  }

  .work-stream-index {
    font-size: 0.82rem;
  }

  .work-stream-copy h3 {
    font-size: clamp(0.96rem, 5vw, 1.14rem);
  }

  .process-strip {
    grid-template-columns: 1fr;
  }

  .process-strip li::after {
    display: none;
  }

  .capability-list li {
    grid-template-columns: 3.35rem 1fr;
    gap: 0.28rem;
    align-items: start;
  }

  .capability-list li:first-child .capability-list-text-desktop {
    display: none;
  }

  .capability-list li:first-child .capability-list-text-mobile-only {
    display: block;
    white-space: nowrap;
  }

  .capability-list-preview.is-right,
  .capability-list-preview.is-left {
    grid-template-columns: 1fr 132px;
  }

  .capability-list-preview img,
  .capability-list-preview video {
    width: 132px;
    height: 86px;
  }

  .detail-meta,
  .detail-card {
    padding: 0.9rem;
  }

  .detail-copy h2 {
    font-size: clamp(1.14rem, 5.2vw, 1.65rem);
  }

  .page-cta-inner h2,
  .final-cta-inner h2 {
    font-size: clamp(1.44rem, 8.6vw, 2.3rem);
    line-height: 1;
  }

  .footer-wordmark {
    font-size: clamp(1.34rem, 7vw, 1.65rem);
    letter-spacing: 0.14em;
  }

  .footer-legal {
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.45rem 0.95rem;
  }

  .footer-contact {
    justify-content: center;
    gap: 0.34rem 0.52rem;
  }

  .footer-contact a {
    min-height: 1.72rem;
    padding: 0.16rem 0.52rem;
    font-size: 0.66rem;
  }

  .footer-bottom {
    row-gap: 0.26rem;
    padding-top: 0.3rem;
  }

  .footer-social {
    justify-self: center;
    order: 2;
    margin-top: -0.12rem;
    margin-bottom: 0.02rem;
  }

  .social-list {
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.52rem;
  }

  .footer-bottom p {
    order: 3;
    font-size: 0.72rem;
    max-width: 34ch;
  }

  .values-grid,
  .detail-grid,
  .contact-info-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  :root {
    --shell-width: min(1280px, 100% - 0.9rem);
  }

  .nav-shell {
    min-height: 74px;
  }

  .brand-mark {
    height: clamp(58px, 17.5vw, 72px);
    min-width: clamp(182px, 64vw, 236px);
  }

  .brand img {
    transform: scale(1.32);
  }

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

  .mobile-menu-close-home {
    width: 38px;
    height: 38px;
  }

  .mobile-menu-dino-restart {
    width: 38px;
    height: 38px;
  }

  .mobile-menu-dino-restart span {
    font-size: 0.96rem;
  }

  .menu-toggle span {
    left: 9px;
    right: 9px;
    height: 1.85px;
  }

  .menu-toggle span:nth-child(1) {
    top: 11px;
  }

  .menu-toggle span:nth-child(2) {
    top: 18px;
  }

  .menu-toggle span:nth-child(3) {
    top: 25px;
  }

  .hero-actions {
    gap: 0.5rem;
  }

  .hero-actions .btn {
    min-height: 40px;
    min-width: 126px;
    padding: 0.56rem 0.88rem;
    font-size: 0.6rem;
    letter-spacing: 0.08em;
  }

  .hero-content-wrap {
    padding-top: clamp(5.6rem, 12vh, 6.7rem);
    padding-bottom: clamp(2.1rem, 7vh, 2.9rem);
  }

  .section-kicker {
    font-size: 0.6rem;
    letter-spacing: 0.15em;
  }

  .work-editorial-stage {
    min-height: clamp(220px, 74vw, 320px);
    margin-top: 0;
  }

  .work-editorial-title {
    width: 100%;
    font-size: clamp(0.72rem, 7.2vw, 1.42rem);
    line-height: 0.96;
    letter-spacing: -0.005em;
    transform: translate(-50%, -51%);
  }

  .work-editorial-title .outline {
    -webkit-text-stroke: 0.78px rgba(255, 255, 255, 0.62);
    text-stroke: 0.78px rgba(255, 255, 255, 0.62);
  }

  .work-word-stack {
    font-size: clamp(1.7rem, 17vw, 3rem);
  }

  .work-stream-category {
    font-size: 0.62rem;
  }

  .work-stream-summary {
    font-size: 0.8rem;
    line-height: 1.48;
  }

  .work-stream-media {
    aspect-ratio: 1.22;
  }

  .capability-list {
    padding-inline: 0.75rem;
  }

  .capability-list li {
    grid-template-columns: 2.6rem 1fr;
    gap: 0.22rem;
  }

  .capability-list span {
    font-size: 1.05rem;
  }

  .capability-list-text {
    font-size: clamp(0.92rem, 4.5vw, 1.07rem);
  }

  .capability-list li:first-child .capability-list-text-mobile-only {
    font-size: clamp(0.92rem, 4.5vw, 1.07rem);
  }

  .capability-list-preview.is-right,
  .capability-list-preview.is-left {
    grid-template-columns: 1fr;
    gap: 0.55rem;
  }

  .capability-list-preview img,
  .capability-list-preview video {
    width: min(100%, 220px);
    height: auto;
    aspect-ratio: 1.56;
    justify-self: start;
  }

  .service-content h3 {
    font-size: clamp(1.06rem, 5.8vw, 1.4rem);
  }

  .service-content > p,
  .service-features li,
  .contact-intro p {
    font-size: 0.9rem;
  }

  .contact-model-scene {
    width: min(100%, 278px);
    aspect-ratio: 1.14;
  }

  .contact-form {
    padding: 0.86rem;
  }

  .field span {
    font-size: 0.64rem;
  }

  .field input,
  .field select,
  .field textarea {
    padding: 0.72rem 0.75rem;
    font-size: 0.93rem;
  }

  .footer-brand-row {
    padding-bottom: 0.22rem;
  }

  .footer-bottom {
    row-gap: 0.22rem;
    padding-top: 0.26rem;
  }

  .footer-legal {
    gap: 0.38rem 0.72rem;
  }

  .footer-legal a {
    font-size: 0.68rem;
  }

  .footer-contact {
    gap: 0.3rem 0.42rem;
  }

  .footer-contact a {
    min-height: 1.62rem;
    padding: 0.15rem 0.46rem;
    font-size: 0.62rem;
  }

  .footer-social {
    margin-top: -0.14rem;
  }

  .social-list {
    gap: 0.46rem;
  }

  .footer-bottom p {
    font-size: 0.68rem;
    max-width: 30ch;
  }
}

@media (max-width: 1120px) {
  .contact-hero-metrics {
    grid-template-columns: 1fr 1fr;
  }

  .contact-faq-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 980px) {
  .contact-framework-grid {
    grid-template-columns: 1fr;
  }

  .contact-info-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .services-hero-description,
  .services-intro-copy p,
  .services-breakdown-head p,
  .services-process-intro,
  .services-assurance-head p,
  .services-page .page-cta-inner p,
  .services-assurance-grid p {
    font-size: 0.92rem;
    line-height: 1.58;
  }

  .services-hero-highlights {
    gap: 0.42rem 0.5rem;
  }

  .services-hero-highlights li {
    font-size: 0.62rem;
    letter-spacing: 0.08em;
    padding: 0.42rem 0.56rem;
  }

  .services-hero-note {
    font-size: 0.68rem;
    letter-spacing: 0.09em;
  }

  .services-gap-media .site-shell {
    justify-content: center;
    grid-template-columns: 1fr;
  }

  .services-gap-video {
    margin-inline: auto;
    width: 100%;
  }

  .services-hero-reel {
    width: min(58vw, 255px);
    justify-self: center;
  }

  .contact-model-wrap {
    display: flex;
    justify-content: center;
  }

  .contact-model-scene {
    margin-inline: auto;
  }

  .contact-hero-metrics {
    grid-template-columns: 1fr;
    gap: 0.62rem;
  }

  .contact-hero-metric {
    min-height: 0;
    padding-top: 0.62rem;
    gap: 0.18rem;
  }

  .contact-hero-metric-value {
    font-size: 0.92rem;
  }

  .contact-points li {
    font-size: 0.9rem;
  }

  .contact-framework-card p,
  .contact-faq-list p {
    font-size: 0.9rem;
  }

  body.contact-route .contact-intro .section-kicker,
  body.contact-route .contact-points,
  body.contact-route .contact-framework-section,
  body.contact-route .contact-faq-section,
  body.contact-route .contact-page .page-hero {
    display: none;
  }

  body.contact-route .contact-form-section {
    padding-top: clamp(5rem, 10vh, 6rem);
    padding-bottom: clamp(1.1rem, 4vw, 1.6rem);
  }

  body.contact-route .contact-layout {
    gap: 0.72rem;
  }

  body.contact-route .contact-intro {
    gap: 0.6rem;
    padding-top: 0;
  }

  body.contact-route .contact-intro h2 {
    font-size: clamp(1.24rem, 6.4vw, 1.62rem);
    line-height: 1.06;
  }

  body.contact-route .contact-intro p {
    font-size: 0.86rem;
    line-height: 1.5;
  }

  body.contact-route .contact-model-wrap {
    padding-block: 0.18rem 0.36rem;
  }

  body.contact-route .contact-model-scene {
    width: min(74vw, 248px);
    aspect-ratio: 1;
    margin-inline: auto;
  }

  body.contact-route .contact-form {
    padding: 0.8rem;
    gap: 0.68rem;
    border-radius: 14px;
  }

  body.contact-route .field {
    gap: 0.42rem;
  }

  body.contact-route .field span {
    font-size: 0.6rem;
    letter-spacing: 0.1em;
  }

  body.contact-route .field input,
  body.contact-route .field select,
  body.contact-route .field textarea {
    min-height: 42px;
    padding: 0.68rem 0.72rem;
    font-size: 0.9rem;
  }

  body.contact-route .field textarea {
    min-height: 92px;
  }

  body.contact-route .contact-form .btn-outline {
    min-height: 42px;
    font-size: 0.64rem;
    padding: 0.56rem 0.92rem;
  }
}

/* Work page hero stability overrides for phone/tablet */
@media (max-width: 980px) {
  .work-editorial-meta {
    margin-top: 0;
    position: relative;
    z-index: 3;
  }

  .work-meta-intro {
    font-size: clamp(0.98rem, 3.8vw, 1.34rem);
    line-height: 1.18;
    text-wrap: pretty;
  }

  .work-editorial-stage {
    margin-top: clamp(1rem, 3vw, 1.35rem);
    min-height: clamp(320px, 64vw, 520px);
    overflow: hidden;
    padding-inline: 0;
  }

  .work-editorial-frame {
    width: min(70vw, 360px);
    min-width: 0;
  }

  .work-editorial-title {
    inset: 0;
    left: auto;
    top: auto;
    transform: none;
    width: 100%;
    padding-inline: clamp(0.45rem, 2.4vw, 1.15rem);
    align-content: center;
    justify-items: center;
    font-size: clamp(1rem, 6.2vw, 3.25rem);
    line-height: 0.92;
  }
}

@media (max-width: 768px) {
  .work-meta-intro {
    font-size: clamp(0.92rem, 4.2vw, 1.2rem);
    line-height: 1.2;
  }

  .work-editorial-meta {
    margin-bottom: 1.8rem;
  }

  .work-editorial-stage {
    margin-top: clamp(0.9rem, 2.9vw, 1.05rem);
    min-height: clamp(270px, 68vw, 420px);
    overflow: visible;
  }

  .work-editorial-frame {
    width: min(74vw, 318px);
    z-index: 1;
  }

  .work-editorial-title {
    left: 50%;
    top: 50%;
    right: auto;
    bottom: auto;
    transform: translate(-50%, -50%);
    z-index: 2;
    width: 108%;
    padding-inline: 0.45rem;
    font-size: clamp(1rem, 7.4vw, 2.35rem);
    line-height: 0.94;
  }
}

@media (max-width: 640px) {
  .work-editorial-hero {
    padding-top: clamp(5rem, 9vh, 5.7rem);
  }

  .work-editorial-meta {
    margin-bottom: clamp(2.8rem, 10vw, 3.4rem);
  }

  .work-editorial-stage {
    margin-top: 0;
    min-height: clamp(258px, 74vw, 360px);
  }

  .work-editorial-frame {
    width: min(81vw, 294px);
    z-index: 1;
  }

  .work-editorial-title {
    left: 50%;
    top: 50%;
    right: auto;
    bottom: auto;
    transform: translate(-50%, -50%);
    z-index: 2;
    width: 112%;
    padding-inline: 0.4rem;
    font-size: clamp(0.96rem, 7.4vw, 2rem);
    line-height: 0.94;
  }

  .work-stream-head {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
    gap: 0.8rem;
  }

  .work-word-stack {
    margin-left: auto;
    text-align: right;
    font-size: clamp(1.85rem, 15.5vw, 3.05rem);
    line-height: 0.84;
  }

  .work-editorial-title .outline {
    -webkit-text-stroke: 0.9px rgba(255, 255, 255, 0.62);
    text-stroke: 0.9px rgba(255, 255, 255, 0.62);
  }
}

@media (max-width: 480px) {
  .work-editorial-meta {
    margin-bottom: clamp(2.5rem, 12vw, 3rem);
  }

  .work-editorial-stage {
    margin-top: 0;
    min-height: clamp(240px, 78vw, 312px);
  }

  .work-editorial-frame {
    width: min(84vw, 266px);
    z-index: 1;
  }

  .work-editorial-title {
    left: 50%;
    top: 50%;
    right: auto;
    bottom: auto;
    transform: translate(-50%, -50%);
    z-index: 2;
    width: 116%;
    padding-inline: 0.34rem;
    font-size: clamp(0.84rem, 7vw, 1.56rem);
    line-height: 0.96;
  }

  .work-editorial-title .outline {
    -webkit-text-stroke: 0.72px rgba(255, 255, 255, 0.62);
    text-stroke: 0.72px rgba(255, 255, 255, 0.62);
  }
}

/* Services page: black canvas + stable mobile responsiveness */
.services-page,
.services-page .page-hero,
.services-page .services-editorial-intro,
.services-page .services-gap-media,
.services-page .services-breakdown,
.services-page .process-section,
.services-page .services-assurance,
.services-page .page-cta {
  background-color: #000;
  background-image: none;
}

.services-page .services-hero-reel,
.services-page .services-hero-highlights li,
.services-page .services-gap-video,
.services-page .service-row,
.services-page .service-row:hover,
.services-page .service-media,
.services-page .services-assurance-grid article,
.services-page .process-strip li,
.services-page .page-cta-inner {
  background-color: #000;
  background-image: none;
}

.services-page .page-cta {
  border-top: 0;
}

.services-page .page-cta-inner {
  border: 0;
  box-shadow: none;
  background-color: #000;
  background-image: none;
}

@media (max-width: 980px) {
  .services-page .page-hero {
    padding-top: clamp(5.3rem, 10.5vh, 6.7rem);
    padding-bottom: clamp(2rem, 5.8vw, 2.9rem);
  }

  .services-hero-layout {
    grid-template-columns: 1fr;
    row-gap: 1.15rem;
  }

  .services-hero-reel {
    width: min(70vw, 318px);
    justify-self: center;
  }

  .services-intro-layout {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .services-gap-video {
    height: clamp(198px, 37vw, 258px);
  }
}

@media (max-width: 768px) {
  .services-hero-copy {
    gap: 0.78rem;
  }

  .services-hero-reel {
    width: min(76vw, 300px);
  }

  .services-gap-video {
    height: clamp(184px, 49vw, 236px);
    margin-bottom: 1rem;
  }

  .service-row {
    gap: 0.78rem;
    padding: 0.78rem;
  }

  .service-content {
    padding: 0.94rem;
  }

  .service-content h3 {
    font-size: clamp(1.14rem, 5.2vw, 1.56rem);
  }

  .service-media {
    aspect-ratio: 168 / 106;
    min-height: 0;
  }
}

@media (max-width: 640px) {
  .services-hero-reel {
    width: min(82vw, 282px);
  }

  .services-gap-video {
    height: clamp(166px, 56vw, 216px);
  }

  .services-breakdown-head h2,
  .services-intro-layout h2 {
    max-width: none;
  }

  .service-row {
    padding: 0.72rem;
  }

  .service-features {
    gap: 0.56rem;
  }
}

@media (max-width: 480px) {
  .services-hero-reel {
    width: min(88vw, 262px);
  }

  .services-gap-video {
    height: clamp(152px, 58vw, 186px);
    margin-bottom: 0.9rem;
  }

  .service-content h3 {
    font-size: clamp(1.04rem, 5.9vw, 1.3rem);
  }

  .service-content > p,
  .service-features li,
  .services-page .page-cta-inner p,
  .services-assurance-grid p,
  .services-process-intro {
    font-size: 0.89rem;
    line-height: 1.56;
  }
}

/* Services page mobile-only optimization (content cleanup + tighter layout) */
@media (max-width: 768px) {
  .services-page .page-section {
    padding-block: clamp(2.1rem, 6.5vw, 3.1rem);
  }

  .services-page .page-hero {
    padding-top: clamp(4.8rem, 10vh, 6rem);
    padding-bottom: clamp(1.5rem, 4.6vw, 2.2rem);
  }

  .services-page .services-breakdown-head,
  .services-page .services-assurance-head {
    gap: 0.56rem;
  }

  .services-page .service-stack {
    gap: 0.82rem;
  }

  .services-page .services-assurance-grid {
    gap: 0.72rem;
  }

  .services-page .process-strip {
    gap: 0.62rem;
  }
}

@media (max-width: 640px) {
  .services-page .services-hero-highlights,
  .services-page .services-hero-note,
  .services-page .services-process-intro {
    display: none;
  }

  .services-page .services-intro-copy p:last-child {
    display: none;
  }

  .services-page .service-features li:nth-child(n + 4) {
    display: none;
  }

  .services-page .service-content {
    gap: 0.68rem;
  }

  .services-page .service-features {
    padding-top: 0.66rem;
    gap: 0.48rem;
  }
}

@media (max-width: 480px) {
  .services-page .services-editorial-intro {
    padding-top: 0.35rem;
    padding-bottom: 1.95rem;
  }

  .services-page .services-intro-layout {
    gap: 0.78rem;
  }

  .services-page .services-breakdown-head p,
  .services-page .services-assurance-head p,
  .services-page .service-content > p,
  .services-page .service-features li {
    font-size: 0.86rem;
    line-height: 1.5;
  }
}

@media (max-width: 640px) {
  .work-stream-head {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 0.75rem;
  }

  .work-stream-intro {
    max-width: none;
  }

  .work-stream-intro p {
    font-size: 0.88rem;
    line-height: 1.54;
  }

  .work-word-stack {
    margin-left: auto;
    align-self: flex-end;
    text-align: right;
  }

  .work-stream-summary {
    font-size: 0.84rem;
    line-height: 1.5;
  }
}

/* Final work-page mobile optimization */
@media (max-width: 768px) {
  .work-editorial-page .page-section {
    padding-block: clamp(2.2rem, 6vw, 3rem);
  }

  .work-editorial-page .work-editorial-hero {
    padding-top: clamp(4.95rem, 8.8vh, 5.7rem);
    padding-bottom: clamp(2.2rem, 6vw, 3.1rem);
  }

  .work-editorial-page .work-meta-intro {
    font-size: clamp(1.02rem, 4.9vw, 1.3rem);
    line-height: 1.16;
    text-wrap: pretty;
  }

  .work-editorial-page .work-editorial-stage {
    min-height: clamp(258px, 72vw, 398px);
  }

  .work-editorial-page .work-editorial-frame {
    width: min(80vw, 322px);
  }

  .work-editorial-page .work-editorial-title {
    font-size: clamp(0.9rem, 7vw, 2rem);
    line-height: 0.92;
    transform: translate(-50%, -52%);
  }

  .work-editorial-page .work-stream-head {
    align-items: flex-start;
    gap: 0.68rem;
  }

  .work-editorial-page .work-word-stack {
    font-size: clamp(1.9rem, 14.5vw, 3.2rem);
    line-height: 0.83;
  }

  .work-editorial-page .work-stream-grid {
    row-gap: 1.4rem;
  }

  .work-editorial-page .work-stream-link {
    gap: 0.72rem;
  }

  .work-editorial-page .work-stream-media {
    aspect-ratio: 1.26;
    min-height: 0;
  }

  .work-editorial-page .work-stream-copy {
    gap: 0.56rem;
  }

  .work-editorial-page .work-stream-index {
    font-size: 0.78rem;
  }

  .work-editorial-page .work-stream-copy h3 {
    font-size: clamp(1rem, 4.8vw, 1.24rem);
    line-height: 1.02;
  }

  .work-editorial-page .work-stream-category {
    margin-top: 0.16rem;
    font-size: 0.6rem;
  }
}

@media (max-width: 640px) {
  .work-editorial-page .work-editorial-hero {
    padding-top: clamp(4.7rem, 8.4vh, 5.3rem);
    padding-bottom: clamp(1.9rem, 5.4vw, 2.5rem);
  }

  .work-editorial-page .work-meta-intro {
    font-size: clamp(0.95rem, 5.3vw, 1.14rem);
    line-height: 1.2;
  }

  .work-editorial-page .work-editorial-stage {
    min-height: clamp(236px, 76vw, 330px);
  }

  .work-editorial-page .work-editorial-frame {
    width: min(84vw, 292px);
  }

  .work-editorial-page .work-editorial-title {
    font-size: clamp(0.8rem, 7.5vw, 1.6rem);
    transform: translate(-50%, -51%);
  }

  .work-editorial-page .work-stream-intro,
  .work-editorial-page .work-stream-summary,
  .work-editorial-page #work-cta-title + p {
    display: none;
  }

  .work-editorial-page .work-stream-grid {
    row-gap: 1.2rem;
  }

  .work-editorial-page .work-stream-media {
    aspect-ratio: 1.18;
    min-height: 0;
  }

  .detail-copy h2,
  .detail-meta p {
    line-height: 1.3;
  }

  .detail-copy p,
  .detail-meta p {
    font-size: 0.9rem;
    line-height: 1.58;
  }

  .case-video-media {
    min-height: 0;
    aspect-ratio: 1.18;
    border: 0;
    border-radius: 0;
    background: transparent;
  }
}

@media (max-width: 480px) {
  .work-editorial-page .work-editorial-stage {
    min-height: clamp(212px, 79vw, 286px);
  }

  .work-editorial-page .work-editorial-frame {
    width: min(86vw, 268px);
  }

  .work-editorial-page .work-editorial-title {
    font-size: clamp(0.72rem, 7.6vw, 1.36rem);
    line-height: 0.94;
  }

  .work-editorial-page .work-stream-copy {
    grid-template-columns: 2rem 1fr;
    gap: 0.48rem;
  }

  .work-editorial-page .work-stream-copy h3 {
    font-size: clamp(0.92rem, 5vw, 1.08rem);
  }

  .work-editorial-page .work-stream-category {
    font-size: 0.56rem;
    letter-spacing: 0.08em;
  }

  .work-editorial-page .work-stream-media {
    aspect-ratio: 1.12;
  }

  .case-video-media {
    aspect-ratio: 1.12;
  }
}

/* About page: keep curved process path on tablet/mobile (laptop style continuity) */
@media (max-width: 980px) {
  .about-editorial-page .about-process-map {
    min-height: clamp(680px, 112vw, 860px);
    display: block;
    width: min(100%, 760px);
    margin-inline: auto;
  }

  .about-editorial-page .about-process-line {
    display: block;
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
  }

  .about-editorial-page .about-process-step {
    position: absolute;
    width: auto;
    max-width: 22ch;
    left: auto;
    top: auto;
    transform: none;
    padding: 0.72rem 0.8rem 0.68rem;
    border: 1px solid rgba(255, 255, 255, 0.14);
  }

  .about-editorial-page .about-step-process {
    left: 50.2%;
    top: -2.8%;
    transform: translateX(-50%);
  }

  .about-editorial-page .about-step-01 {
    left: 8%;
    top: 30%;
  }

  .about-editorial-page .about-step-02 {
    left: 44%;
    top: 47%;
  }

  .about-editorial-page .about-step-03 {
    left: 66%;
    top: 61%;
  }

  .about-editorial-page .about-step-04 {
    left: 44%;
    top: 88%;
    right: auto;
  }
}

@media (max-width: 640px) {
  .about-editorial-page .about-process-map {
    min-height: clamp(660px, 170vw, 860px);
    width: 100%;
  }

  .about-editorial-page .about-process-line path {
    stroke: rgba(214, 224, 145, 0.42);
    stroke-width: 2.15;
    filter: drop-shadow(0 0 5px rgba(210, 222, 137, 0.2));
  }

  .about-editorial-page .about-process-step {
    position: absolute;
    max-width: 16.5ch;
    padding: 0.56rem 0.62rem 0.52rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background:
      linear-gradient(155deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.02) 100%),
      rgba(8, 8, 8, 0.66);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.08),
      0 8px 18px rgba(0, 0, 0, 0.22);
  }

  .about-editorial-page .about-process-step::before {
    width: 0.34rem;
    height: 0.34rem;
    box-shadow: 0 0 8px rgba(214, 224, 145, 0.4);
  }

  .about-editorial-page .about-process-step h3,
  .about-editorial-page .about-step-process .about-step-label {
    font-size: clamp(1.02rem, 4.9vw, 1.3rem);
    line-height: 1;
    letter-spacing: -0.016em;
  }

  .about-editorial-page .about-process-step p {
    font-size: 0.78rem;
    line-height: 1.42;
    margin-top: 0.35rem;
    color: rgba(255, 255, 255, 0.82);
  }

  .about-editorial-page .about-step-number {
    font-size: clamp(0.88rem, 3.8vw, 1rem);
    margin-bottom: 0.24rem;
    color: rgba(214, 224, 145, 0.95);
  }

  .about-editorial-page .about-step-process {
    top: 0.2%;
    padding-inline: 0.7rem;
    --dot-x: 50%;
    --dot-y: 100%;
  }

  .about-editorial-page .about-step-01 {
    left: 2%;
    top: 31%;
    --dot-x: 100%;
    --dot-y: 48%;
  }

  .about-editorial-page .about-step-02 {
    left: 39%;
    top: 48%;
    --dot-x: 0%;
    --dot-y: 56%;
  }

  .about-editorial-page .about-step-03 {
    left: 63%;
    top: 63%;
    --dot-x: 0%;
    --dot-y: 60%;
  }

  .about-editorial-page .about-step-04 {
    left: 39%;
    top: 88.5%;
    --dot-x: 100%;
    --dot-y: 54%;
  }
}

@media (max-width: 480px) {
  .about-editorial-page .about-process-map {
    min-height: clamp(700px, 198vw, 900px);
  }

  .about-editorial-page .about-process-line path {
    stroke-width: 2;
    filter: drop-shadow(0 0 4px rgba(210, 222, 137, 0.22));
  }

  .about-editorial-page .about-process-step {
    max-width: 15ch;
    padding: 0.5rem 0.54rem 0.48rem;
    border-radius: 10px;
  }

  .about-editorial-page .about-step-process {
    top: 0.6%;
  }

  .about-editorial-page .about-step-01 {
    left: 1%;
    top: 31.5%;
    --dot-y: 50%;
  }

  .about-editorial-page .about-step-02 {
    left: 37%;
    top: 49%;
    --dot-y: 58%;
  }

  .about-editorial-page .about-step-03 {
    left: 61%;
    top: 64%;
    --dot-y: 61%;
  }

  .about-editorial-page .about-step-04 {
    left: 37%;
    top: 89%;
    --dot-y: 56%;
  }
}

/* About process: keep laptop-like path composition across all mobile devices */
@media (max-width: 980px) {
  .about-editorial-page .about-process-map {
    display: block;
    width: min(100%, 900px);
    margin-inline: auto;
    min-height: clamp(740px, 120vw, 940px);
  }

  .about-editorial-page .about-process-line {
    display: block;
  }

  .about-editorial-page .about-process-line path {
    stroke: rgba(214, 224, 145, 0.36);
    stroke-width: 2.2;
    filter: drop-shadow(0 0 6px rgba(210, 222, 137, 0.18));
  }

  .about-editorial-page .about-process-step {
    position: absolute;
    max-width: clamp(13.5ch, 34vw, 21ch);
    padding: 0.72rem 0.8rem 0.68rem;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background:
      linear-gradient(155deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.02) 100%),
      rgba(8, 8, 8, 0.64);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.08),
      0 10px 22px rgba(0, 0, 0, 0.2);
  }

  .about-editorial-page .about-process-step h3,
  .about-editorial-page .about-step-process .about-step-label {
    font-size: clamp(1rem, 2.1vw, 1.9rem);
    line-height: 1;
    letter-spacing: -0.02em;
  }

  .about-editorial-page .about-process-step p {
    margin-top: 0.42rem;
    font-size: clamp(0.74rem, 1.2vw, 0.92rem);
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.82);
  }

  .about-editorial-page .about-step-number {
    font-size: clamp(0.84rem, 1.1vw, 1.04rem);
    margin-bottom: 0.3rem;
  }

  .about-editorial-page .about-step-process {
    left: 50.2%;
    top: -2.8%;
    transform: translateX(-50%);
  }

  .about-editorial-page .about-step-01 {
    left: 12%;
    top: 30%;
  }

  .about-editorial-page .about-step-02 {
    left: 45%;
    top: 47%;
  }

  .about-editorial-page .about-step-03 {
    left: 73%;
    top: 61%;
  }

  .about-editorial-page .about-step-04 {
    left: 45%;
    top: 88%;
  }
}

@media (max-width: 640px) {
  .about-editorial-page .about-process-path-desktop {
    display: none;
  }

  .about-editorial-page .about-process-path-mobile {
    display: block;
  }

  .about-editorial-page .about-process-map {
    min-height: clamp(760px, 200vw, 1020px);
  }

  .about-editorial-page .about-process-step {
    width: min(42vw, 166px);
    max-width: none;
    padding: 0.46rem 0.52rem 0.42rem;
    border-radius: 10px;
  }

  .about-editorial-page .about-process-step h3,
  .about-editorial-page .about-step-process .about-step-label {
    font-size: clamp(0.84rem, 3.9vw, 1.02rem);
    line-height: 1.04;
    letter-spacing: -0.012em;
  }

  .about-editorial-page .about-step-number {
    font-size: clamp(0.74rem, 3.2vw, 0.9rem);
    margin-bottom: 0.16rem;
  }

  .about-editorial-page .about-process-step p {
    margin-top: 0.22rem;
    font-size: 0.66rem;
    line-height: 1.34;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .about-editorial-page .about-step-process {
    left: 50%;
    top: 1.2%;
    width: min(31vw, 118px);
    min-width: 88px;
    padding: 0.34rem 0.44rem;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
  }

  .about-editorial-page .about-step-process .about-step-label {
    width: 100%;
    text-align: center;
    line-height: 1.02;
  }

  .about-editorial-page .about-step-01 {
    left: 4%;
    top: 31%;
  }

  .about-editorial-page .about-step-02 {
    left: 56%;
    top: 47.5%;
  }

  .about-editorial-page .about-step-03 {
    left: 7%;
    top: 64%;
  }

  .about-editorial-page .about-step-04 {
    left: 55%;
    top: 81.5%;
  }
}

@media (max-width: 480px) {
  .about-editorial-page .about-process-map {
    min-height: clamp(760px, 224vw, 1060px);
  }

  .about-editorial-page .about-process-step {
    width: min(43vw, 152px);
    padding: 0.42rem 0.46rem 0.4rem;
    border-radius: 9px;
  }

  .about-editorial-page .about-process-step h3,
  .about-editorial-page .about-step-process .about-step-label {
    font-size: clamp(0.8rem, 4vw, 0.94rem);
  }

  .about-editorial-page .about-process-step p {
    font-size: 0.62rem;
    line-height: 1.3;
  }

  .about-editorial-page .about-step-process {
    left: 50%;
    top: 1.6%;
    width: min(33vw, 108px);
    min-width: 82px;
    padding: 0.32rem 0.4rem;
  }

  .about-editorial-page .about-step-01 {
    left: 5%;
    top: 32%;
  }

  .about-editorial-page .about-step-02 {
    left: 57%;
    top: 48%;
  }

  .about-editorial-page .about-step-03 {
    left: 8%;
    top: 64.8%;
  }

  .about-editorial-page .about-step-04 {
    left: 56%;
    top: 82.6%;
  }
}

.assistant-page-main {
  background: #000;
}

.assistant-page-hero {
  background:
    radial-gradient(88% 92% at 50% 0%, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0) 62%),
    #000;
  border-bottom: 1px solid var(--color-line-soft);
}

.assistant-page-shell {
  max-width: 1120px;
}

.assistant-page-widget {
  background: #000;
  padding-top: clamp(1.2rem, 2.8vw, 2rem);
}

.assistant-page-widget #scaledek-assistant-root {
  width: 100%;
}

.assistant-page-widget-only {
  padding-top: clamp(6.2rem, 12vh, 8rem);
  padding-bottom: clamp(2rem, 4.5vw, 3rem);
}

@media (max-width: 960px) {
  body.assistant-route {
    overflow: hidden;
    min-height: 100dvh;
  }

  body.assistant-route .site-footer {
    display: none;
  }

  body.assistant-route .assistant-page-main {
    min-height: 100dvh;
    height: 100dvh;
    overflow: hidden;
  }

  body.assistant-route .assistant-page-widget-only {
    min-height: 100dvh;
    padding-top: 4.85rem;
    padding-bottom: 0;
  }

  body.assistant-route .assistant-page-shell {
    width: min(1280px, 100% - 0.7rem);
    height: calc(100dvh - 4.85rem);
    max-height: calc(100dvh - 4.85rem);
  }

  body.assistant-route .assistant-page-widget #scaledek-assistant-root {
    height: 100%;
  }
}

@media (max-width: 640px) {
  body.assistant-route .assistant-page-widget-only {
    padding-top: 4.55rem;
  }

  body.assistant-route .assistant-page-shell {
    width: min(1280px, 100% - 0.45rem);
    height: calc(100dvh - 4.55rem);
    max-height: calc(100dvh - 4.55rem);
  }
}

.assistant-fab {
  position: fixed;
  right: clamp(0.8rem, 2.2vw, 1.4rem);
  bottom: clamp(1.35rem, 3vw, 2.1rem);
  z-index: 120;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 0.24rem;
  min-width: 76px;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  padding: 0;
  text-decoration: none;
  transition:
    transform var(--dur-fast) var(--ease-premium),
    opacity var(--dur-fast) ease;
}

.assistant-fab:hover,
.assistant-fab:focus-visible {
  transform: translateY(-2px);
}

.assistant-fab-talk {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 0.56rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  line-height: 1;
  color: rgba(255, 255, 255, 0.96);
  text-shadow: none;
  white-space: nowrap;
  margin-bottom: 0.2rem;
  padding: 0.36rem 0.62rem 0.34rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.18) 0%, rgba(255, 255, 255, 0.04) 100%),
    rgba(10, 12, 18, 0.84);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.15),
    0 10px 24px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: transform var(--dur-fast) var(--ease-premium);
}

.assistant-fab-talk::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -0.27rem;
  width: 0.52rem;
  height: 0.52rem;
  transform: translateX(-50%) rotate(45deg);
  border-right: 1px solid rgba(255, 255, 255, 0.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(10, 12, 18, 0.84);
}

.assistant-fab:hover .assistant-fab-talk,
.assistant-fab:focus-visible .assistant-fab-talk {
  transform: translateY(-1px);
}

.assistant-fab-face {
  position: relative;
  width: 44px;
  height: 36px;
  border-radius: 38% 38% 42% 42% / 42% 42% 38% 38%;
  border: 1px solid rgba(255, 255, 255, 0.72);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.05) 62%),
    #141821;
  box-shadow:
    inset 0 1px 4px rgba(255, 255, 255, 0.22),
    0 8px 14px rgba(0, 0, 0, 0.42);
  transition: transform var(--dur-fast) var(--ease-premium);
}

.assistant-fab:hover .assistant-fab-face,
.assistant-fab:focus-visible .assistant-fab-face {
  transform: scale(1.06);
}

.assistant-fab-eye {
  position: absolute;
  top: 33%;
  width: 17%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 8px rgba(255, 255, 255, 0.38);
  transform-origin: 50% 50%;
  animation: assistantFabBlink 4.6s infinite ease-in-out;
}

.assistant-fab-eye:first-child {
  left: 26%;
}

.assistant-fab-eye:nth-child(2) {
  right: 26%;
  animation-delay: 140ms;
}

.assistant-fab-mouth {
  position: absolute;
  left: 50%;
  bottom: 18%;
  width: 32%;
  height: 16%;
  transform: translateX(-50%);
  border-radius: 0 0 999px 999px;
  border: 0;
  border-bottom: 2px solid rgba(255, 255, 255, 0.95);
  opacity: 0.95;
}

body.menu-open .assistant-fab {
  opacity: 0;
  transform: translateY(8px);
  pointer-events: none;
}

@media (max-width: 640px) {
  .assistant-fab {
    right: 0.75rem;
    bottom: 1.3rem;
    min-width: 70px;
    gap: 0.2rem;
  }

  .assistant-fab-talk {
    font-size: 0.52rem;
    letter-spacing: 0.09em;
    padding: 0.34rem 0.56rem 0.32rem;
  }

  .assistant-fab-face {
    width: 40px;
    height: 32px;
  }
}

/* Responsive-only stability pass */
img,
video,
canvas,
svg {
  max-width: 100%;
}

body,
body *:not(input):not(textarea):not(select):not(option):not([contenteditable=""]):not([contenteditable="true"]):not([contenteditable="plaintext-only"]) {
  -webkit-user-select: none;
  user-select: none;
}

input,
textarea,
select,
option,
[contenteditable=""],
[contenteditable="true"],
[contenteditable="plaintext-only"] {
  -webkit-user-select: text;
  user-select: text;
}

@media (max-width: 1120px) {
  html,
  body {
    overflow-x: hidden;
  }

  .site-shell,
  .page-hero-inner,
  .about-editorial-shell,
  .about-team-shell,
  .services-hero-layout,
  .services-intro-layout,
  .services-gap-media .site-shell,
  .service-row,
  .home-work-curated-layout,
  .contact-layout,
  .contact-faq-layout,
  .detail-overview-layout,
  .founder-feature,
  .about-intro-layout,
  .work-stream-link,
  .work-stream-copy {
    min-width: 0;
  }

  .home-work-curated-left,
  .home-work-curated-right,
  .work-stream-copy-body,
  .contact-intro,
  .detail-copy,
  .detail-meta,
  .founder-feature-copy {
    min-width: 0;
  }

  .home-work-preview,
  .services-gap-video,
  .services-hero-reel,
  .work-editorial-frame,
  .case-video-media,
  .contact-model-scene,
  .founder-feature-media,
  .team-member-card {
    max-width: 100%;
  }
}

@media (max-width: 980px) {
  .about-intro-layout,
  .services-gap-media .site-shell,
  .home-work-curated-layout,
  .detail-overview-layout,
  .contact-layout,
  .contact-faq-layout {
    grid-template-columns: 1fr;
  }

  .home-work-preview,
  .services-gap-video,
  .contact-model-scene {
    margin-inline: auto;
  }
}

@media (max-width: 768px) {
  .contact-hero-metrics,
  .contact-framework-grid,
  .values-grid,
  .detail-grid,
  .contact-info-grid {
    grid-template-columns: 1fr;
  }

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

  .home-work-item {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .home-work-item-lead,
  .home-work-item-aside {
    min-width: 0;
  }
}

@media (max-width: 640px) {
  .home-work-item {
    grid-template-columns: 1fr;
  }

  .home-work-item-aside {
    justify-items: start;
  }

  .work-stream-link,
  .founder-feature-copy,
  .contact-form,
  .service-content {
    min-width: 0;
  }
}

@keyframes assistantFabBlink {
  0%,
  45%,
  48%,
  100% {
    transform: scaleY(1);
  }
  46.5% {
    transform: scaleY(0.12);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
