:root {
  --ink: #0b0d0c;
  --ink-soft: #121512;
  --paper: #f2f0e8;
  --line: rgba(242, 240, 232, 0.18);
  --line-dark: rgba(11, 13, 12, 0.18);
  --green: #78cc58;
  --green-bright: #a4ef7e;
  --green-dark: #23591f;
  --magenta: #ff3d9a;
  --magenta-dark: #821f56;
  --cyan: #69e7f1;
  --yellow: #ffe17d;
  --max: 1440px;
  --gutter: clamp(20px, 4vw, 72px);
  --display: "Manrope", system-ui, sans-serif;
  --mono: "IBM Plex Mono", ui-monospace, monospace;
  --pixel: "Silkscreen", ui-monospace, monospace;
  --ease-out: cubic-bezier(.19, 1, .22, 1);
}

* { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  background: var(--ink);
  color: var(--paper);
  font-family: var(--display);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--ink);
  color: var(--paper);
}
::selection { background: var(--green); color: var(--ink); }
img, video, iframe { display: block; max-width: 100%; }
img { height: auto; }
button, a { font: inherit; }
a { color: inherit; text-decoration: none; }
button { border: 0; }
h1, h2, h3, p, dl, dd, figure { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 12px 16px;
  background: var(--paper);
  color: var(--ink);
  transform: translateY(-180%);
  transition: transform .2s ease;
}
.skip-link:focus { transform: translateY(0); }
:focus-visible { outline: 3px solid var(--yellow); outline-offset: 4px; }

