@font-face {
  font-family: "DM Sans";
  src: url("assets/fonts/dm-sans-regular.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "DM Sans";
  src: url("assets/fonts/dm-sans-medium.ttf") format("truetype");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: "Instrument Serif";
  src: url("assets/fonts/instrument-serif-regular.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Instrument Serif";
  src: url("assets/fonts/instrument-serif-italic.ttf") format("truetype");
  font-style: italic;
  font-weight: 400;
  font-display: swap;
}

:root {
  --ink: #11110f;
  --ink-soft: #1c1c19;
  --bone: #f1ecdf;
  --paper: #f7f3e9;
  --red: #ef3b23;
  --blue: #1739f5;
  --acid: #79e6ff;
  --ice: #dce8ee;
  --line-light: rgba(241, 236, 223, 0.25);
  --line-dark: rgba(17, 17, 15, 0.22);
  --sans: "DM Sans", Arial, sans-serif;
  --serif: "Instrument Serif", Georgia, serif;
  --gutter: clamp(1.25rem, 3.4vw, 4.5rem);
  --header-h: 6.75rem;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

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

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

body {
  margin: 0;
  color: var(--ink);
  background: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.4;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

body.is-loading,
body.menu-open {
  overflow: hidden;
}

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

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

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

button {
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

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

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

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

.skip-link {
  position: fixed;
  z-index: 10000;
  top: 0;
  left: 1rem;
  padding: 0.75rem 1rem;
  color: var(--ink);
  background: var(--acid);
  transform: translateY(-110%);
  transition: transform 0.2s;
}

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

.section-pad {
  padding-right: var(--gutter);
  padding-left: var(--gutter);
}

section[id] {
  scroll-margin-top: 5.5rem;
}

.section-label {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line-dark);
  font-size: 0.69rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  line-height: 1.2;
  text-transform: uppercase;
}

.section-label--light {
  border-color: var(--line-light);
}

.display-title,
.reveal-text {
  font-size: clamp(3.6rem, 7.6vw, 7.5rem);
  font-weight: 400;
  letter-spacing: -0.062em;
  line-height: 0.9;
}

.display-title em,
.reveal-text em {
  font-family: var(--serif);
  font-weight: 400;
}

/* Intro loader */
.loader {
  position: fixed;
  z-index: 9999;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1.5rem var(--gutter) 2.2rem;
  color: var(--bone);
  background: var(--red);
  transition: visibility 0s 1s;
}

.loader__mark {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-size: clamp(5rem, 16vw, 15rem);
  font-weight: 500;
  letter-spacing: -0.09em;
  line-height: 0.8;
}

.loader__count {
  font-size: 0.75rem;
  letter-spacing: 0;
}

.loader__line {
  height: 1px;
  background: rgba(241, 236, 223, 0.35);
  overflow: hidden;
}

.loader__line i {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--bone);
  transform: scaleX(0);
  transform-origin: left;
  animation: load-line 1.15s var(--ease-out) forwards;
}

body.is-ready .loader {
  visibility: hidden;
  transform: translateY(-100%);
  transition: transform 0.9s var(--ease-out) 0.2s, visibility 0s 1.15s;
}

@keyframes load-line {
  to { transform: scaleX(1); }
}

/* Header and menu */
.site-header {
  position: fixed;
  z-index: 500;
  top: 0;
  right: 0;
  left: 0;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 1.35rem var(--gutter);
  color: white;
  mix-blend-mode: difference;
}

.brand {
  display: inline-flex;
  align-items: flex-start;
  font-size: clamp(1.25rem, 1.65vw, 1.7rem);
  font-weight: 500;
  letter-spacing: -0.07em;
  line-height: 1;
}

.brand__reg {
  margin: -0.15rem 0 0 0.18rem;
  font-size: 0.46em;
  letter-spacing: 0;
}

.site-header__right {
  display: flex;
  align-items: flex-start;
  gap: clamp(2rem, 5.5vw, 6rem);
}

.header-note {
  font-size: 0.66rem;
  letter-spacing: 0.07em;
  line-height: 1.25;
  text-transform: uppercase;
}

.menu-toggle {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  color: inherit;
}

.menu-toggle__label {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.menu-toggle__icon {
  position: relative;
  display: block;
  width: 2.8rem;
  height: 2.8rem;
  border: 1px solid currentColor;
  border-radius: 50%;
}

.menu-toggle__icon i {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0.85rem;
  height: 1px;
  background: currentColor;
  transition: transform 0.5s var(--ease-out);
}

.menu-toggle__icon i:first-child {
  transform: translate(-50%, -3px);
}

.menu-toggle__icon i:last-child {
  transform: translate(-50%, 3px);
}

body.menu-open .site-header {
  color: var(--ink);
  mix-blend-mode: normal;
}

body.menu-open .menu-toggle__icon i:first-child {
  transform: translate(-50%, 0) rotate(45deg);
}

body.menu-open .menu-toggle__icon i:last-child {
  transform: translate(-50%, 0) rotate(-45deg);
}

.menu {
  position: fixed;
  z-index: 400;
  inset: 0;
  visibility: hidden;
  color: var(--ink);
}

.menu__backdrop {
  position: absolute;
  inset: 0;
  background: var(--bone);
  transform: translateY(-100%);
  transition: transform 0.85s var(--ease-out), visibility 0s 0.85s;
}

.menu__content {
  position: relative;
  display: grid;
  grid-template-columns: 1fr minmax(19rem, 2fr);
  grid-template-rows: auto 1fr auto;
  min-height: 100%;
  padding: 8rem var(--gutter) 2.5rem;
  opacity: 0;
  transition: opacity 0.35s ease;
}

.menu__eyebrow {
  grid-column: 1 / -1;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--line-dark);
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.menu__nav {
  grid-column: 2;
  align-self: center;
  display: flex;
  flex-direction: column;
  padding: 2rem 0;
}

.menu__nav a {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  overflow: hidden;
  font-size: clamp(3.5rem, 7.5vw, 7rem);
  letter-spacing: -0.072em;
  line-height: 0.93;
  transform: translateY(120%);
  transition: color 0.3s, transform 0.85s var(--ease-out);
}

.menu__nav a::after {
  content: "↗";
  margin-left: auto;
  font-family: var(--sans);
  font-size: 0.22em;
  letter-spacing: 0;
  opacity: 0;
  transform: translate(-0.5rem, 0.5rem);
  transition: opacity 0.3s, transform 0.3s;
}

.menu__nav a:hover {
  color: var(--red);
}

.menu__nav a:hover::after {
  opacity: 1;
  transform: none;
}

.menu__nav a span {
  margin-top: 0.55em;
  font-size: 0.1em;
  letter-spacing: 0;
}

.menu__footer {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding-top: 1rem;
  border-top: 1px solid var(--line-dark);
  font-size: 0.77rem;
}

.menu__footer a {
  border-bottom: 1px solid;
}

body.menu-open .menu {
  visibility: visible;
}

body.menu-open .menu__backdrop {
  transform: none;
  transition-delay: 0s;
}

body.menu-open .menu__content {
  opacity: 1;
  transition-delay: 0.33s;
}

body.menu-open .menu__nav a {
  transform: none;
}

body.menu-open .menu__nav a:nth-child(1) { transition-delay: 0.32s; }
body.menu-open .menu__nav a:nth-child(2) { transition-delay: 0.38s; }
body.menu-open .menu__nav a:nth-child(3) { transition-delay: 0.44s; }
body.menu-open .menu__nav a:nth-child(4) { transition-delay: 0.5s; }

/* Cursor */
.cursor {
  position: fixed;
  z-index: 10000;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 0.72rem;
  height: 0.72rem;
  border-radius: 50%;
  pointer-events: none;
  color: var(--ink);
  background: var(--acid);
  mix-blend-mode: difference;
  transform: translate(-50%, -50%);
  transition: width 0.35s var(--ease-out), height 0.35s var(--ease-out), background 0.35s;
}

.cursor.is-active {
  width: 4.7rem;
  height: 4.7rem;
  mix-blend-mode: normal;
}

.cursor__label {
  font-size: 0.58rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  opacity: 0;
  text-transform: uppercase;
  transition: opacity 0.2s;
}

.cursor.is-active .cursor__label {
  opacity: 1;
}

.scroll-progress {
  position: fixed;
  z-index: 800;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--acid);
  transform: scaleX(0);
  transform-origin: left;
}

/* Hero */
.hero {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 100svh;
  padding: calc(var(--header-h) + 2rem) var(--gutter) 2rem;
  overflow: hidden;
  color: var(--bone);
  background: var(--ink);
}

.hero__image,
.hero__wash,
.hero__grid {
  position: absolute;
  inset: 0;
}

.hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right center;
  scale: 1;
  will-change: transform;
}

.hero__wash {
  background: linear-gradient(90deg, rgba(6, 6, 5, 0.36) 0%, rgba(6, 6, 5, 0.2) 53%, rgba(6, 6, 5, 0.08) 100%),
    linear-gradient(0deg, rgba(8, 8, 7, 0.76) 0%, rgba(8, 8, 7, 0.08) 54%, transparent 78%);
}

.hero__grid {
  left: var(--gutter);
  right: var(--gutter);
  border-right: 1px solid rgba(255, 255, 255, 0.12);
  border-left: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(90deg, transparent 49.95%, rgba(255, 255, 255, 0.1) 50%, transparent 50.05%);
  pointer-events: none;
}

.hero__kicker {
  position: relative;
  z-index: 2;
  align-self: flex-end;
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin-right: 9vw;
  font-size: 0.69rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.status-dot {
  position: relative;
  width: 0.46rem;
  height: 0.46rem;
  border-radius: 50%;
  background: var(--acid);
  box-shadow: 0 0 0 0 rgba(121, 230, 255, 0.5);
  animation: pulse 2.4s infinite;
}

@keyframes pulse {
  70% { box-shadow: 0 0 0 0.6rem rgba(121, 230, 255, 0); }
  100% { box-shadow: 0 0 0 0 rgba(121, 230, 255, 0); }
}

.hero__title {
  position: relative;
  z-index: 2;
  width: 100%;
  margin: auto 0;
  font-size: clamp(4.5rem, 9.2vw, 9.2rem);
  font-weight: 400;
  letter-spacing: -0.068em;
  line-height: 0.88;
  text-shadow: 0 0.08em 0.3em rgba(0, 0, 0, 0.24);
}

.hero__title .line {
  display: block;
  overflow: hidden;
  margin-block: -0.07em -0.12em;
  padding-block: 0.07em 0.12em;
}

.hero__title .line:nth-child(2) {
  padding-left: 8vw;
}

.hero__title .line > span {
  display: block;
  transform: translateY(115%);
  transition: transform 1.25s var(--ease-out);
}

.hero__title .line:nth-child(2) > span { transition-delay: 0.09s; }
.hero__title .line:nth-child(3) > span { transition-delay: 0.18s; }

body.is-ready .hero__title .line > span {
  transform: none;
  transition-delay: 0.65s;
}

body.is-ready .hero__title .line:nth-child(2) > span { transition-delay: 0.75s; }
body.is-ready .hero__title .line:nth-child(3) > span { transition-delay: 0.85s; }

body.is-ready .hero__lede {
  opacity: 1;
  transform: none;
  transition-delay: 1.02s;
}

.hero__title em {
  padding-right: 0.035em;
  font-family: var(--serif);
  font-weight: 400;
}

.hero__footer {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr minmax(18rem, 30rem) auto;
  align-items: end;
  gap: 2rem;
}

.hero__lede {
  grid-column: 2;
  max-width: 32rem;
  font-size: clamp(0.9rem, 1.05vw, 1.08rem);
  line-height: 1.45;
  text-shadow: 0 1px 1rem rgba(0, 0, 0, 0.75);
}

.round-link {
  position: relative;
  grid-column: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 7.75rem;
  height: 7.75rem;
  padding: 1rem;
  border: 1px solid rgba(241, 236, 223, 0.55);
  border-radius: 50%;
  font-size: 0.67rem;
  letter-spacing: 0.07em;
  line-height: 1.2;
  text-align: center;
  text-transform: uppercase;
  background: rgba(10, 10, 9, 0.28);
  backdrop-filter: blur(8px);
  transition: color 0.4s, background 0.4s;
}

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

.round-link svg {
  position: absolute;
  right: 50%;
  bottom: 0.9rem;
  width: 1.1rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  transform: translateX(50%);
}

.hero__index {
  position: absolute;
  z-index: 2;
  bottom: 2rem;
  left: var(--gutter);
  font-size: 0.64rem;
  letter-spacing: 0.08em;
}

/* Moving headline */
.ticker {
  overflow: hidden;
  color: var(--ink);
  background: var(--acid);
}

.ticker__track {
  display: flex;
  align-items: center;
  width: max-content;
  padding: 1rem 0;
  animation: ticker 25s linear infinite;
  will-change: transform;
}

.ticker span {
  padding: 0 1.25rem;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.ticker i {
  font-size: 0.9rem;
  font-style: normal;
}

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

/* Manifesto */
.manifesto {
  position: relative;
  padding-top: 4rem;
  padding-bottom: clamp(7rem, 12vw, 13rem);
  background: var(--bone);
}

.manifesto__statement {
  position: relative;
  padding: clamp(7rem, 12vw, 12rem) 0 clamp(7rem, 10vw, 10rem);
}

.manifesto__statement h2 {
  position: relative;
  z-index: 2;
  max-width: 14ch;
}

.manifesto__statement h2 em {
  white-space: nowrap;
}

.manifesto__orbit {
  position: absolute;
  top: 18%;
  right: 5%;
}

.orbit-mark {
  width: clamp(8rem, 16vw, 16rem);
  aspect-ratio: 1;
  border: 1px solid var(--line-dark);
  border-radius: 50%;
  animation: slow-rotate 18s linear infinite;
}

.orbit-mark::before,
.orbit-mark::after,
.orbit-mark span,
.orbit-mark i {
  position: absolute;
  display: block;
  border-radius: 50%;
  content: "";
}

.orbit-mark::before {
  inset: 17%;
  border: 1px solid var(--line-dark);
}

.orbit-mark::after {
  top: -0.55rem;
  left: 50%;
  width: 1.1rem;
  height: 1.1rem;
  background: var(--red);
}

.orbit-mark span:first-child {
  top: 32%;
  left: -0.35rem;
  width: 0.72rem;
  height: 0.72rem;
  background: var(--blue);
}

.orbit-mark span:nth-child(2) {
  right: 13%;
  bottom: 4%;
  width: 0.48rem;
  height: 0.48rem;
  background: var(--ink);
}

.orbit-mark i {
  top: 50%;
  left: 50%;
  width: 19%;
  height: 19%;
  background: var(--ink);
  transform: translate(-50%, -50%);
}

@keyframes slow-rotate { to { rotate: 360deg; } }

.manifesto__body {
  display: grid;
  grid-template-columns: 1fr minmax(18rem, 0.95fr) minmax(18rem, 0.95fr);
  gap: clamp(2rem, 5vw, 7rem);
  padding-top: 1.5rem;
  border-top: 1px solid var(--line-dark);
}

.manifesto__pull {
  grid-column: 2;
  max-width: 25rem;
  font-size: clamp(1.4rem, 2vw, 2.1rem);
  letter-spacing: -0.035em;
  line-height: 1.1;
}

.manifesto__copy {
  grid-column: 3;
  display: grid;
  gap: 1.25rem;
  max-width: 32rem;
  font-size: 0.88rem;
  line-height: 1.5;
}

/* Operating model */
.model {
  position: relative;
  padding-top: 3.5rem;
  padding-bottom: clamp(7rem, 11vw, 11rem);
  overflow: hidden;
  color: var(--bone);
  background: var(--ink);
}

.signal-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.45;
  pointer-events: none;
}

.model__intro {
  position: relative;
  display: grid;
  grid-template-columns: 2fr minmax(17rem, 0.65fr);
  align-items: end;
  gap: 3rem;
  padding: clamp(7rem, 12vw, 12rem) 0 clamp(6rem, 9vw, 10rem);
}

.model__intro p {
  max-width: 25rem;
  padding-bottom: 0.65rem;
  font-size: 0.93rem;
}

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

.step {
  border-bottom: 1px solid var(--line-light);
}

.step > button {
  display: grid;
  grid-template-columns: 0.45fr 2fr 1fr auto;
  align-items: center;
  width: 100%;
  min-height: 8rem;
  text-align: left;
}

.step__number,
.step__tag {
  font-size: 0.67rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.step__title {
  font-size: clamp(2.8rem, 5vw, 5rem);
  letter-spacing: -0.06em;
  line-height: 1;
  transition: color 0.3s, transform 0.45s var(--ease-out);
}

.step > button:hover .step__title,
.step.is-active .step__title {
  color: var(--acid);
  transform: translateX(0.6rem);
}

.step__toggle {
  position: relative;
  width: 3rem;
  height: 3rem;
  border: 1px solid var(--line-light);
  border-radius: 50%;
}

.step__toggle::before,
.step__toggle::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0.75rem;
  height: 1px;
  background: currentColor;
  content: "";
  transform: translate(-50%, -50%);
  transition: transform 0.4s var(--ease-out);
}

.step__toggle::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.step.is-active .step__toggle::after {
  transform: translate(-50%, -50%) rotate(0);
}

.step__detail {
  display: grid;
  grid-template-columns: 0.45fr 2fr 1fr auto;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.65s var(--ease-out), opacity 0.35s;
}

.step.is-active .step__detail {
  max-height: 20rem;
  opacity: 1;
}

.step__detail > p {
  grid-column: 2;
  max-width: 37rem;
  padding: 0 2rem 3.5rem 0;
  font-size: clamp(1rem, 1.4vw, 1.35rem);
  letter-spacing: -0.02em;
}

.step__detail ul {
  grid-column: 3;
  margin: 0;
  padding: 0 0 3.5rem;
  list-style: none;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  line-height: 1.7;
  text-transform: uppercase;
}

/* AI-native operating layer */
.ai-native {
  position: relative;
  padding-top: 3.5rem;
  padding-bottom: clamp(7rem, 11vw, 11rem);
  overflow: hidden;
  color: var(--bone);
  background: #0a0b0c;
}

.ai-native::before {
  position: absolute;
  top: 8rem;
  right: -18vw;
  width: 52vw;
  min-width: 38rem;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(23, 57, 245, 0.2), transparent 68%);
  content: "";
  filter: blur(2rem);
  pointer-events: none;
}

.ai-native__head {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.5fr minmax(19rem, 0.55fr);
  align-items: end;
  gap: clamp(3rem, 7vw, 9rem);
  padding: clamp(7rem, 11vw, 11rem) 0 clamp(5rem, 8vw, 8rem);
}

.ai-native__head h2 {
  font-size: clamp(4.2rem, 7.8vw, 7.8rem);
  font-weight: 400;
  letter-spacing: -0.065em;
  line-height: 0.9;
}

.ai-native__head h2 em {
  color: var(--acid);
  font-family: var(--serif);
  font-weight: 400;
}

.ai-native__copy {
  display: flex;
  flex-direction: column;
  gap: 3.5rem;
  max-width: 30rem;
  padding-bottom: 0.5rem;
  font-size: clamp(0.92rem, 1.08vw, 1.08rem);
  line-height: 1.48;
}

.ai-native__copy > span {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.59rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.ai-native__copy > span i {
  width: 0.48rem;
  height: 0.48rem;
  border-radius: 50%;
  background: var(--acid);
  box-shadow: 0 0 0 0 rgba(121, 230, 255, 0.45);
  animation: ai-live 2.3s infinite;
}

@keyframes ai-live {
  70% { box-shadow: 0 0 0 0.65rem rgba(121, 230, 255, 0); }
  100% { box-shadow: 0 0 0 0 rgba(121, 230, 255, 0); }
}

.ai-native__stage {
  position: relative;
  z-index: 2;
  height: clamp(36rem, 63vw, 58rem);
  min-height: 36rem;
  border: 1px solid rgba(241, 236, 223, 0.22);
  overflow: hidden;
  background: radial-gradient(circle at 50% 50%, #131827 0%, #0b0d12 32%, #070809 72%);
  isolation: isolate;
}

.ai-native__stage::before,
.ai-native__stage::after {
  position: absolute;
  z-index: 2;
  content: "";
  pointer-events: none;
}

.ai-native__stage::before {
  inset: 0;
  border: 1px solid rgba(121, 230, 255, 0.12);
  box-shadow: inset 0 0 7rem rgba(0, 0, 0, 0.72);
}

.ai-native__stage::after {
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1px;
  background: linear-gradient(transparent, rgba(121, 230, 255, 0.45), transparent);
  opacity: 0.45;
  animation: ai-scan 8s ease-in-out infinite;
}

@keyframes ai-scan {
  0%, 100% { left: 8%; opacity: 0; }
  15%, 85% { opacity: 0.42; }
  50% { left: 92%; }
}

.ai-native__canvas,
.ai-native__stage-grid {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.ai-native__canvas {
  z-index: 1;
}

.ai-native__stage-grid {
  z-index: 0;
  background-image: linear-gradient(rgba(241, 236, 223, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(241, 236, 223, 0.045) 1px, transparent 1px);
  background-size: 4rem 4rem;
  mask-image: radial-gradient(circle at 50% 50%, black 0%, rgba(0, 0, 0, 0.35) 52%, transparent 85%);
}

.ai-native__hud {
  position: absolute;
  z-index: 4;
  top: 1.2rem;
  right: 1.2rem;
  left: 1.2rem;
  display: flex;
  justify-content: space-between;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid rgba(241, 236, 223, 0.18);
  font-size: 0.56rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.ai-native__core {
  position: absolute;
  z-index: 3;
  top: 50%;
  left: 50%;
  display: grid;
  width: clamp(9rem, 17vw, 17rem);
  aspect-ratio: 1;
  place-items: center;
  border: 1px solid rgba(241, 236, 223, 0.34);
  border-radius: 50%;
  background: radial-gradient(circle at 42% 36%, rgba(121, 230, 255, 0.2), rgba(23, 57, 245, 0.2) 38%, rgba(7, 8, 9, 0.84) 72%);
  box-shadow: 0 0 7rem rgba(23, 57, 245, 0.24), inset 0 0 3rem rgba(121, 230, 255, 0.1);
  transform: translate(-50%, -50%);
}

.ai-native__core::before,
.ai-native__core::after,
.ai-native__core i {
  position: absolute;
  border: 1px solid rgba(121, 230, 255, 0.34);
  border-radius: 50%;
  content: "";
}

.ai-native__core::before {
  inset: -31%;
  border-color: rgba(241, 236, 223, 0.19);
  transform: scaleY(0.36) rotate(18deg);
  animation: ai-orbit-one 13s linear infinite;
}

.ai-native__core::after {
  inset: -54%;
  border-color: rgba(121, 230, 255, 0.21);
  transform: scaleY(0.26) rotate(-28deg);
  animation: ai-orbit-two 18s linear infinite;
}

.ai-native__core i:first-child {
  inset: 14%;
}

.ai-native__core i:nth-child(2) {
  inset: 31%;
  border-color: rgba(239, 59, 35, 0.6);
  animation: ai-breathe 3.6s ease-in-out infinite;
}

.ai-native__core i:nth-child(3) {
  top: -0.4rem;
  left: 50%;
  width: 0.8rem;
  height: 0.8rem;
  border: 0;
  background: var(--red);
  box-shadow: 0 0 1.5rem rgba(239, 59, 35, 0.65);
  transform: translateX(-50%);
}

.ai-native__core span {
  position: relative;
  z-index: 2;
  font-size: clamp(0.62rem, 0.8vw, 0.78rem);
  font-weight: 500;
  letter-spacing: 0.14em;
  line-height: 1.25;
  text-align: center;
}

@keyframes ai-orbit-one {
  to { rotate: 360deg; }
}

@keyframes ai-orbit-two {
  to { rotate: -360deg; }
}

@keyframes ai-breathe {
  50% { scale: 1.22; opacity: 0.45; }
}

.ai-native__axis {
  position: absolute;
  z-index: 4;
  right: 1.2rem;
  bottom: 1.2rem;
  left: 1.2rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(241, 236, 223, 0.18);
}

.ai-native__axis span {
  padding-top: 0.75rem;
  font-size: 0.56rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.ai-native__axis span:nth-child(2) { text-align: center; }
.ai-native__axis span:last-child { text-align: right; }

.ai-native__instruction {
  position: absolute;
  z-index: 4;
  right: 1.2rem;
  top: 50%;
  font-size: 0.53rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transform: rotate(90deg) translateX(50%);
  transform-origin: right center;
}

.ai-native__footer {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line-light);
  margin-top: clamp(4rem, 7vw, 7rem);
  font-size: clamp(1.15rem, 1.8vw, 1.8rem);
  letter-spacing: -0.025em;
}

.ai-native__footer p {
  max-width: 24rem;
}

.ai-native__footer > span {
  justify-self: end;
  align-self: end;
  font-size: 0.63rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* Acquisition infrastructure */

.distribution {
  position: relative;
  padding-top: 3.5rem;
  padding-bottom: clamp(7rem, 11vw, 11rem);
  overflow: hidden;
  color: var(--ink);
  background: var(--ice);
}

.distribution::before {
  position: absolute;
  top: -28rem;
  right: -18rem;
  width: 46rem;
  height: 46rem;
  border: 1px solid rgba(23, 57, 245, 0.16);
  border-radius: 50%;
  box-shadow: inset 0 0 0 7rem var(--ice), inset 0 0 0 calc(7rem + 1px) rgba(23, 57, 245, 0.14),
    inset 0 0 0 14rem var(--ice), inset 0 0 0 calc(14rem + 1px) rgba(23, 57, 245, 0.12);
  content: "";
}

.distribution__scan {
  position: absolute;
  z-index: 1;
  top: 0;
  bottom: 0;
  left: 0;
  width: 1px;
  background: linear-gradient(transparent, var(--blue), transparent);
  opacity: 0.5;
  animation: scan-across 9s ease-in-out infinite;
  pointer-events: none;
}

@keyframes scan-across {
  0%, 100% { left: 0; opacity: 0; }
  12%, 88% { opacity: 0.45; }
  50% { left: 100%; }
}

.distribution__head {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 2fr minmax(18rem, 0.72fr);
  align-items: end;
  gap: 3rem;
  padding: clamp(6rem, 10vw, 10rem) 0 clamp(5rem, 8vw, 8rem);
}

.distribution__status {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 2.25rem;
  font-size: 0.64rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.distribution__status > span {
  width: 0.52rem;
  height: 0.52rem;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 0 0 rgba(23, 57, 245, 0.35);
  animation: platform-pulse 2.4s infinite;
}

.distribution__head h2 {
  font-size: clamp(3.7rem, 7.2vw, 7.2rem);
  font-weight: 400;
  letter-spacing: -0.062em;
  line-height: 0.9;
}

.distribution__head h2 em {
  color: var(--blue);
  font-family: var(--serif);
  font-weight: 400;
}

.distribution__intro {
  max-width: 31rem;
  padding-bottom: 0.5rem;
  font-size: clamp(0.9rem, 1.1vw, 1.05rem);
  line-height: 1.48;
}

.distribution__metrics {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.45fr 1fr 1fr;
  border-top: 1px solid var(--line-dark);
  border-left: 1px solid var(--line-dark);
}

.metric {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 24rem;
  padding: 1.2rem;
  border-right: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}

.metric::before {
  position: absolute;
  top: 0;
  right: 0;
  width: 0.55rem;
  height: 0.55rem;
  background: var(--blue);
  content: "";
  transform: translate(50%, -50%);
}

.metric__index,
.metric small {
  font-size: 0.59rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.metric strong {
  margin: auto 0;
  font-size: clamp(4.7rem, 8.5vw, 8.5rem);
  font-weight: 400;
  letter-spacing: -0.09em;
  line-height: 0.9;
  font-variant-numeric: tabular-nums;
}

.metric strong sup {
  margin-left: 0.08em;
  font-family: var(--serif);
  font-size: 0.34em;
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.02em;
  vertical-align: top;
}

.metric--primary strong {
  color: var(--blue);
}

.metric p {
  max-width: 14rem;
  font-size: 0.74rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.metric small {
  position: absolute;
  right: 1.2rem;
  bottom: 1.2rem;
  color: rgba(17, 17, 15, 0.52);
  font-size: 0.5rem;
}

.platforms {
  position: relative;
  z-index: 2;
  margin-top: clamp(5rem, 8vw, 8rem);
  border-top: 1px solid var(--line-dark);
}

.platform {
  display: grid;
  grid-template-columns: 0.35fr 1.65fr 1fr auto;
  align-items: center;
  min-height: 8.5rem;
  border-bottom: 1px solid var(--line-dark);
  transition: color 0.35s, background 0.35s, padding 0.5s var(--ease-out);
}

.platform:hover {
  padding-right: 1.25rem;
  padding-left: 1.25rem;
  color: var(--bone);
  background: var(--blue);
}

.platform__number,
.platform > p,
.platform__live {
  font-size: 0.63rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.platform__name {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.platform__name strong {
  font-size: clamp(2.7rem, 5vw, 5rem);
  font-weight: 400;
  letter-spacing: -0.06em;
}

.platform__icon {
  display: block;
  width: clamp(2.4rem, 3.7vw, 3.8rem);
  height: clamp(2.4rem, 3.7vw, 3.8rem);
  background: currentColor;
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
}

.platform__icon--meta { mask-image: url("assets/platforms/meta.svg"); }
.platform__icon--google { mask-image: url("assets/platforms/google-ads.svg"); }
.platform__icon--tiktok { mask-image: url("assets/platforms/tiktok.svg"); }

.platform__live {
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.platform__live i {
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: var(--blue);
}

.platform:hover .platform__live i {
  background: var(--acid);
}

@keyframes platform-pulse {
  70% { box-shadow: 0 0 0 0.65rem rgba(23, 57, 245, 0); }
  100% { box-shadow: 0 0 0 0 rgba(23, 57, 245, 0); }
}

/* Culture */
.culture {
  color: var(--bone);
  background: var(--blue);
}

.culture__top {
  padding-top: 3.5rem;
  padding-bottom: clamp(6rem, 10vw, 10rem);
}

.culture__top h2 {
  max-width: 13.5ch;
  padding: clamp(7rem, 10vw, 10rem) 0 4rem;
  font-size: clamp(3.8rem, 7.6vw, 7.7rem);
  font-weight: 400;
  letter-spacing: -0.064em;
  line-height: 0.9;
}

.culture__top h2 em {
  font-family: var(--serif);
  font-weight: 400;
}

.culture__copy {
  display: grid;
  grid-template-columns: 1fr minmax(18rem, 1fr);
  gap: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line-light);
}

.culture__copy span {
  font-size: 2rem;
}

.culture__copy p {
  max-width: 39rem;
  font-size: clamp(1.18rem, 1.7vw, 1.72rem);
  letter-spacing: -0.03em;
  line-height: 1.22;
}

.culture__tiles {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1.15fr;
  min-height: 42rem;
}

.culture-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 34rem;
  padding: 1.4rem;
  overflow: hidden;
}

.culture-card p {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  padding-top: 0.8rem;
  border-top: 1px solid currentColor;
  font-size: 0.65rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.culture-card--image {
  color: var(--bone);
  background: #0d0d0c;
}

.culture-card__art {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, #2a2a27, #080807 65%);
}

.halo {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 62%;
  aspect-ratio: 1;
  border: 1px solid rgba(241, 236, 223, 0.65);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.halo::after {
  position: absolute;
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 2rem var(--red);
  content: "";
}

.halo--one {
  animation: orbit-one 9s linear infinite;
}

.halo--one::after { top: 7%; left: 12%; }

.halo--two {
  width: 42%;
  border-color: rgba(121, 230, 255, 0.6);
  animation: orbit-two 7s linear infinite;
}

.halo--two::after {
  right: -0.5rem;
  bottom: 28%;
  width: 0.9rem;
  height: 0.9rem;
  background: var(--acid);
  box-shadow: 0 0 2rem var(--acid);
}

.halo--three {
  width: 23%;
  border: 0;
  background: var(--blue);
  box-shadow: inset -2rem -1rem 4rem rgba(0, 0, 0, 0.65), 0 0 5rem rgba(23, 57, 245, 0.65);
}

.halo--three::after { display: none; }

@keyframes orbit-one {
  from { transform: translate(-50%, -50%) rotate(0deg) scaleY(0.55); }
  to { transform: translate(-50%, -50%) rotate(360deg) scaleY(0.55); }
}

@keyframes orbit-two {
  from { transform: translate(-50%, -50%) rotate(360deg) scaleX(0.65); }
  to { transform: translate(-50%, -50%) rotate(0deg) scaleX(0.65); }
}

.culture-card--red {
  color: var(--ink);
  background: var(--red);
}

.culture-card--red blockquote {
  max-width: 10ch;
  font-family: var(--serif);
  font-size: clamp(2.4rem, 3.5vw, 4rem);
  font-style: italic;
  letter-spacing: -0.04em;
  line-height: 1.02;
}

.culture-card--cream {
  color: var(--ink);
  background: var(--bone);
}

.culture-card__equation {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex: 1;
  font-size: clamp(2rem, 3.3vw, 3.6rem);
  letter-spacing: -0.05em;
  line-height: 1.05;
}

.culture-card__equation i {
  color: var(--red);
  font-family: var(--serif);
  font-size: 1.8em;
  font-weight: 400;
}

/* Portfolio */
.portfolio {
  padding-top: 3.5rem;
  padding-bottom: clamp(7rem, 12vw, 13rem);
  background: var(--bone);
}

.portfolio__head {
  display: grid;
  grid-template-columns: 2fr minmax(17rem, 0.58fr);
  align-items: end;
  gap: 3rem;
  padding: clamp(7rem, 11vw, 11rem) 0 clamp(5rem, 8vw, 8rem);
}

.portfolio__head p {
  max-width: 23rem;
  padding-bottom: 0.6rem;
  font-size: 0.89rem;
}

.portfolio__stage {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: clamp(38rem, 63vw, 58rem);
  overflow: hidden;
  color: var(--bone);
  background: #cbc4b3;
  perspective: 1200px;
}

.portfolio__stage::before {
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, rgba(255, 255, 255, 0.28), transparent 36%),
    radial-gradient(circle at center, rgba(255, 255, 255, 0.25), transparent 60%);
  content: "";
}

.portfolio-card {
  position: absolute;
  top: 50%;
  left: 50%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: min(31vw, 26rem);
  min-width: 18rem;
  aspect-ratio: 0.74;
  padding: 1rem;
  box-shadow: 0 2.3rem 5rem rgba(17, 17, 15, 0.2);
  transform-style: preserve-3d;
  transition: transform 0.35s ease-out;
}

.portfolio-card span,
.portfolio-card p {
  position: relative;
  z-index: 2;
  font-size: 0.61rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.portfolio-card--one {
  color: var(--ink);
  background: var(--acid);
  transform: translate(-114%, -48%) rotate(-9deg);
}

.portfolio-card--two {
  z-index: 2;
  background: var(--red);
  transform: translate(-50%, -54%) rotate(2deg);
}

.portfolio-card--three {
  z-index: 1;
  background: var(--blue);
  transform: translate(17%, -46%) rotate(10deg);
}

.portfolio-card__shape {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 58%;
  aspect-ratio: 1;
  transform: translate(-50%, -50%);
}

.shape-one {
  border: 2px solid var(--ink);
  border-radius: 50%;
  box-shadow: inset 0 0 0 2.5rem var(--acid), inset 0 0 0 2.65rem var(--ink);
}

.shape-one::before,
.shape-one::after {
  position: absolute;
  border-radius: 50%;
  content: "";
}

.shape-one::before {
  top: -1rem;
  left: 50%;
  width: 2rem;
  height: 2rem;
  background: var(--red);
}

.shape-one::after {
  right: -0.6rem;
  bottom: 15%;
  width: 1.2rem;
  height: 1.2rem;
  background: var(--blue);
}

.shape-two {
  width: 64%;
  border-radius: 50% 50% 10% 50%;
  background: var(--bone);
  box-shadow: inset -3rem -2rem 4rem rgba(239, 59, 35, 0.4);
  rotate: -25deg;
}

.shape-two::after {
  position: absolute;
  right: -8%;
  bottom: -8%;
  width: 42%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--ink);
  content: "";
}

.shape-three {
  width: 68%;
  border: 1.5rem solid var(--bone);
  border-top-color: transparent;
  border-radius: 50%;
  rotate: 35deg;
}

.shape-three::after {
  position: absolute;
  top: 0;
  right: -1rem;
  width: 2rem;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--acid);
  content: "";
}

.portfolio__soon {
  position: relative;
  z-index: 4;
  color: var(--bone);
  font-size: clamp(3.7rem, 6.6vw, 6.7rem);
  letter-spacing: -0.07em;
  line-height: 0.9;
  text-align: center;
  text-shadow: 0 0.1rem 2rem rgba(0, 0, 0, 0.16);
  pointer-events: none;
}

.portfolio__soon em {
  font-family: var(--serif);
  font-weight: 400;
}

.portfolio__soon span {
  display: block;
  margin-top: 2rem;
  font-size: 0.63rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* Principles */
.principles {
  padding-top: 3.5rem;
  padding-bottom: clamp(7rem, 11vw, 11rem);
  color: var(--bone);
  background: var(--ink);
}

.principles__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  padding-top: clamp(6rem, 10vw, 10rem);
  border-left: 1px solid var(--line-light);
}

.principle {
  min-height: 24rem;
  padding: 1.4rem;
  border-right: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
}

.principle:nth-child(-n + 2) {
  border-top: 1px solid var(--line-light);
}

.principle span {
  font-size: 0.65rem;
  letter-spacing: 0.08em;
}

.principle h3 {
  max-width: 8ch;
  margin: 5rem 0 2.5rem;
  font-family: var(--serif);
  font-size: clamp(2.8rem, 4.2vw, 4.5rem);
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 1;
}

.principle p {
  max-width: 26rem;
  font-size: 0.84rem;
  line-height: 1.5;
}

.principle:nth-child(1) h3 { color: var(--acid); }
.principle:nth-child(2) h3 { color: var(--red); }
.principle:nth-child(3) h3 { color: #6e83ff; }

/* Careers */
.careers {
  padding-top: 3.5rem;
  padding-bottom: clamp(6rem, 10vw, 10rem);
  background: var(--bone);
}

.careers h2 {
  max-width: 12ch;
  padding: clamp(6rem, 9vw, 9rem) 0 clamp(5rem, 8vw, 8rem);
}

.careers__bottom {
  display: grid;
  grid-template-columns: 1fr minmax(19rem, 1fr);
  align-items: end;
  gap: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line-dark);
}

.careers__bottom > p {
  max-width: 27rem;
  font-size: 0.9rem;
}

/* Contact */
.contact {
  overflow: hidden;
  color: var(--ink);
  background: var(--red);
}

.contact__marquee {
  border-bottom: 1px solid var(--line-dark);
  overflow: hidden;
}

.contact__marquee div {
  display: flex;
  align-items: center;
  width: max-content;
  padding: 1.5rem 0 1.9rem;
  animation: contact-marquee 16s linear infinite;
}

.contact__marquee span {
  padding: 0 2.2rem;
  font-size: clamp(4rem, 8vw, 7.5rem);
  letter-spacing: -0.07em;
  line-height: 0.92;
  white-space: nowrap;
}

.contact__marquee i {
  font-size: 2rem;
  font-style: normal;
}

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

.contact__inner {
  padding-top: 3.5rem;
  padding-bottom: clamp(6rem, 10vw, 10rem);
}

.contact__inner h2 {
  max-width: 12ch;
  padding: clamp(7rem, 10vw, 10rem) 0 clamp(6rem, 8vw, 8rem);
  font-size: clamp(4rem, 7.8vw, 7.9rem);
  font-weight: 400;
  letter-spacing: -0.065em;
  line-height: 0.9;
}

.contact__inner h2 em {
  font-family: var(--serif);
  font-weight: 400;
}

.contact__bottom {
  display: grid;
  grid-template-columns: 1fr minmax(19rem, 1fr);
  align-items: end;
  gap: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line-dark);
}

.contact__bottom > p {
  max-width: 26rem;
  font-size: 0.9rem;
}

.contact-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 1rem;
  border-bottom: 2px solid;
  font-size: clamp(2.4rem, 5vw, 5rem);
  letter-spacing: -0.06em;
  line-height: 1;
}

.contact-link svg {
  width: clamp(2.5rem, 4vw, 4rem);
  fill: none;
  stroke: currentColor;
  stroke-width: 1.25;
  transition: transform 0.5s var(--ease-out);
}

.contact-link:hover svg {
  transform: translate(0.35rem, -0.35rem);
}

/* Footer */
.site-footer {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 2rem;
  padding-top: 3.5rem;
  padding-bottom: 2rem;
  color: var(--bone);
  background: var(--ink);
}

.footer__brand {
  font-size: clamp(2.4rem, 4vw, 4rem);
  font-weight: 500;
  letter-spacing: -0.075em;
  line-height: 0.9;
}

.footer__brand span {
  vertical-align: top;
  margin-left: 0.2rem;
  font-size: 0.25em;
  letter-spacing: 0;
}

.footer__middle,
.footer__end {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 10rem;
  padding-top: 0.5rem;
  font-size: 0.7rem;
  line-height: 1.45;
}

.footer__middle a {
  width: fit-content;
  border-bottom: 1px solid;
}

.footer__end {
  align-items: flex-end;
  text-align: right;
}

.footer__end div {
  display: flex;
  gap: 1.5rem;
}

/* Legal pages */
.legal-page {
  --legal-accent: var(--acid);
  color: var(--ink);
  background: var(--bone);
}

.legal-page--terms {
  --legal-accent: var(--red);
}

.legal-header {
  position: fixed;
  z-index: 500;
  top: 0;
  right: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.35rem var(--gutter);
  color: white;
  mix-blend-mode: difference;
}

.legal-header__back {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.legal-header__back svg {
  width: 2.8rem;
  height: 2.8rem;
  padding: 0.72rem;
  border: 1px solid currentColor;
  border-radius: 50%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1;
  transition: transform 0.45s var(--ease-out);
}

.legal-header__back:hover svg {
  transform: translateX(-0.25rem);
}

.legal-hero {
  position: relative;
  min-height: min(54rem, 92vh);
  padding: 8rem var(--gutter) 4rem;
  overflow: hidden;
  color: var(--bone);
  background:
    radial-gradient(circle at 82% 38%, color-mix(in srgb, var(--legal-accent) 17%, transparent), transparent 28%),
    var(--ink);
}

.legal-hero::before {
  position: absolute;
  inset: 0;
  content: "";
  background-image:
    linear-gradient(rgba(241, 236, 223, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(241, 236, 223, 0.055) 1px, transparent 1px);
  background-size: clamp(3rem, 7vw, 7rem) clamp(3rem, 7vw, 7rem);
  mask-image: linear-gradient(to bottom, black, transparent 88%);
}

.legal-hero__meta {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line-light);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.legal-hero__meta span:only-child {
  margin-left: auto;
}

.legal-hero__title {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: var(--gutter);
  transform: translateY(-48%);
}

.legal-hero__title > p {
  margin: 0 0 1.5rem 0.45rem;
  color: var(--legal-accent);
  font-size: 0.63rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  animation: legal-enter 0.9s var(--ease-out) both 0.15s;
}

.legal-hero h1 {
  max-width: 12ch;
  font-size: clamp(4.5rem, 10vw, 9.5rem);
  font-weight: 400;
  letter-spacing: -0.065em;
  line-height: 0.86;
  animation: legal-enter 1.05s var(--ease-out) both;
}

.legal-hero h1 em {
  font-family: var(--serif);
  font-weight: 400;
}

.legal-hero__intro {
  position: absolute;
  z-index: 2;
  right: var(--gutter);
  bottom: 4rem;
  width: min(27rem, 34vw);
  padding-top: 1rem;
  border-top: 1px solid var(--line-light);
  font-size: clamp(0.83rem, 1.05vw, 1rem);
  line-height: 1.55;
  animation: legal-enter 0.9s var(--ease-out) both 0.3s;
}

.legal-orbit {
  position: absolute;
  z-index: 1;
  top: 20%;
  right: 4%;
  width: clamp(19rem, 38vw, 40rem);
  aspect-ratio: 1;
  animation: legal-float 8s ease-in-out infinite;
}

.legal-orbit span {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(241, 236, 223, 0.17);
  border-radius: 50%;
}

.legal-orbit span:first-child {
  transform: rotateX(68deg);
  animation: legal-spin 18s linear infinite;
}

.legal-orbit span:nth-child(2) {
  transform: rotateY(68deg);
  animation: legal-spin-alt 23s linear infinite reverse;
}

.legal-orbit::before,
.legal-orbit::after {
  position: absolute;
  top: 50%;
  left: 50%;
  content: "";
  border: 1px solid rgba(241, 236, 223, 0.11);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.legal-orbit::before { width: 68%; height: 68%; }
.legal-orbit::after { width: 34%; height: 34%; }

.legal-orbit i {
  position: absolute;
  top: 49%;
  left: 49%;
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 50%;
  background: var(--legal-accent);
  box-shadow: 0 0 3rem 1rem color-mix(in srgb, var(--legal-accent) 30%, transparent);
}

@keyframes legal-enter {
  from { opacity: 0; transform: translateY(2rem); }
}

@keyframes legal-float {
  50% { translate: 0 -1.2rem; }
}

@keyframes legal-spin {
  to { rotate: 360deg; }
}

@keyframes legal-spin-alt {
  to { rotate: -360deg; }
}

.legal-layout {
  display: grid;
  grid-template-columns: minmax(12rem, 0.65fr) minmax(0, 1.35fr);
  gap: clamp(4rem, 11vw, 12rem);
  padding-top: clamp(5rem, 9vw, 9rem);
  padding-bottom: clamp(7rem, 12vw, 13rem);
  background: var(--bone);
}

.legal-index {
  position: sticky;
  top: 7rem;
  align-self: start;
  padding-top: 1rem;
  border-top: 1px solid var(--line-dark);
}

.legal-index > p {
  margin-bottom: 2.5rem;
  font-size: 0.64rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.legal-index nav {
  display: flex;
  flex-direction: column;
}

.legal-index a {
  padding: 0.82rem 0;
  border-bottom: 1px solid rgba(17, 17, 15, 0.12);
  color: rgba(17, 17, 15, 0.62);
  font-size: 0.69rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: color 0.25s, padding-left 0.4s var(--ease-out);
}

.legal-index a:hover {
  padding-left: 0.45rem;
  color: var(--ink);
}

.legal-copy {
  max-width: 52rem;
}

.legal-copy__lead {
  margin-bottom: clamp(5rem, 9vw, 8rem);
  font-family: var(--serif);
  font-size: clamp(1.9rem, 3.2vw, 3.25rem);
  letter-spacing: -0.035em;
  line-height: 1.1;
}

.legal-copy section {
  padding: 2.8rem 0 3.6rem;
  border-top: 1px solid var(--line-dark);
  scroll-margin-top: 5rem;
}

.legal-copy h2 {
  display: grid;
  grid-template-columns: 3.2rem 1fr;
  gap: 0.75rem;
  margin-bottom: 2rem;
  font-size: clamp(1.35rem, 2.15vw, 2.2rem);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 1.05;
}

.legal-copy h2 span {
  padding-top: 0.4em;
  color: color-mix(in srgb, var(--legal-accent) 75%, var(--ink));
  font-size: 0.32em;
  letter-spacing: 0.05em;
}

.legal-copy h3 {
  margin: 2.25rem 0 0.65rem 3.95rem;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.legal-copy section > p,
.legal-copy section > ul {
  margin: 0 0 1.15rem 3.95rem;
  color: rgba(17, 17, 15, 0.72);
  font-size: 0.95rem;
  line-height: 1.75;
}

.legal-copy section > ul {
  padding: 0;
  list-style: none;
}

.legal-copy li {
  position: relative;
  padding: 0.48rem 0 0.48rem 1.25rem;
  border-bottom: 1px solid rgba(17, 17, 15, 0.09);
}

.legal-copy li::before {
  position: absolute;
  top: 1.08rem;
  left: 0;
  width: 0.3rem;
  height: 0.3rem;
  content: "";
  border-radius: 50%;
  background: var(--legal-accent);
}

.legal-copy section a:not(.legal-contact > a) {
  border-bottom: 1px solid;
}

.legal-copy .legal-contact {
  margin-top: 3rem;
  padding: clamp(2rem, 4vw, 4rem);
  border: 0;
  color: var(--bone);
  background: var(--ink);
}

.legal-contact h2 span { color: var(--legal-accent); }

.legal-copy .legal-contact > p {
  margin-left: 3.95rem;
  color: rgba(241, 236, 223, 0.66);
}

.legal-contact__address a {
  display: inline-block;
  margin-top: 1.5rem;
  padding-bottom: 0.25rem;
  border-bottom: 1px solid;
  font-family: var(--serif);
  font-size: clamp(1.4rem, 3vw, 2.7rem);
  line-height: 1;
}

.legal-page .footer__end [aria-current="page"] {
  color: var(--legal-accent);
}

@media (max-width: 760px) {
  .legal-header__back span { display: none; }

  .legal-hero {
    min-height: 47rem;
    padding-top: 7.5rem;
  }

  .legal-hero__meta span:last-child { text-align: right; }

  .legal-hero__title { top: 46%; }

  .legal-hero h1 {
    font-size: clamp(3.5rem, 18vw, 5.2rem);
    line-height: 0.9;
  }

  .legal-hero__intro {
    right: auto;
    bottom: 2.5rem;
    left: var(--gutter);
    width: calc(100% - var(--gutter) * 2);
  }

  .legal-orbit {
    top: 25%;
    right: -35%;
    width: 30rem;
    opacity: 0.72;
  }

  .legal-layout {
    display: block;
    padding-top: 4.5rem;
  }

  .legal-index {
    position: relative;
    top: auto;
    margin-bottom: 5rem;
  }

  .legal-index nav {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 1.5rem;
  }

  .legal-copy__lead {
    font-size: 1.85rem;
    line-height: 1.12;
  }

  .legal-copy h2 { grid-template-columns: 2.5rem 1fr; }

  .legal-copy h3,
  .legal-copy section > p,
  .legal-copy section > ul,
  .legal-copy .legal-contact > p {
    margin-left: 3.25rem;
  }

  .legal-copy .legal-contact {
    margin-right: calc(var(--gutter) * -1);
    margin-left: calc(var(--gutter) * -1);
    padding-right: var(--gutter);
    padding-left: var(--gutter);
  }

  .legal-contact__address a {
    max-width: calc(100% - 3.25rem);
    font-size: 1.4rem;
    overflow-wrap: anywhere;
  }
}

/* Scroll animation helpers */
.reveal {
  opacity: 0;
  transform: translateY(2rem);
  transition: opacity 0.8s ease, transform 1s var(--ease-out);
  transition-delay: var(--delay, 0ms);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

.reveal-text {
  opacity: 0;
  transform: translateY(4rem);
  transition: opacity 0.9s ease, transform 1.2s var(--ease-out);
}

.reveal-text.is-visible {
  opacity: 1;
  transform: none;
}

/* Tablet */
@media (max-width: 950px) {
  :root { --header-h: 5.5rem; }

  .cursor { display: none; }

  .hero__title {
    font-size: clamp(4.2rem, 10.8vw, 7rem);
  }

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

  .hero__lede {
    grid-column: 1;
    padding-left: 20vw;
  }

  .round-link { grid-column: 2; }

  .hero__index { display: none; }

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

  .manifesto__pull { grid-column: 1; }
  .manifesto__copy { grid-column: 2; }

  .ai-native__head {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .ai-native__copy {
    max-width: 32rem;
    margin-left: auto;
  }

  .model__intro,
  .distribution__head,
  .portfolio__head {
    grid-template-columns: 1.5fr 0.65fr;
  }

  .distribution__metrics {
    grid-template-columns: 1.2fr 1fr 1fr;
  }

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

  .culture-card--image {
    grid-column: 1 / -1;
    min-height: 42rem;
  }

  .portfolio-card {
    width: min(36vw, 23rem);
    min-width: 15rem;
  }
}

/* Mobile */
@media (max-width: 680px) {
  :root {
    --gutter: 1.1rem;
  }

  .header-note,
  .menu-toggle__label {
    display: none;
  }

  .site-header {
    padding-top: 1rem;
  }

  .menu-toggle__icon {
    width: 2.65rem;
    height: 2.65rem;
  }

  .section-label {
    font-size: 0.58rem;
  }

  .section-label span:last-child {
    max-width: 10rem;
    text-align: right;
  }

  .display-title,
  .reveal-text {
    font-size: clamp(3.1rem, 13.2vw, 4.8rem);
    line-height: 0.92;
  }

  .loader {
    padding-top: 1rem;
  }

  .loader__mark {
    font-size: 31vw;
  }

  .menu__content {
    display: flex;
    flex-direction: column;
    padding-top: 6rem;
  }

  .menu__nav {
    flex: 1;
    justify-content: center;
  }

  .menu__nav a {
    font-size: 17vw;
  }

  .menu__footer p {
    display: none;
  }

  .menu__footer a {
    margin-left: auto;
  }

  .hero {
    min-height: 48rem;
    padding-top: 6.5rem;
    padding-bottom: 1.1rem;
  }

  .hero__image img {
    object-position: 70% center;
  }

  .hero__wash {
    background: linear-gradient(180deg, rgba(8, 8, 7, 0.14), rgba(8, 8, 7, 0.38) 48%, rgba(8, 8, 7, 0.92));
  }

  .hero__grid {
    background: none;
  }

  .hero__kicker {
    align-self: flex-start;
    margin: 0;
    font-size: 0.58rem;
  }

  .hero__title {
    margin: auto 0 2.5rem;
    font-size: clamp(2.55rem, 10.7vw, 4rem);
    line-height: 0.92;
  }

  .hero__title .line:nth-child(2) {
    padding-left: 4vw;
  }

  .hero__footer {
    display: flex;
    align-items: flex-end;
  }

  .hero__lede {
    flex: 1;
    padding-left: 0;
    font-size: 0.75rem;
  }

  .round-link {
    flex: none;
    width: 6.2rem;
    height: 6.2rem;
    font-size: 0.55rem;
  }

  .manifesto {
    padding-top: 2.7rem;
  }

  .manifesto__statement {
    padding-top: 6rem;
    padding-bottom: 5.5rem;
  }

  .manifesto__statement h2 {
    font-size: 13.5vw;
  }

  .manifesto__statement h2 em {
    white-space: normal;
  }

  .manifesto__orbit {
    top: 7.5rem;
    right: -4rem;
    opacity: 0.4;
  }

  .manifesto__body {
    display: block;
  }

  .manifesto__pull {
    margin: 0 0 3.5rem;
  }

  .manifesto__copy {
    padding-left: 10vw;
  }

  .model,
  .ai-native,
  .distribution,
  .culture__top,
  .portfolio,
  .principles,
  .careers,
  .contact__inner {
    padding-top: 2.7rem;
  }

  .ai-native__head {
    display: block;
    padding: 6rem 0 5rem;
  }

  .ai-native__head h2 {
    font-size: 14vw;
    line-height: 0.92;
  }

  .ai-native__copy {
    max-width: 92%;
    gap: 2.5rem;
    margin-top: 2.5rem;
    margin-left: auto;
    padding-bottom: 0.25rem;
  }

  .ai-native__stage {
    height: 38rem;
    min-height: 38rem;
  }

  .ai-native__stage-grid {
    background-size: 2.6rem 2.6rem;
  }

  .ai-native__hud span:last-child,
  .ai-native__instruction {
    display: none;
  }

  .ai-native__core {
    width: 10rem;
  }

  .ai-native__axis {
    gap: 0.5rem;
  }

  .ai-native__axis span {
    font-size: 0.46rem;
  }

  .ai-native__footer {
    display: block;
    margin-top: 4rem;
  }

  .ai-native__footer p {
    max-width: 85%;
  }

  .ai-native__footer > span {
    display: block;
    margin-top: 3rem;
    text-align: right;
  }

  .careers h2 {
    padding: 6rem 0 5rem;
  }

  .careers__bottom {
    display: block;
  }

  .careers__bottom > p {
    max-width: 82%;
    margin-bottom: 4rem;
  }

  .model__intro,
  .distribution__head,
  .portfolio__head {
    display: block;
    padding-top: 6rem;
    padding-bottom: 5rem;
  }

  .model__intro p,
  .distribution__intro,
  .portfolio__head p {
    max-width: 90%;
    margin: 2.5rem 0 0 auto;
  }

  .distribution__head h2 {
    font-size: 13vw;
    line-height: 0.94;
  }

  .distribution__status {
    margin-bottom: 4rem;
    font-size: 0.56rem;
  }

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

  .metric {
    min-height: 18rem;
  }

  .metric strong {
    font-size: 21vw;
  }

  .metric small {
    max-width: 8rem;
    text-align: right;
  }

  .platform {
    grid-template-columns: 2.8rem 1fr auto;
    min-height: 6.7rem;
  }

  .platform > p {
    display: none;
  }

  .platform__name {
    gap: 0.75rem;
  }

  .platform__name strong {
    font-size: 2.5rem;
  }

  .platform__icon {
    width: 2rem;
    height: 2rem;
  }

  .platform__live {
    grid-column: 3;
    font-size: 0.52rem;
  }

  .step > button {
    grid-template-columns: 3rem 1fr auto;
    min-height: 6rem;
  }

  .step__number { grid-column: 1; }
  .step__title { grid-column: 2; }
  .step__tag { display: none; }
  .step__toggle { grid-column: 3; width: 2.6rem; height: 2.6rem; }

  .step__detail {
    display: grid;
    grid-template-columns: 3rem 1fr;
  }

  .step__detail > p {
    grid-column: 2;
    padding-right: 0;
    padding-bottom: 1.5rem;
  }

  .step__detail ul {
    grid-column: 2;
    padding-bottom: 2.5rem;
  }

  .culture__top h2 {
    padding-top: 6rem;
    padding-bottom: 4rem;
    font-size: 13vw;
    line-height: 0.94;
  }

  .culture__copy {
    display: block;
  }

  .culture__copy span {
    display: block;
    margin-bottom: 3rem;
  }

  .culture__copy p {
    max-width: 92%;
    margin-left: auto;
  }

  .culture__tiles {
    display: block;
  }

  .culture-card,
  .culture-card--image {
    min-height: 35rem;
  }

  .culture-card--red blockquote {
    font-size: 12.5vw;
  }

  .portfolio__stage {
    min-height: 42rem;
  }

  .portfolio-card {
    width: 65vw;
    min-width: 0;
  }

  .portfolio-card--one {
    transform: translate(-91%, -43%) rotate(-12deg);
  }

  .portfolio-card--two {
    transform: translate(-50%, -55%) rotate(1deg);
  }

  .portfolio-card--three {
    transform: translate(-8%, -40%) rotate(12deg);
  }

  .portfolio__soon {
    font-size: 15vw;
  }

  .principles__grid {
    grid-template-columns: 1fr;
    padding-top: 5.5rem;
  }

  .principle,
  .principle:nth-child(-n + 2) {
    min-height: 21rem;
    border-top: 0;
  }

  .principle:first-child {
    border-top: 1px solid var(--line-light);
  }

  .principle h3 {
    margin-top: 4rem;
  }

  .contact__marquee span {
    font-size: 16vw;
  }

  .contact__inner h2 {
    padding-top: 6rem;
    padding-bottom: 5rem;
    font-size: 13.5vw;
    line-height: 0.94;
  }

  .contact__bottom {
    display: block;
  }

  .contact__bottom > p {
    max-width: 94%;
    margin-bottom: 4rem;
  }

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

  .footer__brand {
    grid-column: 1 / -1;
    margin-bottom: 4rem;
  }

  .footer__end {
    min-height: 9rem;
  }
}

@media (hover: none), (pointer: coarse) {
  .cursor { display: none; }
}

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

  .reveal,
  .reveal-text,
  .hero__title .line > span {
    opacity: 1;
    transform: none;
  }
}

/* Lean homepage */
.studio {
  padding-top: 3.5rem;
  padding-bottom: clamp(7rem, 11vw, 11rem);
  background: var(--bone);
}

.studio__intro {
  display: grid;
  grid-template-columns: minmax(0, 1.65fr) minmax(17rem, 0.45fr);
  align-items: end;
  gap: clamp(3rem, 8vw, 9rem);
  padding: clamp(7rem, 11vw, 11rem) 0 clamp(6rem, 9vw, 9rem);
}

.studio__intro h2 {
  max-width: 13ch;
  font-size: clamp(4rem, 7.7vw, 7.7rem);
  font-weight: 400;
  letter-spacing: -0.065em;
  line-height: 0.91;
}

.studio__intro h2 em {
  font-family: var(--serif);
  font-weight: 400;
}

.studio__intro-copy {
  max-width: 25rem;
  padding-bottom: 0.55rem;
}

.studio__intro-copy p {
  font-size: 0.92rem;
  line-height: 1.55;
}

.studio__intro-copy p + p {
  margin-top: 1.15rem;
  color: rgba(17, 17, 15, 0.58);
}

.studio__gallery {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(16rem, 0.62fr);
  align-items: start;
  gap: clamp(1.25rem, 3vw, 3rem);
}

.studio-shot {
  margin: 0;
}

.studio-shot--portrait {
  margin-top: clamp(6rem, 12vw, 12rem);
}

.studio-shot img {
  width: 100%;
  background: #d8d2c4;
  object-fit: cover;
}

.studio-shot--wide img {
  aspect-ratio: 3 / 2;
}

.studio-shot--portrait img {
  aspect-ratio: 4 / 5;
}

.studio-shot figcaption {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 0.85rem;
  border-top: 1px solid var(--line-dark);
  margin-top: 0.8rem;
  font-size: 0.58rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.studio-shot figcaption span:last-child {
  color: rgba(17, 17, 15, 0.52);
}

.studio__system {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: clamp(6rem, 10vw, 10rem);
  padding-top: 1.25rem;
  border-top: 1px solid var(--line-dark);
}

.studio__system-label {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 10rem;
}

.studio__system-label > span {
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.studio__system-label > span:last-child {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  color: rgba(17, 17, 15, 0.52);
}

.studio__system-label i {
  width: 0.38rem;
  height: 0.38rem;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 1rem rgba(239, 59, 35, 0.5);
}

.studio__system-copy {
  max-width: 31rem;
}

.studio__system-copy h3 {
  font-family: var(--sans);
  font-size: clamp(1.8rem, 3vw, 3rem);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 1.03;
}

.studio__system-copy h3 em {
  font-family: var(--serif);
  font-weight: 400;
}

.studio__system-copy p {
  max-width: 28rem;
  margin-top: 2rem;
  font-size: 0.92rem;
  line-height: 1.55;
}

.studio-ai-study {
  margin: clamp(3.5rem, 6vw, 6rem) 0 0;
}

.studio-ai-study__field {
  position: relative;
  height: clamp(34rem, 55vw, 52rem);
  min-height: 34rem;
  border: 1px solid rgba(17, 17, 15, 0.22);
  overflow: hidden;
  background: var(--bone);
  isolation: isolate;
}

.studio-ai-study__field::before {
  position: absolute;
  z-index: 0;
  inset: 0;
  background-image: linear-gradient(rgba(17, 17, 15, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17, 17, 15, 0.045) 1px, transparent 1px);
  background-size: clamp(3rem, 5vw, 5rem) clamp(3rem, 5vw, 5rem);
  mask-image: linear-gradient(90deg, transparent, black 30%, black 100%);
  content: "";
}

.studio-ai-study__canvas {
  position: absolute;
  z-index: 1;
  inset: 0;
  width: 100%;
  height: 100%;
}

.studio-ai-study__type {
  position: absolute;
  z-index: 2;
  bottom: clamp(2rem, 4vw, 4rem);
  left: clamp(1.5rem, 4vw, 4rem);
  display: flex;
  flex-direction: column;
  color: var(--ink);
  pointer-events: none;
}

.studio-ai-study__type span,
.studio-ai-study__type em {
  font-size: clamp(3.6rem, 7.6vw, 7.5rem);
  font-weight: 400;
  letter-spacing: -0.07em;
  line-height: 0.85;
}

.studio-ai-study__type em {
  color: var(--red);
  font-family: var(--serif);
}

.studio-ai-study__edition {
  position: absolute;
  z-index: 2;
  top: 1.25rem;
  left: 1.25rem;
  font-size: 0.56rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.studio-ai-study__note {
  position: absolute;
  z-index: 2;
  top: 1.15rem;
  right: 1.25rem;
  max-width: 21rem;
  font-size: 0.82rem;
  line-height: 1.45;
  text-align: right;
}

.studio-ai-study figcaption {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 0.85rem;
  border-top: 1px solid var(--line-dark);
  margin-top: 0.8rem;
  font-size: 0.58rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.studio-ai-study figcaption span:last-child {
  color: rgba(17, 17, 15, 0.52);
}

.portfolio-preview {
  position: relative;
  min-height: 0;
  padding-top: 3.5rem;
  padding-bottom: clamp(7rem, 11vw, 11rem);
  overflow: hidden;
  color: var(--bone);
  background: var(--blue);
}

.portfolio-preview__intro {
  display: grid;
  grid-template-columns: minmax(8rem, 0.38fr) minmax(0, 1.35fr) minmax(16rem, 0.52fr);
  align-items: end;
  gap: clamp(2rem, 5vw, 5rem);
  padding: clamp(7rem, 11vw, 11rem) 0 clamp(5rem, 8vw, 8rem);
}

.portfolio-preview__index {
  align-self: start;
  padding-top: 0.55rem;
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.portfolio-preview__copy {
  max-width: 21rem;
  font-size: 0.88rem;
  line-height: 1.5;
}

.portfolio-preview__intro h2 {
  max-width: 8ch;
  font-size: clamp(4.8rem, 8.3vw, 8.5rem);
  font-weight: 400;
  letter-spacing: -0.075em;
  line-height: 0.87;
}

.portfolio-preview__intro h2 em {
  color: var(--acid);
  font-family: var(--serif);
  font-weight: 400;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
  gap: clamp(1.5rem, 3vw, 3rem);
}

.product-card {
  min-width: 0;
  perspective: 1400px;
}

.product-card--02 {
  margin-top: clamp(5rem, 9vw, 9rem);
}

.product-card__scene {
  --rx: 0deg;
  --ry: 0deg;
  --tx: 0px;
  --ty: 0px;
  --mx: 50%;
  --my: 50%;
  position: relative;
  aspect-ratio: 4 / 5;
  border: 1px solid rgba(241, 236, 223, 0.35);
  overflow: hidden;
  background: var(--bone);
  transform: perspective(1400px) rotateX(var(--rx)) rotateY(var(--ry));
  transform-style: preserve-3d;
  transition: transform 500ms cubic-bezier(0.2, 0.75, 0.25, 1);
  will-change: transform;
}

.product-card__scene::after {
  position: absolute;
  z-index: 4;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.15);
  content: "";
  pointer-events: none;
}

.product-card__scene img {
  position: absolute;
  z-index: 1;
  inset: -2%;
  width: 104%;
  height: 104%;
  object-fit: cover;
  transform: translate3d(var(--tx), var(--ty), 38px) scale(1.025);
  transition: transform 500ms cubic-bezier(0.2, 0.75, 0.25, 1);
  user-select: none;
  will-change: transform;
}

.product-card__tag {
  position: absolute;
  z-index: 3;
  top: 1.25rem;
  left: 1.25rem;
  font-size: 0.58rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.product-card--02 .product-card__tag {
  color: var(--ink);
}

.product-card__sheen {
  position: absolute;
  z-index: 2;
  inset: -30%;
  background: radial-gradient(circle at var(--mx) var(--my), rgba(255, 255, 255, 0.3), transparent 24%);
  opacity: 0.48;
  mix-blend-mode: screen;
  pointer-events: none;
  transform: translateZ(60px);
}

.product-card__meta {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 0.85rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(241, 236, 223, 0.38);
}

.product-card__wordmark {
  height: clamp(3rem, 5.2vw, 5.4rem);
  line-height: 0;
}

.product-card__wordmark img {
  width: auto;
  height: 100%;
  object-fit: contain;
  object-position: left bottom;
}

.product-card__meta p,
.product-grid__footer {
  font-size: 0.58rem;
  font-weight: 500;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.product-card__meta p {
  padding-bottom: 0.35rem;
  text-align: right;
}

.product-card__description {
  max-width: 34rem;
  margin-top: 1.6rem;
  color: rgba(241, 236, 223, 0.76);
  font-size: 0.95rem;
  line-height: 1.5;
}

.product-grid__footer {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  margin-top: clamp(6rem, 9vw, 9rem);
  padding-top: 1rem;
  border-top: 1px solid rgba(241, 236, 223, 0.38);
}

@media (hover: hover) and (pointer: fine) {
  .product-card:hover .product-card__scene img {
    transform: translate3d(var(--tx), var(--ty), 52px) scale(1.055);
  }
}

.contact--compact .contact__inner h2 {
  max-width: 12ch;
  padding-top: clamp(7rem, 10vw, 10rem);
  padding-bottom: clamp(6rem, 9vw, 9rem);
}

.contact--compact .contact__bottom > p {
  max-width: 22rem;
}

@media (max-width: 950px) {
  .studio__intro {
    grid-template-columns: 1.45fr 0.55fr;
  }

  .studio__gallery {
    grid-template-columns: minmax(0, 1.25fr) minmax(15rem, 0.7fr);
  }

  .portfolio-preview__intro {
    grid-template-columns: 0.35fr 1.2fr 0.55fr;
  }
}

@media (max-width: 680px) {
  .studio {
    padding-top: 2.7rem;
  }

  .studio__intro {
    display: block;
    padding: 6rem 0 5rem;
  }

  .studio__intro h2 {
    font-size: 13vw;
    line-height: 0.94;
  }

  .studio__intro-copy {
    max-width: 88%;
    margin: 2.5rem 0 0 auto;
  }

  .studio__gallery {
    display: block;
  }

  .studio-shot--portrait {
    width: 76%;
    margin: 4.5rem 0 0 auto;
  }

  .studio-shot figcaption {
    font-size: 0.49rem;
  }

  .studio__system {
    display: block;
    margin-top: 5.5rem;
  }

  .studio__system-label {
    min-height: 4rem;
  }

  .studio__system-copy {
    max-width: 90%;
    margin: 3rem 0 0 auto;
  }

  .studio__system-copy h3 {
    font-size: 2.35rem;
  }

  .studio__system-copy p {
    margin-top: 1.5rem;
  }

  .studio-ai-study {
    margin-top: 3rem;
  }

  .studio-ai-study__field {
    height: 38rem;
    min-height: 38rem;
  }

  .studio-ai-study__field::before {
    background-size: 3rem 3rem;
    mask-image: linear-gradient(transparent, black 20%, black 100%);
  }

  .studio-ai-study__type {
    right: 1.2rem;
    bottom: 2rem;
    left: 1.2rem;
  }

  .studio-ai-study__type span,
  .studio-ai-study__type em {
    font-size: 16vw;
  }

  .studio-ai-study__note {
    top: 3.2rem;
    right: 1.2rem;
    left: 1.2rem;
    max-width: 17rem;
    font-size: 0.72rem;
    text-align: left;
  }

  .studio-ai-study figcaption {
    font-size: 0.49rem;
  }

  .portfolio-preview {
    padding-top: 2.7rem;
    padding-bottom: 6rem;
  }

  .portfolio-preview__intro {
    display: block;
    padding: 6rem 0 4.5rem;
  }

  .portfolio-preview__intro h2 {
    max-width: 7ch;
    margin-top: 3.5rem;
    font-size: 16vw;
    line-height: 0.88;
  }

  .portfolio-preview__copy {
    max-width: 18rem;
    margin: 3rem 0 0 auto;
    font-size: 0.76rem;
  }

  .product-grid {
    display: block;
  }

  .product-card--02 {
    margin-top: 5.5rem;
  }

  .product-card__scene {
    aspect-ratio: 4 / 5;
  }

  .product-card__tag {
    top: 1rem;
    left: 1rem;
    font-size: 0.5rem;
  }

  .product-card__wordmark {
    height: 3.7rem;
  }

  .product-card__meta p,
  .product-grid__footer {
    font-size: 0.5rem;
  }

  .product-card__description {
    max-width: 19rem;
    margin-top: 1.3rem;
    font-size: 0.84rem;
  }

  .product-grid__footer {
    align-items: flex-end;
    margin-top: 6rem;
  }

  .product-grid__footer span:last-child {
    text-align: right;
  }

  .contact--compact .contact__inner h2 {
    padding-top: 6rem;
    padding-bottom: 5rem;
  }
}
