@charset "UTF-8";

/* SOURCE STUDIO / editorial system */
:root {
  --paper: #ece9df;
  --paper-2: #f6f3e9;
  --ink: #0a0a0a;
  --muted: #6c6a64;
  --line: rgba(10, 10, 10, 0.22);
  --cobalt: #3157ff;
  --acid: #d8ff38;
  --vermillion: #ff533d;
  --violet: #a981ff;
  --display: "Arial Narrow", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --sans: "Helvetica Neue", Helvetica, Arial, sans-serif;
  --serif: Iowan Old Style, "Times New Roman", Times, serif;
  --mono: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  --ease-out: cubic-bezier(.22, 1, .36, 1);
  --ease-in-out: cubic-bezier(.76, 0, .24, 1);
  --header-h: 76px;
  --gutter: clamp(18px, 2.5vw, 42px);
  --drag-x: 0px;
  --drag-y: 0px;
  --rotate: 0deg;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  scroll-behavior: smooth;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: clip;
  background: var(--paper);
}

body[data-page="work"] {
  --page-accent: var(--cobalt);
}

body[data-page="services"] {
  --page-accent: var(--acid);
}

body[data-page="studio"] {
  --page-accent: var(--vermillion);
}

body[data-page="lab"] {
  --page-accent: var(--violet);
}

body[data-page="contact"] {
  --page-accent: var(--acid);
}

body[data-page="about"] {
  --page-accent: var(--vermillion);
}

body[data-page="faq"] {
  --page-accent: var(--acid);
}

html[data-lang="pt"].intro-seen:not(.i18n-ready) body {
  visibility: hidden;
}

body.nav-open,
body.viewer-active {
  overflow: hidden;
}

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

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

button,
input,
textarea,
select {
  color: inherit;
  font: inherit;
}

button,
summary {
  cursor: pointer;
}

button {
  border: 0;
}

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

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

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

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 12px 16px;
  color: var(--paper);
  background: var(--ink);
  transform: translateY(-160%);
  transition: transform .2s;
}

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

:focus-visible {
  outline: 3px solid var(--cobalt);
  outline-offset: 3px;
}

.grain {
  position: fixed;
  z-index: 70;
  inset: 0;
  pointer-events: none;
  opacity: .16;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.88' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.3'/%3E%3C/svg%3E");
  mix-blend-mode: multiply;
}

.scroll-progress {
  position: fixed;
  z-index: 95;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  pointer-events: none;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--page-accent, var(--cobalt));
}

.site-header {
  position: relative;
  z-index: 80;
  display: grid;
  grid-template-columns: minmax(180px, 1fr) auto minmax(112px, 1fr);
  align-items: stretch;
  min-height: var(--header-h);
  border-bottom: 1px solid var(--ink);
  background: color-mix(in srgb, var(--paper) 94%, transparent);
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
  padding: 0 var(--gutter);
}

.brand-word {
  font-family: var(--display);
  font-size: clamp(1.35rem, 2vw, 2rem);
  font-weight: 900;
  line-height: .8;
  letter-spacing: -.075em;
  text-transform: uppercase;
}

.brand-meta {
  font-family: var(--mono);
  font-size: .55rem;
  line-height: 1.05;
  letter-spacing: .02em;
  text-transform: uppercase;
}

.desktop-nav {
  display: flex;
  align-items: stretch;
  border-right: 1px solid var(--ink);
  border-left: 1px solid var(--ink);
}

.desktop-nav a {
  position: relative;
  display: grid;
  place-items: center;
  min-width: 96px;
  padding: 0 16px;
  overflow: hidden;
  border-right: 1px solid var(--line);
  font-family: var(--mono);
  font-size: .69rem;
  letter-spacing: -.02em;
  text-transform: uppercase;
  transition: color .3s var(--ease-out);
}

.desktop-nav a::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  content: "";
  background: var(--ink);
  transform: translateY(102%);
  transition: transform .35s var(--ease-out);
}

.desktop-nav a:hover,
.desktop-nav a[aria-current="page"] {
  color: var(--paper);
}

.desktop-nav a:hover::before,
.desktop-nav a[aria-current="page"]::before {
  transform: translateY(0);
}

.desktop-nav sup {
  position: absolute;
  top: 9px;
  left: 9px;
  font-size: .45rem;
}

.desktop-nav .nav-project {
  min-width: 145px;
  color: var(--ink);
  background: var(--acid);
}

.desktop-nav .nav-project::before {
  background: var(--cobalt);
}

.header-folio {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 13px;
  padding: 0 var(--gutter);
  font-family: var(--mono);
  font-size: .65rem;
  line-height: 1.2;
  text-align: right;
  text-transform: uppercase;
}

.language-switch {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  padding: 3px;
  border: 1px solid currentColor;
  font-family: var(--mono);
  font-size: .57rem;
  line-height: 1;
}

.language-switch button,
.language-switch a {
  min-width: 28px;
  padding: 5px 6px;
  border: 0;
  color: inherit;
  background: transparent;
  font: inherit;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
}

.language-switch button:hover,
.language-switch a:hover,
.language-switch [aria-pressed="true"],
.language-switch [aria-current="true"],
.language-switch .is-active {
  color: var(--paper);
  background: var(--ink);
}

.mobile-nav-meta .language-switch {
  color: var(--paper);
}

.mobile-nav-meta .language-switch button:hover,
.mobile-nav-meta .language-switch a:hover,
.mobile-nav-meta .language-switch [aria-pressed="true"],
.mobile-nav-meta .language-switch [aria-current="true"],
.mobile-nav-meta .language-switch .is-active {
  color: var(--ink);
  background: var(--paper);
}

.nav-toggle {
  display: none;
  padding: 0 var(--gutter);
  color: var(--paper);
  background: var(--ink);
  font-family: var(--mono);
  font-size: .68rem;
  letter-spacing: .06em;
}

.mobile-nav {
  position: fixed;
  z-index: 79;
  inset: 0;
  display: none;
  grid-template-rows: var(--header-h) 1fr auto;
  visibility: hidden;
  color: var(--paper);
  background: var(--ink);
  clip-path: inset(0 0 100% 0);
  transition: clip-path .6s var(--ease-in-out), visibility .6s;
}

.mobile-nav-list {
  grid-row: 2;
  display: grid;
  align-content: center;
  padding: var(--gutter);
}

.mobile-nav a {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid rgba(236, 233, 223, .3);
  font-family: var(--display);
  font-size: clamp(2.8rem, 12vw, 5.8rem);
  font-weight: 900;
  line-height: .92;
  letter-spacing: -.075em;
  text-transform: uppercase;
}

.mobile-nav a span {
  font-family: var(--mono);
  font-size: .65rem;
  font-weight: 400;
  letter-spacing: 0;
}

.mobile-nav-meta {
  display: flex;
  grid-row: 3;
  justify-content: space-between;
  padding: var(--gutter);
  border-top: 1px solid rgba(236, 233, 223, .3);
  font-family: var(--mono);
  font-size: .62rem;
  text-transform: uppercase;
}

.nav-open .mobile-nav {
  visibility: visible;
  clip-path: inset(0);
}

/* One-time opening sequence */
.boot-sequence {
  position: fixed;
  z-index: 1200;
  inset: 0;
  display: grid;
  grid-template-rows: auto 1fr auto;
  min-width: 320px;
  overflow: hidden;
  color: var(--paper);
  background: var(--ink);
  isolation: isolate;
}

.boot-sequence::after {
  position: absolute;
  z-index: -1;
  inset: 0;
  content: "";
  opacity: .15;
  background-image:
    linear-gradient(rgba(236, 233, 223, .32) 1px, transparent 1px),
    linear-gradient(90deg, rgba(236, 233, 223, .32) 1px, transparent 1px);
  background-size: 8.333vw 100%, 100% 25%;
}

.boot-meta {
  z-index: 3;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 20px var(--gutter);
  border-bottom: 1px solid rgba(236, 233, 223, .48);
  font-family: var(--mono);
  font-size: .62rem;
  text-transform: uppercase;
}

.boot-word {
  z-index: 3;
  align-self: center;
  display: grid;
  padding: 0 var(--gutter);
}

.boot-word > span,
.boot-word strong {
  display: block;
  font-family: var(--display);
  font-size: clamp(5.8rem, 21vw, 24rem);
  font-weight: 900;
  line-height: .68;
  letter-spacing: -.095em;
  text-transform: uppercase;
  transform: translateY(115%) skewY(7deg);
  transform-origin: left bottom;
  animation: boot-word-in .9s .12s var(--ease-out) forwards;
}

.boot-word em,
.boot-word small {
  justify-self: end;
  margin: clamp(20px, 3vw, 38px) 1.5vw 0 0;
  color: var(--acid);
  font-family: var(--serif);
  font-size: clamp(1.4rem, 3vw, 3.4rem);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -.045em;
  opacity: 0;
  transform: translateY(20px) rotate(-3deg);
  animation: boot-tag-in .55s .62s var(--ease-out) forwards;
}

.boot-line {
  position: absolute;
  z-index: 4;
  right: var(--gutter);
  bottom: 42px;
  left: var(--gutter);
  height: 2px;
  overflow: hidden;
  background: rgba(236, 233, 223, .25);
}

.boot-line i {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--acid);
  transform: scaleX(0);
  transform-origin: left;
  animation: boot-progress 1.45s .08s var(--ease-in-out) forwards;
}

.boot-panels {
  position: absolute;
  z-index: 6;
  inset: 0;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  pointer-events: none;
}

.boot-panels i {
  background: var(--paper);
  transform: scaleY(0);
  transform-origin: bottom;
}

.boot-panels i:nth-child(even) {
  background: var(--acid);
}

.boot-sequence.is-exiting .boot-panels i {
  animation: boot-panel-out .68s var(--ease-in-out) forwards;
}

.boot-sequence.is-exiting .boot-panels i:nth-child(2) { animation-delay: .04s; }
.boot-sequence.is-exiting .boot-panels i:nth-child(3) { animation-delay: .08s; }
.boot-sequence.is-exiting .boot-panels i:nth-child(4) { animation-delay: .12s; }
.boot-sequence.is-exiting .boot-panels i:nth-child(5) { animation-delay: .16s; }
.boot-sequence.is-exiting .boot-panels i:nth-child(6) { animation-delay: .2s; }

html.intro-pending,
html.intro-pending body {
  overflow: hidden;
}

@keyframes boot-word-in {
  to { transform: translateY(0) skewY(0); }
}

@keyframes boot-tag-in {
  to { opacity: 1; transform: translateY(0) rotate(-3deg); }
}

@keyframes boot-progress {
  to { transform: scaleX(1); }
}

@keyframes boot-panel-out {
  0% { transform: scaleY(0); }
  48%, 100% { transform: scaleY(1); }
}

.transition-curtain {
  position: fixed;
  z-index: 999;
  inset: 0;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  visibility: hidden;
  pointer-events: none;
}

.transition-curtain span {
  background: var(--ink);
  transform: scaleY(0);
  transform-origin: bottom;
}

.transition-curtain span:nth-child(even) {
  background: var(--page-accent, var(--cobalt));
}

.is-leaving .transition-curtain {
  visibility: visible;
}

.is-leaving .transition-curtain span {
  transform: scaleY(1);
  transition: transform .52s var(--ease-in-out);
}

.is-leaving .transition-curtain span:nth-child(2) { transition-delay: .025s; }
.is-leaving .transition-curtain span:nth-child(3) { transition-delay: .05s; }
.is-leaving .transition-curtain span:nth-child(4) { transition-delay: .075s; }
.is-leaving .transition-curtain span:nth-child(5) { transition-delay: .1s; }
.is-leaving .transition-curtain span:nth-child(6) { transition-delay: .125s; }

@view-transition {
  navigation: auto;
}

::view-transition-old(root) {
  animation: .42s var(--ease-in-out) both old-page;
}

::view-transition-new(root) {
  animation: .62s var(--ease-out) both new-page;
}

@keyframes old-page {
  to { opacity: 0; transform: translateY(-18px); }
}

@keyframes new-page {
  from { opacity: 0; transform: translateY(22px); }
}

main {
  min-height: 70svh;
}

.page-shell {
  position: relative;
  padding-inline: var(--gutter);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--mono);
  font-size: clamp(.58rem, .8vw, .7rem);
  line-height: 1.2;
  letter-spacing: .02em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 7px;
  height: 7px;
  content: "";
  border-radius: 50%;
  background: var(--page-accent, var(--cobalt));
  box-shadow: 0 0 0 3px var(--ink);
}

.eyebrow--light::before {
  box-shadow: 0 0 0 3px var(--paper);
}

.display {
  margin-bottom: 0;
  font-family: var(--display);
  font-weight: 900;
  line-height: .82;
  letter-spacing: -.085em;
  text-transform: uppercase;
}

.display em,
.editorial-italic {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -.06em;
  text-transform: none;
}

.section-title {
  font-size: clamp(3.8rem, 9.4vw, 10rem);
}

.section-kicker {
  max-width: 34ch;
  font-size: clamp(1.2rem, 2.2vw, 2.2rem);
  line-height: 1.08;
  letter-spacing: -.04em;
}

.body-large {
  font-size: clamp(1.5rem, 3.2vw, 3.4rem);
  line-height: 1.02;
  letter-spacing: -.055em;
}

.body-copy {
  max-width: 44rem;
  font-size: clamp(1rem, 1.3vw, 1.25rem);
  line-height: 1.35;
  letter-spacing: -.022em;
}

.mono {
  font-family: var(--mono);
  font-size: .68rem;
  line-height: 1.35;
  letter-spacing: .01em;
  text-transform: uppercase;
}

.rule {
  width: 100%;
  height: 1px;
  background: currentColor;
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-width: min(100%, 220px);
  padding: 14px 0;
  border-bottom: 1px solid currentColor;
  font-family: var(--mono);
  font-size: .67rem;
  letter-spacing: .02em;
  text-transform: uppercase;
}

.link-arrow .arrow {
  font-size: 1.2rem;
  transition: transform .35s var(--ease-out);
}

