:root {
  --ink-950: #07111f;
  --ink-900: #0b1728;
  --ink-850: #102138;
  --ink-800: #152a45;
  --steel-700: #253b55;
  --steel-500: #7f92a8;
  --steel-300: #a9b8c9;
  --cloud-50: #f5f8fc;
  --azure-500: #4ca7ff;
  --azure-400: #76bbff;
  --azure-700: #0f5e9c;
  --teal-500: #43c79e;
  --purple-mh: #3614c4;
  --border: rgba(37, 59, 85, .72);
  --border-subtle: rgba(37, 59, 85, .42);
  --shadow-card: 0 24px 80px rgba(0, 0, 0, .28);
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --radius-2xl: 48px;
  --radius-pill: 999px;
  --container: 1280px;
  --gutter: clamp(1.25rem, 4vw, 4rem);
  --header-height: 5rem;
  --ease-out: cubic-bezier(.2, .72, .2, 1);
  --motion-fast: 200ms;
  --motion-standard: 420ms;
  color-scheme: dark;
}

*, *::before, *::after { box-sizing: border-box; }
html { background: var(--ink-950); scroll-behavior: smooth; scroll-padding-top: calc(var(--header-height) + 1.5rem); }
body { margin: 0; min-width: 0; overflow-x: clip; background: var(--ink-950); color: var(--cloud-50); font-family: Manrope, Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; font-size: 1rem; line-height: 1.65; text-rendering: optimizeLegibility; }
body::before { content: ""; position: fixed; inset: 0; z-index: -2; pointer-events: none; background: linear-gradient(180deg, rgba(11, 23, 40, .12), rgba(7, 17, 31, 0) 35%); }
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration-thickness: .08em; text-underline-offset: .2em; }
button, a { touch-action: manipulation; }
button { color: inherit; font: inherit; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { margin-bottom: 1.5rem; letter-spacing: -.04em; text-wrap: balance; }
h1 { font-size: clamp(3rem, 7.1vw, 6.65rem); font-weight: 650; line-height: .98; }
h2 { max-width: 16ch; font-size: clamp(2.35rem, 5vw, 4rem); font-weight: 620; line-height: 1.04; }
h3 { font-size: clamp(1.55rem, 2.5vw, 2.1rem); font-weight: 600; line-height: 1.12; }
p { color: var(--steel-300); }
::selection { background: var(--azure-500); color: var(--ink-950); }
:focus-visible { outline: 2px solid var(--azure-400); outline-offset: 4px; border-radius: 4px; }

.container { width: min(100%, calc(var(--container) + 2 * var(--gutter))); margin-inline: auto; padding-inline: var(--gutter); }
.section { position: relative; padding-block: clamp(5rem, 10vw, 10rem); }
.section-heading { grid-column: 1 / 6; }
.section-heading-wide { max-width: 64rem; margin-bottom: clamp(3rem, 7vw, 5.5rem); }
.section-heading-wide h2 { max-width: 15ch; }
.section-lead, .lead { max-width: 66ch; color: var(--steel-300); font-size: clamp(1.125rem, 1.6vw, 1.42rem); font-weight: 430; line-height: 1.55; }
.eyebrow, .meta-label { margin-bottom: 1rem; color: var(--azure-400); font-family: "IBM Plex Mono", ui-monospace, SFMono-Regular, Consolas, monospace; font-size: .75rem; font-weight: 550; letter-spacing: .12em; line-height: 1.35; text-transform: uppercase; }
.meta-label { color: var(--steel-500); }
.sr-only { position: absolute !important; width: 1px !important; height: 1px !important; padding: 0 !important; margin: -1px !important; overflow: hidden !important; clip: rect(0, 0, 0, 0) !important; white-space: nowrap !important; border: 0 !important; }
.skip-link { position: fixed; top: 1rem; left: 1rem; z-index: 1000; padding: .75rem 1rem; border-radius: var(--radius-sm); background: var(--azure-500); color: var(--ink-950); font-weight: 700; transform: translateY(-200%); transition: transform var(--motion-fast) var(--ease-out); }
.skip-link:focus { transform: translateY(0); }
.icon { width: 1.25rem; height: 1.25rem; flex: 0 0 auto; }

.button { display: inline-flex; min-height: 3rem; align-items: center; justify-content: center; gap: .65rem; padding: .72rem 1.45rem; border: 1px solid transparent; border-radius: var(--radius-md); font-size: .94rem; font-weight: 680; line-height: 1.2; text-decoration: none; transition: color var(--motion-fast) ease-out, background-color var(--motion-fast) ease-out, border-color var(--motion-fast) ease-out, transform 120ms ease-out; }
.button .icon { transition: transform var(--motion-fast) var(--ease-out); }
.button:hover .icon { transform: translateX(.22rem); }
.button:active { transform: scale(.985); }
.button-primary { background: var(--azure-500); color: var(--ink-950); }
.button-primary:hover { background: var(--azure-400); }
.button-secondary { border-color: var(--border); background: rgba(11, 23, 40, .58); color: var(--cloud-50); }
.button-secondary:hover { border-color: var(--azure-400); background: var(--ink-850); }
.button-small { min-height: 2.75rem; padding: .65rem 1rem; border-color: var(--border); background: rgba(11, 23, 40, .62); }
.button-on-purple { border-color: rgba(255, 255, 255, .32); background: #fff; color: #170660; }
.button-on-purple:hover { background: rgba(255, 255, 255, .9); }

.site-header { position: fixed; top: 0; right: 0; left: 0; z-index: 100; min-height: var(--header-height); border-bottom: 1px solid transparent; transition: background-color var(--motion-standard) var(--ease-out), border-color var(--motion-standard) var(--ease-out), backdrop-filter var(--motion-standard) var(--ease-out); }
.site-header.is-scrolled, .site-header.menu-open { border-color: var(--border-subtle); background: rgba(7, 17, 31, .84); backdrop-filter: blur(18px); }
.header-inner { display: flex; width: min(100%, calc(var(--container) + 2 * var(--gutter))); min-height: var(--header-height); align-items: center; gap: 1.5rem; margin-inline: auto; padding-inline: var(--gutter); }
.wordmark { display: inline-flex; min-height: 2.75rem; align-items: center; gap: .75rem; font-weight: 680; letter-spacing: -.03em; text-decoration: none; white-space: nowrap; }
.wordmark > span:last-child > span, .footer-wordmark > span { color: var(--azure-500); }
.monogram { display: none; width: 2.5rem; height: 2.5rem; align-items: center; justify-content: center; border: 1px solid var(--border); border-radius: .75rem; color: var(--azure-400); font-family: ui-monospace, monospace; font-size: .78rem; letter-spacing: -.05em; }
.desktop-navigation { display: flex; flex: 1; align-items: center; justify-content: flex-end; gap: 1rem; }
.desktop-navigation > nav { flex: 1; }
.site-nav { display: flex; align-items: center; justify-content: flex-end; gap: clamp(.8rem, 1.7vw, 1.6rem); }
.site-nav a { position: relative; display: inline-flex; min-width: 2.75rem; min-height: 2.75rem; align-items: center; justify-content: center; color: var(--steel-300); font-size: .86rem; font-weight: 570; text-decoration: none; }
.site-nav a::after { content: ""; position: absolute; right: 0; bottom: .3rem; left: 0; height: 1px; background: var(--azure-400); transform: scaleX(0); transform-origin: left; transition: transform var(--motion-fast) var(--ease-out); }
.site-nav a:hover, .site-nav a[aria-current="location"] { color: var(--cloud-50); }
.site-nav a:hover::after, .site-nav a[aria-current="location"]::after { transform: scaleX(1); }
.language-switch { display: inline-flex; min-width: 4.2rem; min-height: 2.75rem; align-items: center; justify-content: center; gap: .45rem; padding-inline: .7rem; border: 1px solid var(--border); border-radius: var(--radius-pill); color: var(--steel-300); font-family: ui-monospace, monospace; font-size: .74rem; text-decoration: none; transition: border-color var(--motion-fast), color var(--motion-fast), background-color var(--motion-fast); }
.language-switch:hover { border-color: var(--azure-400); background: var(--ink-850); color: var(--cloud-50); }
.language-flag { width: 1.25rem; height: .84rem; flex: 0 0 auto; overflow: hidden; border-radius: .12rem; box-shadow: 0 0 0 1px rgba(255, 255, 255, .28); }
.mobile-actions, .mobile-menu { display: none; }
.no-js .menu-toggle { display: none; }

.hero { position: relative; min-height: 100vh; min-height: 100svh; overflow: hidden; padding-block: calc(var(--header-height) + clamp(3rem, 8vh, 7rem)) clamp(3rem, 6vh, 5rem); }
.hero-ambient { position: absolute; inset: -20%; pointer-events: none; background: radial-gradient(circle at var(--ambient-x, 72%) var(--ambient-y, 38%), rgba(76, 167, 255, .18), transparent 30%); opacity: .8; transition: opacity var(--motion-standard); }
.hero-grid { position: relative; display: grid; min-height: calc(100svh - var(--header-height) - clamp(6rem, 14vh, 12rem)); grid-template-columns: repeat(12, minmax(0, 1fr)); align-items: center; gap: 1.5rem; }
.hero-copy { position: relative; z-index: 2; grid-column: 1 / 10; }
.hero-eyebrow { margin-bottom: clamp(1.5rem, 3vh, 2.5rem); }
.hero h1 { max-width: 16em; margin-bottom: 2rem; font-size: clamp(3rem, 5.7vw, 5rem); }
.hero h1 span { display: block; }
.hero h1 span:last-child { color: var(--steel-300); }
.hero-lead { max-width: 58rem; margin-bottom: 2rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .75rem; }
.hero-meta { display: flex; align-items: center; gap: .65rem; margin: 2rem 0 0; color: var(--steel-500); font-family: ui-monospace, monospace; font-size: .76rem; }
.status-dot { width: .48rem; height: .48rem; border-radius: 50%; background: var(--teal-500); box-shadow: 0 0 0 4px rgba(67, 199, 158, .1); }
.depth-scene { --depth-rx: 0deg; --depth-ry: 0deg; --depth-light-x: 62%; --depth-light-y: 36%; position: absolute; top: 50%; right: -2.5%; z-index: 1; width: min(45vw, 36rem); aspect-ratio: 1; pointer-events: none; perspective: 1100px; transform: translateY(-45%); }
.depth-atmosphere { position: absolute; inset: -12%; border-radius: 50%; background: radial-gradient(circle at var(--depth-light-x) var(--depth-light-y), rgba(118, 187, 255, .23), rgba(76, 167, 255, .07) 27%, transparent 62%); filter: blur(10px); opacity: .9; transition: opacity var(--motion-standard); }
.depth-float { position: absolute; inset: 5%; transform-style: preserve-3d; }
.depth-rig { position: absolute; inset: 0; transform-style: preserve-3d; transform: rotateX(calc(-6deg + var(--depth-ry))) rotateY(calc(9deg + var(--depth-rx))) rotateZ(-1deg); transition: transform 140ms linear; }
.depth-layer { position: absolute; inset: 17%; transform-style: preserve-3d; transition: transform 760ms var(--ease-out), opacity 520ms var(--ease-out); }
.depth-layer::before, .depth-layer::after { content: ""; position: absolute; clip-path: polygon(10% 9%, 69% 0, 94% 16%, 100% 68%, 79% 95%, 25% 100%, 0 74%, 5% 27%); }
.depth-layer::before { inset: 0; background: linear-gradient(145deg, rgba(118, 187, 255, .5), rgba(37, 59, 85, .28) 32%, rgba(118, 187, 255, .15) 72%, rgba(76, 167, 255, .46)); box-shadow: 0 35px 80px rgba(0, 0, 0, .26); }
.depth-layer::after { inset: 1px; background: radial-gradient(circle at var(--depth-light-x) var(--depth-light-y), rgba(118, 187, 255, .13), transparent 38%), linear-gradient(145deg, rgba(16, 33, 56, .84), rgba(7, 17, 31, .48)); }
.depth-layer-back { opacity: .38; transform: translateZ(-86px) scale(1.09) rotateZ(-5deg); }
.depth-layer-far { opacity: .52; transform: translateZ(-48px) scale(1.03) rotateZ(-2.5deg); }
.depth-layer-mid { opacity: .72; transform: translateZ(-12px) scale(.97) rotateZ(1.4deg); }
.depth-layer-near { opacity: .82; transform: translateZ(28px) scale(.9) rotateZ(-1.2deg); }
.depth-layer-front { opacity: .9; transform: translateZ(62px) scale(.82) rotateZ(2deg); }
.hero.is-depth-open .depth-layer-back { transform: translate3d(-7px, 6px, -132px) scale(1.12) rotateZ(-7deg); }
.hero.is-depth-open .depth-layer-far { transform: translate3d(-4px, 3px, -72px) scale(1.05) rotateZ(-3.5deg); }
.hero.is-depth-open .depth-layer-mid { transform: translateZ(-16px) scale(.97) rotateZ(1.8deg); }
.hero.is-depth-open .depth-layer-near { transform: translate3d(4px, -3px, 52px) scale(.88) rotateZ(-2deg); }
.hero.is-depth-open .depth-layer-front { transform: translate3d(8px, -6px, 108px) scale(.78) rotateZ(3.2deg); }
.depth-connectors { position: absolute; inset: 12%; width: 76%; height: 76%; overflow: visible; color: var(--azure-400); opacity: .22; transform: translateZ(80px) scale(.72); transition: opacity 420ms var(--ease-out), transform 720ms var(--ease-out); }
.depth-connectors path { stroke: currentColor; stroke-width: 1.15; stroke-dasharray: 7 12; vector-effect: non-scaling-stroke; animation: depth-flow 12s linear infinite paused; }
.depth-connectors circle { fill: var(--azure-400); filter: drop-shadow(0 0 5px rgba(118, 187, 255, .9)); }
.hero.is-depth-open .depth-connectors { opacity: .76; transform: translateZ(136px) scale(1); }
.hero.is-depth-open .depth-connectors path { animation-play-state: running; }
.depth-module { position: absolute; top: 50%; left: 50%; display: flex; width: 7.2rem; min-height: 4rem; flex-direction: column; justify-content: flex-end; padding: .7rem .75rem; border: 1px solid rgba(118, 187, 255, .28); border-radius: .8rem; background: linear-gradient(145deg, rgba(21, 42, 69, .95), rgba(7, 17, 31, .9)); box-shadow: 0 18px 36px rgba(0, 0, 0, .3), inset 0 0 20px rgba(76, 167, 255, .04); opacity: 0; transform: translate3d(-50%, -50%, 122px) scale(.16); transition: opacity 280ms ease-out, transform 680ms var(--ease-out), border-color 420ms ease-out; }
.depth-module span, .depth-module small { color: var(--steel-500); font-family: "IBM Plex Mono", ui-monospace, monospace; font-size: .5rem; letter-spacing: .11em; line-height: 1.2; }
.depth-module strong { margin: .16rem 0 .1rem; color: var(--cloud-50); font-size: .72rem; font-weight: 650; letter-spacing: .05em; line-height: 1; }
.hero.is-depth-open .depth-module { border-color: rgba(118, 187, 255, .5); opacity: .9; }
.hero.is-depth-open .depth-module-ui { transform: translate3d(-135%, -210%, 166px) rotateZ(-4deg); }
.hero.is-depth-open .depth-module-state { transform: translate3d(-145%, -38%, 142px) rotateZ(-1.5deg); }
.hero.is-depth-open .depth-module-api { transform: translate3d(54%, -215%, 158px) rotateZ(3deg); }
.hero.is-depth-open .depth-module-data { transform: translate3d(63%, -28%, 136px) rotateZ(2deg); }
.hero.is-depth-open .depth-module-trust { transform: translate3d(-41%, 145%, 176px) rotateZ(-2deg); }
.depth-module-state { transition-delay: 35ms; }
.depth-module-api { transition-delay: 70ms; }
.depth-module-data { transition-delay: 105ms; }
.depth-module-trust { transition-delay: 140ms; }
.depth-scan { position: absolute; top: 19%; bottom: 19%; left: 50%; width: 1px; background: linear-gradient(transparent, rgba(118, 187, 255, .15) 15%, rgba(118, 187, 255, .85) 50%, rgba(118, 187, 255, .15) 85%, transparent); box-shadow: 0 0 20px rgba(76, 167, 255, .35); opacity: .46; transform: translateZ(92px) translateX(-50%); }
.depth-core { position: absolute; top: 50%; left: 50%; display: grid; width: 6.1rem; height: 6.1rem; place-items: center; border: 1px solid rgba(118, 187, 255, .48); background: radial-gradient(circle at var(--depth-light-x) var(--depth-light-y), rgba(118, 187, 255, .28), rgba(16, 33, 56, .94) 48%, rgba(7, 17, 31, .98)); clip-path: polygon(28% 0, 72% 0, 100% 28%, 100% 72%, 72% 100%, 28% 100%, 0 72%, 0 28%); box-shadow: inset 0 0 28px rgba(76, 167, 255, .13), 0 20px 50px rgba(0, 0, 0, .38); transform: translate3d(-50%, -50%, 128px); transition: transform 760ms var(--ease-out); }
.hero.is-depth-open .depth-core { transform: translate3d(-50%, -50%, 178px) scale(1.04); }
.depth-core-orbit { position: absolute; inset: 14%; border: 1px solid rgba(118, 187, 255, .24); border-radius: 50%; }
.hero.is-depth-open .depth-core-orbit { animation: core-orbit 8s linear infinite; }
.depth-core-orbit::before { content: ""; position: absolute; top: 50%; left: -3px; width: 5px; height: 5px; border-radius: 50%; background: var(--azure-400); box-shadow: 0 0 12px rgba(118, 187, 255, .9); }
.depth-signature { position: relative; color: var(--cloud-50); font-family: "IBM Plex Mono", ui-monospace, monospace; font-size: .83rem; font-weight: 600; letter-spacing: .16em; text-shadow: 0 0 18px rgba(118, 187, 255, .55); }
.depth-shadow { position: absolute; right: 21%; bottom: 9%; left: 21%; height: 9%; border-radius: 50%; background: rgba(0, 0, 0, .48); filter: blur(20px); opacity: .58; transform: rotate(-3deg); }
@keyframes depth-flow { to { stroke-dashoffset: -210; } }
@keyframes core-orbit { to { transform: rotate(360deg); } }
.scroll-cue { position: absolute; bottom: 0; left: var(--gutter); display: flex; min-height: 2.75rem; align-items: center; gap: 1rem; color: var(--steel-500); font-family: ui-monospace, monospace; font-size: .68rem; letter-spacing: .08em; text-decoration: none; text-transform: uppercase; }
.scroll-line { width: 4rem; height: 1px; overflow: hidden; background: var(--border); }
.scroll-line::after { content: ""; display: block; width: 45%; height: 100%; background: var(--azure-400); animation: scroll-line 2s var(--ease-out) infinite; }
@keyframes scroll-line { from { transform: translateX(-120%); } to { transform: translateX(250%); } }

.bridge { min-height: 160vh; padding-top: clamp(6rem, 12vw, 12rem); }
.bridge-intro { display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); gap: 1.5rem; }
.bridge-intro .eyebrow { grid-column: 1 / 5; }
.bridge-intro h2 { grid-column: 5 / -1; max-width: 15ch; }
.bridge-intro .section-lead { grid-column: 5 / 11; }
.bridge-stage { position: sticky; top: 16vh; display: grid; height: 68vh; min-height: 34rem; grid-template-columns: 1fr 5rem 1fr; align-items: center; gap: 1.25rem; }
.bridge-card { position: relative; min-height: 20rem; padding: clamp(1.5rem, 4vw, 3rem); overflow: hidden; border: 1px solid var(--border); border-radius: var(--radius-xl); background: var(--ink-900); box-shadow: var(--shadow-card); transition: border-color var(--motion-fast); }
.bridge-card::after { content: ""; position: absolute; inset: 0; pointer-events: none; border-radius: inherit; background: linear-gradient(135deg, rgba(118, 187, 255, .08), transparent 38%); }
.bridge-card h3 { margin-top: clamp(4rem, 8vh, 7rem); }
.bridge-left { transform: translate3d(var(--bridge-x, 0), var(--bridge-y-neg, 0), 0); }
.bridge-right { transform: translate3d(var(--bridge-x-neg, 0), var(--bridge-y, 0), 0); }
.bridge-center { display: grid; width: 3.5rem; height: 3.5rem; place-items: center; justify-self: center; border: 1px solid var(--border); border-radius: 50%; background: var(--ink-950); color: var(--azure-400); font-family: ui-monospace, monospace; }
.bridge-result { position: absolute; right: 0; bottom: 2vh; left: 0; margin: 0; color: var(--cloud-50); font-size: clamp(1.1rem, 2vw, 1.5rem); font-weight: 620; text-align: center; opacity: var(--bridge-result, .3); }

.profile { border-top: 1px solid var(--border-subtle); }
.profile-grid { display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); align-items: start; gap: 2rem 1.5rem; }
.profile-intro { min-width: 0; grid-column: 1 / 6; }
.profile-intro .section-heading { grid-column: auto; }
.profile-portrait { position: relative; width: min(100%, 21rem); aspect-ratio: 503 / 659; margin-top: clamp(2rem, 4vw, 3.5rem); overflow: hidden; border: 1px solid var(--border); border-radius: var(--radius-xl); background: var(--ink-900); box-shadow: var(--shadow-card); }
.profile-portrait::after { content: ""; position: absolute; inset: 0; pointer-events: none; border-radius: inherit; background: linear-gradient(145deg, rgba(118, 187, 255, .1), transparent 34%); box-shadow: inset 0 0 0 1px rgba(245, 248, 252, .035); }
.profile-portrait img { width: 100%; height: 100%; object-fit: cover; object-position: center top; filter: saturate(.88) contrast(1.03); }
.profile-details { min-width: 0; grid-column: 6 / -1; }
.profile-copy .section-lead { margin-bottom: 2.5rem; }
.engagements { padding-top: 1.5rem; border-top: 1px solid var(--border-subtle); }
.certifications { margin-top: 4rem; }
.certification-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
.certification-card { display: grid; min-height: 10rem; grid-template-columns: auto 1fr; align-items: end; gap: 1.25rem; padding: 1.5rem; border: 1px solid var(--border-subtle); border-radius: var(--radius-lg); background: var(--ink-900); transition: border-color var(--motion-fast), background-color var(--motion-fast), transform var(--motion-fast); }
.certification-card:hover { border-color: var(--azure-400); background: var(--ink-850); transform: translateY(-3px); }
.cert-acronym { color: var(--azure-400); font-family: ui-monospace, monospace; font-size: 1.1rem; }
.certification-card h3 { margin-bottom: .3rem; font-size: 1rem; letter-spacing: -.01em; }
.certification-card p { margin: 0; color: var(--steel-500); font-size: .82rem; }

