:root {
  --black: #000;
  --white: #fff;
  --text: #050505;
  --muted: #4f4f4f;
  --line: #111;
  --blue: #2525c8;
  --blue-deep: #1515a7;
  --blue-dark: #070779;
  --blue-mid: #3535f0;
  --blue-light: #6f6dff;
  --blue-pale: #a6b9ff;
  --signal-yellow: #f7c600;
  --signal-ink: #101723;
  --side-pad: clamp(1.5rem, 2vw, 2.65rem);
  --intro-font: clamp(3rem, 6.1vw, 7.3rem);
  --intro-square: 6rem;
  --intro-travel: calc(var(--intro-font) * 3.1);
  --ease: cubic-bezier(.76, 0, .24, 1);
  --wipe-ease: cubic-bezier(.65, 0, .25, 1);
  font-family: Arial, Helvetica, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--black);
  color: var(--text);
  scroll-behavior: smooth;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  overscroll-behavior-x: none;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background: var(--black);
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  overscroll-behavior-x: none;
}

body.intro-running {
  overflow: hidden;
}

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

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

main,
section {
  max-width: 100%;
  overflow-x: hidden;
}

.pre-intro {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #fff;
  color: #202124;
  cursor: default;
  transition: opacity .22s ease, visibility .22s ease;
}

.pre-intro.is-exiting {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
}

.pre-intro-bridge {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: grid;
  place-items: center;
  pointer-events: auto;
}

.pre-intro-lockup {
  position: relative;
  display: inline-block;
  line-height: .72;
}

.pre-intro-ghost-word {
  font-size: var(--intro-font);
  font-weight: 950;
  line-height: .72;
  letter-spacing: -0.055em;
  opacity: 0;
}

.pre-intro-square {
  position: absolute;
  top: 50%;
  left: calc(var(--intro-square) * -1.02);
  width: var(--intro-square);
  height: var(--intro-square);
  border: 0;
  padding: 0;
  background: var(--blue);
  border-radius: 0;
  cursor: pointer;
  appearance: none;
  pointer-events: auto;
  transform: translate3d(0, -50%, 0);
  animation: pre-intro-square-nudge 3s cubic-bezier(.5, 0, .18, 1) infinite;
  transform-origin: center;
}

.pre-intro-square:focus-visible {
  outline: .18rem solid #111;
  outline-offset: .28rem;
}

.pre-intro.is-nudging .pre-intro-square {
  animation: pre-intro-square-nudge .52s cubic-bezier(.5, 0, .18, 1);
}

.pre-intro-browser {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  width: min(56rem, calc(100vw - 3rem));
  padding-top: clamp(1rem, 4vh, 3rem);
  text-align: center;
  transform: translateY(calc(var(--intro-square) * -3.2));
}

.pre-intro-code {
  margin: 0 0 clamp(.05rem, .6vw, .35rem);
  color: #111;
  font-size: clamp(4.2rem, 9vw, 8rem);
  font-weight: 200;
  line-height: .96;
  letter-spacing: -0.07em;
}

.pre-intro h1 {
  margin: 0;
  color: #111;
  font-size: clamp(4.8rem, 10.5vw, 9.4rem);
  font-weight: 200;
  line-height: .94;
  letter-spacing: -0.075em;
}

@keyframes pre-intro-square-nudge {
  0% {
    transform: translate3d(0, -50%, 0) scale(1);
  }

  4% {
    transform: translate3d(-.35rem, -53%, 0) scale(1.07);
  }

  8% {
    transform: translate3d(.32rem, -47%, 0) scale(1.04);
  }

  12% {
    transform: translate3d(-.18rem, -51%, 0) scale(1.05);
  }

  16% {
    transform: translate3d(.12rem, -50%, 0) scale(1.02);
  }

  20%,
  100% {
    transform: translate3d(0, -50%, 0) scale(1);
  }
}

.intro {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: var(--black);
  color: var(--white);
  pointer-events: none;
}

.intro-lockup {
  position: relative;
  z-index: 2;
  display: inline-block;
  line-height: .72;
}

.intro-word {
  font-size: var(--intro-font);
  font-weight: 950;
  line-height: .72;
  letter-spacing: -0.055em;
  color: #fff;
  opacity: 0;
  transform: translateY(.08em);
}

.intro-square {
  position: absolute;
  top: 50%;
  left: calc(var(--intro-square) * -1.02);
  width: var(--intro-square);
  height: var(--intro-square);
  background: var(--blue);
  opacity: 0;
  transform: translate3d(0, -50%, 0) scale(.9);
}

body.intro-started .intro {
  animation:
    intro-reveal-page .01s linear 2.02s forwards,
    intro-hide .18s linear 3.12s forwards;
}

