
:root {
  --ink: #0a0a0a;
  --paper: #f3f1eb;
  --white: #ffffff;
  --acid: #caff3b;
  --blue: #3057ff;
  --line-dark: rgba(255, 255, 255, 0.18);
  --line-light: rgba(10, 10, 10, 0.2);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--ink);
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

body,
button,
a {
  cursor: default;
}

a,
button {
  color: inherit;
}

a {
  text-decoration: none;
  cursor: pointer;
}

button {
  font: inherit;
  cursor: pointer;
}

::selection {
  color: var(--ink);
  background: var(--acid);
}

main {
  overflow: hidden;
}

.intro {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
  animation: intro-out 0.85s cubic-bezier(.77, 0, .18, 1) 3.35s forwards;
}

.intro-grid {
  position: absolute;
  inset: 0;
  opacity: 0.22;
  background-image:
    linear-gradient(rgba(255,255,255,.13) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.13) 1px, transparent 1px);
  background-size: 7.5vw 7.5vw;
  animation: grid-drift 4s linear both;
}

.intro-kicker,
.intro-caption {
  position: absolute;
  margin: 0;
  font-size: 10px;
  line-height: 1;
  letter-spacing: .22em;
  text-transform: uppercase;
}

.intro-kicker {
  top: 8vh;
  left: 5vw;
  opacity: 0;
  animation: fade-up .55s ease .25s forwards;
}

.intro-caption {
  bottom: 8vh;
  left: 5vw;
  color: var(--acid);
  opacity: 0;
  animation: fade-up .55s ease 1.65s forwards;
}

.intro-word {
  position: relative;
  z-index: 2;
  display: flex;
  font-size: clamp(6rem, 25vw, 25rem);
  font-weight: 700;
  line-height: .72;
  letter-spacing: -.11em;
  text-transform: uppercase;
}

.intro-word span {
  display: block;
  transform: translateY(115%);
  animation: letter-rise .8s cubic-bezier(.77, 0, .18, 1) forwards;
}

.intro-word span:nth-child(1) { animation-delay: .45s; }
.intro-word span:nth-child(2) { animation-delay: .58s; color: var(--acid); }
.intro-word span:nth-child(3) { animation-delay: .71s; }
.intro-word span:nth-child(4) { animation-delay: .84s; }

.intro-rule {
  position: absolute;
  top: 50%;
  left: 0;
  z-index: 3;
  width: 0;
  height: 2px;
  background: var(--acid);
  animation: rule-draw 1.2s cubic-bezier(.77, 0, .18, 1) 1.35s forwards;
}