.tag-list { display: flex; flex-wrap: wrap; gap: .5rem; margin: 0; padding: 0; list-style: none; }
.tag-list li { display: inline-flex; min-height: 2rem; align-items: center; padding: .3rem .7rem; border: 1px solid var(--border-subtle); border-radius: var(--radius-pill); color: var(--steel-300); font-family: ui-monospace, monospace; font-size: .7rem; }
.services { background: rgba(11, 23, 40, .36); }
.services-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); align-items: start; gap: 1.5rem; }
.service-card { min-width: 0; padding: clamp(1.5rem, 3vw, 2.5rem); border: 1px solid var(--border-subtle); border-radius: var(--radius-xl); background: var(--ink-900); box-shadow: var(--shadow-card); transition: border-color var(--motion-fast), background-color var(--motion-fast), transform var(--motion-fast); }
.service-card:nth-child(even) { margin-top: 4rem; }
.service-card:hover { border-color: var(--border); background: var(--ink-850); transform: translateY(-4px); }
.service-top { display: flex; align-items: baseline; justify-content: space-between; gap: 1rem; margin-bottom: clamp(3rem, 8vw, 6rem); }
.service-top .eyebrow { margin: 0; text-align: right; }
.service-index { color: var(--steel-500); font-family: ui-monospace, monospace; font-size: .8rem; }
.service-card > p { max-width: 58ch; }
.capability-list { display: grid; gap: .7rem; margin: 2rem 0; padding: 1.5rem 0; border-block: 1px solid var(--border-subtle); list-style: none; }
.capability-list li { display: flex; align-items: flex-start; gap: .75rem; color: var(--steel-300); font-size: .93rem; }
.capability-list li span { width: .4rem; height: .4rem; flex: 0 0 auto; margin-top: .55rem; border: 1px solid var(--azure-400); border-radius: 50%; }
.when { margin-bottom: 2rem; }
.when p:last-child { margin: 0; font-size: .9rem; }
.legal-note { max-width: 68ch; margin: 3rem auto 0; padding-left: 1rem; border-left: 2px solid var(--azure-700); color: var(--steel-500); font-size: .8rem; }

