:root {
  color-scheme: light dark;
  --ink: #101412;
  --ink-soft: #1b211e;
  --paper: #eef0ea;
  --paper-bright: #f7f8f3;
  --muted: #6f7873;
  --line: rgba(16, 20, 18, 0.18);
  --line-light: rgba(238, 240, 234, 0.2);
  --mint: #b8eadf;
  --signal: #5fd3bc;
  --magenta: #d55e79;
  --mono: 'JetBrains Mono', ui-monospace, SFMono-Regular, Consolas, monospace;
  --display: 'Manrope', Inter, system-ui, sans-serif;
  --brand: 'Comfortaa', system-ui, sans-serif;
  --header-height: 92px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

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

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--display);
  font-size: 16px;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body {
  cursor: default;
}

button,
a {
  cursor: pointer;
}

a,
button {
  color: inherit;
  font: inherit;
}

a {
  text-decoration: none;
}

button {
  padding: 0;
  border: 0;
  background: none;
}

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

p,
h1,
h2,
h3,
ul {
  margin: 0;
}

ul {
  padding: 0;
  list-style: none;
}

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

.site {
  min-height: 100vh;
  overflow: clip;
  background: var(--paper);
}

.site.menu-is-open {
  height: 100vh;
  overflow: hidden;
}

.page-grid {
  width: min(100%, 1600px);
  margin: 0 auto;
  padding-right: clamp(24px, 5vw, 84px);
  padding-left: clamp(24px, 5vw, 84px);
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  display: flex;
  height: var(--header-height);
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(24px, 5vw, 84px);
  border-bottom: 1px solid transparent;
  color: var(--paper);
  transition: height 300ms ease, border-color 300ms ease, background 300ms ease, backdrop-filter 300ms ease;
}

.site-header.is-condensed {
  height: 70px;
  border-color: rgba(238, 240, 234, 0.12);
  background: rgba(12, 16, 14, 0.82);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
}

.brand__logo {
  width: 124px;
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(24px, 2.8vw, 48px);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.site-nav > a {
  position: relative;
  padding: 10px 0;
  color: rgba(238, 240, 234, 0.64);
  transition: color 180ms ease;
}

.site-nav > a::after {
  position: absolute;
  right: 0;
  bottom: 3px;
  left: 0;
  height: 1px;
  background: var(--signal);
  content: '';
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms ease;
}

.site-nav > a:hover,
.site-nav > a:focus-visible,
.site-nav > a[aria-current='page'] {
  color: var(--paper);
}

.site-nav > a:hover::after,
.site-nav > a:focus-visible::after,
.site-nav > a[aria-current='page']::after {
  transform: scaleX(1);
  transform-origin: left;
}

.menu-toggle {
  display: none;
}

.hero {
  position: relative;
  display: flex;
  min-height: max(790px, 100svh);
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  color: var(--paper);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    var(--ink);
  background-size: 72px 72px;
}

.hero::after {
  position: absolute;
  right: -12vw;
  bottom: -35vw;
  width: 76vw;
  aspect-ratio: 1;
  border: 1px solid rgba(95, 211, 188, 0.08);
  border-radius: 50%;
  box-shadow: 0 0 0 7vw rgba(95, 211, 188, 0.02), 0 0 0 14vw rgba(95, 211, 188, 0.015);
  content: '';
  pointer-events: none;
}

.hero__glow {
  position: absolute;
  top: 12%;
  right: 11%;
  width: 42vw;
  height: 58vw;
  background: radial-gradient(ellipse, rgba(95, 211, 188, 0.11), transparent 66%);
  filter: blur(30px);
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 2;
  display: grid;
  padding-top: clamp(125px, 15vh, 170px);
  padding-bottom: 80px;
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.75fr);
  align-items: center;
  gap: clamp(60px, 8vw, 140px);
}

.hero h1 {
  max-width: 900px;
  margin-top: 0;
  font-size: clamp(58px, 6vw, 96px);
  font-weight: 450;
  letter-spacing: -0.07em;
  line-height: 0.88;
}

.hero h1 span {
  display: block;
  color: var(--signal);
  font-weight: 300;
}

