/* Generated stylesheet — edit the source modules instead. */
:root {
  --ink: #111315;
  --muted: #5b6063;
  --line: #d5d7d2;
  --line-dark: rgba(255, 255, 255, .18);
  --paper: #f5f6f3;
  --paper-alt: #eceeea;
  --paper-light: #fbfcfa;
  --accent: #2457e6;
  --accent-dark: #173bad;
  --dark: #0c0f13;
  --white: #ffffff;
  --radius: 9px;
  --radius-media: 14px;
  --radius-panel: 22px;
  --wrap: min(1360px, calc(100vw - 96px));
  --font: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --mono: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  --measure: 64ch;
  --tap-target: 44px;
  --ease-out: cubic-bezier(.16, 1, .3, 1);
}

@font-face {
  font-family: "Manrope";
  src:
    url("assets/manrope-latin-variable.woff2") format("woff2"),
    url("assets/manrope-variable.ttf") format("truetype");
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  overflow-x: clip;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font);
  font-size: 16px;
  font-weight: 420;
  line-height: 1.58;
  font-synthesis: none;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body.menu-open { overflow: hidden; }
button, input, textarea, select { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; touch-action: manipulation; }
img { display: block; max-width: 100%; }
figure, dl { margin: 0; }
dd { margin: 0; }
a { color: inherit; }
::selection { color: white; background: var(--accent); }
p { text-wrap: pretty; overflow-wrap: break-word; }
h1, h2, h3 { text-wrap: balance; overflow-wrap: anywhere; }
section[id] { scroll-margin-top: 70px; }
main:focus { outline: none; }
[hidden] { display: none !important; }
.wrap { width: var(--wrap); margin-inline: auto; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.skip-link {
  position: fixed;
  z-index: 500;
  left: 20px;
  top: -70px;
  min-height: var(--tap-target);
  padding: 10px 16px;
  display: inline-flex;
  align-items: center;
  color: white;
  background: var(--accent);
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 650;
  transition: top 160ms ease;
}
.skip-link:focus { top: 16px; }
:focus-visible { outline: 3px solid var(--accent); outline-offset: 4px; }
.proof :focus-visible,
.contact :focus-visible,
.site-footer :focus-visible { outline-color: white; }
.motion-ready [data-reveal] { opacity: 0; transform: translateY(10px); }
.motion-ready [data-reveal].is-visible { animation: editorial-in 620ms var(--ease-out) forwards; }
@keyframes editorial-in { to { opacity: 1; transform: none; } }
@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;
  }
}

.brand-link {
  min-height: var(--tap-target);
  display: inline-flex;
  align-items: center;
  color: inherit;
  text-decoration: none;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-size: 15px;
  line-height: 1.2;
  font-weight: 650;
  letter-spacing: -.02em;
}
.brand__rule { width: 15px; height: 3px; flex: 0 0 15px; background: var(--accent); }
.brand b { color: inherit; font-weight: 650; }
.brand--light { color: white; }
.brand--light .brand__rule { background: #9eb4ff; }

.site-header {
  position: sticky;
  z-index: 100;
  inset: 0 0 auto;
  height: 68px;
  padding-inline: max(32px, calc((100vw - 1360px) / 2));
  display: flex;
  align-items: center;
  color: var(--ink);
  background: rgba(245, 246, 243, .97);
  border-bottom: 1px solid var(--line);
  transition: height 160ms ease, background 160ms ease;
}
.site-header.is-scrolled { height: 68px; background: rgba(251, 252, 250, .98); }
.desktop-nav { margin: auto; display: flex; align-items: center; gap: 30px; }
.desktop-nav a {
  min-height: var(--tap-target);
  display: inline-flex;
  align-items: center;
  color: #4f504c;
  font-size: 14px;
  font-weight: 560;
  text-decoration: none;
  position: relative;
}
.desktop-nav a:hover { color: var(--accent); }
.desktop-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 6px;
  left: 0;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 240ms var(--ease-out);
}
.desktop-nav a:hover::after,
.desktop-nav a[aria-current="location"]::after { transform: scaleX(1); transform-origin: left; }
.desktop-nav a[aria-current="location"] { color: var(--ink); }
.header-cta {
  min-height: 44px;
  padding: 0;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  background: transparent;
  border: 0;
  border-bottom: 1px solid currentColor;
  border-radius: 0;
  font-size: 14px;
  font-weight: 650;
  text-decoration: none;
}
.header-cta:hover { color: var(--accent); }
.menu-button, .mobile-nav { display: none; }