.skip-intro {
  position: absolute;
  right: 5vw;
  bottom: 7vh;
  display: flex;
  align-items: center;
  gap: 7px;
  border: 0;
  background: none;
  color: rgba(255,255,255,.55);
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.skip-intro:hover {
  color: var(--white);
}

@keyframes letter-rise {
  to { transform: translateY(0); }
}

@keyframes fade-up {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes rule-draw {
  0% { width: 0; left: 0; }
  65% { width: 100%; left: 0; }
  100% { width: 0; left: 100%; }
}

@keyframes grid-drift {
  from { transform: scale(1.1) translate3d(-2%, -2%, 0); }
  to { transform: scale(1.1) translate3d(2%, 2%, 0); }
}

@keyframes intro-out {
  to { transform: translateY(-100%); visibility: hidden; }
}

.site-nav {
  position: relative;
  z-index: 30;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 76px;
  padding: 0 28px;
  border-bottom: 1px solid var(--line-light);
  background: var(--white);
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.nav-brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: fit-content;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.brand-mark {
  position: relative;
  display: grid;
  width: 35px;
  height: 35px;
  place-items: center;
  background: var(--ink);
  color: var(--white);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -.06em;
}

.brand-mark > span {
  position: absolute;
  right: 3px;
  top: 1px;
  color: var(--acid);
  font-size: 10px;
}

.nav-links {
  display: flex;
  gap: 38px;
}

.nav-links a,
.nav-location {
  position: relative;
  transition: opacity .2s ease;
}

.nav-links a:hover,
.nav-location:hover {
  opacity: .5;
}

.nav-location {
  display: flex;
  align-items: center;
  justify-self: end;
  gap: 10px;
}

.live-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #31e467;
  box-shadow: 0 0 0 4px rgba(49,228,103,.14);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: calc(100svh - 76px);
  background: var(--ink);
  color: var(--white);
}

.hero-noise {
  position: absolute;
  inset: 0 50% 0 0;
  pointer-events: none;
  opacity: .18;
  background-image: radial-gradient(rgba(255,255,255,.35) .6px, transparent .6px);
  background-size: 7px 7px;
}

.hero-copy {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: 30px 32px 38px;
}

.eyebrow {
  display: flex;
  justify-content: space-between;
  margin: 0;
  color: rgba(255,255,255,.6);
  font-size: 9px;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.hero h1 {
  display: flex;
  flex: 1;
  flex-direction: column;
  justify-content: center;
  margin: 0;
}

.hero-next {
  display: block;
  margin-left: -.05em;
  color: var(--acid);
  font-size: clamp(7.5rem, 15.6vw, 18rem);
  font-weight: 700;
  line-height: .69;
  letter-spacing: -.115em;
}

.hero-statement {
  display: block;
  max-width: 640px;
  margin-top: 7vh;
  font-size: clamp(2.05rem, 4.3vw, 5rem);
  font-weight: 400;
  line-height: .95;
  letter-spacing: -.055em;
}

.hero-bottom {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 30px;
}

.hero-bottom > p {
  max-width: 520px;
  margin: 0;
  color: rgba(255,255,255,.68);
  font-size: clamp(.9rem, 1.2vw, 1.15rem);
  line-height: 1.55;
}

.round-link {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border: 1px solid rgba(255,255,255,.35);
  border-radius: 50%;
  transition: background .25s ease, color .25s ease, transform .25s ease;
}

.round-link:hover {
  transform: rotate(-45deg);
  background: var(--acid);
  color: var(--ink);
}

.spatial-window {
  position: relative;
  min-width: 0;
  overflow: hidden;
  background-color: var(--acid);
  background-image:
    linear-gradient(rgba(0,0,0,.13) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,0,0,.13) 1px, transparent 1px);
  background-size: 9% 9%;
  color: var(--ink);
  perspective: 800px;
}

.spatial-window::after {
  content: "";
  position: absolute;
  inset: 11%;
  border: 1px solid rgba(0,0,0,.35);
  box-shadow: 0 0 0 1px rgba(255,255,255,.3) inset;
}

.spatial-meta {
  position: absolute;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 8px;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.top-left { top: 26px; left: 28px; }
.top-right { top: 26px; right: 28px; }
.bottom-left { bottom: 26px; left: 28px; }
.bottom-right { bottom: 26px; right: 28px; }
.spatial-window .live-dot { width: 6px; height: 6px; background: var(--ink); box-shadow: none; }

.spatial-axis {
  position: absolute;
  z-index: 2;
  left: 50%;
  top: 50%;
  transform-origin: left center;
  background: rgba(0,0,0,.6);
}

.axis-x { width: 65%; height: 1px; transform: rotate(-22deg); }
.axis-y { width: 1px; height: 65%; transform: translateY(-50%); }
.axis-z { width: 55%; height: 1px; transform: rotate(35deg); }

.portal {
  position: absolute;
  left: 50%;
  top: 50%;
  border: 1px solid var(--ink);
  transform: translate(-50%,-50%) rotateY(58deg) rotateZ(-3deg);
  animation: portal-breathe 5s ease-in-out infinite;
}

.portal::before,
.portal::after {
  content: "";
  position: absolute;
  background: var(--ink);
}

.portal::before { left: 50%; top: -18%; width: 1px; height: 136%; }
.portal::after { top: 50%; left: -18%; height: 1px; width: 136%; }
.portal-one { width: 47%; height: 58%; }
.portal-two { width: 29%; height: 38%; animation-delay: -.8s; }
.portal-three { width: 13%; height: 18%; animation-delay: -1.6s; }

.spatial-focus {
  position: absolute;
  z-index: 6;
  left: 55%;
  top: 48%;
  display: grid;
  width: 74px;
  height: 74px;
  place-items: center;
  border: 1px solid var(--ink);
  border-radius: 50%;
  animation: focus-spin 8s linear infinite;
}

.spatial-focus::before,
.spatial-focus::after {
  content: "";
  position: absolute;
  background: var(--ink);
}

.spatial-focus::before { width: 110%; height: 1px; }
.spatial-focus::after { height: 110%; width: 1px; }
.spatial-focus span { width: 9px; height: 9px; background: var(--ink); border-radius: 50%; }

@keyframes portal-breathe {
  0%, 100% { transform: translate(-50%,-50%) rotateY(58deg) rotateZ(-3deg) scale(1); }
  50% { transform: translate(-50%,-50%) rotateY(58deg) rotateZ(-3deg) scale(1.07); }
}

@keyframes focus-spin {
  to { transform: rotate(360deg); }
}

.manifesto {
  display: grid;
  grid-template-columns: 1fr 3fr;
  padding: 130px 32px 150px;
  background: var(--paper);
}

.section-index {
  margin: 0;
  font-size: 9px;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.section-index::before {
  content: "";
  display: inline-block;
  width: 26px;
  height: 1px;
  margin: 0 10px 3px 0;
  background: currentColor;
}

.manifesto-content {
  display: grid;
  gap: 90px;
}

.manifesto-lead {
  max-width: 1210px;
  margin: 0;
  font-size: clamp(3rem, 6.9vw, 8rem);
  font-weight: 400;
  line-height: .94;
  letter-spacing: -.065em;
}

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

.manifesto-detail {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 7vw;
  max-width: 870px;
  margin-left: auto;
}

.manifesto-detail p {
  margin: 0;
  font-size: .96rem;
  line-height: 1.7;
}

.capabilities {
  padding: 130px 32px 60px;
  background: var(--ink);
  color: var(--white);
}

.section-heading {
  display: grid;
  grid-template-columns: 2fr 1fr;
  align-items: end;
  gap: 40px;
  margin-bottom: 100px;
}

.section-index.light {
  color: rgba(255,255,255,.55);
}

.section-heading h2,
.group-copy h2,
.location-heading h2 {
  margin: 38px 0 0;
  font-size: clamp(3.1rem, 7.1vw, 8.2rem);
  font-weight: 400;
  line-height: .87;
  letter-spacing: -.065em;
}

.section-note {
  max-width: 330px;
  margin: 0 0 5px auto;
  color: rgba(255,255,255,.56);
  font-size: .9rem;
  line-height: 1.55;
}

.capability-list {
  border-top: 1px solid var(--line-dark);
}

.capability-row {
  display: grid;
  grid-template-columns: 45px 72px minmax(230px, 1.4fr) minmax(240px, 1fr) 38px;
  align-items: center;
  gap: 28px;
  min-height: 184px;
  border-bottom: 1px solid var(--line-dark);
  transition: background .3s ease, color .3s ease, padding .3s ease;
}

.capability-row:hover {
  padding: 0 18px;
  background: var(--acid);
  color: var(--ink);
}

.cap-number {
  color: rgba(255,255,255,.45);
  font-size: 9px;
}

.capability-row:hover .cap-number,
.capability-row:hover p {
  color: rgba(0,0,0,.65);
}

.cap-icon {
  width: 42px;
  height: 42px;
}

.capability-row h3 {
  margin: 0;
  font-size: clamp(1.5rem, 2.6vw, 3rem);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -.035em;
}

.capability-row p {
  margin: 0;
  color: rgba(255,255,255,.54);
  font-size: .9rem;
  line-height: 1.6;
}

.cap-arrow {
  justify-self: end;
  width: 28px;
  height: 28px;
}

.portfolio {
  padding: 135px 32px 160px;
  background: var(--paper);
}

.portfolio-heading {
  display: grid;
  grid-template-columns: 2fr 1fr;
  align-items: end;
  gap: 70px;
}

.portfolio-heading h2 {
  max-width: 1150px;
  margin: 38px 0 0;
  font-size: clamp(3.5rem, 7.5vw, 8.8rem);
  font-weight: 400;
  line-height: .86;
  letter-spacing: -.07em;
}

.portfolio-heading h2 span {
  color: var(--blue);
}

.portfolio-intro {
  max-width: 410px;
  padding-left: 24px;
  border-left: 1px solid var(--line-light);
}

.portfolio-intro p:first-child {
  margin: 0 0 26px;
  font-size: 9px;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.portfolio-intro p:last-child {
  margin: 0;
  font-size: .95rem;
  line-height: 1.65;
}

.lead-project {
  margin-top: 105px;
}

.video-frame {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--ink);
  background: var(--ink);
}

.video-frame video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: var(--ink);
}

.lead-video video {
  aspect-ratio: 1280 / 676;
}

.video-label {
  position: absolute;
  left: 18px;
  top: 18px;
  z-index: 2;
  display: flex;
  gap: 22px;
  padding: 10px 12px;
  background: var(--ink);
  color: var(--white);
  font-size: 8px;
  letter-spacing: .14em;
  text-transform: uppercase;
  pointer-events: none;
}

.video-label span:first-child {
  color: var(--acid);
}

.lead-caption {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 60px;
  align-items: start;
  padding-top: 27px;
}

.lead-caption p,
.study-caption p {
  margin: 0;
  font-size: .92rem;
  line-height: 1.65;
}

.lead-caption > div > p {
  margin-bottom: 15px;
  font-size: 8px;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.lead-caption h3 {
  margin: 0;
  font-size: clamp(2.8rem, 6vw, 7rem);
  font-weight: 400;
  line-height: .9;
  letter-spacing: -.06em;
}

.lead-caption > p {
  max-width: 470px;
  padding-top: 23px;
}

.study-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 95px 28px;
  margin-top: 145px;
}

.study-card:nth-child(even) {
  transform: translateY(100px);
}

.study-caption {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 30px;
  padding-top: 22px;
}

.study-caption h3 {
  margin: 0;
  font-size: clamp(1.8rem, 3.25vw, 3.8rem);
  font-weight: 400;
  line-height: .96;
  letter-spacing: -.05em;
}

.study-caption p {
  color: rgba(10,10,10,.68);
}

.group-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 980px;
  background: var(--white);
}

.group-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--blue);
  color: var(--white);
}