.hero__lede {
  max-width: 700px;
  margin-top: clamp(34px, 5vh, 62px);
  color: rgba(238, 240, 234, 0.7);
  font-size: clamp(18px, 1.6vw, 25px);
  font-weight: 350;
  line-height: 1.55;
}

.hero__actions {
  display: flex;
  margin-top: 38px;
  align-items: center;
  gap: 34px;
}

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: space-between;
  gap: 35px;
  padding: 0 22px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: transform 200ms ease, background 200ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-3px);
}

.button--primary {
  min-width: 190px;
  color: var(--ink);
  background: var(--signal);
}

.button--primary:hover,
.button--primary:focus-visible {
  background: #82e7d2;
}

.project-card__link span {
  transition: transform 180ms ease;
}

.project-card:hover .project-card__link span {
  transform: translate(3px, -3px);
}

.hero__signal {
  width: min(100%, 470px);
  justify-self: end;
}

.signal-card {
  position: relative;
  isolation: isolate;
  width: 100%;
  aspect-ratio: 1;
  overflow: hidden;
  border: 1px solid rgba(211, 221, 216, 0.16);
  border-radius: 4px;
  background:
    radial-gradient(circle at 50% 48%, rgba(77, 118, 108, 0.23), transparent 42%),
    #0d1110;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.3);
}

.signal-card__mark,
.signal-card__grid {
  position: absolute;
  inset: 12%;
  width: 76%;
  height: 76%;
  overflow: visible;
}

.signal-card__grid {
  inset: 7%;
  width: 86%;
  height: 86%;
  fill: none;
  opacity: 0.1;
  stroke: #cfd6d2;
  stroke-dasharray: 1 7;
  stroke-width: 0.45;
}

.signal-card__grid path {
  opacity: 0.45;
  stroke-dasharray: 1 12;
}

.signal-card__mark {
  filter: drop-shadow(0 0 20px rgba(224, 239, 233, 0.08));
}

.signal-card__rings {
  transform-origin: 0 0;
}

.signal-card__tear {
  animation: signalTear 5.3s steps(1) infinite;
}

.signal-ring {
  opacity: 0.92;
  transform-origin: 0 0;
  animation-duration: var(--ring-duration);
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}

.signal-ring path {
  fill: none;
  stroke-linecap: butt;
  stroke-width: 9;
  vector-effect: non-scaling-stroke;
}

.signal-ring--clockwise {
  animation-name: signalClockwise;
}

.signal-ring--counter {
  animation-name: signalCounter;
  animation-direction: reverse;
}

.signal-card__focus {
  position: absolute;
  z-index: 6;
  width: 8px;
  height: 8px;
  border-color: rgba(95, 211, 188, 0.72);
}

.signal-card__focus--one {
  top: 20%;
  left: 20%;
  border-top: 1px solid;
  border-left: 1px solid;
}

.signal-card__focus--two {
  right: 20%;
  bottom: 20%;
  border-right: 1px solid;
  border-bottom: 1px solid;
}

.signal-card__tracking,
.signal-card__noise,
.signal-card__scanlines,
.signal-card__mask,
.signal-card__dropout,
.signal-card__curve {
  position: absolute;
  z-index: 5;
  inset: 0;
  pointer-events: none;
}

.signal-card__noise {
  opacity: 0.24;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 220 220' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='1.4' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.9'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
  animation: signalNoise 220ms steps(4) infinite;
}

.signal-card__scanlines {
  z-index: 6;
  background: repeating-linear-gradient(to bottom, transparent 0, transparent 1px, rgba(0, 0, 0, 0.35) 2px, rgba(0, 0, 0, 0.35) 3px);
  mix-blend-mode: multiply;
  animation: signalScanDrift 9s linear infinite;
}

.signal-card__mask {
  z-index: 6;
  opacity: 0.8;
  background: repeating-linear-gradient(to right, rgba(255, 0, 60, 0.06) 0, rgba(0, 255, 120, 0.06) 1px, rgba(40, 100, 255, 0.06) 2px, transparent 3px);
  mix-blend-mode: screen;
}

.signal-card__tracking {
  right: 0;
  bottom: auto;
  height: 70px;
  background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.12), transparent);
  mix-blend-mode: screen;
  animation: signalTrack 7s linear infinite;
}