.page-noise {
  position: fixed;
  z-index: 999;
  inset: 0;
  pointer-events: none;
  opacity: .055;
  mix-blend-mode: soft-light;
  background-image: repeating-radial-gradient(circle at 0 0, transparent 0, rgba(255,255,255,.8) .65px, transparent 1px, transparent 4px);
  background-size: 5px 5px;
}
.scroll-progress {
  position: fixed;
  z-index: 1001;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: rgba(255,255,255,.06);
}
.scroll-progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, var(--green), var(--cyan), var(--magenta));
  transform: scaleX(0);
  transform-origin: left;
  will-change: transform;
}
.section-shell, .hero-shell, .nav-shell, .footer-shell {
  width: min(100%, var(--max));
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.section-label {
  font-family: var(--mono);
  font-size: .76rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 3px;
  left: 0;
  width: 100%;
  transition: background .35s ease, border-color .35s ease;
  border-bottom: 1px solid transparent;
}
.site-header.is-scrolled {
  background: rgba(11, 13, 12, .86);
  border-bottom-color: var(--line);
  backdrop-filter: blur(18px) saturate(130%);
  -webkit-backdrop-filter: blur(18px) saturate(130%);
}
.nav-shell {
  min-height: 86px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
}
.brand {
  display: inline-flex;
  justify-self: start;
  align-items: center;
  gap: 12px;
  min-width: 0;
}
.brand img { flex: 0 0 auto; filter: drop-shadow(0 8px 20px rgba(0,0,0,.34)); }
.brand-copy { display: grid; line-height: 1.05; }
.brand-copy strong { font-size: .95rem; letter-spacing: -.02em; }
.brand-copy small {
  margin-top: 5px;
  color: rgba(242, 240, 232, .62);
  font-family: var(--mono);
  font-size: .62rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.site-nav { display: flex; align-items: center; justify-content: center; gap: clamp(20px, 3vw, 48px); }
.site-nav a {
  position: relative;
  padding: 10px 2px;
  color: rgba(242, 240, 232, .72);
  font-family: var(--mono);
  font-size: .74rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  transition: color .2s ease;
}
.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 2px;
  width: 100%;
  height: 2px;
  background: var(--green);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .28s var(--ease-out);
}
.site-nav a:hover, .site-nav a.is-current { color: var(--paper); }
.site-nav a:hover::after, .site-nav a.is-current::after { transform: scaleX(1); transform-origin: left; }

.pixel-button {
  --button-bg: var(--green);
  --button-shadow: var(--green-dark);
  position: relative;
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 10px 22px 15px;
  color: #071006;
  background: var(--button-bg);
  border: 3px solid #050605;
  box-shadow: inset 0 -6px 0 var(--button-shadow), inset 3px 3px 0 rgba(255,255,255,.34), 0 12px 28px rgba(0,0,0,.28);
  font-family: var(--mono);
  font-size: .77rem;
  font-weight: 600;
  letter-spacing: .05em;
  text-transform: uppercase;
  transition: transform .18s ease, filter .18s ease, box-shadow .18s ease;
  cursor: pointer;
}
.pixel-button::before, .pixel-button::after {
  content: "";
  position: absolute;
  width: 5px;
  height: 5px;
  background: #050605;
}
.pixel-button::before { top: -3px; right: -3px; }
.pixel-button::after { bottom: -3px; left: -3px; }
.pixel-button:hover { transform: translateY(-2px); filter: brightness(1.08); }
.pixel-button:active {
  transform: translateY(3px);
  padding-top: 14px;
  padding-bottom: 11px;
  box-shadow: inset 0 -2px 0 var(--button-shadow), inset 3px 3px 0 rgba(255,255,255,.28), 0 5px 12px rgba(0,0,0,.24);
}
.pixel-button-small { justify-self: end; min-height: 44px; padding: 7px 16px 11px; font-size: .68rem; }
.pixel-button-magenta { --button-bg: var(--magenta); --button-shadow: var(--magenta-dark); color: #16040e; }
.text-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding-block: 12px;
  color: rgba(242,240,232,.75);
  border-bottom: 1px solid rgba(242,240,232,.45);
  font-family: var(--mono);
  font-size: .76rem;
  letter-spacing: .05em;
  text-transform: uppercase;
  transition: color .2s ease, border-color .2s ease, gap .2s ease;
  background: transparent;
  cursor: pointer;
}
.text-button:hover { color: var(--paper); border-color: var(--paper); gap: 15px; }
.text-button-light { color: rgba(242,240,232,.8); }

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  display: grid;
  align-items: end;
  background: #080a08;
  isolation: isolate;
}
.hero-media, .hero-shade, .hero-grid { position: absolute; inset: 0; }
.hero-media { z-index: -3; overflow: hidden; }
.hero-image { position: absolute; width: 100%; height: 100%; object-fit: cover; will-change: transform; }
.hero-image-primary {
  inset: 0;
  transform: scale(1.06);
  object-position: 50% 42%;
  filter: saturate(.88) contrast(1.08) brightness(.68);
}
.hero-image-secondary {
  top: auto;
  right: clamp(20px, 6vw, 100px);
  bottom: clamp(36px, 7vh, 88px);
  left: auto;
  width: clamp(180px, 24vw, 410px);
  height: clamp(130px, 18vw, 280px);
  object-fit: cover;
  border: 1px solid rgba(255,255,255,.28);
  filter: saturate(.95) contrast(1.05);
  box-shadow: 0 26px 70px rgba(0,0,0,.5);
  transform: rotate(1.5deg);
}
.hero-shade {
  background: linear-gradient(90deg, rgba(7,8,7,.95) 0%, rgba(7,8,7,.72) 38%, rgba(7,8,7,.18) 76%, rgba(7,8,7,.45) 100%), linear-gradient(0deg, rgba(7,8,7,.94) 0%, transparent 45%, rgba(7,8,7,.36) 100%);
}
.hero-grid {
  z-index: -1;
  opacity: .26;
  background-image: linear-gradient(rgba(255,255,255,.12) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.12) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, transparent 4%, black 38%, black 75%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, transparent 4%, black 38%, black 75%, transparent 100%);
}
.hero-shell {
  position: relative;
  z-index: 2;
  min-height: 100svh;
  display: grid;
  grid-template-rows: auto 1fr auto auto;
  align-items: end;
  padding-top: 150px;
  padding-bottom: clamp(24px, 4vh, 48px);
}
.hero-kicker {
  align-self: start;
  display: inline-flex;
  width: max-content;
  align-items: center;
  gap: 10px;
  padding: 8px 11px;
  border: 1px solid rgba(255,255,255,.22);
  background: rgba(8,10,8,.42);
  backdrop-filter: blur(8px);
  font-family: var(--mono);
  font-size: .68rem;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.status-light {
  width: 7px;
  height: 7px;
  background: var(--green-bright);
  box-shadow: 0 0 0 4px rgba(164,239,126,.12), 0 0 18px rgba(164,239,126,.9);
  animation: statusPulse 2.4s ease-in-out infinite;
}
@keyframes statusPulse { 0%,100% { opacity: 1; } 50% { opacity: .45; } }
.hero-title {
  align-self: end;
  max-width: 1100px;
  margin-top: 8vh;
  font-size: clamp(3.7rem, 8.6vw, 9.4rem);
  line-height: .84;
  letter-spacing: -.075em;
  text-wrap: balance;
}
.hero-title span, .hero-title em { display: block; }
.hero-title em { color: var(--green-bright); font-style: normal; font-weight: 500; }
.hero-bottom {
  display: grid;
  grid-template-columns: minmax(300px, 640px) auto;
  align-items: end;
  gap: clamp(30px, 7vw, 120px);
  margin-top: clamp(34px, 6vh, 68px);
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.24);
}
.hero-intro {
  max-width: 670px;
  color: rgba(242,240,232,.8);
  font-size: clamp(1.02rem, 1.5vw, 1.35rem);
  line-height: 1.6;
  letter-spacing: -.015em;
}
.hero-actions { display: flex; flex-wrap: wrap; justify-content: flex-end; align-items: center; gap: 24px; }
.hero-proof {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: clamp(34px, 6vh, 72px);
  border-top: 1px solid rgba(255,255,255,.22);
  border-bottom: 1px solid rgba(255,255,255,.22);
}
.hero-proof > div {
  min-height: 114px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 20px clamp(12px, 2vw, 32px);
  border-right: 1px solid rgba(255,255,255,.22);
}
.hero-proof > div:first-child { padding-left: 0; }
.hero-proof > div:last-child { border-right: 0; }
.hero-proof strong { font-size: clamp(1.35rem, 2.4vw, 2.25rem); letter-spacing: -.045em; }
.hero-proof span {
  margin-top: 7px;
  color: rgba(242,240,232,.56);
  font-family: var(--mono);
  font-size: .64rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.hero-index {
  position: absolute;
  z-index: 2;
  right: 18px;
  bottom: 50%;
  color: rgba(255,255,255,.48);
  font-family: var(--mono);
  font-size: .62rem;
  letter-spacing: .16em;
  writing-mode: vertical-rl;
}

.statement { padding-block: clamp(100px, 13vw, 210px); background: var(--ink); }
.statement-grid { display: grid; grid-template-columns: 180px minmax(0, 1fr); gap: clamp(40px, 8vw, 150px); }
.statement .section-label { color: var(--green-bright); }
.statement-title { max-width: 1150px; font-size: clamp(2.6rem, 5.6vw, 6rem); line-height: 1.02; letter-spacing: -.06em; }
.statement-copy {
  max-width: 780px;
  margin-top: 38px;
  color: rgba(242,240,232,.64);
  font-size: clamp(1.02rem, 1.4vw, 1.25rem);
  line-height: 1.75;
}

.case-study { position: relative; overflow: hidden; padding-block: clamp(100px, 13vw, 200px); }
.case-ore { background: var(--paper); color: var(--ink); }
.case-backdrop {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .19;
  background-image: linear-gradient(var(--line-dark) 1px, transparent 1px), linear-gradient(90deg, var(--line-dark) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(90deg, black 0%, transparent 70%);
  -webkit-mask-image: linear-gradient(90deg, black 0%, transparent 70%);
}
.case-echo { background: #071114; color: #e9fbff; }
.echo-grid {
  position: absolute;
  inset: 0;
  opacity: .32;
  background-image: linear-gradient(rgba(105,231,241,.2) 1px, transparent 1px), linear-gradient(90deg, rgba(105,231,241,.2) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: radial-gradient(circle at 38% 50%, black 0, transparent 66%);
  -webkit-mask-image: radial-gradient(circle at 38% 50%, black 0, transparent 66%);
}
.case-shell {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(420px, 1.1fr);
  align-items: center;
  gap: clamp(50px, 8vw, 140px);
}
.case-shell-reverse { grid-template-columns: minmax(420px, 1.15fr) minmax(0, .85fr); }
.case-copy { max-width: 620px; }
.case-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 32px;
  font-family: var(--mono);
  font-size: .64rem;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.case-meta span { padding: 7px 10px; border: 1px solid currentColor; opacity: .72; }
.case-eyebrow {
  max-width: 470px;
  margin-bottom: 18px;
  font-family: var(--mono);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.case-echo .case-eyebrow { color: var(--cyan); }
.case-copy h2 { font-size: clamp(3.6rem, 7.5vw, 8rem); line-height: .88; letter-spacing: -.07em; }
.case-lede { margin-top: 30px; font-size: clamp(1.05rem, 1.35vw, 1.3rem); line-height: 1.65; }
.case-ore .case-lede { color: rgba(11,13,12,.72); }
.case-echo .case-lede { color: rgba(233,251,255,.72); }
.case-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 42px;
  border-top: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
}
.case-facts > div { min-width: 0; padding: 19px 18px 22px 0; border-right: 1px solid currentColor; }
.case-facts > div:not(:first-child) { padding-left: 18px; }
.case-facts > div:last-child { border-right: 0; }
.case-facts dt { opacity: .55; font-family: var(--mono); font-size: .58rem; letter-spacing: .08em; text-transform: uppercase; }
.case-facts dd { margin-top: 8px; font-size: .85rem; font-weight: 700; line-height: 1.35; }
.detail-list { display: grid; gap: 12px; margin-top: 34px; }
.detail-list li { position: relative; padding-left: 22px; font-size: .92rem; line-height: 1.55; }
.detail-list li::before {
  content: "";
  position: absolute;
  top: .62em;
  left: 0;
  width: 8px;
  height: 8px;
  background: var(--green);
  box-shadow: 4px 4px 0 rgba(11,13,12,.22);
}
.case-echo .detail-list li::before { background: var(--cyan); box-shadow: 0 0 14px rgba(105,231,241,.45); }
.project-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 40px;
  padding-bottom: 5px;
  border-bottom: 2px solid currentColor;
  font-family: var(--mono);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .07em;
  text-transform: uppercase;
  transition: gap .2s ease, opacity .2s ease;
}
.project-link:hover { gap: 16px; opacity: .66; }
.case-media { position: relative; transform-style: preserve-3d; will-change: transform; }
.media-frame {
  position: relative;
  overflow: hidden;
  background: #000;
  border: 1px solid currentColor;
  box-shadow: 22px 24px 0 rgba(11,13,12,.13), 0 34px 80px rgba(11,13,12,.18);
}
.case-echo .media-frame { border-color: rgba(105,231,241,.46); box-shadow: 22px 24px 0 rgba(105,231,241,.09), 0 34px 90px rgba(0,0,0,.38); }
.media-frame-tall { aspect-ratio: 4 / 5; }
.media-frame-wide { aspect-ratio: 16 / 11; }
.media-frame img { width: 100%; height: 100%; object-fit: cover; }
.echo-frame img { filter: saturate(1.08) contrast(1.05); }
.media-corner { position: absolute; width: 42px; height: 42px; border-color: var(--green-dark); border-style: solid; }
.media-corner-a { top: 12px; left: 12px; border-width: 3px 0 0 3px; }
.media-corner-b { right: 12px; bottom: 12px; border-width: 0 3px 3px 0; }
.media-caption {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-top: 18px;
  color: inherit;
  font-family: var(--mono);
  font-size: .66rem;
  line-height: 1.5;
  text-transform: uppercase;
}
.media-caption span { opacity: .54; }

.visual-showcase {
  position: relative;
  overflow: hidden;
  padding-block: clamp(105px, 13vw, 200px);
  background: #09080a;
  color: var(--paper);
  isolation: isolate;
}
.visual-backdrop { position: absolute; z-index: -2; inset: 0; }
.visual-backdrop img { width: 100%; height: 100%; object-fit: cover; opacity: .16; filter: saturate(.9) blur(1px); }
.visual-backdrop::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, #09080a 0%, rgba(9,8,10,.72) 24%, rgba(9,8,10,.88) 78%, #09080a 100%), radial-gradient(circle at 80% 25%, rgba(255,61,154,.17), transparent 35%);
}
.visual-heading { max-width: 1040px; }
.visual-heading .section-label { color: #ff7fbd; }
.visual-heading h2 { margin-top: 18px; font-size: clamp(4rem, 9vw, 10rem); line-height: .88; letter-spacing: -.075em; }
.visual-heading > p:last-child {
  max-width: 760px;
  margin-top: 30px;
  color: rgba(242,240,232,.66);
  font-size: clamp(1.04rem, 1.5vw, 1.3rem);
  line-height: 1.7;
}
.cinema {
  position: relative;
  margin-top: clamp(60px, 8vw, 110px);
  border: 1px solid rgba(255,255,255,.22);
  background: #000;
  box-shadow: 0 50px 140px rgba(0,0,0,.56);
}
.cinema::before {
  content: "SERAPHIC / VISUAL REEL";
  position: absolute;
  z-index: 4;
  top: 18px;
  left: 18px;
  padding: 7px 9px;
  color: #fff;
  background: rgba(0,0,0,.62);
  border: 1px solid rgba(255,255,255,.24);
  font-family: var(--mono);
  font-size: .58rem;
  letter-spacing: .12em;
}
.cinema-poster {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 8.7;
  overflow: hidden;
  padding: 0;
  background: #000;
  cursor: pointer;
}
.cinema-poster img, .cinema iframe { width: 100%; height: 100%; object-fit: cover; }
.cinema-poster img { transition: transform .9s var(--ease-out), filter .5s ease; }
.cinema-poster:hover img { transform: scale(1.025); filter: brightness(.82); }
.cinema-shade { position: absolute; inset: 0; background: linear-gradient(0deg, rgba(0,0,0,.74), transparent 54%); }
.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  width: clamp(72px, 8vw, 118px);
  height: clamp(72px, 8vw, 118px);
  display: grid;
  place-items: center;
  transform: translate(-50%, -50%);
  background: var(--magenta);
  border: 4px solid #0b0d0c;
  box-shadow: inset 0 -9px 0 var(--magenta-dark), inset 4px 4px 0 rgba(255,255,255,.32), 0 22px 60px rgba(0,0,0,.45);
  transition: transform .22s var(--ease-out);
}
.cinema-poster:hover .play-button { transform: translate(-50%, -50%) scale(1.07) rotate(1deg); }
.play-button i { width: 0; height: 0; margin-left: 8px; border-top: 13px solid transparent; border-bottom: 13px solid transparent; border-left: 21px solid #15030d; }
.cinema-label {
  position: absolute;
  right: 24px;
  bottom: 20px;
  color: #fff;
  font-family: var(--mono);
  font-size: .67rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.cinema iframe { aspect-ratio: 16 / 8.7; border: 0; }
.visual-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 34px;
  border-top: 1px solid rgba(255,255,255,.2);
  border-bottom: 1px solid rgba(255,255,255,.2);
}
.visual-stats > div {
  min-height: 120px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 20px 24px;
  border-right: 1px solid rgba(255,255,255,.2);
}
.visual-stats > div:first-child { padding-left: 0; }
.visual-stats > div:last-child { border-right: 0; }
.visual-stats strong { font-size: clamp(1.4rem, 2.6vw, 2.4rem); letter-spacing: -.045em; }
.visual-stats span {
  margin-top: 7px;
  color: rgba(242,240,232,.52);
  font-family: var(--mono);
  font-size: .62rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.visual-wall {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 16px;
  margin-top: clamp(60px, 8vw, 110px);
}
.visual-tile { position: relative; min-height: 280px; overflow: hidden; border: 1px solid rgba(255,255,255,.18); background: #111; }
.visual-tile-large { grid-row: 1 / 3; min-height: 640px; }
.visual-tile img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease-out), filter .5s ease; }
.visual-tile:hover img { transform: scale(1.035); filter: saturate(1.08); }
.visual-tile figcaption {
  position: absolute;
  right: 12px;
  bottom: 12px;
  left: 12px;
  padding: 12px 14px;
  background: rgba(9,8,10,.78);
  border: 1px solid rgba(255,255,255,.18);
  backdrop-filter: blur(10px);
  color: rgba(242,240,232,.78);
  font-size: .78rem;
  line-height: 1.45;
}
.visual-links { display: flex; flex-wrap: wrap; align-items: center; gap: 28px; margin-top: 38px; }

.catalogue { padding-block: clamp(105px, 13vw, 190px); background: var(--paper); color: var(--ink); }
.catalogue-heading {
  display: grid;
  grid-template-columns: 160px minmax(0, 1fr) minmax(280px, 470px);
  align-items: end;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--line-dark);
}
.catalogue-heading .section-label { color: var(--green-dark); }
.catalogue-heading h2 { font-size: clamp(2.8rem, 5.8vw, 6rem); line-height: .96; letter-spacing: -.06em; }
.catalogue-heading > p:last-child { color: rgba(11,13,12,.64); line-height: 1.65; }
.product-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin-top: 70px;
  background: var(--line-dark);
  border: 1px solid var(--line-dark);
}
.product-card { background: var(--paper); transition: background .3s ease; }
.product-card:hover { background: #ebe9de; }
.product-media { position: relative; display: block; aspect-ratio: 16 / 10; overflow: hidden; background: #151814; }
.product-media::after {
  content: "OPEN ↗";
  position: absolute;
  right: 14px;
  bottom: 14px;
  padding: 7px 9px;
  color: #fff;
  background: rgba(11,13,12,.74);
  border: 1px solid rgba(255,255,255,.2);
  font-family: var(--mono);
  font-size: .57rem;
  letter-spacing: .1em;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity .2s ease, transform .2s ease;
}
.product-media:hover::after { opacity: 1; transform: translateY(0); }
.product-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease-out); }
.product-media:hover img { transform: scale(1.025); }
.product-copy { min-height: 260px; padding: clamp(24px, 4vw, 52px); }
.product-topline { display: flex; justify-content: space-between; gap: 24px; font-family: var(--mono); font-size: .63rem; letter-spacing: .08em; text-transform: uppercase; }
.product-topline span { color: rgba(11,13,12,.54); }
.product-topline strong { color: var(--green-dark); }
.product-copy h3 { margin-top: 28px; font-size: clamp(1.8rem, 3vw, 3.3rem); line-height: 1; letter-spacing: -.045em; }
.product-copy p { max-width: 570px; margin-top: 20px; color: rgba(11,13,12,.65); font-size: .96rem; line-height: 1.65; }

.tooling { padding-block: clamp(110px, 13vw, 200px); background: #dfe4dc; color: var(--ink); }
.tooling-grid { display: grid; grid-template-columns: .8fr 1.2fr; align-items: center; gap: clamp(60px, 8vw, 140px); }
.tooling-copy .section-label { color: var(--green-dark); }
.tooling-copy h2 { max-width: 680px; margin-top: 18px; font-size: clamp(3rem, 5.8vw, 6.3rem); line-height: .94; letter-spacing: -.06em; }
.tooling-copy > p:not(.section-label) { max-width: 620px; margin-top: 28px; color: rgba(11,13,12,.66); font-size: 1.02rem; line-height: 1.72; }
.detail-list-dark li::before { background: var(--green-dark); }
.project-link-dark { color: var(--ink); }
.tooling-media { position: relative; }
.blueprint-frame {
  padding: 16px;
  background: #0d1711;
  border: 1px solid rgba(11,13,12,.46);
  box-shadow: 22px 22px 0 rgba(35,89,31,.17), 0 34px 80px rgba(11,13,12,.18);
}
.blueprint-frame img { width: 100%; min-height: 420px; object-fit: contain; background: #101713; }
.code-note {
  position: absolute;
  right: -18px;
  bottom: -28px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  max-width: 410px;
  padding: 15px 17px;
  background: var(--paper);
  border: 2px solid var(--ink);
  box-shadow: 10px 10px 0 var(--green-dark);
  font-family: var(--mono);
  font-size: .6rem;
  letter-spacing: .06em;
}
.code-note i { color: var(--green-dark); font-style: normal; }

.team { padding-block: clamp(110px, 13vw, 200px); background: var(--ink); }
.team-heading { display: grid; grid-template-columns: 180px minmax(0, 1fr); gap: clamp(40px, 8vw, 130px); align-items: start; }
.team-heading .section-label { color: var(--green-bright); }
.team-heading h2 { max-width: 1050px; font-size: clamp(3rem, 6.3vw, 6.7rem); line-height: .95; letter-spacing: -.065em; }
.team-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; margin-top: clamp(70px, 9vw, 130px); }
.person-card {
  position: relative;
  min-height: 640px;
  padding: clamp(30px, 5vw, 68px);
  overflow: hidden;
  background: #121612;
  border: 1px solid rgba(255,255,255,.16);
}
.person-card::before {
  content: "";
  position: absolute;
  top: -110px;
  right: -110px;
  width: 300px;
  height: 300px;
  border: 1px solid rgba(120,204,88,.32);
  transform: rotate(45deg);
}
.person-card-magenta::before { border-color: rgba(255,61,154,.35); }
.person-number { position: absolute; top: 28px; right: 30px; color: rgba(242,240,232,.35); font-family: var(--mono); font-size: .68rem; }
.person-mark {
  width: 100px;
  height: 100px;
  display: grid;
  place-items: center;
  color: var(--ink);
  border: 4px solid #050605;
  box-shadow: inset 0 -10px 0 rgba(0,0,0,.38), inset 4px 4px 0 rgba(255,255,255,.34), 12px 12px 0 rgba(0,0,0,.22);
  font-family: var(--pixel);
  font-size: 2.4rem;
}
.person-mark-green { background: var(--green); }
.person-mark-magenta { background: var(--magenta); font-size: 1.65rem; }
.person-handle { margin-top: 58px; color: var(--green-bright); font-family: var(--mono); font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; }
.person-card-magenta .person-handle { color: #ff7fbd; }
.person-card h3 { margin-top: 14px; font-size: clamp(2.4rem, 4.5vw, 4.8rem); line-height: .96; letter-spacing: -.055em; }
.person-role { max-width: 610px; margin-top: 26px; color: rgba(242,240,232,.65); font-size: 1rem; line-height: 1.7; }
.person-card dl { display: grid; gap: 0; margin-top: 42px; border-top: 1px solid rgba(255,255,255,.15); }
.person-card dl > div { display: grid; grid-template-columns: 130px 1fr; gap: 20px; padding-block: 15px; border-bottom: 1px solid rgba(255,255,255,.15); }
.person-card dt { color: rgba(242,240,232,.42); font-family: var(--mono); font-size: .62rem; letter-spacing: .06em; text-transform: uppercase; }
.person-card dd { font-size: .88rem; line-height: 1.5; }
.person-links { display: flex; flex-wrap: wrap; gap: 18px; margin-top: 32px; }
.person-links a { color: rgba(242,240,232,.7); font-family: var(--mono); font-size: .67rem; text-transform: uppercase; transition: color .2s ease; }
.person-links a:hover { color: var(--paper); }

.direction {
  position: relative;
  overflow: hidden;
  padding-block: clamp(120px, 15vw, 230px);
  background: #050605;
  isolation: isolate;
}
.direction-media { position: absolute; z-index: -2; inset: 0; }
.direction-media img { width: 100%; height: 100%; object-fit: cover; object-position: center 40%; opacity: .34; filter: saturate(.88) contrast(1.12); }
.direction-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(5,6,5,.97) 0%, rgba(5,6,5,.75) 54%, rgba(5,6,5,.46) 100%), linear-gradient(0deg, #050605 0%, transparent 40%, rgba(5,6,5,.58) 100%);
}
.direction-shell { position: relative; z-index: 2; }
.direction .section-label { color: var(--green-bright); }
.direction h2 { max-width: 1140px; margin-top: 20px; font-size: clamp(3.4rem, 7vw, 7.6rem); line-height: .93; letter-spacing: -.07em; }
.direction-intro { max-width: 700px; margin-top: 34px; color: rgba(242,240,232,.68); font-size: 1.08rem; line-height: 1.7; }
.direction-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: clamp(70px, 9vw, 130px);
  background: rgba(255,255,255,.18);
  border: 1px solid rgba(255,255,255,.18);
}
.direction-item { min-height: 330px; padding: clamp(25px, 4vw, 48px); background: rgba(9,11,9,.76); backdrop-filter: blur(8px); }
.direction-item > span { color: var(--green-bright); font-family: var(--mono); font-size: .65rem; }
.direction-item h3 { margin-top: 70px; font-size: clamp(1.8rem, 3vw, 3.1rem); line-height: 1; letter-spacing: -.045em; }
.direction-item p { margin-top: 22px; color: rgba(242,240,232,.58); line-height: 1.65; }

.contact { padding-block: clamp(110px, 14vw, 210px); background: var(--green); color: var(--ink); }
.contact-shell { display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(320px, .8fr); gap: clamp(50px, 10vw, 170px); align-items: end; }
.contact .section-label { color: var(--green-dark); }
.contact h2 { margin-top: 20px; font-size: clamp(3.5rem, 7.8vw, 8.2rem); line-height: .88; letter-spacing: -.075em; }
.contact-copy > p:last-child { max-width: 760px; margin-top: 32px; color: rgba(11,13,12,.68); font-size: 1.05rem; line-height: 1.7; }
.contact-actions { display: flex; flex-direction: column; align-items: flex-start; gap: 22px; }
.contact-actions .pixel-button { --button-bg: var(--paper); --button-shadow: #8a897f; color: var(--ink); width: 100%; word-break: break-word; }
.contact-actions .text-button { color: rgba(11,13,12,.75); border-bottom-color: rgba(11,13,12,.45); }
.copy-button span { color: var(--green-dark); }
.contact-links { grid-column: 1 / -1; display: flex; flex-wrap: wrap; gap: 24px; margin-top: 40px; padding-top: 28px; border-top: 1px solid rgba(11,13,12,.25); }
.contact-links a { font-family: var(--mono); font-size: .68rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; }

.site-footer { padding-block: 34px; background: var(--ink); color: rgba(242,240,232,.54); border-top: 1px solid rgba(255,255,255,.14); }
.footer-shell { display: grid; grid-template-columns: 1fr minmax(300px, 720px) auto; align-items: center; gap: 30px; }
.footer-brand { display: inline-flex; align-items: center; gap: 10px; color: var(--paper); font-weight: 700; }
.site-footer p { font-family: var(--mono); font-size: .58rem; line-height: 1.55; text-align: center; text-transform: uppercase; }
.site-footer a { color: var(--paper); font-family: var(--mono); font-size: .63rem; text-transform: uppercase; }
.toast {
  position: fixed;
  z-index: 300;
  right: 20px;
  bottom: 20px;
  max-width: min(360px, calc(100vw - 40px));
  padding: 13px 16px;
  color: var(--ink);
  background: var(--paper);
  border: 2px solid var(--ink);
  box-shadow: 8px 8px 0 var(--green-dark);
  font-family: var(--mono);
  font-size: .7rem;
  opacity: 0;
  transform: translateY(18px);
  pointer-events: none;
  transition: opacity .25s ease, transform .25s ease;
}
.toast.is-visible { opacity: 1; transform: translateY(0); }
.js .reveal { opacity: 0; transform: translateY(32px); transition: opacity .8s var(--ease-out), transform .8s var(--ease-out); }
.js .reveal.is-visible { opacity: 1; transform: translateY(0); }
.js .reveal:nth-child(2) { transition-delay: .05s; }
.js .reveal:nth-child(3) { transition-delay: .1s; }
.js .reveal:nth-child(4) { transition-delay: .15s; }
img.is-broken { opacity: 0; }
.media-fallback {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 24px;
  color: rgba(242,240,232,.62);
  background: linear-gradient(135deg, rgba(120,204,88,.14), transparent 50%), #111511;
  font-family: var(--mono);
  font-size: .7rem;
  text-align: center;
  text-transform: uppercase;
}

@media (max-width: 1100px) {
  .nav-shell { grid-template-columns: 1fr auto; }
  .site-nav { display: none; }
  .hero-image-secondary { opacity: .72; }
  .hero-bottom { grid-template-columns: 1fr; }
  .hero-actions { justify-content: flex-start; }
  .case-shell, .case-shell-reverse, .tooling-grid { grid-template-columns: 1fr; }
  .case-shell-reverse .case-media { order: 2; }
  .case-copy { max-width: 780px; }
  .case-media { max-width: 850px; }
  .catalogue-heading { grid-template-columns: 1fr; }
  .catalogue-heading .section-label { margin-bottom: -10px; }
  .contact-shell { grid-template-columns: 1fr; }
  .contact-actions { max-width: 620px; }
  .footer-shell { grid-template-columns: 1fr; text-align: left; }
  .site-footer p { text-align: left; }
}

@media (max-width: 820px) {
  :root { --gutter: 20px; }
  .site-header { position: absolute; }
  .site-header.is-scrolled { background: transparent; border-color: transparent; backdrop-filter: none; }
  .nav-shell { min-height: 72px; }
  .brand-copy small, .pixel-button-small { display: none; }
  .hero-shell { padding-top: 112px; }
  .hero-title { font-size: clamp(3.55rem, 16vw, 6rem); line-height: .88; }
  .hero-image-secondary { display: none; }
  .hero-shade { background: linear-gradient(90deg, rgba(7,8,7,.91) 0%, rgba(7,8,7,.56) 100%), linear-gradient(0deg, rgba(7,8,7,.96) 0%, transparent 55%, rgba(7,8,7,.42) 100%); }
  .hero-proof, .visual-stats { grid-template-columns: repeat(2, 1fr); }
  .hero-proof > div:nth-child(2), .visual-stats > div:nth-child(2) { border-right: 0; }
  .hero-proof > div:nth-child(-n+2), .visual-stats > div:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,.22); }
  .hero-proof > div:nth-child(3), .visual-stats > div:nth-child(3) { padding-left: 0; }
  .statement-grid, .team-heading { grid-template-columns: 1fr; }
  .statement-title, .team-heading h2, .direction h2 { font-size: clamp(2.75rem, 12vw, 5rem); }
  .case-facts { grid-template-columns: 1fr; }
  .case-facts > div, .case-facts > div:not(:first-child) { padding: 14px 0; border-right: 0; border-bottom: 1px solid currentColor; }
  .case-facts > div:last-child { border-bottom: 0; }
  .visual-wall { grid-template-columns: 1fr; grid-template-rows: auto; }
  .visual-tile, .visual-tile-large { grid-row: auto; min-height: 360px; }
  .product-grid, .team-grid, .direction-list { grid-template-columns: 1fr; }
  .person-card { min-height: auto; }
  .code-note { position: relative; right: auto; bottom: auto; margin: 18px 0 0 18px; }
  .direction-item { min-height: 260px; }
  .direction-item h3 { margin-top: 44px; }
}

