

:root {
  --color-bg-canvas: #030304;
  --color-bg-footer: #0e0f11;
  --color-text-primary: #f7f7fa;
  --color-text-heading: #f5f5f5;
  --color-text-secondary: #858a96;
  --color-text-body: #abadb5;
  --color-divider: #262930;
  --color-accent: #ff6a00;
  --color-accent-on-light: #9a3400;
  --color-action-primary-bg: #ffffff;
  --color-action-primary-text: #080808;
  --layout-gutter-desktop: 72px;
  --layout-gutter-tablet: 40px;
  --layout-gutter-mobile: 20px;
  --radius-pill: 999px;
}

* {
  box-sizing: border-box;
}

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

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  background: var(--color-bg-canvas);
  color: var(--color-text-primary);
  font-family: "Inter Variable", "Inter", Arial, sans-serif;
  text-rendering: geometricPrecision;
}

.cursor-trace {
  position: fixed;
  z-index: 9000;
  inset: 0;
  display: block;
  width: 100vw;
  height: 100vh;
  opacity: 0;
  pointer-events: none;
  transition: opacity 80ms linear;
}

.cursor-trace.is-visible {
  opacity: 1;
}

@media (pointer: fine) and (min-width: 1024px) and (prefers-reduced-motion: no-preference) {
  html,
  body,
  a,
  button {
    cursor: none;
  }
}

[data-motion-heading] {
  transform-origin: left bottom;
  will-change: transform, clip-path, opacity;
}

.motion-letter {
  display: inline-block;
  transform-origin: left bottom;
}

.motion-word {
  display: inline-flex !important;
  white-space: nowrap;
}

.motion-word:not(:last-child) {
  margin-right: 0.28em;
}

.hero-title .motion-letter {
  display: inline-block;
}

.hero-title em .motion-letter {
  margin-bottom: -0.24em;
  padding-bottom: 0.24em;
}

.native-typewriter > span {
  --typewriter-steps: 18;
  display: block;
  opacity: 0;
  clip-path: inset(0 100% 0 0);
  filter: brightness(0.28);
  animation: native-typewriter-reveal 1.5s steps(var(--typewriter-steps), end) forwards;
  will-change: clip-path, opacity, filter;
}

.native-typewriter > span:nth-child(2) {
  --typewriter-steps: 22;
  animation-delay: 1.2s;
}

.native-typewriter > span:nth-child(3) {
  --typewriter-steps: 24;
  animation-delay: 2.4s;
}

@keyframes native-typewriter-reveal {
  0% {
    opacity: 0.18;
    clip-path: inset(0 100% 0 0);
    filter: brightness(0.28);
  }

  100% {
    opacity: 1;
    clip-path: inset(0 0 0 0);
    filter: brightness(1);
  }
}

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

.studio-setup-message {
  display: flex;
  min-height: 100vh;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 18px;
  padding: clamp(24px, 8vw, 120px);
}

.studio-setup-message h1,
.studio-setup-message p {
  max-width: 720px;
  margin: 0;
}

.studio-setup-message h1 {
  font-size: clamp(36px, 6vw, 72px);
  line-height: 1.05;
}

.studio-setup-message p {
  color: var(--color-text-body);
  font-size: 18px;
  line-height: 1.6;
}

.studio-setup-message code {
  padding: 14px 16px;
  border-radius: 10px;
  background: #19191c;
  color: #fff;
}

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

.button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border-radius: var(--radius-pill);
  font-size: 14px;
  font-weight: 500;
  transition: transform 180ms ease, background-color 180ms ease, color 180ms ease;
}

.button-primary {
  background: var(--color-action-primary-bg);
  color: var(--color-action-primary-text);
}

.button-primary:hover {
  transform: translateY(-2px);
  background: var(--color-accent);
}

:where(a[href], button, [role="button"], [tabindex]:not([tabindex="-1"])):focus-visible {
  outline: 3px solid var(--color-accent);
  outline-offset: 4px;
}

@media (forced-colors: active) {
  :where(a[href], button, [role="button"], [tabindex]:not([tabindex="-1"])):focus-visible {
    outline-color: CanvasText;
  }
}

.site-header {
  --header-pointer-x: 50%;
  --header-pointer-y: 50%;
  position: sticky;
  z-index: 90;
  top: 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  width: 100%;
  height: 88px;
  align-items: center;
  padding: 0 clamp(28px, 1.8vw, 36px);
  overflow: hidden;
  background: transparent;
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
  isolation: isolate;
  transition: transform 320ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

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

.site-header::before {
  position: absolute;
  z-index: 0;
  inset: 0;
  background: radial-gradient(circle 190px at var(--header-pointer-x) var(--header-pointer-y), rgba(255, 106, 0, 0.16), transparent 74%);
  content: "";
  opacity: 0;
  pointer-events: none;
}

.site-header > * {
  position: relative;
  z-index: 1;
}

.home-page .site-header {
  background: transparent;
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
}

.home-page .site-header::before {
  opacity: 0;
}

.home-page main {
  margin-top: -88px;
}

.home-page .hero {
  padding-top: 177px;
}

.identity-signature {
  display: inline-flex;
  min-width: 0;
  align-items: center;
  gap: 12px;
  color: var(--color-text-primary);
}

.site-header > .identity-signature {
  grid-column: 1;
  justify-self: start;
}

.identity-avatar {
  position: relative;
  display: block;
  width: 48px;
  height: 48px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: url("../../favicon-avatar-transparent.png") center / 106% 106% no-repeat;
}

.identity-avatar img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  opacity: 0;
}

.availability-dot {
  position: absolute;
  right: 3.5px;
  bottom: 3.5px;
  width: 7px;
  height: 7px;
  border: 0;
  border-radius: 50%;
  background: #39e675;
  box-shadow: 0 0 10px rgba(57, 230, 117, 0.48);
}

.identity-copy {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 4px;
  line-height: 1.1;
}

.identity-copy strong {
  color: var(--color-text-primary);
  font-size: 14px;
  font-weight: 450;
  letter-spacing: 0.01em;
}

.identity-copy > span {
  color: var(--color-text-secondary);
  font-family: "SFMono-Regular", "Roboto Mono", "IBM Plex Mono", Consolas, monospace;
  font-size: 12px;
  letter-spacing: 0.02em;
}

.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 0.42em;
  white-space: nowrap;
  font-size: 30px;
  font-weight: 400;
  line-height: 36px;
  letter-spacing: 1.8px;
}

.site-header > .wordmark {
  grid-column: 2;
  justify-self: center;
}

.wordmark-eren {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.18em;
  overflow: hidden;
}

.wordmark-eren::after {
  position: absolute;
  z-index: 3;
  top: -20%;
  bottom: -20%;
  left: -34%;
  width: 26%;
  background: linear-gradient(90deg, transparent, rgba(255, 106, 0, 0.76), transparent);
  content: "";
  opacity: 0;
  pointer-events: none;
  transform: skewX(-16deg) translateX(0);
}

.wordmark-eren.is-logo-scanning::after {
  animation: wordmark-scan 760ms cubic-bezier(0.22, 1, 0.36, 1);
}

.wordmark-symbol {
  display: inline-flex;
  width: 0.67em;
  height: 0.92em;
  flex: 0 0 auto;
  flex-direction: column;
  justify-content: space-between;
  padding: 0.08em 0;
}

.wordmark-symbol i {
  display: block;
  width: 100%;
  height: 0.16em;
  background: var(--color-accent);
}

.wordmark-symbol i:nth-child(2) {
  width: 80%;
}

.wordmark strong {
  display: inline-flex;
  font-weight: 800;
  letter-spacing: 1.8px;
}

.wordmark-letter {
  display: inline-block;
}

.is-logo-entering .wordmark-symbol i {
  opacity: 0;
  animation: wordmark-letter-in 420ms steps(4, end) calc(80ms + var(--logo-bar-index, 0) * 80ms) forwards;
}

.is-logo-entering .wordmark-symbol i:nth-child(1) { --logo-bar-index: 0; }
.is-logo-entering .wordmark-symbol i:nth-child(2) { --logo-bar-index: 1; }
.is-logo-entering .wordmark-symbol i:nth-child(3) { --logo-bar-index: 2; }

.is-logo-entering .wordmark-letter {
  opacity: 0;
  clip-path: inset(0 100% 0 0);
  animation: wordmark-letter-in 420ms steps(4, end) calc(360ms + var(--logo-letter-index) * 150ms) forwards;
}

@keyframes wordmark-letter-in {
  to {
    opacity: 1;
    clip-path: none;
  }
}

@keyframes wordmark-scan {
  0% {
    opacity: 0;
    transform: skewX(-16deg) translateX(0);
  }

  24% { opacity: 0.8; }
  100% {
    opacity: 0;
    transform: skewX(-16deg) translateX(560%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .wordmark-eren::after,
  .wordmark-letter,
  .wordmark-symbol i {
    animation: none !important;
    opacity: 1;
    clip-path: none;
  }
}

.desktop-navigation {
  display: none;
  align-items: center;
  gap: 28px;
  font-size: 12px;
  font-weight: 500;
  color: var(--color-text-secondary);
}

.desktop-navigation a:not(.button) {
  transition: color 180ms ease;
}

.desktop-navigation a:not(.button):hover,
.desktop-navigation .is-active {
  color: var(--color-text-primary);
}

.mobile-menu-trigger {
  display: inline-flex;
  grid-column: 3;
  width: 44px;
  min-height: 44px;
  align-items: center;
  justify-self: end;
  justify-content: flex-end;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--color-text-heading);
  font: inherit;
  font-size: 14px;
  font-weight: 500;
  text-align: right;
}

.menu-icon,
.close-icon {
  position: relative;
  display: block;
  width: 24px;
  height: 18px;
}

.menu-icon span,
.close-icon span {
  position: absolute;
  right: 0;
  display: block;
  width: 24px;
  height: 1px;
  background: currentColor;
}

.menu-icon span:first-child {
  top: 1px;
}

.menu-icon span:nth-child(2) {
  top: 8px;
}

.menu-icon span:last-child {
  top: 15px;
}

.mobile-menu-trigger .menu-icon span {
  transform-origin: center;
  transition: top 220ms cubic-bezier(0.22, 1, 0.36, 1), width 180ms ease, transform 220ms cubic-bezier(0.22, 1, 0.36, 1), opacity 140ms ease;
}

.mobile-menu-trigger[aria-expanded="true"] .menu-icon span:first-child {
  top: 8px;
  transform: rotate(45deg);
}

.mobile-menu-trigger[aria-expanded="true"] .menu-icon span:nth-child(2) {
  width: 0;
  opacity: 0;
}

.mobile-menu-trigger[aria-expanded="true"] .menu-icon span:last-child {
  top: 8px;
  transform: rotate(-45deg);
}

.close-icon {
  height: 24px;
}

.close-icon span {
  top: 11px;
  transform-origin: center;
}

.close-icon span:first-child {
  transform: rotate(45deg);
}

.close-icon span:last-child {
  transform: rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  z-index: 100;
  top: 100px;
  right: var(--layout-gutter-desktop);
  display: flex;
  width: min(320px, calc(100vw - 40px));
  flex-direction: column;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  background: rgba(8, 8, 9, 0.96);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.42);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-10px) scale(0.98);
  transform-origin: top right;
  transition: opacity 180ms ease, transform 240ms cubic-bezier(0.22, 1, 0.36, 1), visibility 180ms ease;
  visibility: hidden;
}

.mobile-menu.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
  visibility: visible;
}

.mobile-menu-header {
  display: flex;
  min-height: 36px;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}

.mobile-menu-header .wordmark {
  font-size: 18px;
  line-height: 22px;
}

.mobile-menu-close {
  display: flex;
  width: 36px;
  min-height: 36px;
  align-items: center;
  justify-content: flex-end;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--color-text-heading);
}

.mobile-menu-close .close-icon {
  transform: scale(0.82);
  transform-origin: right center;
}

@media (min-width: 700px) {
  .mobile-menu-close {
    display: none;
  }
}

.mobile-menu-links {
  border-top: 1px solid #242426;
}

.mobile-menu-links a {
  display: flex;
  min-height: 56px;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #242426;
  color: var(--color-text-secondary);
  font-size: 22px;
  line-height: 28px;
  transition: color 180ms ease;
}

.mobile-menu-links a:hover,
.mobile-menu-links a.is-active {
  color: var(--color-text-heading);
}

.mobile-menu-links a span:last-child {
  color: #737378;
  font-size: 15px;
}

