@font-face {
  font-family: "Archivo";
  src: url("fonts/archivo-variable-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 400 900;
  font-stretch: 75% 125%;
  font-display: swap;
}

@font-face {
  font-family: "IBM Plex Mono";
  src: url("fonts/ibm-plex-mono-medium-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}

:root {
  --ink: #0b0b0b;
  --paper: #f1f0ea;
  --white: #ffffff;
  --orange: #ff4d00;
  --soft-orange: #ff6b2c;
  --gray: #a6a59e;
  --line-dark: rgba(255, 255, 255, 0.18);
  --line-light: rgba(11, 11, 11, 0.2);
  --shell: 1380px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scrollbar-color: var(--orange) var(--ink);
}

body {
  margin: 0;
  background: var(--ink);
  color: var(--white);
  font-family: "Archivo", sans-serif;
  font-optical-sizing: auto;
  -webkit-font-smoothing: antialiased;
}

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

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

a {
  color: inherit;
}

a:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  transform: translateY(-160%);
  padding: 12px 16px;
  background: var(--white);
  color: var(--ink);
  font-weight: 700;
}

.skip-link:focus {
  transform: translateY(0);
}

.shell {
  width: min(var(--shell), calc(100% - 64px));
  margin: 0 auto;
}

.site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 5;
  border-bottom: 1px solid var(--line-dark);
}

.nav {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.wordmark {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 650;
  letter-spacing: -0.025em;
  text-transform: uppercase;
}

.wordmark span {
  color: var(--orange);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav-links a,
.project-status,
.site-footer,
.legal-nav a,
.legal-meta {
  font-family: "IBM Plex Mono", monospace;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-links a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  text-decoration: none;
  text-underline-offset: 5px;
  transition: color 160ms ease;
}

.nav-links a:hover,
.nav-links a:focus-visible,
.nav-links a[aria-current="page"] {
  color: var(--orange);
}

.hero {
  position: relative;
  isolation: isolate;
  min-height: 100dvh;
  display: flex;
  align-items: flex-end;
  padding: 150px 0 74px;
  overflow: hidden;
  background:
    linear-gradient(90deg, transparent 0 49.9%, rgba(255,255,255,.07) 50%, transparent 50.1%),
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    var(--ink);
  background-size: 100% 100%, 100% 92px, auto;
}

.hero-inner {
  position: relative;
  z-index: 2;
}

.venture-aperture {
  position: absolute;
  inset: 76px 0 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.venture-aperture::before,
.venture-aperture::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
}

.venture-aperture::before {
  background: linear-gradient(90deg, var(--ink) 0 24%, rgba(11, 11, 11, .94) 34%, rgba(11, 11, 11, .35) 66%, rgba(11, 11, 11, .08) 100%);
}

.venture-aperture::after {
  background: linear-gradient(0deg, var(--ink) 0, rgba(11, 11, 11, .86) 16%, transparent 52%, rgba(11, 11, 11, .28) 100%);
}

.venture-aperture-track {
  position: absolute;
  top: 9%;
  right: -4vw;
  z-index: 0;
  width: min(76vw, 1160px);
  height: 74%;
  display: grid;
  grid-template-columns: .9fr 1.12fr 1.12fr .9fr;
  gap: 7px;
  transform: rotate(-3.2deg) scale(1.08);
  transform-origin: 70% 48%;
}

.venture-motion-type {
  position: absolute;
  top: 13%;
  right: 2vw;
  z-index: 1;
  width: min(72vw, 1120px);
  height: 72%;
  overflow: hidden;
}

.venture-motion-type span {
  position: absolute;
  top: 50%;
  right: 0;
  width: 100%;
  color: var(--orange);
  font-size: clamp(72px, 10.5vw, 158px);
  font-weight: 850;
  font-stretch: condensed;
  line-height: .8;
  letter-spacing: -.04em;
  text-align: right;
  text-transform: uppercase;
  opacity: 0;
  transform: translate3d(0, -50%, 0);
  clip-path: inset(0 0 0 100%);
}

.venture-frame {
  position: relative;
  min-width: 0;
  height: 100%;
  margin: 0;
  overflow: hidden;
  background: #151515;
  box-shadow: 0 22px 70px rgba(0, 0, 0, .32);
  clip-path: inset(0);
}

.venture-frame:nth-child(2),
.venture-frame:nth-child(4) {
  transform: translateY(6%);
}

.venture-frame:nth-child(3) {
  transform: translateY(-3%);
}

.venture-frame img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  filter: saturate(.92) contrast(1.06) brightness(.78);
  transform: scale(1.06);
}

.venture-frame-gov img {
  object-position: 54% center;
}

.venture-frame-echo img {
  object-position: 68% center;
}

.venture-frame-alpenglow img {
  object-position: 51% center;
}

.venture-frame-summit img {
  object-position: 77% center;
}

.venture-frame figcaption {
  position: absolute;
  inset: auto 0 0;
  z-index: 1;
  padding: 42px 12px 12px;
  background: linear-gradient(transparent, rgba(0, 0, 0, .86));
  color: rgba(255, 255, 255, .9);
  font-family: "IBM Plex Mono", monospace;
  font-size: 9px;
  letter-spacing: .07em;
  line-height: 1.25;
  text-transform: uppercase;
}

.venture-edit-line {
  position: absolute;
  inset: -9% auto -9% 0;
  z-index: 4;
  width: 2px;
  background: var(--orange);
  box-shadow: 0 0 24px rgba(255, 77, 0, .65);
  opacity: 0;
  transform: translateX(-20px);
}

.venture-replay {
  position: absolute;
  top: 102px;
  right: 32px;
  z-index: 3;
  display: none;
  align-items: center;
  gap: 9px;
  min-height: 44px;
  padding: 8px 10px;
  border: 0;
  background: rgba(11, 11, 11, .72);
  color: rgba(255, 255, 255, .84);
  font-family: "IBM Plex Mono", monospace;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  cursor: pointer;
  transition:
    color 160ms cubic-bezier(.16, 1, .3, 1),
    background-color 220ms cubic-bezier(.16, 1, .3, 1),
    transform 220ms cubic-bezier(.16, 1, .3, 1);
}

.has-motion .venture-replay {
  display: inline-flex;
}

.venture-replay svg {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: square;
  stroke-linejoin: miter;
  stroke-width: 1.6;
}

.venture-replay:hover,
.venture-replay:focus-visible {
  background: var(--orange);
  color: var(--ink);
  transform: translateY(-2px);
}

.venture-replay:focus-visible {
  outline: 3px solid var(--white);
  outline-offset: 3px;
}

.venture-replay:active {
  transform: translateY(0);
}

@keyframes venture-track-settle {
  from {
    opacity: .2;
    transform: translate3d(13vw, 0, 0) rotate(-3.2deg) scale(1.08);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0) rotate(-3.2deg) scale(1.08);
  }
}

@keyframes venture-frame-open {
  from {
    opacity: 0;
    clip-path: inset(0 50% 0 50%);
  }

  to {
    opacity: 1;
    clip-path: inset(0);
  }
}

@keyframes venture-image-settle {
  from {
    transform: scale(1.17) translate3d(4%, 0, 0);
  }

  to {
    transform: scale(1.06) translate3d(0, 0, 0);
  }
}

@keyframes venture-edit-pass {
  0% {
    opacity: 0;
    transform: translateX(-20px);
  }

  12% {
    opacity: 1;
  }

  82% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    transform: translateX(calc(min(76vw, 1160px) + 20px));
  }
}

