@import url("https://fonts.googleapis.com/css2?family=DM+Mono:wght@400;500&family=Manrope:wght@400;500;600;700;800&display=swap");
:root {
  --ink: #11110f;
  --paper: #f2efe8;
  --white: #fff;
  --orange: #cc581c;
  --orange2: #ee7a32;
  --sand: #e7ded3;
  --muted: #77766f;
  --line: rgba(17, 17, 15, 0.18);
  --line-light: rgba(255, 255, 255, 0.18);
  --pad: clamp(20px, 4.8vw, 78px);
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  background: var(--ink);
}
body {
  margin: 0;
  background: var(--ink);
  color: var(--paper);
  font-family: Manrope, Arial, sans-serif;
  overflow-x: hidden;
}
body.menu-open {
  overflow: hidden;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input,
textarea,
select {
  font: inherit;
}
::selection {
  background: var(--orange);
  color: #fff;
}
.skip-link {
  position: fixed;
  z-index: 500;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  background: var(--orange);
  color: #fff;
  transform: translateY(-150%);
}
.skip-link:focus {
  transform: none;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.boot {
  position: fixed;
  z-index: 400;
  inset: 0;
  padding: var(--pad);
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: 1fr auto;
  gap: 28px;
  align-items: end;
  background: var(--paper);
  color: var(--ink);
  clip-path: inset(0);
  transition: clip-path 1.05s var(--ease);
}
.boot.done {
  clip-path: inset(0 0 100% 0);
  pointer-events: none;
}
.boot > img {
  width: 110px;
  height: 110px;
  object-fit: contain;
  align-self: start;
}
.boot > div {
  grid-column: 1/-1;
  height: 2px;
  background: rgba(17, 17, 15, 0.18);
}
.boot > div i {
  display: block;
  width: 0;
  height: 100%;
  background: var(--orange);
  animation: load 1s var(--ease) forwards;
}
.boot strong {
  font:
    800 clamp(21px, 4.4vw, 66px) Manrope,
    sans-serif;
  letter-spacing: -0.06em;
}
@keyframes load {
  to {
    width: 100%;
  }
}
.site-header {
  position: fixed;
  z-index: 150;
  top: 0;
  left: 0;
  right: 0;
  height: 86px;
  padding: 0 var(--pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(242, 239, 232, 0.94);
  color: var(--ink);
  border-bottom: 1px solid rgba(17, 17, 15, 0.1);
  backdrop-filter: blur(16px);
  transition: height 0.35s var(--ease);
}
.site-header.scrolled {
  height: 68px;
}
.wordmark {
  display: block;
  width: clamp(170px, 15vw, 230px);
}
.wordmark img {
  display: block;
  width: 100%;
  height: auto;
}
.site-header nav {
  display: flex;
  align-items: center;
  gap: 30px;
}
.site-header nav a {
  position: relative;
  font:
    500 10px DM Mono,
    monospace;
  text-transform: uppercase;
  letter-spacing: 0.035em;
}
.site-header nav a:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -7px;
  width: 100%;
  height: 1px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.35s var(--ease);
}
.site-header nav a:hover:after {
  transform: scaleX(1);
  transform-origin: left;
}
.site-header nav a:last-child {
  padding: 12px 16px;
  background: var(--orange);
  color: #fff;
  border-radius: 3px;
}
.menu-button {
  display: none;
  border: 0;
  background: none;
  color: inherit;
}
.hero {
  position: relative;
  min-height: 100svh;
  padding-top: 86px;
  overflow: hidden;
  background: var(--paper);
  color: var(--ink);
}
.hero-grid {
  position: absolute;
  z-index: 1;
  inset: 86px 0 0;
  background-image:
    linear-gradient(rgba(17, 17, 15, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17, 17, 15, 0.055) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(90deg, transparent 35%, #000 100%);
}
.hero-monogram {
  position: absolute;
  z-index: 1;
  right: -3vw;
  top: 50%;
  width: clamp(430px, 46vw, 760px);
  opacity: 0.96;
  transform: translateY(-45%) rotate(2deg);
}
.hero-monogram img {
  width: 100%;
}
.hero-copy {
  position: relative;
  z-index: 3;
  min-height: calc(100svh - 86px);
  padding: clamp(95px, 13vh, 145px) var(--pad) 105px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.eyebrow,
.kicker {
  margin: 0 0 25px;
  display: flex;
  align-items: center;
  gap: 12px;
  font:
    500 10px DM Mono,
    monospace;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.eyebrow > span {
  width: 30px;
  height: 1px;
  background: var(--orange);
}
.hero h1 {
  max-width: min(950px, 72vw);
  margin: 0;
  font-size: clamp(58px, 7.7vw, 124px);
  font-weight: 600;
  line-height: 0.88;
  letter-spacing: -0.078em;
}
.hero h1 em,
.statement h2 em,
.team h2 em,
.ventures h2 em,
.process h2 em,
.contact h2 em {
  color: var(--orange2);
  font-family: Georgia, serif;
  font-weight: 400;
}
.hero-bottom {
  max-width: 820px;
  margin-top: 58px;
  display: flex;
  align-items: flex-end;
  gap: 70px;
}
.hero-bottom > div > p:first-child {
  max-width: 590px;
  margin: 0;
  color: #4e4d48;
  font-size: clamp(16px, 1.4vw, 21px);
  line-height: 1.55;
}
.hero-note {
  margin: 20px 0 0;
  padding-left: 15px;
  border-left: 2px solid var(--orange);
  color: #6f6e67;
  font:
    500 10px DM Mono,
    monospace;
  text-transform: uppercase;
  line-height: 1.55;
}
.round-link {
  width: 132px;
  height: 132px;
  padding: 24px;
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid rgba(238, 122, 50, 0.7);
  border-radius: 50%;
  color: var(--orange);
  font:
    500 9px DM Mono,
    monospace;
  text-transform: uppercase;
  transition: 0.5s var(--ease);
}
.round-link i {
  align-self: flex-end;
  font-size: 24px;
  font-style: normal;
}
.round-link:hover {
  background: var(--orange);
  border-color: var(--orange);
  color: #fff;
  transform: rotate(8deg) scale(1.05);
}
.hero-strap {
  position: absolute;
  z-index: 3;
  left: var(--pad);
  right: var(--pad);
  bottom: 27px;
  display: flex;
  align-items: center;
  gap: 16px;
  color: #66655f;
  font:
    500 8px DM Mono,
    monospace;
}
.hero-strap i {
  height: 1px;
  flex: 1;
  background: rgba(17, 17, 15, 0.16);
}
.forge-scroll {
  position: relative;
  height: 420svh;
  background: #0d0e0c;
}
.forge-stage {
  position: sticky;
  top: 0;
  height: 100svh;
  overflow: hidden;
  background: #0d0e0c;
  color: var(--paper);
  isolation: isolate;
}
.forge-stage:before,
.forge-stage:after {
  content: "";
  position: absolute;
  z-index: -1;
  pointer-events: none;
}
.forge-stage:before {
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(circle at 40% 50%, #000, transparent 72%);
}
.forge-stage:after {
  width: 72vw;
  height: 72vw;
  left: 8vw;
  top: 50%;
  border: 1px solid rgba(238, 122, 50, 0.18);
  border-radius: 50%;
  transform: translateY(-50%) scale(var(--orbit-scale, 0.7));
  opacity: var(--orbit-opacity, 0.4);
  transition: opacity 0.2s linear;
}
.forge-wash {
  position: absolute;
  z-index: -1;
  inset: 0;
  background: var(--orange);
  opacity: var(--wash-opacity, 0);
}
.forge-meter {
  position: absolute;
  z-index: 5;
  top: clamp(28px, 5vw, 70px);
  left: var(--pad);
  right: var(--pad);
  display: grid;
  grid-template-columns: auto 1fr 28px;
  gap: 22px;
  align-items: center;
  font:
    500 8px DM Mono,
    monospace;
  letter-spacing: 0.1em;
}
.forge-meter i {
  height: 1px;
  background: rgba(255, 255, 255, 0.2);
  overflow: hidden;
}
.forge-meter b {
  display: block;
  width: var(--forge-progress, 0%);
  height: 100%;
  background: currentColor;
}
.forge-percent {
  text-align: right;
}
.forge-symbol {
  position: absolute;
  z-index: 2;
  left: 50%;
  top: 50%;
  width: clamp(300px, 39vw, 610px);
  aspect-ratio: 1;
  transform: translate3d(-50%, -50%, 0);
  will-change: transform;
}
.forge-slice {
  position: absolute;
  inset: 0;
  will-change: transform, opacity;
}
.forge-slice img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: filter 0.55s var(--ease);
}
.forge-stage.is-final .forge-slice img {
  filter: brightness(0);
}
.forge-stage.is-final .forge-phase > span,
.forge-stage.is-final .forge-scroll-note i {
  color: #fff;
}
.forge-stage.is-final .forge-meter {
  color: #fff;
}
.slice-top {
  clip-path: inset(0 0 66.666% 0);
}
.slice-middle {
  clip-path: inset(33.333% 0 33.333% 0);
}
.slice-bottom {
  clip-path: inset(66.666% 0 0 0);
}
.forge-phases {
  position: absolute;
  z-index: 3;
  right: var(--pad);
  top: 50%;
  width: min(43vw, 670px);
  transform: translateY(-50%);
}
.forge-phase {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  transform: translateY(45px);
  transition:
    opacity 0.24s ease,
    transform 0.7s var(--ease);
  pointer-events: none;
}
.forge-phase.is-active {
  position: relative;
  opacity: 1;
  transform: none;
}
.forge-phase > span {
  display: block;
  margin-bottom: 28px;
  color: var(--orange2);
  font:
    500 9px DM Mono,
    monospace;
  letter-spacing: 0.12em;
}
.forge-phase strong {
  display: block;
  font-size: clamp(48px, 6vw, 98px);
  font-weight: 600;
  line-height: 0.88;
  letter-spacing: -0.072em;
}
.forge-phase strong em {
  color: var(--ink);
  font-family: Georgia, serif;
  font-weight: 400;
}
.forge-disciplines {
  position: absolute;
  z-index: 4;
  inset: 0;
  opacity: var(--discipline-opacity, 0);
  pointer-events: none;
}
.forge-disciplines span {
  position: absolute;
  padding: 8px 11px;
  border: 1px solid rgba(238, 122, 50, 0.5);
  border-radius: 999px;
  color: var(--orange2);
  background: rgba(13, 14, 12, 0.75);
  font:
    500 8px DM Mono,
    monospace;
  letter-spacing: 0.09em;
  backdrop-filter: blur(8px);
}
.forge-disciplines span:nth-child(1) {
  left: 7vw;
  top: 28%;
}
.forge-disciplines span:nth-child(2) {
  left: 38%;
  bottom: 12%;
}
.forge-disciplines span:nth-child(3) {
  left: 13vw;
  bottom: 26%;
}
.forge-scroll-note {
  position: absolute;
  z-index: 5;
  left: var(--pad);
  bottom: 35px;
  margin: 0;
  display: flex;
  gap: 12px;
  align-items: center;
  font:
    500 8px DM Mono,
    monospace;
  letter-spacing: 0.1em;
  opacity: var(--scroll-note-opacity, 1);
}
.forge-scroll-note i {
  color: var(--orange2);
  font-size: 16px;
  font-style: normal;
}
.section {
  padding: clamp(100px, 12vw, 190px) var(--pad);
}
.section-label {
  display: grid;
  grid-template-columns: 42px auto 1fr;
  gap: 15px;
  align-items: center;
  margin-bottom: clamp(70px, 9vw, 140px);
}
.section-label > span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid currentColor;
  border-radius: 50%;
  font:
    500 10px DM Mono,
    monospace;
}
.section-label p {
  margin: 0;
  font:
    500 10px DM Mono,
    monospace;
  letter-spacing: 0.14em;
}
.section-label:after {
  content: "";
  height: 1px;
  background: currentColor;
  opacity: 0.2;
}
.statement {
  background: var(--paper);
  color: var(--ink);
}
.statement-copy {
  margin-left: clamp(0px, 9vw, 155px);
  display: grid;
  grid-template-columns: 1fr minmax(250px, 0.42fr);
  gap: 7vw;
  align-items: end;
}
.statement-copy .kicker {
  grid-column: 1/-1;
}
.statement h2 {
  margin: 0;
  font-size: clamp(47px, 6.5vw, 105px);
  font-weight: 500;
  line-height: 0.92;
  letter-spacing: -0.066em;
}
.statement h2 em {
  color: var(--orange);
}
.statement-copy > p:last-child {
  margin: 0;
  color: #5f5d57;
  font-size: 16px;
  line-height: 1.67;
}
.capability-grid {
  margin-top: clamp(80px, 10vw, 155px);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.capability-card {
  position: relative;
  min-height: 470px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  transition:
    transform 0.28s ease,
    background 0.4s var(--ease),
    color 0.4s var(--ease);
}
.capability-card:before {
  content: "";
  position: absolute;
  width: 190px;
  height: 190px;
  border-radius: 50%;
  background: var(--orange2);
  filter: blur(66px);
  opacity: 0;
  transform: translate(var(--mx, 50px), var(--my, 50px));
  transition: opacity 0.3s;
}
.capability-card:hover {
  background: var(--ink);
  color: var(--paper);
}
.capability-card:hover:before {
  opacity: 0.2;
}
.capability-card > span,
.capability-card > b {
  position: relative;
  font:
    500 9px DM Mono,
    monospace;
  letter-spacing: 0.1em;
}
.capability-card h3 {
  position: relative;
  margin: auto 0 18px;
  font-size: clamp(28px, 2.45vw, 41px);
  line-height: 1.03;
  letter-spacing: -0.05em;
}
.capability-card p {
  position: relative;
  margin: 0 0 30px;
  color: #66645e;
  font-size: 13px;
  line-height: 1.56;
}
.capability-card:hover p {
  color: #b7b5ae;
}
.capability-card > b {
  color: var(--orange);
}
.capability-card > i {
  position: absolute;
  right: 28px;
  top: 25px;
  font-size: 23px;
  font-style: normal;
}
.alignment {
  position: relative;
  min-height: 100svh;
  padding: 130px var(--pad);
  display: grid;
  place-items: center;
  overflow: hidden;
  background: var(--orange);
  color: #fff;
}
.alignment-track {
  position: absolute;
  top: 50%;
  left: -4%;
  display: flex;
  width: max-content;
  color: rgba(17, 17, 15, 0.07);
  font-size: clamp(100px, 18vw, 280px);
  font-weight: 800;
  line-height: 0.8;
  letter-spacing: -0.08em;
  transform: rotate(-8deg) translateY(-50%);
  animation: marquee 25s linear infinite;
}
@keyframes marquee {
  to {
    transform: rotate(-8deg) translate(-50%, -50%);
  }
}
.alignment-copy {
  position: relative;
  z-index: 2;
  width: min(1180px, 100%);
}
.alignment-copy blockquote {
  margin: 0;
  font-size: clamp(47px, 7.2vw, 110px);
  font-weight: 500;
  line-height: 0.94;
  letter-spacing: -0.065em;
}
.alignment-copy blockquote em {
  color: var(--ink);
  font-family: Georgia, serif;
  font-weight: 400;
}
.alignment-copy > p:last-child {
  max-width: 620px;
  margin: 62px 0 0 auto;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.42);
  color: rgba(255, 255, 255, 0.88);
  font-size: 16px;
  line-height: 1.65;
}
.team {
  background: #d9d1c6;
  color: var(--ink);
}
.team-intro,
.ventures-intro,
.process-head {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 8vw;
  align-items: end;
  margin-bottom: 95px;
}
.team-intro h2,
.ventures-intro h2,
.process-head h2 {
  margin: 0;
  font-size: clamp(54px, 7.2vw, 112px);
  line-height: 0.89;
  letter-spacing: -0.073em;
}
.team-intro h2 em {
  color: var(--orange);
}
.team-intro > p,
.ventures-intro > p,
.process-head > p {
  margin: 0;
  color: #5e5c56;
  font-size: 16px;
  line-height: 1.65;
}
.partner-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.partner-card {
  min-height: 580px;
  padding: 29px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid rgba(17, 17, 15, 0.2);
  background: rgba(242, 239, 232, 0.42);
  transition: 0.45s var(--ease);
}
.partner-card:hover {
  transform: translateY(-10px);
  background: var(--paper);
}
.partner-card.featured {
  background: var(--orange);
  color: #fff;
  border-color: var(--orange);
}
.partner-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.partner-top span {
  display: grid;
  place-items: center;
  width: 80px;
  height: 80px;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-size: 25px;
  font-weight: 700;
}
.partner-top i {
  font:
    500 9px DM Mono,
    monospace;
  font-style: normal;
}
.partner-card > div:nth-child(2) p {
  font:
    500 9px DM Mono,
    monospace;
  letter-spacing: 0.12em;
}
.partner-card h3 {
  margin: 10px 0 0;
  font-size: clamp(45px, 4vw, 67px);
  line-height: 0.86;
  letter-spacing: -0.07em;
}
.partner-card ul {
  margin: 0;
  padding: 21px 0 0;
  list-style: none;
  border-top: 1px solid currentColor;
}
.partner-card li {
  padding: 7px 0;
  color: #5d5c56;
  font-size: 12px;
}
.partner-card li:before {
  content: "↗";
  margin-right: 10px;
  color: var(--orange);
}
.partner-card.featured li {
  color: #fff;
}
.partner-card.featured li:before {
  color: #fff;
}
.structures {
  background: var(--paper);
  color: var(--ink);
}
.structure-list {
  border-top: 1px solid var(--line);
}
.structure-list article {
  position: relative;
  display: grid;
  grid-template-columns: 70px 0.62fr 1fr auto;
  gap: 35px;
  align-items: center;
  padding: 45px 0;
  border-bottom: 1px solid var(--line);
  transition: padding 0.35s var(--ease);
}
.structure-list article:hover {
  padding-left: 18px;
}
.structure-list span {
  font:
    500 10px DM Mono,
    monospace;
}
.structure-list h3 {
  margin: 0;
  font-size: clamp(38px, 4vw, 64px);
  letter-spacing: -0.06em;
}
.structure-list p {
  max-width: 640px;
  margin: 0;
  color: #5f5d57;
  line-height: 1.6;
}
.structure-list i {
  color: var(--orange);
  font:
    500 8px DM Mono,
    monospace;
  font-style: normal;
  letter-spacing: 0.08em;
}
.ventures {
  background: #10110f;
}
.ventures-intro h2 em,
.process-head h2 em {
  color: var(--orange2);
}
.ventures-intro > p,
.process-head > p {
  color: #aaa9a2;
}
.venture-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line-light);
  border: 1px solid var(--line-light);
}
.venture-grid.current-portfolio {
  grid-template-columns: 1.25fr 0.75fr;
}
.current-portfolio .venture {
  min-height: 480px;
}
.venture.current {
  background: #191a17;
}
.venture.current h3 {
  font-size: clamp(55px, 7vw, 108px);
}
.venture.current b {
  margin-top: 26px;
  color: var(--orange2);
  font:
    500 9px DM Mono,
    monospace;
  letter-spacing: 0.1em;
}
.venture {
  position: relative;
  min-height: 390px;
  padding: 29px;
  display: flex;
  flex-direction: column;
  background: #151614;
  transition: 0.45s var(--ease);
}
.venture:hover {
  background: #1f201d;
  transform: translateY(-6px);
}
.venture > span {
  color: var(--orange2);
  font:
    500 8px DM Mono,
    monospace;
  letter-spacing: 0.1em;
}
.venture h3 {
  margin: auto 0 14px;
  font-size: clamp(29px, 2.7vw, 44px);
  line-height: 1;
  letter-spacing: -0.055em;
}
.venture p {
  margin: 0;
  color: #96978f;
  font-size: 13px;
  line-height: 1.55;
}
.venture > i {
  position: absolute;
  right: 27px;
  top: 26px;
  font:
    500 10px DM Mono,
    monospace;
  font-style: normal;
}
.venture.ecosystem {
  background: #20211e;
}
.venture.open {
  background: var(--orange);
  color: #fff;
}
.venture.open span,
.venture.open p {
  color: #fff;
}
.venture.open a {
  margin-top: 22px;
  align-self: flex-start;
  padding-bottom: 4px;
  border-bottom: 1px solid #fff;
  font:
    500 10px DM Mono,
    monospace;
}
.process {
  background: var(--paper);
  color: var(--ink);
}
.process-steps {
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  list-style: none;
  background: var(--line);
}
.process-steps li {
  min-height: 280px;
  padding: 23px;
  display: flex;
  flex-direction: column;
  background: #e6ddd2;
}
.process-steps span {
  color: var(--orange2);
  font:
    500 9px DM Mono,
    monospace;
}
.process-steps strong {
  margin: auto 0 13px;
  font-size: 22px;
}
.process-steps p {
  margin: 0;
  color: #5f5d57;
  font-size: 12px;
  line-height: 1.5;
}
.proof {
  position: relative;
  min-height: 920px;
  padding: 145px var(--pad);
  overflow: hidden;
  background: var(--sand);
  color: var(--ink);
}
.proof .eyebrow > span {
  background: var(--orange);
}
.proof-copy {
  position: relative;
  z-index: 2;
}
.proof h2 {
  margin: 0;
  font-size: clamp(67px, 9.5vw, 155px);
  font-weight: 700;
  line-height: 0.82;
  letter-spacing: -0.085em;
}
.proof h2.orange {
  margin: 20px 0 0 11vw;
  color: var(--orange);
}
.proof-note {
  position: absolute;
  right: var(--pad);
  bottom: 60px;
  display: flex;
  align-items: center;
  gap: 15px;
  font:
    500 9px DM Mono,
    monospace;
}
.proof-note i {
  width: 50px;
  height: 1px;
  background: var(--ink);
}
.proof-rail {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1px;
  background: rgba(17, 17, 15, 0.16);
}
.proof-rail span {
  position: absolute;
  top: 0;
  left: -4px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--orange);
  animation: rail 3s ease-in-out infinite;
}
@keyframes rail {
  50% {
    top: calc(100% - 9px);
  }
}
.contact {
  background: var(--paper);
  color: var(--ink);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 9vw;
}
.contact-lead h2 {
  margin: 0;
  font-size: clamp(53px, 6.4vw, 101px);
  line-height: 0.9;
  letter-spacing: -0.073em;
}
.contact-lead h2 em {
  color: var(--orange);
}
.contact-lead > p:nth-of-type(2) {
  max-width: 570px;
  margin: 38px 0;
  color: #5d5c56;
  font-size: 16px;
  line-height: 1.65;
}
.contact-lead dl {
  margin: 60px 0 0;
  border-top: 1px solid var(--line);
}
.contact-lead dl div {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 25px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}
.contact-lead dt {
  font:
    500 9px DM Mono,
    monospace;
  text-transform: uppercase;
}
.contact-lead dd {
  margin: 0;
  color: #5d5c56;
  font-size: 14px;
  line-height: 1.5;
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 25px;
}
.contact-form label span {
  display: block;
  margin-bottom: 8px;
  font:
    500 9px DM Mono,
    monospace;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: 15px 0;
  border: 0;
  border-bottom: 1px solid rgba(17, 17, 15, 0.28);
  border-radius: 0;
  background: transparent;
  color: var(--ink);
  outline: 0;
  resize: vertical;
}
.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  border-color: var(--orange);
}
.contact-form button {
  margin-top: 17px;
  padding: 18px 20px;
  display: flex;
  justify-content: space-between;
  border: 0;
  border-radius: 3px;
  background: var(--orange);
  color: #fff;
  cursor: pointer;
  font-weight: 700;
}
.contact-form button i {
  font-size: 21px;
  font-style: normal;
  transition: transform 0.3s;
}
.contact-form button:hover i {
  transform: translate(4px, -4px);
}
.form-status {
  min-height: 22px;
  margin: 0;
  color: var(--orange);
  font-size: 13px;
}
footer {
  padding: 50px var(--pad);
  display: grid;
  grid-template-columns: 1fr auto auto auto;
  gap: 40px;
  align-items: end;
  background: var(--paper);
  color: var(--ink);
  border-top: 1px solid var(--line);
}
footer p,
footer > a:not(.wordmark) {
  margin: 0;
  color: #71716a;
  font:
    500 9px DM Mono,
    monospace;
  text-transform: uppercase;
}
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition:
    opacity 0.9s var(--ease),
    transform 0.9s var(--ease);
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
@media (max-width: 1000px) {
  .site-header nav {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100svh;
    padding: 120px var(--pad);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    background: var(--paper);
    transform: translateY(-100%);
    transition: 0.6s var(--ease);
  }
  .menu-open .site-header nav {
    transform: none;
  }
  .site-header nav a {
    font-size: 28px;
    letter-spacing: -0.04em;
  }
  .site-header nav a:last-child {
    font-size: 19px;
  }
  .menu-button {
    position: relative;
    z-index: 2;
    width: 38px;
    height: 38px;
    display: grid;
    place-content: center;
    gap: 6px;
  }
  .menu-button span {
    display: block;
    width: 25px;
    height: 1px;
    background: var(--ink);
    transition: 0.3s;
  }
  .menu-open .menu-button span:first-child {
    transform: translateY(3.5px) rotate(45deg);
  }
  .menu-open .menu-button span:last-child {
    transform: translateY(-3.5px) rotate(-45deg);
  }
  .hero h1 {
    font-size: clamp(62px, 11.2vw, 105px);
    max-width: 78vw;
  }
  .forge-phases {
    width: 47vw;
  }
  .forge-phase strong {
    font-size: clamp(45px, 7.3vw, 74px);
  }
  .statement-copy,
  .team-intro,
  .ventures-intro,
  .process-head,
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .statement-copy > p:last-child,
  .team-intro > p,
  .ventures-intro > p,
  .process-head > p {
    max-width: 610px;
  }
  .capability-grid,
  .partner-grid {
    grid-template-columns: 1fr;
  }
  .capability-card {
    min-height: 340px;
  }
  .partner-card {
    min-height: 500px;
  }
  .structure-list article {
    grid-template-columns: 50px 0.7fr 1fr;
  }
  .structure-list i {
    grid-column: 3;
  }
  .venture-grid {
    grid-template-columns: 1fr 1fr;
  }
  .venture-grid.current-portfolio {
    grid-template-columns: 1fr;
  }
  .process-steps {
    grid-template-columns: 1fr;
  }
  .process-steps li {
    min-height: 170px;
  }
  .process-steps strong {
    margin: 35px 0 10px;
  }
  .proof {
    min-height: 720px;
  }
  footer {
    grid-template-columns: 1fr 1fr;
  }
  footer .wordmark {
    grid-column: 1/-1;
  }
}
@media (max-width: 620px) {
  :root {
    --pad: 18px;
  }
  .boot {
    grid-template-columns: 1fr;
  }
  .boot > img {
    width: 80px;
    height: 80px;
  }
  .site-header {
    height: 68px;
  }
  .wordmark {
    width: 168px;
  }
  .hero {
    padding-top: 68px;
  }
  .hero-grid {
    inset: 68px 0 0;
    height: calc(100% - 68px);
  }
  .hero-monogram {
    top: 22%;
    right: -24vw;
    width: 94vw;
    opacity: 0.16;
  }
  .hero-copy {
    min-height: calc(100svh - 68px);
    padding-top: 130px;
    padding-bottom: 105px;
    justify-content: flex-end;
  }
  .hero h1 {
    font-size: clamp(55px, 15.5vw, 80px);
    line-height: 0.86;
    max-width: 100%;
  }
  .hero-bottom {
    margin-top: 36px;
    gap: 25px;
    align-items: center;
  }
  .hero-bottom > div > p:first-child {
    font-size: 14px;
  }
  .hero-note {
    font-size: 8px;
  }
  .round-link {
    width: 95px;
    height: 95px;
    padding: 16px;
  }
  .round-link span {
    font-size: 7px;
  }
  .hero-strap {
    gap: 8px;
  }
  .hero-strap i {
    display: none;
  }
  .forge-scroll {
    height: 380svh;
  }
  .forge-stage:before {
    background-size: 48px 48px;
  }
  .forge-stage:after {
    width: 125vw;
    height: 125vw;
    left: -28vw;
  }
  .forge-meter {
    top: 88px;
    gap: 12px;
  }
  .forge-symbol {
    width: 78vw;
  }
  .forge-phases {
    left: var(--pad);
    right: var(--pad);
    top: auto;
    bottom: 14vh;
    width: auto;
    transform: none;
  }
  .forge-phase > span {
    margin-bottom: 16px;
    font-size: 8px;
  }
  .forge-phase strong {
    font-size: clamp(45px, 14vw, 62px);
  }
  .forge-disciplines span:nth-child(1) {
    left: 5vw;
    top: 21%;
  }
  .forge-disciplines span:nth-child(2) {
    left: auto;
    right: 5vw;
    bottom: 42%;
  }
  .forge-disciplines span:nth-child(3) {
    left: 7vw;
    bottom: 49%;
  }
  .forge-scroll-note {
    bottom: 25px;
  }
  .section {
    padding-top: 100px;
    padding-bottom: 100px;
  }
  .section-label {
    margin-bottom: 68px;
  }
  .statement-copy {
    margin: 0;
  }
  .statement h2 {
    font-size: 46px;
  }
  .capability-grid {
    margin-top: 70px;
  }
  .alignment {
    min-height: 780px;
  }
  .alignment-copy blockquote {
    font-size: 48px;
  }
  .alignment-copy > p:last-child {
    margin-top: 48px;
  }
  .team-intro h2,
  .ventures-intro h2,
  .process-head h2 {
    font-size: 57px;
  }
  .partner-card {
    min-height: 470px;
  }
  .structure-list article {
    grid-template-columns: 38px 1fr;
    gap: 18px;
  }
  .structure-list p,
  .structure-list i {
    grid-column: 2;
  }
  .venture-grid {
    grid-template-columns: 1fr;
  }
  .venture {
    min-height: 330px;
  }
  .proof {
    min-height: 650px;
    padding-top: 110px;
  }
  .proof h2 {
    font-size: 63px;
  }
  .proof h2.orange {
    margin: 18px 0 0;
  }
  .proof-note {
    left: var(--pad);
    right: auto;
    flex-wrap: wrap;
  }
  .contact-grid {
    gap: 75px;
  }
  .contact-lead h2 {
    font-size: 57px;
  }
  footer {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .boot,
  .reveal,
  .alignment-track,
  .proof-rail span {
    animation: none !important;
    transition: none !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
  #forge-field {
    display: none;
  }
  .forge-scroll {
    height: auto;
  }
  .forge-stage {
    position: relative;
    min-height: 100svh;
  }
  .forge-slice {
    transform: none !important;
  }
  .forge-phase {
    display: none;
  }
  .forge-phase[data-forge-phase="3"] {
    position: relative;
    display: block;
    opacity: 1;
    transform: none;
  }
  .forge-phase[data-forge-phase="3"] strong em {
    color: var(--orange2);
  }
}