.link-arrow:hover .arrow {
  transform: translate(6px, -6px);
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 8px 11px;
  border: 1px solid currentColor;
  border-radius: 999px;
  font-family: var(--mono);
  font-size: .58rem;
  text-transform: uppercase;
}

.pill-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #28d06f;
  box-shadow: 0 0 0 3px rgba(40, 208, 111, .18);
}

.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  min-height: 54px;
  padding: 0 21px;
  overflow: hidden;
  border: 1px solid var(--ink);
  color: var(--paper);
  background: var(--ink);
  font-family: var(--mono);
  font-size: .67rem;
  letter-spacing: .02em;
  text-transform: uppercase;
  transition: color .35s var(--ease-out), background .35s var(--ease-out), transform .25s var(--ease-out);
}

.button:hover {
  color: var(--ink);
  background: var(--acid);
}

.button--light {
  border-color: var(--paper);
  color: var(--ink);
  background: var(--paper);
}

.button--light:hover {
  border-color: var(--acid);
}

.button--outline {
  color: var(--ink);
  background: transparent;
}

.reveal {
  opacity: 1;
  transform: none;
}

.js .reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity .75s var(--ease-out), transform .75s var(--ease-out);
  transition-delay: var(--delay, 0s);
}

.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.line-reveal > span {
  display: block;
  overflow: hidden;
}

.js .line-reveal > span > i {
  display: block;
  font-style: inherit;
  transform: translateY(110%);
  transition: transform .9s var(--ease-out);
  transition-delay: calc(var(--line, 0) * 85ms + 100ms);
}

.js .is-ready .line-reveal > span > i {
  transform: translateY(0);
}

.cursor-orbit {
  position: fixed;
  z-index: 110;
  top: 0;
  left: 0;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  pointer-events: none;
  opacity: 0;
  border: 1px solid var(--ink);
  border-radius: 50%;
  mix-blend-mode: difference;
  will-change: transform;
  transition: width .25s var(--ease-out), height .25s var(--ease-out), opacity .2s;
}

.cursor-orbit::after {
  width: 4px;
  height: 4px;
  content: "";
  border-radius: 50%;
  background: white;
}

.cursor-orbit.is-active {
  width: 68px;
  height: 68px;
}

.sticker {
  --rotate: -7deg;
  position: absolute;
  z-index: 4;
  display: grid;
  place-items: center;
  text-align: center;
  user-select: none;
  transform: translate3d(var(--drag-x), var(--drag-y), 0) rotate(var(--rotate));
  transition: filter .25s var(--ease-out), box-shadow .25s var(--ease-out);
  touch-action: none;
}

.sticker[data-drag] {
  cursor: grab;
}

.sticker.is-dragging {
  z-index: 30;
  cursor: grabbing;
  filter: brightness(1.08);
  box-shadow: 18px 26px 50px rgba(0, 0, 0, .24);
}

.sticker--seal {
  width: clamp(105px, 10vw, 150px);
  aspect-ratio: 1;
  padding: 18px;
  border: 2px solid var(--ink);
  border-radius: 50%;
  background: var(--acid);
  font-family: var(--mono);
  font-size: clamp(.54rem, .7vw, .7rem);
  line-height: 1.1;
  text-transform: uppercase;
  box-shadow: 5px 6px 0 var(--ink);
}

.sticker--seal::before,
.sticker--seal::after {
  position: absolute;
  width: 8px;
  height: 8px;
  content: "";
  border-radius: 50%;
  background: var(--ink);
}

.sticker--seal::before { top: 10px; }
.sticker--seal::after { bottom: 10px; }

.sticker--tape {
  min-width: 170px;
  min-height: 42px;
  padding: 9px 18px;
  border: 1px solid var(--ink);
  background: var(--vermillion);
  font-family: var(--mono);
  font-size: .62rem;
  letter-spacing: .03em;
  text-transform: uppercase;
  box-shadow: 4px 4px 0 var(--ink);
}