@keyframes venture-word-pass {
  0% {
    opacity: 0;
    transform: translate3d(10%, -50%, 0);
    clip-path: inset(0 0 0 100%);
  }

  20%, 64% {
    opacity: .86;
    transform: translate3d(0, -50%, 0);
    clip-path: inset(0);
  }

  100% {
    opacity: 0;
    transform: translate3d(-5%, -50%, 0);
    clip-path: inset(0 100% 0 0);
  }
}

.is-animating .venture-aperture-track {
  animation: venture-track-settle 2.8s cubic-bezier(.16, 1, .3, 1) both;
}

.is-animating .venture-frame {
  animation: venture-frame-open 980ms cubic-bezier(.16, 1, .3, 1) both;
}

.is-animating .venture-frame img {
  animation: venture-image-settle 3.8s cubic-bezier(.16, 1, .3, 1) both;
}

.is-animating .venture-frame:nth-child(1),
.is-animating .venture-frame:nth-child(1) img {
  animation-delay: 80ms;
}

.is-animating .venture-frame:nth-child(2),
.is-animating .venture-frame:nth-child(2) img {
  animation-delay: 250ms;
}

.is-animating .venture-frame:nth-child(3),
.is-animating .venture-frame:nth-child(3) img {
  animation-delay: 420ms;
}

.is-animating .venture-frame:nth-child(4),
.is-animating .venture-frame:nth-child(4) img {
  animation-delay: 590ms;
}

.is-animating .venture-edit-line {
  animation: venture-edit-pass 2.45s 100ms cubic-bezier(.16, 1, .3, 1) both;
}

.is-animating .venture-motion-type span {
  animation: venture-word-pass 760ms cubic-bezier(.16, 1, .3, 1) both;
}

.is-animating .venture-motion-type span:nth-child(1) {
  animation-delay: 80ms;
}

.is-animating .venture-motion-type span:nth-child(2) {
  animation-delay: 520ms;
}

.is-animating .venture-motion-type span:nth-child(3) {
  animation-delay: 960ms;
}

.is-animating .venture-motion-type span:nth-child(4) {
  animation-delay: 1.4s;
}

.is-motion-paused .venture-aperture-track,
.is-motion-paused .venture-frame,
.is-motion-paused .venture-frame img,
.is-motion-paused .venture-edit-line,
.is-motion-paused .venture-motion-type span {
  animation-play-state: paused;
}