body.intro-started .intro-lockup {
  animation:
    lockup-push .72s var(--ease) 1.76s forwards,
    lockup-hide .16s linear 2.04s forwards;
}

body.intro-started .intro-word {
  animation: word-in .5s ease-out forwards, word-dim .3s ease-out 1.23s forwards;
}

body.intro-started .intro-square {
  animation:
    square-appear .55s var(--ease) .5s forwards,
    square-travel .92s var(--ease) 1.08s forwards;
}

.intro-stripes {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  z-index: 3;
  display: flex;
  width: 122vw;
  pointer-events: none;
  will-change: transform;
  transform: translate3d(-122vw, 0, 0);
}

body.intro-started .intro-stripes {
  animation: stripes-sweep 1.14s var(--wipe-ease) 1.94s forwards;
}

.intro-stripes span {
  height: 100%;
  flex: 0 0 auto;
  transform-origin: left center;
}

.intro-stripes span:nth-child(1) {
  width: 3vw;
  background: var(--blue-light);
}

.intro-stripes span:nth-child(2) {
  width: 7vw;
  background: #4a4af0;
}

.intro-stripes span:nth-child(3) {
  width: 42vw;
  background: #6c69ff;
}

.intro-stripes span:nth-child(4) {
  width: 42vw;
  background: #3f3fe8;
}

.intro-stripes span:nth-child(5) {
  width: 28vw;
  background: var(--blue);
}

.page-shell {
  position: relative;
  z-index: 2;
  min-height: 100vh;
  padding-bottom: 100svh;
  opacity: 1;
  transform: none;
  background: transparent;
  max-width: 100%;
  overflow-x: hidden;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 90;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1rem;
  height: 5.6rem;
  padding: 0 var(--side-pad);
  background: #fff;
  backdrop-filter: blur(18px);
  transform: translateY(0);
  transition: transform .24s var(--ease), background .18s ease;
  will-change: transform;
  width: 100%;
  max-width: 100%;
}

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

.brand {
  justify-self: start;
  font-size: clamp(1.55rem, 1.75vw, 2.15rem);
  font-weight: 950;
  letter-spacing: -0.07em;
  transition: color .18s ease;
}

.brand:hover {
  color: var(--blue);
}

.center-nav {
  display: flex;
  align-items: center;
  gap: 1.15rem;
  font-size: clamp(.95rem, .96vw, 1.18rem);
  font-weight: 800;
}

.center-nav a {
  transition: color .18s ease, opacity .18s ease;
}

.center-nav a:hover {
  color: #6d6d6d;
}

.header-actions {
  justify-self: end;
  display: flex;
  gap: .75rem;
  align-items: center;
}

.button {
  display: inline-flex;
  min-height: 2.55rem;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0 1.15rem;
  font-size: clamp(.85rem, .9vw, 1.05rem);
  font-weight: 850;
  white-space: nowrap;
  transition: background .18s ease, color .18s ease, opacity .18s ease;
}

.button-dark {
  background: #000;
  color: #fff;
}

.button-dark:hover {
  background: #2a2a2a;
}

.button-light {
  background: #dfdfdf;
  color: #000;
}

.button-light:hover {
  background: #ededed;
}

.hero {
  position: relative;
  z-index: 50;
  min-height: 100svh;
  display: grid;
  align-items: center;
  padding: clamp(6.2rem, 9vh, 8.2rem) var(--side-pad) clamp(2.6rem, 5vh, 4.2rem);
  overflow: hidden;
  background: #fff;
}

.hero::after {
  content: "";
  position: absolute;
  right: var(--side-pad);
  bottom: clamp(1.5rem, 2.4vh, 2.2rem);
  left: var(--side-pad);
  height: 1px;
  background: #000;
}

.hero-layout {
  display: block;
  width: 100%;
}

.hero-copy {
  max-width: min(78rem, calc(100vw - (var(--side-pad) * 2)));
}

.hero h1 {
  margin: 0;
  width: 100%;
  max-width: calc(100vw - (var(--side-pad) * 2));
  font-size: clamp(3.3rem, 4.8vw, 6.2rem);
  font-weight: 850;
  line-height: 1;
  letter-spacing: -0.035em;
  overflow-wrap: normal;
}

.title-line {
  display: block;
}

@media (min-width: 1440px) {
  .title-line {
    white-space: normal;
    max-width: 100%;
  }
}

.split-word {
  display: inline-block;
  opacity: 0;
  transform: translateY(.45em);
  animation: split-in .55s var(--ease) forwards;
  will-change: transform, opacity;
}

.mobile-break {
  display: none;
}

.hero-intro {
  max-width: 60rem;
  margin: clamp(1.35rem, 2vw, 1.85rem) 0 0;
  color: #666;
  font-size: clamp(.96rem, 1vw, 1.16rem);
  font-weight: 600;
  line-height: 1.28;
  letter-spacing: -0.018em;
}