.sticker--chrome {
  width: clamp(104px, 11vw, 165px);
  aspect-ratio: 1;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, .65);
  border-radius: 50%;
  color: var(--ink);
  background:
    radial-gradient(circle at 35% 25%, #fff 0 6%, transparent 7%),
    radial-gradient(circle at 68% 73%, #101010 0 11%, transparent 12%),
    conic-gradient(from 220deg, #111, #fff 12%, #747474 24%, #f8f8f8 36%, #222 52%, #fff 67%, #777 84%, #111);
  font-family: var(--mono);
  font-size: .57rem;
  line-height: 1.1;
  text-transform: uppercase;
  box-shadow: inset 0 0 22px white, 6px 8px 0 var(--ink);
}

.sticker--chrome span {
  padding: 5px;
  background: var(--acid);
  box-shadow: 0 0 0 1px var(--ink);
}

.ticker {
  display: flex;
  overflow: hidden;
  border-block: 1px solid currentColor;
}

.ticker-track {
  display: flex;
  flex: none;
  align-items: center;
  width: max-content;
  animation: ticker 24s linear infinite;
  will-change: transform;
}

.ticker-set {
  display: flex;
  flex: none;
  justify-content: space-around;
  min-width: 100vw;
}

.ticker-set span {
  flex: none;
  display: inline-flex;
  align-items: center;
  gap: 24px;
  padding: 13px 20px;
  font-family: var(--mono);
  font-size: .65rem;
  text-transform: uppercase;
}

.ticker-set span::after {
  content: "✦";
  font-size: .9rem;
}

@keyframes ticker {
  to { transform: translateX(-50%); }
}

.chrome-stage {
  position: absolute;
  z-index: 2;
  overflow: visible;
  pointer-events: none;
}

.chrome-canvas {
  width: 100%;
  height: 100%;
  filter: drop-shadow(24px 34px 24px rgba(0, 0, 0, .18));
}

.chrome-fallback {
  position: absolute;
  inset: 17%;
  display: none;
  border-radius: 50% 45% 55% 44%;
  background: conic-gradient(from 30deg, #151515, #fff, #686868, #fff, #171717, #d8ff38, #fff, #212121);
  box-shadow: inset 14px 10px 22px #fff, inset -22px -18px 34px #151515, 25px 35px 30px rgba(0,0,0,.2);
  transform: rotate(-22deg);
}

.chrome-failed .chrome-fallback {
  display: block;
}

.chrome-failed .chrome-canvas {
  display: none;
}

.site-footer {
  position: relative;
  z-index: 2;
  padding: clamp(64px, 9vw, 130px) var(--gutter) 22px;
  overflow: hidden;
  color: var(--paper);
  background: var(--ink);
}

.footer-top {
  display: grid;
  grid-template-columns: 1.3fr .7fr;
  gap: 48px;
  padding-bottom: clamp(70px, 10vw, 150px);
}

.footer-title {
  max-width: 1050px;
  font-size: clamp(4rem, 10vw, 10.5rem);
}

.footer-side {
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
}

.footer-side .button {
  min-width: min(100%, 290px);
}

.footer-bottom {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: end;
  gap: 24px;
  padding-top: 18px;
  border-top: 1px solid rgba(236, 233, 223, .45);
  font-family: var(--mono);
  font-size: .62rem;
  text-transform: uppercase;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
}

.footer-wordmark {
  font-family: var(--display);
  font-size: clamp(3rem, 6.2vw, 7rem);
  font-weight: 900;
  line-height: .72;
  letter-spacing: -.09em;
  text-transform: uppercase;
}

.footer-clock {
  text-align: right;
}

.toast {
  position: fixed;
  z-index: 150;
  right: var(--gutter);
  bottom: 24px;
  max-width: min(360px, calc(100vw - 36px));
  padding: 14px 17px;
  border: 1px solid var(--paper);
  color: var(--paper);
  background: var(--ink);
  font-family: var(--mono);
  font-size: .65rem;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .3s, transform .3s var(--ease-out);
}

.toast.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* INDEX */
.home-hero {
  position: relative;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  min-height: calc(100svh - var(--header-h));
  padding: clamp(26px, 4vw, 60px) var(--gutter) 24px;
  overflow: hidden;
  border-bottom: 1px solid var(--ink);
}

.home-hero .hero-topline {
  z-index: 5;
  grid-column: 1 / -1;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.hero-coordinates {
  display: flex;
  gap: 30px;
  color: var(--muted);
}

.home-title {
  position: relative;
  z-index: 3;
  grid-column: 1 / -1;
  align-self: center;
  margin: clamp(44px, 8vh, 88px) 0 0;
  font-size: clamp(4.3rem, 11.6vw, 12.7rem);
}

.home-title > span:nth-child(2) {
  padding-left: 8.5vw;
}

.home-title > span:nth-child(3) {
  padding-left: 35vw;
}

.home-title em {
  color: var(--cobalt);
  font-size: .82em;
}

.hero-deck {
  z-index: 5;
  grid-column: 1 / 5;
  align-self: end;
  max-width: 32rem;
  margin: 38px 0 0;
  font-size: clamp(1rem, 1.4vw, 1.35rem);
  line-height: 1.22;
  letter-spacing: -.03em;
}

.hero-actions {
  z-index: 5;
  grid-column: 10 / -1;
  align-self: end;
  display: flex;
  justify-content: flex-end;
  margin-top: 38px;
}

.hero-actions .link-arrow {
  min-width: 210px;
}

.home-hero .chrome-stage {
  top: 16%;
  right: -1%;
  width: min(52vw, 760px);
  height: min(58vw, 790px);
}

.home-hero .sticker--seal {
  top: 63%;
  left: 3%;
}

.home-hero .sticker--tape {
  right: 11%;
  bottom: 12%;
}

.home-intro {
  position: relative;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 18px;
  padding: clamp(80px, 12vw, 180px) var(--gutter);
  overflow: hidden;
}

.home-intro .eyebrow {
  grid-column: 1 / 4;
}

.home-intro-copy {
  grid-column: 4 / 12;
  margin-bottom: 0;
}

.home-intro-copy .editorial-italic {
  color: var(--cobalt);
}

.home-intro .sticker--chrome {
  right: 3%;
  bottom: 6%;
}

.featured {
  padding: 0 var(--gutter) clamp(100px, 12vw, 180px);
}

.section-heading-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 24px;
  padding-top: 16px;
  border-top: 1px solid var(--ink);
}

.section-heading-row h2 {
  margin-bottom: 0;
  font-size: clamp(2rem, 5vw, 5.8rem);
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: clamp(12px, 1.8vw, 28px);
}

.project-card {
  position: relative;
  grid-column: span 7;
}

.project-card:nth-child(2) {
  grid-column: span 5;
  margin-top: 14vw;
}

.project-card:nth-child(3) {
  grid-column: 3 / 11;
  margin-top: clamp(12px, 1.2vw, 24px);
}

.project-art {
  position: relative;
  min-height: clamp(330px, 46vw, 760px);
  overflow: hidden;
  border: 1px solid var(--ink);
  isolation: isolate;
}

.project-card:nth-child(2) .project-art {
  min-height: clamp(370px, 52vw, 700px);
}

.project-card-meta {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 15px;
  align-items: baseline;
  padding: 13px 0 20px;
  border-bottom: 1px solid var(--ink);
}

.project-card-title {
  margin: 0;
  font-size: clamp(1.25rem, 2.2vw, 2rem);
  font-weight: 500;
  letter-spacing: -.05em;
}

.project-card-index,
.project-card-type {
  font-family: var(--mono);
  font-size: .59rem;
  text-transform: uppercase;
}

.project-card-type {
  justify-self: end;
  text-align: right;
}

.project-card:hover .project-art-inner,
.work-item:hover .project-art-inner,
.work-item:focus-within .project-art-inner {
  transform: scale(1.035) rotate(.35deg);
}

.project-art-inner {
  position: absolute;
  inset: 0;
  transition: transform .8s var(--ease-out);
}

.project-art--ardor {
  color: #f6eedc;
  background: #c63722;
}

.project-art--ardor .project-art-inner {
  display: grid;
  place-items: center;
  background:
    linear-gradient(125deg, transparent 42%, rgba(0,0,0,.22) 43% 44%, transparent 45%),
    #c63722;
}

.project-art--ardor .art-oval {
  position: absolute;
  width: 42%;
  aspect-ratio: .72;
  border-radius: 50%;
  background: radial-gradient(circle at 45% 28%, #ffa17a 0, #932414 58%, #240b07 100%);
  box-shadow: 0 34px 80px rgba(48, 8, 0, .5);
  transform: rotate(18deg);
}

.project-art--ardor .art-word {
  z-index: 2;
  font-family: var(--serif);
  font-size: clamp(4rem, 12vw, 11rem);
  font-style: italic;
  letter-spacing: -.08em;
}

.project-art--ardor .art-meta {
  position: absolute;
  right: 4%;
  bottom: 4%;
  width: 110px;
  font-family: var(--mono);
  font-size: .55rem;
  text-transform: uppercase;
}

.project-art--nomae {
  color: var(--paper);
  background: var(--cobalt);
}

.project-art--nomae .project-art-inner {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  align-items: end;
  gap: 3%;
  padding: 9%;
  background-image: linear-gradient(rgba(255,255,255,.18) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.18) 1px, transparent 1px);
  background-size: 14.285% 14.285%;
}

.project-art--nomae .bottle {
  position: relative;
  grid-column: span 2;
  height: 72%;
  border: 1px solid var(--paper);
  border-radius: 48% 48% 8% 8% / 14% 14% 6% 6%;
  background: linear-gradient(90deg, rgba(0,0,0,.3), transparent 30% 70%, rgba(0,0,0,.3)), #efebdf;
  box-shadow: 15px 22px 0 rgba(0, 0, 0, .28);
}

.project-art--nomae .bottle::before {
  position: absolute;
  top: 43%;
  left: 10%;
  width: 80%;
  padding: 10% 0;
  content: "NOMAE";
  color: var(--ink);
  background: var(--acid);
  font-family: var(--display);
  font-size: clamp(.8rem, 2vw, 2rem);
  font-weight: 900;
  text-align: center;
  letter-spacing: -.05em;
}

.project-art--nomae .bottle:nth-child(2) {
  height: 88%;
  background-color: #cbd0ff;
}

.project-art--nomae .bottle:nth-child(3) {
  height: 62%;
  background-color: #f6a986;
}

.project-art--field {
  color: var(--ink);
  background: var(--acid);
}

.project-art--field .project-art-inner {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
}

.project-art--field .field-cell {
  display: flex;
  align-items: flex-end;
  padding: 5%;
  border: 1px solid var(--ink);
}

.project-art--field .field-cell:first-child {
  align-items: flex-start;
  grid-column: span 2;
  font-family: var(--display);
  font-size: clamp(4rem, 12vw, 11rem);
  font-weight: 900;
  line-height: .7;
  letter-spacing: -.09em;
  text-transform: uppercase;
}

.project-art--field .field-cell:nth-child(2) {
  color: var(--paper);
  background: var(--ink);
  font-family: var(--mono);
  font-size: .6rem;
  text-transform: uppercase;
}

.project-art--field .field-cell:nth-child(3) {
  justify-content: flex-end;
  font-family: var(--serif);
  font-size: clamp(2rem, 5vw, 5rem);
  font-style: italic;
  text-align: right;
}

.project-art--common {
  color: #fff;
  background: #181818;
}

.project-art--common .project-art-inner {
  background:
    radial-gradient(circle at 50% 48%, transparent 0 20%, #f8f2e4 20.5% 21.5%, transparent 22% 32%, rgba(216,255,56,.9) 32.5% 34%, transparent 34.5%),
    repeating-radial-gradient(circle at 50% 48%, #232323 0 12px, #151515 13px 24px);
}

.project-art--common .art-word {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  font-family: var(--display);
  font-size: clamp(3rem, 8vw, 8rem);
  font-weight: 900;
  line-height: .72;
  letter-spacing: -.08em;
  text-align: center;
  text-transform: uppercase;
  transform: translate(-50%, -50%);
}

.project-art--common .art-word em {
  display: block;
  color: var(--acid);
  font-family: var(--serif);
  font-weight: 400;
  text-transform: none;
}

.project-art--serein {
  color: #1b1614;
  background: #c7a88b;
}

.project-art--serein .project-art-inner {
  display: grid;
  place-items: center;
  background: linear-gradient(120deg, #e3c8ab 0 33%, #86634e 33% 34%, #c7a88b 34% 66%, #624638 66% 67%, #b88f70 67%);
}

.project-art--serein .art-frame {
  display: grid;
  place-items: center;
  width: 62%;
  height: 72%;
  border: 12px solid #30221b;
  background: #e9dfd1;
  box-shadow: 20px 25px 0 rgba(0,0,0,.22);
}

.project-art--serein .art-frame::after {
  content: "SEREIN";
  font-family: var(--serif);
  font-size: clamp(2.2rem, 6vw, 6rem);
  font-style: italic;
  letter-spacing: -.07em;
}

.project-art--phase {
  color: #fff;
  background: #1f124c;
}

.project-art--phase .project-art-inner {
  display: grid;
  place-items: center;
  background:
    conic-gradient(from 0deg at 50% 50%, #774dff, #ff533d, #d8ff38, #3157ff, #774dff);
}

.project-art--phase .phase-orb {
  width: 48%;
  aspect-ratio: 1;
  border: 2px solid white;
  border-radius: 50%;
  background: repeating-linear-gradient(0deg, rgba(0,0,0,.7) 0 3px, transparent 3px 8px);
  box-shadow: 0 0 0 20px rgba(255,255,255,.12), 0 0 70px rgba(255,255,255,.4);
}

.project-art--phase .art-word {
  position: absolute;
  font-family: var(--display);
  font-size: clamp(4rem, 11vw, 10rem);
  font-weight: 900;
  letter-spacing: -.1em;
  text-transform: uppercase;
  mix-blend-mode: difference;
}

/* Current Source work */
.project-art--strata {
  color: #141414;
  background: #d8d4c8;
}

.project-art--strata .project-art-inner {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: clamp(8px, 1.5vw, 24px);
  padding: 9% 10% 0;
  background:
    linear-gradient(rgba(20, 20, 20, .15) 1px, transparent 1px),
    linear-gradient(90deg, rgba(20, 20, 20, .15) 1px, transparent 1px),
    radial-gradient(circle at 72% 18%, #f8f5eb 0 9%, transparent 9.5%),
    #d8d4c8;
  background-size: 100% 9%, 10% 100%, auto, auto;
}

.project-art--strata .project-art-inner::after {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background: linear-gradient(112deg, transparent 0 43%, rgba(255, 255, 255, .75) 43.3% 45%, transparent 45.3% 100%);
  mix-blend-mode: screen;
}

.strata-tower {
  position: relative;
  width: 24%;
  height: 62%;
  border: 1px solid #171717;
  background:
    repeating-linear-gradient(0deg, rgba(20,20,20,.85) 0 1px, transparent 1px 9%),
    repeating-linear-gradient(90deg, rgba(20,20,20,.4) 0 1px, transparent 1px 20%),
    linear-gradient(110deg, #f0eee8, #817f79 48%, #e3e0d8 51%, #686762);
  box-shadow: 12px 0 0 rgba(10, 10, 10, .12);
  clip-path: polygon(8% 7%, 92% 0, 100% 100%, 0 100%);
}

.strata-tower:nth-child(1) {
  height: 47%;
  transform: translateY(4%) rotate(-2deg);
}

.strata-tower:nth-child(2) {
  height: 80%;
  z-index: 1;
}

.strata-tower:nth-child(3) {
  height: 56%;
  transform: translateY(2%) rotate(2deg);
}

.project-art--strata .art-word {
  position: absolute;
  z-index: 3;
  right: 3%;
  bottom: 3%;
  font-family: var(--display);
  font-size: clamp(4.4rem, 13vw, 13rem);
  font-weight: 900;
  line-height: .68;
  letter-spacing: -.095em;
  text-transform: uppercase;
  mix-blend-mode: multiply;
}

.project-art--strata .art-meta {
  position: absolute;
  z-index: 4;
  top: 4%;
  left: 4%;
  width: 20ch;
  font-family: var(--mono);
  font-size: clamp(.5rem, .65vw, .65rem);
  line-height: 1.2;
  text-transform: uppercase;
}

.project-art--github {
  color: #f7f7f7;
  background: #08090d;
}

.project-art--github .project-art-inner {
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 80% 16%, rgba(216, 255, 56, .28), transparent 16%),
    radial-gradient(circle at 24% 76%, rgba(113, 73, 255, .7), transparent 32%),
    linear-gradient(135deg, #050509, #161029 54%, #050509);
}

.project-art--github .project-art-inner::before {
  position: absolute;
  inset: 4%;
  content: "";
  border: 1px solid rgba(255, 255, 255, .35);
  border-radius: 24px;
  background-image:
    linear-gradient(rgba(255,255,255,.09) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.09) 1px, transparent 1px);
  background-size: 8% 8%;
}

.github-orbit {
  position: absolute;
  width: 56%;
  aspect-ratio: 1;
  border: clamp(18px, 4vw, 58px) solid #754dff;
  border-radius: 50%;
  box-shadow:
    0 0 0 1px rgba(255,255,255,.7),
    0 0 70px rgba(117, 77, 255, .7),
    inset 0 0 42px rgba(216, 255, 56, .28);
  transform: rotateX(63deg) rotateZ(-17deg);
}

.github-orbit::before,
.github-orbit::after {
  position: absolute;
  width: 12%;
  aspect-ratio: 1;
  content: "";
  border-radius: 50%;
  background: var(--acid);
  box-shadow: 0 0 24px rgba(216, 255, 56, .8);
}

.github-orbit::before { top: 8%; left: 9%; }
.github-orbit::after { right: 5%; bottom: 10%; }

.github-code {
  position: absolute;
  z-index: 3;
  right: 5%;
  bottom: 7%;
  display: grid;
  gap: 18px;
  width: min(48%, 390px);
  padding: clamp(14px, 2vw, 28px);
  border: 1px solid rgba(255,255,255,.6);
  border-radius: 12px;
  background: rgba(8, 9, 13, .88);
  box-shadow: 12px 15px 0 rgba(216,255,56,.88);
  font-family: var(--mono);
  font-size: clamp(.58rem, .8vw, .82rem);
  line-height: 1.25;
}

.github-code span {
  padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,.28);
  color: var(--acid);
}

.project-art--github .art-word {
  position: absolute;
  z-index: 2;
  top: 6%;
  left: 3%;
  font-family: var(--display);
  font-size: clamp(4.4rem, 12vw, 12rem);
  font-weight: 900;
  line-height: .72;
  letter-spacing: -.09em;
  text-transform: uppercase;
}

.project-art--invar {
  color: #f0ede3;
  background: #151515;
}

.project-art--invar .project-art-inner {
  display: grid;
  place-items: center;
  background:
    linear-gradient(rgba(240,237,227,.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(240,237,227,.12) 1px, transparent 1px),
    #151515;
  background-size: 7.5% 7.5%;
}

.invar-field {
  width: 62%;
  aspect-ratio: 1;
  border: 1px solid rgba(240,237,227,.8);
  border-radius: 46% 54% 58% 42% / 40% 39% 61% 60%;
  background:
    repeating-radial-gradient(circle at 53% 46%, transparent 0 8px, rgba(240,237,227,.82) 9px 10px, transparent 11px 19px),
    conic-gradient(from 40deg, var(--vermillion), #181818, var(--acid), #181818, var(--violet), #181818, var(--vermillion));
  box-shadow: 0 0 0 24px rgba(240,237,227,.07), 0 0 80px rgba(255,83,61,.25);
  transform: rotate(-13deg);
}

.project-art--invar .art-word {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  font-family: var(--display);
  font-size: clamp(5rem, 14vw, 14rem);
  font-weight: 900;
  line-height: .7;
  letter-spacing: -.1em;
  text-transform: uppercase;
  transform: translate(-50%, -50%);
  mix-blend-mode: difference;
}

.project-art--invar .art-meta {
  position: absolute;
  z-index: 3;
  right: 4%;
  bottom: 4%;
  width: 24ch;
  padding: 10px;
  color: var(--ink);
  background: var(--acid);
  font-family: var(--mono);
  font-size: clamp(.5rem, .65vw, .65rem);
  line-height: 1.2;
  text-transform: uppercase;
}

.project-art--outer {
  color: #ffefdd;
  background: #ed4a25;
}

.project-art--outer .project-art-inner {
  display: grid;
  place-items: center;
  background:
    repeating-linear-gradient(118deg, transparent 0 9%, rgba(255,239,221,.18) 9.2% 9.5%, transparent 9.7% 18%),
    radial-gradient(circle at 50% 47%, #171717 0 18%, transparent 18.5%),
    #ed4a25;
}

.project-art--outer .project-art-inner::before,
.project-art--outer .project-art-inner::after {
  position: absolute;
  width: 48%;
  aspect-ratio: 1;
  content: "";
  border: 2px solid currentColor;
  border-radius: 50%;
  mix-blend-mode: screen;
}

.project-art--outer .project-art-inner::before {
  top: -12%;
  left: -10%;
  box-shadow: 0 0 0 18px rgba(255,239,221,.13), 0 0 0 42px rgba(255,239,221,.08);
}

.project-art--outer .project-art-inner::after {
  right: -9%;
  bottom: -16%;
  box-shadow: 0 0 0 18px rgba(255,239,221,.13), 0 0 0 42px rgba(255,239,221,.08);
}

.project-art--outer .art-word {
  position: relative;
  z-index: 2;
  max-width: 80%;
  font-family: var(--display);
  font-size: clamp(4rem, 12vw, 12rem);
  font-weight: 900;
  line-height: .68;
  letter-spacing: -.095em;
  text-align: center;
  text-transform: uppercase;
}

.project-art--outer .art-meta {
  position: absolute;
  z-index: 3;
  right: 4%;
  bottom: 4%;
  width: 20ch;
  font-family: var(--mono);
  font-size: clamp(.5rem, .65vw, .65rem);
  line-height: 1.2;
  text-transform: uppercase;
}

.capability-strip {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 18px;
  padding: clamp(80px, 10vw, 150px) var(--gutter);
  color: var(--paper);
  background: var(--cobalt);
}

.capability-strip .eyebrow {
  grid-column: 1 / 4;
}

.capability-list {
  grid-column: 4 / -1;
}

.capability-row {
  display: grid;
  grid-template-columns: 55px 1fr auto;
  align-items: center;
  padding: clamp(14px, 2.1vw, 27px) 0;
  border-top: 1px solid currentColor;
}

.capability-row:last-child {
  border-bottom: 1px solid currentColor;
}

.capability-row span:nth-child(2) {
  font-size: clamp(1.8rem, 4.8vw, 5.5rem);
  line-height: .88;
  letter-spacing: -.065em;
}

.capability-row em {
  font-family: var(--serif);
  font-size: clamp(1rem, 1.5vw, 1.45rem);
}

.home-statement {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 86svh;
  padding: 90px var(--gutter);
  overflow: hidden;
  text-align: center;
}

.home-statement blockquote {
  max-width: 1200px;
  margin: 0;
  font-size: clamp(3.1rem, 8vw, 9rem);
  font-weight: 500;
  line-height: .83;
  letter-spacing: -.075em;
}

.home-statement blockquote em {
  color: var(--vermillion);
  font-family: var(--serif);
  font-weight: 400;
}

.home-statement .sticker {
  top: 13%;
  right: 7%;
}

/* Shared interior page hero */
.page-hero {
  position: relative;
  min-height: min(760px, calc(100svh - var(--header-h)));
  padding: clamp(36px, 5vw, 72px) var(--gutter) 24px;
  overflow: hidden;
  border-bottom: 1px solid var(--ink);
}

.page-hero-top {
  display: flex;
  justify-content: space-between;
  gap: 28px;
}

.page-hero h1 {
  position: relative;
  z-index: 3;
  max-width: 1450px;
  margin-top: clamp(80px, 13vh, 155px);
  font-size: clamp(5rem, 14.5vw, 15rem);
}

.page-hero h1 .small-serif {
  display: inline-block;
  font-family: var(--serif);
  font-size: .36em;
  font-weight: 400;
  letter-spacing: -.05em;
  text-transform: none;
  transform: translateY(-.55em) rotate(-5deg);
}

.page-hero-deck {
  position: absolute;
  z-index: 4;
  right: var(--gutter);
  bottom: 28px;
  width: min(370px, 31vw);
  margin: 0;
  font-size: clamp(1rem, 1.35vw, 1.3rem);
  line-height: 1.25;
  letter-spacing: -.03em;
}

.page-hero .chrome-stage {
  top: 5%;
  right: 8%;
  width: min(42vw, 570px);
  height: min(42vw, 570px);
  opacity: .96;
}

.page-hero--dark {
  color: var(--paper);
  background: var(--ink);
}

.page-hero--dark + * {
  border-color: var(--paper);
}

/* WORK */
.work-index {
  padding: 0 var(--gutter) clamp(100px, 12vw, 180px);
  color: var(--paper);
  background: var(--ink);
}

.work-toolbar {
  position: sticky;
  z-index: 20;
  top: 0;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 20px;
  min-height: 74px;
  border-bottom: 1px solid rgba(236, 233, 223, .5);
  background: color-mix(in srgb, var(--ink) 92%, transparent);
  backdrop-filter: blur(12px);
}

.filter-group,
.view-group {
  display: flex;
  align-items: center;
  gap: 8px;
}

.filter-button,
.view-button {
  padding: 8px 11px;
  border: 1px solid rgba(236, 233, 223, .38);
  color: var(--paper);
  background: transparent;
  font-family: var(--mono);
  font-size: .58rem;
  text-transform: uppercase;
  transition: color .25s, background .25s;
}

.filter-button:hover,
.filter-button.is-active,
.view-button:hover,
.view-button.is-active {
  color: var(--ink);
  background: var(--acid);
}

.work-list {
  padding-top: 26px;
}

.work-item {
  position: relative;
  display: grid;
  grid-template-columns: 58px 1.2fr .6fr .4fr 34px;
  gap: 20px;
  align-items: center;
  min-height: clamp(120px, 14vw, 210px);
  border-bottom: 1px solid rgba(236, 233, 223, .48);
  transition: color .35s, background .35s, padding .35s var(--ease-out), opacity .35s;
}

.work-item:first-child {
  border-top: 1px solid rgba(236, 233, 223, .48);
}

.work-item:hover,
.work-item:focus-within {
  z-index: 2;
  padding-inline: 18px;
  color: var(--ink);
  background: var(--acid);
}

.work-item.is-hidden {
  display: none;
}

.work-index-no {
  font-family: var(--mono);
  font-size: .65rem;
}

.work-name {
  margin: 0;
  font-size: clamp(2.3rem, 6.5vw, 7.4rem);
  font-weight: 500;
  line-height: .82;
  letter-spacing: -.075em;
}

.work-sector,
.work-scope,
.work-year {
  font-family: var(--mono);
  font-size: .61rem;
  line-height: 1.25;
  text-transform: uppercase;
}

.work-year {
  text-align: right;
}

.project-open {
  position: absolute;
  z-index: 4;
  inset: 0;
  width: 100%;
  background: transparent;
  cursor: pointer;
}

.work-preview {
  position: fixed;
  z-index: 40;
  top: 0;
  left: 0;
  width: min(30vw, 430px);
  aspect-ratio: 4 / 5;
  overflow: hidden;
  pointer-events: none;
  opacity: 0;
  border: 1px solid var(--paper);
  transform: translate3d(-50%, -50%, 0) scale(.84) rotate(-3deg);
  transition: opacity .2s, transform .4s var(--ease-out);
}

.work-preview.is-visible {
  opacity: 1;
  transform: translate3d(-50%, -50%, 0) scale(1) rotate(-1deg);
}

.work-preview .project-art {
  width: 100%;
  height: 100%;
  min-height: 0;
  border: 0;
}

.work-grid-art {
  display: none;
}

.work-list.is-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(32px, 4vw, 68px) clamp(14px, 2vw, 30px);
}

.work-list.is-grid .work-item {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr) auto;
  grid-template-rows: auto auto auto;
  gap: 9px 14px;
  min-height: 0;
  padding: 0 0 20px;
  color: var(--paper);
  background: transparent;
}

.work-list.is-grid .work-item::before {
  display: none;
  content: none;
}

.work-list.is-grid .work-grid-art {
  position: relative;
  grid-column: 1 / -1;
  grid-row: 1;
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border: 1px solid rgba(236,233,223,.5);
  background: var(--preview-color, var(--cobalt));
  isolation: isolate;
}

.work-list.is-grid .work-grid-art .project-art {
  width: 100%;
  height: 100%;
  min-height: 0;
  border: 0;
}

.work-list.is-grid .work-index-no {
  grid-column: 1;
  grid-row: 2;
}

.work-list.is-grid .work-name {
  grid-column: 2;
  grid-row: 2;
  min-width: 0;
  font-size: clamp(2rem, 3.8vw, 4rem);
  overflow-wrap: anywhere;
}

.work-list.is-grid .work-sector {
  grid-column: 2;
  grid-row: 3;
}

.work-list.is-grid .work-scope {
  display: none;
}

.work-list.is-grid .work-year {
  grid-column: 3;
  grid-row: 2;
}

.work-list.is-grid + .work-preview {
  display: none;
}

.project-dialog {
  width: min(1540px, calc(100vw - 24px));
  max-width: none;
  height: calc(100dvh - 24px);
  max-height: none;
  margin: auto;
  padding: 0;
  overflow: hidden;
  border: 1px solid var(--ink);
  color: var(--ink);
  background: var(--paper);
  box-shadow: 11px 12px 0 var(--cobalt);
}

.project-dialog::backdrop {
  background: rgba(0,0,0,.82);
  backdrop-filter: blur(10px);
}

.project-dialog[open] {
  animation: viewer-enter .58s var(--ease-out) both;
}

@keyframes viewer-enter {
  from { opacity: 0; transform: translateY(24px) scale(.975); }
  to { opacity: 1; transform: none; }
}

.project-viewer {
  display: grid;
  grid-template-rows: 54px minmax(0, 1fr);
  height: 100%;
  min-height: 0;
}

.viewer-bar {
  position: relative;
  z-index: 6;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto 54px;
  align-items: center;
  min-width: 0;
  border-bottom: 1px solid var(--ink);
  background: var(--paper);
  font-family: var(--mono);
  font-size: .58rem;
  text-transform: uppercase;
}

.viewer-dots {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0 18px;
}

.viewer-dots span {
  width: 9px;
  aspect-ratio: 1;
  border: 1px solid var(--ink);
  border-radius: 50%;
  background: var(--vermillion);
}

.viewer-dots span:nth-child(2) { background: var(--acid); }
.viewer-dots span:nth-child(3) { background: var(--cobalt); }

.viewer-address {
  display: flex;
  align-items: center;
  gap: 9px;
  min-width: 0;
  padding: 0 16px;
  border-left: 1px solid var(--line);
}

.viewer-address code {
  min-width: 0;
  margin-left: auto;
  color: var(--muted);
  font-family: var(--mono);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  text-transform: none;
}

.viewer-live-dot {
  flex: none;
  width: 7px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: #1fbd56;
  box-shadow: 0 0 0 3px rgba(31,189,86,.15);
  animation: viewer-live 1.8s ease-in-out infinite;
}

@keyframes viewer-live {
  50% { opacity: .45; }
}

.viewer-open {
  display: grid;
  place-items: center;
  align-self: stretch;
  padding: 0 18px;
  border-left: 1px solid var(--ink);
  transition: color .22s, background .22s;
}

.viewer-open:hover {
  color: var(--paper);
  background: var(--cobalt);
}

.dialog-close {
  position: static;
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  margin: 0;
  border-left: 1px solid var(--ink);
  color: var(--paper);
  background: var(--ink);
  font-size: 1.4rem;
  line-height: 1;
  transition: color .22s, background .22s, transform .22s var(--ease-out);
}

.dialog-close:hover {
  color: var(--ink);
  background: var(--acid);
  transform: rotate(90deg);
}

.viewer-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) clamp(340px, 27vw, 430px);
  min-width: 0;
  min-height: 0;
}

.viewer-frame-wrap {
  position: relative;
  min-width: 0;
  min-height: 0;
  overflow: hidden;
  border-right: 1px solid var(--ink);
  background: #0b0b0b;
}

.viewer-frame {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 0;
  border: 0;
  background: #fff;
}

.viewer-loading {
  position: absolute;
  z-index: 3;
  inset: 0;
  display: grid;
  place-content: center;
  gap: 18px;
  color: var(--paper);
  background: var(--ink);
  font-family: var(--mono);
  font-size: .62rem;
  text-align: center;
  text-transform: uppercase;
  transition: opacity .4s, visibility .4s;
}

.viewer-loading i {
  width: min(240px, 48vw);
  height: 2px;
  overflow: hidden;
  background: rgba(236,233,223,.25);
}

.viewer-loading i::after {
  display: block;
  width: 45%;
  height: 100%;
  content: "";
  background: var(--acid);
  animation: viewer-load 1s ease-in-out infinite alternate;
}

@keyframes viewer-load {
  from { transform: translateX(-10%); }
  to { transform: translateX(135%); }
}

.viewer-frame-wrap.is-loaded .viewer-loading,
.viewer-frame-wrap:has(.viewer-frame.is-loaded) .viewer-loading {
  visibility: hidden;
  opacity: 0;
}

.viewer-info {
  display: flex;
  flex-direction: column;
  min-width: 0;
  min-height: 0;
  padding: clamp(22px, 2.5vw, 38px) clamp(20px, 2.2vw, 34px) 24px;
  overflow: hidden;
}

.viewer-info .eyebrow {
  margin: 0 0 clamp(22px, 3vh, 34px);
  padding: 0;
}

.dialog-title {
  margin: 0 0 16px;
  font-size: clamp(3.2rem, 4.1vw, 5.8rem);
  overflow-wrap: anywhere;
}

.dialog-blurb {
  margin: 0 0 20px;
  font-size: clamp(.96rem, 1.15vw, 1.16rem);
  line-height: 1.25;
  letter-spacing: -.03em;
}

.dialog-facts {
  display: grid;
  align-content: start;
  margin: 0 0 18px;
}

.dialog-facts div {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 12px;
  padding: 9px 0;
  border-top: 1px solid var(--ink);
}

.dialog-facts dt,
.dialog-facts dd {
  margin: 0;
  font-family: var(--mono);
  font-size: .62rem;
  text-transform: uppercase;
}

.dialog-facts dd {
  text-align: right;
}

.viewer-disclaimer {
  margin: 0 0 18px;
  padding: 10px;
  border: 1px solid var(--line);
  color: var(--muted);
  line-height: 1.35;
}

.viewer-info .link-arrow {
  margin-top: 0;
}

@media (min-width: 901px) and (max-height: 760px) {
  .viewer-info {
    padding: 17px 24px 16px;
  }

  .viewer-info .eyebrow {
    display: none;
  }

  .dialog-title {
    margin-bottom: 10px;
    font-size: clamp(2.65rem, 3.6vw, 4.7rem);
  }

  .dialog-blurb {
    margin-bottom: 12px;
    font-size: .9rem;
    line-height: 1.2;
  }

  .dialog-facts {
    margin-bottom: 10px;
  }

  .dialog-facts div {
    padding: 6px 0;
  }

  .dialog-facts dt,
  .dialog-facts dd,
  .viewer-disclaimer {
    font-size: .54rem;
  }

  .viewer-disclaimer {
    margin-bottom: 11px;
    padding: 7px;
    line-height: 1.25;
  }
}

/* SERVICES */
.services-intro {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 20px;
  padding: clamp(90px, 12vw, 180px) var(--gutter);
}

.services-intro .eyebrow {
  grid-column: 1 / 4;
}

.services-intro .body-large {
  grid-column: 4 / -1;
  margin-bottom: 0;
}

.service-list {
  border-top: 1px solid var(--ink);
}

.service-chapter {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  min-height: 78svh;
  border-bottom: 1px solid var(--ink);
}

.service-chapter:nth-child(2) {
  color: var(--paper);
  background: var(--cobalt);
}

.service-chapter:nth-child(3) {
  background: var(--acid);
}

.service-main,
.service-aside {
  padding: clamp(28px, 4vw, 65px) var(--gutter);
}

.service-main {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-right: 1px solid currentColor;
}

.service-number {
  font-family: var(--mono);
  font-size: .67rem;
}

.service-name {
  margin: 40px 0;
  font-size: clamp(5.2rem, 13vw, 14rem);
}

.service-for {
  max-width: 22ch;
  font-family: var(--serif);
  font-size: clamp(1.4rem, 2.5vw, 2.6rem);
  font-style: italic;
  line-height: 1.04;
}

.service-aside {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.service-description {
  max-width: 30rem;
  font-size: clamp(1.2rem, 2vw, 1.9rem);
  line-height: 1.18;
  letter-spacing: -.04em;
}

.deliverables {
  margin: 50px 0;
  padding: 0;
  list-style: none;
}

.deliverables li {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 12px;
  padding: 11px 0;
  border-top: 1px solid currentColor;
  font-family: var(--mono);
  font-size: .64rem;
  text-transform: uppercase;
}

.deliverables li:last-child {
  border-bottom: 1px solid currentColor;
}

.service-meta {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  font-family: var(--mono);
  font-size: .62rem;
  text-transform: uppercase;
}

.process-section {
  display: grid;
  grid-template-columns: .65fr 1.35fr;
  gap: clamp(40px, 8vw, 140px);
  padding: clamp(90px, 12vw, 180px) var(--gutter);
}

.process-copy {
  position: sticky;
  top: 30px;
  align-self: start;
}

.process-copy h2 {
  margin: 25px 0 30px;
  font-size: clamp(3.8rem, 8vw, 8.5rem);
}

.process-step {
  border-top: 1px solid var(--ink);
}

.process-step:last-child {
  border-bottom: 1px solid var(--ink);
}

.process-step summary {
  display: grid;
  grid-template-columns: 50px 1fr auto;
  align-items: center;
  padding: clamp(18px, 2.3vw, 31px) 0;
  list-style: none;
}

.process-step summary::-webkit-details-marker {
  display: none;
}

.process-step h3 {
  margin: 0;
  font-size: clamp(1.9rem, 4.4vw, 4.7rem);
  font-weight: 500;
  line-height: .9;
  letter-spacing: -.065em;
}

.process-icon {
  width: 28px;
  height: 28px;
  border: 1px solid var(--ink);
  border-radius: 50%;
  font-size: 1.1rem;
  line-height: 26px;
  text-align: center;
  transition: transform .3s;
}

.process-step[open] .process-icon {
  transform: rotate(45deg);
}

.process-step p {
  max-width: 36rem;
  margin: 0 0 30px 50px;
  font-size: clamp(1rem, 1.4vw, 1.3rem);
  line-height: 1.4;
}

.service-cta {
  position: relative;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  align-items: center;
  min-height: 80svh;
  padding: 80px var(--gutter);
  overflow: hidden;
  color: var(--paper);
  background: var(--ink);
}

.service-cta h2 {
  z-index: 2;
  grid-column: 1 / 11;
  font-size: clamp(4.5rem, 12vw, 13rem);
}

.service-cta .chrome-stage {
  right: -4%;
  bottom: -10%;
  width: min(52vw, 700px);
  height: min(52vw, 700px);
}

.service-cta .button {
  z-index: 3;
  grid-column: 10 / -1;
  justify-self: end;
}

/* STUDIO */
.studio-manifesto {
  position: relative;
  padding: clamp(100px, 14vw, 210px) var(--gutter);
  overflow: hidden;
}

.manifesto-line {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 24px;
  padding: clamp(12px, 2vw, 26px) 0;
  border-top: 1px solid var(--ink);
  font-size: clamp(3rem, 9.7vw, 10.5rem);
  line-height: .78;
  letter-spacing: -.08em;
  text-transform: uppercase;
}

.manifesto-line:last-of-type {
  border-bottom: 1px solid var(--ink);
}

.manifesto-line span:last-child {
  font-family: var(--serif);
  font-size: .65em;
  font-style: italic;
  text-transform: none;
}

.studio-manifesto .sticker {
  top: 17%;
  right: 8%;
}

.studio-principles {
  display: grid;
  grid-template-columns: .6fr 1.4fr;
  gap: clamp(50px, 8vw, 140px);
  padding: clamp(80px, 10vw, 150px) var(--gutter);
  color: var(--paper);
  background: var(--vermillion);
}

.principles-list {
  counter-reset: principles;
}

.principle {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 18px;
  padding: clamp(25px, 3vw, 44px) 0;
  border-top: 1px solid currentColor;
  counter-increment: principles;
}

.principle:last-child {
  border-bottom: 1px solid currentColor;
}

.principle::before {
  content: "0" counter(principles);
  font-family: var(--mono);
  font-size: .65rem;
}

.principle h3 {
  margin: 0 0 14px;
  font-size: clamp(2.2rem, 5vw, 5.5rem);
  font-weight: 500;
  line-height: .88;
  letter-spacing: -.07em;
}

.principle p {
  max-width: 39rem;
  margin: 0;
  font-size: clamp(1rem, 1.25vw, 1.2rem);
  line-height: 1.4;
}

.studio-model {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 20px;
  padding: clamp(90px, 12vw, 180px) var(--gutter);
}

.studio-model-head {
  grid-column: 1 / 5;
}

.studio-model-head h2 {
  margin: 25px 0 35px;
  font-size: clamp(4rem, 8vw, 8rem);
}

.model-copy {
  grid-column: 6 / -1;
}

.model-copy > p {
  max-width: 23ch;
  margin-bottom: clamp(60px, 8vw, 110px);
}

.model-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--ink);
  border-left: 1px solid var(--ink);
}

.model-card {
  min-height: 240px;
  padding: 20px;
  border-right: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}

.model-card:nth-child(2) {
  background: var(--acid);
}

.model-card:nth-child(3) {
  color: var(--paper);
  background: var(--cobalt);
}

.model-card h3 {
  margin: 45px 0 15px;
  font-size: clamp(1.5rem, 3vw, 3rem);
  font-weight: 500;
  letter-spacing: -.05em;
}

.model-card p {
  max-width: 30ch;
  margin: 0;
  font-size: .9rem;
  line-height: 1.35;
}

.studio-numbers {
  padding: 30px var(--gutter) clamp(100px, 14vw, 200px);
}

.number-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--ink);
  border-left: 1px solid var(--ink);
}

.number-cell {
  min-height: 310px;
  padding: 22px;
  border-right: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}

.number-cell strong {
  display: block;
  margin: 48px 0 20px;
  font-family: var(--display);
  font-size: clamp(5rem, 10vw, 11rem);
  line-height: .72;
  letter-spacing: -.1em;
}

.number-cell p {
  max-width: 25ch;
  margin: 0;
  font-size: .9rem;
  line-height: 1.35;
}

.studio-quote {
  display: grid;
  place-items: center;
  min-height: 76svh;
  padding: 80px var(--gutter);
  color: var(--paper);
  background: var(--cobalt);
  text-align: center;
}

.studio-quote blockquote {
  max-width: 1100px;
  margin: 0;
  font-size: clamp(3rem, 8vw, 8.5rem);
  line-height: .86;
  letter-spacing: -.075em;
}

.studio-quote blockquote em {
  color: var(--acid);
  font-family: var(--serif);
  font-weight: 400;
}

/* LAB */
.lab-hero {
  color: var(--paper);
  background: var(--ink);
}

.lab-hero h1 {
  color: var(--acid);
}

.lab-hero .sticker--tape {
  z-index: 5;
  top: 24%;
  left: 8%;
}

.lab-board-section {
  padding: clamp(70px, 9vw, 130px) var(--gutter);
  color: var(--paper);
  background: var(--ink);
}

.lab-section-head {
  display: grid;
  grid-template-columns: 1fr .55fr;
  gap: 30px;
  margin-bottom: 45px;
}

.lab-section-head h2 {
  font-size: clamp(3.8rem, 9vw, 9.5rem);
}

.lab-section-head p {
  align-self: end;
  max-width: 36ch;
  line-height: 1.35;
}

.sticker-board {
  position: relative;
  min-height: min(72svh, 760px);
  overflow: hidden;
  border: 1px solid rgba(236,233,223,.55);
  background:
    linear-gradient(rgba(236,233,223,.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(236,233,223,.12) 1px, transparent 1px),
    #141414;
  background-size: 48px 48px;
}

.sticker-board::before {
  position: absolute;
  top: 15px;
  left: 15px;
  content: "PLAYGROUND / DRAG THE OBJECTS";
  font-family: var(--mono);
  font-size: .58rem;
  text-transform: uppercase;
}

.board-shape {
  position: absolute;
  display: grid;
  place-items: center;
  user-select: none;
  transform: translate3d(var(--drag-x), var(--drag-y), 0) rotate(var(--rotate));
  touch-action: none;
  cursor: grab;
}

.board-shape.is-dragging {
  z-index: 30;
  cursor: grabbing;
}

.board-disc {
  --rotate: 8deg;
  top: 12%;
  left: 12%;
  width: clamp(150px, 23vw, 340px);
  aspect-ratio: 1;
  border-radius: 50%;
  color: var(--ink);
  background: var(--acid);
  font-family: var(--display);
  font-size: clamp(2.4rem, 6vw, 6rem);
  font-weight: 900;
  letter-spacing: -.08em;
  box-shadow: 13px 15px 0 var(--cobalt);
}

.board-ticket {
  --rotate: -11deg;
  top: 18%;
  right: 13%;
  width: clamp(180px, 25vw, 360px);
  min-height: 190px;
  padding: 24px;
  border: 2px dashed var(--ink);
  color: var(--ink);
  background: var(--paper);
  font-family: var(--mono);
  font-size: .7rem;
  line-height: 1.7;
  text-transform: uppercase;
  box-shadow: 10px 12px 0 var(--vermillion);
}

.board-star {
  --rotate: 9deg;
  bottom: 7%;
  left: 43%;
  width: clamp(160px, 21vw, 310px);
  aspect-ratio: 1;
  color: var(--ink);
  background: linear-gradient(135deg, white, #555 30%, white 48%, #111 64%, white);
  clip-path: polygon(50% 0, 60% 38%, 100% 50%, 60% 61%, 50% 100%, 40% 61%, 0 50%, 40% 38%);
  font-family: var(--mono);
  font-size: .62rem;
  text-align: center;
  text-transform: uppercase;
  filter: drop-shadow(14px 18px 0 var(--violet));
}

.type-lab {
  padding: clamp(90px, 12vw, 180px) var(--gutter);
  overflow: hidden;
  background: var(--violet);
}

.type-controls {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 30px;
  align-items: end;
  padding: 18px 0 25px;
  border-top: 1px solid var(--ink);
}

.type-slider-wrap {
  display: grid;
  grid-template-columns: auto minmax(150px, 450px) auto;
  align-items: center;
  gap: 15px;
}

.type-slider {
  width: 100%;
  accent-color: var(--acid);
}

.type-specimen {
  min-height: 42vw;
  padding: clamp(25px, 5vw, 75px) 0;
  border-block: 1px solid var(--ink);
  font-family: var(--display);
  font-size: var(--type-size, 13vw);
  font-weight: 900;
  line-height: .84;
  letter-spacing: -.1em;
  text-transform: uppercase;
  overflow-wrap: anywhere;
}

.type-specimen:focus {
  outline: 0;
}

.type-caption {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 13px;
  font-family: var(--mono);
  font-size: .6rem;
  text-transform: uppercase;
}

.type-collider {
  padding: clamp(90px, 12vw, 180px) var(--gutter);
  overflow: hidden;
  color: var(--ink);
  background: var(--acid);
}

.collider-interface {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  min-height: clamp(620px, 65vw, 880px);
  border: 1px solid var(--ink);
  background: var(--paper);
  box-shadow: clamp(8px, 1.4vw, 20px) clamp(8px, 1.4vw, 20px) 0 var(--ink);
}

.collider-stage {
  position: relative;
  min-width: 0;
  min-height: 600px;
  overflow: hidden;
  border-right: 1px solid var(--ink);
  background:
    linear-gradient(rgba(10,10,10,.15) 1px, transparent 1px),
    linear-gradient(90deg, rgba(10,10,10,.15) 1px, transparent 1px),
    radial-gradient(circle at 68% 24%, rgba(255,255,255,.95) 0 4%, transparent 4.2%),
    var(--acid);
  background-size: 8.333% 8.333%, 8.333% 8.333%, auto, auto;
  isolation: isolate;
  touch-action: pan-y;
}

.collider-stage::before {
  position: absolute;
  z-index: 0;
  top: 18px;
  left: 18px;
  content: "SOURCE / COLLIDER 003";
  font-family: var(--mono);
  font-size: .57rem;
  letter-spacing: .02em;
  text-transform: uppercase;
}

.collider-stage::after {
  position: absolute;
  z-index: 0;
  right: -11%;
  bottom: -20%;
  width: min(42vw, 560px);
  aspect-ratio: 1;
  content: "";
  border: clamp(28px, 5vw, 72px) solid var(--cobalt);
  border-radius: 50%;
  opacity: .92;
  mix-blend-mode: multiply;
  pointer-events: none;
}

.collider-glyph {
  --glyph-size: clamp(82px, 11vw, 160px);
  position: absolute;
  z-index: 2;
  left: 0;
  top: 0;
  display: grid;
  place-items: center;
  width: var(--glyph-size);
  aspect-ratio: 1;
  padding: 0;
  border: 2px solid var(--ink);
  border-radius: 50%;
  color: var(--ink);
  background: var(--paper-2);
  box-shadow: 8px 10px 0 var(--ink);
  font-family: var(--display);
  font-size: calc(var(--glyph-size) * .58);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -.08em;
  user-select: none;
  transform: none;
  transform-origin: center;
  transition: box-shadow .18s var(--ease-out), filter .18s, background .18s;
  touch-action: none;
  cursor: grab;
  will-change: transform;
}

.collider-glyph:nth-of-type(3n + 1) {
  --glyph-size: clamp(105px, 14vw, 205px);
  border-radius: 7%;
  color: var(--paper);
  background: var(--cobalt);
}

.collider-glyph:nth-of-type(3n + 2) {
  --glyph-size: clamp(72px, 9vw, 132px);
  background: var(--vermillion);
  box-shadow: 8px 10px 0 var(--violet);
}

.collider-glyph:nth-of-type(4n) {
  border-radius: 50% 12% 50% 12%;
  color: var(--ink);
  background: var(--paper);
}

.collider-glyph:hover,
.collider-glyph:focus-visible {
  z-index: 5;
  filter: brightness(1.08);
  box-shadow: 13px 16px 0 var(--ink);
}

.collider-glyph.is-dragging,
.collider-glyph:active {
  z-index: 8;
  box-shadow: 3px 4px 0 var(--ink);
  cursor: grabbing;
}

.collider-glyph.is-colliding {
  animation: collider-impact .28s var(--ease-out);
}

@keyframes collider-impact {
  45% { filter: invert(1); }
}

.collider-register {
  position: absolute;
  z-index: 12;
  right: 14px;
  bottom: 14px;
  left: 14px;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 10px 12px;
  border: 1px solid var(--ink);
  color: var(--paper);
  background: var(--ink);
}

.collider-controls {
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: clamp(24px, 3vw, 40px) 28px;
  color: var(--paper);
  background:
    linear-gradient(145deg, rgba(169,129,255,.3), transparent 42%),
    var(--ink);
}

.collider-control-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: clamp(56px, 8vw, 112px);
  padding-bottom: 15px;
  border-bottom: 1px solid rgba(236,233,223,.48);
}

.collider-control-head strong,
.collider-control-head output {
  color: var(--acid);
  font-family: var(--mono);
  font-size: .57rem;
  font-weight: 400;
  text-transform: uppercase;
}

.collider-controls label {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 11px;
  padding: 19px 0;
  border-top: 1px solid rgba(236,233,223,.3);
  font-family: var(--mono);
  font-size: .62rem;
  text-transform: uppercase;
}

.collider-controls label output {
  color: var(--acid);
}

.collider-controls input[type="range"] {
  grid-column: 1 / -1;
  width: 100%;
  height: 20px;
  margin: 0;
  accent-color: var(--acid);
  cursor: ew-resize;
  -webkit-appearance: none;
  appearance: none;
  background: transparent;
}

.collider-controls input[type="range"]::-webkit-slider-runnable-track {
  height: 3px;
  background: rgba(236,233,223,.48);
}

.collider-controls input[type="range"]::-webkit-slider-thumb {
  width: 17px;
  height: 17px;
  margin-top: -7px;
  border: 1px solid var(--ink);
  border-radius: 0;
  background: var(--acid);
  -webkit-appearance: none;
}

.collider-controls input[type="range"]::-moz-range-track {
  height: 3px;
  background: rgba(236,233,223,.48);
}

.collider-controls input[type="range"]::-moz-range-thumb {
  width: 17px;
  height: 17px;
  border: 1px solid var(--ink);
  border-radius: 0;
  background: var(--acid);
}

.collider-actions {
  display: grid;
  gap: 9px;
  margin-top: auto;
  padding-top: 34px;
}

.collider-actions .button,
.collider-actions button {
  justify-content: space-between;
  width: 100%;
}

.collider-help {
  margin: 18px 0 0;
  color: rgba(236,233,223,.62);
  font-family: var(--mono);
  font-size: .57rem;
  line-height: 1.45;
  text-transform: uppercase;
}

.lab-experiments {
  padding: clamp(90px, 12vw, 180px) var(--gutter);
}

.experiment-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--ink);
  border-left: 1px solid var(--ink);
}

.experiment-card {
  position: relative;
  min-height: 460px;
  padding: 22px;
  overflow: hidden;
  border-right: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}

.experiment-card h3 {
  position: relative;
  z-index: 2;
  margin: 90px 0 15px;
  font-size: clamp(2.4rem, 5vw, 5.3rem);
  font-weight: 500;
  line-height: .88;
  letter-spacing: -.07em;
}

.experiment-card p {
  position: relative;
  z-index: 2;
  max-width: 34ch;
  line-height: 1.4;
}

.experiment-card:nth-child(2) {
  color: var(--paper);
  background: var(--cobalt);
}

.experiment-card:nth-child(3) {
  background: var(--acid);
}

.experiment-card:nth-child(4) {
  color: var(--paper);
  background: var(--ink);
}

.mini-orbit {
  position: absolute;
  right: -8%;
  bottom: -15%;
  width: 65%;
  aspect-ratio: 1;
  border: 35px solid currentColor;
  border-radius: 50%;
  opacity: .16;
  animation: orbit-pulse 3.5s ease-in-out infinite;
}

@keyframes orbit-pulse {
  50% { transform: scale(.82); opacity: .3; }
}

/* ABOUT */
.about-hero {
  background:
    linear-gradient(90deg, transparent 0 72%, rgba(255,83,61,.12) 72% 100%),
    var(--paper);
}

.about-hero h1 {
  max-width: 80vw;
}

.about-origin {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 20px;
  padding: clamp(90px, 12vw, 180px) var(--gutter);
  border-bottom: 1px solid var(--ink);
}

.about-origin-label {
  grid-column: 1 / 4;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 40px;
}

.about-origin h2 {
  grid-column: 4 / -1;
  max-width: 24ch;
  margin: 0;
}

.about-origin > p {
  grid-column: 7 / 12;
  margin: clamp(38px, 7vw, 95px) 0 0;
}

.about-note {
  position: relative;
  isolation: isolate;
  display: grid;
  place-items: center;
  min-height: min(900px, 90svh);
  padding: clamp(80px, 10vw, 150px) var(--gutter);
  overflow: hidden;
  color: var(--ink);
  background: var(--paper-2);
}

.about-note::before {
  display: none;
  content: none;
}

.about-note > .eyebrow {
  position: absolute;
  z-index: 2;
  top: clamp(28px, 4vw, 60px);
  left: var(--gutter);
}

.about-note > .eyebrow::before {
  box-shadow: 0 0 0 3px var(--ink);
}

.about-note .about-note-chrome {
  position: absolute;
  z-index: 0;
  top: 50%;
  right: auto;
  bottom: auto;
  left: 50%;
  width: min(68vw, 920px);
  height: min(68vw, 920px);
  pointer-events: none;
  opacity: .62;
  transform: translate(-50%, -50%);
}

.about-note blockquote {
  position: relative;
  z-index: 2;
  max-width: 1250px;
  margin: 0;
  font-size: clamp(3.2rem, 8vw, 9rem);
  font-weight: 500;
  line-height: .86;
  letter-spacing: -.075em;
  text-align: center;
}

.about-note blockquote em {
  color: var(--cobalt);
  font-family: var(--serif);
  font-weight: 400;
}

.about-note-meta {
  position: absolute;
  z-index: 2;
  right: var(--gutter);
  bottom: 24px;
  left: var(--gutter);
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 14px;
  border-top: 1px solid rgba(10,10,10,.42);
}

.about-rhythm {
  padding: clamp(90px, 12vw, 180px) var(--gutter);
}

.about-rhythm .section-heading-row h2 {
  max-width: 930px;
  font-size: clamp(3.7rem, 8vw, 8.5rem);
}

.about-rhythm-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: clamp(50px, 8vw, 110px);
  border-top: 1px solid var(--ink);
  border-left: 1px solid var(--ink);
}

.about-rhythm-card {
  min-height: clamp(380px, 36vw, 570px);
  padding: clamp(22px, 3vw, 42px);
  border-right: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}

.about-rhythm-card:nth-child(2) {
  color: var(--paper);
  background: var(--cobalt);
}

.about-rhythm-card:nth-child(3) {
  background: var(--acid);
}

.about-rhythm-card h3 {
  margin: clamp(90px, 10vw, 155px) 0 24px;
  font-size: clamp(2rem, 3.8vw, 4.4rem);
  font-weight: 500;
  line-height: .92;
  letter-spacing: -.06em;
}

.about-rhythm-card p {
  max-width: 39ch;
  margin-bottom: 0;
  line-height: 1.4;
}

.about-fit {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, .75fr);
  gap: 60px;
  padding: clamp(90px, 11vw, 165px) var(--gutter);
  border-top: 1px solid var(--ink);
  background: var(--vermillion);
}