.hero h1 {
  max-width: 100%;
  margin: 0;
  font-size: clamp(72px, min(10vw, 17vh), 144px);
  font-weight: 850;
  font-stretch: condensed;
  line-height: 0.82;
  letter-spacing: -0.04em;
  word-spacing: 0.065em;
  text-transform: uppercase;
}

@media (min-width: 721px) and (max-height: 700px) {
  .hero {
    padding: 112px 0 32px;
  }

  .hero h1 {
    font-size: clamp(68px, min(9.2vw, 17.5vh), 112px);
  }

  .hero .button {
    margin-top: 20px;
  }
}

.hero-copy {
  max-width: 650px;
  margin: 42px 0 0;
  font-size: clamp(19px, 2.1vw, 30px);
  font-weight: 450;
  line-height: 1.25;
  letter-spacing: -0.035em;
}

.button {
  display: inline-block;
  margin-top: 32px;
  padding: 15px 20px;
  background: var(--orange);
  color: var(--ink);
  font-family: "IBM Plex Mono", monospace;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-decoration: none;
  text-transform: uppercase;
  transition:
    background-color 180ms ease,
    transform 220ms cubic-bezier(.2, .7, .2, 1);
}

.button:hover,
.button:focus-visible {
  background: var(--soft-orange);
  transform: translateY(-4px);
}

.button:active {
  transform: translateY(-1px);
}

.market-exposure {
  padding: 96px 0 84px;
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
  background: #111;
  color: var(--white);
}

.market-exposure-head {
  display: grid;
  grid-template-columns: minmax(160px, .42fr) minmax(0, 1.58fr);
  gap: 64px;
  align-items: end;
}

.market-exposure-head > * {
  min-width: 0;
}

.market-kicker {
  margin: 0 0 8px;
  color: var(--orange);
  font-family: "IBM Plex Mono", monospace;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.market-exposure h2 {
  max-width: 980px;
  margin: 0;
  font-size: clamp(48px, 6.6vw, 94px);
  font-weight: 820;
  line-height: .9;
  letter-spacing: -.04em;
  text-transform: uppercase;
}

.market-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 62px;
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}

.market-stat {
  min-width: 0;
  padding: 30px 28px 28px;
}

.market-stat + .market-stat {
  border-left: 1px solid var(--line-dark);
}

.market-stat strong {
  display: block;
  color: var(--white);
  font-size: clamp(52px, 5.8vw, 82px);
  font-weight: 820;
  font-variant-numeric: tabular-nums;
  line-height: .9;
  letter-spacing: -.055em;
}

.market-stat p {
  min-height: 48px;
  margin: 20px 0 10px;
  color: #c7c6bf;
  font-size: 15px;
  line-height: 1.45;
}

.market-stat a,
.market-stat > span {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  color: var(--orange);
  font-family: "IBM Plex Mono", monospace;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .07em;
  text-decoration-color: var(--orange);
  text-underline-offset: 4px;
  text-transform: uppercase;
}

.market-note {
  max-width: 720px;
  margin: 22px 0 0 auto;
  color: #77766f;
  font-size: 11px;
  line-height: 1.55;
  text-align: right;
}

.section {
  padding: 130px 0;
}

.work {
  background: var(--paper);
  color: var(--ink);
}

.section-intro {
  max-width: 960px;
  margin-bottom: 88px;
}

.section-intro h2,
.production h2,
.contact h2,
.legal h1 {
  margin: 0;
  font-weight: 820;
  line-height: 0.94;
  letter-spacing: -0.04em;
}

.section-intro h2 {
  font-size: clamp(48px, 7vw, 98px);
}

.section-intro > p:last-child {
  max-width: 620px;
  margin: 26px 0 0;
  color: #474741;
  font-size: 18px;
  line-height: 1.5;
}

.project {
  min-width: 0;
}

.project-featured {
  display: grid;
  grid-template-columns: minmax(0, 1.75fr) minmax(280px, 0.75fr);
  align-items: end;
  gap: 48px;
  padding-bottom: 90px;
  border-bottom: 1px solid var(--line-light);
}

.project-image {
  position: relative;
  display: block;
  overflow: hidden;
  background: #d7d6cf;
  border: 1px solid var(--line-light);
  transition:
    box-shadow 420ms ease,
    transform 420ms cubic-bezier(.2, .7, .2, 1);
}

.project-image::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 12px solid rgba(255, 255, 255, 0.08);
  pointer-events: none;
}

.project-image img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  transition: transform 500ms cubic-bezier(.2, .7, .2, 1);
}

.project-image:hover img {
  transform: scale(1.045);
}

.project-image:hover {
  box-shadow: 0 20px 46px rgba(11, 11, 11, .18);
  transform: translateY(-7px);
}

.project-copy {
  padding-top: 24px;
}

.project-status {
  margin: 0 0 16px;
  color: #65645e;
}

.project h3,
.launches h3 {
  margin: 0;
  font-size: clamp(35px, 4vw, 58px);
  font-weight: 760;
  line-height: 0.98;
  letter-spacing: -0.035em;
}

.project-copy > p:not(.project-status) {
  max-width: 500px;
  margin: 20px 0 0;
  color: #474741;
  font-size: 16px;
  line-height: 1.55;
}