.mobile-menu-links a.is-active span:last-child {
  color: var(--color-accent);
}

.mobile-menu-contact {
  padding-top: 18px;
}

.mobile-menu-contact > p {
  margin: 0 0 12px;
  color: var(--color-accent);
  font-size: 12px;
  font-weight: 600;
  line-height: 14px;
  letter-spacing: 0.04em;
}

.mobile-menu-contact > .button {
  width: 100%;
  margin-bottom: 14px;
}

.mobile-menu-contact-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: var(--color-text-secondary);
  font-size: 13px;
  line-height: 19px;
}

.hero {
  --hero-pointer-x: 50%;
  --hero-pointer-y: 42%;
  position: relative;
  isolation: isolate;
}

.hero::before,
.hero::after {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
}

.hero::before {
  z-index: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.095) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.095) 1px, transparent 1px),
    radial-gradient(circle at var(--hero-pointer-x) var(--hero-pointer-y), rgba(255, 106, 0, 0.24), transparent 43%);
  background-position: center top;
  background-size: 48px 48px, 48px 48px, 100% 100%;
  opacity: 0.9;
  -webkit-mask-image:
    radial-gradient(circle 500px at var(--hero-pointer-x) var(--hero-pointer-y), #000 0%, rgba(0, 0, 0, 0.82) 55%, transparent 94%),
    linear-gradient(to bottom, #000 0%, #000 82%, transparent 100%);
  -webkit-mask-composite: source-in;
  mask-image:
    radial-gradient(circle 500px at var(--hero-pointer-x) var(--hero-pointer-y), #000 0%, rgba(0, 0, 0, 0.82) 55%, transparent 94%),
    linear-gradient(to bottom, #000 0%, #000 82%, transparent 100%);
  mask-composite: intersect;
  transition: opacity 500ms ease;
}

.hero::after {
  z-index: 80;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.92' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.55'/%3E%3C/svg%3E");
  background-size: 180px 180px;
  mix-blend-mode: soft-light;
  opacity: 0.07;
  animation: hero-grain 7s steps(7) infinite;
}

.hero {
  position: relative;
  display: flex;
  min-height: 700px;
  flex-direction: column;
  align-items: center;
  padding: 89px var(--layout-gutter-desktop) 60px;
  overflow: hidden;
  text-align: center;
}

.hero > * {
  position: relative;
  z-index: 1;
}

@keyframes hero-grain {
  0% { background-position: 0 0; }
  20% { background-position: -42px 31px; }
  40% { background-position: 36px -27px; }
  60% { background-position: -18px -39px; }
  80% { background-position: 29px 18px; }
  100% { background-position: 0 0; }
}

@media (pointer: coarse), (prefers-reduced-motion: reduce) {
  .site-header {
    transition-duration: 1ms;
  }

  .site-header::before {
    opacity: 0.38;
  }

  .hero::before {
    opacity: 0.28;
    -webkit-mask-image: linear-gradient(to bottom, #000 0%, #000 82%, transparent 100%);
    mask-image: linear-gradient(to bottom, #000 0%, #000 82%, transparent 100%);
  }

  .hero::after {
    animation: none;
    opacity: 0.055;
  }

  .about-hero::before {
    opacity: 0.22;
  }

  .about-hero::after {
    animation: none;
    opacity: 0.025;
  }
}

.hero-eyebrow {
  margin: 0 0 17px;
  color: var(--color-accent);
  font-size: 16px;
  font-weight: 400;
}

.hero-title {
  display: flex;
  flex-direction: column;
  margin: 0;
  color: var(--color-text-heading);
  font-size: 68px;
  font-weight: 650;
  line-height: 82px;
  letter-spacing: -2.1px;
}

.hero-title span {
  display: block;
}

.hero-title-last {
  display: flex !important;
  align-items: baseline;
  justify-content: center;
  gap: 0.18em;
  margin-bottom: -0.2em;
  padding-bottom: 0.2em;
}

.hero-title em {
  color: var(--color-accent);
  font-family: "Aguafina Script", cursive;
  font-size: 88px;
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0;
}

.hero-summary {
  width: min(909px, 100%);
  margin: 28px 0 0;
  color: var(--color-text-body);
  font-size: 20px;
  font-weight: 300;
  line-height: 1.45;
}

.hero-capabilities {
  margin: 24px 0 0;
  color: var(--color-text-secondary);
  font-size: 13px;
  font-weight: 500;
  line-height: 1.3;
}

.hero-cta {
  position: relative;
  display: inline-flex;
  width: max-content;
  align-items: center;
  gap: 10px;
  margin-top: 34px;
  padding-bottom: 7px;
  color: var(--color-accent);
  font-size: 14px;
  font-weight: 600;
}

.hero-cta::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 280ms cubic-bezier(.2, .7, .2, 1);
}

.hero-cta span {
  transition: transform 220ms cubic-bezier(.2, .7, .2, 1);
}

.hero-cta:hover::after {
  transform: scaleX(1);
}

.hero-cta:hover span {
  transform: translateY(3px);
}

.project-index {
  background: var(--color-bg-canvas);
}

.project-index-inner {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 72px var(--layout-gutter-desktop) 50px;
}

.section-label {
  margin: 0 0 40px;
  color: var(--color-text-secondary);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.25;
}

.project-list {
  border-top: 1px solid var(--color-divider);
}

.project-card {
  position: relative;
  display: grid;
  min-height: 500px;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  padding: 29px 0 30px;
  border-bottom: 1px solid var(--color-divider);
}

.project-card:last-child {
  min-height: 470px;
}

.project-copy {
  position: relative;
  display: grid;
  grid-template-columns: 60px minmax(0, 470px);
  grid-template-rows: auto auto 1fr auto auto;
  column-gap: 33px;
  align-content: start;
}

.project-number {
  grid-column: 1;
  grid-row: 1;
  margin: 12px 0 0;
  color: var(--color-text-secondary);
  font-size: 14px;
  font-weight: 500;
}

.project-copy h3 {
  grid-column: 2;
  grid-row: 1;
  margin: 0;
  font-size: 38px;
  font-weight: 650;
  line-height: 1.25;
}

.project-summary {
  grid-column: 2;
  grid-row: 2;
  margin: 25px 0 0;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.45;
}

.project-meta {
  grid-column: 2;
  grid-row: 4;
  margin: 28px 0 0;
  color: var(--color-text-secondary);
  font-size: 15px;
  line-height: 1.25;
}

.project-link {
  grid-column: 2;
  grid-row: 5;
  width: max-content;
  margin-top: 31px;
  color: var(--color-accent);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.45;
}

.project-link span {
  display: inline-block;
  transition: transform 180ms ease;
}

.project-link:hover span {
  transform: translate(3px, -3px);
}

.project-media {
  position: relative;
  display: block;
  width: 100%;
  align-self: start;
}

@media (pointer: fine) and (min-width: 1024px) and (prefers-reduced-motion: no-preference) {
  .project-link {
    position: relative;
    padding-bottom: 5px;
  }

  .project-link::after {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 1px;
    background: currentColor;
    content: "";
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 240ms ease;
  }

  .project-link:hover::after {
    transform: scaleX(1);
  }

  .pointer-heading-glow {
    position: fixed;
    z-index: 20;
    top: -74px;
    left: -74px;
    width: 148px;
    height: 148px;
    border-radius: 50%;
    opacity: 0;
    pointer-events: none;
    background: radial-gradient(circle, rgba(255, 106, 0, 0.24) 0%, rgba(255, 106, 0, 0.1) 34%, transparent 72%);
    filter: blur(7px);
    transition: opacity 180ms ease;
    will-change: transform, opacity;
  }

  .pointer-heading-glow.is-visible {
    opacity: 1;
  }

  .pointer-media-label {
    position: fixed;
    z-index: 22;
    top: 0;
    left: 0;
    display: block;
    width: auto;
    height: auto;
    opacity: 0;
    pointer-events: none;
    color: var(--color-accent);
    font-size: 20px;
    font-weight: 500;
    line-height: 1;
    text-shadow: 0 0 14px rgba(255, 106, 0, 0.42);
    transform: translate3d(-100px, -100px, 0);
    transition: opacity 140ms ease;
    will-change: transform, opacity;
  }

  .pointer-media-label.is-visible {
    opacity: 1;
  }
}

.project-media img {
  display: block;
  width: 100%;
  height: auto;
}

.site-footer {
  position: relative;
  height: 520px;
  overflow: hidden;
  background: var(--color-bg-footer);
}

.contact-ticker {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  display: flex;
  width: 100%;
  height: 36px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  overflow: hidden;
  background: var(--color-accent);
  color: #080808;
  font-size: 13px;
  font-weight: 500;
  white-space: nowrap;
}

.contact-ticker a {
  color: inherit;
}

.footer-content {
  position: relative;
  z-index: 1;
  width: min(820px, 48vw);
  height: 330px;
  margin: clamp(78px, 5vw, 104px) 0 0 var(--layout-gutter-desktop);
}

.footer-content h2 {
  margin: 0;
  font-size: clamp(66px, 4.5vw, 88px);
  font-weight: 650;
  line-height: 1.08;
}

.footer-typewriter > span {
  display: block;
  width: max-content;
  max-width: 100%;
  will-change: clip-path, opacity;
}

.footer-email-label {
  margin: 24px 0 0;
  color: #7a7a85;
  font-size: 14px;
}

.footer-email {
  display: block;
  width: max-content;
  margin-top: 5px;
  font-size: 18px;
  font-weight: 500;
}

.footer-links {
  display: flex;
  gap: 44px;
  margin-top: 17px;
  color: var(--color-text-secondary);
  font-size: 16px;
}

.footer-links a:hover {
  color: var(--color-accent);
}

.about-hero {
  --about-pointer-x: 58%;
  --about-pointer-y: 38%;
  position: relative;
  width: 100%;
  max-width: 1440px;
  height: 720px;
  margin: 0 auto;
  overflow: hidden;
  background: #000;
  isolation: isolate;
}

.about-hero::before,
.about-hero::after {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
}

.about-hero::before {
  z-index: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    radial-gradient(circle at var(--about-pointer-x) var(--about-pointer-y), rgba(255, 106, 0, 0.14), transparent 48%);
  background-position: center top;
  background-size: 56px 56px, 56px 56px, 100% 100%;
  opacity: 0.58;
  -webkit-mask-image: radial-gradient(circle 540px at var(--about-pointer-x) var(--about-pointer-y), #000 0%, rgba(0, 0, 0, 0.72) 58%, transparent 96%);
  mask-image: radial-gradient(circle 540px at var(--about-pointer-x) var(--about-pointer-y), #000 0%, rgba(0, 0, 0, 0.72) 58%, transparent 96%);
}

.about-hero::after {
  z-index: 80;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.92' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.55'/%3E%3C/svg%3E");
  background-size: 180px 180px;
  mix-blend-mode: soft-light;
  opacity: 0.035;
  animation: hero-grain 8s steps(7) infinite;
}

.about-portrait,
.about-narrative,
.about-metrics {
  z-index: 1;
}

.about-portrait {
  position: absolute;
  top: 88px;
  left: 72px;
  width: 272px;
  height: 529px;
  overflow: hidden;
  border-radius: 0;
  background: #000;
}

.about-portrait img {
  object-fit: cover;
  object-position: center top;
  transform: none;
}

.about-narrative {
  position: absolute;
  top: 88px;
  left: 400px;
  width: min(900px, calc(100% - 472px));
}

.about-eyebrow,
.about-role,
.about-biography,
.about-section-label,
.service-row p,
.experience-index,
.experience-row p {
  margin: 0;
}

.about-eyebrow {
  color: #94948f;
  font-size: 14px;
  font-weight: 500;
  line-height: 18px;
}

.about-narrative h1 {
  margin: 30px 0 0;
  color: var(--color-text-heading);
  font-size: 56px;
  font-weight: 650;
  line-height: 1.28;
  letter-spacing: -1.6px;
}

.about-role {
  margin-top: 10px;
  color: #f5f5f2;
  font-size: 18px;
  font-weight: 500;
  line-height: 28px;
}

.about-biography {
  width: min(820px, 100%);
  margin-top: 30px;
  color: #94948f;
  font-size: 18px;
  line-height: 31px;
}

.about-metrics {
  position: absolute;
  top: 564px;
  left: 400px;
  display: grid;
  width: 900px;
  grid-template-columns: repeat(3, 276px);
  gap: 36px;
}

.about-metric {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 4px;
}

.about-metric strong {
  color: var(--color-text-heading);
  font-size: 32px;
  font-weight: 650;
  line-height: 38px;
}

.about-metric span {
  color: var(--color-text-secondary);
  font-size: 13px;
  line-height: 18px;
}

.metric-label-compact {
  display: none;
}

.about-services {
  width: 100%;
  max-width: 1440px;
  min-height: 872px;
  margin: 0 auto;
  padding: 64px 72px 48px;
}

.about-section-label {
  color: var(--color-text-secondary);
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
}

.about-services > h2 {
  margin: 22px 0 0;
  color: var(--color-text-heading);
  font-size: 72px;
  font-weight: 650;
  line-height: 1.35;
  letter-spacing: -2px;
}

.service-list {
  margin-top: 30px;
}

.service-row {
  display: grid;
  min-height: 112px;
  grid-template-columns: 80px 380px 420px 340px;
  gap: 20px;
  align-items: start;
  padding: 28px 16px 22px 0;
  border-top: 1px solid #242629;
}

.service-number {
  padding-top: 5px;
  color: var(--color-text-secondary);
  font-size: 13px;
  font-weight: 500;
}

.service-row h3 {
  margin: 0;
  color: var(--color-text-heading);
  font-size: 20px;
  font-weight: 650;
  line-height: 27px;
}

.service-row p {
  max-width: 380px;
  color: var(--color-text-secondary);
  font-size: 15px;
  line-height: 1.4;
}

.service-skills {
  padding-top: 4px;
  color: var(--color-accent);
  font-size: 13px;
  font-weight: 500;
  line-height: 1.45;
}

.service-row:last-child p,
.service-row:last-child .service-skills {
  margin-top: -6px;
}

.about-experience {
  display: block;
  width: 100%;
  max-width: 1440px;
  min-height: 700px;
  margin: 0 auto;
  padding: 72px;
  background: #040404;
}

.experience-overview h2 {
  max-width: 620px;
  margin: 24px 0 0;
  color: var(--color-text-heading);
  font-size: 42px;
  font-weight: 650;
  line-height: 1.27;
  letter-spacing: -0.8px;
}

.experience-index {
  max-width: 620px;
  margin-top: 18px;
  color: #adb0b8;
  font-size: 12px;
  font-weight: 500;
  line-height: 19px;
}

.experience-timeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  column-gap: 24px;
  row-gap: 34px;
  margin-top: 44px;
}

.timeline-guidance {
  display: none;
}

.timeline-progress {
  display: block;
  width: 92px;
  height: 2px;
  overflow: hidden;
  background: #282a2f;
}

.timeline-progress i {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--color-accent);
  transform: scaleX(var(--timeline-progress, 0.2));
  transform-origin: left center;
  transition: transform 120ms linear;
}

.experience-row {
  position: relative;
  display: flex;
  min-height: 132px;
  flex-direction: column;
  gap: 22px;
  padding-top: 22px;
  border-top: 1px solid #1f2124;
}

.experience-row::after {
  content: none;
}

.experience-row > span {
  color: var(--color-text-secondary);
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
}

.experience-row h3 {
  margin: 0;
  color: var(--color-text-heading);
  font-size: 16px;
  font-weight: 650;
  line-height: 22px;
}

.experience-row p {
  margin-top: 5px;
  color: var(--color-text-secondary);
  font-size: 14px;
  line-height: 20px;
}

@media (min-width: 700px) and (max-width: 1023px) {
  .site-header {
    height: 80px;
    padding: 0 var(--layout-gutter-tablet);
  }

  .wordmark {
    font-size: 25px;
    line-height: 30px;
    letter-spacing: 1.5px;
  }

  .wordmark strong {
    letter-spacing: 1.5px;
  }

  .desktop-navigation {
    display: none;
  }

  .identity-avatar {
    width: 46px;
    height: 46px;
  }

  .mobile-menu {
    top: 92px;
    right: var(--layout-gutter-tablet);
  }

  .hero {
    min-height: auto;
    align-items: flex-start;
    padding: 72px var(--layout-gutter-tablet);
    text-align: left;
  }

  .home-page main {
    margin-top: -80px;
  }

  .home-page .hero {
    padding-top: 152px;
  }

  .hero-eyebrow {
    margin-bottom: 24px;
    font-size: 13px;
  }

  .hero-title {
    font-size: 58px;
    line-height: 66px;
    letter-spacing: -1.8px;
  }

  .hero-title-last {
    justify-content: flex-start;
  }

  .hero-title em {
    font-size: 76px;
  }

  .hero-summary {
    width: 620px;
    margin-top: 24px;
    font-size: 18px;
    line-height: 1.5;
  }

  .hero-capabilities {
    display: none;
  }

  .hero-cta {
    margin-top: 24px;
  }

  .project-index-inner {
    padding: 58px var(--layout-gutter-tablet) 68px;
  }

  .section-label {
    margin-bottom: 38px;
  }

  .project-card {
    min-height: 358px;
    grid-template-columns: 300px minmax(0, 356px);
    gap: 32px;
    padding: 29px 0 28px;
  }

  .project-card:last-child {
    min-height: 358px;
  }

  .project-copy {
    display: flex;
    height: 300px;
    flex-direction: column;
  }

  .project-number {
    margin: 0;
    font-size: 12px;
    line-height: 16px;
  }

  .project-copy h3 {
    margin-top: 12px;
    font-size: 30px;
    line-height: 36px;
  }

  .project-summary {
    margin-top: 16px;
    font-size: 15px;
    line-height: 22px;
  }

  .project-meta {
    margin-top: auto;
    font-size: 13px;
    line-height: 18px;
  }

  .project-link {
    margin-top: 12px;
    font-size: 15px;
    line-height: 22px;
  }

  .project-media {
    width: 356px;
  }

  .site-footer {
    height: 400px;
    background: #040404;
  }

  .contact-ticker {
    height: 36px;
    font-size: 9px;
  }

  .footer-content {
    width: 688px;
    height: auto;
    margin: 72px 0 0 var(--layout-gutter-tablet);
  }

  .footer-content h2 {
    font-size: 48px;
    line-height: 50px;
  }

  .footer-email-label {
    margin-top: 20px;
    font-size: 12px;
  }

  .footer-email {
    margin-top: 4px;
    font-size: 14px;
  }

  .footer-links {
    gap: 24px;
    margin-top: 14px;
    font-size: 12px;
  }

  .about-hero {
    height: 720px;
  }

  .about-portrait {
    top: 56px;
    left: 40px;
    width: 240px;
    height: 450px;
  }

  .about-narrative {
    top: 56px;
    left: 320px;
    width: 408px;
  }

  .about-eyebrow {
    font-size: 12px;
    line-height: 17px;
  }

  .about-narrative h1 {
    margin-top: 23px;
    font-size: 42px;
    line-height: 50px;
    letter-spacing: -1.1px;
  }

  .about-narrative h1 .motion-letter {
    display: inline;
  }

  .about-role {
    margin-top: 16px;
    font-size: 17px;
    line-height: 25px;
  }

  .about-biography {
    margin-top: 24px;
    font-size: 17px;
    line-height: 26px;
  }

  .about-metrics {
    top: 560px;
    left: 40px;
    width: 688px;
    grid-template-columns: repeat(3, 216px);
    gap: 20px;
  }

  .about-metric {
    gap: 6px;
  }

  .about-metric strong {
    font-size: 30px;
    line-height: 36px;
  }

  .about-metric span {
    font-size: 12px;
    line-height: 15px;
  }

  .metric-label-full {
    display: none;
  }

  .metric-label-compact {
    display: block;
  }

  .about-services {
    min-height: 1000px;
    padding: 56px 40px 70px;
  }

  .about-services > h2 {
    margin-top: 24px;
    font-size: 52px;
    line-height: 57px;
    letter-spacing: -1.3px;
  }

  .service-list {
    margin-top: 25px;
  }

  .service-row {
    min-height: 150px;
    grid-template-columns: 48px 248px 1fr;
    grid-template-areas:
      "number title description"
      "number title skills";
    gap: 10px 12px;
    padding: 23px 0;
  }

  .service-row:last-child p,
  .service-row:last-child .service-skills {
    margin-top: 0;
  }

  .service-skills {
    padding-top: 0;
  }

  .service-number {
    grid-area: number;
    padding-top: 2px;
  }

  .service-row h3 {
    grid-area: title;
    font-size: 24px;
    line-height: 1.25;
  }

  .service-row p {
    grid-area: description;
    font-size: 16px;
    line-height: 1.5;
  }

  .service-skills {
    grid-area: skills;
    font-size: 13px;
  }

  .about-experience {
    display: block;
    min-height: auto;
    padding: 56px 40px 50px;
  }

  .experience-overview {
    max-width: 620px;
  }

  .experience-overview h2 {
    margin-top: 30px;
    font-size: 36px;
    line-height: 1.18;
  }

  .experience-index {
    margin-top: 22px;
    font-size: 13px;
    line-height: 1.5;
  }

  .experience-timeline {
    display: grid;
    overflow-x: auto;
    grid-auto-columns: minmax(220px, 31vw);
    grid-auto-flow: column;
    grid-template-columns: none;
    gap: 20px;
    margin-top: 48px;
    margin-inline: -40px;
    padding: 0 40px 12px;
    scroll-padding-inline: 40px;
    scroll-snap-type: x proximity;
    scrollbar-width: none;
  }

  .timeline-guidance {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-top: 32px;
    color: var(--color-text-secondary);
    font-size: 12px;
    line-height: 16px;
  }

  .experience-timeline::-webkit-scrollbar {
    display: none;
  }

  .experience-row {
    min-height: 134px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding-top: 23px;
    border-top: 1px solid #1f2124;
    scroll-snap-align: start;
  }

  .experience-row::after {
    top: auto;
    bottom: 0;
    content: "";
  }

  .experience-overview h2 .motion-letter {
    display: inline;
  }

  .experience-row > span {
    font-size: 13px;
    line-height: 18px;
  }

  .experience-row h3 {
    font-size: 22px;
    line-height: 31px;
  }

  .experience-row p {
    margin-top: 0;
    font-size: 15px;
    line-height: 21px;
  }
}

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

  .site-header {
    position: fixed !important;
    z-index: 10000;
    top: auto;
    right: 24px;
    bottom: max(20px, calc(12px + env(safe-area-inset-bottom)));
    left: 24px;
    width: auto;
    height: 64px;
    padding: 7px 18px 7px 8px;
    overflow: visible;
    border: 0;
    border-radius: 999px;
    background: #fff !important;
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.38), inset 0 1px 0 #fff, inset 0 -1px 0 rgba(255, 255, 255, 0.55);
    -webkit-backdrop-filter: blur(28px) saturate(120%);
    backdrop-filter: blur(28px) saturate(120%);
    opacity: 1;
    visibility: visible;
    transform: none !important;
  }

  .site-header.is-hidden {
    transform: none;
  }

  .wordmark {
    font-size: 26px;
    line-height: 32px;
    letter-spacing: 1.56px;
  }

  .wordmark strong {
    letter-spacing: 1.56px;
  }

  .desktop-navigation {
    display: none;
  }

  .identity-signature {
    gap: 11px;
  }

  .identity-avatar {
    width: 40px;
    height: 40px;
  }

  .identity-copy strong {
    font-size: 12px;
  }

  .identity-copy > span {
    max-width: 148px;
    overflow: hidden;
    font-size: 9px;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .site-header .identity-copy {
    text-shadow: none;
  }

  .site-header .identity-copy strong {
    color: #0b0c0f;
  }

  .site-header .identity-copy > span {
    color: rgba(11, 12, 15, 0.62);
  }

  .site-header .mobile-menu-trigger {
    color: #0b0c0f;
  }

  .mobile-menu-trigger .menu-icon span {
    transform-origin: center;
    transition: top 220ms cubic-bezier(0.22, 1, 0.36, 1), transform 220ms cubic-bezier(0.22, 1, 0.36, 1), opacity 140ms ease;
  }

  .mobile-menu-trigger[aria-expanded="true"] .menu-icon span:first-child {
    top: 8px;
    transform: rotate(45deg);
  }

  .mobile-menu-trigger[aria-expanded="true"] .menu-icon span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0.25);
  }

  .mobile-menu-trigger[aria-expanded="true"] .menu-icon span:last-child {
    top: 8px;
    transform: rotate(-45deg);
  }

  .mobile-menu-trigger {
    display: inline-flex;
    width: 44px;
  }

  .mobile-menu-trigger .menu-icon {
    margin-left: auto;
  }

  .mobile-menu {
    top: auto;
    right: 24px;
    bottom: calc(84px + env(safe-area-inset-bottom));
    width: calc(100vw - 48px);
    padding: 16px;
    transform: translateY(10px) scale(0.98);
    transform-origin: bottom right;
  }

  .mobile-menu-header {
    min-height: 34px;
    margin-bottom: 12px;
  }

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

  .mobile-menu-links {
    padding-top: 0;
  }

  .mobile-menu-links a {
    min-height: 54px;
    font-size: 21px;
    line-height: 27px;
  }

  .mobile-menu-links a span:last-child {
    font-size: 15px;
  }

  .mobile-menu-links a.is-active {
    color: var(--color-text-heading);
  }

  .mobile-menu-links a.is-active span:last-child {
    color: var(--color-accent);
  }

  .mobile-menu-contact {
    min-height: 0;
    padding-top: 16px;
  }

  .mobile-menu-contact > p {
    margin-bottom: 12px;
    font-size: 12px;
  }

  .mobile-menu-contact > .button {
    width: max-content;
  }

  .mobile-menu-contact-links {
    gap: 7px;
    margin-top: 0;
    font-size: 13px;
    line-height: 19px;
  }

  .hero {
    min-height: auto;
    align-items: flex-start;
    padding: 40px var(--layout-gutter-mobile) 64px;
    text-align: left;
  }

  .home-page main {
    margin-top: 0;
  }

  .home-page .hero {
    padding-top: 40px;
  }

  body {
    padding-bottom: calc(88px + env(safe-area-inset-bottom));
  }

  .hero-eyebrow {
    margin-bottom: 24px;
    font-size: 12px;
  }

  .hero-title {
    font-size: 40px;
    line-height: 50px;
    letter-spacing: -1.1px;
  }

  .hero-title-last {
    display: flex !important;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
  }

  .hero-title em {
    display: block;
    font-size: 58px;
    line-height: 50px;
  }

  .hero-summary {
    width: 100%;
    margin-top: 24px;
    font-size: 17px;
    line-height: 1.5;
  }

  .hero-capabilities {
    order: 6;
    margin-top: 24px;
    font-size: 12px;
    line-height: 1.45;
  }

  .hero-cta {
    order: 5;
    width: max-content;
    margin-top: 24px;
  }

  .project-index-inner {
    padding: 54px var(--layout-gutter-mobile) 56px;
  }

  .section-label {
    margin-bottom: 34px;
    font-size: 13px;
  }

  .project-list {
    display: flex;
    flex-direction: column;
    gap: 56px;
    border: 0;
  }

  .project-card {
    display: flex;
    min-height: 0;
    flex-direction: column;
    gap: 20px;
    padding: 0;
    border: 0;
  }

  .project-card:last-child {
    min-height: 0;
  }

  .project-copy {
    display: flex;
    flex-direction: column;
  }

  .project-number {
    margin: 0;
    font-size: 13px;
    line-height: 1.25;
  }

  .project-copy h3 {
    margin-top: 12px;
    font-size: 30px;
    line-height: 1.15;
  }

  .project-summary {
    margin-top: 12px;
    font-size: 17px;
    line-height: 1.5;
  }

  .project-meta {
    margin-top: 12px;
    font-size: 14px;
    line-height: 1.4;
  }

  .project-link {
    margin-top: 12px;
    font-size: 16px;
    line-height: 24px;
  }

  .project-media {
    width: 100%;
  }

  .site-footer {
    height: 340px;
    background: #040404;
  }

  .contact-ticker {
    height: 28px;
    font-size: 10px;
  }

  .footer-content {
    width: calc(100% - 40px);
    height: auto;
    margin: 46px 20px 0;
  }

  .footer-content h2 {
    font-size: 32px;
    line-height: 32px;
  }

  .footer-email-label {
    margin-top: 20px;
    font-size: 12px;
    line-height: 14px;
  }

  .footer-email {
    margin-top: 5px;
    font-size: 12px;
    line-height: 18px;
  }

  .footer-links {
    flex-direction: column;
    gap: 6px;
    margin-top: 18px;
    font-size: 12px;
    line-height: 18px;
  }

  .about-hero {
    display: flex;
    height: auto;
    min-height: auto;
    flex-direction: column;
    gap: 28px;
    padding: 40px 20px 64px;
  }

  .about-portrait,
  .about-narrative,
  .about-metrics {
    position: static;
  }

  .about-narrative {
    display: contents;
  }

  .about-eyebrow {
    order: 1;
    font-size: 12px;
    line-height: 1.4;
  }

  .about-narrative h1 {
    order: 2;
    margin: 0;
    font-size: 42px;
    line-height: 1.18;
    letter-spacing: -1px;
    text-wrap: balance;
  }

  .about-narrative h1 .motion-letter {
    display: inline;
  }

  .about-role {
    order: 3;
    margin: 0;
    font-size: 17px;
    line-height: 1.45;
  }

  .about-portrait {
    order: 4;
    width: min(76%, 270px);
    height: 390px;
    align-self: flex-start;
  }

  .about-portrait img {
    object-position: center top;
    transform: none;
  }

  .about-biography {
    order: 5;
    margin: 0;
    font-size: 17px;
    line-height: 1.55;
  }

  .about-metrics {
    order: 6;
    display: grid;
    width: 100%;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
  }

  .about-metric {
    gap: 6px;
  }

  .about-metric strong {
    font-size: 30px;
    line-height: 36px;
  }

  .about-metric span {
    font-size: 12px;
    line-height: 1.35;
  }

  .metric-label-full {
    display: none;
  }

  .metric-label-compact {
    display: block;
  }

  .about-services {
    min-height: 1254px;
    padding: 56px 20px 64px;
  }

  .about-services > h2 {
    margin-top: 28px;
    font-size: 52px;
    line-height: 1.1;
    letter-spacing: -1.3px;
  }

  .service-list {
    margin-top: 28px;
  }

  .service-row {
    display: flex;
    min-height: 192px;
    flex-direction: column;
    gap: 10px;
    padding: 24px 0;
  }

  .service-row:last-child p,
  .service-row:last-child .service-skills {
    margin-top: 0;
  }

  .service-skills {
    padding-top: 0;
  }

  .service-row:last-child {
    min-height: 235px;
  }

  .service-number {
    padding: 0;
  }

  .service-row h3 {
    font-size: 24px;
    line-height: 1.25;
  }

  .service-row p {
    font-size: 16px;
    line-height: 1.5;
  }

  .service-skills {
    font-size: 13px;
    line-height: 1.45;
  }

  .about-experience {
    display: flex;
    min-height: auto;
    flex-direction: column;
    gap: 28px;
    padding: 56px 20px 64px;
  }

  .experience-overview h2 {
    margin-top: 28px;
    font-size: 36px;
    line-height: 1.18;
    letter-spacing: -0.5px;
  }

  .experience-index {
    margin-top: 28px;
    font-size: 13px;
    line-height: 1.5;
  }

  .experience-timeline {
    display: grid;
    overflow-x: auto;
    grid-auto-columns: minmax(220px, 78vw);
    grid-auto-flow: column;
    grid-template-columns: none;
    gap: 16px;
    margin-top: 0;
    margin-inline: -20px;
    padding: 0 20px 12px;
    scroll-padding-inline: 20px;
    scroll-snap-type: x proximity;
    scrollbar-width: none;
  }

  .timeline-guidance {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: 0;
    color: var(--color-text-secondary);
    font-size: 12px;
    line-height: 16px;
  }

  .experience-timeline::-webkit-scrollbar {
    display: none;
  }

  .experience-row {
    display: flex;
    min-height: 134px;
    min-width: 0;
    flex-direction: column;
    gap: 4px;
    padding-top: 23px;
    border-top: 1px solid #1f2124;
    scroll-snap-align: start;
  }

  .experience-row > div {
    min-width: 0;
    max-width: 100%;
  }

  .experience-row::after {
    top: auto;
    bottom: 0;
    content: "";
  }

  .experience-overview h2 .motion-letter {
    display: inline;
  }

  .experience-row > span {
    font-size: 13px;
    line-height: 18px;
  }

  .experience-row h3 {
    max-width: 100%;
    font-size: clamp(18px, 5.5vw, 22px);
    line-height: 31px;
    overflow-wrap: anywhere;
  }

  .experience-row p {
    margin-top: 0;
    font-size: 15px;
    line-height: 21px;
  }
}

@media (min-width: 1200px) {
  .project-card {
    grid-template-columns: 563px 648px;
    gap: 85px;
  }
}

.case-study-page {
  background: #040405;
}

.case-study-page > .site-header {
  max-width: 1440px;
  margin: 0 auto;
}

.case-study-breadcrumb {
  display: flex;
  width: min(100% - 80px, 1296px);
  margin: 0 auto;
  padding-top: 28px;
  gap: 9px;
  color: #77777f;
  font-size: 12px;
  line-height: 18px;
}

.case-study-breadcrumb a:hover {
  color: var(--color-text-primary);
}

.case-study-navigation {
  display: grid;
  width: min(100% - 80px, 1296px);
  margin: 0 auto;
  padding: 56px 0 72px;
  grid-template-columns: 1fr auto 1fr;
  align-items: end;
  gap: 32px;
  border-top: 1px solid #202024;
}

.case-study-navigation > a:not(.case-study-navigation-index) {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.case-study-navigation > a:last-child {
  text-align: right;
}

.case-study-navigation span,
.case-study-navigation-index {
  color: #77777f;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.case-study-navigation strong {
  font-size: 22px;
  font-weight: 550;
}

.case-study-navigation a:hover {
  color: var(--color-accent);
}

.case-study-summary {
  display: flex;
  width: 100%;
  max-width: 1440px;
  flex-direction: column;
  gap: 70px;
  margin: 56px auto 0;
  padding: 120px 180px 78px;
}

.case-study-identity > p,
.case-study-identity > span,
.case-study-identity > h1,
.case-study-overview h2,
.case-study-overview p,
.case-study-block-label,
.case-study-team p,
.case-study-story p,
.case-study-story h2,
.case-study-reflection p,
.case-study-reflection h2 {
  margin: 0;
}

.case-study-identity {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.case-study-identity > p {
  color: #4a4a4f;
  font-size: 12px;
  font-weight: 650;
  line-height: 18px;
}

.case-study-identity > span {
  color: #c7c7ca;
  font-size: 13px;
  font-weight: 500;
  line-height: 20px;
}

.case-study-identity > h1 {
  margin-top: 12px;
  color: #fff;
  font-size: 82px;
  font-weight: 650;
  line-height: 88px;
  letter-spacing: -2px;
}

.js .case-study-typewriter {
  width: fit-content;
  max-width: 100%;
  clip-path: inset(0 100% 0 0);
  opacity: 0.2;
  filter: brightness(0.35);
}

.js .case-study-identity.is-visible .case-study-typewriter {
  animation: case-study-typewriter-reveal 1.45s steps(18, end) 180ms forwards;
}

@keyframes case-study-typewriter-reveal {
  to {
    clip-path: inset(0 0 0 0);
    opacity: 1;
    filter: brightness(1);
  }
}

.js .project-title-typewriter {
  width: fit-content;
  max-width: 100%;
  clip-path: inset(0 100% 0 0);
  opacity: 0.2;
  filter: brightness(0.35);
}

.js .project-card.is-visible .project-title-typewriter {
  animation: case-study-typewriter-reveal 1.3s steps(18, end) 180ms forwards;
}

.case-study-overview {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}

.case-study-overview h2 {
  color: #f0f0f2;
  font-size: 22px;
  font-weight: 500;
  line-height: 30px;
}

.case-study-overview-copy {
  display: flex;
  width: min(1000px, 100%);
  flex-direction: column;
  gap: 18px;
}

.case-study-overview-copy p {
  color: #c6c7cb;
  font-size: 16px;
  line-height: 27px;
}

.case-study-live-link {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  gap: 6px;
  padding: 0 18px;
  border: 1px solid #383b40;
  border-radius: 999px;
  background: #17181c;
  color: #ebedf2;
  font-size: 13px;
  font-weight: 500;
  transition: border-color 180ms ease, transform 180ms ease;
}

.case-study-live-link:hover {
  border-color: var(--color-accent);
  transform: translateY(-2px);
}

.case-study-metadata {
  display: grid;
  grid-template-columns: repeat(5, 184px);
  gap: 40px;
}

.case-study-metadata > div {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 8px;
}

.case-study-metadata span {
  color: #4a4a4f;
  font-size: 12px;
  font-weight: 500;
  line-height: 18px;
}

.case-study-metadata strong {
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  line-height: 22px;
}

.case-study-summary-grid {
  display: grid;
  grid-template-columns: repeat(3, 344px);
  gap: 24px;
}

.case-study-summary-column h2 {
  margin: 0 0 10px;
  color: #f0f0f2;
  font-size: 20px;
  font-weight: 500;
  line-height: 28px;
}

.case-study-summary-items {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.case-study-summary-items p {
  display: flex;
  min-height: 58px;
  align-items: center;
  margin: 0;
  padding: 9px 16px;
  border-radius: 10px;
  background: #19191c;
  color: #c7c7ca;
  font-size: 13px;
  line-height: 20px;
}

.case-study-team {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.case-study-design-scope {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.case-study-design-scope-grid {
  display: grid;
  grid-auto-columns: minmax(0, 1fr);
  grid-auto-flow: column;
  gap: 16px;
}

.case-study-design-scope-grid > div {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 6px;
  padding: 14px 16px;
  border-radius: 10px;
  background: #19191c;
}

.case-study-design-scope-grid span {
  color: #c7c7ca;
  font-size: 13px;
  line-height: 20px;
}

.case-study-design-scope-grid strong {
  color: #fff;
  font-size: 20px;
  font-weight: 500;
  line-height: 28px;
}

.case-study-block-label {
  color: #737373;
  font-size: 12px;
  font-weight: 500;
  line-height: 18px;
  letter-spacing: 0.6px;
}

.case-study-team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  padding: 16px;
  border-radius: 10px;
  background: #19191c;
}

.case-study-team-grid > div {
  min-width: 0;
}

.case-study-team-grid span {
  display: block;
  margin-bottom: 8px;
  color: #4a4a4f;
  font-size: 12px;
  font-weight: 500;
  line-height: 16px;
}

.case-study-team-grid p {
  color: #c7c7ca;
  font-size: 13px;
  line-height: 20px;
  white-space: pre-line;
}

.case-study-story-list {
  max-width: 1440px;
  margin: 0 auto;
}

.case-study-story {
  position: relative;
  display: grid;
  min-height: 622px;
  grid-template-columns: 778px 260px;
  grid-template-rows: 20px auto;
  gap: 24px 42px;
  padding: 28px 180px 70px;
  border-top: 1px solid #242426;
}

.case-study-story-label {
  grid-column: 1 / -1;
  color: #7a7a78;
  font-size: 13px;
  font-weight: 500;
  line-height: 16px;
}

.case-study-story-media {
  position: relative;
  grid-row: 2;
  width: 778px;
  height: 468px;
  overflow: hidden;
  border-radius: 0;
}

.case-study-story-copy {
  grid-row: 2;
  min-width: 0;
  align-self: start;
  padding-top: 0;
}

.case-study-story.is-responsive .case-study-story-media {
  height: 560px;
  border-radius: 0;
}

.case-study-story.is-compact {
  grid-template-columns: 702px 260px;
  padding-inline: 218px;
}

.case-study-story.is-compact .case-study-story-media {
  width: 702px;
  height: 468px;
}

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

.case-study-story-copy h2 {
  color: #fff;
  font-size: 20px;
  font-weight: 650;
  line-height: 24px;
}

.case-study-story-copy p {
  margin-top: 13px;
  color: #9e9e9e;
  font-size: 13px;
  line-height: 20px;
}

.case-study-reflection {
  display: flex;
  min-height: 684px;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  padding: 84px 180px 72px;
  background: #040405;
  text-align: center;
}

.case-study-reflection > p:first-child {
  color: #7ab2d1;
  font-size: 12px;
  font-weight: 650;
  line-height: 16px;
  letter-spacing: 1.44px;
}

.case-study-reflection h2 {
  width: min(760px, 100%);
  color: #f7f7fa;
  font-size: 38px;
  font-weight: 650;
  line-height: 46px;
}

.case-study-reflection > p:nth-of-type(2) {
  width: min(720px, 100%);
  color: #adadb5;
  font-size: 17px;
  line-height: 28px;
}

.case-study-reflection-divider {
  width: 72px;
  height: 1px;
  background: #383b40;
}

.case-study-reflection-person {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.case-study-reflection-person strong {
  color: #f7f7fa;
  font-size: 22px;
  line-height: 27px;
}

.case-study-reflection-person span {
  color: #94969e;
  font-size: 15px;
  line-height: 18px;
}

.case-study-reflection-links {
  display: flex;
  gap: 10px;
}

.case-study-reflection-links a {
  padding: 11px 20px;
  border-radius: 999px;
  background: #17181c;
  color: #d1d4d9;
  font-size: 13px;
  font-weight: 500;
}

@media (min-width: 700px) and (max-width: 1023px) {
  .case-study-summary {
    gap: 0;
    margin-top: 56px;
    padding: 48px 40px 72px;
  }

  .case-study-identity > p {
    color: #8b8d94;
    font-size: 13px;
    line-height: 19px;
  }

  .case-study-identity > span {
    margin-top: 15px;
    color: #bfc1c7;
    font-size: 14px;
  }

  .case-study-identity > h1 {
    margin-top: 18px;
    font-size: 48px;
    line-height: 53px;
  }

  .case-study-overview {
    margin-top: 24px;
  }

  .case-study-overview h2 {
    font-size: 20px;
    line-height: 29px;
  }

  .case-study-overview-copy {
    gap: 14px;
  }

  .case-study-overview-copy p {
    font-size: 14px;
    line-height: 22px;
  }

  .case-study-live-link {
    min-height: 44px;
    font-size: 14px;
  }

  .case-study-metadata {
    grid-template-columns: repeat(3, 216px);
    gap: 12px 20px;
    margin-top: 52px;
  }

  .case-study-metadata > div {
    min-height: 70px;
    padding-bottom: 12px;
    border-bottom: 1px solid #262629;
  }

  .case-study-metadata span {
    color: #6e7077;
    font-size: 13px;
  }

  .case-study-summary-grid {
    grid-template-columns: repeat(3, 216px);
    gap: 20px;
    margin-top: 60px;
  }

  .case-study-summary-column h2 {
    min-height: 66px;
    margin-bottom: 18px;
    font-size: 26px;
    line-height: 1.25;
  }

  .case-study-summary-items {
    gap: 10px;
  }

  .case-study-summary-items p {
    min-height: 112px;
    align-items: flex-start;
    padding: 12px 14px;
    border-radius: 8px;
    color: #d8d9dd;
    font-size: 15px;
    line-height: 1.45;
  }

  .case-study-team {
    margin-top: 64px;
  }

  .case-study-design-scope {
    margin-top: 48px;
  }

  .case-study-team-grid {
    grid-template-columns: repeat(3, 216px);
    gap: 20px;
    padding: 10px 0 0;
    background: transparent;
  }

  .case-study-team-grid span {
    color: #737373;
    font-size: 12px;
  }

  .case-study-team-grid p {
    color: #dbdbdb;
    font-size: 15px;
    line-height: 1.45;
  }

  .case-study-story {
    min-height: 420px;
    grid-template-columns: 420px 240px;
    grid-template-rows: 16px auto;
    gap: 28px;
    padding: 40px 40px 56px;
  }

  .case-study-story-media {
    width: 420px;
    height: 253px;
    border-radius: 0;
  }

  .case-study-story.is-responsive .case-study-story-media {
    width: 420px;
    height: auto;
    aspect-ratio: 778 / 560;
    border-radius: 0;
  }

  .case-study-story.is-compact {
    grid-template-columns: 420px 240px;
    padding-inline: 40px;
  }

  .case-study-story.is-compact .case-study-story-media {
    width: 420px;
    height: auto;
    aspect-ratio: 702 / 468;
  }

  .case-study-story-copy h2 {
    font-size: 25px;
    line-height: 1.25;
  }

  .case-study-story-copy p {
    margin-top: 18px;
    color: #a8a8a3;
    font-size: 16px;
    line-height: 1.55;
  }

  .case-study-reflection {
    min-height: 620px;
    align-items: flex-start;
    padding: 64px 40px;
    text-align: left;
  }

  .case-study-reflection h2,
  .case-study-reflection > p:nth-of-type(2) {
    width: 100%;
  }

  .case-study-reflection h2 {
    font-size: 36px;
    line-height: 48px;
  }

  .case-study-reflection-person {
    align-items: flex-start;
  }
}

@media (max-width: 699px) {
  .case-study-breadcrumb {
    width: calc(100% - 40px);
    padding-top: 20px;
    overflow: hidden;
    white-space: nowrap;
  }

  .case-study-summary {
    gap: 0;
    margin-top: 40px;
    padding: 48px 20px 64px;
  }

  .case-study-identity > p {
    color: #8b8d94;
    font-size: 13px;
    line-height: 19px;
  }

  .case-study-identity > span {
    margin-top: 20px;
    color: #bfc1c7;
    font-size: 14px;
  }

  .case-study-identity > h1 {
    margin-top: 20px;
    font-size: 48px;
    line-height: 53px;
    letter-spacing: -1px;
  }

  .case-study-overview {
    margin-top: 20px;
  }

  .case-study-overview h2 {
    font-size: 20px;
    line-height: 29px;
  }

  .case-study-overview-copy {
    gap: 16px;
  }

  .case-study-overview-copy p {
    font-size: 16px;
    line-height: 1.55;
  }

  .case-study-live-link {
    min-height: 44px;
    font-size: 14px;
  }

  .case-study-metadata {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-top: 20px;
  }

  .case-study-metadata > div {
    display: grid;
    min-height: 62px;
    grid-template-columns: 100px 1fr;
    align-items: center;
    gap: 0;
    border-bottom: 1px solid #262629;
  }

  .case-study-metadata span {
    color: #6e7077;
    font-size: 13px;
  }

  .case-study-summary-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 20px;
  }

  .case-study-summary-column {
    padding-top: 28px;
  }

  .case-study-summary-column h2 {
    margin-bottom: 10px;
    font-size: 26px;
    line-height: 33px;
  }

  .case-study-summary-items {
    gap: 10px;
  }

  .case-study-summary-items p {
    min-height: 68px;
    padding: 12px 14px;
    border-radius: 8px;
    color: #d8d9dd;
    font-size: 15px;
    line-height: 1.45;
  }

  .case-study-team {
    margin-top: 20px;
    padding-top: 28px;
  }

  .case-study-design-scope {
    margin-top: 48px;
  }

  .case-study-design-scope-grid {
    grid-auto-flow: row;
    grid-template-columns: 1fr;
  }

  .case-study-design-scope-grid > div {
    padding: 14px;
    border-radius: 8px;
  }

  .case-study-team-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 10px 0 0;
    background: transparent;
  }

  .case-study-team-grid span {
    color: #737373;
    font-size: 12px;
  }

  .case-study-team-grid p {
    color: #dbdbdb;
    font-size: 15px;
    line-height: 1.45;
  }

  .case-study-story {
    display: flex;
    min-height: 0;
    flex-direction: column;
    gap: 20px;
    padding: 48px 20px 56px;
  }

  .case-study-story-media,
  .case-study-story.is-responsive .case-study-story-media {
    width: 100%;
    height: auto;
    aspect-ratio: 350 / 211;
    border-radius: 0;
  }

  .case-study-story.is-responsive .case-study-story-media {
    aspect-ratio: 350 / 252;
  }

  .case-study-story.is-compact {
    padding-inline: 20px;
  }

  .case-study-story.is-compact .case-study-story-media {
    width: 100%;
    height: auto;
    aspect-ratio: 702 / 468;
  }

  .case-study-story-copy h2 {
    font-size: 25px;
    line-height: 1.25;
  }

  .case-study-story-copy p {
    margin-top: 20px;
    color: #a8a8a3;
    font-size: 16px;
    line-height: 1.55;
  }

  .case-study-reflection {
    min-height: 805px;
    align-items: flex-start;
    padding: 64px 20px 56px;
    text-align: left;
  }

  .case-study-reflection h2 {
    font-size: 36px;
    line-height: 1.32;
  }

  .case-study-reflection > p:nth-of-type(2) {
    font-size: 17px;
    line-height: 1.55;
  }

  .case-study-reflection-person {
    align-items: flex-start;
  }

  .case-study-reflection-links {
    flex-direction: column;
    align-items: flex-start;
  }

  .case-study-navigation {
    width: calc(100% - 40px);
    padding: 40px 0 48px;
    grid-template-columns: 1fr 1fr;
    gap: 28px 16px;
  }

  .case-study-navigation-index {
    grid-column: 1 / -1;
    grid-row: 2;
  }

  .case-study-navigation strong {
    font-size: 17px;
  }
}

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

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

  .cursor-trace {
    display: none !important;
  }

  [data-motion-heading] {
    clip-path: none !important;
    opacity: 1 !important;
    transform: none !important;
  }

  .native-typewriter > span {
    clip-path: none !important;
    filter: none !important;
    opacity: 1 !important;
  }

  .footer-typewriter > span {
    clip-path: none !important;
    opacity: 1 !important;
  }
}


@font-face { font-family: "Inter Variable"; src: url("../fonts/Inter-Variable.ttf") format("truetype"); font-style: normal; font-weight: 100 900; font-display: swap; }
@font-face { font-family: "Dancing Script"; src: url("../fonts/DancingScript-Variable.ttf") format("truetype"); font-style: normal; font-weight: 400 700; font-display: swap; }
img { display: block; max-width: 100%; }
body.menu-open { overflow: auto; }
.hero-title em { font-family: "Dancing Script", "Snell Roundhand", cursive; font-weight: 500; }
.js .hero-title > span { transition: transform 700ms cubic-bezier(.16,1,.3,1); }
.about-portrait img { width: 100%; height: 100%; object-fit: cover; object-position: center top; transform: none; }
.js [data-reveal] { opacity: 0; filter: blur(8px); transform: translateY(54px); }
.js [data-reveal].is-visible { opacity: 1; filter: blur(0); transform: translateY(0); transition: opacity 1150ms cubic-bezier(.16,1,.3,1), filter 1050ms cubic-bezier(.16,1,.3,1), transform 1150ms cubic-bezier(.16,1,.3,1); }
.js [data-motion-heading] { opacity: 0; filter: blur(5px) brightness(.55); transform: translateY(18px); }
.js [data-motion-heading].is-visible { opacity: 1; filter: blur(0) brightness(1); transform: translateY(0); transition: opacity 800ms ease-out, filter 800ms ease-out, transform 800ms ease-out; }
.js .footer-typewriter > span { clip-path: inset(0 100% 0 0); opacity: .35; }
.js .footer-typewriter.is-visible > span { animation: footer-typewriter-reveal 1.15s steps(14, end) forwards; }
.js .footer-typewriter.is-visible > span:nth-child(2) { animation-delay: .72s; }
@keyframes footer-typewriter-reveal { to { clip-path: inset(0 0 0 0); opacity: 1; } }
.js .hero-eyebrow, .js .hero-title, .js .hero-summary, .js .hero-capabilities, .js .hero-cta { opacity: 0; transform: translateY(18px); }
.js .page-ready .hero-eyebrow, .js .page-ready .hero-title, .js .page-ready .hero-summary, .js .page-ready .hero-capabilities, .js .page-ready .hero-cta { opacity: 1; transform: translateY(0); transition: opacity 700ms cubic-bezier(.2,.7,.2,1), transform 700ms cubic-bezier(.2,.7,.2,1); }
.js .page-ready .hero-title { transition-delay: 80ms; }
.js .page-ready .hero-summary { transition-delay: 160ms; }
.js .page-ready .hero-capabilities { transition-delay: 220ms; }
.js .page-ready .hero-cta { transition-delay: 280ms; }
@media (prefers-reduced-motion: reduce) {
  .js [data-reveal], .js [data-motion-heading], .js [data-motion-heading] .motion-letter, .js .case-study-typewriter, .js .project-title-typewriter, .js .footer-typewriter > span, .js .hero-eyebrow, .js .hero-title, .js .hero-summary, .js .hero-capabilities, .js .hero-cta { animation: none; clip-path: none; filter: none; opacity: 1; transform: none; transition: none; }
}

/* AI-native product creation hero */
.hero {
  min-height: 780px;
  display: block;
  padding: 76px var(--layout-gutter-desktop) 82px;
  text-align: left;
}

.hero-layout {
  display: grid;
  width: 100%;
  max-width: 1560px;
  margin: 0 auto;
  grid-template-columns: minmax(0, 820px) 560px;
  align-items: center;
  justify-content: center;
  gap: clamp(56px, 4.5vw, 84px);
}

.hero-intro {
  max-width: 820px;
}

.hero-title {
  align-items: flex-start;
  font-size: clamp(54px, 4.4vw, 76px);
  line-height: 1.08;
  letter-spacing: -0.045em;
}

.hero-title-last {
  justify-content: flex-start;
  margin-bottom: -0.1em;
  padding-bottom: 0.12em;
}

.hero-title em {
  font-size: 1.2em;
  line-height: 0.9;
}

.hero-summary {
  width: min(760px, 100%);
  font-size: 18px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 30px;
}

.hero-cta-secondary {
  color: var(--color-text-secondary);
}

.capability-reel {
  width: 100%;
  max-width: 560px;
  justify-self: end;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(8, 8, 10, 0.82);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.34);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
}

.reel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 14px;
  color: var(--color-text-secondary);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
}

.reel-live {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--color-accent);
}