.about-fit .section-title {
  max-width: 940px;
  margin-top: 34px;
}

.about-fit-copy {
  align-self: end;
}

.about-fit-copy .button {
  margin-top: 45px;
}

/* FAQ */
.faq-hero {
  min-height: min(720px, calc(100svh - var(--header-h)));
  background: var(--acid);
}

.faq-hero h1 {
  max-width: 85vw;
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(210px, .32fr) minmax(0, 1fr);
  gap: clamp(35px, 7vw, 110px);
  padding: clamp(90px, 11vw, 165px) var(--gutter);
}

.faq-index {
  position: sticky;
  top: 32px;
  align-self: start;
}

.faq-index p {
  margin: 48px 0 35px;
}

.faq-list {
  border-top: 1px solid var(--ink);
}

.faq-item {
  border-bottom: 1px solid var(--ink);
}

.faq-item summary {
  display: grid;
  grid-template-columns: minmax(92px, .23fr) minmax(0, 1fr) 36px;
  gap: 18px;
  align-items: center;
  min-height: 108px;
  padding: 18px 0;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary h2 {
  margin: 0;
  font-size: clamp(1.6rem, 3vw, 3.4rem);
  font-weight: 500;
  line-height: .95;
  letter-spacing: -.055em;
}

.faq-plus {
  display: grid;
  place-items: center;
  width: 34px;
  aspect-ratio: 1;
  border: 1px solid var(--ink);
  border-radius: 50%;
  font-family: var(--mono);
  transition: color .3s, background .3s, transform .4s var(--ease-out);
}

.faq-item summary:hover .faq-plus,
.faq-item[open] .faq-plus {
  color: var(--paper);
  background: var(--cobalt);
}

.faq-item[open] .faq-plus {
  transform: rotate(45deg);
}

.faq-item > p {
  max-width: 64ch;
  margin: 0 54px clamp(30px, 4vw, 54px) calc(23% + 18px);
  font-size: clamp(1rem, 1.3vw, 1.25rem);
  line-height: 1.45;
  letter-spacing: -.025em;
  animation: faq-answer-in .35s var(--ease-out) both;
}

@keyframes faq-answer-in {
  from { opacity: 0; transform: translateY(-8px); }
}

.faq-cta {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 30px;
  align-items: end;
  padding: clamp(90px, 11vw, 165px) var(--gutter);
  color: var(--paper);
  background: var(--cobalt);
}

.faq-cta .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: clamp(40px, 8vw, 110px);
}