.process-list { position: relative; display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; margin: 0; padding: 0; list-style: none; }
.process-list::before { content: ""; position: absolute; top: 1.25rem; right: 0; left: 0; height: 1px; background: var(--border); }
.process-step { position: relative; padding: 4rem 1.5rem 0 0; }
.process-step::before { content: ""; position: absolute; top: .9rem; left: 0; width: .7rem; height: .7rem; border: 2px solid var(--ink-950); border-radius: 50%; background: var(--steel-700); box-shadow: 0 0 0 1px var(--border); transition: background-color var(--motion-fast), box-shadow var(--motion-fast); }
.process-step.is-active::before { background: var(--azure-400); box-shadow: 0 0 0 5px rgba(76, 167, 255, .12); }
.process-number { color: var(--steel-500); font-family: ui-monospace, monospace; font-size: .72rem; }
.process-step h3 { margin: .6rem 0 .75rem; font-size: 1.2rem; letter-spacing: -.02em; }
.process-step p { max-width: 28ch; margin: 0; font-size: .9rem; }

.work { background: rgba(11, 23, 40, .36); }
.case-list { display: grid; gap: 1.5rem; }
.case-card { position: sticky; top: calc(var(--header-height) + 1.5rem + var(--case-offset)); min-height: 22rem; padding: clamp(1.5rem, 4vw, 3.25rem); border: 1px solid var(--border); border-radius: var(--radius-xl); background: var(--ink-900); box-shadow: 0 -8px 28px rgba(0, 0, 0, .16), var(--shadow-card); }
.case-meta { display: flex; justify-content: space-between; gap: 1rem; color: var(--steel-500); font-family: ui-monospace, monospace; font-size: .7rem; letter-spacing: .06em; }
.case-content { display: grid; grid-template-columns: 6rem 1fr; gap: 2rem; margin-top: clamp(4rem, 9vw, 7rem); }
.case-number { color: var(--steel-700); font-family: ui-monospace, monospace; font-size: 2.5rem; }
.case-content h3 { max-width: 22ch; }
.case-content p { max-width: 60ch; }