.signal-card__dropout {
  z-index: 9;
  background: #fff;
  opacity: 0;
  mix-blend-mode: difference;
  animation: signalDropout 8s steps(1) infinite;
}

.signal-card__curve {
  z-index: 7;
  background:
    radial-gradient(ellipse 118% 103% at 50% 50%, transparent 56%, rgba(0, 0, 0, 0.45) 84%, rgba(0, 0, 0, 0.9) 100%),
    radial-gradient(ellipse 90% 60% at 50% 0%, rgba(255, 255, 255, 0.05), transparent 60%);
}

@keyframes signalClockwise {
  from { transform: rotate(var(--ring-start)); }
  to { transform: rotate(calc(var(--ring-start) + 360deg)); }
}

@keyframes signalCounter {
  from { transform: rotate(var(--ring-start)); }
  to { transform: rotate(calc(var(--ring-start) + 360deg)); }
}

@keyframes signalTear {
  0%, 3% { clip-path: inset(0 0 0 0); transform: translate(0, 0); }
  4% { clip-path: inset(22% 0 65% 0); transform: translate(-14px, 0); }
  5%, 37% { clip-path: inset(0 0 0 0); transform: translate(0, 0); }
  38% { clip-path: inset(55% 0 30% 0); transform: translate(18px, 0); }
  39%, 72% { clip-path: inset(0 0 0 0); transform: translate(0, 0); }
  73% { clip-path: inset(8% 0 82% 0); transform: translate(-22px, 0); }
  73.5% { clip-path: inset(78% 0 8% 0); transform: translate(9px, 0); }
  74%, 100% { clip-path: inset(0 0 0 0); transform: translate(0, 0); }
}

@keyframes signalNoise {
  0% { transform: translate(0, 0); }
  25% { transform: translate(-6px, 3px); }
  50% { transform: translate(4px, -5px); }
  75% { transform: translate(-3px, -2px); }
  100% { transform: translate(5px, 4px); }
}

@keyframes signalTrack {
  0% { top: 110%; opacity: 0; }
  10%, 85% { opacity: 0.8; }
  100% { top: -15%; opacity: 0; }
}

@keyframes signalScanDrift {
  to { background-position-y: 120px; }
}

@keyframes signalDropout {
  0%, 22% { opacity: 0; }
  22.2% { opacity: 0.15; }
  22.4%, 58% { opacity: 0; }
  58.2% { opacity: 0.08; }
  58.5%, 81% { opacity: 0; }
  81.15% { opacity: 0.22; }
  81.35%, 100% { opacity: 0; }
}

.section {
  position: relative;
  padding-top: clamp(100px, 12vw, 190px);
  padding-bottom: clamp(110px, 13vw, 210px);
}

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

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

.section--mint {
  color: var(--ink);
  background: var(--mint);
}

.section-heading {
  display: block;
  max-width: 1120px;
  margin-bottom: clamp(65px, 8vw, 125px);
}

.section-heading h2,
.approach__header h2 {
  font-size: clamp(48px, 6vw, 98px);
  font-weight: 420;
  letter-spacing: -0.065em;
  line-height: 0.96;
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
}

.project-card {
  position: relative;
  display: flex;
  min-height: 720px;
  flex-direction: column;
  padding: clamp(24px, 3vw, 48px);
  overflow: hidden;
  background: var(--paper-bright);
  transition: background 250ms ease;
}

.project-card:hover,
.project-card:focus-visible {
  background: #fff;
  outline: none;
}

.project-card--featured {
  display: grid;
  min-height: 660px;
  grid-column: 1 / -1;
  grid-template-columns: minmax(0, 1.2fr) minmax(370px, 0.8fr);
  grid-template-rows: 1fr auto;
  column-gap: clamp(50px, 8vw, 130px);
}

.project-card__visual {
  position: relative;
  height: 310px;
  margin: 0 0 55px;
  overflow: hidden;
  color: var(--paper);
  background: var(--ink);
}

.project-card--featured .project-card__visual {
  height: auto;
  min-height: 430px;
  margin: 0 0 10px;
  grid-row: 1 / 3;
}

.project-card--featured .project-card__content {
  align-self: end;
  padding-bottom: 45px;
  grid-column: 2;
  grid-row: 1;
}