.faq-cta h2 {
  max-width: 1080px;
  font-size: clamp(4rem, 10vw, 11rem);
}

.faq-cta .button {
  align-self: end;
  margin-bottom: 8px;
  color: var(--ink);
  background: var(--acid);
}

/* CONTACT */
.contact-hero {
  min-height: auto;
  color: var(--ink);
  background: var(--acid);
}

.contact-hero h1 {
  margin-bottom: clamp(65px, 10vw, 130px);
  font-size: clamp(4.5rem, 13vw, 13.8rem);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, .65fr);
  align-items: start;
}

.project-form {
  padding: clamp(50px, 7vw, 110px) var(--gutter) clamp(90px, 12vw, 180px);
}

.form-section {
  padding: clamp(36px, 5vw, 72px) 0;
  border-top: 1px solid var(--ink);
}

.form-section:first-child {
  padding-top: 0;
  border-top: 0;
}

.form-legend {
  display: grid;
  grid-template-columns: 48px 1fr;
  width: 100%;
  margin-bottom: 30px;
  font-size: clamp(1.8rem, 4vw, 4.4rem);
  font-weight: 500;
  line-height: .95;
  letter-spacing: -.06em;
}

.form-legend span:first-child {
  padding-top: .45em;
  font-family: var(--mono);
  font-size: .65rem;
  letter-spacing: 0;
}