.reel-live i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 16px currentColor;
  animation: reel-pulse 1.4s ease-in-out infinite;
}

.reel-canvas {
  position: relative;
  height: 330px;
  overflow: hidden;
  border: 1px solid rgba(255, 106, 0, 0.2);
  background-image: linear-gradient(rgba(255,106,0,.075) 1px, transparent 1px), linear-gradient(90deg, rgba(255,106,0,.075) 1px, transparent 1px), radial-gradient(circle at 72% 30%, rgba(255,106,0,.28), transparent 42%);
  background-size: 32px 32px, 32px 32px, 100% 100%;
  box-shadow: inset 0 0 70px rgba(255, 106, 0, 0.055);
}

.reel-scene {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 38px;
  opacity: 0;
  filter: blur(8px);
  transform: translateY(18px) scale(0.985);
  animation: reel-scene 15s cubic-bezier(.22,1,.36,1) infinite;
}

.reel-scene:nth-child(2) { animation-delay: 3s; }
.reel-scene:nth-child(3) { animation-delay: 6s; }
.reel-scene:nth-child(4) { animation-delay: 9s; }
.reel-scene:nth-child(5) { animation-delay: 12s; }

.reel-kicker {
  margin-bottom: 16px;
  color: var(--color-accent);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.07em;
}