.group-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.15) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.15) 1px, transparent 1px);
  background-size: 12.5% 12.5%;
}

.group-monogram {
  position: relative;
  z-index: 2;
  font-size: clamp(12rem, 31vw, 36rem);
  font-weight: 700;
  line-height: .7;
  letter-spacing: -.16em;
}

.group-monogram span {
  color: var(--acid);
}

.group-visual > p {
  position: absolute;
  z-index: 3;
  left: 30px;
  bottom: 28px;
  margin: 0;
  font-size: 9px;
  letter-spacing: .2em;
  text-transform: uppercase;
}

.group-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 90px 7vw;
}

.group-copy h2 {
  margin-bottom: 65px;
  font-size: clamp(3rem, 5.4vw, 6.5rem);
}

.group-copy > p:not(.section-index) {
  max-width: 570px;
  margin: 0 0 24px;
  font-size: 1rem;
  line-height: 1.7;
}

.parent-logo-card {
  width: 185px;
  height: 185px;
  margin-top: 40px;
  overflow: hidden;
  border: 1px solid var(--line-light);
  background: var(--white);
}

.parent-logo-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.founders {
  padding: 130px 32px 150px;
  background: var(--ink);
  color: var(--white);
}

.founder-heading {
  margin-bottom: 90px;
}