.text-link {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  margin-top: 28px;
  padding-bottom: 5px;
  border-bottom: 2px solid var(--orange);
  font-family: "IBM Plex Mono", monospace;
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
  text-transform: uppercase;
  transition:
    border-color 180ms ease,
    color 180ms ease;
}

.text-link span {
  color: var(--orange);
}

.text-link:hover,
.text-link:focus-visible {
  border-color: var(--ink);
  color: var(--orange);
}

.project-pair {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 80px;
  padding: 90px 0;
  border-bottom: 1px solid var(--line-light);
}

.project-pair .project:nth-child(2) {
  margin-top: 110px;
}

.project-pair-single {
  grid-template-columns: minmax(0, .72fr);
}

.launches {
  padding-top: 96px;
}

.launches-head {
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(320px, .65fr);
  gap: 80px;
  align-items: end;
  padding-bottom: 44px;
  border-bottom: 1px solid var(--ink);
}

.launches-head h3 {
  font-size: clamp(44px, 6vw, 80px);
}

.launches-head > p {
  max-width: 540px;
  margin: 0 0 4px;
  color: #474741;
  font-size: 18px;
  line-height: 1.55;
}

.project-launch {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(300px, .55fr);
  grid-template-areas: "visual copy";
  gap: 56px;
  align-items: end;
  padding: 60px 0;
  border-bottom: 1px solid var(--line-light);
}

.project-launch-reverse {
  grid-template-columns: minmax(300px, .55fr) minmax(0, 1.45fr);
  grid-template-areas: "copy visual";
}

.project-launch-visual {
  grid-area: visual;
}

.project-launch-copy {
  grid-area: copy;
  padding-bottom: 4px;
}

.ventures-hero {
  min-height: 100dvh;
  display: flex;
  align-items: flex-end;
  padding: 150px 0 74px;
  background:
    linear-gradient(90deg, transparent 0 62%, rgba(255,255,255,.07) 62.1%, transparent 62.2%),
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    var(--ink);
  background-size: 100% 100%, 100% 92px, auto;
}

.ventures-hero h1 {
  max-width: 1180px;
  margin: 0;
  font-size: clamp(68px, 10.4vw, 148px);
  font-weight: 850;
  font-stretch: condensed;
  line-height: .84;
  letter-spacing: -.04em;
  text-transform: uppercase;
}

.ventures-hero > .shell > p {
  max-width: 690px;
  margin: 38px 0 0;
  color: #c7c6bf;
  font-size: clamp(18px, 2vw, 28px);
  line-height: 1.35;
  letter-spacing: -.03em;
}

.ventures-intro {
  background: #151515;
}

.ventures-intro-inner {
  max-width: 1040px;
  margin-left: max(32px, calc((100% - var(--shell)) / 2));
  margin-right: auto;
}

.ventures-intro h2,
.venture-lanes h2,
.venture-collaboration h2 {
  margin: 0;
  font-size: clamp(52px, 7vw, 100px);
  font-weight: 820;
  line-height: .92;
  letter-spacing: -.04em;
  text-transform: uppercase;
}

.ventures-intro p {
  max-width: 720px;
  margin: 34px 0 0;
  color: #b9b8b1;
  font-size: 20px;
  line-height: 1.6;
}

.venture-lanes {
  background: var(--ink);
}

.venture-lanes-head {
  max-width: 900px;
  margin-bottom: 74px;
}

.venture-lane {
  min-width: 0;
}

.venture-lane-feature {
  display: grid;
  grid-template-columns: minmax(0, 1.65fr) minmax(300px, .75fr);
  align-items: end;
  gap: 50px;
  padding-bottom: 88px;
  border-bottom: 1px solid var(--line-dark);
}

.venture-lane-image {
  display: block;
  overflow: hidden;
  background: #171717;
}

.venture-lane-image img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  transition: transform 600ms cubic-bezier(.2, .7, .2, 1);
}

.venture-lane:hover .venture-lane-image img {
  transform: scale(1.04);
}

.venture-lane-copy {
  padding-top: 24px;
}

.venture-lane h3 {
  margin: 0;
  font-size: clamp(36px, 4.2vw, 62px);
  font-weight: 780;
  line-height: .96;
  letter-spacing: -.035em;
}

.venture-lane-copy > p {
  max-width: 520px;
  margin: 22px 0 0;
  color: #b9b8b1;
  font-size: 17px;
  line-height: 1.55;
}

.venture-lane-copy > span {
  display: block;
  margin-top: 30px;
  color: var(--orange);
  font-family: "IBM Plex Mono", monospace;
  font-size: 10px;
  line-height: 1.6;
  letter-spacing: .07em;
  text-transform: uppercase;
}

.venture-link {
  color: var(--white);
}

.venture-link:hover,
.venture-link:focus-visible {
  border-color: var(--white);
}

.venture-lane-pair {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: 74px;
  padding: 88px 0;
}

.venture-lane-pair .venture-lane:nth-child(2) {
  margin-top: 110px;
}