.social-proof {
  display: flex;
  align-items: center;
  gap: .72rem;
  margin-top: clamp(1.3rem, 1.95vw, 1.8rem);
}

.social-icons {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
}

.social-icons img {
  width: clamp(2.05rem, 2.35vw, 2.65rem);
  height: clamp(2.05rem, 2.35vw, 2.65rem);
  border: 2px solid #fff;
  border-radius: 50%;
  object-fit: cover;
  background: #000;
}

.social-icons img + img {
  margin-left: clamp(-.68rem, -.62vw, -.48rem);
}

.social-proof strong {
  font-size: clamp(.78rem, .9vw, .96rem);
  font-weight: 760;
  line-height: 1;
  letter-spacing: -0.02em;
}

.cta-spacer {
  display: block;
  width: clamp(9.2rem, 11vw, 10.75rem);
  height: clamp(2.65rem, 3vw, 3.05rem);
  margin-top: clamp(1rem, 1.7vw, 1.4rem);
  pointer-events: none;
  visibility: hidden;
}

.hero-stats {
  display: flex;
  gap: clamp(1.8rem, 3.2vw, 3.6rem);
  margin-top: clamp(2rem, 3.6vh, 3rem);
}

.hero-stats div {
  display: grid;
  gap: .38rem;
  align-content: start;
}

.hero-stats strong {
  font-size: clamp(2rem, 2.75vw, 3.05rem);
  font-weight: 900;
  line-height: .96;
  letter-spacing: -0.04em;
}

.hero-stats span {
  color: #586170;
  font-size: clamp(.82rem, .92vw, .98rem);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.capability-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(.9rem, 1.35vw, 1.45rem);
  padding: clamp(1.4rem, 2.2vw, 2rem) var(--side-pad) clamp(4.5rem, 7vw, 6rem);
  background: #fff;
  position: relative;
  z-index: 50;
}

.capability-card {
  position: relative;
  min-height: clamp(13rem, 19vw, 20rem);
  overflow: hidden;
  padding: clamp(1rem, 1.5vw, 1.35rem);
  display: flex;
  align-items: flex-end;
  background: #050505;
  color: #fff;
}

.capability-card::after {
  content: "";
  position: absolute;
  z-index: 3;
  right: 0;
  bottom: 0;
  width: clamp(.75rem, 1vw, 1rem);
  height: clamp(.75rem, 1vw, 1rem);
  background: #2525c8;
}

.capability-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(0, 0, 0, .58);
  opacity: 0;
  transition: opacity .28s ease;
}

.capability-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  filter: grayscale(1) contrast(1.08);
  transform: scale(1.04);
  transition:
    opacity .32s ease,
    transform .45s ease,
    filter .32s ease;
}

.capability-card:hover::before,
.capability-card:focus-within::before {
  opacity: 1;
}

.capability-card:hover img,
.capability-card:focus-within img {
  opacity: .72;
  filter: grayscale(.35) contrast(1.05);
  transform: scale(1);
}

.capability-card span {
  display: block;
  position: relative;
  z-index: 2;
  max-width: 100%;
  font-size: clamp(1.65rem, 2.55vw, 3.15rem);
  font-weight: 900;
  line-height: .96;
  letter-spacing: -0.035em;
}

.manifesto-lite {
  display: grid;
  min-height: clamp(16rem, 34svh, 24rem);
  place-items: center;
  padding: clamp(2.5rem, 4.4vw, 4.2rem) var(--side-pad);
  background: #fff;
  position: relative;
  z-index: 50;
}

.manifesto-lite p {
  max-width: 58rem;
  margin: 0;
  text-align: center;
  font-size: clamp(2rem, 3.25vw, 4.2rem);
  font-weight: 850;
  line-height: .98;
  letter-spacing: -0.052em;
}

.manifesto-lite span {
  color: var(--blue);
}

.project-section {
  min-height: 100svh;
  padding: clamp(5rem, 7vw, 7.5rem) var(--side-pad);
  background: #fff;
  position: relative;
  z-index: 50;
  overflow-x: hidden;
}

.project-heading-block {
  max-width: none;
  margin-bottom: clamp(1.6rem, 3vw, 3rem);
}