.section { padding: 120px 0; border-top: 1px solid var(--line); }
.section-heading {
  margin-bottom: 56px;
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr) minmax(270px, .58fr);
  gap: 38px;
  align-items: start;
}
.section-index,
.module-label {
  margin: 5px 0 0;
  color: var(--accent);
  font-family: var(--mono);
  font-size: 11px;
  line-height: 1.45;
  letter-spacing: .07em;
  text-transform: uppercase;
}
.section-index--light { color: #aebeff; }
.section-heading h2 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(40px, 3.8vw, 52px);
  line-height: 1.04;
  letter-spacing: -.032em;
  font-weight: 480;
}
.section-heading--compact h2 { grid-column: 2 / -1; }
.section-heading > p:last-child {
  max-width: 48ch;
  margin: 3px 0 0;
  color: var(--muted);
  font-size: 16px;
}

.button {
  min-height: 50px;
  padding: 0 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: white;
  background: var(--accent);
  border: 1px solid var(--accent);
  border-radius: var(--radius);
  font-size: 15px;
  font-weight: 650;
  text-decoration: none;
  transition: background 180ms ease, border-color 180ms ease, transform 180ms var(--ease-out);
}
.button:hover { background: var(--accent-dark); border-color: var(--accent-dark); transform: translateY(-1px); }
.button--white { color: var(--ink); background: white; border-color: white; }
.button--white:hover { color: white; background: transparent; }
.text-link {
  min-height: var(--tap-target);
  display: inline-flex;
  align-items: center;
  border-bottom: 1px solid currentColor;
  font-size: 14px;
  font-weight: 630;
  text-decoration: none;
  transition: color 180ms ease;
}
.text-link:hover { color: var(--accent); }
.text-link--light { color: white; }