.reel-scene strong {
  max-width: 390px;
  color: var(--color-text-heading);
  font-size: clamp(25px, 2.1vw, 34px);
  font-weight: 600;
  line-height: 1.14;
  letter-spacing: -0.035em;
}

.reel-chips,
.reel-flow,
.reel-ui,
.reel-motion-card,
.reel-code {
  display: flex;
  margin-top: 30px;
  gap: 8px;
}

.reel-chips i {
  padding: 8px 11px;
  border: 1px solid #333338;
  color: #a9a9af;
  font-size: 10px;
  font-style: normal;
}

.reel-flow {
  align-items: center;
}

.reel-flow i {
  position: relative;
  width: 44px;
  height: 28px;
  border: 1px solid rgba(255, 106, 0, 0.5);
}

.reel-flow i:not(:last-child)::after {
  position: absolute;
  top: 13px;
  left: 43px;
  width: 9px;
  height: 1px;
  background: var(--color-accent);
  content: "";
}

.reel-ui i {
  width: 26%;
  height: 62px;
  border: 1px solid rgba(255, 106, 0, 0.32);
  background: linear-gradient(145deg, rgba(255,255,255,.07), rgba(255,106,0,.11));
}

.reel-ui i:nth-child(2) { width: 42%; }

.reel-motion-card {
  position: relative;
  width: 190px;
  height: 72px;
  border: 1px solid rgba(255, 106, 0, 0.4);
}