.network { padding-block: clamp(6rem, 12vw, 12rem); }
.monkey-feature { position: relative; display: grid; min-height: 38rem; grid-template-columns: 4fr 7fr; align-items: center; gap: clamp(2rem, 7vw, 7rem); overflow: hidden; padding: clamp(2rem, 6vw, 6rem); border-radius: var(--radius-2xl); background: var(--purple-mh); box-shadow: 0 40px 100px rgba(54, 20, 196, .2); }
.monkey-glow { position: absolute; top: -20%; left: -10%; width: 55%; aspect-ratio: 1; border: 1px solid rgba(255, 255, 255, .16); border-radius: 50%; box-shadow: 0 0 0 5rem rgba(255, 255, 255, .025), 0 0 0 10rem rgba(255, 255, 255, .02); }
.monkey-brand, .monkey-copy { position: relative; z-index: 1; }
.monkey-brand { display: grid; min-height: 15rem; place-items: center; padding: 2.5rem; border: 1px solid rgba(255, 255, 255, .7); border-radius: var(--radius-xl); background: rgba(255, 255, 255, .96); }
.monkey-brand img { width: min(100%, 19.25rem); height: auto; }
.monkey-copy .eyebrow, .monkey-copy p { color: rgba(255, 255, 255, .78); }
.monkey-copy h2 { max-width: 13ch; color: #fff; }
.monkey-copy > p:not(.eyebrow) { max-width: 58ch; font-size: 1.05rem; }
.monkey-copy .button { margin-top: 1rem; }

.workspace { display: none; overflow: hidden; padding-top: clamp(4rem, 8vw, 8rem); background: linear-gradient(180deg, rgba(11, 23, 40, 0), rgba(11, 23, 40, .46) 28%, rgba(11, 23, 40, .2)); }

@media (min-width: 1024px) {
  .workspace { display: block; }
  .desktop-device { width: min(100%, 74rem); margin: clamp(3rem, 6vw, 5rem) auto 0; }
  .desktop-shell { position: relative; }
  .desktop-screen { position: relative; width: 100%; aspect-ratio: 16 / 9; overflow: hidden; border: 1px solid rgba(169, 184, 201, .34); border-radius: 1.45rem; background: #121d2b; color: #111927; box-shadow: 0 34px 90px rgba(0, 0, 0, .34), 0 0 0 1px rgba(7, 17, 31, .72); cursor: url("/assets/icons/ui/cursor-dark.svg") 3 2, default; isolation: isolate; user-select: none; }
  .desktop-screen button, .desktop-screen input { cursor: inherit; }
  .desktop-stage { position: absolute; inset: 0; overflow: hidden; }
  .desktop-wallpaper { position: absolute; inset: 0; overflow: hidden; background: radial-gradient(circle at 80% 12%, rgba(143, 111, 255, .84), transparent 30%), radial-gradient(circle at 18% 88%, rgba(31, 160, 218, .8), transparent 32%), linear-gradient(145deg, #071528 2%, #142b4a 46%, #25204c 100%); }
  .desktop-wallpaper::after { content: ""; position: absolute; inset: 0; background: linear-gradient(120deg, transparent 22%, rgba(255, 255, 255, .07) 46%, transparent 68%); opacity: .7; }
  .desktop-wallpaper span { position: absolute; display: block; border: 1px solid rgba(211, 230, 255, .16); border-radius: 46% 54% 64% 36% / 45% 34% 66% 55%; transform: rotate(-18deg); }
  .desktop-wallpaper span:nth-child(1) { top: -36%; right: -9%; width: 60%; aspect-ratio: 1; box-shadow: inset 0 0 80px rgba(135, 103, 255, .2), 0 0 0 5rem rgba(255, 255, 255, .018); }
  .desktop-wallpaper span:nth-child(2) { bottom: -44%; left: 9%; width: 67%; aspect-ratio: 1; border-color: rgba(86, 196, 255, .19); box-shadow: inset 0 0 90px rgba(67, 199, 158, .08), 0 0 0 7rem rgba(255, 255, 255, .014); transform: rotate(22deg); }
  .desktop-wallpaper span:nth-child(3) { top: 23%; left: 43%; width: 27%; aspect-ratio: 1; border-color: rgba(255, 255, 255, .11); transform: rotate(47deg); }
  .desktop-menubar { position: absolute; top: 0; right: 0; left: 0; z-index: 300; display: grid; height: 2.2rem; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 1rem; padding: 0 .8rem; border-bottom: 1px solid rgba(255, 255, 255, .38); background: rgba(242, 246, 251, .76); color: #182231; font-size: .7rem; line-height: 1; backdrop-filter: blur(20px) saturate(1.3); }
  .desktop-menu-brand { display: flex; align-items: center; gap: .5rem; }
  .desktop-menu-brand > span { display: grid; width: 1.35rem; height: 1.35rem; place-items: center; border-radius: .45rem; background: #152a45; color: #f5f8fc; font-family: ui-monospace, monospace; font-size: .55rem; }
  .desktop-menubar strong { font-size: .7rem; letter-spacing: -.01em; }
  .desktop-menubar p { margin: 0; color: #48586c; font-size: .65rem; }
  .desktop-menubar time { justify-self: end; font-variant-numeric: tabular-nums; font-weight: 650; }
  .desktop-canvas { position: absolute; inset: 2.2rem 0 0; overflow: hidden; }
  .desktop-icon { position: absolute; z-index: 5; left: 0; top: 0; display: flex; width: 5.4rem; min-height: 6.1rem; align-items: center; flex-direction: column; gap: .25rem; padding: .35rem .2rem; border: 1px solid transparent; border-radius: .85rem; background: transparent; color: #f5f8fc; font-size: .7rem; line-height: 1.2; text-align: center; text-shadow: 0 1px 4px rgba(0, 0, 0, .85); touch-action: none; transform: translate3d(var(--icon-x), var(--icon-y), 0); transition: border-color 140ms ease-out, background-color 140ms ease-out, box-shadow 140ms ease-out; }
  .desktop-icon[data-app="computer"] { --icon-x: 28px; --icon-y: 42px; }
  .desktop-icon[data-app="terminal"] { --icon-x: 28px; --icon-y: 154px; }
  .desktop-icon[data-app="projects"] { --icon-x: 28px; --icon-y: 266px; }
  .desktop-icon[data-app="trash"] { --icon-x: 0px; --icon-y: 0px; left: calc(100% - 112px); top: calc(100% - 124px); }
  .desktop-icon:hover, .desktop-icon.is-selected { border-color: rgba(255, 255, 255, .28); background: rgba(5, 13, 25, .34); box-shadow: 0 8px 22px rgba(0, 0, 0, .12); }
  .desktop-icon.is-dragging { z-index: 290; border-color: rgba(118, 187, 255, .65); background: rgba(7, 17, 31, .48); box-shadow: 0 14px 30px rgba(0, 0, 0, .24); transition: none; }
  .desktop-icon.is-drop-target { border-color: rgba(118, 187, 255, .8); background: rgba(76, 167, 255, .22); box-shadow: 0 0 0 3px rgba(76, 167, 255, .13), 0 12px 28px rgba(0, 0, 0, .18); }
  .desktop-icon-art { width: 3.9rem; height: 3.9rem; flex: 0 0 auto; overflow: visible; filter: drop-shadow(0 8px 8px rgba(0, 0, 0, .25)); pointer-events: none; }
  .desktop-icon > span { max-width: 100%; padding: .08rem .25rem; border-radius: .3rem; pointer-events: none; }
  .desktop-icon.is-selected > span { background: #237dd1; }
  .desktop-window { position: absolute; z-index: 20; left: var(--window-x); top: var(--window-y); width: min(60%, 36rem); min-width: 28rem; overflow: hidden; border: 1px solid rgba(255, 255, 255, .68); border-radius: .85rem; background: rgba(245, 248, 252, .96); color: #172130; box-shadow: 0 28px 70px rgba(0, 0, 0, .38), 0 0 0 1px rgba(8, 17, 29, .24); backdrop-filter: blur(24px); }
  .desktop-window[data-window="computer"] { --window-x: 22%; --window-y: 12%; }
  .desktop-window[data-window="terminal"] { --window-x: 30%; --window-y: 18%; }
  .desktop-window[data-window="projects"] { --window-x: 36%; --window-y: 10%; }
  .desktop-window[data-window="trash"] { --window-x: 43%; --window-y: 23%; }
  .desktop-window[data-window="document"] { --window-x: 46%; --window-y: 18%; }
  .desktop-window[data-window="passwords"] { --window-x: 42%; --window-y: 20%; }
  .desktop-window[hidden] { display: none; }
  .desktop-window.is-maximized { right: .8rem; bottom: .8rem; left: .8rem !important; top: .8rem !important; width: auto; min-width: 0; }
  .window-titlebar { position: relative; display: flex; height: 2.55rem; align-items: center; justify-content: center; margin: 0; border-bottom: 1px solid rgba(32, 48, 68, .16); background: rgba(232, 238, 245, .92); touch-action: none; }
  .window-titlebar h3 { margin: 0; color: #202d3d; font-size: .72rem; font-weight: 650; letter-spacing: -.01em; pointer-events: none; }
  .window-controls { position: absolute; top: 0; left: .5rem; z-index: 2; display: flex; height: 100%; align-items: center; gap: .05rem; }
  .window-control { position: relative; display: grid; width: 1.55rem; height: 1.55rem; place-items: center; padding: 0; border: 0; background: transparent; }
  .window-control span { display: block; width: .72rem; height: .72rem; border: 1px solid rgba(0, 0, 0, .12); border-radius: 50%; }
  .window-close span { background: #ff5f57; }
  .window-minimize span { background: #febc2e; }
  .window-maximize span { background: #28c840; }
  .window-control:hover span { filter: brightness(.88); }
  .computer-window { width: min(53%, 31rem); }
  .computer-body { display: grid; min-height: 14.5rem; grid-template-columns: 8rem 1fr; align-items: center; gap: 1.5rem; padding: 1.7rem; }
  .computer-mark { display: grid; aspect-ratio: 1; place-items: center; border-radius: 1.4rem; background: linear-gradient(145deg, #18314f, #091728); box-shadow: inset 0 1px rgba(255, 255, 255, .14), 0 18px 35px rgba(13, 31, 53, .2); }
  .computer-mark .desktop-icon-art { width: 5rem; height: 5rem; }
  .computer-body dl { display: grid; gap: 0; margin: 0; }
  .computer-body dl > div { display: grid; grid-template-columns: 6rem 1fr; gap: .8rem; padding: .55rem 0; border-bottom: 1px solid rgba(37, 59, 85, .12); }
  .computer-body dl > div:last-child { border-bottom: 0; }
  .computer-body dt { color: #66788d; font-size: .67rem; }
  .computer-body dd { margin: 0; color: #152a45; font-size: .72rem; font-weight: 670; }
  .terminal-window { width: min(64%, 39rem); border-color: rgba(173, 191, 210, .5); background: #0b1119; }
  .terminal-window .window-titlebar { border-color: #2d3946; background: #1b242e; }
  .terminal-window .window-titlebar h3 { color: #c7d2dd; }
  .terminal-body { display: flex; min-height: 17rem; max-height: 24rem; flex-direction: column; padding: 1.2rem; overflow: auto; background: radial-gradient(circle at 85% 10%, rgba(67, 199, 158, .07), transparent 30%), #090f16; color: #d5e0e9; font-family: "IBM Plex Mono", ui-monospace, Consolas, monospace; font-size: .72rem; cursor: text; user-select: text; }
  .terminal-output { flex: 1; }
  .terminal-output p { margin: 0 0 .48rem; color: #afbdc9; font: inherit; line-height: 1.45; }
  .terminal-output .terminal-command { color: #72e6be; }
  .terminal-form { display: grid; grid-template-columns: auto 1fr; align-items: center; gap: .55rem; margin-top: .35rem; color: #72e6be; }
  .terminal-form input { min-width: 0; padding: 0; border: 0; outline: 0; background: transparent; color: #f2f7fb; font: inherit; caret-color: #72e6be; user-select: text; }
  .terminal-form input::placeholder { color: #607080; }
  .projects-window { width: min(63%, 38rem); }
  .finder-body { display: grid; min-height: 18rem; grid-template-columns: 9rem 1fr; }
  .finder-body aside { display: flex; flex-direction: column; gap: .25rem; padding: 1.1rem; border-right: 1px solid rgba(37, 59, 85, .13); background: rgba(225, 233, 241, .72); color: #314258; font-size: .68rem; }
  .finder-body aside span { color: #8290a0; font-size: .62rem; }
  .finder-files { display: flex; align-items: flex-start; padding: 1.2rem; }
  .file-icon { display: flex; width: 5.4rem; min-height: 6rem; align-items: center; flex-direction: column; gap: .2rem; padding: .35rem; border: 1px solid transparent; border-radius: .65rem; background: transparent; color: #344459; font-size: .65rem; }
  .file-icon:hover, .file-icon:focus-visible { border-color: rgba(15, 94, 156, .28); background: rgba(76, 167, 255, .1); }
  .file-icon .desktop-icon-art { width: 3.7rem; height: 3.7rem; filter: drop-shadow(0 7px 8px rgba(37, 59, 85, .16)); }
  .trash-window { width: min(46%, 27rem); min-width: 23rem; }
  .empty-window { display: grid; min-height: 14rem; place-items: center; align-content: center; padding: 2rem; }
  .empty-window .desktop-icon-art { width: 4rem; height: 4rem; filter: none; opacity: .6; }
  .empty-window p, .document-body p { margin: .75rem 0 0; color: #718196; font-size: .72rem; }
  .document-window { width: min(50%, 29rem); min-width: 24rem; }
  .document-body { min-height: 17rem; padding: 1.5rem; background: #fff; }
  .document-body p { margin: 0; }
  .password-document { display: grid; place-items: center; }
  .password-document p { color: #253b55; font-family: "IBM Plex Mono", ui-monospace, Consolas, monospace; font-size: clamp(1.5rem, 4vw, 2.4rem); }
  .desktop-dust { position: absolute; inset: 0; z-index: 350; overflow: hidden; pointer-events: none; }
  .dust-particle { position: absolute; left: var(--dust-x); top: var(--dust-y); width: var(--dust-size); height: calc(var(--dust-size) * .55); border-radius: 50% 30% 60% 20%; background: var(--dust-color); box-shadow: 0 0 5px currentColor; opacity: 0; }
  .desktop-screen.is-disintegrating .dust-particle { animation: desktop-dust-away 1.65s var(--ease-out) forwards; animation-delay: var(--dust-delay); }
  .desktop-screen.is-disintegrating .desktop-stage { pointer-events: none; animation: desktop-stage-away 2.35s cubic-bezier(.55, .02, .88, .45) forwards; }
  .desktop-screen.is-disintegrating { animation: desktop-shock .42s ease-out both; }
  .desktop-recovery { position: absolute; inset: 0; z-index: 390; place-items: center; background: radial-gradient(circle, rgba(25, 43, 67, .72), rgba(3, 8, 14, .97) 70%); color: #f5f8fc; text-align: center; }
  .desktop-recovery:not([hidden]) { display: grid; }
  .desktop-recovery > div { display: grid; justify-items: center; }
  .desktop-recovery span { color: var(--azure-400); font-size: 2.4rem; }
  .desktop-recovery p { margin: .7rem 0 1.2rem; color: #d4dfeb; font-size: 1rem; }
  .desktop-recovery .button { cursor: url("/assets/icons/ui/cursor-dark.svg") 3 2, pointer; }
}

@keyframes desktop-shock { 0%, 100% { transform: translate3d(0, 0, 0); } 24% { transform: translate3d(-4px, 2px, 0); } 48% { transform: translate3d(4px, -2px, 0); } 72% { transform: translate3d(-2px, -1px, 0); } }
@keyframes desktop-stage-away { 0% { clip-path: inset(0 0 0 0); opacity: 1; filter: saturate(1); } 46% { opacity: .9; filter: saturate(.55); } 100% { clip-path: inset(0 100% 0 0); opacity: 0; filter: saturate(0); } }
@keyframes desktop-dust-away { 0% { opacity: 0; transform: translate3d(0, 0, 0) rotate(0); } 14% { opacity: .9; } 100% { opacity: 0; transform: translate3d(var(--dust-dx), var(--dust-dy), 0) rotate(var(--dust-rotate)); } }

.contact { padding-bottom: clamp(7rem, 13vw, 12rem); }
.contact-heading { display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); gap: 1.5rem; margin-bottom: 5rem; }
.contact-heading .eyebrow { grid-column: 1 / 4; }
.contact-heading h2 { grid-column: 4 / -1; max-width: 14ch; }
.contact-heading .section-lead { grid-column: 4 / 10; }
.contact-list { border-top: 1px solid var(--border); }
.contact-link { display: grid; min-height: 8rem; grid-template-columns: 4rem 1fr auto; align-items: center; gap: 1.5rem; border-bottom: 1px solid var(--border); text-decoration: none; transition: background-color var(--motion-fast), padding-inline var(--motion-fast); }
.contact-link:hover { padding-inline: 1rem; background: var(--ink-900); }
.contact-icon { display: grid; width: 3rem; height: 3rem; place-items: center; border: 1px solid var(--border); border-radius: var(--radius-md); color: var(--azure-400); }
.contact-icon .icon { width: 1.4rem; height: 1.4rem; }
.contact-link small { display: block; margin-bottom: .2rem; color: var(--steel-500); font-family: ui-monospace, monospace; font-size: .72rem; letter-spacing: .08em; text-transform: uppercase; }
.contact-link strong { overflow-wrap: anywhere; font-size: clamp(1.2rem, 2.8vw, 2rem); font-weight: 570; letter-spacing: -.03em; }
.contact-arrow { color: var(--steel-500); transition: color var(--motion-fast), transform var(--motion-fast); }
.contact-link:hover .contact-arrow { color: var(--azure-400); transform: translate(3px, -3px); }

.site-footer { padding-block: 3rem max(3rem, env(safe-area-inset-bottom)); border-top: 1px solid var(--border-subtle); }
.site-footer a { display: inline-flex; min-height: 2.75rem; align-items: center; }
.footer-grid { display: grid; grid-template-columns: auto minmax(0, 1fr) auto; align-items: end; gap: 2rem; }
.footer-grid p { margin: .5rem 0 0; color: var(--steel-500); font-size: .8rem; }
.footer-grid > p { text-align: center; }
.footer-legal { line-height: 1.6; }
.footer-grid > div:last-child { display: flex; flex-direction: column; align-items: flex-end; gap: .5rem; color: var(--steel-500); font-size: .8rem; }
.footer-grid > div:last-child a { color: var(--steel-300); }

.locale-page { min-height: 100vh; min-height: 100svh; }
.locale-main { display: grid; min-height: 100vh; min-height: 100svh; place-items: center; padding: 1.25rem; background: radial-gradient(circle at 72% 30%, rgba(76, 167, 255, .16), transparent 35%); }
.locale-card { width: min(100%, 58rem); padding: clamp(1.5rem, 7vw, 5rem); border: 1px solid var(--border); border-radius: var(--radius-2xl); background: rgba(11, 23, 40, .86); box-shadow: var(--shadow-card); }
.locale-card .wordmark { margin-bottom: clamp(4rem, 10vw, 8rem); }
.locale-card h1 { margin: 1.5rem 0; font-size: clamp(2.8rem, 7vw, 5rem); }
.locale-card > p:not(.eyebrow) { max-width: 55ch; font-size: 1.1rem; }
.locale-actions { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: 2rem; }

@media (max-width: 1100px) {
  .header-cta { display: none; }
  .hero-copy { grid-column: 1 / -1; }
  .depth-scene { right: -8%; width: min(48vw, 31rem); opacity: .78; }
}

@media (max-width: 900px) {
  :root { --header-height: 4.5rem; }
  .desktop-navigation { display: none; }
  .mobile-actions { display: flex; align-items: center; gap: .6rem; margin-left: auto; }
  .menu-toggle { display: grid; width: 2.75rem; height: 2.75rem; place-items: center; padding: 0; border: 1px solid var(--border); border-radius: 50%; background: var(--ink-900); cursor: pointer; }
  .mobile-menu { display: block; padding: 0 var(--gutter) 1.25rem; border-top: 1px solid var(--border-subtle); background: rgba(7, 17, 31, .97); }
  .mobile-menu[hidden] { display: none; }
  .no-js .mobile-menu[hidden] { display: block; }
  .mobile-nav { display: grid; padding-top: .75rem; }
  .mobile-nav > a:not(.button) { display: flex; min-height: 3.25rem; align-items: center; border-bottom: 1px solid var(--border-subtle); color: var(--steel-300); text-decoration: none; }
  .mobile-contact { margin-top: 1rem; }
  .hero { min-height: auto; }
  .hero-grid { min-height: calc(100svh - var(--header-height) - 6rem); align-content: center; }
  .hero-copy { grid-column: 1 / -1; }
  .depth-scene { top: 18%; right: -10rem; width: 30rem; opacity: .32; transform: none; }
  .hero h1 { max-width: 16em; }
  .hero-lead { max-width: 47rem; }
  .scroll-cue { display: none; }
  .bridge { min-height: auto; }
  .bridge-intro .eyebrow { grid-column: 1 / -1; }
  .bridge-intro h2, .bridge-intro .section-lead { grid-column: 1 / 11; }
  .bridge-stage { position: relative; top: auto; height: auto; min-height: 0; grid-template-columns: 1fr; margin-top: 4rem; }
  .bridge-card { min-height: 16rem; transform: none; }
  .bridge-right { margin-top: -2rem; margin-left: 2rem; }
  .bridge-center { z-index: 2; margin-block: -2.3rem; }
  .bridge-result { position: static; margin-top: 1.5rem; opacity: 1; }
  .profile-intro { grid-column: 1 / 5; }
  .profile-details { grid-column: 5 / -1; }
  .services-grid { grid-template-columns: 1fr; }
  .service-card:nth-child(even) { margin-top: 0; }
  .process-list { grid-template-columns: repeat(2, 1fr); gap: 2rem 0; }
  .process-list::before { display: none; }
  .process-step { padding-top: 1rem; border-top: 1px solid var(--border); }
  .process-step::before { top: .7rem; right: 1rem; left: auto; }
  .monkey-feature { grid-template-columns: 1fr; }
  .monkey-brand { min-height: 11rem; }
  .contact-heading .eyebrow { grid-column: 1 / -1; }
  .contact-heading h2, .contact-heading .section-lead { grid-column: 1 / 11; }
}

@media (max-width: 640px) {
  :root { --gutter: clamp(1.25rem, 5.5vw, 1.5rem); }
  h1 { font-size: clamp(2.8rem, 14vw, 4rem); }
  h2 { font-size: clamp(2.25rem, 11vw, 3rem); }
  .section { padding-block: 5.5rem; }
  .wordmark-name { display: none; }
  .monogram { display: inline-flex; width: 2.75rem; height: 2.75rem; }
  .hero { padding-top: calc(var(--header-height) + 1.5rem); }
  .hero-grid { display: block; min-height: auto; }
  .hero h1 { font-size: clamp(2.75rem, 13vw, 3.5rem); }
  .depth-scene { position: relative; top: auto; right: auto; width: min(88%, 19rem); margin: 2rem auto -1rem; opacity: .86; transform: none; }
  .depth-float, .depth-connectors path, .depth-core-orbit { animation: none; }
  .depth-connectors { opacity: .48; transform: translateZ(110px) scale(.88); }
  .depth-module { width: 4.7rem; min-height: 2.65rem; padding: .42rem .48rem; border-radius: .55rem; opacity: .68; }
  .depth-module span, .depth-module small { font-size: .38rem; }
  .depth-module strong { font-size: .54rem; }
  .depth-module-ui { transform: translate3d(-135%, -200%, 142px) rotateZ(-4deg); }
  .depth-module-state { transform: translate3d(-150%, -38%, 128px) rotateZ(-1.5deg); }
  .depth-module-api { transform: translate3d(55%, -205%, 138px) rotateZ(3deg); }
  .depth-module-data { transform: translate3d(65%, -30%, 126px) rotateZ(2deg); }
  .depth-module-trust { transform: translate3d(-35%, 132%, 148px) rotateZ(-2deg); }
  .hero-actions { display: grid; grid-template-columns: 1fr; }
  .hero-actions .button { width: 100%; }
  .hero-meta { line-height: 1.4; }
  .bridge-intro { display: block; }
  .bridge-intro h2 { max-width: 16ch; }
  .bridge-right { margin-left: 1rem; }
  .profile-grid { display: block; }
  .profile-portrait { width: min(100%, 20rem); margin-top: 2.5rem; }
  .profile-details { margin-top: 2.5rem; }
  .certifications { margin-top: 3rem; }
  .certification-grid { grid-template-columns: 1fr; }
  .certification-card { min-height: 8rem; }
  .service-top { margin-bottom: 3.5rem; }
  .service-top .eyebrow { max-width: 25ch; }
  .process-list { grid-template-columns: 1fr; }
  .process-step { display: grid; grid-template-columns: 3rem 1fr; gap: .75rem; }
  .process-step h3 { margin-top: 0; }
  .process-step::before { display: none; }
  .case-card { position: relative; top: auto; min-height: auto; }
  .case-meta { align-items: flex-start; flex-direction: column; }
  .case-content { grid-template-columns: 1fr; gap: 1rem; margin-top: 3rem; }
  .case-number { font-size: 1.2rem; }
  .monkey-feature { min-height: 0; padding: 1.25rem; border-radius: var(--radius-xl); }
  .monkey-brand { padding: 2rem; border-radius: var(--radius-lg); }
  .monkey-copy { padding: .75rem .75rem 1.5rem; }
  .contact-heading { display: block; margin-bottom: 3rem; }
  .contact-link { min-height: 7rem; grid-template-columns: 3rem minmax(0, 1fr) auto; gap: 1rem; }
  .contact-link:hover { padding-inline: 0; }
  .contact-icon { width: 2.75rem; height: 2.75rem; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-grid > p { text-align: left; }
  .footer-grid > div:last-child { align-items: flex-start; }
  .locale-card .wordmark { margin-bottom: 4rem; }
  .locale-actions { display: grid; }
}

@media (max-height: 700px) and (min-width: 901px) {
  .bridge { min-height: auto; }
  .bridge-stage { position: relative; top: auto; height: auto; min-height: 33rem; margin-top: 4rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .hero-ambient { display: none; }
  .depth-float, .depth-connectors path, .depth-core-orbit { animation: none; }
  .bridge { min-height: auto; }
  .bridge-stage { position: relative; top: auto; height: auto; margin-top: 4rem; }
  .bridge-left, .bridge-right { transform: none; }
  .bridge-result { opacity: 1; }
  .case-card { position: relative; top: auto; }
  .desktop-screen.is-disintegrating .desktop-stage { opacity: 0; clip-path: none; }
}