.founder-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.founder-card.second {
  margin-top: 150px;
}

.portrait-placeholder {
  position: relative;
  display: grid;
  aspect-ratio: 4 / 5;
  place-items: center;
  overflow: hidden;
  isolation: isolate;
}

.portrait-placeholder.jose {
  background: var(--acid);
  color: var(--ink);
}

.portrait-placeholder.josephine {
  background: var(--blue);
  color: var(--white);
}

.portrait-placeholder::before {
  content: "";
  position: absolute;
  inset: 7%;
  z-index: -1;
  border: 1px solid currentColor;
  opacity: .4;
}

.portrait-placeholder::after {
  content: "PORTRAIT / PROFILE";
  position: absolute;
  right: 18px;
  bottom: 18px;
  font-size: 8px;
  letter-spacing: .16em;
}

.portrait-placeholder > span {
  font-size: clamp(8rem, 19vw, 22rem);
  font-weight: 700;
  line-height: .7;
  letter-spacing: -.13em;
}

.portrait-scan {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 1px;
  background: currentColor;
  box-shadow: 0 0 12px currentColor;
  opacity: .55;
  animation: portrait-scan 5s ease-in-out infinite;
}

@keyframes portrait-scan {
  0%, 100% { top: 5%; }
  50% { top: 95%; }
}