.hero {
  padding-top: 0;
  background: var(--paper);
}
.hero__grid {
  min-height: min(780px, calc(100svh - 68px));
  min-width: 0;
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(460px, 5fr);
  gap: clamp(48px, 6vw, 88px);
  align-items: stretch;
}
.hero__content {
  min-width: 0;
  padding: clamp(76px, 9vw, 118px) 0 72px;
  align-self: center;
}
.hero__meta {
  margin: 0 0 28px;
  color: var(--accent);
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: .035em;
}
.hero h1 {
  max-width: 15ch;
  margin: 0;
  font-size: clamp(58px, 5.15vw, 76px);
  line-height: .97;
  letter-spacing: -.038em;
  font-weight: 480;
}
.hero__lead {
  max-width: 650px;
  margin: 30px 0;
  color: #494a46;
  font-size: 19px;
  line-height: 1.57;
}
.hero__actions { display: flex; flex-wrap: wrap; align-items: center; gap: 22px; }
.hero__figure {
  min-width: 0;
  padding: 48px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero__picture { min-height: 0; height: auto; aspect-ratio: 5 / 6; overflow: hidden; background: #070a0b; border-radius: var(--radius-media); outline: 1px solid rgba(17, 19, 21, .18); outline-offset: -1px; }
.hero__picture img { width: 100%; height: 100%; object-fit: cover; object-position: 72% 50%; filter: saturate(.72) contrast(1.04); transform: scale(1.035); }
.hero__figure figcaption,
.application__figure figcaption,
.proof__media figcaption,
.edge-showcase__stage figcaption {
  margin-top: 9px;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 11px;
  line-height: 1.45;
}

.offer { background: var(--paper-light); }
.service-index { border-top: 1px solid var(--ink); }
.service-row {
  padding: 31px 0;
  display: grid;
  grid-template-columns: 70px minmax(210px, .85fr) minmax(300px, 1.25fr) minmax(210px, .75fr);
  gap: 28px;
  align-items: start;
  border-bottom: 1px solid var(--line);
  position: relative;
  transition: background 220ms ease;
}
.service-row::before { content: ""; position: absolute; top: 22px; bottom: 22px; left: -18px; width: 2px; background: var(--accent); transform: scaleY(0); transform-origin: center; transition: transform 280ms var(--ease-out); }
.service-row__number { padding-top: 5px; color: var(--accent); font-family: var(--mono); font-size: 11px; }
.service-row h3 { margin: 0; font-size: 24px; line-height: 1.2; letter-spacing: -.02em; font-weight: 560; transition: color 180ms ease, transform 280ms var(--ease-out); }
.service-row > p { max-width: 58ch; margin: 1px 0 0; color: var(--muted); }
.service-row dl { padding-left: 22px; border-left: 1px solid var(--line); }
.service-row dt,
.application dl dt,
.proof__facts dt {
  color: #74736d;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .05em;
  text-transform: uppercase;
}
.service-row dd { margin-top: 5px; font-size: 14px; line-height: 1.45; font-weight: 590; }
@media (hover: hover) {
  .service-row:hover::before { transform: scaleY(1); }
  .service-row:hover h3 { color: var(--accent); transform: translateX(3px); }
}

.edge-showcase {
  min-height: 520px;
  margin-top: 82px;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(360px, .82fr) minmax(0, 1.18fr);
  color: white;
  background: #050606;
  border-radius: var(--radius-panel);
  position: relative;
}
.edge-showcase::before { content: ""; position: absolute; z-index: 2; top: 0; left: 0; width: 34%; height: 3px; background: var(--accent); }
.edge-showcase__copy { padding: 58px 52px; align-self: center; }
.edge-showcase__copy .module-label { color: #9eb4ff; }
.edge-showcase__copy h3 { max-width: 560px; margin: 20px 0 18px; font-size: clamp(38px, 4vw, 52px); line-height: 1.03; letter-spacing: -.043em; font-weight: 500; }
.edge-showcase__copy > p:not(.module-label) { max-width: 52ch; margin: 0; color: rgba(255, 255, 255, .67); }
.edge-path {
  margin: 42px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  position: relative;
  list-style: none;
  counter-reset: edge-stage;
}
.edge-path::before { content: ""; position: absolute; top: 3px; right: 0; left: 0; height: 1px; background: rgba(158, 180, 255, .38); }
.edge-path li {
  min-width: 0;
  padding: 22px 12px 0 0;
  position: relative;
  counter-increment: edge-stage;
  color: rgba(255, 255, 255, .76);
  font-size: 11px;
  line-height: 1.4;
}
.edge-path li:not(:first-child) { padding-left: 12px; }
.edge-path li::before { content: "0" counter(edge-stage); display: block; margin-bottom: 7px; color: #9eb4ff; font-family: var(--mono); font-size: 10px; }
.edge-path li::after { content: ""; position: absolute; top: 0; left: 0; width: 7px; height: 7px; background: #9eb4ff; border: 2px solid #050606; border-radius: 50%; }
.edge-path li:not(:first-child)::after { left: 12px; }
.edge-showcase__stage { min-width: 0; min-height: 520px; padding: 32px 24px 22px 0; display: flex; flex-direction: column; justify-content: center; overflow: hidden; }
.edge-showcase__picture { width: 112%; transform: translateX(-5%); }
.edge-showcase__picture img { width: 100%; height: auto; }
.edge-showcase__stage figcaption { color: rgba(255, 255, 255, .62); }

.applications { background: var(--paper-alt); }
.application-grid { display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); gap: 36px 24px; align-items: start; }
.application { min-width: 0; }
.application:nth-child(1) { grid-column: span 6; }
.application:nth-child(2),
.application:nth-child(3) { grid-column: span 3; margin-top: 64px; }
.application__figure { min-width: 0; }
.application__picture { height: auto; aspect-ratio: 16 / 10; overflow: hidden; background: #d2cfc6; border-radius: var(--radius-media); outline: 1px solid rgba(17, 19, 21, .13); outline-offset: -1px; }
.application__picture img { width: 100%; height: 100%; object-fit: cover; object-position: var(--image-position, 50% 50%); transition: transform 800ms var(--ease-out), filter 300ms ease; }
.application:nth-child(2) .application__picture img { filter: saturate(.86); }
.application:nth-child(3) .application__picture img { filter: saturate(.9) brightness(1.035); }
.application__copy { padding-top: 21px; border-top: 1px solid var(--ink); }
.application__meta {
  margin: 0 0 18px;
  color: #686760;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .045em;
  text-transform: uppercase;
}
.application__meta span { margin-right: 16px; color: var(--accent); }
.application h3 { margin: 0 0 14px; font-size: 26px; line-height: 1.13; letter-spacing: -.033em; font-weight: 550; }
.application__copy > p:not(.application__meta) { min-height: 0; margin: 0; color: var(--muted); font-size: 15px; }
.application dl { margin-top: 24px; padding-top: 15px; display: grid; grid-template-columns: 105px minmax(0, 1fr); gap: 12px; border-top: 1px solid var(--line); }
.application dl dd { font-size: 13px; line-height: 1.45; font-weight: 590; }
.context-note {
  max-width: 92ch;
  margin: 55px 0 0;
  padding-top: 17px;
  color: #686760;
  border-top: 1px solid var(--line);
  font-size: 12px;
}
@media (hover: hover) {
  .application:hover .application__picture img { transform: scale(1.018); }
}
.motion-ready .application[data-reveal] .application__picture img { transform: scale(1.014); }
.motion-ready .application[data-reveal].is-visible .application__picture img { transform: none; }
@media (hover: hover) {
  .motion-ready .application[data-reveal].is-visible:hover .application__picture img { transform: scale(1.018); }
}

.proof { color: white; background: var(--dark); border-color: var(--dark); }
.proof__grid { display: grid; grid-template-columns: minmax(0, 1.18fr) minmax(380px, .82fr); gap: 64px; align-items: center; }
.proof__media { min-width: 0; }
.proof__media picture { height: auto; aspect-ratio: 16 / 9; display: block; overflow: hidden; background: #272b2d; border-radius: var(--radius-media); outline: 1px solid rgba(255, 255, 255, .16); outline-offset: -1px; }
.proof__media img { width: 100%; height: 100%; object-fit: cover; }
.proof__media figcaption { color: rgba(255, 255, 255, .46); }
.proof__copy h2 { max-width: 700px; margin: 21px 0 22px; font-size: clamp(40px, 4.1vw, 54px); line-height: 1.03; letter-spacing: -.045em; font-weight: 500; }
.proof__lead { max-width: 59ch; margin: 0; color: rgba(255, 255, 255, .7); }
.proof__facts { margin: 32px 0 27px; border-top: 1px solid var(--line-dark); }
.proof__facts > div { padding: 13px 0; display: grid; grid-template-columns: 95px minmax(0, 1fr); gap: 18px; border-bottom: 1px solid var(--line-dark); }
.proof__facts dt { color: rgba(255, 255, 255, .42); }
.proof__facts dd { font-size: 13px; color: rgba(255, 255, 255, .84); }
.proof__actions { display: flex; flex-wrap: wrap; gap: 12px 26px; align-items: center; }
.proof__actions .text-link--quiet { color: rgba(255, 255, 255, .58); }
.proof__actions .text-link--quiet:hover { color: white; }
.proof details { margin-top: 21px; color: rgba(255, 255, 255, .61); font-size: 13px; }
.proof summary { min-height: 44px; width: max-content; max-width: 100%; display: flex; align-items: center; color: rgba(255, 255, 255, .8); cursor: pointer; font-weight: 600; }
.proof details p { max-width: 58ch; margin: 5px 0 0; }

.process { background: var(--paper); }
.process-steps { margin: 0; padding: 0; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); border-top: 1px solid var(--ink); border-bottom: 1px solid var(--line); list-style: none; }
.process-steps > li { min-width: 0; min-height: 210px; padding: 27px 30px; display: flex; flex-direction: column; border-right: 1px solid var(--line); }
.process-steps > li:first-child { padding-left: 0; }
.process-steps > li:last-child { padding-right: 0; border-right: 0; }
.process-steps > li > span { color: var(--accent); font-family: var(--mono); font-size: 11px; }
.process-steps > li > div { margin-top: auto; }
.process-steps h3 { margin: 0 0 10px; font-size: 25px; line-height: 1.2; letter-spacing: -.03em; font-weight: 550; }
.process-steps p { margin: 0; color: var(--muted); font-size: 15px; }
.handoff { margin-top: 70px; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); border-top: 1px solid var(--ink); border-bottom: 1px solid var(--line); }
.handoff article { padding: 34px 42px 38px 0; }
.handoff article + article { padding-right: 0; padding-left: 42px; border-left: 1px solid var(--line); }
.handoff h3 { margin: 14px 0 12px; font-size: 28px; line-height: 1.12; letter-spacing: -.035em; font-weight: 550; }
.handoff article > p:last-child { max-width: 58ch; margin: 0; color: var(--muted); font-size: 15px; }

.team { background: var(--paper-alt); }
.team-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 64px; }
.team-profile { min-width: 0; padding-top: 22px; display: grid; grid-template-columns: 210px minmax(0, 1fr); gap: 28px; border-top: 1px solid var(--ink); }
.team-profile__media { height: 300px; overflow: hidden; background: #d2cec3; border-radius: var(--radius-media); outline: 1px solid rgba(17, 19, 21, .13); outline-offset: -1px; }
.team-card__picture,
.team-card__picture img { width: 100%; height: 100%; }
.team-card__picture img { object-fit: cover; object-position: center 27%; }
.team-card__placeholder { width: 100%; height: 100%; display: flex; flex-direction: column; align-items: center; justify-content: center; color: #e8e5dc; background: #333532; }
.team-card__placeholder > span { font-size: 58px; line-height: 1; letter-spacing: -.06em; font-weight: 430; }
.team-card__content { min-width: 0; }
.team-profile__role { margin: 1px 0 13px; color: var(--accent); font-family: var(--mono); font-size: 10px; line-height: 1.45; letter-spacing: .035em; text-transform: uppercase; }
.team-card__content h3 { margin: 0 0 15px; font-size: 28px; line-height: 1.1; letter-spacing: -.035em; font-weight: 550; }
.team-card__lead { margin: 0 0 11px; font-size: 16px; font-weight: 590; }
.team-card__content > p:not(.team-profile__role):not(.team-card__lead):not(.team-profile__skills) { margin: 0; color: var(--muted); font-size: 14px; }
.team-profile__skills { margin: 21px 0 0; padding-top: 13px; color: #565752; border-top: 1px solid var(--line); font-size: 12px; }
.team-profile__skills span { margin-right: 12px; color: #7b7972; font-family: var(--mono); font-size: 9px; letter-spacing: .05em; text-transform: uppercase; }

.contact { color: white; background: var(--dark); border-color: var(--dark); }
.contact__inner { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(360px, .95fr); gap: 78px; align-items: start; }
.contact h2 { max-width: 720px; margin: 20px 0 0; font-size: clamp(46px, 5vw, 66px); line-height: 1.02; letter-spacing: -.048em; font-weight: 500; }
.contact__copy > p { max-width: 55ch; margin: 4px 0 23px; color: rgba(255, 255, 255, .72); }
.contact__email { display: block; width: fit-content; max-width: 100%; margin-bottom: 31px; color: white; font-size: clamp(20px, 2.1vw, 29px); line-height: 1.25; letter-spacing: -.025em; overflow-wrap: anywhere; text-decoration-thickness: 1px; text-underline-offset: 5px; }
.contact__email:hover { color: #aebeff; }
.contact__actions { display: flex; flex-wrap: wrap; align-items: center; gap: 20px; }
.contact__actions > button { min-height: 44px; padding: 5px 0; color: white; background: transparent; border: 0; border-bottom: 1px solid rgba(255, 255, 255, .7); cursor: pointer; font-size: 13px; }
.site-footer { color: white; background: var(--dark); border-top: 1px solid var(--line-dark); }
.site-footer__inner { min-height: 92px; display: grid; grid-template-columns: 1fr auto auto; gap: 28px; align-items: center; color: rgba(255, 255, 255, .65); font-size: 12px; }
.site-footer__inner p { margin: 0; }
.site-footer__inner a { min-height: 24px; display: inline-flex; align-items: center; text-decoration: none; }

.source-thread {
  max-width: 660px;
  margin: 46px 0 0;
  padding: 15px 0 14px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.source-thread svg { width: 100%; height: auto; display: block; overflow: visible; }
.source-thread__frames rect {
  fill: rgba(255, 255, 255, .25);
  stroke: #aeb2ae;
  stroke-width: 1;
  vector-effect: non-scaling-stroke;
}
.source-thread__path,
.source-thread__link {
  fill: none;
  stroke: var(--accent);
  stroke-width: 1.5;
  stroke-linecap: round;
  vector-effect: non-scaling-stroke;
}
.source-thread__points circle {
  fill: var(--paper);
  stroke: var(--accent);
  stroke-width: 1.5;
  vector-effect: non-scaling-stroke;
}
.source-thread__points circle:last-child,
.source-thread__output { fill: var(--accent); stroke: var(--accent); }
.source-thread figcaption {
  margin-top: 0;
  display: grid;
  grid-template-columns: 145px minmax(0, 1fr);
  gap: 22px;
  align-items: start;
}
.source-thread figcaption > span {
  color: var(--accent);
  font-family: var(--mono);
  font-size: 11px;
  line-height: 1.4;
  letter-spacing: .055em;
  text-transform: uppercase;
}
.source-thread ol {
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  color: #555a5b;
  font-size: 11px;
  line-height: 1.4;
  list-style: none;
  counter-reset: source-stage;
}
.source-thread li { min-width: 0; counter-increment: source-stage; }
.source-thread li::before {
  content: "0" counter(source-stage) " ";
  color: #737878;
  font-family: var(--mono);
  font-size: 10px;
}
.motion-ready .source-thread[data-reveal] .source-thread__path {
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
}
.motion-ready .source-thread[data-reveal].is-visible .source-thread__path {
  animation: source-thread-draw 700ms var(--ease-out) 120ms forwards;
}
@keyframes source-thread-draw { to { stroke-dashoffset: 0; } }

@media (max-width: 700px) {
  .source-thread { margin-top: 32px; padding: 12px 0; }
  .source-thread figcaption { grid-template-columns: 1fr; gap: 8px; }
  .source-thread ol { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 7px 18px; }
}

@media (max-width: 1120px) {
  .hero__grid { grid-template-columns: minmax(0, .96fr) minmax(420px, 1.04fr); gap: 42px; }
  .hero h1 { font-size: 62px; }
  .section-heading { grid-template-columns: 110px minmax(0, 1fr) minmax(240px, .58fr); gap: 28px; }
  .service-row { grid-template-columns: 54px minmax(180px, .8fr) minmax(260px, 1.15fr) minmax(190px, .72fr); gap: 22px; }
  .application-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .application:nth-child(1) { grid-column: 1 / -1; }
  .application:nth-child(2),
  .application:nth-child(3) { grid-column: auto; margin-top: 0; }
  .application:nth-child(1) .application__picture { aspect-ratio: 16 / 7; }
  .team-grid { grid-template-columns: 1fr; gap: 48px; }
  .team-profile { grid-template-columns: 220px minmax(0, 1fr); gap: 28px; }
}

@media (max-width: 960px) {
  .desktop-nav { display: none; }
  .header-cta { margin-left: auto; margin-right: 9px; }
  .menu-button {
    width: 44px;
    height: 44px;
    padding: 10px 8px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 7px;
    color: inherit;
    background: transparent;
    border: 0;
    cursor: pointer;
    margin-left: auto;
  }
  .menu-button span { height: 1px; background: currentColor; transition: transform 160ms ease; }
  .menu-button[aria-expanded="true"] span:first-child { transform: translateY(4px) rotate(45deg); }
  .menu-button[aria-expanded="true"] span:last-child { transform: translateY(-4px) rotate(-45deg); }
  .mobile-nav {
    position: absolute;
    top: calc(100% - 1px);
    right: 0;
    left: 0;
    padding: 12px max(32px, calc((100vw - 1360px) / 2)) 26px;
    display: flex;
    visibility: hidden;
    opacity: 0;
    flex-direction: column;
    gap: 0;
    color: var(--ink);
    background: var(--paper-light);
    border-bottom: 1px solid var(--line);
    transform: translateY(-5px);
    transition: opacity 160ms ease, transform 160ms ease, visibility 0s linear 160ms;
  }
  .mobile-nav.is-open { visibility: visible; opacity: 1; transform: none; transition: opacity 160ms ease, transform 160ms ease, visibility 0s; }
  .mobile-nav a { min-height: 58px; display: flex; align-items: center; border-top: 1px solid var(--line); font-size: 22px; line-height: 1.15; letter-spacing: -.025em; font-weight: 520; text-decoration: none; }
  .mobile-nav a[aria-current="location"] { color: var(--accent); }
  .mobile-nav a:last-child { color: var(--accent); }
  .hero__grid { min-height: 0; grid-template-columns: minmax(0, 1fr); gap: 0; }
  .hero__content { padding: 110px 0 72px; }
  .hero h1 { max-width: 820px; font-size: clamp(54px, 8vw, 72px); }
  .hero__figure { padding: 0 0 52px; }
  .hero__picture { height: auto; aspect-ratio: 16 / 9; }
  .section-heading { grid-template-columns: 100px minmax(0, 1fr); }
  .section-heading > p:last-child { grid-column: 2; }
  .service-row { grid-template-columns: 54px minmax(190px, .85fr) minmax(0, 1.15fr); }
  .service-row dl { grid-column: 2 / -1; padding: 17px 0 0; display: grid; grid-template-columns: 120px 1fr; border-top: 1px solid var(--line); border-left: 0; }
  .service-row dd { margin: 0; }
  .edge-showcase { grid-template-columns: 1fr; }
  .edge-showcase__copy { padding-bottom: 20px; }
  .edge-showcase__stage { min-height: 450px; padding: 0 28px 26px; }
  .application-grid { grid-template-columns: 1fr; gap: 62px; }
  .application,
  .application:nth-child(1),
  .application:nth-child(2),
  .application:nth-child(3) { grid-column: auto; margin-top: 0; display: grid; grid-template-columns: minmax(0, 1.12fr) minmax(290px, .88fr); gap: 30px; }
  .application__picture { height: auto; aspect-ratio: 16 / 10; }
  .application:nth-child(1) .application__picture { aspect-ratio: 16 / 10; }
  .application__copy > p:not(.application__meta) { min-height: 0; }
  .proof__grid { grid-template-columns: 1fr; gap: 50px; }
  .proof__media picture { height: auto; aspect-ratio: 16 / 9; }
  .team-grid { grid-template-columns: 1fr; }
  .team-profile { grid-template-columns: 220px minmax(0, 1fr); }
}

@media (max-width: 700px) {
  :root { --wrap: calc(100vw - 32px); }
  .site-header,
  .site-header.is-scrolled { height: 64px; padding-inline: 16px; }
  .header-cta { display: none; }
  .mobile-nav { padding: 10px 16px 24px; }
  .section { padding: 78px 0; }
  .section-heading { margin-bottom: 38px; grid-template-columns: 1fr; gap: 16px; }
  .section-heading > p:last-child { grid-column: 1; }
  .section-heading h2 { font-size: 38px; }
  .section-index { margin: 0; }

  .hero { padding-top: 0; }
  .hero__content { padding: 58px 0 44px; }
  .hero__meta { margin-bottom: 22px; font-size: 10px; }
  .hero h1 { font-size: clamp(43px, 11.5vw, 58px); }
  .hero__lead { margin: 23px 0; font-size: 17px; }
  .hero__actions { gap: 15px; }
  .hero__figure { padding-bottom: 34px; }
  .hero__picture { height: auto; aspect-ratio: 4 / 3; }

  .service-row { padding: 25px 0; grid-template-columns: 40px minmax(0, 1fr); gap: 13px; }
  .service-row h3 { font-size: 23px; }
  .service-row > p,
  .service-row dl { grid-column: 2; }
  .service-row dl { grid-template-columns: 1fr; gap: 4px; }
  .edge-showcase { margin-top: 58px; }
  .edge-showcase__copy { padding: 37px 24px 14px; }
  .edge-showcase__copy h3 { font-size: 38px; }
  .edge-path { grid-template-columns: 1fr; }
  .edge-path li,
  .edge-path li:not(:first-child) { padding: 11px 0 11px 22px; border-left: 0; }
  .edge-path li:first-child { padding-left: 22px; }
  .edge-path::before { top: 0; right: auto; bottom: 0; left: 3px; width: 1px; height: auto; }
  .edge-path li::before { display: inline; margin-right: 14px; }
  .edge-path li::after,
  .edge-path li:not(:first-child)::after { top: 17px; left: 0; }
  .edge-showcase__stage { min-height: 340px; padding: 0 14px 22px; }
  .edge-showcase__picture { width: 122%; transform: translateX(-6%); }

  .application-grid { gap: 54px; }
  .application,
  .application:nth-child(1),
  .application:nth-child(2),
  .application:nth-child(3) { display: block; }
  .application__picture { height: auto; aspect-ratio: 16 / 10; }
  .application__copy { margin-top: 19px; }
  .application h3 { font-size: 25px; }
  .context-note { margin-top: 46px; }

  .proof__grid { gap: 38px; }
  .proof__media picture { height: auto; aspect-ratio: 16 / 9; }
  .proof__copy h2 { font-size: 39px; }

  .process-steps { grid-template-columns: 1fr; }
  .process-steps > li,
  .process-steps > li:first-child,
  .process-steps > li:last-child { min-height: 0; padding: 23px 0; flex-direction: row; gap: 20px; border-right: 0; border-bottom: 1px solid var(--line); }
  .process-steps > li:last-child { border-bottom: 0; }
  .process-steps > li > span { width: 34px; flex: 0 0 34px; padding-top: 3px; }
  .process-steps > li > div { margin-top: 0; }
  .handoff { margin-top: 50px; grid-template-columns: 1fr; }
  .handoff article,
  .handoff article + article { padding: 26px 0; border-left: 0; }
  .handoff article + article { border-top: 1px solid var(--line); }

  .team-grid { gap: 48px; }
  .team-profile { grid-template-columns: 160px minmax(0, 1fr); }
  .team-profile__media { height: 280px; }
  .team-card__content h3 { font-size: 25px; }

  .contact__inner { grid-template-columns: 1fr; gap: 36px; }
  .contact h2 { font-size: 44px; }
  .contact__actions { align-items: flex-start; flex-direction: column; }
  .site-footer__inner { padding: 26px 0; grid-template-columns: 1fr; gap: 12px; }
}

@media (max-width: 430px) {
  .brand { font-size: 14px; }
  .hero h1 { font-size: 42px; }
  .hero__actions { align-items: stretch; flex-direction: column; }
  .hero__actions .button { width: 100%; }
  .hero__actions .text-link { width: fit-content; }
  .hero__picture { height: auto; aspect-ratio: 4 / 3; }
  .section-heading h2 { font-size: 35px; }
  .edge-showcase__copy h3,
  .proof__copy h2 { font-size: 35px; }
  .application__picture { height: auto; aspect-ratio: 16 / 10; }
  .proof__media picture { height: auto; aspect-ratio: 16 / 9; }
  .team-profile { grid-template-columns: 1fr; }
  .team-profile__media { height: 300px; }
  .contact h2 { font-size: 40px; }
}