.reel-motion-card i {
  position: absolute;
  top: 20px;
  width: 30px;
  height: 30px;
  background: var(--color-accent);
  animation: reel-motion 1.6s cubic-bezier(.22,1,.36,1) infinite alternate;
}

.reel-motion-card i:last-child {
  opacity: 0.22;
  animation-delay: -0.5s;
}

.reel-code {
  width: 75%;
  flex-direction: column;
  gap: 7px;
}

.reel-code i {
  width: 86%;
  height: 5px;
  background: #404047;
}

.reel-code i:nth-child(2) { width: 58%; background: rgba(255,106,0,.8); }
.reel-code i:nth-child(3) { width: 72%; }
.reel-code i:nth-child(4) { width: 44%; }

.reel-stages {
  display: grid;
  margin: 14px 0 0;
  padding: 0;
  grid-template-columns: repeat(5, 1fr);
  list-style: none;
  gap: 6px;
}

.reel-stages li {
  position: relative;
  padding-top: 9px;
  color: #66666d;
  font-size: 9px;
  text-transform: uppercase;
  animation: reel-stage 15s ease infinite;
}

.reel-stages li::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 2px;
  background: currentColor;
  content: "";
  opacity: 0.72;
}

.reel-stages li:nth-child(2) { animation-delay: 3s; }
.reel-stages li:nth-child(3) { animation-delay: 6s; }
.reel-stages li:nth-child(4) { animation-delay: 9s; }
.reel-stages li:nth-child(5) { animation-delay: 12s; }