@media (max-width: 560px) {
  .hero-kicker { font-size: .56rem; }
  .hero-title { margin-top: 5vh; }
  .hero-intro { font-size: .98rem; }
  .hero-actions { align-items: stretch; flex-direction: column; gap: 10px; }
  .pixel-button, .text-button { width: 100%; justify-content: center; }
  .hero-proof { margin-top: 36px; }
  .hero-proof > div { min-height: 92px; }
  .hero-proof strong { font-size: 1.2rem; }
  .hero-index { display: none; }
  .case-copy h2, .visual-heading h2, .contact h2 { font-size: clamp(3rem, 16vw, 4.8rem); }
  .media-caption { flex-direction: column; }
  .cinema::before { display: none; }
  .cinema-label { right: 12px; bottom: 10px; font-size: .56rem; }
  .visual-stats > div { min-height: 96px; padding: 14px 12px; }
  .visual-tile, .visual-tile-large { min-height: 280px; }
  .product-copy { min-height: auto; padding: 24px 20px 34px; }
  .blueprint-frame img { min-height: 260px; }
  .person-card { padding: 28px 20px 36px; }
  .person-card dl > div { grid-template-columns: 1fr; gap: 6px; }
  .direction-media img { object-position: 67% center; }
  .contact-links { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .js .reveal { opacity: 1; transform: none; }
  .hero-image { transform: none !important; }
}