.venture-lane-pair-single {
  grid-template-columns: minmax(0, .82fr);
  justify-content: end;
}

.venture-lane-media .venture-lane-image img {
  aspect-ratio: 4 / 3;
}

.venture-lane-open {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, .8fr);
  gap: 80px;
  align-items: end;
  padding: 58px;
  border-top: 1px solid var(--orange);
  background: #181818;
}

.venture-lane-open > div > p,
.venture-lane-open > p {
  margin: 20px 0 0;
  color: #b9b8b1;
  font-size: 18px;
  line-height: 1.55;
}

.venture-lane-open > p {
  margin: 0;
}

.venture-collaboration {
  background: var(--orange);
  color: var(--ink);
}

.venture-collaboration-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, .75fr);
  gap: 110px;
}

.venture-collaboration h2 {
  max-width: 850px;
}

.venture-collaboration h2 + p {
  max-width: 650px;
  margin: 30px 0 0;
  font-size: 19px;
  line-height: 1.55;
}

.button-dark {
  background: var(--ink);
  color: var(--white);
}

.button-dark:hover {
  background: #252525;
}

@keyframes load-in {
  from {
    opacity: 0;
    transform: translateY(28px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.site-header {
  animation: load-in 420ms cubic-bezier(.2, .7, .2, 1) both;
}

.ventures-hero h1 {
  animation: load-in 720ms 40ms cubic-bezier(.16, 1, .3, 1) both;
}

.ventures-hero > .shell > p {
  animation: load-in 620ms 150ms cubic-bezier(.16, 1, .3, 1) both;
}

.ventures-hero .button {
  animation: load-in 560ms 260ms cubic-bezier(.16, 1, .3, 1) both;
}

@keyframes section-rise {
  from {
    transform: translateY(72px);
  }

  to {
    transform: translateY(0);
  }
}

@supports (animation-timeline: view()) {
  .section > .shell,
  .ventures-intro > .shell {
    animation: section-rise linear both;
    animation-timeline: view();
    animation-range: entry 5% entry 58%;
  }

  .home .section > .shell {
    animation: none;
  }
}

.venture-seeking {
  padding-top: 14px;
}

.venture-seeking > p {
  margin: 0 0 24px;
  font-family: "IBM Plex Mono", monospace;
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.venture-seeking ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px 32px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.venture-seeking li {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.25;
}

.continuity {
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
  background:
    linear-gradient(90deg, transparent 0 49.9%, rgba(255, 255, 255, .055) 50%, transparent 50.1%),
    linear-gradient(rgba(255, 255, 255, .035) 1px, transparent 1px),
    #111;
  background-size: 100% 100%, 100% 92px, auto;
}

.continuity::after {
  content: "";
  position: absolute;
  right: -18vw;
  bottom: -34vw;
  width: 62vw;
  aspect-ratio: 1;
  border: 1px solid rgba(255, 77, 0, .2);
  border-radius: 50%;
  box-shadow:
    0 0 0 12vw rgba(255, 77, 0, .025),
    0 0 0 24vw rgba(255, 77, 0, .018);
  pointer-events: none;
}

.continuity-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(300px, .72fr) minmax(0, 1.28fr);
  gap: 100px;
  align-items: start;
}

.continuity-kicker {
  margin: 0 0 28px;
  color: var(--orange);
  font-family: "IBM Plex Mono", monospace;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.continuity h2 {
  margin: 0;
  font-size: clamp(58px, 7.2vw, 104px);
  font-weight: 820;
  line-height: .88;
  letter-spacing: -.045em;
  text-transform: uppercase;
}

.continuity-copy {
  max-width: 760px;
  padding-top: 38px;
}

.continuity-copy p {
  margin: 0;
}

.continuity-roles {
  margin-bottom: 44px;
  border-top: 1px solid var(--line-dark);
}

.continuity-roles p {
  display: grid;
  grid-template-columns: 130px minmax(0, 1fr);
  gap: 24px;
  align-items: baseline;
  padding: 15px 0;
  border-bottom: 1px solid var(--line-dark);
}

.continuity-roles strong {
  color: var(--orange);
  font-size: 19px;
  font-weight: 720;
  letter-spacing: -.02em;
}

.continuity-roles span {
  color: #b9b8b1;
  font-family: "IBM Plex Mono", monospace;
  font-size: 10px;
  letter-spacing: .065em;
  line-height: 1.5;
  text-transform: uppercase;
}

.continuity-lead {
  color: var(--white);
  font-size: clamp(24px, 2.25vw, 34px);
  font-weight: 520;
  line-height: 1.18;
  letter-spacing: -.035em;
}

.continuity-lead + p {
  max-width: 670px;
  margin-top: 38px;
  color: #b9b8b1;
  font-size: 18px;
  line-height: 1.65;
}

.continuity-copy .continuity-statement {
  margin-top: 54px;
  padding-top: 22px;
  border-top: 1px solid var(--line-dark);
  color: var(--white);
  font-family: "IBM Plex Mono", monospace;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.production {
  background:
    linear-gradient(120deg, transparent 0 74%, rgba(255,77,0,.14) 74.1% 100%),
    var(--ink);
}

.production-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.72fr);
  gap: 100px;
}

.production h2 {
  max-width: 760px;
  font-size: clamp(56px, 7.5vw, 110px);
}

.production-link {
  margin-top: 34px;
}

.bio-hero {
  min-height: 76dvh;
  display: flex;
  align-items: flex-end;
  padding: 150px 0 84px;
  background:
    linear-gradient(90deg, transparent 0 49.9%, rgba(255,255,255,.07) 50%, transparent 50.1%),
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    var(--ink);
  background-size: 100% 100%, 100% 92px, auto;
}

.bio-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 190px;
  align-items: end;
  gap: 70px;
}

.bio-hero h1 {
  max-width: 950px;
  margin: 0;
  font-size: clamp(68px, 11vw, 154px);
  font-weight: 850;
  font-stretch: condensed;
  line-height: .84;
  letter-spacing: -.04em;
  text-transform: uppercase;
}

.bio-portrait {
  margin: 0;
  border: 1px solid var(--line-dark);
  background: #171717;
  overflow: hidden;
}

.bio-portrait img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.bio-portrait figcaption {
  padding: 10px 11px 12px;
  color: #8f8d85;
  font-family: "IBM Plex Mono", monospace;
  font-size: 9px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.bio-content {
  background: var(--paper);
  color: var(--ink);
}

.bio-content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, .72fr);
  gap: 100px;
}

.bio-content h2 {
  max-width: 700px;
  margin: 0;
  font-size: clamp(48px, 6vw, 88px);
  line-height: .9;
  letter-spacing: -.04em;
  text-transform: uppercase;
}

.bio-copy {
  max-width: 540px;
}

.bio-copy p {
  margin: 0 0 24px;
  color: #5f5e58;
  font-size: 19px;
  line-height: 1.6;
}

.production-copy > p {
  margin: 35px 0 70px;
  color: #c7c6bf;
  font-size: 19px;
  line-height: 1.65;
}

.production-method {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line-dark);
  counter-reset: method;
}