.choice-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.choice {
  position: relative;
}

.choice input {
  position: absolute;
  opacity: 0;
}

.choice span {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 125px;
  padding: 14px;
  border: 1px solid var(--ink);
  font-size: 1rem;
  letter-spacing: -.03em;
  transition: color .25s, background .25s, transform .25s var(--ease-out);
}

.choice span::before {
  content: "○";
  font-size: 1.15rem;
}

.choice input:checked + span {
  color: var(--paper);
  background: var(--cobalt);
  transform: translateY(-4px);
}

.choice input:checked + span::before {
  content: "●";
  color: var(--acid);
}

.choice input:focus-visible + span {
  outline: 3px solid var(--cobalt);
  outline-offset: 3px;
}

.field-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.field {
  display: grid;
  gap: 8px;
}

.field--full {
  grid-column: 1 / -1;
}

.field label {
  font-family: var(--mono);
  font-size: .62rem;
  text-transform: uppercase;
}

.field input,
.field textarea {
  width: 100%;
  padding: 14px 0;
  border: 0;
  border-bottom: 1px solid var(--ink);
  border-radius: 0;
  background: transparent;
  font-size: clamp(1.2rem, 2vw, 1.85rem);
  letter-spacing: -.035em;
}

.field textarea {
  min-height: 140px;
  resize: vertical;
}

.field input::placeholder,
.field textarea::placeholder {
  color: #8d8a82;
}

.field input:focus,
.field textarea:focus {
  border-color: var(--cobalt);
  outline: 0;
}

.form-submit-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding-top: 28px;
  border-top: 1px solid var(--ink);
}

.form-submit-row p {
  max-width: 38ch;
  margin: 0;
  color: var(--muted);
  font-family: var(--mono);
  font-size: .58rem;
  line-height: 1.4;
  text-transform: uppercase;
}

.project-receipt {
  position: sticky;
  top: 0;
  min-height: 100svh;
  padding: clamp(40px, 5vw, 70px) clamp(22px, 3vw, 46px);
  color: var(--paper);
  background: var(--ink);
}

.receipt-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 18px;
  border-bottom: 1px dashed rgba(236,233,223,.6);
}

.receipt-head strong {
  font-family: var(--display);
  font-size: clamp(1.6rem, 3vw, 3rem);
  letter-spacing: -.07em;
  text-transform: uppercase;
}

.receipt-list {
  margin: 50px 0;
}

.receipt-item {
  display: grid;
  grid-template-columns: .65fr 1fr;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px dashed rgba(236,233,223,.42);
  font-family: var(--mono);
  font-size: .62rem;
  line-height: 1.3;
  text-transform: uppercase;
}

.receipt-item dt,
.receipt-item dd {
  margin: 0;
}

.receipt-item dd {
  text-align: right;
}

.receipt-total {
  margin: 45px 0 18px;
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 4rem);
  font-style: italic;
  line-height: .95;
}

.receipt-barcode {
  height: 74px;
  margin: 34px 0;
  background: repeating-linear-gradient(90deg, var(--paper) 0 2px, transparent 2px 5px, var(--paper) 5px 6px, transparent 6px 11px);
}

.receipt-actions {
  display: grid;
  gap: 10px;
}

.receipt-actions button,
.receipt-actions a {
  justify-content: space-between;
  width: 100%;
}

.form-success {
  display: none;
  padding: 24px;
  border: 1px solid var(--ink);
  background: var(--acid);
}

.form-success.is-visible {
  display: block;
}

.form-success h3 {
  margin-bottom: 12px;
  font-size: clamp(2rem, 4vw, 4rem);
  letter-spacing: -.06em;
}

.form-success p {
  max-width: 46ch;
}