.project-card h3 {
  font-size: clamp(34px, 4vw, 68px);
  font-weight: 450;
  letter-spacing: -0.055em;
  line-height: 1;
}

.project-card__description {
  max-width: 620px;
  margin-top: 26px;
  color: #58605c;
  font-size: clamp(15px, 1.25vw, 19px);
  line-height: 1.65;
}

.project-card__link {
  display: flex;
  margin-top: auto;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.project-card--featured .project-card__link {
  grid-column: 2;
  grid-row: 2;
}

.project-card__visual--theia {
  background:
    linear-gradient(rgba(95, 211, 188, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(95, 211, 188, 0.045) 1px, transparent 1px),
    #101512;
  background-size: 32px 32px;
}

.theia-visual {
  position: absolute;
  inset: 11%;
  display: grid;
  grid-template-rows: 1fr auto;
  gap: 24px;
}

.theia-visual__frame {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(95, 211, 188, 0.25);
  background: radial-gradient(circle at 56% 47%, rgba(95, 211, 188, 0.28), transparent 8%), linear-gradient(135deg, #1b2924, #0e1210 65%);
}

.theia-visual__frame::before,
.theia-visual__frame::after {
  position: absolute;
  content: '';
}

.theia-visual__frame::before {
  top: 18%;
  left: 12%;
  width: 32%;
  height: 64%;
  border: 1px solid rgba(238, 240, 234, 0.18);
  transform: skewY(-14deg);
}

.theia-visual__frame::after {
  right: 14%;
  bottom: 19%;
  width: 28%;
  height: 1px;
  background: var(--magenta);
  box-shadow: 0 -31px 0 rgba(95, 211, 188, 0.5), 0 -62px 0 rgba(238, 240, 234, 0.22);
}

.theia-visual__frame span {
  position: absolute;
  top: calc(14% + var(--index) * 8%);
  left: calc(7% + var(--index) * 5%);
  width: calc(76% - var(--index) * 5%);
  height: 1px;
  background: rgba(238, 240, 234, 0.1);
}

.theia-visual__tokens {
  display: grid;
  grid-template-columns: repeat(18, 1fr);
  gap: 5px;
}

.theia-visual__tokens i {
  height: 18px;
  background: rgba(238, 240, 234, 0.08);
}

.theia-visual__tokens i.is-active {
  background: var(--signal);
  box-shadow: 0 0 12px rgba(95, 211, 188, 0.42);
}

.project-card__visual--fabric {
  background: #17201c;
}

.fabric-visual {
  position: absolute;
  inset: 14%;
  border: 1px solid rgba(238, 240, 234, 0.14);
  background: #101512;
  box-shadow: 18px 18px 0 rgba(95, 211, 188, 0.07);
}

.fabric-visual__bar {
  display: flex;
  height: 30px;
  align-items: center;
  gap: 6px;
  padding: 0 12px;
  border-bottom: 1px solid rgba(238, 240, 234, 0.1);
}

.fabric-visual__bar i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(238, 240, 234, 0.24);
}

.fabric-visual__answer {
  position: relative;
  display: grid;
  margin: 52px 24px 0;
  gap: 9px;
}

.fabric-visual__answer span {
  width: 88%;
  height: 4px;
  background: rgba(238, 240, 234, 0.15);
}

.fabric-visual__answer span:nth-child(2) {
  width: 68%;
}

.fabric-visual__answer span:nth-child(3) {
  width: 77%;
}

.project-card__visual--forge {
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 50% 50%, rgba(213, 94, 121, 0.1), transparent 50%),
    #111512;
}

.forge-visual {
  width: 87%;
  fill: none;
  stroke: rgba(238, 240, 234, 0.25);
  stroke-width: 1;
}

.forge-visual rect {
  fill: #151b18;
  stroke: rgba(95, 211, 188, 0.55);
}

.project-card__visual--phoebe {
  display: grid;
  place-items: center;
  background: #131714;
}

.phoebe-visual {
  width: 74%;
}

.phoebe-visual > div {
  display: grid;
  height: 43px;
  align-items: center;
  grid-template-columns: 1fr;
}

.phoebe-visual i {
  position: relative;
  height: 1px;
  background: rgba(238, 240, 234, 0.16);
}

.phoebe-visual i::before {
  position: absolute;
  top: -3px;
  left: 0;
  width: 7px;
  height: 7px;
  border: 1px solid var(--signal);
  border-radius: 50%;
  background: #131714;
  content: '';
}

.practice {
  overflow: hidden;
}

.practice::before {
  position: absolute;
  top: 14%;
  right: -14vw;
  width: 46vw;
  aspect-ratio: 1;
  border: 1px solid rgba(95, 211, 188, 0.1);
  border-radius: 50%;
  box-shadow: 0 0 0 7vw rgba(95, 211, 188, 0.025), 0 0 0 14vw rgba(95, 211, 188, 0.015);
  content: '';
}

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

.practice-item {
  min-height: 220px;
  padding: 48px 0;
  border-bottom: 1px solid var(--line-light);
}

.practice-item > div {
  display: grid;
  align-items: end;
  grid-template-columns: minmax(320px, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(40px, 8vw, 140px);
}

.practice-item h3 {
  font-size: clamp(34px, 4vw, 64px);
  font-weight: 420;
  letter-spacing: -0.055em;
  line-height: 1;
}

.practice-item > div p {
  max-width: 620px;
  margin-top: 0;
  color: rgba(238, 240, 234, 0.54);
  font-size: 17px;
  line-height: 1.6;
}

.approach__header {
  display: block;
  max-width: 1120px;
  margin-bottom: clamp(65px, 9vw, 135px);
}

.approach__header h2 {
  max-width: 1100px;
  font-size: clamp(57px, 7.5vw, 122px);
}

.process-grid {
  display: grid;
  border-top: 1px solid rgba(16, 20, 18, 0.28);
  border-left: 1px solid rgba(16, 20, 18, 0.28);
  grid-template-columns: repeat(4, 1fr);
}

.process-card {
  position: relative;
  display: flex;
  min-height: 310px;
  padding: 28px;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  border-right: 1px solid rgba(16, 20, 18, 0.28);
  border-bottom: 1px solid rgba(16, 20, 18, 0.28);
}

.process-card__index {
  position: absolute;
  z-index: 0;
  top: 0.08em;
  left: 50%;
  color: rgba(16, 20, 18, 0.09);
  font-family: var(--brand);
  font-size: clamp(170px, 16vw, 270px);
  font-weight: 300;
  letter-spacing: -0.12em;
  line-height: 0.86;
  pointer-events: none;
  transform: translateX(-50%);
}

.process-card h3,
.process-card p {
  position: relative;
  z-index: 1;
}

.process-card h3 {
  margin-top: 0;
  font-size: 30px;
  font-weight: 480;
  letter-spacing: -0.04em;
}

.process-card p {
  margin-top: 18px;
  color: rgba(16, 20, 18, 0.65);
  font-size: 14px;
  line-height: 1.55;
}

.models-hero {
  display: flex;
  min-height: min(820px, 88svh);
  align-items: flex-end;
  padding: calc(var(--header-height) + clamp(90px, 12vw, 180px)) 0 clamp(80px, 9vw, 140px);
  color: var(--paper);
  background:
    radial-gradient(circle at 78% 35%, rgba(95, 211, 188, 0.12), transparent 28%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    var(--ink);
  background-size: auto, 72px 72px, 72px 72px, auto;
}

.models-hero__inner {
  display: grid;
  align-items: end;
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.75fr);
  gap: clamp(50px, 8vw, 150px);
}

.models-hero h1 {
  font-size: clamp(92px, 16vw, 250px);
  font-weight: 350;
  letter-spacing: -0.085em;
  line-height: 0.76;
}

.models-hero p {
  max-width: 480px;
  color: rgba(238, 240, 234, 0.62);
  font-size: clamp(18px, 1.8vw, 27px);
  line-height: 1.45;
}

.model-showcase {
  padding: clamp(100px, 11vw, 180px) 0;
}

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

.model-showcase--ink {
  color: var(--paper);
  background: var(--ink-soft);
}

.model-showcase__grid {
  display: grid;
  align-items: center;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  gap: clamp(55px, 8vw, 145px);
}

.model-showcase--reverse .model-showcase__visual {
  order: 2;
}

.model-showcase--reverse .model-showcase__copy {
  order: 1;
}

.model-showcase__visual {
  display: flex;
  min-height: 390px;
  margin: 0;
  align-items: center;
  overflow: hidden;
  border: 1px solid rgba(95, 211, 188, 0.2);
  background: #000;
}

.model-showcase__visual img {
  width: 100%;
  height: auto;
}

.model-showcase__copy header {
  padding-bottom: clamp(32px, 4vw, 58px);
  border-bottom: 1px solid var(--line);
}

.model-showcase--ink .model-showcase__copy header {
  border-color: var(--line-light);
}

.model-showcase__copy h2 {
  font-size: clamp(64px, 7vw, 112px);
  font-weight: 380;
  letter-spacing: -0.07em;
  line-height: 0.92;
}

.model-showcase__copy header p {
  max-width: 560px;
  margin-top: 24px;
  color: rgba(16, 20, 18, 0.72);
  font-size: clamp(18px, 1.6vw, 25px);
  line-height: 1.45;
}

.model-showcase--ink .model-showcase__copy header p {
  color: rgba(238, 240, 234, 0.58);
}

.model-showcase__copy > p {
  max-width: 650px;
  margin-top: clamp(30px, 4vw, 54px);
  color: rgba(16, 20, 18, 0.68);
  font-size: 17px;
  line-height: 1.7;
}

.model-showcase--ink .model-showcase__copy > p {
  color: rgba(238, 240, 234, 0.62);
}

.model-showcase__facts {
  margin: clamp(34px, 4vw, 58px) 0 0;
  border-top: 1px solid var(--line);
}

.model-showcase--ink .model-showcase__facts {
  border-color: var(--line-light);
}

.model-showcase__facts div {
  display: grid;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  grid-template-columns: 130px 1fr;
  gap: 24px;
}

.model-showcase--ink .model-showcase__facts div {
  border-color: var(--line-light);
}

.model-showcase__facts dt {
  color: rgba(16, 20, 18, 0.7);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.model-showcase--ink .model-showcase__facts dt {
  color: rgba(238, 240, 234, 0.46);
}

.model-showcase__facts dd {
  margin: 0;
  font-size: 14px;
}

.model-showcase__link {
  display: flex;
  margin-top: 34px;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  border-bottom: 1px solid currentColor;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: color 180ms ease;
}

.model-showcase__link:hover,
.model-showcase__link:focus-visible {
  color: var(--signal);
}

.site-footer {
  padding: 70px 0 38px;
  color: var(--paper);
  background: var(--ink);
}

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

.brand--footer {
  align-self: start;
}

.site-footer p {
  color: rgba(238, 240, 234, 0.48);
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 0.1em;
  line-height: 1.6;
  text-transform: uppercase;
}

.site-footer__grid > div {
  display: flex;
  align-items: baseline;
  gap: clamp(26px, 3vw, 48px);
}

.site-footer__grid > div a {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--paper);
  font-family: var(--display);
  font-size: clamp(17px, 1.45vw, 21px);
  font-weight: 350;
  letter-spacing: -0.025em;
  line-height: 1.15;
}

.site-footer__grid > div a:hover,
.site-footer__grid > div a:focus-visible {
  color: var(--signal);
}

.site-footer__github-icon {
  width: 19px;
  height: 19px;
  flex: 0 0 auto;
  fill: currentColor;
}

.reveal-ready [data-reveal] {
  opacity: 0;
  transform: translateY(35px);
  transition: opacity 800ms cubic-bezier(0.2, 0.7, 0.2, 1), transform 800ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.reveal-ready [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1050px) {
  .hero__content {
    grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
    gap: 48px;
  }

  .project-card {
    min-height: 650px;
  }

  .project-card--featured {
    grid-template-columns: 1fr 0.9fr;
  }

  .practice-item > div {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .models-hero__inner {
    grid-template-columns: 1fr 0.8fr;
  }

  .model-showcase__grid {
    grid-template-columns: minmax(0, 1fr) minmax(340px, 0.9fr);
    gap: 50px;
  }

  .model-showcase__visual {
    min-height: 320px;
  }

  .site-footer__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 800px) {
  :root {
    --header-height: 76px;
  }

  .site-header {
    padding: 0 22px;
  }

  .menu-toggle {
    position: relative;
    z-index: 102;
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(238, 240, 234, 0.76);
    font-family: var(--mono);
    font-size: 9px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
  }

  .menu-toggle i {
    position: relative;
    width: 18px;
    height: 1px;
    background: currentColor;
    transition: transform 200ms ease;
  }

  .menu-is-open .menu-toggle i {
    transform: rotate(45deg);
  }

  .site-nav {
    position: fixed;
    z-index: 101;
    inset: 0;
    display: flex;
    padding: 120px 24px 40px;
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    gap: 0;
    visibility: hidden;
    background: rgba(16, 20, 18, 0.98);
    opacity: 0;
    transform: translateY(-12px);
    transition: visibility 250ms, opacity 250ms ease, transform 250ms ease;
  }

  .menu-is-open .site-nav {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }

  .site-nav > a {
    padding: 22px 0;
    border: 0;
    border-bottom: 1px solid rgba(238, 240, 234, 0.13);
    color: var(--paper);
    font-family: var(--display);
    font-size: 32px;
    font-weight: 350;
    letter-spacing: -0.04em;
    text-transform: none;
  }

  .hero {
    min-height: auto;
  }

  .hero__content {
    padding-top: 140px;
    padding-bottom: 65px;
    grid-template-columns: 1fr;
  }

  .hero h1 {
    font-size: clamp(55px, 15vw, 90px);
  }

  .hero__signal {
    width: min(100%, 430px);
    justify-self: center;
  }

  .section-heading h2 {
    margin-top: 0;
  }

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

  .project-card,
  .project-card--featured {
    display: flex;
    min-height: 660px;
    grid-column: auto;
  }

  .project-card--featured .project-card__visual {
    width: 100%;
    height: 340px;
    min-height: 0;
    margin: 0 0 50px;
    order: initial;
  }

  .project-card--featured .project-card__content,
  .project-card--featured .project-card__link {
    grid-column: auto;
    grid-row: auto;
  }

  .project-card--featured .project-card__content {
    padding-bottom: 0;
  }

  .practice-item {
    padding: 42px 0;
  }

  .approach__header h2 {
    margin-top: 0;
  }

  .models-hero {
    min-height: 650px;
    padding-bottom: 80px;
  }

  .models-hero__inner,
  .model-showcase__grid {
    grid-template-columns: 1fr;
  }

  .models-hero__inner {
    gap: 46px;
  }

  .models-hero h1 {
    font-size: clamp(92px, 27vw, 180px);
  }

  .model-showcase--reverse .model-showcase__visual,
  .model-showcase--reverse .model-showcase__copy {
    order: initial;
  }

  .model-showcase__visual {
    min-height: 0;
  }
}

@media (max-width: 560px) {
  .page-grid {
    padding-right: 20px;
    padding-left: 20px;
  }

  .brand__logo {
    width: 112px;
  }

  .hero__content {
    padding-top: 125px;
  }

  .hero__lede {
    font-size: 17px;
  }

  .hero__actions {
    align-items: stretch;
    flex-direction: column;
    gap: 17px;
  }

  .button--primary {
    width: 100%;
  }

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

  .section-heading h2 {
    font-size: 49px;
  }

  .project-card,
  .project-card--featured {
    min-height: 610px;
    padding: 22px;
  }

  .project-card__visual,
  .project-card--featured .project-card__visual {
    height: 280px;
    margin: 0 0 42px;
  }

  .theia-visual {
    inset: 9%;
  }

  .project-card h3 {
    font-size: 42px;
  }

  .project-card__description {
    font-size: 15px;
  }

  .practice-item h3 {
    margin-top: 4px;
  }

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

  .process-card {
    min-height: 240px;
  }

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

  .models-hero {
    min-height: 590px;
    padding-bottom: 65px;
  }

  .models-hero h1 {
    font-size: 88px;
  }

  .models-hero p {
    font-size: 18px;
  }

  .model-showcase {
    padding: 90px 0;
  }

  .model-showcase__grid {
    gap: 55px;
  }

  .model-showcase__copy h2 {
    font-size: 58px;
  }

  .model-showcase__copy header p {
    font-size: 18px;
  }

  .model-showcase__copy > p {
    font-size: 15px;
  }

  .model-showcase__facts div {
    grid-template-columns: 100px 1fr;
  }

  .site-footer__grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }

  .reveal-ready [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