.production-method li {
  position: relative;
  counter-increment: method;
  padding: 22px 0 22px 56px;
  border-bottom: 1px solid var(--line-dark);
  color: #c7c6bf;
  font-size: 14px;
  line-height: 1.5;
}

.production-method li::before {
  content: "0" counter(method);
  position: absolute;
  left: 0;
  top: 23px;
  color: var(--orange);
  font-family: "IBM Plex Mono", monospace;
  font-size: 11px;
}

.production-method span {
  display: block;
  margin-bottom: 5px;
  color: var(--white);
  font-size: 18px;
  font-weight: 700;
}

.contact {
  background: var(--orange);
  color: var(--ink);
}

.contact h2 {
  max-width: 1000px;
  font-size: clamp(64px, 10vw, 150px);
  text-transform: uppercase;
}

.contact-links {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0 48px;
}

.contact a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  margin-top: 52px;
  padding-bottom: 8px;
  border-bottom: 3px solid var(--ink);
  font-size: clamp(16px, 2vw, 24px);
  font-weight: 700;
  letter-spacing: -0.035em;
  text-decoration: none;
}

.site-footer {
  padding: 28px 0 36px;
  color: var(--gray);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 30px;
}

.footer-inner > div {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 22px;
}

.site-footer a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  min-height: 44px;
  text-decoration-color: var(--orange);
  text-underline-offset: 4px;
}