/* RESPONSIVE */
@media (max-width: 1180px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .desktop-nav,
  .header-folio {
    display: none;
  }

  .nav-toggle,
  .mobile-nav {
    display: grid;
  }

  .home-title {
    font-size: clamp(4rem, 12.4vw, 9rem);
  }

  .home-hero .chrome-stage {
    top: 20%;
    right: -10%;
    width: 58vw;
    height: 64vw;
  }

  .hero-deck {
    grid-column: 1 / 6;
  }

  .capability-strip .eyebrow {
    grid-column: 1 / 3;
  }

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

@media (max-width: 900px) {
  .home-hero {
    display: flex;
    flex-direction: column;
    min-height: calc(100svh - var(--header-h));
  }

  .home-title {
    margin-top: clamp(85px, 15vh, 160px);
    font-size: clamp(3.7rem, 14.5vw, 7.5rem);
  }

  .home-title > span:nth-child(2) {
    padding-left: 4vw;
  }

  .home-title > span:nth-child(3) {
    padding-left: 24vw;
  }

  .hero-deck {
    max-width: 28rem;
    margin-top: auto;
    padding-top: 50px;
  }

  .hero-actions {
    justify-content: flex-start;
    margin-top: 25px;
  }

  .home-hero .chrome-stage {
    top: 22%;
    right: -15%;
    width: 72vw;
    height: 72vw;
  }

  .home-hero .sticker--seal {
    top: 63%;
    left: 3%;
  }

  .home-intro,
  .capability-strip,
  .services-intro,
  .studio-model {
    grid-template-columns: repeat(6, 1fr);
  }

  .home-intro .eyebrow,
  .capability-strip .eyebrow,
  .services-intro .eyebrow {
    grid-column: 1 / 3;
  }

  .home-intro-copy,
  .capability-list,
  .services-intro .body-large {
    grid-column: 3 / -1;
  }

  .project-grid {
    display: block;
  }

  .project-card,
  .project-card:nth-child(2),
  .project-card:nth-child(3) {
    margin: 0 0 60px;
  }

  .project-card:nth-child(2) .project-art {
    min-height: clamp(370px, 100vw, 680px);
  }

  .page-hero {
    min-height: 680px;
  }

  .page-hero h1 {
    margin-top: 160px;
  }

  .page-hero-deck {
    width: min(430px, 62vw);
  }

  .page-hero .chrome-stage {
    top: 11%;
    right: -10%;
    width: 58vw;
    height: 58vw;
  }

  .work-item {
    grid-template-columns: 38px 1fr auto;
    gap: 12px;
  }

  .work-sector,
  .work-scope {
    display: none;
  }

  .work-list.is-grid {
    grid-template-columns: 1fr;
  }

  .service-chapter {
    grid-template-columns: 1fr;
  }

  .service-main {
    min-height: 52svh;
    border-right: 0;
    border-bottom: 1px solid currentColor;
  }

  .process-section,
  .studio-principles {
    grid-template-columns: 1fr;
  }

  .process-copy {
    position: static;
  }

  .service-cta h2 {
    grid-column: 1 / -1;
  }

  .service-cta .button {
    grid-column: 8 / -1;
  }

  .studio-model-head {
    grid-column: 1 / 3;
  }

  .model-copy {
    grid-column: 3 / -1;
  }

  .number-cell {
    min-height: 250px;
  }

  .number-cell strong {
    font-size: clamp(4rem, 12vw, 7rem);
  }

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

  .project-receipt {
    position: relative;
    min-height: auto;
  }

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

@media (max-width: 650px) {
  :root {
    --header-h: 62px;
  }

  .lab-section-head > div {
    min-width: 0;
  }

  .lab-section-head h2 {
    max-width: 100%;
    font-size: clamp(2.8rem, 13vw, 4.4rem);
    overflow-wrap: anywhere;
  }

  html[data-lang="pt"] .lab-section-head h2 {
    font-size: clamp(2.2rem, 10.5vw, 4rem);
  }

  .studio-principles > div,
  .principles-list {
    min-width: 0;
  }

  .studio-model-head {
    min-width: 0;
  }

  .studio-model-head h2 {
    max-width: 100%;
    font-size: clamp(2.8rem, 12vw, 4rem);
    overflow-wrap: anywhere;
  }

  .studio-principles .section-title {
    max-width: 100%;
    font-size: clamp(2.8rem, 12vw, 4.4rem);
    overflow-wrap: anywhere;
  }

  html[data-lang="pt"] .manifesto-line {
    font-size: clamp(2.4rem, 12vw, 5rem);
  }

  .about-rhythm .section-heading-row {
    width: 100%;
    min-width: 0;
  }

  .about-rhythm .section-heading-row h2 {
    width: 100%;
    max-width: 100%;
    font-size: clamp(3rem, 13vw, 4.4rem);
    overflow-wrap: anywhere;
  }

  .brand-meta {
    display: none;
  }

  .brand-word {
    font-size: 1.4rem;
  }

  .hero-coordinates span:last-child,
  .home-hero .sticker--tape,
  .home-intro .sticker,
  .home-statement .sticker,
  .cursor-orbit {
    display: none;
  }

  .home-hero .hero-topline {
    align-items: center;
  }

  .home-title {
    margin-top: clamp(100px, 18vh, 150px);
    font-size: clamp(3.25rem, 15vw, 6rem);
  }

  .home-title > span:nth-child(2) {
    padding-left: 0;
  }

  .home-title > span:nth-child(3) {
    padding-left: 16vw;
  }

  .home-title em {
    display: inline-block;
    font-size: .7em;
  }

  .home-hero .chrome-stage {
    top: 26%;
    right: -27%;
    width: 94vw;
    height: 94vw;
    opacity: .87;
  }

  .home-hero .sticker--seal {
    top: 13%;
    left: auto;
    right: 5%;
    width: 90px;
    padding: 13px;
    box-shadow: 3px 4px 0 var(--ink);
  }

  .hero-deck {
    position: relative;
    z-index: 6;
    max-width: 86%;
    padding-top: 80px;
  }

  .home-intro,
  .capability-strip,
  .services-intro,
  .studio-model {
    display: block;
  }

  .home-intro .eyebrow,
  .capability-strip .eyebrow,
  .services-intro .eyebrow,
  .studio-model-head {
    margin-bottom: 45px;
  }

  .section-heading-row {
    align-items: flex-start;
    flex-direction: column;
  }

  .project-art,
  .project-card:nth-child(2) .project-art {
    min-height: 126vw;
  }

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

  .project-card-type {
    display: none;
  }

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

  .capability-row em {
    display: none;
  }

  .home-statement {
    min-height: 66svh;
  }

  .page-hero {
    min-height: calc(100svh - var(--header-h));
    padding-top: 28px;
  }

  .page-hero-top {
    align-items: flex-start;
  }

  .page-hero-top .mono:last-child {
    max-width: 14ch;
    text-align: right;
  }

  .page-hero h1 {
    margin-top: 26vh;
    font-size: clamp(4.1rem, 18vw, 7.5rem);
  }

  .page-hero-deck {
    right: var(--gutter);
    bottom: 24px;
    left: var(--gutter);
    width: auto;
  }

  .page-hero .chrome-stage {
    top: 8%;
    right: -26%;
    width: 94vw;
    height: 94vw;
  }

  .work-index {
    padding-inline: 0;
  }

  .work-toolbar {
    position: relative;
    display: block;
    padding: 14px var(--gutter);
  }

  .filter-group {
    overflow-x: auto;
    padding-bottom: 8px;
  }

  .view-group {
    display: none;
  }

  .work-list {
    padding: 10px var(--gutter) 0;
  }

  .work-item {
    min-height: 108px;
  }

  .work-name {
    font-size: clamp(2.2rem, 12vw, 4.5rem);
  }

  .work-preview {
    display: none;
  }

  .dialog-content {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .dialog-visual {
    min-height: 52svh;
  }

  .service-chapter {
    min-height: 0;
  }

  .service-main {
    min-height: 54svh;
  }

  .service-main,
  .service-aside {
    min-width: 0;
  }

  .service-name {
    max-width: 100%;
    font-size: clamp(4.4rem, 21vw, 7.2rem);
  }

  .service-aside {
    min-height: 66svh;
  }

  .process-step summary {
    grid-template-columns: 35px 1fr auto;
  }

  .process-step p {
    margin-left: 35px;
  }

  .service-cta {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
  }

  .service-cta .button {
    align-self: flex-end;
    margin-top: 60px;
  }

  .manifesto-line {
    align-items: flex-end;
    font-size: clamp(2.7rem, 15vw, 6.5rem);
  }

  .studio-manifesto .sticker {
    top: 4%;
  }

  .principle {
    grid-template-columns: 34px 1fr;
  }

  .model-grid,
  .number-grid,
  .experiment-grid {
    grid-template-columns: 1fr;
  }

  .number-cell {
    min-height: 220px;
  }

  .number-cell strong {
    margin-top: 28px;
    font-size: 5.5rem;
  }

  .lab-hero .sticker--tape {
    top: 18%;
    left: 4%;
    min-width: 135px;
  }

  .sticker-board {
    min-height: 620px;
  }

  .board-disc {
    top: 12%;
    left: 6%;
  }

  .board-ticket {
    top: 42%;
    right: 4%;
  }

  .board-star {
    bottom: 1%;
    left: 9%;
  }

  .type-controls,
  .type-slider-wrap {
    grid-template-columns: 1fr;
  }

  .type-controls .button {
    justify-self: start;
  }

  .type-specimen {
    min-height: 70vw;
    font-size: var(--type-size, 21vw);
    line-height: .88;
  }

  .experiment-card {
    min-height: 380px;
  }

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

  .choice span {
    min-height: 76px;
  }

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

  .form-submit-row {
    align-items: flex-start;
    flex-direction: column;
  }

  .form-submit-row .button {
    width: 100%;
  }

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

  .footer-side {
    justify-content: flex-start;
  }

  .footer-bottom {
    grid-template-columns: 1fr auto;
  }

  .footer-wordmark {
    grid-column: 1 / -1;
    grid-row: 1;
    margin-bottom: 24px;
    font-size: 17vw;
  }

  .footer-clock {
    text-align: right;
  }
}

@media (max-width: 900px) {
  .project-dialog {
    width: calc(100vw - 16px);
    height: calc(100dvh - 16px);
    box-shadow: 7px 7px 0 var(--cobalt);
  }

  .viewer-layout {
    grid-template-columns: 1fr;
    grid-template-rows: minmax(46dvh, 1fr) minmax(235px, auto);
  }

  .viewer-frame-wrap {
    border-right: 0;
    border-bottom: 1px solid var(--ink);
  }

  .viewer-info {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(230px, .85fr);
    grid-template-rows: auto auto 1fr;
    gap: 0 28px;
    max-height: 39dvh;
    padding: 22px var(--gutter);
    overflow: auto;
    overscroll-behavior: contain;
  }

  .viewer-info .eyebrow {
    grid-column: 1 / -1;
    margin: 0 0 18px;
    padding: 0;
  }

  .dialog-title {
    grid-column: 1;
    margin-bottom: 12px;
    font-size: clamp(3rem, 9vw, 6.5rem);
  }

  .dialog-blurb {
    grid-column: 1;
    margin-bottom: 20px;
  }

  .dialog-facts {
    grid-column: 2;
    grid-row: 2 / span 2;
  }

  .viewer-disclaimer {
    grid-column: 1;
  }

  .viewer-info .link-arrow {
    grid-column: 1 / -1;
    margin-top: 4px;
  }

  .collider-interface {
    grid-template-columns: 1fr;
  }

  .collider-stage {
    min-height: clamp(560px, 72svh, 760px);
    border-right: 0;
    border-bottom: 1px solid var(--ink);
  }

  .collider-controls {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0 22px;
  }

  .collider-control-head,
  .collider-actions,
  .collider-help {
    grid-column: 1 / -1;
  }

  .collider-control-head {
    margin-bottom: 25px;
  }

  .collider-actions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 28px;
    padding-top: 0;
  }

  .about-origin {
    grid-template-columns: repeat(6, 1fr);
  }

  .about-origin-label {
    grid-column: 1 / 3;
  }

  .about-origin h2 {
    grid-column: 3 / -1;
  }

  .about-origin > p {
    grid-column: 3 / -1;
  }

  .about-rhythm-grid {
    grid-template-columns: 1fr;
  }

  .about-rhythm-card {
    min-height: 330px;
  }

  .about-rhythm-card h3 {
    margin-top: 70px;
  }

  .about-fit {
    grid-template-columns: 1fr;
  }

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

  .faq-index {
    position: static;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    align-items: end;
  }

  .faq-index p {
    margin: 0;
  }

  .faq-index .link-arrow {
    grid-column: 2;
    justify-self: end;
  }
}

@media (max-width: 650px) {
  .mobile-nav-meta {
    flex-wrap: wrap;
    align-items: center;
    gap: 12px 20px;
  }

  .mobile-nav-meta .language-switch {
    margin-left: auto;
  }

  .ticker-set {
    justify-content: flex-start;
  }

  .ticker-set span {
    gap: 16px;
    padding-inline: 14px;
  }

  .boot-meta {
    padding-top: 15px;
    padding-bottom: 15px;
  }

  .boot-word > span,
  .boot-word strong {
    font-size: clamp(5.4rem, 29vw, 10rem);
    line-height: .72;
  }

  .boot-word em,
  .boot-word small {
    justify-self: start;
    margin-left: 2vw;
    font-size: clamp(1.3rem, 7vw, 2.2rem);
  }

  .boot-line {
    bottom: 26px;
  }

  .viewer-bar {
    grid-template-columns: minmax(0, 1fr) auto 48px;
    font-size: .52rem;
  }

  .viewer-dots {
    display: none;
  }

  .viewer-address {
    padding: 0 10px;
    border-left: 0;
  }

  .viewer-address > span:not(.viewer-live-dot) {
    display: none;
  }

  .viewer-open {
    padding: 0 10px;
  }

  .dialog-close {
    width: 48px;
  }

  .viewer-layout {
    grid-template-rows: minmax(45dvh, 1fr) minmax(0, auto);
  }

  .viewer-info {
    display: flex;
    max-height: 41dvh;
    padding: 20px;
  }

  .viewer-info .eyebrow {
    display: none;
  }

  .dialog-title {
    margin-bottom: 13px;
    font-size: clamp(2.7rem, 14vw, 4.5rem);
  }

  .dialog-blurb {
    margin-bottom: 20px;
  }

  .dialog-facts {
    margin-bottom: 18px;
  }

  .viewer-disclaimer {
    margin-bottom: 20px;
  }

  .project-art--github .github-code {
    width: 64%;
  }

  .type-collider {
    padding-inline: 0;
  }

  .type-collider .lab-section-head {
    padding-inline: var(--gutter);
  }

  .collider-interface {
    border-inline: 0;
    box-shadow: none;
  }

  .collider-stage {
    min-height: max(72svh, 560px);
  }

  .collider-controls {
    display: flex;
    padding: 28px var(--gutter);
  }

  .collider-control-head {
    margin-bottom: 28px;
  }

  .collider-actions {
    display: grid;
    grid-template-columns: 1fr;
    margin-top: 30px;
    padding-top: 0;
  }

  .collider-register {
    align-items: flex-start;
    flex-direction: column;
    gap: 5px;
    font-size: .54rem;
  }

  .collider-glyph {
    --glyph-size: clamp(76px, 25vw, 126px);
  }

  .collider-glyph:nth-of-type(3n + 1) {
    --glyph-size: clamp(96px, 31vw, 158px);
  }

  .collider-glyph:nth-of-type(3n + 2) {
    --glyph-size: clamp(68px, 21vw, 108px);
  }

  .about-hero {
    background: var(--paper);
  }

  .about-hero h1,
  .faq-hero h1 {
    max-width: none;
  }

  .about-origin {
    display: block;
  }

  .about-origin-label {
    margin-bottom: 46px;
  }

  .about-origin-label .mono {
    margin-top: 14px;
  }

  .about-origin > p {
    margin-top: 42px;
  }

  .about-note {
    min-height: 74svh;
  }

  .about-note blockquote {
    font-size: clamp(2.9rem, 13vw, 5.8rem);
  }

  .about-note-meta {
    flex-wrap: wrap;
    font-size: .55rem;
  }

  .about-rhythm-card {
    min-height: 360px;
  }

  .about-fit {
    gap: 38px;
  }

  .faq-hero {
    min-height: calc(100svh - var(--header-h));
  }

  .faq-index {
    display: block;
  }

  .faq-index p {
    margin: 35px 0 28px;
  }

  .faq-index .link-arrow {
    justify-self: auto;
  }

  .faq-item summary {
    grid-template-columns: 1fr 34px;
    grid-template-rows: auto auto;
    gap: 8px 14px;
    min-height: 128px;
  }

  .faq-item summary .mono {
    grid-column: 1;
    grid-row: 1;
  }

  .faq-item summary h2 {
    grid-column: 1;
    grid-row: 2;
  }

  .faq-plus {
    grid-column: 2;
    grid-row: 1 / -1;
  }

  .faq-item > p {
    margin: 0 42px 34px 0;
  }

  .faq-cta {
    grid-template-columns: 1fr;
  }

  .faq-cta > * {
    min-width: 0;
  }

  .faq-cta h2 {
    max-width: 100%;
    font-size: clamp(2.8rem, 13vw, 4rem);
    overflow-wrap: anywhere;
  }

  .faq-cta .button {
    justify-self: start;
    margin-top: 30px;
  }
}

/* Portuguese copy needs a little more line-box room than the English set. */
html[data-lang="pt"] .page-hero h1 {
  width: 100%;
  max-width: none;
}

html[data-lang="pt"] .page-hero h1.line-reveal > span,
html[data-lang="pt"] .home-title.line-reveal > span {
  min-width: 0;
  padding-block: .075em .1em;
  margin-block: -.075em -.1em;
}

html[data-lang="pt"] .page-hero h1.line-reveal > span > i,
html[data-lang="pt"] .home-title.line-reveal > span > i {
  max-width: 100%;
}

html[data-lang="pt"] .page-hero-top > *,
html[data-lang="pt"] .lab-section-head > *,
html[data-lang="pt"] .faq-item summary > *,
html[data-lang="pt"] .receipt-head > *,
html[data-lang="pt"] .receipt-item > * {
  min-width: 0;
}

html[data-lang="pt"] .faq-item summary h2,
html[data-lang="pt"] .receipt-item dd,
html[data-lang="pt"] .choice span {
  overflow-wrap: break-word;
  hyphens: auto;
}

html[data-lang="pt"] .studio-principles > *,
html[data-lang="pt"] .studio-principles .principles-list {
  min-width: 0;
}

html[data-lang="pt"] .process-section > * {
  min-width: 0;
}

html[data-lang="pt"] .service-cta h2 {
  min-width: 0;
  max-width: 100%;
}

@media (min-width: 1201px) {
  html[data-lang="pt"] .studio-principles {
    grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  }

  html[data-lang="pt"] .studio-principles .section-title {
    font-size: clamp(3.25rem, 4.5vw, 4.25rem);
  }
}

@media (min-width: 901px) {
  html[data-lang="pt"] .process-section {
    grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr);
  }

  html[data-lang="pt"] .process-copy h2 {
    font-size: clamp(3rem, 5.2vw, 5rem);
  }
}

@media (min-width: 901px) and (max-width: 1200px) {
  html[data-lang="pt"] .studio-principles {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 650px) {
  html[data-lang="pt"] .page-hero h1 {
    font-size: clamp(3.6rem, 18vw, 7.5rem);
  }

  html[data-lang="pt"] .service-cta h2 {
    width: 100%;
    font-size: clamp(3.5rem, 17vw, 4.5rem);
  }

  html[data-lang="pt"] .service-name {
    font-size: clamp(3.8rem, 19.5vw, 7.2rem);
  }

  html[data-lang="pt"] .process-copy h2 {
    font-size: clamp(3rem, 15vw, 3.8rem);
  }

  html[data-lang="pt"] .footer-title {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    font-size: clamp(3rem, 15.5vw, 4rem);
  }
}

/* The Portuguese Work title is deliberately re-composed, not merely shrunk. */
html[data-lang="pt"] body[data-page="work"] .work-hero .page-hero-top > * {
  min-width: 0;
}

html[data-lang="pt"] body[data-page="work"] .work-hero .page-hero-top .mono:last-child {
  max-width: 28ch;
  text-align: right;
}

html[data-lang="pt"] body[data-page="work"] .work-hero h1 {
  margin-top: clamp(72px, 10vh, 118px);
  font-size: clamp(4.7rem, 11.8vw, 12.4rem);
  line-height: .86;
  letter-spacing: -.075em;
}

html[data-lang="pt"] body[data-page="work"] .work-hero h1 > span {
  padding-right: .13em;
  white-space: nowrap;
}

html[data-lang="pt"] body[data-page="work"] .work-hero h1 > span:nth-child(2) i {
  font-size: .94em;
  letter-spacing: -.07em;
}

html[data-lang="pt"] body[data-page="work"] .work-hero h1 .small-serif {
  font-size: .3em;
  transform: translateY(-.42em) rotate(-4deg);
}

html[data-lang="pt"] body[data-page="work"] .work-hero .page-hero-deck {
  width: min(430px, 34vw);
  font-size: clamp(.96rem, 1.15vw, 1.16rem);
}

html[data-lang="pt"] body[data-page="work"] .work-hero .chrome-stage {
  right: 1%;
  width: min(38vw, 520px);
  height: min(38vw, 520px);
}

html[data-lang="pt"] body[data-page="work"] .work-toolbar {
  grid-template-columns: minmax(0, 1fr) auto;
}

html[data-lang="pt"] body[data-page="work"] .work-toolbar > *,
html[data-lang="pt"] body[data-page="work"] .filter-group,
html[data-lang="pt"] body[data-page="work"] .view-group,
html[data-lang="pt"] body[data-page="work"] .work-item > :not(.project-open) {
  min-width: 0;
}

html[data-lang="pt"] body[data-page="work"] .filter-button,
html[data-lang="pt"] body[data-page="work"] .view-button {
  flex: 0 0 auto;
  white-space: nowrap;
}

html[data-lang="pt"] body[data-page="work"] .work-sector,
html[data-lang="pt"] body[data-page="work"] .work-scope {
  overflow-wrap: break-word;
  hyphens: auto;
}

@media (min-width: 901px) and (max-width: 1200px) {
  html[data-lang="pt"] body[data-page="work"] .work-hero h1 {
    margin-top: clamp(62px, 9vh, 96px);
    font-size: clamp(4.6rem, 10.8vw, 8.1rem);
  }

  html[data-lang="pt"] body[data-page="work"] .work-hero h1 > span:nth-child(2) i {
    font-size: .9em;
  }

  html[data-lang="pt"] body[data-page="work"] .work-hero .page-hero-top .mono:last-child {
    max-width: 24ch;
  }

  html[data-lang="pt"] body[data-page="work"] .work-hero .page-hero-deck {
    width: min(400px, 38vw);
  }

  html[data-lang="pt"] body[data-page="work"] .work-toolbar {
    gap: 12px;
  }

  html[data-lang="pt"] body[data-page="work"] .filter-group,
  html[data-lang="pt"] body[data-page="work"] .view-group {
    gap: 6px;
  }

  html[data-lang="pt"] body[data-page="work"] .filter-button,
  html[data-lang="pt"] body[data-page="work"] .view-button {
    padding-inline: 9px;
    font-size: .55rem;
  }

  html[data-lang="pt"] body[data-page="work"] .work-item {
    grid-template-columns: 44px minmax(0, 1.2fr) minmax(118px, .62fr) minmax(118px, .5fr) 30px;
    gap: clamp(10px, 1.4vw, 18px);
  }
}

@media (min-width: 901px) and (max-height: 700px) {
  html[data-lang="pt"] body[data-page="work"] .work-hero {
    min-height: max(500px, calc(100svh - var(--header-h)));
    padding-top: clamp(22px, 4vh, 36px);
  }

  html[data-lang="pt"] body[data-page="work"] .work-hero h1 {
    margin-top: clamp(34px, 6vh, 54px);
    font-size: clamp(4.2rem, min(9vw, 20vh), 8.75rem);
    line-height: .84;
  }

  html[data-lang="pt"] body[data-page="work"] .work-hero .page-hero-deck {
    bottom: 18px;
    font-size: clamp(.88rem, 1vw, 1.02rem);
  }
}

@media (min-width: 651px) and (max-width: 900px) {
  .work-toolbar {
    grid-template-columns: minmax(0, 1fr);
    align-items: start;
    gap: 10px;
    padding-block: 12px;
  }

  .filter-group {
    flex-wrap: wrap;
    min-width: 0;
  }

  .view-group {
    justify-self: end;
  }
}

@media (max-width: 900px) {
  .work-list.is-grid .work-grid-art {
    aspect-ratio: 16 / 10;
  }

  .work-list.is-grid .work-sector {
    display: block;
  }

  html[data-lang="pt"] body[data-page="work"] .work-hero h1 {
    margin-top: clamp(105px, 14vh, 138px);
    font-size: clamp(4.15rem, 13vw, 7.25rem);
  }

  html[data-lang="pt"] body[data-page="work"] .work-hero h1 > span:nth-child(2) i {
    font-size: .84em;
  }

  html[data-lang="pt"] body[data-page="work"] .work-hero .page-hero-top .mono:last-child {
    max-width: 23ch;
  }

  html[data-lang="pt"] body[data-page="work"] .work-hero .page-hero-deck {
    width: min(410px, 58vw);
  }

  html[data-lang="pt"] body[data-page="work"] .work-hero .chrome-stage {
    right: -14%;
    width: 55vw;
    height: 55vw;
  }

  .about-note .about-note-chrome {
    width: min(82vw, 720px);
    height: min(82vw, 720px);
  }
}

@media (max-width: 650px) {
  .work-list.is-grid .work-grid-art {
    aspect-ratio: 4 / 3;
  }

  html[data-lang="pt"] body[data-page="work"] .work-hero .page-hero-top {
    gap: 12px;
  }

  html[data-lang="pt"] body[data-page="work"] .work-hero .page-hero-top > * {
    max-width: 48%;
  }

  html[data-lang="pt"] body[data-page="work"] .work-hero .page-hero-top .mono:last-child {
    max-width: 18ch;
    font-size: .57rem;
    line-height: 1.3;
  }

  html[data-lang="pt"] body[data-page="work"] .work-hero h1 {
    margin-top: clamp(105px, 20vh, 145px);
    font-size: clamp(3rem, 15vw, 5.7rem);
    line-height: .87;
  }

  html[data-lang="pt"] body[data-page="work"] .work-hero h1 > span:nth-child(2) i {
    font-size: .66em;
    letter-spacing: -.055em;
  }

  html[data-lang="pt"] body[data-page="work"] .work-hero h1 .small-serif {
    font-size: .27em;
    transform: translateY(-.34em) rotate(-3deg);
  }

  html[data-lang="pt"] body[data-page="work"] .work-hero .page-hero-deck {
    width: auto;
    font-size: .94rem;
    line-height: 1.22;
  }

  html[data-lang="pt"] body[data-page="work"] .work-hero .chrome-stage {
    right: -30%;
    width: 88vw;
    height: 88vw;
  }

  .about-note .about-note-chrome {
    width: 118vw;
    height: 118vw;
    opacity: .42;
  }
}

@media (hover: none), (pointer: coarse) {
  [data-magnetic] {
    transform: none !important;
  }

  .work-preview {
    display: none;
  }

  .sticker[data-drag]:not(.board-shape) {
    pointer-events: none;
  }
}

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

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

  .reveal {
    opacity: 1;
    transform: none;
  }

  .line-reveal > span > i {
    transform: none;
  }

  .chrome-canvas {
    filter: none;
  }

  .collider-glyph {
    transition: none;
  }
}

@media (forced-colors: active) {
  .grain,
  .chrome-stage,
  .sticker,
  .collider-stage::after {
    display: none;
  }

  .button,
  .filter-button,
  .choice span {
    border: 1px solid ButtonText;
  }
}