.project-kicker {
  margin: 0;
  color: var(--blue);
  font-size: clamp(1.45rem, 1.8vw, 2rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.01em;
  text-transform: uppercase;
}

.project-type {
  margin: 0;
  color: var(--blue);
  font-size: clamp(.78rem, .9vw, .95rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.01em;
  text-transform: uppercase;
}

.project-heading-block h2 {
  margin: .65rem 0 0;
  max-width: none;
  font-size: clamp(.66rem, .78vw, .9rem);
  font-weight: 850;
  line-height: 1;
  letter-spacing: -0.032em;
  white-space: nowrap;
}

.project-heading-block h2 a {
  color: inherit;
  text-decoration: none;
  transition: color .18s ease;
}

.project-heading-block h2 a:hover {
  color: var(--blue);
}

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

.project-card,
.research-card {
  display: grid;
  grid-template-rows: auto 1fr;
  min-height: clamp(34rem, 48vw, 50rem);
  background: #fff;
  color: #000;
}

.project-web .project-card {
  background: #000;
  color: #fff;
}

.project-web .media-frame {
  background: #000;
}

.project-web .project-copy p,
.project-web .project-facts {
  color: #fff;
}

.project-web .project-type {
  color: #fff;
}

.project-web .project-facts li::before {
  background: #fff;
}

.media-frame,
.research-poster {
  display: grid;
  place-items: center;
  min-height: clamp(20rem, 30vw, 32rem);
  padding: clamp(.75rem, 1vw, 1rem);
  background: #f5f5f5;
  overflow: hidden;
}

.media-frame {
  color: inherit;
}

.media-frame img,
.research-poster img {
  width: 100%;
  height: 100%;
  max-height: clamp(20rem, 30vw, 32rem);
  object-fit: contain;
}

.project-copy {
  display: grid;
  align-content: start;
  gap: clamp(.9rem, 1.15vw, 1.2rem);
  padding: clamp(1.2rem, 1.6vw, 1.6rem);
}

.project-copy h3,
.research-card h3 {
  margin: 0;
  font-size: clamp(2rem, 2.65vw, 3.35rem);
  font-weight: 900;
  line-height: .9;
  letter-spacing: -0.055em;
}

.project-copy p,
.project-facts,
.repo-card p {
  margin: 0;
  max-width: 42rem;
  color: #222;
  font-size: clamp(.98rem, 1.1vw, 1.18rem);
  font-weight: 400;
  line-height: 1.22;
  letter-spacing: -0.025em;
}

.project-facts {
  display: grid;
  gap: .28rem;
  padding: 0;
  list-style: none;
}

.project-facts li::before {
  content: "";
  display: inline-block;
  width: .42rem;
  height: .42rem;
  margin-right: .55rem;
  background: var(--blue);
  vertical-align: .12rem;
}

.repo-card {
  display: grid;
  align-content: space-between;
  gap: clamp(1rem, 2vw, 2rem);
  width: 100%;
  max-width: none;
  min-height: clamp(20rem, 30vw, 30rem);
  padding: clamp(1.4rem, 2vw, 2rem);
  background: var(--blue);
  color: #fff;
  transition:
    transform .2s ease,
    background .2s ease;
}

.repo-card:hover {
  transform: translateY(-.2rem);
  background: var(--blue-deep);
}

.repo-card span,
.repo-card em {
  color: #d8ddff;
  font-size: clamp(1.05rem, 1.45vw, 1.6rem);
  font-style: normal;
  font-weight: 850;
}

.repo-card p,
.repo-card-lede {
  color: #fff;
}

.repo-card-lede {
  max-width: min(72rem, 100%);
  font-size: clamp(1.35rem, 2vw, 2.35rem);
  font-weight: 650;
  line-height: 1.05;
  letter-spacing: -0.035em;
  overflow-wrap: normal;
}

.repo-card p.repo-card-lede {
  max-width: min(72rem, 100%);
  font-size: clamp(1.35rem, 2vw, 2.35rem);
  font-weight: 650;
  line-height: 1.05;
}

.gtm-layout {
  display: grid;
  grid-template-columns: minmax(18rem, .75fr) minmax(0, 1.25fr);
  gap: clamp(1.5rem, 3vw, 3rem);
  align-items: stretch;
}

.gtm-text-column {
  display: grid;
  grid-template-rows: auto 1fr;
  align-self: stretch;
  min-height: 0;
}

.gtm-copy {
  position: static;
  top: auto;
  padding: 0;
  align-self: stretch;
  display: grid;
  align-content: center;
  gap: clamp(1.35rem, 2vw, 2.2rem);
}

.gtm-copy.reveal {
  transform: none;
}

.project-gtm .project-heading-block {
  margin-bottom: 0;
}

.gtm-copy p:not(.project-type) {
  color: #111;
  font-size: clamp(1.35rem, 2vw, 2.35rem);
  font-weight: 650;
  line-height: 1.05;
  letter-spacing: -0.035em;
}

.gtm-copy p:not(.project-type) + p:not(.project-type) {
  border-top: 0;
  padding-top: 0;
}

.inline-source-link {
  color: inherit;
  text-decoration-line: underline;
  text-decoration-thickness: .06em;
  text-underline-offset: .12em;
  transition: color .18s ease;
}

.inline-source-link::after {
  content: "\2197\FE0E";
  margin-left: .16em;
  color: currentColor;
  font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
  font-size: .72em;
  font-variant-emoji: text;
  font-weight: 700;
  line-height: 1;
  vertical-align: .14em;
}

.inline-source-link:hover,
.inline-source-link:focus-visible {
  color: var(--blue);
}

.gtm-media-grid {
  display: grid;
  gap: clamp(1rem, 1.4vw, 1.5rem);
  min-width: 0;
}

.gtm-media-grid .media-frame {
  border: 0;
}

.website-link {
  color: inherit;
}

.website-link img {
  transition: transform .25s ease;
}

.website-link:hover img {
  transform: scale(.985);
}

.video-frame {
  --video-inset: clamp(.75rem, 1vw, 1rem);
  position: relative;
  display: block;
  width: 100%;
  min-width: 0;
  max-width: 100%;
  justify-self: stretch;
  align-self: start;
  aspect-ratio: 16 / 9;
  box-sizing: border-box;
  padding: var(--video-inset);
  background: var(--blue);
  overflow: hidden;
}

.video-frame video {
  position: absolute;
  inset: var(--video-inset);
  display: block;
  width: calc(100% - (var(--video-inset) * 2));
  height: calc(100% - (var(--video-inset) * 2));
  object-fit: contain;
  background: transparent;
}

.video-play {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  display: grid;
  place-items: center;
  width: clamp(4rem, 6vw, 5.6rem);
  height: clamp(4rem, 6vw, 5.6rem);
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, .92);
  cursor: pointer;
  opacity: 0;
  transform: translate(-50%, -50%) scale(.94);
  transition:
    opacity .2s ease,
    transform .2s ease,
    background .2s ease;
}

.video-play span {
  display: block;
  width: 0;
  height: 0;
  margin-left: .25rem;
  border-top: .78rem solid transparent;
  border-bottom: .78rem solid transparent;
  border-left: 1.1rem solid #000;
}

.gtm-media-grid:hover .video-play,
.video-frame:hover .video-play,
.video-frame:focus-within .video-play {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.video-frame.is-playing .video-play {
  opacity: 0;
  pointer-events: none;
}

.video-play:hover {
  background: #fff;
}

.research-grid {
  grid-template-columns: minmax(16rem, .42fr) minmax(0, 1fr);
  gap: clamp(1.15rem, 2vw, 2rem);
  align-items: stretch;
}

.research-poster-link {
  min-height: clamp(24rem, 36vw, 38rem);
  background: var(--blue);
}

.research-list {
  display: grid;
  grid-template-rows: 1fr 1fr;
  min-height: clamp(24rem, 36vw, 38rem);
}

.research-card {
  min-height: 0;
  grid-template-rows: none;
  background: transparent;
  transition: transform .2s ease;
}

.research-card:hover {
  transform: translateY(-.2rem);
  background: transparent;
}

.research-list .research-card + .research-card {
  border-top: 1px solid #111;
}

.research-card > div:last-child,
.research-copy {
  padding: clamp(1.2rem, 1.8vw, 1.9rem);
}

.research-list .research-copy {
  display: grid;
  align-content: center;
  height: 100%;
}

.research-card h3 {
  max-width: 62rem;
  margin: .85rem 0 0;
  font-size: clamp(1.35rem, 2vw, 2.35rem);
  font-weight: 650;
  line-height: 1.05;
  letter-spacing: -0.035em;
}

.research-card-text {
  display: grid;
  align-content: center;
  padding: 0;
  background: transparent;
}

.project-research .research-poster {
  background: var(--blue);
}

.research-card .project-type {
  font-size: clamp(1.05rem, 1.5vw, 1.6rem);
}

.manifesto-dark {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  grid-template-rows: 1fr auto 1fr;
  min-height: 38svh;
  padding: clamp(1.6rem, 2.7vw, 2.6rem) var(--side-pad);
  background: #000;
  color: #fff;
  position: relative;
  z-index: 50;
}

.quote-dot {
  grid-column: 2;
  grid-row: 2;
  align-self: center;
  justify-self: center;
  width: clamp(2rem, 3vw, 3rem);
  height: clamp(2rem, 3vw, 3rem);
  background: var(--blue);
}

.manifesto-words {
  display: grid;
  gap: .22em;
  font-size: clamp(2.8rem, 6.4vw, 7.8rem);
  font-weight: 900;
  line-height: .82;
  letter-spacing: -0.065em;
  color: #fff;
}

.manifesto-words span {
  display: block;
}

.manifesto-words-left {
  grid-column: 1;
  grid-row: 1;
  align-self: start;
  justify-self: start;
}

.manifesto-words-right {
  grid-column: 3;
  grid-row: 3;
  align-self: end;
  justify-self: end;
  text-align: right;
}


.roles-section {
  display: grid;
  align-items: center;
  min-height: 100svh;
  padding: clamp(4rem, 7vw, 7rem) var(--side-pad);
  position: relative;
  z-index: 60;
  background: #fff;
  box-shadow: none;
}

.identity-card {
  display: grid;
  grid-template-columns: 1fr;
  justify-items: center;
  gap: 0;
  width: 100%;
  background: #fff;
  padding: 0;
}

.identity-statement {
  display: grid;
  align-content: start;
  gap: clamp(2rem, 3vw, 3.2rem);
  min-height: clamp(28rem, 44vw, 42rem);
  padding: clamp(2rem, 3vw, 3.4rem);
  background: var(--blue);
  color: #fff;
}

.identity-statement span {
  margin: 0;
  font-size: clamp(1.1rem, 1.78vw, 1.72rem);
  font-weight: 900;
  line-height: .82;
  letter-spacing: -0.08em;
}

.identity-statement p {
  max-width: 48rem;
  margin: 0;
  font-size: clamp(.5rem, .58vw, .74rem);
  font-weight: 850;
  line-height: 1.08;
  letter-spacing: -0.055em;
}

.identity-photo {
  display: grid;
  place-items: center;
  width: min(62rem, 100%);
  min-height: auto;
  padding: 0;
  background: #fff;
}

.identity-photo img {
  width: 56%;
  height: auto;
  max-height: clamp(17rem, 27vw, 25rem);
  object-fit: cover;
}

.site-footer {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  display: grid;
  min-height: 100svh;
  height: 100svh;
  overflow: hidden;
  align-content: space-between;
  padding: clamp(4.8rem, 7vw, 7rem) var(--side-pad) clamp(2rem, 3vw, 3.2rem);
  background: #000;
  color: #fff;
  pointer-events: auto;
  width: 100%;
  max-width: 100%;
}

.footer-brand {
  position: absolute;
  left: -.045em;
  bottom: clamp(2.6rem, 4vw, 4.2rem);
  z-index: 0;
  margin: 0;
  font-size: clamp(12rem, 34vw, 32rem);
  font-weight: 950;
  line-height: .8;
  letter-spacing: -0.1em;
  color: #fff;
  white-space: nowrap;
  pointer-events: none;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 12vw, 14rem);
  position: relative;
  z-index: 2;
  max-width: 82rem;
  margin-top: 0;
  transform: translateY(clamp(-3.2rem, -5svh, -1.8rem));
}

.footer-stack {
  display: grid;
  gap: clamp(2.2rem, 5vw, 4.2rem);
}

.footer-stack-right {
  justify-self: start;
}

.footer-group {
  display: grid;
  gap: .25rem;
}

.footer-group h2,
.footer-group a,
.footer-group span,
.footer-copyright {
  margin: 0;
  font-size: clamp(1.15rem, 1.55vw, 1.72rem);
  font-weight: 850;
  line-height: 1.05;
  letter-spacing: -0.05em;
}

.footer-group h2 {
  margin-bottom: .35rem;
  font-size: clamp(1.35rem, 2vw, 2.1rem);
  font-weight: 950;
}

.footer-group h2 a {
  font: inherit;
  letter-spacing: inherit;
}

.footer-copyright {
  position: absolute;
  right: var(--side-pad);
  bottom: clamp(1.35rem, 2vw, 2rem);
  z-index: 3;
  max-width: 22rem;
  font-size: clamp(.95rem, 1.1vw, 1.22rem);
  text-align: right;
}

.reveal,
.reveal.is-visible {
  opacity: 1;
  transform: none;
  transition: none;
}

@keyframes word-in {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes word-dim {
  to {
    color: #e5e5e5;
  }
}

@keyframes square-appear {
  to {
    opacity: 1;
    transform: translate3d(0, -50%, 0) scale(1);
  }
}

@keyframes square-travel {
  to {
    opacity: 1;
    transform: translate3d(var(--intro-travel), -50%, 0) scale(1);
  }
}

@keyframes lockup-push {
  to {
    transform: translateX(28vw);
  }
}

@keyframes lockup-hide {
  to {
    opacity: 0;
  }
}

@keyframes stripes-sweep {
  from {
    transform: translate3d(-122vw, 0, 0);
  }
  to {
    transform: translate3d(102vw, 0, 0);
  }
}

@keyframes intro-reveal-page {
  to {
    background: transparent;
  }
}

@keyframes intro-hide {
  to {
    visibility: hidden;
    opacity: 0;
  }
}

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

@keyframes split-in {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 980px) {
  :root {
    --intro-font: clamp(2.65rem, 11.9vw, 4.5rem);
  }

  .site-header {
    grid-template-columns: 1fr auto;
    height: 4.8rem;
  }

  .center-nav {
    display: none;
  }

  .button {
    min-height: 2.65rem;
    padding: 0 1rem;
    font-size: .88rem;
  }

  .button-light {
    display: none;
  }

  .hero {
    min-height: auto;
    padding-top: 5.8rem;
    padding-bottom: 2.4rem;
  }

  .hero-layout {
    display: block;
  }

  .hero h1 {
    max-width: 18ch;
    font-size: clamp(3rem, 8.4vw, 4.85rem);
    line-height: 1.02;
    letter-spacing: -0.04em;
  }

  .hero-copy {
    max-width: min(62rem, 100%);
  }

  .hero-stats {
    margin-top: 2.1rem;
  }

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

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

  .research-poster-link,
  .research-list {
    min-height: auto;
  }

  .project-section {
    min-height: auto;
    padding-top: 4.5rem;
    padding-bottom: 4.5rem;
  }

  .project-heading-block h2 {
    max-width: none;
    white-space: normal;
  }

  .project-card,
  .research-card {
    min-height: 0;
  }

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

  .project-gtm .project-heading-block {
    margin-bottom: clamp(1.1rem, 4vw, 1.6rem);
  }

  .gtm-copy {
    position: static;
    max-width: 44rem;
  }

  .gtm-copy.reveal {
    transform: none;
  }

  .capability-card {
    min-height: clamp(11rem, 28vw, 15rem);
  }

  .repo-card {
    min-height: 22rem;
  }

  .identity-card {
    grid-template-columns: 1fr;
  }

  .identity-statement,
  .identity-photo {
    min-height: auto;
  }

  .identity-photo img {
    width: 70%;
    max-height: 30rem;
  }

  .site-footer {
    min-height: 100svh;
    height: 100svh;
    padding-top: 4.5rem;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    transform: none;
  }

  .footer-brand {
    bottom: 4.5rem;
    font-size: clamp(9rem, 36vw, 17rem);
  }
}

@media (max-width: 620px) {
  :root {
    --side-pad: 1rem;
    --mobile-content-pad: 1.4rem;
    --mobile-feature-text-size: clamp(1.18rem, 5.2vw, 1.82rem);
    --mobile-feature-line-height: 1.08;
    --mobile-feature-letter-spacing: -0.018em;
    --mobile-feature-weight: 650;
  }

  html,
  body {
    max-width: 100%;
    overflow-x: hidden;
  }

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

  .header-actions {
    display: none;
  }

  .pre-intro-browser {
    width: min(24rem, calc(100vw - 2rem));
    padding-top: 0;
  }

  .pre-intro-code {
    font-size: clamp(2.9rem, 12vw, 4.2rem);
  }

  .pre-intro h1 {
    font-size: clamp(3.2rem, 14.8vw, 5.2rem);
  }

  .hero {
    min-height: 100svh;
    padding-right: var(--side-pad);
    padding-top: 5.2rem;
    padding-bottom: 1.8rem;
  }

  .hero-copy {
    max-width: calc(100vw - 2rem);
  }

  .hero h1 {
    max-width: 100%;
    font-size: clamp(2.65rem, 12vw, 3.6rem);
    line-height: 1.04;
    letter-spacing: -0.035em;
  }

  .mobile-break {
    display: none;
  }

  .hero-intro {
    max-width: 21rem;
    margin-top: .85rem;
    font-size: .88rem;
    line-height: 1.24;
  }

  .social-proof {
    align-items: flex-start;
    gap: .58rem;
    margin-top: 1rem;
  }

  .social-icons img {
    width: 2.35rem;
    height: 2.35rem;
    border-width: 2px;
  }

  .social-icons img + img {
    margin-left: -.62rem;
  }

  .social-proof strong {
    max-width: 12rem;
    padding-top: .25rem;
    font-size: .76rem;
    line-height: 1.05;
  }

  .cta-spacer {
    width: 9.8rem;
    height: 2.8rem;
    margin-top: 1rem;
  }

  .hero-stats {
    gap: 1.35rem;
    margin-top: 1.65rem;
  }

  .hero-stats strong {
    font-size: clamp(1.85rem, 8.5vw, 2.35rem);
    line-height: .95;
  }

  .hero-stats span {
    font-size: .78rem;
    font-weight: 500;
  }

  .capability-strip {
    grid-template-columns: 1fr;
    gap: .75rem;
    padding-top: 1rem;
    padding-bottom: 3.5rem;
  }

  .capability-card {
    min-height: 9rem;
    padding: .9rem;
  }

  .capability-card::before {
    opacity: 1;
    background: rgba(0, 0, 0, .62);
  }

  .capability-card img {
    opacity: .42;
    transform: scale(1);
  }

  .capability-card span {
    font-size: clamp(1.72rem, 9.1vw, 3.36rem);
  }

  .manifesto-lite {
    min-height: 18rem;
    padding-top: 2.6rem;
    padding-bottom: 2.6rem;
  }

  .manifesto-lite p {
    font-size: clamp(1.4rem, 7.4vw, 2.2rem);
    line-height: 1.06;
    letter-spacing: -0.025em;
    text-align: left;
  }

  .project-section {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .project-extension .project-heading-block,
  .project-gtm .project-heading-block,
  .project-web .project-heading-block,
  .project-research .project-heading-block,
  .project-gtm .gtm-copy {
    padding-right: var(--mobile-content-pad);
    padding-left: var(--mobile-content-pad);
  }

  .project-heading-block {
    margin-bottom: 1.6rem;
  }

  .project-heading-block h2 {
    font-size: clamp(.66rem, 3vw, .86rem);
    max-width: 100%;
    white-space: normal;
  }

  .project-grid,
  .research-grid {
    grid-template-columns: 1fr;
  }

  .project-card .project-copy,
  .research-card > div:last-child,
  .research-copy {
    padding: var(--mobile-content-pad);
  }

  .media-frame,
  .research-poster {
    min-height: 14rem;
  }

  .media-frame img,
  .research-poster img {
    max-height: 18rem;
  }

  .project-copy h3 {
    font-size: clamp(2rem, 10vw, 3rem);
  }

  .project-web .project-copy h3 {
    font-size: clamp(1.34rem, 6.2vw, 2rem);
    line-height: .98;
    letter-spacing: -0.045em;
  }

  .research-card h3 {
    font-size: var(--mobile-feature-text-size);
    font-weight: var(--mobile-feature-weight);
    line-height: var(--mobile-feature-line-height);
    letter-spacing: var(--mobile-feature-letter-spacing);
    width: 100%;
    max-width: none;
  }

  .repo-card {
    min-height: 18rem;
    padding: var(--mobile-content-pad);
  }

  .repo-card-lede {
    font-size: var(--mobile-feature-text-size);
    font-weight: var(--mobile-feature-weight);
    line-height: var(--mobile-feature-line-height);
    letter-spacing: var(--mobile-feature-letter-spacing);
    width: 100%;
    max-width: none;
  }

  .gtm-copy {
    gap: clamp(1.55rem, 5vw, 2rem);
  }

  .gtm-copy p:not(.project-type) {
    font-size: var(--mobile-feature-text-size);
    font-weight: var(--mobile-feature-weight);
    line-height: var(--mobile-feature-line-height);
    letter-spacing: var(--mobile-feature-letter-spacing);
    width: 100%;
    max-width: none;
  }

  .inline-source-link {
    text-decoration-thickness: .045em;
    text-underline-offset: .09em;
  }

  .inline-source-link::after {
    margin-left: .12em;
    font-size: .68em;
    vertical-align: .12em;
  }

  .video-play {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }

  .video-frame {
    --video-inset: clamp(.55rem, 2.2vw, .8rem);
  }

  .research-list {
    grid-template-rows: auto auto;
  }

  .research-list .research-copy {
    min-height: 10rem;
  }

  .manifesto-dark {
    min-height: 52svh;
  }

  .manifesto-words {
    gap: .16em;
    font-size: clamp(2.8rem, 12vw, 4.25rem);
    line-height: .84;
  }

  .manifesto-words-right {
    grid-column: 1 / -1;
    justify-self: stretch;
    justify-items: end;
    max-width: 100%;
    text-align: right;
  }

  .identity-card {
    padding: 1rem;
  }

  .identity-statement {
    gap: 1.4rem;
    padding: 1.4rem;
  }

  .identity-statement span {
    font-size: clamp(1.25rem, 6.9vw, 1.72rem);
  }

  .identity-statement p {
    font-size: clamp(.62rem, 2.45vw, .72rem);
  }

  .identity-photo {
    padding: 1rem;
  }

  .site-footer {
    min-height: 100svh;
    padding-top: 3.6rem;
    padding-bottom: 4.5rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-stack {
    gap: 1.75rem;
  }

  .footer-group h2,
  .footer-group a,
  .footer-group span {
    font-size: 1.15rem;
  }

  .footer-group h2 {
    font-size: 1.35rem;
  }

  .footer-brand {
    left: -.035em;
    bottom: 4.2rem;
    font-size: clamp(7.2rem, 43vw, 10.5rem);
    line-height: .82;
  }

  .footer-copyright {
    right: var(--side-pad);
    bottom: 1.05rem;
    left: auto;
    font-size: .78rem;
    text-align: right;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }

  body.intro-running {
    overflow: auto;
  }

  .pre-intro-square {
    animation: none;
  }

  .intro {
    display: none;
  }

  .page-shell,
  .split-word,
  .reveal {
    opacity: 1;
    transform: none;
  }
}