.footer-social {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.footer-social-link {
  color: var(--gray);
  text-decoration: none;
  transition:
    color 160ms ease,
    transform 160ms ease;
}

.footer-social-link::before {
  width: 18px;
  height: 18px;
  content: "";
  background: currentColor;
  -webkit-mask: var(--social-icon) center / contain no-repeat;
  mask: var(--social-icon) center / contain no-repeat;
}

.footer-social-link:hover,
.footer-social-link:focus-visible {
  color: var(--paper);
  transform: translateY(-2px);
}

.footer-social-link[data-analytics-channel="x"] {
  --social-icon: url("icons/x.svg");
}

.footer-social-link[data-analytics-channel="instagram"] {
  --social-icon: url("icons/instagram.svg");
}

.footer-social-link[data-analytics-channel="facebook"] {
  --social-icon: url("icons/facebook.svg");
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

.legal-shell {
  width: min(1040px, calc(100% - 64px));
  margin: 0 auto;
}

.legal-header {
  border-bottom: 1px solid var(--line-dark);
}

.legal-header .nav {
  min-height: 76px;
}

.back-link {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  font-family: "IBM Plex Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.06em;
  text-decoration: none;
  text-transform: uppercase;
}

.legal {
  padding: 100px 0 120px;
}

.legal h1 {
  max-width: 900px;
  font-size: clamp(58px, 9vw, 124px);
  text-transform: uppercase;
}

.legal-lede {
  max-width: 680px;
  margin: 34px 0 0;
  color: #c7c6bf;
  font-size: 18px;
  line-height: 1.65;
}

.legal-grid {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
  gap: 70px;
  margin-top: 90px;
  padding-top: 28px;
  border-top: 1px solid var(--line-dark);
}

.legal-nav {
  position: sticky;
  top: 28px;
  align-self: start;
}

.legal-nav a {
  display: flex;
  align-items: center;
  min-width: 44px;
  min-height: 44px;
  padding: 8px 0;
  color: var(--gray);
  text-decoration: none;
}

.legal-copy {
  max-width: 720px;
}

.legal-copy section {
  margin-bottom: 46px;
  padding-bottom: 46px;
  border-bottom: 1px solid var(--line-dark);
}

.legal-copy h2 {
  margin: 0 0 18px;
  font-size: clamp(29px, 4vw, 46px);
  letter-spacing: -0.04em;
}

.legal-copy p,
.legal-copy li {
  color: #c7c6bf;
  font-size: 15px;
  line-height: 1.75;
}

.legal-copy p {
  margin: 0 0 16px;
}

.legal-copy ul {
  margin: 0;
  padding-left: 20px;
}

.legal-copy a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  color: var(--white);
  text-decoration-color: var(--orange);
  text-underline-offset: 4px;
}

.legal-meta {
  color: var(--orange);
}

@media (max-width: 900px) {
  .market-exposure-head {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .market-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .market-stat:nth-child(3) {
    border-left: 0;
  }

  .market-stat:nth-child(n + 3) {
    border-top: 1px solid var(--line-dark);
  }

  .project-featured,
  .project-launch,
  .production-grid,
  .continuity-grid,
  .bio-content-grid,
  .venture-lane-feature,
  .venture-lane-open,
  .venture-collaboration-grid {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .bio-hero-grid {
    grid-template-columns: minmax(0, 1fr) 180px;
    gap: 38px;
  }

  .project-pair {
    gap: 36px;
  }

  .launches-head {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .project-launch,
  .project-launch-reverse {
    grid-template-areas:
      "visual"
      "copy";
  }

  .venture-lane-pair {
    gap: 36px;
  }

  .venture-lane-open {
    align-items: start;
  }

  .production-copy > p {
    margin-top: 0;
  }

  .continuity-copy {
    padding-top: 0;
  }

}

@media (max-width: 720px) {
  .shell,
  .legal-shell {
    width: min(100% - 32px, 620px);
  }

  .nav {
    min-height: 66px;
  }

  .wordmark {
    font-size: 13px;
  }

  .nav-links {
    gap: 8px;
  }

  .nav-links a {
    justify-content: center;
    min-width: 44px;
    font-size: 9px;
  }

  .hero {
    min-height: 760px;
    padding: 122px 0 54px;
    background-size: 100% 100%, 100% 72px, auto;
  }

  .market-exposure {
    padding: 76px 0 68px;
  }

  .market-exposure h2 {
    font-size: 40px;
  }

  .market-stats {
    margin-top: 46px;
  }

  .market-stat {
    padding: 24px 16px 20px;
  }

  .market-stat strong {
    font-size: clamp(44px, 13vw, 56px);
  }

  .market-stat p {
    min-height: 58px;
    margin-top: 16px;
    font-size: 13px;
  }

  .market-note {
    text-align: left;
  }

  .venture-aperture {
    inset: 66px 0 0;
  }

  .venture-aperture::before {
    background: linear-gradient(90deg, rgba(11, 11, 11, .72), rgba(11, 11, 11, .18));
  }

  .venture-aperture::after {
    background: linear-gradient(0deg, var(--ink) 0 24%, rgba(11, 11, 11, .92) 40%, rgba(11, 11, 11, .2) 76%, rgba(11, 11, 11, .42) 100%);
  }

  .venture-aperture-track {
    top: 5%;
    right: -54%;
    width: 170vw;
    height: 63%;
    gap: 5px;
    transform: rotate(-4.5deg) scale(1.06);
  }

  .venture-motion-type {
    top: 11%;
    right: -5vw;
    width: 106vw;
    height: 58%;
  }

  .venture-motion-type span {
    font-size: clamp(62px, 22vw, 94px);
  }

  .venture-frame figcaption {
    padding: 34px 8px 10px;
    font-size: 8px;
  }

  .venture-replay {
    top: 82px;
    right: 16px;
  }

  @keyframes venture-track-settle-mobile {
    from {
      opacity: .2;
      transform: translate3d(18vw, 0, 0) rotate(-4.5deg) scale(1.06);
    }

    to {
      opacity: 1;
      transform: translate3d(0, 0, 0) rotate(-4.5deg) scale(1.06);
    }
  }

  .is-animating .venture-aperture-track {
    animation-name: venture-track-settle-mobile;
  }

  @keyframes venture-edit-pass-mobile {
    0% {
      opacity: 0;
      transform: translateX(-20px);
    }

    12%, 82% {
      opacity: 1;
    }

    100% {
      opacity: 0;
      transform: translateX(calc(170vw + 20px));
    }
  }

  .is-animating .venture-edit-line {
    animation-name: venture-edit-pass-mobile;
  }

  .ventures-hero {
    min-height: 760px;
    padding: 122px 0 54px;
    background-size: 100% 100%, 100% 72px, auto;
  }

  .hero h1 {
    font-size: clamp(52px, 14vw, 64px);
    line-height: 0.85;
    letter-spacing: -0.04em;
  }

  .ventures-hero h1 {
    font-size: clamp(48px, 13vw, 66px);
    line-height: .86;
  }

  .ventures-hero > .shell > p {
    max-width: 350px;
    margin-top: 30px;
    font-size: 19px;
  }

  .hero-copy {
    max-width: 330px;
    margin-top: 32px;
    font-size: 20px;
  }

  .section {
    padding: 82px 0;
  }

  .section-intro {
    margin-bottom: 52px;
  }

  .section-intro h2 {
    font-size: 48px;
  }

  .project-featured {
    padding-bottom: 62px;
  }

  .project-pair {
    grid-template-columns: 1fr;
    padding: 62px 0;
  }

  .project-pair .project:nth-child(2) {
    margin-top: 28px;
  }

  .launches {
    padding-top: 62px;
  }

  .launches-head {
    padding-bottom: 34px;
  }

  .launches-head h3 {
    font-size: 48px;
  }

  .launches-head > p {
    font-size: 17px;
  }

  .project-launch {
    padding: 48px 0;
  }

  .ventures-intro-inner {
    width: min(100% - 32px, 620px);
    margin: 0 auto;
  }

  .ventures-intro h2,
  .venture-lanes h2,
  .venture-collaboration h2 {
    font-size: 50px;
  }

  .ventures-intro p {
    font-size: 18px;
  }

  .venture-lanes-head {
    margin-bottom: 52px;
  }

  .venture-lane-feature {
    padding-bottom: 62px;
  }

  .venture-lane-pair {
    grid-template-columns: 1fr;
    padding: 62px 0;
  }

  .venture-lane-pair .venture-lane:nth-child(2) {
    margin-top: 28px;
  }

  .venture-lane h3 {
    font-size: 38px;
  }

  .venture-lane-open {
    padding: 36px 28px;
  }

  .venture-seeking ul {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .project h3,
  .launches h3 {
    font-size: 36px;
  }

  .production h2 {
    font-size: 54px;
  }

  .continuity h2 {
    font-size: 52px;
  }

  .continuity-grid {
    gap: 46px;
  }

  .continuity-lead {
    font-size: 27px;
  }

  .continuity-roles {
    margin-bottom: 36px;
  }

  .continuity-roles p {
    grid-template-columns: 1fr;
    gap: 5px;
    padding: 14px 0 16px;
  }

  .continuity-lead + p {
    margin-top: 30px;
    font-size: 17px;
  }

  .continuity-copy .continuity-statement {
    margin-top: 38px;
  }

  .bio-hero {
    min-height: auto;
    padding: 126px 0 62px;
  }

  .bio-hero-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .bio-hero h1 {
    font-size: clamp(56px, 14vw, 76px);
  }

  .bio-portrait {
    width: 150px;
  }

  .bio-content h2 {
    font-size: 54px;
  }

  .production-copy > p {
    font-size: 17px;
  }

  .contact h2 {
    font-size: clamp(48px, 13.5vw, 62px);
    letter-spacing: -0.04em;
  }

  .contact a {
    font-size: 15px;
    overflow-wrap: anywhere;
  }

  .footer-inner,
  .footer-inner > div {
    display: block;
    line-height: 2;
  }

  .footer-inner > div {
    margin-top: 12px;
  }

  .footer-inner a,
  .footer-inner span {
    margin-right: 14px;
  }

  .footer-social {
    display: inline-flex;
    margin-right: 10px;
    vertical-align: middle;
  }

  .footer-social a,
  .footer-social span {
    margin-right: 0;
  }

  .legal {
    padding: 72px 0 80px;
  }

  .legal h1 {
    font-size: 54px;
  }

  .legal-grid {
    grid-template-columns: 1fr;
    gap: 36px;
    margin-top: 60px;
  }

  .legal-nav {
    position: static;
    display: flex;
    flex-wrap: wrap;
    gap: 4px 16px;
  }
}

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

  .site-header,
  .hero h1,
  .hero-copy,
  .hero .button,
  .ventures-hero h1,
  .ventures-hero > .shell > p,
  .ventures-hero .button {
    animation: none;
  }

  .button,
  .project-image,
  .project-image img,
  .venture-lane-image img,
  .footer-social-link {
    transition: none;
  }

  .button:hover,
  .project-image:hover,
  .project-image:hover img,
  .venture-lane:hover .venture-lane-image img,
  .footer-social-link:hover,
  .footer-social-link:focus-visible {
    transform: none;
  }

  .section > .shell,
  .ventures-intro > .shell,
  .venture-aperture-track,
  .venture-frame,
  .venture-frame img,
  .venture-edit-line,
  .venture-motion-type span {
    animation: none;
  }

  .venture-replay {
    display: none;
  }
}