.founder-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 28px;
  padding-top: 24px;
}

.founder-meta > p:first-child {
  margin: 6px 0 0;
  color: rgba(255,255,255,.5);
  font-size: 9px;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.founder-meta h3 {
  grid-column: 1 / -1;
  grid-row: 1;
  margin: 0 0 20px;
  font-size: clamp(2.4rem, 5vw, 5.8rem);
  font-weight: 400;
  line-height: .95;
  letter-spacing: -.055em;
}

.founder-bio {
  grid-column: 2;
  margin: 0;
  color: rgba(255,255,255,.68);
  font-size: .9rem;
  line-height: 1.65;
}

.locations {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 8vw;
  padding: 125px 32px 135px;
  background: var(--acid);
}

.location-heading h2 {
  font-size: clamp(3.5rem, 6.5vw, 7.5rem);
}

.city-list {
  border-top: 1px solid var(--line-light);
}

.city {
  display: grid;
  grid-template-columns: 42px 1fr auto;
  align-items: center;
  min-height: 146px;
  border-bottom: 1px solid var(--line-light);
}

.city > span:first-child {
  font-size: 9px;
}

.city h3 {
  margin: 0;
  font-size: clamp(2.25rem, 4.3vw, 5rem);
  font-weight: 400;
  letter-spacing: -.055em;
}

.city-cross {
  font-size: 2rem;
  font-weight: 300;
}

footer {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: start;
  gap: 40px;
  padding: 80px 32px 38px;
  background: var(--ink);
  color: var(--white);
}

.brand-mark.inverse {
  background: var(--white);
  color: var(--ink);
}

footer > p {
  margin: 5px 0 0;
  color: rgba(255,255,255,.6);
  font-size: .9rem;
  line-height: 1.5;
}

.footer-end {
  display: flex;
  justify-content: space-between;
  gap: 25px;
  margin-top: 7px;
  color: rgba(255,255,255,.55);
  font-size: 9px;
  letter-spacing: .1em;
  text-transform: uppercase;
}

@media (max-width: 960px) {
  .site-nav {
    grid-template-columns: 1fr 1fr;
  }

  .nav-links { display: none; }

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

  .hero-copy {
    min-height: calc(100svh - 76px);
  }

  .hero-noise { inset: 0; }

  .spatial-window {
    min-height: 72svh;
  }

  .manifesto {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .section-heading {
    grid-template-columns: 1fr;
  }

  .section-note {
    margin-left: 0;
  }

  .capability-row {
    grid-template-columns: 36px 50px 1fr 30px;
    gap: 20px;
    padding: 30px 0;
  }

  .capability-row p {
    grid-column: 3 / -1;
  }

  .cap-arrow {
    grid-column: 4;
    grid-row: 1;
  }

  .portfolio-heading {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .portfolio-intro {
    max-width: 590px;
  }

  .lead-caption {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .lead-caption > p {
    max-width: 600px;
    padding-top: 0;
  }

  .study-grid {
    gap: 80px 18px;
  }

  .study-caption {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .group-story {
    grid-template-columns: 1fr;
  }

  .group-visual {
    min-height: 75svh;
  }

  .founder-grid {
    gap: 18px;
  }

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

  .founder-meta h3 {
    grid-row: auto;
  }

  .founder-bio {
    grid-column: 1;
  }

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

  footer {
    grid-template-columns: 1fr 1fr;
  }

  .footer-end {
    grid-column: 1 / -1;
    margin-top: 45px;
  }
}

@media (max-width: 640px) {
  .site-nav {
    min-height: 68px;
    padding: 0 18px;
  }

  .nav-location {
    max-width: 155px;
    text-align: right;
    line-height: 1.35;
  }

  .hero {
    min-height: calc(100svh - 68px);
  }

  .hero-copy {
    min-height: calc(100svh - 68px);
    padding: 24px 18px 28px;
  }

  .hero-next {
    font-size: clamp(6.2rem, 32vw, 10rem);
  }

  .hero-statement {
    margin-top: 5vh;
  }

  .hero-bottom > p {
    font-size: .86rem;
  }

  .round-link {
    width: 48px;
    height: 48px;
  }

  .spatial-window {
    min-height: 68svh;
  }

  .top-left,
  .bottom-left { left: 18px; }
  .top-right,
  .bottom-right { right: 18px; }

  .manifesto,
  .capabilities,
  .portfolio,
  .founders,
  .locations {
    padding-left: 18px;
    padding-right: 18px;
  }

  .manifesto {
    padding-top: 95px;
    padding-bottom: 105px;
  }

  .manifesto-content {
    gap: 65px;
  }

  .manifesto-detail {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .capabilities,
  .founders {
    padding-top: 95px;
    padding-bottom: 95px;
  }

  .section-heading,
  .founder-heading {
    margin-bottom: 65px;
  }

  .capability-row {
    grid-template-columns: 27px 1fr 25px;
  }

  .cap-icon {
    display: none;
  }

  .capability-row h3 {
    grid-column: 2;
  }

  .capability-row p {
    grid-column: 2 / -1;
  }

  .cap-arrow {
    grid-column: 3;
  }

  .portfolio {
    padding-top: 95px;
    padding-bottom: 105px;
  }

  .portfolio-heading h2 {
    font-size: clamp(3rem, 16vw, 5.5rem);
  }

  .portfolio-intro {
    padding-left: 18px;
  }

  .lead-project {
    margin-top: 70px;
  }

  .video-label {
    left: 10px;
    top: 10px;
    max-width: calc(100% - 20px);
    gap: 12px;
    padding: 8px 9px;
    font-size: 7px;
  }

  .lead-caption {
    padding-top: 20px;
  }

  .lead-caption h3 {
    font-size: clamp(2.5rem, 13vw, 4.5rem);
  }

  .study-grid {
    grid-template-columns: 1fr;
    gap: 70px;
    margin-top: 95px;
  }

  .study-card:nth-child(even) {
    transform: none;
  }

  .study-caption h3 {
    font-size: 2.4rem;
  }

  .group-visual {
    min-height: 62svh;
  }

  .group-copy {
    padding: 85px 18px 95px;
  }

  .group-copy h2 {
    margin-bottom: 48px;
  }

  .founder-grid {
    grid-template-columns: 1fr;
    gap: 80px;
  }

  .founder-card.second {
    margin-top: 0;
  }

  .founder-meta h3 {
    margin-top: 8px;
  }

  .locations {
    padding-top: 90px;
    padding-bottom: 100px;
  }

  .city {
    min-height: 105px;
  }

  footer {
    grid-template-columns: 1fr;
    padding: 65px 18px 30px;
  }

  footer > p {
    margin-top: 25px;
  }

  .footer-end {
    grid-column: 1;
  }

  .intro-word {
    font-size: 25vw;
  }
}

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