.reel-outcome {
  margin: 15px 0 0;
  color: var(--color-text-body);
  font-size: 11px;
  line-height: 1.4;
}

.ai-workflow {
  display: grid;
  max-width: 1440px;
  margin: 0 auto;
  padding: 80px var(--layout-gutter-desktop) 88px;
  grid-template-columns: minmax(280px, .72fr) 1.5fr;
  gap: clamp(60px, 8vw, 130px);
  border-top: 1px solid #202024;
}

.ai-workflow-heading p {
  margin: 0 0 18px;
  color: var(--color-accent);
  font-size: 11px;
  font-weight: 600;
}

.ai-workflow-heading h2 {
  margin: 0;
  color: var(--color-text-heading);
  font-size: clamp(32px, 3vw, 48px);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.ai-workflow-heading > span {
  display: block;
  margin-top: 24px;
  color: var(--color-text-body);
  font-size: 14px;
  line-height: 1.55;
}

.ai-workflow-steps {
  margin: 0;
  padding: 0;
  list-style: none;
}

.ai-workflow-steps li {
  display: grid;
  min-height: 70px;
  align-items: center;
  grid-template-columns: 42px minmax(140px, .65fr) 1fr;
  border-top: 1px solid #242428;
}

.ai-workflow-steps li:last-child { border-bottom: 1px solid #242428; }
.ai-workflow-steps span { color: var(--color-accent); font-size: 10px; }
.ai-workflow-steps strong { color: var(--color-text-heading); font-size: 16px; font-weight: 550; }
.ai-workflow-steps small { color: var(--color-text-secondary); font-size: 12px; line-height: 1.4; }

@media (min-width: 1024px) {
  .mobile-menu {
    top: 76px;
    right: clamp(28px, 1.8vw, 36px);
    border: 0;
    background: #fff;
    box-shadow: 0 18px 52px rgba(0, 0, 0, 0.34);
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
  }

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

  .mobile-menu-links {
    border-top: 0;
  }

  .mobile-menu-links a {
    border-bottom-color: rgba(11, 12, 15, 0.13);
    color: rgba(11, 12, 15, 0.62);
  }

  .mobile-menu-links a:hover,
  .mobile-menu-links a.is-active {
    color: #0b0c0f;
  }

  .mobile-menu-links a span:last-child {
    color: rgba(11, 12, 15, 0.45);
  }

  .mobile-menu-links a.is-active span:last-child {
    color: var(--color-accent-on-light);
  }

  .mobile-menu-contact > p {
    color: #0b0c0f;
    font-weight: 700;
  }

  .mobile-menu-contact-links {
    color: rgba(11, 12, 15, 0.68);
  }

  .mobile-menu-contact > .button {
    width: max-content;
    border-color: #0b0c0f;
    background: #0b0c0f;
    color: #fff;
  }

  .mobile-menu :where(a[href], button):focus-visible {
    outline-color: var(--color-accent-on-light);
  }

  .ai-workflow-steps small {
    font-size: 14px;
  }
}

@keyframes reel-scene {
  0%, 18% { opacity: 1; filter: blur(0); transform: translateY(0) scale(1); }
  20%, 100% { opacity: 0; filter: blur(8px); transform: translateY(-14px) scale(.985); }
}

@keyframes reel-stage {
  0%, 18% { color: var(--color-accent); }
  20%, 100% { color: #66666d; }
}

@keyframes reel-pulse { 50% { opacity: .35; transform: scale(.7); } }
@keyframes reel-motion { from { left: 18px; border-radius: 50%; } to { left: 138px; border-radius: 0; } }

@media (min-width: 700px) and (max-width: 1023px) {
  .hero {
    padding: 64px var(--layout-gutter-tablet) 72px;
  }
  .hero-layout { grid-template-columns: 1fr; gap: 54px; }
  .hero-intro { max-width: 720px; }
  .hero-title { font-size: 58px; line-height: 1.1; }
  .hero-capabilities { display: block; }
  .capability-reel { max-width: none; justify-self: stretch; }
  .reel-scene strong { font-size: 34px; }
  .ai-workflow { padding: 64px var(--layout-gutter-tablet) 72px; grid-template-columns: 1fr; gap: 42px; }
}

@media (max-width: 699px) {
  .hero {
    display: block;
    padding: 42px var(--layout-gutter-mobile) 58px;
  }
  .hero-layout { grid-template-columns: 1fr; gap: 42px; }
  .hero-title { font-size: 39px; line-height: 1.12; }
  .hero-title-last { flex-direction: column; align-items: flex-start; }
  .hero-title em { font-size: 50px; line-height: 1; }
  .hero-summary { font-size: 16px; }
  .hero-capabilities { display: block; order: initial; font-size: 12px; }
  .hero-actions { flex-direction: column; align-items: flex-start; gap: 0; }
  .hero-cta { order: initial; }
  .hero-cta-secondary { margin-top: 16px; }
  .capability-reel { padding: 12px; }
  .reel-header { font-size: 8px; }
  .reel-canvas { height: 270px; }
  .reel-scene { padding: 24px; }
  .reel-scene strong { font-size: 26px; }
  .reel-stages { grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 3px; }
  .reel-stages li { overflow: hidden; font-size: 7px; text-overflow: clip; }
  .ai-workflow { padding: 56px var(--layout-gutter-mobile) 64px; grid-template-columns: 1fr; gap: 34px; }
  .ai-workflow-heading h2 { font-size: 36px; }
  .ai-workflow-steps li { min-height: 82px; grid-template-columns: 34px 1fr; }
  .ai-workflow-steps small { grid-column: 2; padding-bottom: 14px; }
}

@media (prefers-reduced-motion: reduce) {
  .reel-scene { animation: none; }
  .reel-scene:first-child { opacity: 1; filter: none; transform: none; }
  .reel-stages li { animation: none; }
  .reel-stages li:first-child { color: var(--color-text-heading); }
  .reel-live i, .reel-motion-card i { animation: none; }
}

/* Sequential typewriter: words follow reading order, so wrapped lines never animate together. */
.js .sequential-typewriter,
.js .case-study-identity.is-visible .sequential-typewriter,
.js .project-card.is-visible .sequential-typewriter,
.js .sequential-typewriter > span,
.js .footer-typewriter.sequential-typewriter > span {
  clip-path: none;
  filter: none;
  animation: none;
}

.js .sequential-typewriter > span {
  opacity: 1;
}

.js .case-study-typewriter.sequential-typewriter.is-typing,
.js .project-title-typewriter.sequential-typewriter.is-typing,
.js .case-study-identity.is-visible .case-study-typewriter.sequential-typewriter,
.js .project-card.is-visible .project-title-typewriter.sequential-typewriter {
  opacity: 1;
  filter: none;
}

.sequential-typewriter .typewriter-word-unit {
  display: inline-block !important;
  margin: 0;
  padding: 0;
  opacity: 0;
  clip-path: inset(0 100% 0 0);
  filter: brightness(0.34);
  white-space: nowrap;
  will-change: clip-path, opacity, filter;
}

.hero-title em .typewriter-word-unit {
  margin-right: -0.16em;
  margin-bottom: -0.28em;
  margin-left: -0.16em;
  padding-right: 0.16em;
  padding-bottom: 0.28em;
  padding-left: 0.16em;
  color: var(--color-accent);
  opacity: 1;
  filter: none;
}

/* Keep the closing phrase visually equal to the rest of the hero headline. */
.hero-closing-copy,
.hero-closing-copy .typewriter-word-unit {
  color: var(--color-text-heading);
  opacity: 1;
  filter: none !important;
}

.sequential-typewriter.is-typing .typewriter-word-unit {
  animation: sequential-word-typewriter var(--word-duration) steps(var(--word-steps), end) var(--word-delay) forwards;
}

.about-narrative .sequential-typewriter .typewriter-word-unit {
  color: var(--color-text-heading);
  filter: none;
}

.about-narrative .sequential-typewriter.is-typing .typewriter-word-unit {
  animation-name: about-word-typewriter;
}

@keyframes about-word-typewriter {
  from {
    opacity: 1;
    clip-path: inset(0 100% 0 0);
    filter: none;
  }

  to {
    opacity: 1;
    clip-path: none;
    filter: none;
  }
}

@keyframes sequential-word-typewriter {
  to {
    opacity: 1;
    clip-path: none;
    filter: brightness(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  .sequential-typewriter .typewriter-word-unit {
    opacity: 1;
    clip-path: none;
    filter: none;
    animation: none;
  }
}

/* Centered closing footer */
.site-footer {
  height: 460px;
}

.contact-ticker {
  justify-content: flex-start;
  gap: 0;
  font-size: 11px;
  font-weight: 650;
  letter-spacing: 0.035em;
}

.contact-ticker-track {
  display: flex;
  width: max-content;
  min-width: max-content;
  align-items: center;
  animation: contact-ticker-motion 24s linear infinite;
  will-change: transform;
}

.contact-ticker-track span {
  display: block;
  min-width: 100vw;
  padding: 0 36px;
  text-align: center;
}

.footer-content {
  display: flex;
  width: min(920px, calc(100% - 80px));
  height: auto;
  min-height: 360px;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  margin: 36px auto 0;
  text-align: center;
}

.footer-content h2 {
  font-size: clamp(60px, 4.5vw, 82px);
}

.footer-typewriter > span {
  width: auto;
  max-width: none;
}

.footer-summary {
  width: min(760px, 100%);
  margin: 22px 0 0;
  color: var(--color-text-body);
  font-size: 17px;
  line-height: 1.5;
}

.footer-links {
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px 34px;
  margin-top: 28px;
  font-size: 14px;
}

.footer-links a {
  position: relative;
  padding-bottom: 5px;
}

.footer-links a::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 220ms ease;
}

.footer-links a:hover::after {
  transform: scaleX(1);
}

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

@media (min-width: 700px) and (max-width: 1023px) {
  .site-footer { height: 410px; }
  .footer-content { width: min(688px, calc(100% - 80px)); min-height: 330px; margin: 36px auto 0; }
  .footer-content h2 { font-size: 54px; line-height: 1.05; }
  .footer-summary { font-size: 16px; }
  .footer-links { gap: 14px 26px; margin-top: 24px; font-size: 13px; }
}

@media (max-width: 699px) {
  html,
  body {
    width: 100%;
    max-width: 100%;
    overflow-x: clip;
  }

  .site-header,
  main,
  .hero,
  .hero-layout,
  .hero-intro,
  .about-hero,
  .about-narrative,
  .about-services,
  .about-experience,
  .case-study-summary,
  .case-study-story,
  .case-study-reflection,
  .site-footer {
    min-width: 0;
    max-width: 100%;
  }

  .hero-title,
  .about-narrative h1,
  .experience-overview h2,
  .case-study-identity h1,
  .case-study-story-copy h2,
  .case-study-reflection h2,
  [data-motion-heading] {
    width: 100%;
    max-width: 100%;
    overflow-wrap: normal;
    word-break: normal;
    hyphens: none;
  }

  .hero-title {
    font-size: clamp(34px, 10vw, 39px);
    letter-spacing: -0.035em;
  }

  .hero-title > span,
  .hero-title-last {
    width: 100%;
    min-width: 0;
  }

  .about-narrative h1 {
    font-size: clamp(34px, 10vw, 42px);
    letter-spacing: -0.035em;
    text-wrap: wrap;
  }

  .experience-overview h2 {
    font-size: clamp(30px, 9vw, 36px);
    text-wrap: wrap;
  }

  .case-study-identity > h1 {
    font-size: clamp(38px, 12vw, 48px);
    line-height: 1.08;
  }

  .case-study-reflection h2 {
    font-size: clamp(28px, 8vw, 36px);
    line-height: 1.22;
  }

  .footer-content h2 {
    font-size: clamp(32px, 10vw, 40px);
    overflow-wrap: normal;
    word-break: normal;
  }

  .motion-word {
    max-width: 100%;
  }

  .sequential-typewriter .typewriter-word-unit {
    margin: 0 !important;
    padding: 0 !important;
  }

  .site-footer { height: 380px; }
  .contact-ticker { height: 30px; font-size: 9px; }
  .contact-ticker-track span { padding: 0 22px; }
  .footer-content {
    width: calc(100% - 40px);
    min-height: 330px;
    align-items: center;
    margin: 30px auto 0;
    text-align: center;
  }
  .footer-content h2 {
    display: flex;
    width: 100%;
    justify-content: center;
    font-size: 40px;
    line-height: 1.02;
    text-align: center;
  }
  .footer-typewriter > span {
    width: 100%;
    max-width: 300px;
    margin-inline: auto;
    text-align: center;
  }
  .footer-summary {
    width: min(310px, 100%);
    margin: 20px auto 0;
    font-size: 15px;
    text-align: center;
  }
  .footer-links {
    width: 100%;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
    margin-top: 24px;
    font-size: 13px;
    text-align: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  .contact-ticker-track { animation: none; }
}

/* AI-native hero signature */
.ai-morph {
  position: relative;
  display: inline-grid;
  min-width: 3.9em;
  align-items: baseline;
  color: var(--color-accent);
  font-family: "SFMono-Regular", "Roboto Mono", "IBM Plex Mono", Consolas, monospace;
  font-size: 0.78em;
  font-weight: 650;
  letter-spacing: -0.055em;
  line-height: 1;
  white-space: nowrap;
  isolation: isolate;
}

.ai-morph::before {
  position: absolute;
  z-index: -1;
  inset: -0.18em -0.24em;
  border: 1px solid color-mix(in srgb, var(--color-accent) 22%, transparent);
  background:
    linear-gradient(90deg, transparent 48%, color-mix(in srgb, var(--color-accent) 11%, transparent) 50%, transparent 52%),
    color-mix(in srgb, var(--color-bg-canvas) 86%, transparent);
  content: "";
  opacity: 0.72;
  transform: scaleX(0.98);
  transition: border-color 260ms ease, opacity 260ms ease, transform 260ms ease;
}

.ai-morph::after {
  position: absolute;
  right: -0.14em;
  bottom: 0.05em;
  width: 0.08em;
  height: 0.82em;
  background: currentColor;
  content: "";
  opacity: 0.72;
  animation: ai-caret 900ms steps(1, end) infinite;
}

.ai-morph-code {
  display: inline-block;
  min-width: 3.9em;
  text-align: left;
  text-transform: none;
  transform-origin: center;
}

.ai-morph.is-resolving .ai-morph-code {
  animation: ai-code-resolve 300ms cubic-bezier(.16, 1, .3, 1) both;
}

.ai-morph:hover::before,
.ai-morph.is-resolving::before {
  border-color: color-mix(in srgb, var(--color-accent) 58%, transparent);
  opacity: 1;
  transform: scaleX(1);
}

@keyframes ai-code-resolve {
  0% { opacity: 0.28; filter: blur(4px); transform: rotateX(68deg) translateY(0.12em); }
  55% { opacity: 0.82; filter: blur(0); transform: rotateX(-8deg) translateY(0); }
  100% { opacity: 1; filter: none; transform: rotateX(0); }
}

@keyframes ai-caret {
  0%, 52% { opacity: 0.75; }
  53%, 100% { opacity: 0; }
}

/* Desktop project focus: subdued at rest, vivid on intent. */
@media (hover: hover) and (pointer: fine) and (min-width: 1024px) {
  .project-card,
  .project-card .project-copy h3,
  .project-media,
  .project-media img,
  .project-media::after {
    transition-duration: 620ms;
    transition-timing-function: cubic-bezier(.16, 1, .3, 1);
  }

  .project-card {
    transition-property: opacity;
  }

  .project-media {
    --media-pointer-x: 50%;
    --media-pointer-y: 50%;
    overflow: hidden;
    transform: translateY(0);
    transition-property: transform;
  }

  .project-media img {
    opacity: 0.76;
    filter: brightness(0.58) saturate(0.68) contrast(0.96);
    transition-property: opacity, filter;
  }

  .project-media::after {
    position: absolute;
    inset: 0;
    background:
      radial-gradient(circle 220px at var(--media-pointer-x) var(--media-pointer-y), rgba(255, 106, 0, 0.10), transparent 66%),
      rgba(0, 0, 0, 0.22);
    content: "";
    opacity: 0.78;
    pointer-events: none;
    transition-property: opacity;
  }

  .project-card:hover .project-media,
  .project-card:focus-within .project-media {
    transform: translateY(-8px);
  }

  .project-card:hover .project-media img,
  .project-card:focus-within .project-media img {
    opacity: 1;
    filter: brightness(1) saturate(1) contrast(1);
  }

  .project-card:hover .project-media::after,
  .project-card:focus-within .project-media::after {
    opacity: 0.24;
  }

  .project-card:hover .project-copy h3,
  .project-card:focus-within .project-copy h3 {
    color: var(--color-accent);
  }

  .project-list:has(.project-card:hover) .project-card:not(:hover) {
    opacity: 0.68;
  }

  /* Case-study visuals use the same focus language without changing crop or scale. */
  .case-study-story-media,
  .case-study-story-media img,
  .case-study-story-media::after {
    transition-duration: 620ms;
    transition-timing-function: cubic-bezier(.16, 1, .3, 1);
  }

  .case-study-story-media {
    --detail-pointer-x: 50%;
    --detail-pointer-y: 50%;
    isolation: isolate;
    transform: translateY(0);
    transition-property: transform;
  }

  .case-study-story-media img {
    opacity: 0.82;
    filter: brightness(0.68) saturate(0.76) contrast(0.98);
    transition-property: opacity, filter;
  }

  .case-study-story-media::after {
    position: absolute;
    z-index: 1;
    inset: 0;
    background:
      radial-gradient(circle 260px at var(--detail-pointer-x) var(--detail-pointer-y), rgba(255, 106, 0, 0.09), transparent 68%),
      rgba(0, 0, 0, 0.16);
    content: "";
    opacity: 0.72;
    pointer-events: none;
    transition-property: opacity;
  }

  .case-study-story-media:hover,
  .case-study-story-media:focus-within {
    transform: translateY(-6px);
  }

  .case-study-story-media:hover img,
  .case-study-story-media:focus-within img {
    opacity: 1;
    filter: brightness(1) saturate(1) contrast(1);
  }

  .case-study-story-media:hover::after,
  .case-study-story-media:focus-within::after {
    opacity: 0.18;
  }
}

@media (max-width: 699px) {
  .ai-morph {
    min-width: 3.8em;
    font-size: 0.74em;
  }

  .ai-morph-code {
    min-width: 3.8em;
  }
}

/* Mobile containment: keep every module inside the viewport and keep the
   bottom navigation visually independent from the content behind it. */
@media (max-width: 699px) {
  :root {
    --layout-gutter-mobile: 16px;
  }

  body {
    overflow-x: hidden;
  }

  .site-header {
    right: 20px;
    left: 20px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.34);
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
  }

  .home-page .site-header {
    background: #fff !important;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
  }

  .site-header::before {
    display: none;
  }

  .site-header > .identity-signature {
    max-width: calc(100% - 54px);
  }

  .mobile-menu {
    right: 20px;
    width: calc(100vw - 40px);
    max-width: calc(100vw - 40px);
  }

  main,
  .hero,
  .hero-layout,
  .hero-intro,
  .capability-reel,
  .reel-canvas,
  .ai-workflow,
  .project-index,
  .project-index-inner,
  .project-card,
  .project-copy,
  .project-media {
    width: 100%;
    min-width: 0;
    max-width: 100%;
  }

  .hero,
  .project-index-inner,
  .ai-workflow {
    overflow: hidden;
  }

  .hero-title,
  .hero-summary,
  .hero-capabilities,
  .project-summary,
  .project-meta,
  .reel-header,
  .reel-scene strong,
  .reel-outcome {
    max-width: 100%;
    overflow-wrap: normal;
    word-break: normal;
  }

  .hero-title {
    font-size: clamp(34px, 10.6vw, 39px);
    line-height: 1.08;
    letter-spacing: -0.04em;
  }

  .hero-title-last {
    width: 100%;
    margin-top: 0.08em;
  }

  .hero-title > span:nth-child(2) {
    padding-bottom: 0.1em;
  }

  .hero-summary {
    font-size: 15px;
    line-height: 1.52;
  }

  .capability-reel {
    overflow: hidden;
  }

  .reel-header {
    gap: 8px;
    font-size: 7px;
    letter-spacing: 0.055em;
  }

  .reel-header > span:first-child {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .reel-live {
    flex: 0 0 auto;
    white-space: nowrap;
  }

  .reel-scene {
    overflow: hidden;
    padding: 20px;
  }

  .reel-scene strong {
    font-size: clamp(22px, 7.4vw, 26px);
  }

  .reel-ui,
  .reel-flow,
  .reel-code,
  .reel-motion-card {
    max-width: 100%;
  }

  .project-media img {
    display: block;
    width: 100%;
    height: auto;
  }

  /* Compact mobile identity bar */
  .site-header {
    right: 50%;
    left: auto;
    width: min(332px, calc(100vw - 48px));
    height: 70px;
    padding: 8px 14px 8px 9px;
    grid-template-columns: minmax(0, 1fr) 46px;
    transform: translateX(50%) !important;
  }

  .site-header.is-hidden {
    transform: translateX(50%) !important;
  }

  .site-header > .identity-signature {
    max-width: none;
    gap: 10px;
  }

  .site-header .identity-avatar {
    width: 50px;
    height: 50px;
  }

  .site-header .availability-dot,
  .mobile-menu .availability-dot {
    right: 3.5px;
    bottom: 3.5px;
    width: 7px;
    height: 7px;
    border: 0;
    box-shadow: 0 0 10px rgba(57, 230, 117, 0.48);
  }

  .site-header .identity-copy {
    width: 100%;
    align-self: stretch;
    justify-content: center;
    gap: 0;
  }

  .site-header .identity-copy strong {
    overflow: visible;
    color: #0b0c0f;
    font-size: 13px;
    font-weight: 600;
    line-height: 20px;
    white-space: nowrap;
  }

  .site-header > .identity-signature .identity-copy > span {
    display: none;
  }

  .site-header .mobile-menu-trigger {
    width: 40px;
  }

  .site-header .menu-icon {
    width: 22px;
    height: 16px;
  }

  .site-header .menu-icon span {
    width: 22px;
    height: 1.5px;
    border-radius: 2px;
    transition: top 220ms cubic-bezier(0.22, 1, 0.36, 1), width 180ms ease, transform 220ms cubic-bezier(0.22, 1, 0.36, 1), opacity 140ms ease;
  }

  .site-header .menu-icon span:first-child { top: 0; }
  .site-header .menu-icon span:nth-child(2) {
    top: 7px;
    width: 15px;
  }
  .site-header .menu-icon span:last-child { top: 14px; }
  .site-header .mobile-menu-trigger[aria-expanded="true"] .menu-icon span:first-child,
  .site-header .mobile-menu-trigger[aria-expanded="true"] .menu-icon span:last-child { top: 7px; }
  .site-header .mobile-menu-trigger[aria-expanded="true"] .menu-icon span:nth-child(2) { width: 0; }

  /* The opened menu belongs to the same white mobile navigation family. */
  .mobile-menu {
    right: 50%;
    bottom: calc(98px + env(safe-area-inset-bottom));
    width: min(332px, calc(100vw - 48px));
    max-width: min(332px, calc(100vw - 48px));
    padding: 18px;
    border: 0;
    background: #fff;
    box-shadow: 0 18px 52px rgba(0, 0, 0, 0.34);
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
    transform: translate(50%, 10px) scale(0.98);
    transform-origin: bottom center;
  }

  .mobile-menu.is-open {
    transform: translate(50%, 0) scale(1);
  }

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

  .mobile-menu .identity-avatar {
    width: 46px;
    height: 46px;
  }

  .mobile-menu .identity-copy strong {
    color: #0b0c0f;
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
  }

  .mobile-menu .identity-copy > span {
    display: block;
    width: max-content;
    max-width: none;
    overflow: visible;
    color: rgba(11, 12, 15, 0.64);
    font-size: 12px;
    line-height: 16px;
    letter-spacing: -0.015em;
    text-overflow: clip;
    white-space: nowrap;
  }

  .mobile-menu-header .identity-signature {
    width: 100%;
    min-width: 0;
    gap: 10px;
  }

  .mobile-menu-header .identity-copy {
    width: calc(100% - 56px);
    min-width: 0;
    flex: 1 1 auto;
    overflow: visible;
  }

  .mobile-menu-close .close-icon span {
    height: 2px;
    border-radius: 2px;
  }

  .mobile-menu-links {
    padding-top: 0;
    border-top: 0;
  }

  .mobile-menu-links a {
    border-bottom-color: rgba(11, 12, 15, 0.13);
    color: rgba(11, 12, 15, 0.62);
  }

  .mobile-menu-links a:hover,
  .mobile-menu-links a.is-active {
    color: #0b0c0f;
  }

  .mobile-menu-links a.is-active span:last-child {
    color: var(--color-accent-on-light);
  }

  .mobile-menu-contact > p {
    color: #0b0c0f;
    font-weight: 700;
  }

  .mobile-menu :where(a[href], button):focus-visible,
  .site-header :where(a[href], button):focus-visible {
    outline-color: var(--color-accent-on-light);
  }

  .mobile-menu-links a span:last-child {
    color: rgba(11, 12, 15, 0.45);
  }

  .mobile-menu-contact-links {
    color: rgba(11, 12, 15, 0.68);
  }

  .mobile-menu-contact > .button {
    border-color: #0b0c0f;
    background: #0b0c0f;
    color: #fff;
  }
}

/* Responsive navigation guardrails: keep the trigger and its menu inside
   their own breakpoint canvas instead of creating an implicit third column. */
@media (min-width: 700px) and (max-width: 1023px) {
  .site-header {
    grid-template-columns: minmax(0, 1fr) 44px;
  }

  .site-header .mobile-menu-trigger {
    display: inline-flex;
    grid-column: 2;
  }

  .mobile-menu {
    top: 76px;
    right: var(--layout-gutter-tablet);
    width: min(320px, calc(100vw - (2 * var(--layout-gutter-tablet))));
    border: 0;
    background: #fff;
    box-shadow: 0 18px 52px rgba(0, 0, 0, 0.34);
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
  }

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

  .mobile-menu-links {
    border-top: 0;
  }

  .mobile-menu-links a {
    border-bottom-color: rgba(11, 12, 15, 0.13);
    color: rgba(11, 12, 15, 0.62);
  }

  .mobile-menu-links a:hover,
  .mobile-menu-links a.is-active {
    color: #0b0c0f;
  }

  .mobile-menu-links a span:last-child {
    color: rgba(11, 12, 15, 0.45);
  }

  .mobile-menu-links a.is-active span:last-child {
    color: var(--color-accent-on-light);
  }

  .mobile-menu-contact > p {
    color: #0b0c0f;
    font-weight: 700;
  }

  .mobile-menu-contact > .button {
    width: max-content;
    border-color: #0b0c0f;
    background: #0b0c0f;
    color: #fff;
  }

  .mobile-menu-contact-links {
    color: rgba(11, 12, 15, 0.68);
  }
}

@media (max-width: 699px) {
  .site-header .mobile-menu-trigger {
    position: relative;
    z-index: 2;
    display: inline-flex;
    grid-column: 2;
  }

  .mobile-menu {
    right: auto;
    left: 50%;
    max-height: calc(100dvh - 132px);
    overflow-y: auto;
    transform: translate(-50%, 10px) scale(0.98);
    transform-origin: bottom center;
  }

  .mobile-menu.is-open {
    transform: translate(-50%, 0) scale(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  .ai-morph::after { animation: none; opacity: 0.72; }
  .ai-morph-code { animation: none !important; }
}
