:root {
  --ink: #151515;
  --black: #0a0b0c;
  --coal: #15171a;
  --paper: #f1f2ef;
  --white: #fffef9;
  --soft: #d8dcdd;
  --muted: #64696e;
  --red: #ed3d32;
  --red-dark: #a8231c;
  --blue: #4b74ff;
  --blue-dark: #2749c7;
  --yellow: #f2c94c;
  --teal: #58b8aa;
  --line-dark: rgba(255, 255, 255, 0.15);
  --line-light: rgba(21, 21, 21, 0.15);
  --radius: 6px;
  --page-pad: 48px;
  --content-max: 1280px;
  --stage-max: 1480px;
  --header-h: 72px;
  --display: "Bricolage Grotesque", Arial, sans-serif;
  --body: "Manrope", Arial, sans-serif;
  --mono: "IBM Plex Mono", Consolas, monospace;
  color: var(--ink);
  font-family: var(--body);
  font-synthesis: none;
  letter-spacing: 0;
  background: var(--paper);
}

* {
  box-sizing: border-box;
  letter-spacing: 0;
}

html {
  scroll-behavior: smooth;
  background: var(--black);
  scrollbar-color: var(--red) var(--black);
}

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

body::selection,
body *::selection {
  color: var(--white);
  background: var(--red);
}

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

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  border: 0;
}

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

h1,
h2,
h3,
.footer-brand {
  font-family: var(--display);
  font-weight: 650;
  line-height: 0.98;
}

p {
  line-height: 1.65;
}

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

@view-transition {
  navigation: auto;
}

::view-transition-old(root),
::view-transition-new(root) {
  animation-duration: 320ms;
}

.skip-link {
  position: fixed;
  z-index: 2000;
  top: 10px;
  left: 10px;
  padding: 12px 16px;
  color: var(--black);
  background: var(--yellow);
  transform: translateY(-150%);
  transition: transform 160ms ease;
}

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

.page-progress {
  position: fixed;
  z-index: 1600;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  pointer-events: none;
}

.page-progress span {
  display: block;
  width: 0;
  height: 100%;
  background: var(--red);
  transition: width 80ms linear;
}

.site-header {
  position: fixed;
  z-index: 1500;
  top: 0;
  left: 0;
  display: grid;
  grid-template-columns: minmax(190px, 1fr) auto minmax(190px, 1fr);
  align-items: center;
  width: 100%;
  height: var(--header-h);
  padding: 0 var(--page-pad);
  color: var(--white);
  background: rgba(10, 11, 12, 0.82);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(18px) saturate(130%);
  transition: background 240ms ease, transform 240ms ease;
}

.site-header.is-scrolled {
  background: rgba(10, 11, 12, 0.95);
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  justify-self: start;
  font-family: var(--display);
  font-size: 0.93rem;
  font-weight: 650;
  white-space: nowrap;
}

.brand-mark {
  display: grid;
  width: 43px;
  height: 34px;
  place-items: center;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 25px;
  justify-self: center;
  font-size: 0.76rem;
  font-weight: 700;
  white-space: nowrap;
}

.main-nav a {
  position: relative;
  padding: 10px 0;
  color: rgba(255, 255, 255, 0.72);
  transition: color 180ms ease;
}

.main-nav a::after {
  position: absolute;
  right: 0;
  bottom: 3px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--red);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

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

.main-nav a:hover::after,
.main-nav a[aria-current="page"]::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-action {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  justify-self: end;
  padding: 11px 15px;
  font-size: 0.78rem;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease;
}

.nav-action:hover {
  color: var(--white);
  background: var(--red);
  border-color: var(--red);
}

.kicker {
  color: var(--red-dark);
  font-family: var(--mono);
  font-size: 0.7rem;
  font-weight: 500;
  line-height: 1.4;
  text-transform: uppercase;
}

.kicker-light {
  color: rgba(255, 255, 255, 0.66);
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 13px 18px;
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  border: 1px solid transparent;
  border-radius: var(--radius);
  transition: color 180ms ease, background 180ms ease, transform 180ms ease, border-color 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-light {
  color: var(--black);
  background: var(--white);
}

.button-light:hover {
  color: var(--white);
  background: var(--red-dark);
}

.button-dark {
  color: var(--white);
  background: var(--black);
}

.button-dark:hover {
  background: var(--red-dark);
}

.button-quiet {
  color: var(--ink);
  background: transparent;
  border-color: var(--line-light);
}

.button-quiet:hover {
  border-color: var(--ink);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 4px;
  font-size: 0.82rem;
  font-weight: 700;
  border-bottom: 1px solid currentColor;
}

.text-link-light {
  color: var(--white);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px;
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 720ms cubic-bezier(0.2, 0.7, 0, 1), transform 720ms cubic-bezier(0.2, 0.7, 0, 1);
}

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

[data-parallax] {
  --parallax-y: 0px;
  translate: 0 var(--parallax-y);
  transition: translate 120ms linear;
  will-change: translate;
}

/* Home hero */
.home-page main {
  padding-top: var(--header-h);
  background: var(--paper);
}

.home-hero {
  position: relative;
  width: min(var(--stage-max), calc(100% - 64px));
  height: min(900px, calc(100svh - 104px));
  min-height: 720px;
  margin: 24px auto 0;
  color: var(--white);
  background: var(--black);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  isolation: isolate;
  overflow: hidden;
}

.hero-media-field,
.hero-veil,
.alchemy-rune-canvas,
.rune-fallback-mark {
  position: absolute;
  inset: 0;
}

.hero-media-field {
  z-index: -4;
  filter: saturate(0.98) contrast(1.02);
}

.hero-media-tile {
  position: absolute;
  overflow: hidden;
  background: #1b1d20;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 14px;
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.42);
  transform: translate3d(var(--depth-x, 0), var(--depth-y, 0), 0) rotate(var(--tile-rotate, 0));
  transition: transform 700ms cubic-bezier(0.2, 0.7, 0, 1);
  will-change: transform;
}

.hero-media-tile::after {
  position: absolute;
  inset: 0;
  content: "";
  background: rgba(5, 7, 8, 0.22);
}

.hero-media-tile img,
.hero-media-tile video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: media-breathe 14s ease-in-out infinite alternate;
}

.media-muse {
  bottom: -3%;
  left: -2%;
  width: 24%;
  height: 31%;
  --tile-rotate: -5deg;
}

.media-aiwork {
  right: -2%;
  bottom: -2%;
  width: 24%;
  height: 31%;
  --tile-rotate: 5deg;
}

.media-agency {
  bottom: -6%;
  left: 17%;
  width: 22%;
  height: 27%;
  --tile-rotate: -2.5deg;
}

.media-radio {
  right: 17%;
  bottom: -6%;
  width: 22%;
  height: 27%;
  --tile-rotate: 2.5deg;
}

.media-quackers {
  bottom: -9%;
  left: 34%;
  width: 18%;
  height: 23%;
  --tile-rotate: -1deg;
}

.media-barekasu {
  right: 34%;
  bottom: -9%;
  width: 18%;
  height: 23%;
  --tile-rotate: 1deg;
}

@keyframes media-breathe {
  from { transform: scale(1.01); }
  to { transform: scale(1.07); }
}

.alchemy-rune-canvas {
  z-index: -2;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.rune-fallback-mark {
  z-index: -2;
  top: 29%;
  right: 36%;
  bottom: auto;
  left: auto;
  width: 28%;
  height: 48%;
  opacity: 0;
  transition: opacity 300ms ease;
}

.rune-fallback .rune-fallback-mark {
  opacity: 0.52;
}

.rune-fallback-mark span,
.large-rune .rune-triangle,
.rune-wire .rune-triangle,
.brief-rune .rune-triangle {
  position: absolute;
  top: 4%;
  left: 18%;
  width: 64%;
  aspect-ratio: 1 / 0.88;
  border: 9px solid currentColor;
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
}

.rune-fallback-mark i,
.large-rune .rune-stem,
.rune-wire .rune-stem,
.brief-rune .rune-stem {
  position: absolute;
  top: 60%;
  left: calc(50% - 4px);
  width: 8px;
  height: 34%;
  background: currentColor;
}

.rune-fallback-mark b,
.large-rune i,
.rune-wire i,
.brief-rune i {
  position: absolute;
  top: 70%;
  left: 27%;
  width: 46%;
  height: 8px;
  background: currentColor;
}

.rune-fallback-mark b:last-child,
.large-rune i:last-child,
.rune-wire i:last-child,
.brief-rune i:last-child {
  top: 82%;
}

.hero-veil {
  z-index: -1;
  background:
    radial-gradient(circle at 50% 54%, rgba(75, 116, 255, 0.08), transparent 32%),
    linear-gradient(0deg, rgba(10, 11, 12, 0.94) 0%, rgba(10, 11, 12, 0.06) 34%, rgba(10, 11, 12, 0.28) 72%, rgba(10, 11, 12, 0.76) 100%);
}

.home-hero-copy {
  position: absolute;
  z-index: 2;
  top: 54px;
  right: 0;
  left: 0;
  width: min(1040px, calc(100% - 96px));
  margin: 0 auto;
  text-align: center;
}

.home-hero-copy .hero-actions {
  justify-content: center;
}

.home-hero-copy h1 {
  max-width: 1040px;
  margin: 16px auto 20px;
  font-size: clamp(4rem, 5.7vw, 5.8rem);
  font-weight: 520;
  line-height: 0.92;
  text-wrap: balance;
  text-shadow: 0 8px 36px rgba(0, 0, 0, 0.42);
}

.home-hero-copy h1 span {
  display: block;
}

.home-hero-copy h1 em {
  color: var(--red);
  font-style: normal;
  font-weight: 760;
}

.hero-lede {
  max-width: 590px;
  margin: 0 auto 24px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.02rem;
}

.hero-live-note {
  position: absolute;
  z-index: 3;
  right: var(--page-pad);
  bottom: 28px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--mono);
  font-size: 0.66rem;
  text-transform: uppercase;
}

.live-dot {
  width: 7px;
  height: 7px;
  background: var(--teal);
  border-radius: 50%;
  box-shadow: 0 0 0 6px rgba(88, 184, 170, 0.13);
  animation: live-pulse 1.8s ease-in-out infinite;
}

@keyframes live-pulse {
  50% { opacity: 0.45; transform: scale(0.75); }
}

.hero-scroll-cue {
  position: absolute;
  z-index: 4;
  right: var(--page-pad);
  bottom: 80px;
  display: grid;
  gap: 9px;
  color: rgba(255, 255, 255, 0.64);
  font-family: var(--mono);
  font-size: 0.64rem;
  text-transform: uppercase;
}

.hero-scroll-cue i {
  display: block;
  width: 42px;
  height: 1px;
  background: currentColor;
  transform-origin: left;
  animation: cue-line 2s ease-in-out infinite;
}

@keyframes cue-line {
  0%, 100% { transform: scaleX(0.25); }
  50% { transform: scaleX(1); }
}

.proof-ribbon {
  display: grid;
  grid-template-columns: repeat(3, minmax(130px, 0.65fr)) minmax(280px, 1.7fr);
  width: min(var(--content-max), calc(100% - 96px));
  min-height: 126px;
  margin: 42px auto 0;
  color: var(--ink);
  background: var(--yellow);
  border: 1px solid var(--ink);
  border-radius: 16px;
  overflow: hidden;
}

.proof-ribbon > * {
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: center;
  padding: 22px 28px;
  border-right: 1px solid rgba(21, 21, 21, 0.38);
}

.proof-ribbon strong {
  font-family: var(--display);
  font-size: 2.05rem;
  line-height: 1;
}

.proof-ribbon span {
  margin-top: 7px;
  font-family: var(--mono);
  font-size: 0.62rem;
  text-transform: uppercase;
}

.proof-ribbon p {
  border: 0;
  font-size: 0.9rem;
  font-weight: 600;
}

/* Shared sections */
.content-section {
  padding: 120px var(--page-pad);
  background: var(--paper);
}

.content-section > * {
  width: min(var(--content-max), 100%);
  margin-right: auto;
  margin-left: auto;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(220px, 0.65fr);
  align-items: end;
  gap: 56px;
  margin-bottom: 52px;
}

.section-heading h2 {
  max-width: 820px;
  margin-top: 13px;
  font-size: 3.45rem;
  font-weight: 540;
  line-height: 1;
  text-wrap: balance;
}

.section-heading > p {
  max-width: 440px;
  color: var(--muted);
  font-size: 0.94rem;
}

.section-heading > .text-link {
  justify-self: end;
}

.section-heading-dark {
  color: var(--white);
}

.section-heading-dark > p {
  color: rgba(255, 255, 255, 0.6);
}

/* Offers */
.offer-grid {
  display: grid;
  grid-auto-rows: 360px;
  grid-template-columns: repeat(12, 1fr);
  gap: 14px;
}

.offer-card {
  position: relative;
  grid-column: span 4;
  min-width: 0;
  color: var(--white);
  background: var(--coal);
  border-radius: var(--radius);
  overflow: hidden;
}

.offer-card:nth-child(1) { grid-column: span 7; }
.offer-card:nth-child(2) { grid-column: span 5; }
.offer-card:nth-child(3),
.offer-card:nth-child(4),
.offer-card:nth-child(5) { grid-column: span 4; }

.offer-card > img,
.offer-card > video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms cubic-bezier(0.2, 0.7, 0, 1), filter 500ms ease;
}

.offer-card:hover > img,
.offer-card:hover > video {
  transform: scale(1.045);
  filter: saturate(1.12);
}

.offer-card-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(5, 6, 7, 0.9) 0%, rgba(5, 6, 7, 0.04) 72%);
}

.offer-card::after,
.work-card::after,
.project-card::after {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background: radial-gradient(circle at var(--spot-x, 50%) var(--spot-y, 50%), rgba(255, 255, 255, 0.2), transparent 32%);
  opacity: 0;
  transition: opacity 240ms ease;
}

.offer-card:hover::after,
.work-card:hover::after,
.project-card:hover::after {
  opacity: 1;
}

.offer-card-copy {
  position: absolute;
  z-index: 2;
  right: 24px;
  bottom: 24px;
  left: 24px;
}

.card-index,
.work-card-copy span,
.project-card-copy > span,
.prototype-feature-copy > span {
  display: block;
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.62);
  font-family: var(--mono);
  font-size: 0.61rem;
  text-transform: uppercase;
}

.offer-card-copy h3 {
  max-width: 90%;
  margin-bottom: 8px;
  font-size: 2rem;
  line-height: 1;
}

.offer-card-copy p {
  max-width: 520px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.82rem;
  line-height: 1.45;
}

.card-arrow {
  position: absolute;
  z-index: 3;
  top: 18px;
  right: 18px;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: var(--black);
  background: var(--white);
  border-radius: 50%;
  transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

.offer-card:hover .card-arrow {
  color: var(--white);
  background: var(--red);
  transform: rotate(-25deg);
}

/* Ethos */
.ethos-section {
  position: relative;
  display: grid;
  min-height: 720px;
  place-items: center;
  width: min(var(--content-max), calc(100% - 96px));
  padding: 120px 64px;
  margin: 48px auto;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line-light);
  border-radius: 24px;
  overflow: hidden;
}

.ethos-copy {
  position: relative;
  z-index: 2;
  width: min(1050px, 100%);
  text-align: center;
}

.ethos-copy h2 {
  margin: 20px 0 30px;
  font-size: 5rem;
  font-weight: 500;
  line-height: 0.97;
  text-wrap: balance;
}

.ethos-copy h2 mark {
  position: relative;
  display: inline;
  color: inherit;
  background: transparent;
  isolation: isolate;
}

.ethos-copy h2 mark::before {
  position: absolute;
  z-index: -1;
  right: -0.04em;
  bottom: 0.02em;
  left: -0.04em;
  height: 0.34em;
  content: "";
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 900ms 240ms cubic-bezier(0.2, 0.7, 0, 1);
}

.ethos-copy.is-visible h2 mark::before {
  transform: scaleX(1);
}

.ethos-copy > p:last-child {
  max-width: 680px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 1.03rem;
}

.ethos-notes {
  position: absolute;
  right: 64px;
  bottom: 34px;
  left: 64px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line-light);
}

.ethos-notes span {
  padding: 18px 16px;
  font-family: var(--mono);
  font-size: 0.65rem;
  text-align: center;
  text-transform: uppercase;
  border-right: 1px solid var(--line-light);
}

.ethos-notes span:last-child {
  border: 0;
}

.ethos-orbit {
  position: absolute;
  width: 660px;
  height: 660px;
  opacity: 0.14;
}

.ethos-orbit span {
  position: absolute;
  inset: 0;
  border: 1px solid var(--blue);
  border-radius: 50%;
}

.ethos-orbit span:nth-child(2) { transform: rotate(60deg) scaleX(0.46); }
.ethos-orbit span:nth-child(3) { transform: rotate(-60deg) scaleX(0.46); border-color: var(--red); }

/* Work preview */
.work-preview-grid {
  display: grid;
  grid-auto-rows: 315px;
  grid-template-columns: repeat(12, 1fr);
  gap: 14px;
}

.work-card {
  position: relative;
  grid-column: span 4;
  min-width: 0;
  color: var(--white);
  background: var(--black);
  border-radius: var(--radius);
  overflow: hidden;
}

.work-card-large {
  grid-row: span 2;
  grid-column: span 7;
}

.work-card-wide {
  grid-column: span 8;
}

.work-card > img,
.work-card > video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 650ms cubic-bezier(0.2, 0.7, 0, 1);
}

.work-card:hover > img,
.work-card:hover > video {
  transform: scale(1.04);
}

.work-card::before {
  position: absolute;
  z-index: 1;
  inset: 0;
  content: "";
  background: linear-gradient(0deg, rgba(6, 7, 8, 0.9), transparent 68%);
}

.work-card-copy {
  position: absolute;
  z-index: 3;
  right: 22px;
  bottom: 21px;
  left: 22px;
}

.work-card-copy h3 {
  font-size: 2rem;
}

/* Prototype preview */
.prototype-preview-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.58fr) minmax(0, 1.42fr);
  gap: 56px;
  width: min(var(--content-max), calc(100% - 96px));
  padding: 84px;
  margin: 48px auto;
  color: var(--white);
  background: var(--black);
  border-radius: 24px;
}

.prototype-intro {
  align-self: center;
}

.prototype-intro h2 {
  margin: 15px 0 30px;
  font-size: 3.25rem;
  font-weight: 520;
}

.prototype-preview-track {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.prototype-slab {
  position: relative;
  min-height: 235px;
  background: #17191d;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  overflow: hidden;
}

.prototype-slab:first-child {
  grid-row: span 2;
}

.prototype-slab img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 550ms ease, filter 550ms ease;
}

.prototype-slab:hover img {
  transform: scale(1.04);
  filter: saturate(1.18);
}

.prototype-slab::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(0deg, rgba(5, 6, 8, 0.92), transparent 58%);
}

.prototype-slab > span {
  position: absolute;
  z-index: 2;
  right: 18px;
  bottom: 17px;
  left: 18px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
}

.prototype-slab strong {
  font-family: var(--display);
  font-size: 1.35rem;
}

.prototype-slab small {
  color: rgba(255, 255, 255, 0.6);
  font-family: var(--mono);
  font-size: 0.56rem;
  text-transform: uppercase;
}

/* Alchemy preview */
.alchemy-preview-section {
  display: grid;
  min-height: 780px;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  align-items: center;
  gap: 72px;
  width: min(var(--content-max), calc(100% - 96px));
  padding: 84px;
  margin: 48px auto;
  color: var(--white);
  background: #11141a;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
}

.alchemy-preview-visual {
  position: relative;
  min-height: 560px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 34px 34px;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  overflow: hidden;
}

.rune-wire {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 290px;
  height: 390px;
  color: var(--white);
  filter: drop-shadow(0 0 24px rgba(75, 116, 255, 0.4));
  transform: translate(-50%, -50%);
  animation: rune-breathe 4.5s ease-in-out infinite;
}

@keyframes rune-breathe {
  50% { transform: translate(-50%, -50%) scale(1.025) rotate(0.8deg); filter: drop-shadow(0 0 40px rgba(237, 61, 50, 0.42)); }
}

.alchemy-particle-field b {
  position: absolute;
  color: rgba(255, 255, 255, 0.52);
  font-family: var(--mono);
  font-size: 0.62rem;
  font-weight: 400;
  animation: particle-drift 8s ease-in-out infinite alternate;
}

.alchemy-particle-field b:nth-child(1) { top: 12%; left: 11%; color: var(--red); }
.alchemy-particle-field b:nth-child(2) { top: 23%; right: 12%; animation-delay: -1s; }
.alchemy-particle-field b:nth-child(3) { top: 47%; left: 7%; color: var(--yellow); animation-delay: -2s; }
.alchemy-particle-field b:nth-child(4) { top: 62%; right: 8%; color: var(--blue); animation-delay: -3s; }
.alchemy-particle-field b:nth-child(5) { bottom: 11%; left: 16%; animation-delay: -4s; }
.alchemy-particle-field b:nth-child(6) { bottom: 19%; right: 18%; color: var(--teal); animation-delay: -5s; }
.alchemy-particle-field b:nth-child(7) { top: 8%; left: 48%; animation-delay: -6s; }
.alchemy-particle-field b:nth-child(8) { bottom: 5%; left: 48%; animation-delay: -7s; }

@keyframes particle-drift {
  to { transform: translate3d(12px, -18px, 0); opacity: 0.35; }
}

.alchemy-preview-copy h2 {
  margin: 16px 0 24px;
  font-size: 3.8rem;
  font-weight: 520;
  line-height: 0.98;
}

.alchemy-preview-copy > p {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.65);
}

.alchemy-stages {
  display: grid;
  margin: 34px 0;
  border-top: 1px solid var(--line-dark);
}

.alchemy-stages span {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 20px;
  padding: 14px 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.78rem;
  border-bottom: 1px solid var(--line-dark);
}

.alchemy-stages strong {
  color: var(--white);
}

/* Founder */
.founder-section {
  display: grid;
  grid-template-columns: minmax(320px, 0.85fr) minmax(0, 1.15fr);
  align-items: center;
  gap: 78px;
}

.founder-media {
  position: relative;
  max-width: 560px;
  background: var(--blue);
  border-radius: var(--radius);
  overflow: hidden;
}

.founder-media img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center 20%;
  mix-blend-mode: luminosity;
}

.founder-media span {
  position: absolute;
  right: 14px;
  bottom: 14px;
  left: 14px;
  padding: 12px;
  color: var(--white);
  font-family: var(--mono);
  font-size: 0.6rem;
  text-transform: uppercase;
  background: rgba(10, 11, 12, 0.72);
  backdrop-filter: blur(10px);
}

.founder-copy h2 {
  max-width: 720px;
  margin: 16px 0 25px;
  font-size: 4rem;
  font-weight: 520;
}

.founder-copy > p {
  max-width: 700px;
  color: var(--muted);
}

.founder-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 34px 0 28px;
  border-top: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
}

.founder-facts span {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 7px;
  padding: 18px;
  color: var(--muted);
  font-size: 0.7rem;
  border-right: 1px solid var(--line-light);
}

.founder-facts span:first-child { padding-left: 0; }
.founder-facts span:last-child { border: 0; }
.founder-facts strong { color: var(--ink); font-size: 0.82rem; }

/* Blog cards */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.blog-card,
.blog-feature-card {
  position: relative;
  min-width: 0;
  background: var(--white);
  border: 1px solid var(--line-light);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color 350ms ease, box-shadow 350ms ease, transform 350ms ease;
}

.blog-card:hover,
.blog-feature-card:hover {
  border-color: rgba(21, 21, 21, 0.24);
  box-shadow: 0 24px 60px rgba(21, 21, 21, 0.08);
  transform: translateY(-3px);
}

.blog-card-link {
  display: block;
  height: 100%;
}

.blog-card-art {
  position: relative;
  height: auto;
  aspect-ratio: 16 / 9;
  isolation: isolate;
  background: #151719;
  overflow: hidden;
}

.blog-card-image {
  position: absolute;
  z-index: 0;
  inset: 11px;
  width: calc(100% - 22px);
  height: calc(100% - 22px);
  object-fit: cover;
  border-radius: 7px;
  filter: saturate(0.72) contrast(1.06);
  opacity: 0.32;
  transition: filter 700ms ease, opacity 700ms ease, transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
}

.blog-card:hover .blog-card-image,
.blog-feature-card:hover .blog-card-image {
  filter: saturate(0.94) contrast(1.08);
  opacity: 0.48;
  transform: scale(1.025);
}

.blog-card-art::after {
  position: absolute;
  z-index: 2;
  inset: 11px;
  content: "";
  background: linear-gradient(0deg, rgba(10, 11, 12, 0.72), transparent 48%);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 7px;
  pointer-events: none;
}

.blog-card-art > span {
  position: absolute;
  z-index: 4;
  bottom: 22px;
  left: 22px;
  padding: 7px 9px;
  color: var(--white);
  font-family: var(--mono);
  font-size: 0.58rem;
  text-transform: uppercase;
  background: rgba(10, 11, 12, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 3px;
  backdrop-filter: blur(6px);
}

.blog-art-title {
  position: absolute;
  z-index: 4;
  top: 22px;
  left: 22px;
  color: rgba(255, 255, 255, 0.82);
  font-family: var(--mono);
  font-size: 0.54rem;
  font-weight: 600;
  text-transform: uppercase;
}

.blog-art-title::before {
  display: inline-block;
  width: 18px;
  height: 1px;
  margin: 0 8px 3px 0;
  content: "";
  background: var(--yellow);
}

.blog-art-motion {
  position: absolute;
  z-index: 1;
  inset: 11px;
  overflow: hidden;
  border-radius: 7px;
  pointer-events: none;
}

.blog-art-motion i {
  position: absolute;
  display: block;
  font-style: normal;
}

/* Each insight family has its own animated cover language. */
.visual-marketing-engine .blog-art-motion i {
  top: 29%;
  left: 28%;
  width: 46%;
  height: 38%;
  background: rgba(13, 15, 16, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 5px;
  box-shadow: inset 0 25px rgba(255, 255, 255, 0.025);
  animation: blog-stack 7s ease-in-out infinite;
}
.visual-marketing-engine .blog-art-motion i::after {
  position: absolute;
  top: 38%;
  right: 12%;
  left: 12%;
  height: 2px;
  content: "";
  background: var(--yellow);
  box-shadow: 0 12px rgba(255,255,255,0.55), 0 24px rgba(122, 218, 134, 0.7);
}
.visual-marketing-engine .blog-art-motion i:nth-child(1) { transform: translate(-32px, -24px); animation-delay: -5s; }
.visual-marketing-engine .blog-art-motion i:nth-child(2) { transform: translate(-20px, -15px); animation-delay: -4s; }
.visual-marketing-engine .blog-art-motion i:nth-child(3) { transform: translate(-8px, -7px); animation-delay: -3s; }
.visual-marketing-engine .blog-art-motion i:nth-child(4) { animation-delay: -2s; }
.visual-marketing-engine .blog-art-motion i:nth-child(5) { transform: translate(12px, 9px); animation-delay: -1s; }
.visual-marketing-engine .blog-art-motion i:nth-child(6) { transform: translate(24px, 18px); }

.visual-trend-heatline .blog-art-motion::before,
.visual-trend-heatline .blog-art-motion::after {
  position: absolute;
  right: 9%;
  left: 9%;
  height: 2px;
  content: "";
  background: var(--yellow);
  transform: rotate(-7deg) translateY(0);
  box-shadow: 48px -26px var(--yellow), 96px 14px var(--yellow), 144px -36px var(--yellow), 192px -12px var(--yellow);
  animation: blog-heatline 6s ease-in-out infinite;
}
.visual-trend-heatline .blog-art-motion::before { top: 53%; }
.visual-trend-heatline .blog-art-motion::after { top: 58%; opacity: 0.24; animation-delay: -3s; }
.visual-trend-heatline .blog-art-motion i {
  top: 50%;
  width: 9px;
  height: 9px;
  background: #c184d2;
  border: 2px solid #171819;
  border-radius: 50%;
  animation: blog-node 3.2s ease-in-out infinite;
}
.visual-trend-heatline .blog-art-motion i:nth-child(1) { left: 12%; }
.visual-trend-heatline .blog-art-motion i:nth-child(2) { left: 28%; top: 39%; animation-delay: -0.5s; }
.visual-trend-heatline .blog-art-motion i:nth-child(3) { left: 44%; top: 57%; animation-delay: -1s; }
.visual-trend-heatline .blog-art-motion i:nth-child(4) { left: 59%; top: 35%; animation-delay: -1.5s; }
.visual-trend-heatline .blog-art-motion i:nth-child(5) { left: 74%; top: 47%; animation-delay: -2s; }
.visual-trend-heatline .blog-art-motion i:nth-child(6) { left: 87%; top: 62%; animation-delay: -2.5s; }

.visual-performance-radar .blog-art-motion::before,
.visual-performance-radar .blog-art-motion::after {
  position: absolute;
  top: 50%;
  left: 50%;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}
.visual-performance-radar .blog-art-motion::before { width: 58%; aspect-ratio: 1; box-shadow: inset 0 0 0 36px rgba(255,255,255,0.02), inset 0 0 0 72px rgba(255,255,255,0.025); }
.visual-performance-radar .blog-art-motion::after { width: 3px; height: 43%; background: var(--red); border: 0; border-radius: 3px; transform-origin: 50% 100%; animation: blog-radar 4.2s linear infinite; }
.visual-performance-radar .blog-art-motion i {
  width: 8px;
  height: 8px;
  background: var(--yellow);
  border-radius: 50%;
  box-shadow: 0 0 0 7px rgba(255, 211, 77, 0.12);
  animation: blog-node 2.6s ease-in-out infinite;
}
.visual-performance-radar .blog-art-motion i:nth-child(1) { top: 31%; left: 39%; }
.visual-performance-radar .blog-art-motion i:nth-child(2) { top: 62%; left: 65%; animation-delay: -1s; }
.visual-performance-radar .blog-art-motion i:nth-child(3) { top: 45%; left: 71%; animation-delay: -2s; }
.visual-performance-radar .blog-art-motion i:nth-child(n+4) { display: none; }

.visual-search-signal-map .blog-art-motion i {
  width: 11px;
  height: 11px;
  background: var(--blue);
  border: 2px solid rgba(255,255,255,0.85);
  border-radius: 50%;
  box-shadow: 0 0 0 8px rgba(84, 145, 255, 0.12);
  animation: blog-map-node 5s ease-in-out infinite;
}
.visual-search-signal-map .blog-art-motion i::after {
  position: absolute;
  top: 4px;
  left: 9px;
  width: 95px;
  height: 1px;
  content: "";
  background: rgba(255,255,255,0.4);
  transform-origin: left;
}
.visual-search-signal-map .blog-art-motion i:nth-child(1) { top: 37%; left: 13%; }
.visual-search-signal-map .blog-art-motion i:nth-child(2) { top: 61%; left: 31%; animation-delay: -1s; }
.visual-search-signal-map .blog-art-motion i:nth-child(3) { top: 30%; left: 48%; animation-delay: -2s; }
.visual-search-signal-map .blog-art-motion i:nth-child(4) { top: 58%; left: 66%; animation-delay: -3s; }
.visual-search-signal-map .blog-art-motion i:nth-child(5) { top: 38%; left: 83%; animation-delay: -4s; }
.visual-search-signal-map .blog-art-motion i:nth-child(6) { display: none; }

.visual-creative-workflow .blog-art-motion i,
.visual-strategy-board .blog-art-motion i,
.visual-brand-memory-vault .blog-art-motion i {
  width: 25%;
  height: 24%;
  background: rgba(17, 19, 20, 0.9);
  border: 1px solid rgba(255,255,255,0.34);
  border-radius: 5px;
  box-shadow: inset 0 20px rgba(255,255,255,0.03);
  animation: blog-tile-shift 7s ease-in-out infinite;
}
.visual-creative-workflow .blog-art-motion i::after,
.visual-strategy-board .blog-art-motion i::after,
.visual-brand-memory-vault .blog-art-motion i::after {
  position: absolute;
  right: 13%;
  bottom: 16%;
  left: 13%;
  height: 2px;
  content: "";
  background: rgba(255,255,255,0.52);
}
.visual-creative-workflow .blog-art-motion i:nth-child(1), .visual-strategy-board .blog-art-motion i:nth-child(1), .visual-brand-memory-vault .blog-art-motion i:nth-child(1) { top: 25%; left: 10%; }
.visual-creative-workflow .blog-art-motion i:nth-child(2), .visual-strategy-board .blog-art-motion i:nth-child(2), .visual-brand-memory-vault .blog-art-motion i:nth-child(2) { top: 42%; left: 38%; animation-delay: -1.2s; }
.visual-creative-workflow .blog-art-motion i:nth-child(3), .visual-strategy-board .blog-art-motion i:nth-child(3), .visual-brand-memory-vault .blog-art-motion i:nth-child(3) { top: 21%; left: 66%; animation-delay: -2.4s; }
.visual-creative-workflow .blog-art-motion i:nth-child(4), .visual-strategy-board .blog-art-motion i:nth-child(4), .visual-brand-memory-vault .blog-art-motion i:nth-child(4) { top: 61%; left: 18%; animation-delay: -3.6s; }
.visual-creative-workflow .blog-art-motion i:nth-child(5), .visual-strategy-board .blog-art-motion i:nth-child(5), .visual-brand-memory-vault .blog-art-motion i:nth-child(5) { top: 62%; left: 63%; animation-delay: -4.8s; }
.visual-creative-workflow .blog-art-motion i:nth-child(6), .visual-strategy-board .blog-art-motion i:nth-child(6), .visual-brand-memory-vault .blog-art-motion i:nth-child(6) { display: none; }
.visual-creative-workflow .blog-art-motion i { border-color: rgba(255, 211, 77, 0.65); }
.visual-strategy-board .blog-art-motion i { transform: rotate(-3deg); border-color: rgba(84, 145, 255, 0.7); }
.visual-brand-memory-vault .blog-art-motion i { width: 30%; height: 30%; border-color: rgba(122, 218, 134, 0.58); }

.visual-automation-orbit .blog-art-motion::before,
.visual-automation-orbit .blog-art-motion::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 58%;
  aspect-ratio: 1;
  content: "";
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 50%;
  transform: translate(-50%, -50%) rotate(-18deg) scaleY(0.42);
}
.visual-automation-orbit .blog-art-motion::after { width: 38%; transform: translate(-50%, -50%) rotate(22deg) scaleY(0.54); }
.visual-automation-orbit .blog-art-motion i {
  top: 50%;
  left: 50%;
  width: 8px;
  height: 8px;
  margin: -4px;
  background: var(--yellow);
  border-radius: 50%;
  transform-origin: 0 0;
  animation: blog-orbit 5.5s linear infinite;
}
.visual-automation-orbit .blog-art-motion i:nth-child(2) { background: var(--blue); animation-duration: 7s; animation-delay: -2s; }
.visual-automation-orbit .blog-art-motion i:nth-child(3) { background: var(--red); animation-duration: 8.5s; animation-delay: -5s; }
.visual-automation-orbit .blog-art-motion i:nth-child(4) { width: 46px; height: 46px; margin: -23px; background: transparent; border: 1px solid rgba(255,255,255,0.6); animation: blog-core 4s ease-in-out infinite; }
.visual-automation-orbit .blog-art-motion i:nth-child(n+5) { display: none; }

.visual-ai-news-prism .blog-art-motion i,
.visual-ai-alchemy-field .blog-art-motion i {
  top: 29%;
  left: 42%;
  width: 18%;
  height: 45%;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.56);
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
  transform-origin: 50% 78%;
  animation: blog-prism 6.5s ease-in-out infinite;
}
.visual-ai-news-prism .blog-art-motion i:nth-child(2), .visual-ai-alchemy-field .blog-art-motion i:nth-child(2) { transform: rotate(60deg); opacity: 0.72; animation-delay: -1s; }
.visual-ai-news-prism .blog-art-motion i:nth-child(3), .visual-ai-alchemy-field .blog-art-motion i:nth-child(3) { transform: rotate(120deg); opacity: 0.58; animation-delay: -2s; }
.visual-ai-news-prism .blog-art-motion i:nth-child(4), .visual-ai-alchemy-field .blog-art-motion i:nth-child(4) { transform: rotate(180deg); opacity: 0.42; animation-delay: -3s; }
.visual-ai-news-prism .blog-art-motion i:nth-child(5), .visual-ai-alchemy-field .blog-art-motion i:nth-child(5) { transform: rotate(240deg); opacity: 0.3; animation-delay: -4s; }
.visual-ai-news-prism .blog-art-motion i:nth-child(6), .visual-ai-alchemy-field .blog-art-motion i:nth-child(6) { transform: rotate(300deg); opacity: 0.2; animation-delay: -5s; }
.visual-ai-news-prism .blog-art-motion::after,
.visual-ai-alchemy-field .blog-art-motion::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 34%;
  height: 1px;
  content: "";
  background: var(--red);
  box-shadow: 0 -15px var(--blue), 0 15px var(--yellow);
  transform: translate(-50%, -50%);
  animation: blog-spectrum 4.8s ease-in-out infinite;
}

@keyframes blog-stack { 50% { margin-top: -5px; margin-left: 5px; } }
@keyframes blog-heatline { 50% { transform: rotate(4deg) translateY(-12px) scaleX(0.9); } }
@keyframes blog-node { 50% { opacity: 0.45; transform: scale(1.5); } }
@keyframes blog-radar { to { transform: translate(-50%, -100%) rotate(360deg); } }
@keyframes blog-map-node { 50% { transform: translate(6px, -8px) scale(1.2); } }
@keyframes blog-tile-shift { 50% { transform: translateY(-8px); } }
@keyframes blog-orbit { to { transform: rotate(360deg) translateX(105px) rotate(-360deg); } }
@keyframes blog-core { 50% { transform: rotate(45deg) scale(1.12); } }
@keyframes blog-prism { 50% { filter: hue-rotate(70deg); opacity: 0.66; transform: rotate(18deg) scale(1.08); } }
@keyframes blog-spectrum { 50% { width: 58%; transform: translate(-50%, -50%) rotate(-7deg); } }

.blog-card-copy {
  padding: 22px;
}

.blog-meta {
  color: var(--muted);
  font-family: var(--mono);
  font-size: 0.57rem;
  line-height: 1.45;
  text-transform: uppercase;
}

.blog-card-copy h3 {
  margin: 13px 0 10px;
  font-size: 1.48rem;
  line-height: 1.08;
}

.blog-card-copy > p:not(.blog-meta) {
  color: var(--muted);
  font-size: 0.78rem;
}

.blog-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 18px;
}

.blog-tags span {
  padding: 6px 8px;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 0.52rem;
  background: var(--paper);
  border-radius: 3px;
}

.insight-skeleton {
  min-height: 450px;
  background: linear-gradient(100deg, #e0e2df 25%, #eceeeb 40%, #e0e2df 60%);
  background-size: 300% 100%;
  border-radius: var(--radius);
  animation: skeleton-wave 1.8s ease infinite;
}

@keyframes skeleton-wave { to { background-position: -150% 0; } }

/* Start + footer */
.start-section {
  position: relative;
  min-height: 560px;
  width: min(var(--content-max), calc(100% - 96px));
  padding: 110px 72px;
  margin: 48px auto;
  color: var(--ink);
  background: var(--red);
  border-radius: 24px;
  overflow: hidden;
}

.start-copy {
  position: relative;
  z-index: 2;
  width: min(820px, 100%);
}

.start-copy .kicker {
  color: rgba(21, 21, 21, 0.68);
}

.start-copy h2 {
  margin: 16px 0 20px;
  font-size: 5rem;
  font-weight: 520;
}

.start-copy > p:not(.kicker) {
  max-width: 600px;
  margin-bottom: 28px;
  color: rgba(21, 21, 21, 0.7);
}

.start-kinetic {
  position: absolute;
  top: 40px;
  right: -4%;
  display: grid;
  color: rgba(255, 255, 255, 0.16);
  font-family: var(--display);
  font-size: 7.5rem;
  font-weight: 700;
  line-height: 0.84;
  white-space: nowrap;
  transform: rotate(-7deg);
  animation: kinetic-drift 14s ease-in-out infinite alternate;
}

@keyframes kinetic-drift { to { transform: translateX(-7%) rotate(-7deg); } }

.site-footer {
  padding: 62px var(--page-pad) 34px;
  color: var(--white);
  background: var(--black);
  border-top: 1px solid var(--line-dark);
}

.site-footer > * {
  width: min(var(--content-max), 100%);
  margin-right: auto;
  margin-left: auto;
}

.footer-main {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
  padding-bottom: 42px;
  border-bottom: 1px solid var(--line-dark);
}

.footer-brand {
  font-size: 3rem;
}

.footer-main p {
  max-width: 360px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.82rem;
  text-align: right;
}

.site-footer > nav {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  padding: 28px 0;
  font-size: 0.74rem;
  font-weight: 700;
}

.site-footer > nav a:hover,
.footer-legal a:hover {
  color: var(--red);
}

.footer-legal {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: rgba(255, 255, 255, 0.42);
  font-family: var(--mono);
  font-size: 0.56rem;
  text-transform: uppercase;
}

.footer-legal > div {
  display: flex;
  gap: 18px;
}

/* Interior heroes */
.interior-page:not(.legal-page) main {
  padding-top: var(--header-h);
  background: var(--paper);
}

.interior-hero,
.alchemy-hero {
  position: relative;
  width: min(var(--stage-max), calc(100% - 64px));
  height: 82svh;
  min-height: 620px;
  max-height: 880px;
  margin: 24px auto 0;
  color: var(--white);
  background: var(--black);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  overflow: hidden;
}

.interior-hero-copy,
.alchemy-hero-copy {
  position: absolute;
  z-index: 4;
  bottom: 10%;
  left: var(--page-pad);
  width: min(780px, calc(100% - 96px));
}

.interior-hero-copy h1,
.alchemy-hero-copy h1 {
  margin: 15px 0 22px;
  font-size: 5.25rem;
  font-weight: 520;
  line-height: 0.91;
}

.interior-hero-copy > p:last-child,
.alchemy-hero-copy > p:last-child {
  max-width: 600px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 1rem;
}

/* Approach */
.approach-hero {
  isolation: isolate;
  background: #0c1014;
}

.approach-hero-video {
  position: absolute;
  z-index: -4;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.7) contrast(1.12);
  opacity: 0.48;
  transform: scale(1.03);
  animation: approach-video-breathe 12s ease-in-out infinite alternate;
}

.approach-hero-veil {
  position: absolute;
  z-index: -3;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7,9,11,0.98) 0%, rgba(7,9,11,0.82) 42%, rgba(7,9,11,0.2) 76%, rgba(7,9,11,0.68) 100%),
    linear-gradient(0deg, rgba(7,9,11,0.82), transparent 52%);
}

.approach-hero-system {
  position: absolute;
  z-index: 1;
  top: 6%;
  right: 2%;
  width: 61%;
  height: 88%;
  perspective: 1100px;
}

.approach-system-plane {
  position: absolute;
  inset: 7% 3% 5% 5%;
  background:
    linear-gradient(rgba(255,255,255,0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.07) 1px, transparent 1px);
  background-size: 48px 48px;
  border: 1px solid rgba(255,255,255,0.15);
  transform: rotateY(-10deg) rotateX(3deg);
  animation: approach-plane-shift 9s ease-in-out infinite;
}

.approach-system-core {
  position: absolute;
  top: 25%;
  right: 22%;
  width: 220px;
  height: 220px;
  border: 1px solid rgba(255,255,255,0.45);
  border-radius: 50%;
  box-shadow: inset 0 0 0 32px rgba(75,116,255,0.06), inset 0 0 0 64px rgba(255,255,255,0.025);
  animation: approach-core-turn 16s linear infinite;
}

.approach-system-core::before,
.approach-system-core::after {
  position: absolute;
  top: 50%;
  left: 50%;
  content: "";
  background: rgba(255,255,255,0.42);
  transform: translate(-50%, -50%);
}

.approach-system-core::before { width: 140%; height: 1px; }
.approach-system-core::after { width: 1px; height: 140%; }
.approach-system-core span { position: absolute; inset: 27%; border: 2px solid var(--red); transform: rotate(45deg); animation: approach-core-counter 9s linear infinite reverse; }
.approach-system-core i { position: absolute; top: 18%; left: 18%; width: 11px; height: 11px; background: var(--yellow); border-radius: 50%; box-shadow: 0 0 0 8px rgba(242,201,76,0.12); }
.approach-system-core i:nth-of-type(2) { top: auto; right: 9%; bottom: 21%; left: auto; background: var(--blue); box-shadow: 0 0 0 8px rgba(75,116,255,0.12); }
.approach-system-core b { position: absolute; top: 46%; left: 46%; width: 8%; height: 8%; background: var(--white); transform: rotate(45deg); }

.approach-query {
  position: absolute;
  z-index: 3;
  display: grid;
  gap: 6px;
  width: 220px;
  padding: 15px;
  color: var(--white);
  background: rgba(10,12,14,0.86);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 6px;
  box-shadow: 0 22px 42px rgba(0,0,0,0.28);
  backdrop-filter: blur(12px);
  animation: approach-query-float 6s ease-in-out infinite;
}

.approach-query small,
.approach-system-readout span {
  color: rgba(255,255,255,0.48);
  font-family: var(--mono);
  font-size: 0.5rem;
  text-transform: uppercase;
}

.approach-query strong { font-size: 0.78rem; }
.query-one { top: 13%; left: 8%; transform: rotate(-3deg); }
.query-two { top: 58%; left: 19%; border-left: 4px solid var(--yellow); animation-delay: -2s; }
.query-three { right: 2%; bottom: 10%; border-left: 4px solid var(--red); transform: rotate(2deg); animation-delay: -4s; }

.approach-route {
  position: absolute;
  z-index: 2;
  height: 1px;
  background: rgba(255,255,255,0.36);
  transform-origin: left;
  animation: approach-route-pulse 4s ease-in-out infinite;
}

.approach-route::after { position: absolute; top: -4px; right: 0; width: 9px; height: 9px; content: ""; background: var(--yellow); }
.route-one { top: 33%; left: 30%; width: 28%; transform: rotate(10deg); }
.route-two { top: 57%; left: 36%; width: 25%; transform: rotate(-17deg); animation-delay: -1.3s; }
.route-three { right: 15%; bottom: 30%; width: 22%; transform: rotate(24deg); animation-delay: -2.6s; }
.route-two::after { background: var(--blue); }
.route-three::after { background: var(--red); }

.approach-system-readout {
  position: absolute;
  top: 7%;
  right: 3%;
  display: grid;
  grid-template-columns: auto auto;
  align-items: baseline;
  gap: 4px 14px;
  padding: 13px 15px;
  color: var(--white);
  background: rgba(10,12,14,0.74);
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 5px;
  backdrop-filter: blur(10px);
}

.approach-system-readout strong { color: var(--yellow); font-family: var(--mono); font-size: 1.1rem; }
.approach-system-readout strong:last-child { color: var(--red); }
.approach-hero .interior-hero-copy { bottom: 9%; }
.approach-hero .interior-hero-copy h1 span { color: var(--red); }

.approach-hero-notes {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 28px;
}

.approach-hero-notes span {
  padding: 8px 10px;
  color: rgba(255,255,255,0.56);
  font-family: var(--mono);
  font-size: 0.52rem;
  text-transform: uppercase;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 3px;
}

.approach-manifesto {
  display: grid;
  width: min(var(--content-max), calc(100% - 96px));
  grid-template-columns: minmax(0, 0.86fr) minmax(520px, 1.14fr);
  align-items: center;
  gap: 86px;
  padding: 140px 0;
  margin: 0 auto;
}

.approach-manifesto-copy h2 {
  max-width: 640px;
  margin: 16px 0 24px;
  font-size: 4.1rem;
  font-weight: 520;
  line-height: 0.98;
}

.approach-manifesto-copy > p:last-child { max-width: 590px; color: var(--muted); }

.approach-thought-engine {
  position: relative;
  min-height: 540px;
  padding: 66px 28px 28px;
  color: var(--white);
  background:
    linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px),
    #121518;
  background-size: 34px 34px;
  border: 1px solid rgba(21,21,21,0.16);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 34px 70px rgba(21,21,21,0.12);
}

.thought-engine-top {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  display: flex;
  justify-content: space-between;
  padding: 17px 20px;
  font-family: var(--mono);
  font-size: 0.54rem;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}

.thought-engine-top span { color: var(--red); }
.thought-engine-top strong { color: rgba(255,255,255,0.45); font-weight: 400; }

.thought-lane {
  position: relative;
  display: grid;
  min-height: 128px;
  grid-template-columns: 140px 1fr 80px;
  align-items: center;
  gap: 20px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
  overflow: hidden;
}

.thought-lane small { color: rgba(255,255,255,0.44); font-family: var(--mono); font-size: 0.52rem; text-transform: uppercase; }
.thought-lane b { position: relative; z-index: 2; font-family: var(--display); font-size: 1.55rem; font-weight: 520; }
.thought-lane i { position: relative; width: 44px; height: 44px; border: 1px solid rgba(255,255,255,0.38); border-radius: 50%; }
.thought-lane i::before, .thought-lane i::after { position: absolute; top: 50%; left: 50%; content: ""; background: rgba(255,255,255,0.5); transform: translate(-50%,-50%); }
.thought-lane i::before { width: 70%; height: 1px; }
.thought-lane i::after { width: 1px; height: 70%; }
.lane-assumption b { text-decoration: line-through; text-decoration-color: var(--red); text-decoration-thickness: 2px; }
.lane-friction i { border-color: var(--yellow); transform: rotate(45deg); border-radius: 0; }
.lane-route { border-bottom: 0; }
.lane-route b { color: var(--yellow); }
.lane-route i { background: var(--red); border: 0; }

.thought-pulse {
  position: absolute;
  z-index: 1;
  top: 66px;
  bottom: 28px;
  left: 28px;
  width: 3px;
  background: var(--red);
  box-shadow: 0 0 18px rgba(237,61,50,0.62);
  animation: thought-pulse-scan 5s ease-in-out infinite;
}

.approach-marquee {
  display: flex;
  width: 100%;
  overflow: hidden;
  color: var(--ink);
  background: var(--red);
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}

.approach-marquee > div {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 34px;
  min-width: max-content;
  padding: 22px 17px;
  animation: approach-marquee-run 26s linear infinite;
}

.approach-marquee span { font-family: var(--display); font-size: 1.7rem; font-weight: 650; }
.approach-marquee i { width: 9px; height: 9px; background: var(--ink); transform: rotate(45deg); }

.approach-evidence {
  display: grid;
  min-height: 740px;
  grid-template-columns: minmax(380px, 0.78fr) minmax(0, 1.22fr);
  align-items: center;
  gap: 70px;
  padding: 120px max(var(--page-pad), calc((100vw - var(--content-max)) / 2));
  color: var(--white);
  background: #0d1013;
  overflow: hidden;
}

.approach-evidence-copy h2 { max-width: 600px; margin: 16px 0 22px; font-size: 3.8rem; font-weight: 520; line-height: 0.98; }
.approach-evidence-copy > p:not(.kicker) { max-width: 540px; color: rgba(255,255,255,0.58); }

.approach-evidence-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 42px;
  border-top: 1px solid rgba(255,255,255,0.16);
}

.approach-evidence-metrics span { display: flex; min-width: 0; flex-direction: column; gap: 7px; padding: 20px 14px 0 0; color: rgba(255,255,255,0.46); font-family: var(--mono); font-size: 0.48rem; text-transform: uppercase; }
.approach-evidence-metrics strong { color: var(--white); font-family: var(--display); font-size: 1.45rem; text-transform: none; }

.approach-evidence-reel {
  position: relative;
  min-height: 540px;
  perspective: 1000px;
}

.evidence-frame {
  position: absolute;
  overflow: hidden;
  background: #171a1e;
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 8px;
  box-shadow: 0 32px 70px rgba(0,0,0,0.36);
}

.evidence-frame img,
.evidence-frame video { width: 100%; height: 100%; object-fit: cover; }
.evidence-frame-one { z-index: 1; top: 4%; left: 2%; width: 47%; height: 46%; transform: rotate(-5deg) rotateY(8deg); animation: evidence-frame-one 8s ease-in-out infinite; }
.evidence-frame-two { z-index: 3; top: 19%; right: 5%; width: 54%; height: 52%; transform: rotate(3deg) translateZ(50px); animation: evidence-frame-two 9s ease-in-out infinite; }
.evidence-frame-three { z-index: 2; bottom: 2%; left: 15%; width: 50%; height: 42%; transform: rotate(-2deg); animation: evidence-frame-three 7s ease-in-out infinite; }

.evidence-crosshair { position: absolute; z-index: 5; top: 47%; left: 47%; width: 72px; height: 72px; border: 1px solid rgba(255,255,255,0.52); border-radius: 50%; animation: evidence-crosshair 12s linear infinite; }
.evidence-crosshair::before, .evidence-crosshair::after { position: absolute; top: 50%; left: 50%; content: ""; background: var(--red); transform: translate(-50%,-50%); }
.evidence-crosshair::before { width: 120%; height: 1px; }
.evidence-crosshair::after { width: 1px; height: 120%; }
.evidence-crosshair span { position: absolute; top: -5px; left: calc(50% - 5px); width: 10px; height: 10px; background: var(--yellow); }

.capability-section { padding-top: 140px; padding-bottom: 140px; }
.capability-switcher { border-top: 1px solid var(--line-light); }

.capability-tabs {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
  overflow-x: auto;
  scrollbar-width: none;
  border-bottom: 1px solid var(--line-light);
}

.capability-tabs::-webkit-scrollbar { display: none; }

.capability-tabs button {
  position: relative;
  display: flex;
  min-width: 148px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 17px 12px;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 700;
  cursor: pointer;
  background: transparent;
  border: 0;
  border-right: 1px solid var(--line-light);
}

.capability-tabs button span { color: var(--red); font-family: var(--mono); font-size: 0.48rem; }
.capability-tabs button::after { position: absolute; right: 24%; bottom: -1px; left: 24%; height: 3px; content: ""; background: transparent; }
.capability-tabs button:hover,
.capability-tabs button[aria-selected="true"] { color: var(--ink); background: var(--white); }
.capability-tabs button[aria-selected="true"]::after { background: var(--red); }

.capability-stage { min-height: 620px; padding-top: 18px; }

.capability-panel {
  display: grid;
  min-height: 620px;
  grid-template-columns: minmax(0, 1.16fr) minmax(340px, 0.84fr);
  color: var(--white);
  background: var(--black);
  border: 1px solid rgba(21,21,21,0.22);
  border-radius: 14px;
  overflow: hidden;
  animation: capability-panel-enter 520ms cubic-bezier(0.2,0.7,0,1);
}

.capability-panel[hidden] { display: none; }

.capability-image {
  position: relative;
  min-height: 540px;
  margin: 12px;
  background: #15181c;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 8px;
  overflow: hidden;
}

.capability-image::after { position: absolute; z-index: 2; inset: 0; content: ""; background: linear-gradient(0deg, rgba(8,9,10,0.5), transparent 60%); pointer-events: none; }
.capability-image img,
.capability-image video { width: 100%; height: 100%; object-fit: cover; transition: transform 900ms cubic-bezier(0.2,0.7,0,1), filter 700ms ease; }
.capability-panel:hover .capability-image img,
.capability-panel:hover .capability-image video { filter: saturate(1.14); transform: scale(1.035); }

.capability-motion { position: absolute; z-index: 3; inset: 0; overflow: hidden; pointer-events: none; }
.capability-motion i { position: absolute; display: block; }
.visual-audit .capability-motion::before { position: absolute; top: 50%; left: 50%; width: 48%; aspect-ratio: 1; content: ""; border: 1px solid rgba(255,255,255,0.52); border-radius: 50%; box-shadow: inset 0 0 0 42px rgba(75,116,255,0.05), inset 0 0 0 84px rgba(255,255,255,0.03); transform: translate(-50%,-50%); }
.visual-audit .capability-motion::after { position: absolute; top: 50%; left: 50%; width: 2px; height: 25%; content: ""; background: var(--red); transform-origin: 50% 100%; animation: capability-radar 4s linear infinite; }
.visual-audit .capability-motion i { width: 9px; height: 9px; background: var(--yellow); border-radius: 50%; box-shadow: 0 0 0 8px rgba(242,201,76,0.14); animation: capability-node 2.8s ease-in-out infinite; }
.visual-audit .capability-motion i:nth-child(1) { top: 31%; left: 42%; }.visual-audit .capability-motion i:nth-child(2) { top: 58%; left: 67%; animation-delay: -1s; }.visual-audit .capability-motion i:nth-child(3) { top: 44%; left: 75%; animation-delay: -2s; }.visual-audit .capability-motion i:nth-child(4) { display: none; }

.visual-prototype .capability-motion i { width: 76px; height: 76px; border-color: var(--yellow); border-style: solid; animation: capability-corner 5s ease-in-out infinite; }
.visual-prototype .capability-motion i:nth-child(1) { top: 8%; left: 8%; border-width: 2px 0 0 2px; }.visual-prototype .capability-motion i:nth-child(2) { top: 8%; right: 8%; border-width: 2px 2px 0 0; animation-delay: -1.2s; }.visual-prototype .capability-motion i:nth-child(3) { right: 8%; bottom: 8%; border-width: 0 2px 2px 0; animation-delay: -2.4s; }.visual-prototype .capability-motion i:nth-child(4) { bottom: 8%; left: 8%; border-width: 0 0 2px 2px; animation-delay: -3.6s; }

.visual-brand .capability-motion i { right: 7%; bottom: 7%; width: 58px; height: 58px; background: var(--red); border: 4px solid rgba(255,255,255,0.72); border-radius: 50%; animation: capability-swatch 6s ease-in-out infinite; }
.visual-brand .capability-motion i:nth-child(2) { right: 14%; background: var(--yellow); animation-delay: -1.5s; }.visual-brand .capability-motion i:nth-child(3) { right: 21%; background: var(--blue); animation-delay: -3s; }.visual-brand .capability-motion i:nth-child(4) { right: 28%; background: var(--white); animation-delay: -4.5s; }

.visual-website .capability-motion::before { position: absolute; top: 9%; right: 8%; left: 8%; height: 30px; content: ""; background: rgba(10,12,14,0.84); border: 1px solid rgba(255,255,255,0.28); border-radius: 6px 6px 0 0; }
.visual-website .capability-motion::after { position: absolute; top: 15%; right: 8%; left: 8%; height: 2px; content: ""; background: var(--red); box-shadow: 0 8px 20px rgba(237,61,50,0.55); animation: capability-web-scan 4.6s ease-in-out infinite; }
.visual-website .capability-motion i { top: calc(9% + 11px); width: 7px; height: 7px; background: var(--red); border-radius: 50%; }.visual-website .capability-motion i:nth-child(1) { left: 10%; }.visual-website .capability-motion i:nth-child(2) { left: 12%; background: var(--yellow); }.visual-website .capability-motion i:nth-child(3) { left: 14%; background: #76cf83; }.visual-website .capability-motion i:nth-child(4) { display: none; }

.visual-motion .capability-motion::after { position: absolute; right: 6%; bottom: 7%; left: 6%; height: 52px; content: ""; background: repeating-linear-gradient(90deg, rgba(255,255,255,0.28) 0 1px, transparent 1px 5%); border-top: 1px solid rgba(255,255,255,0.4); border-bottom: 1px solid rgba(255,255,255,0.2); }
.visual-motion .capability-motion i { bottom: 7%; left: 21%; width: 2px; height: 52px; background: var(--red); animation: capability-playhead 5s linear infinite; }.visual-motion .capability-motion i:nth-child(n+2) { display: none; }

.visual-workshop .capability-motion i { width: 16px; height: 16px; background: var(--yellow); border: 3px solid rgba(10,12,14,0.82); border-radius: 50%; box-shadow: 0 0 0 8px rgba(242,201,76,0.12); animation: capability-node 3s ease-in-out infinite; }.visual-workshop .capability-motion i::after { position: absolute; top: 5px; left: 13px; width: 145px; height: 1px; content: ""; background: rgba(255,255,255,0.54); transform-origin: left; }.visual-workshop .capability-motion i:nth-child(1) { top: 24%; left: 18%; }.visual-workshop .capability-motion i:nth-child(2) { top: 49%; left: 43%; background: var(--red); animation-delay: -1s; }.visual-workshop .capability-motion i:nth-child(3) { top: 29%; left: 70%; background: var(--blue); animation-delay: -2s; }.visual-workshop .capability-motion i:nth-child(4) { top: 70%; left: 64%; animation-delay: -3s; }

.capability-panel > div:last-child { display: flex; flex-direction: column; justify-content: center; padding: 56px; }
.capability-panel > div:last-child > span { color: var(--red); font-family: var(--mono); font-size: 0.56rem; text-transform: uppercase; }
.capability-panel h3 { margin: 16px 0 20px; font-size: 3.15rem; line-height: 0.98; }
.capability-panel p { margin-bottom: 30px; color: rgba(255,255,255,0.62); font-size: 0.86rem; }
.capability-panel .text-link { align-self: flex-start; }

.approach-loop-section {
  display: grid;
  width: min(var(--content-max), calc(100% - 96px));
  grid-template-columns: minmax(330px, 0.7fr) minmax(0, 1.3fr);
  align-items: start;
  gap: 72px;
  padding: 110px 56px;
  margin: 48px auto;
  color: var(--white);
  background: #111418;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 24px;
  overflow: hidden;
}

.approach-loop-intro { position: sticky; top: calc(var(--header-h) + 34px); }
.approach-loop-intro h2 { max-width: 420px; margin: 16px 0 22px; font-size: 4rem; font-weight: 520; line-height: 0.96; }
.approach-loop-intro > p:not(.kicker) { max-width: 430px; color: rgba(255,255,255,0.58); }

.approach-loop-dial { position: relative; width: 220px; height: 220px; margin-top: 60px; border: 1px solid rgba(255,255,255,0.25); border-radius: 50%; animation: approach-loop-spin 18s linear infinite; }
.approach-loop-dial::before, .approach-loop-dial::after { position: absolute; top: 50%; left: 50%; content: ""; background: rgba(255,255,255,0.3); transform: translate(-50%,-50%); }.approach-loop-dial::before { width: 120%; height: 1px; }.approach-loop-dial::after { width: 1px; height: 120%; }
.approach-loop-dial span { position: absolute; inset: 25%; border: 2px solid var(--red); transform: rotate(45deg); }.approach-loop-dial i { position: absolute; top: 8%; left: calc(50% - 6px); width: 12px; height: 12px; background: var(--yellow); border-radius: 50%; }.approach-loop-dial b { position: absolute; right: 13%; bottom: 22%; width: 9px; height: 9px; background: var(--blue); }

.approach-loop-track { border-top: 1px solid rgba(255,255,255,0.16); }
.approach-loop-card { --spot-x: 50%; --spot-y: 50%; position: relative; min-height: 280px; padding: 32px 94px 32px 30px; border-bottom: 1px solid rgba(255,255,255,0.16); overflow: hidden; }
.approach-loop-card::before { position: absolute; top: 0; bottom: 0; left: var(--spot-x); width: 1px; content: ""; background: rgba(237,61,50,0.34); opacity: 0; transition: opacity 240ms ease; }.approach-loop-card::after { position: absolute; top: var(--spot-y); right: 0; left: 0; height: 1px; content: ""; background: rgba(242,201,76,0.24); opacity: 0; transition: opacity 240ms ease; }.approach-loop-card:hover::before, .approach-loop-card:hover::after { opacity: 1; }
.approach-loop-card > span { color: var(--red); font-family: var(--mono); font-size: 0.56rem; text-transform: uppercase; }
.approach-loop-card h3 { max-width: 520px; margin: 55px 0 12px; font-size: 2.35rem; }
.approach-loop-card p { max-width: 480px; color: rgba(255,255,255,0.5); font-size: 0.78rem; }
.approach-loop-card > b { position: absolute; right: 22px; bottom: 12px; color: rgba(255,255,255,0.06); font-family: var(--display); font-size: 4.8rem; font-weight: 750; text-transform: uppercase; transition: color 300ms ease, transform 300ms ease; }.approach-loop-card:hover > b { color: rgba(237,61,50,0.26); transform: translateY(-8px); }

@keyframes approach-video-breathe { to { transform: scale(1.08); } }
@keyframes approach-plane-shift { 50% { transform: rotateY(-7deg) rotateX(1deg) translateX(-8px); } }
@keyframes approach-core-turn { to { transform: rotate(360deg); } }
@keyframes approach-core-counter { to { transform: rotate(405deg); } }
@keyframes approach-query-float { 50% { margin-top: -10px; } }
@keyframes approach-route-pulse { 50% { opacity: 0.35; filter: brightness(1.4); } }
@keyframes thought-pulse-scan { 50% { left: calc(100% - 31px); background: var(--yellow); box-shadow: 0 0 18px rgba(242,201,76,0.52); } }
@keyframes approach-marquee-run { to { transform: translateX(-100%); } }
@keyframes evidence-frame-one { 50% { transform: rotate(-2deg) rotateY(4deg) translateY(-10px); } }
@keyframes evidence-frame-two { 50% { transform: rotate(1deg) translate3d(-8px,12px,70px); } }
@keyframes evidence-frame-three { 50% { transform: rotate(-4deg) translateY(9px); } }
@keyframes evidence-crosshair { to { transform: rotate(360deg); } }
@keyframes capability-panel-enter { from { opacity: 0; transform: translateY(16px); } }
@keyframes capability-radar { to { transform: translate(-50%,-100%) rotate(360deg); } }
@keyframes capability-node { 50% { opacity: 0.5; transform: scale(1.35); } }
@keyframes capability-corner { 50% { margin: 12px; opacity: 0.62; } }
@keyframes capability-swatch { 50% { transform: translateY(-12px); } }
@keyframes capability-web-scan { 50% { top: 78%; } }
@keyframes capability-playhead { to { left: 88%; } }
@keyframes approach-loop-spin { to { transform: rotate(360deg); } }

/* Work page */
.work-hero {
  background: var(--black);
}

.work-hero::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, rgba(10, 11, 12, 0.92), rgba(10, 11, 12, 0.16) 70%, rgba(10, 11, 12, 0.5));
}

.work-hero-reel {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  padding: 92px 18px 18px 42%;
  transform: perspective(1100px) rotateY(-7deg) rotateX(2deg) scale(1.06);
}

.work-hero-reel figure {
  overflow: hidden;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
}

.work-hero-reel figure:nth-child(2),
.work-hero-reel figure:nth-child(4) { transform: translateY(8%); }

.work-hero-reel img,
.work-hero-reel video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.work-intro-section {
  display: grid;
  grid-template-columns: 1.45fr 0.55fr;
  gap: 80px;
  padding: 110px var(--page-pad);
  background: var(--paper);
}

.work-intro-copy h2 {
  margin: 16px 0 22px;
  font-size: 4.15rem;
  font-weight: 520;
}

.work-intro-copy > p:last-child {
  max-width: 770px;
  color: var(--muted);
}

.work-intro-tags {
  display: grid;
  align-content: end;
}

.work-intro-tags span {
  padding: 12px 0;
  font-family: var(--mono);
  font-size: 0.62rem;
  text-transform: uppercase;
  border-bottom: 1px solid var(--line-light);
}

.work-gallery {
  display: grid;
  grid-auto-flow: dense;
  grid-auto-rows: 390px;
  grid-template-columns: repeat(12, 1fr);
  gap: 14px;
  padding: 0 var(--page-pad) 120px;
  background: var(--paper);
}

.project-card {
  position: relative;
  grid-column: span 5;
  min-width: 0;
  color: var(--white);
  background: var(--black);
  border-radius: var(--radius);
  overflow: hidden;
}

.project-card-hero {
  grid-row: span 2;
  grid-column: span 7;
}

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

.project-card > img,
.project-card > video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 650ms ease;
}

.project-card:hover > img,
.project-card:hover > video { transform: scale(1.04); }

.project-card::before {
  position: absolute;
  z-index: 1;
  inset: 0;
  content: "";
  background: linear-gradient(0deg, rgba(5, 6, 7, 0.94), transparent 64%);
}

.project-card-copy {
  position: absolute;
  z-index: 3;
  right: 24px;
  bottom: 22px;
  left: 24px;
}

.project-card-copy h2 {
  margin-bottom: 8px;
  font-size: 2.2rem;
}

.project-card-copy p {
  max-width: 600px;
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.76rem;
}

.project-card > b {
  position: absolute;
  z-index: 4;
  top: 17px;
  right: 17px;
  padding: 8px 10px;
  color: var(--black);
  font-size: 0.62rem;
  background: var(--white);
  border-radius: 4px;
}

.project-card-performance > img { filter: hue-rotate(185deg) saturate(1.1); }

.project-card-janbari {
  background: #ffd43b;
}

.janbari-motion {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.janbari-motion span {
  color: #171717;
  font-family: var(--display);
  font-size: 4rem;
  font-weight: 800;
  transform: rotate(-6deg);
  animation: janbari-pop 3.6s ease-in-out infinite;
}

.janbari-motion i {
  position: absolute;
  width: 150px;
  height: 150px;
  border: 18px solid var(--red);
  transform: rotate(30deg);
}

.janbari-motion i:nth-child(2) { top: -45px; right: 8%; }
.janbari-motion i:nth-child(3) { bottom: -70px; left: -10px; border-color: var(--blue); border-radius: 50%; }
.janbari-motion i:nth-child(4) { top: 20%; left: 12%; width: 70px; height: 70px; border-width: 10px; border-color: var(--black); }

@keyframes janbari-pop { 50% { transform: rotate(-3deg) scale(1.04); } }

/* Prototypes page */
.prototype-hero {
  isolation: isolate;
  background: #101424;
}

.prototype-hero::before {
  position: absolute;
  z-index: -2;
  inset: 0;
  content: "";
  background: url("/assets/work/barekasu-preview.webp") 68% center / cover no-repeat;
  filter: saturate(0.85);
  opacity: 0.48;
}

.prototype-hero-space {
  z-index: -1;
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 75% 40%, rgba(75, 116, 255, 0.3), transparent 32%),
    linear-gradient(90deg, rgba(10, 11, 12, 0.88), transparent 70%);
}

.prototype-hero-space span,
.prototype-hero-space i {
  position: absolute;
  background: var(--white);
  animation: star-drift 5s ease-in-out infinite alternate;
}

.prototype-hero-space span { width: 7px; height: 7px; }
.prototype-hero-space i { width: 18px; height: 18px; background: var(--blue); }
.prototype-hero-space span:nth-child(1) { top: 21%; right: 16%; }
.prototype-hero-space span:nth-child(2) { top: 46%; right: 35%; animation-delay: -2s; }
.prototype-hero-space span:nth-child(3) { bottom: 12%; right: 8%; animation-delay: -4s; }
.prototype-hero-space i:nth-child(4) { top: 14%; right: 42%; }
.prototype-hero-space i:nth-child(5) { top: 64%; right: 24%; background: var(--red); animation-delay: -1s; }
.prototype-hero-space i:nth-child(6) { bottom: 7%; right: 48%; background: var(--yellow); animation-delay: -3s; }

@keyframes star-drift { to { transform: translate(12px, -18px) rotate(45deg); } }

.prototype-gallery {
  display: grid;
  gap: 18px;
  padding: 90px var(--page-pad) 120px;
  color: var(--white);
  background: var(--black);
}

.prototype-feature {
  position: relative;
  min-height: 580px;
  background: #14161b;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  overflow: hidden;
}

.prototype-feature img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms ease, filter 700ms ease;
}

.prototype-feature:hover img { transform: scale(1.025); filter: saturate(1.12); }

.prototype-feature::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, rgba(5, 6, 8, 0.96) 0%, rgba(5, 6, 8, 0.62) 42%, transparent 78%);
}

.prototype-feature-copy {
  position: absolute;
  z-index: 2;
  bottom: 54px;
  left: 48px;
  width: min(470px, calc(100% - 96px));
}

.prototype-feature-copy h2 {
  margin: 12px 0;
  font-size: 4rem;
}

.prototype-feature-copy p {
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.88rem;
}

.prototype-feature-copy b {
  display: inline-flex;
  gap: 20px;
  margin-top: 26px;
  font-size: 0.76rem;
}

.prototype-feature-copy b i { font-style: normal; }
.prototype-feature-dashboard { min-height: 500px; }

.prototype-note-section {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 60px;
  padding: 110px var(--page-pad);
  background: var(--paper);
}

.prototype-note { max-width: 820px; }
.prototype-note h2 { margin: 14px 0 20px; font-size: 4rem; font-weight: 520; }
.prototype-note p:last-child { max-width: 650px; color: var(--muted); }
.prototype-note-section .button { flex: 0 0 auto; }

/* Alchemy page */
.alchemy-hero {
  min-height: 680px;
  background: #0b0d12;
}

.alchemy-page-canvas { z-index: 0; }
.alchemy-page .rune-fallback-mark { z-index: 0; }

.alchemy-hero-noise {
  position: absolute;
  z-index: 1;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(10, 11, 12, 0.86), rgba(10, 11, 12, 0.05) 62%),
    linear-gradient(0deg, rgba(10, 11, 12, 0.7), transparent 50%);
  pointer-events: none;
}

.alchemy-hero-copy { z-index: 2; }

.alchemy-hero-formula {
  position: absolute;
  z-index: 3;
  right: var(--page-pad);
  bottom: 42px;
  display: flex;
  gap: 10px;
  color: rgba(255, 255, 255, 0.5);
  font-family: var(--mono);
  font-size: 0.58rem;
  text-transform: uppercase;
}

.alchemy-hero-formula b { color: var(--red); }
.alchemy-hero-formula strong { color: var(--white); }

.rune-story-section {
  display: grid;
  min-height: 740px;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 80px;
  padding: 110px var(--page-pad);
  margin-top: 48px;
  margin-bottom: 48px;
  background: var(--paper);
  border: 1px solid var(--line-light);
  border-radius: 24px;
  overflow: hidden;
}

.rune-story-visual {
  position: relative;
  min-height: 540px;
  background:
    linear-gradient(rgba(21, 21, 21, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(21, 21, 21, 0.06) 1px, transparent 1px),
    var(--yellow);
  background-size: 36px 36px;
  border: 1px solid rgba(21, 21, 21, 0.16);
  border-radius: 18px;
  overflow: hidden;
}

.rune-story-visual::after {
  position: absolute;
  right: -18%;
  bottom: -24%;
  width: 74%;
  height: 54%;
  content: "";
  border-top: 1px solid rgba(21, 21, 21, 0.22);
  border-left: 1px solid rgba(21, 21, 21, 0.12);
  transform: skewX(-28deg) rotate(-8deg);
  pointer-events: none;
}

.large-rune {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 300px;
  height: 410px;
  filter: drop-shadow(18px 22px 0 rgba(21, 21, 21, 0.08));
  transform: translate(-50%, -50%) perspective(700px) rotateX(3deg) rotateY(-4deg);
  animation: story-rune-float 5.8s ease-in-out infinite;
}

.rune-beam {
  position: absolute;
  display: block;
  background: linear-gradient(90deg, #111 0%, #3e3e3e 48%, #0c0c0c 100%);
  border-radius: 999px;
  box-shadow: inset 1px 0 rgba(255, 255, 255, 0.18), 0 7px 12px rgba(21, 21, 21, 0.12);
}

.rune-left,
.rune-right {
  top: 3%;
  width: 3.4%;
  height: 51%;
  transform-origin: center;
}

.rune-left { left: 31%; transform: rotate(32deg); }
.rune-right { right: 31%; transform: rotate(-32deg); }
.rune-base { top: 49%; left: 15%; width: 70%; height: 3%; }
.large-rune .rune-stem { top: 49%; left: 48.3%; width: 3.4%; height: 43%; }
.rune-bar-one,
.rune-bar-two { left: 24%; width: 52%; height: 2.7%; }
.rune-bar-one { top: 68%; }
.rune-bar-two { top: 83%; }

@keyframes story-rune-float {
  50% {
    filter: drop-shadow(-12px 28px 0 rgba(21, 21, 21, 0.1));
    transform: translate(-50%, -52%) perspective(700px) rotateX(-2deg) rotateY(6deg);
  }
}

.rune-story-label {
  position: absolute;
  padding: 8px 10px;
  font-family: var(--mono);
  font-size: 0.58rem;
  text-transform: uppercase;
  background: rgba(241, 242, 239, 0.82);
  border: 1px solid rgba(21, 21, 21, 0.12);
  backdrop-filter: blur(8px);
}

.label-one { top: 28px; left: 28px; }
.label-two { right: 28px; bottom: 28px; }
.label-three { right: 28px; top: 46%; }

.rune-story-copy h2 {
  margin: 14px 0 24px;
  font-size: 4rem;
  font-weight: 520;
}

.rune-story-copy > p {
  max-width: 650px;
  color: var(--muted);
}

.rune-story-copy blockquote {
  max-width: 620px;
  margin-top: 34px;
  padding: 20px 0 20px 24px;
  font-family: var(--display);
  font-size: 1.7rem;
  border-left: 5px solid var(--red);
}

.alchemy-marquee {
  padding: 19px 0;
  color: var(--white);
  background: var(--blue);
  overflow: hidden;
}

.alchemy-marquee > div {
  display: flex;
  width: max-content;
  align-items: center;
  gap: 26px;
  font-family: var(--display);
  font-size: 1.9rem;
  font-weight: 650;
  animation: marquee-slide 22s linear infinite;
}

.alchemy-marquee i {
  width: 8px;
  height: 8px;
  background: var(--yellow);
  transform: rotate(45deg);
}

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

.alchemy-method-section {
  padding: 120px var(--page-pad);
  color: var(--white);
  background: var(--black);
}

.alchemy-reaction-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.reaction-card {
  position: relative;
  min-height: 320px;
  padding: 26px;
  background: #16191f;
  border: 1px solid var(--line-dark);
  border-radius: 12px;
  overflow: hidden;
  transition: transform 320ms cubic-bezier(0.2, 0.7, 0, 1), background 320ms ease, border-color 320ms ease;
}

.reaction-card::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 4px;
  content: "";
  background: var(--red);
  transform: scaleX(0.2);
  transform-origin: left;
  transition: transform 360ms ease;
}

.reaction-card:nth-child(3n + 2)::before { background: var(--blue); }
.reaction-card:nth-child(3n)::before { background: var(--yellow); }
.reaction-card:hover { background: #1c2028; border-color: rgba(255, 255, 255, 0.28); transform: translateY(-8px); }
.reaction-card:hover::before { transform: scaleX(1); }

.reaction-card > span { color: var(--red); font-family: var(--mono); font-size: 0.58rem; text-transform: uppercase; }
.reaction-card h3 { margin: 78px 0 14px; font-size: 2rem; }
.reaction-card p { color: rgba(255, 255, 255, 0.56); font-size: 0.76rem; }
.reaction-card i { position: absolute; right: -42px; bottom: -42px; width: 130px; height: 130px; border: 1px solid rgba(255,255,255,0.13); transform: rotate(45deg); transition: transform 400ms ease, border-color 400ms ease; }
.reaction-card:hover i { border-color: var(--blue); transform: rotate(65deg) scale(1.3); }

.alchemy-contrast-section {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 90px;
  padding: 120px var(--page-pad);
  margin-top: 48px;
  margin-bottom: 48px;
  background: var(--white);
  border: 1px solid var(--line-light);
  border-radius: 24px;
  overflow: hidden;
}

.alchemy-contrast-copy h2 { margin: 14px 0 22px; font-size: 4.3rem; font-weight: 520; }
.alchemy-contrast-copy > p { color: var(--muted); }
.alchemy-contrast-list { border-top: 1px solid var(--line-light); }
.alchemy-contrast-list div { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 28px; padding: 24px 14px; border-bottom: 1px solid var(--line-light); font-size: 0.82rem; transition: background 220ms ease, padding 220ms ease; }
.alchemy-contrast-list div:hover { padding-right: 20px; padding-left: 20px; background: var(--paper); }
.alchemy-contrast-list s { color: var(--muted); }

.alchemy-output-section {
  display: grid;
  min-height: 720px;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 72px;
  padding: 100px var(--page-pad);
  color: var(--white);
  background: #11141a;
}

.alchemy-output-stage {
  position: relative;
  min-height: 520px;
  background: linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px), linear-gradient(90deg,rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 32px 32px;
  border: 1px solid var(--line-dark);
  border-radius: 18px;
  overflow: hidden;
}

.output-card,
.output-core {
  position: absolute;
  display: grid;
  place-items: center;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
}

.output-card { width: 170px; height: 110px; color: rgba(255,255,255,0.7); font-family: var(--mono); font-size: 0.62rem; text-transform: uppercase; background: rgba(255,255,255,0.05); animation: output-float 5s ease-in-out infinite alternate; }
.output-one { top: 12%; left: 9%; }
.output-two { top: 16%; right: 8%; animation-delay: -1.5s; }
.output-three { right: 15%; bottom: 10%; animation-delay: -3s; }
.output-core { top: 50%; left: 50%; width: 140px; height: 140px; background: var(--red); transform: translate(-50%, -50%) rotate(45deg); }
.output-core img { width: 82px; transform: rotate(-45deg); }

@keyframes output-float { to { transform: translateY(-16px); } }

.alchemy-output-copy h2 { margin: 15px 0 20px; font-size: 4rem; font-weight: 520; }
.alchemy-output-copy p { margin-bottom: 28px; color: rgba(255,255,255,0.62); }

/* Blog page */
.blog-hero {
  background: #12161d;
}

.blog-signal-art {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(10,11,12,0.88), rgba(10,11,12,0.08)), url("/assets/blog/trend-heatline.jpg") center / cover no-repeat;
}

.blog-signal-art span {
  position: absolute;
  right: 8%;
  width: 42%;
  height: 1px;
  background: rgba(255,255,255,0.24);
  transform-origin: right;
  animation: signal-line 4s ease-in-out infinite;
}

.blog-signal-art span:nth-child(1) { top: 32%; }
.blog-signal-art span:nth-child(2) { top: 51%; animation-delay: -1.4s; }
.blog-signal-art span:nth-child(3) { top: 68%; animation-delay: -2.8s; }
.blog-signal-art i { position: absolute; right: 20%; width: 9px; height: 9px; background: var(--red); border-radius: 50%; box-shadow: 0 0 0 8px rgba(237,61,50,0.13); animation: live-pulse 2s ease-in-out infinite; }
.blog-signal-art i:nth-child(4) { top: 31.5%; }
.blog-signal-art i:nth-child(5) { top: 50.5%; right: 36%; animation-delay: -0.7s; background: var(--yellow); }
.blog-signal-art i:nth-child(6) { top: 67.5%; right: 13%; animation-delay: -1.4s; background: var(--blue); }

@keyframes signal-line { 50% { transform: scaleX(0.45); opacity: 0.4; } }

.blog-featured-wrap {
  padding: 80px var(--page-pad) 30px;
  background: var(--paper);
}

.blog-section-label {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 16px;
  font-family: var(--mono);
  font-size: 0.6rem;
  text-transform: uppercase;
  border-bottom: 1px solid var(--line-light);
}

.blog-section-label small { color: var(--muted); }

.blog-featured { margin-top: 16px; }

.blog-feature-card .blog-card-link {
  display: grid;
  min-height: 540px;
  grid-template-columns: 1.25fr 0.75fr;
}

.blog-feature-card .blog-card-art { height: 100%; aspect-ratio: auto; min-width: 0; }
.blog-feature-card .blog-card-copy { display: flex; flex-direction: column; justify-content: center; padding: 46px; }
.blog-feature-card .blog-card-copy h3 { font-size: 3.15rem; }
.blog-feature-card .blog-card-copy > p:not(.blog-meta) { font-size: 0.9rem; }

.blog-loading {
  display: grid;
  min-height: 420px;
  place-items: center;
  color: var(--muted);
  border: 1px solid var(--line-light);
}

.blog-loading span {
  width: 42px;
  height: 42px;
  border: 2px solid var(--soft);
  border-top-color: var(--red);
  border-radius: 50%;
  animation: spin 900ms linear infinite;
}

.blog-loading p { position: absolute; margin-top: 80px; font-family: var(--mono); font-size: 0.6rem; text-transform: uppercase; }
@keyframes spin { to { transform: rotate(360deg); } }

.blog-grid-index { grid-template-columns: repeat(3, minmax(0, 1fr)); }

.blog-article {
  padding: 110px var(--page-pad);
  background: var(--paper);
}

.blog-back {
  display: inline-block;
  margin-bottom: 30px;
  font-family: var(--mono);
  font-size: 0.62rem;
  text-transform: uppercase;
  border-bottom: 1px solid currentColor;
}

.article-frame {
  max-width: 1180px;
  margin: 0 auto;
}

.article-header {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: 44px;
}

.article-header .blog-meta,
.article-header h1,
.article-header > p {
  grid-column: 1;
}

.article-header h1 {
  margin: 14px 0 18px;
  font-size: 4.25rem;
  font-weight: 520;
}

.article-header > p { color: var(--muted); }
.article-header .article-art { grid-row: 1 / span 4; grid-column: 2; height: 100%; min-width: 0; min-height: 440px; aspect-ratio: auto; }

.article-body {
  max-width: 780px;
  margin: 80px auto 0;
  color: #303236;
  font-size: 1rem;
}

.article-body h2 { margin: 54px 0 18px; color: var(--ink); font-size: 2.45rem; line-height: 1.06; }
.article-body h3 { margin: 36px 0 14px; color: var(--ink); font-size: 1.55rem; }
.article-body p { margin: 0 0 20px; }
.article-body .lede { color: var(--ink); font-family: var(--display); font-size: 1.6rem; line-height: 1.35; }
.article-body ul { margin: 16px 0 28px; padding-left: 22px; }
.article-body li { margin-bottom: 9px; line-height: 1.55; }
.article-body a { color: var(--red-dark); border-bottom: 1px solid currentColor; }

.article-sources {
  max-width: 780px;
  margin: 70px auto 0;
  padding: 24px 0;
  border-top: 1px solid var(--line-light);
}
.article-sources strong { font-family: var(--mono); font-size: 0.62rem; text-transform: uppercase; }
.article-sources p { margin-top: 10px; color: var(--muted); font-size: 0.76rem; }

/* Briefing */
.brief-hero {
  isolation: isolate;
  background: #101316;
}

.brief-hero::after {
  position: absolute;
  z-index: 2;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, rgba(10,11,12,0.94) 0%, rgba(10,11,12,0.72) 39%, transparent 67%);
  pointer-events: none;
}

.brief-hero-art {
  position: absolute;
  z-index: 1;
  inset: 0;
  perspective: 1100px;
  background:
    linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg,rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(135deg, #111519 0%, #1a1f25 62%, #101316 100%);
  background-size: 42px 42px, 42px 42px, auto;
}

.brief-hero-art::before {
  position: absolute;
  top: 12%;
  right: 4%;
  width: 55%;
  height: 74%;
  content: "";
  border: 1px solid rgba(255,255,255,0.1);
  transform: perspective(900px) rotateY(-9deg) rotateX(3deg);
  animation: brief-field-breathe 8s ease-in-out infinite;
}

.brief-hero-art::after {
  position: absolute;
  top: 18%;
  right: 8%;
  width: 45%;
  height: 62%;
  content: "";
  background: repeating-linear-gradient(90deg, transparent 0 78px, rgba(242,201,76,0.16) 79px 80px);
  border-top: 1px solid rgba(242,201,76,0.26);
  border-bottom: 1px solid rgba(75,116,255,0.25);
  transform: perspective(900px) rotateY(-9deg) rotateX(3deg);
  opacity: 0.68;
  animation: brief-scan 7s ease-in-out infinite;
}

.brief-input-card,
.brief-output-card {
  position: absolute;
  z-index: 3;
  display: grid;
  color: var(--white);
  background: rgba(15,17,19,0.92);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 8px;
  box-shadow: 0 26px 55px rgba(0,0,0,0.28);
  backdrop-filter: blur(12px);
}

.brief-input-card {
  top: 20%;
  right: 31%;
  width: 250px;
  padding: 20px;
  transform: rotate(-4deg) translateZ(55px);
  animation: brief-card-drift 6.5s ease-in-out infinite;
}

.brief-input-card::before {
  position: absolute;
  top: -6px;
  left: 20px;
  width: 64px;
  height: 12px;
  content: "";
  background: var(--yellow);
  transform: rotate(-2deg);
}

.brief-input-card small,
.brief-output-card small {
  color: rgba(255,255,255,0.48);
  font-family: var(--mono);
  font-size: 0.54rem;
  text-transform: uppercase;
}

.brief-input-card strong {
  margin: 18px 0 16px;
  font-family: var(--display);
  font-size: 1.28rem;
  font-weight: 520;
  line-height: 1.08;
}

.brief-input-card > span {
  padding: 8px 0;
  color: rgba(255,255,255,0.5);
  font-family: var(--mono);
  font-size: 0.54rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.brief-rune-stage {
  position: absolute;
  z-index: 4;
  top: 24%;
  right: 16.5%;
  width: 220px;
  height: 310px;
  transform-style: preserve-3d;
  animation: brief-stage-turn 8s ease-in-out infinite;
}

.brief-rune {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  color: rgba(255,255,255,0.82);
  filter: drop-shadow(13px 16px 0 rgba(75,116,255,0.22)) drop-shadow(-10px -8px 0 rgba(237,61,50,0.11));
  transform: translateZ(70px) rotateY(-4deg);
  animation: brief-rune-pulse 4.8s ease-in-out infinite;
}

.brief-rune .rune-triangle { border-width: 8px; }
.brief-rune .rune-stem { width: 7px; left: calc(50% - 3.5px); }
.brief-rune i { height: 7px; }

.brief-orbit {
  position: absolute;
  top: 44%;
  left: 50%;
  width: 240px;
  height: 98px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  transform: translate(-50%, -50%) rotate(-16deg);
}

.brief-orbit::after {
  position: absolute;
  top: 50%;
  right: -4px;
  width: 9px;
  height: 9px;
  content: "";
  background: var(--yellow);
  border-radius: 50%;
  box-shadow: 0 0 0 7px rgba(242,201,76,0.12);
}

.orbit-one { animation: brief-orbit-one 6s linear infinite; }
.orbit-two { width: 190px; height: 134px; border-color: rgba(75,116,255,0.35); animation: brief-orbit-two 8s linear infinite; }
.orbit-two::after { background: var(--blue); box-shadow: 0 0 0 7px rgba(75,116,255,0.12); }
.orbit-three { width: 270px; height: 54px; border-color: rgba(237,61,50,0.28); animation: brief-orbit-three 9s linear infinite reverse; }
.orbit-three::after { background: var(--red); box-shadow: 0 0 0 7px rgba(237,61,50,0.1); }

.brief-output-card {
  right: 6%;
  bottom: 18%;
  width: 245px;
  padding: 18px;
  transform: rotate(3deg) translateZ(85px);
  animation: brief-output-drift 7s ease-in-out infinite;
}

.brief-output-card::after {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 4px;
  content: "";
  background: var(--red);
}

.brief-output-card strong {
  margin: 11px 0 16px;
  font-family: var(--display);
  font-size: 1.65rem;
  font-weight: 520;
}

.brief-output-card > div { display: flex; align-items: end; gap: 6px; height: 42px; }
.brief-output-card > div span { width: 27%; height: 34%; background: var(--blue); animation: brief-meter 2.6s ease-in-out infinite; }
.brief-output-card > div span:nth-child(2) { height: 62%; background: var(--yellow); animation-delay: -0.8s; }
.brief-output-card > div span:nth-child(3) { height: 92%; background: var(--red); animation-delay: -1.6s; }
.brief-output-card em { margin-top: 12px; color: rgba(255,255,255,0.55); font-family: var(--mono); font-size: 0.52rem; font-style: normal; text-transform: uppercase; }

.brief-route-line {
  position: absolute;
  z-index: 2;
  height: 1px;
  background: rgba(255,255,255,0.38);
  transform-origin: left;
}

.brief-route-line::after {
  position: absolute;
  top: -3px;
  right: 0;
  width: 7px;
  height: 7px;
  content: "";
  background: var(--yellow);
}

.line-one { --route-angle: 11deg; top: 43%; right: 24%; width: 19%; transform: rotate(var(--route-angle)); animation: brief-route-draw 5s ease-in-out infinite; }
.line-two { --route-angle: -24deg; right: 9%; bottom: 37%; width: 16%; transform: rotate(var(--route-angle)); animation: brief-route-draw 5s -2.5s ease-in-out infinite; }

.brief-hero .interior-hero-copy h1 span {
  display: inline-block;
  color: var(--red);
  transform: rotate(-2deg);
}

.brief-hero-steps {
  display: flex;
  gap: 6px;
  margin-top: 30px;
}

.brief-hero-steps span {
  padding: 8px 10px;
  color: rgba(255,255,255,0.55);
  font-family: var(--mono);
  font-size: 0.52rem;
  text-transform: uppercase;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 3px;
}

.brief-message {
  position: absolute;
  z-index: 5;
  padding: 9px 11px;
  color: rgba(255,255,255,0.72);
  font-family: var(--mono);
  font-size: 0.52rem;
  text-transform: uppercase;
  background: rgba(10,11,12,0.74);
  border: 1px solid var(--line-dark);
  border-radius: 4px;
  backdrop-filter: blur(8px);
  animation: brief-chip-float 5s ease-in-out infinite;
}

.message-one { top: 14%; right: 8%; }
.message-two { right: 27%; bottom: 12%; animation-delay: -1.7s; }
.message-three { top: 57%; right: 38%; animation-delay: -3.4s; }

@keyframes brief-field-breathe { 50% { transform: perspective(900px) rotateY(-6deg) rotateX(1deg) translateX(-10px); } }
@keyframes brief-scan { 50% { opacity: 0.34; transform: perspective(900px) rotateY(-6deg) rotateX(1deg) translateY(12px); } }
@keyframes brief-card-drift { 50% { transform: rotate(-2deg) translate3d(8px,-12px,75px); } }
@keyframes brief-output-drift { 50% { transform: rotate(1deg) translate3d(-8px,10px,100px); } }
@keyframes brief-stage-turn { 50% { transform: rotateY(9deg) rotateX(-2deg) translateY(-9px); } }
@keyframes brief-rune-pulse { 50% { color: rgba(255,255,255,1); filter: drop-shadow(18px 20px 0 rgba(75,116,255,0.3)) drop-shadow(-14px -10px 0 rgba(237,61,50,0.16)); } }
@keyframes brief-orbit-one { to { transform: translate(-50%, -50%) rotate(344deg); } }
@keyframes brief-orbit-two { to { transform: translate(-50%, -50%) rotate(-360deg); } }
@keyframes brief-orbit-three { to { transform: translate(-50%, -50%) rotate(360deg); } }
@keyframes brief-meter { 50% { height: 74%; opacity: 0.6; } }
@keyframes brief-route-draw { 50% { opacity: 0.35; transform: rotate(var(--route-angle)) scaleX(0.44); } }
@keyframes brief-chip-float { 50% { translate: 0 -8px; } }

.brief-machine {
  display: grid;
  grid-template-columns: minmax(300px, 0.64fr) minmax(0, 1.36fr);
  align-items: start;
  gap: 24px;
  padding: 90px var(--page-pad) 120px;
  background: var(--paper);
}

.brief-status {
  position: sticky;
  top: calc(var(--header-h) + 24px);
  min-width: 0;
  padding: 28px;
  color: var(--white);
  background: var(--black);
  border-radius: var(--radius);
}

.brief-status .kicker {
  color: var(--red);
}

.brief-status-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 30px;
}

.brief-progress {
  display: flex;
  gap: 4px;
}

.brief-progress span {
  display: grid;
  width: 26px;
  height: 26px;
  place-items: center;
  color: rgba(255,255,255,0.42);
  font-family: var(--mono);
  font-size: 0.54rem;
  border: 1px solid var(--line-dark);
  border-radius: 3px;
}

.brief-progress span.is-active {
  color: var(--black);
  background: var(--yellow);
  border-color: var(--yellow);
}

.brief-readout {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 16px;
  padding: 13px 0;
  border-top: 1px solid var(--line-dark);
}

.brief-readout > span {
  color: rgba(255,255,255,0.46);
  font-family: var(--mono);
  font-size: 0.56rem;
  text-transform: uppercase;
}

.brief-readout strong {
  font-size: 0.78rem;
}

.brief-insight-card {
  margin-top: 22px;
  padding: 20px;
  color: var(--ink);
  background: var(--yellow);
  border-radius: 4px;
}

.brief-insight-card > span {
  display: block;
  margin-bottom: 9px;
  font-family: var(--mono);
  font-size: 0.55rem;
  text-transform: uppercase;
}

.brief-insight-card > strong {
  display: block;
  font-family: var(--display);
  font-size: 1.35rem;
}

.brief-insight-card p {
  margin-top: 8px;
  font-size: 0.72rem;
  line-height: 1.45;
}

.brief-insight-card ul {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin: 15px 0 0;
  padding: 0;
  list-style: none;
}

.brief-insight-card li {
  padding: 5px 7px;
  font-family: var(--mono);
  font-size: 0.5rem;
  background: rgba(255,255,255,0.55);
  border-radius: 3px;
}

.brief-privacy-note {
  margin-top: 20px;
  color: rgba(255,255,255,0.42);
  font-size: 0.63rem;
}

.brief-form,
.contact-form {
  min-width: 0;
  padding: 34px;
  background: var(--white);
  border: 1px solid var(--line-light);
  border-radius: var(--radius);
}

.brief-form-topper {
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line-light);
}

.brief-type-deck {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 13px;
}

.brief-type-deck button {
  padding: 8px 10px;
  font-size: 0.66rem;
  font-weight: 700;
  cursor: pointer;
  background: var(--paper);
  border: 1px solid transparent;
  border-radius: 3px;
}

.brief-type-deck button:hover,
.brief-type-deck button.is-active {
  color: var(--white);
  background: var(--blue-dark);
}

.brief-step {
  display: none;
  min-height: 470px;
  padding: 38px 0 20px;
}

.brief-step.is-active {
  display: block;
  animation: brief-step-in 420ms ease both;
}

@keyframes brief-step-in { from { opacity: 0; transform: translateY(14px); } }

.brief-step h2 {
  max-width: 700px;
  margin: 12px 0 30px;
  font-size: 2.8rem;
  font-weight: 540;
}

.brief-fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.brief-fields label {
  display: grid;
  min-width: 0;
  gap: 8px;
}

.brief-fields label.wide {
  grid-column: 1 / -1;
}

.brief-fields label > span {
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 700;
}

.brief-fields input,
.brief-fields select,
.brief-fields textarea {
  width: 100%;
  min-width: 0;
  padding: 13px 14px;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid transparent;
  border-radius: 4px;
  outline: 0;
  transition: background 160ms ease, border-color 160ms ease;
}

.brief-fields input,
.brief-fields select {
  min-height: 50px;
}

.brief-fields textarea {
  min-height: 150px;
  line-height: 1.5;
  resize: vertical;
}

.brief-fields input:focus,
.brief-fields select:focus,
.brief-fields textarea:focus {
  background: var(--white);
  border-color: var(--blue);
}

.brief-fields ::placeholder {
  color: #9ca0a3;
}

.brief-actions {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  padding-top: 20px;
  border-top: 1px solid var(--line-light);
}

.brief-actions button:disabled {
  opacity: 0.34;
  cursor: not-allowed;
}

[data-brief-submit] { display: none; }
.brief-form.is-final [data-brief-next] { display: none; }
.brief-form.is-final [data-brief-submit] { display: inline-flex; }

.brief-result {
  display: none;
  margin-top: 20px;
  padding: 22px;
  background: var(--paper);
  border-left: 5px solid var(--blue);
}

.brief-result.is-visible { display: block; }
.brief-result h3 { margin-bottom: 10px; font-size: 1.6rem; }
.brief-result > p { color: var(--muted); font-size: 0.78rem; }

.brief-result-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin: 16px 0;
}

.brief-result-grid span {
  display: grid;
  gap: 6px;
  padding: 13px;
  font-size: 0.7rem;
  background: var(--white);
}

.brief-result ul {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 14px 0;
  padding: 0;
  list-style: none;
}

.brief-result li {
  padding: 6px 8px;
  font-family: var(--mono);
  font-size: 0.54rem;
  background: var(--soft);
}

.contact-route {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 50px;
  padding: 110px var(--page-pad);
  color: var(--white);
  background: #111418;
}

.contact-route-copy h2 {
  margin: 14px 0 20px;
  font-size: 3.8rem;
  font-weight: 520;
}

.contact-route-copy > p:not(.kicker) {
  color: rgba(255,255,255,0.58);
}

.contact-route-list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 28px;
}

.contact-route-list span {
  padding: 8px 10px;
  color: rgba(255,255,255,0.68);
  font-family: var(--mono);
  font-size: 0.54rem;
  border: 1px solid var(--line-dark);
  border-radius: 3px;
}

.contact-form { align-self: start; color: var(--ink); }

/* Legal */
.legal-shell {
  min-height: 100vh;
  padding: calc(var(--header-h) + 70px) var(--page-pad) 110px;
  background: var(--paper);
}

.legal-shell .page-hero {
  max-width: 900px;
  padding: 60px 0 70px;
}

.legal-shell .page-hero h1 {
  margin: 14px 0 20px;
  font-size: 4.7rem;
  font-weight: 520;
}

.legal-shell .page-hero h1 span { display: block; }
.legal-shell .page-hero > p:last-child { color: var(--muted); }

.legal-frame {
  display: grid;
  max-width: 1100px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line-light);
  border-left: 1px solid var(--line-light);
}

.legal-frame article {
  min-height: 240px;
  padding: 28px;
  background: var(--white);
  border-right: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
}

.legal-frame h2 { margin-bottom: 16px; font-size: 1.7rem; }
.legal-frame p { color: var(--muted); font-size: 0.82rem; }

/* Inner page breathing room */
.work-intro-section,
.work-gallery,
.prototype-note-section,
.rune-story-section,
.alchemy-contrast-section,
.blog-featured-wrap,
.blog-article,
.brief-machine {
  width: min(var(--content-max), calc(100% - 96px));
  margin-right: auto;
  margin-left: auto;
}

.process-section,
.prototype-gallery,
.alchemy-method-section,
.alchemy-output-section,
.contact-route {
  width: min(var(--content-max), calc(100% - 96px));
  margin: 48px auto;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  overflow: hidden;
}

.alchemy-marquee {
  width: min(var(--content-max), calc(100% - 96px));
  margin: 32px auto;
  border-radius: 14px;
}

.legal-shell {
  width: min(var(--content-max), 100%);
  margin-right: auto;
  margin-left: auto;
}

/* Mobile navigation */
.mobile-bottom-nav {
  display: none;
}

@media (max-width: 1180px) {
  :root { --page-pad: 32px; }
  .site-header { grid-template-columns: auto 1fr auto; }
  .brand-lockup > span:last-child { display: none; }
  .main-nav { gap: 17px; }
  .home-hero-copy h1,
  .interior-hero-copy h1,
  .alchemy-hero-copy h1 { font-size: 4.3rem; }
  .hero-live-note { display: none; }
  .section-heading h2 { font-size: 3rem; }
  .offer-grid { grid-auto-rows: 330px; }
  .offer-card,
  .offer-card:nth-child(1),
  .offer-card:nth-child(2),
  .offer-card:nth-child(3),
  .offer-card:nth-child(4) { grid-column: span 6; }
  .offer-card:nth-child(5) { grid-column: span 12; }
  .ethos-copy h2 { font-size: 4.3rem; }
  .founder-copy h2 { font-size: 3.4rem; }
  .prototype-preview-section { grid-template-columns: 1fr; }
  .prototype-intro { display: grid; grid-template-columns: 1fr auto; align-items: end; gap: 24px; }
  .prototype-intro .kicker { grid-column: 1 / -1; }
  .prototype-intro h2 { margin: 0; }
  .alchemy-preview-section { gap: 42px; }
  .alchemy-preview-copy h2 { font-size: 3.2rem; }
  .start-copy h2 { font-size: 4.3rem; }
  .capability-panel { grid-template-columns: 1fr 0.9fr; }
  .work-hero-reel { padding-left: 34%; }
  .project-card-copy h2 { font-size: 1.9rem; }
  .rune-story-copy h2, .alchemy-contrast-copy h2 { font-size: 3.5rem; }
  .approach-hero-system { right: -2%; width: 66%; }
  .approach-query { width: 190px; }
  .approach-manifesto { grid-template-columns: minmax(0, 0.78fr) minmax(470px, 1.22fr); gap: 44px; }
  .approach-manifesto-copy h2 { font-size: 3.45rem; }
  .approach-evidence { gap: 40px; }
  .approach-evidence-copy h2 { font-size: 3.2rem; }
  .approach-loop-section { gap: 42px; padding-right: 42px; padding-left: 42px; }
  .approach-loop-intro h2 { font-size: 3.4rem; }
  .brief-machine { grid-template-columns: 0.55fr 1.45fr; }
  .brief-status { padding: 22px; }
  .brief-input-card { right: 31%; width: 220px; }
  .brief-rune-stage { right: 12%; width: 200px; height: 285px; }
  .brief-output-card { right: 4%; width: 218px; }
}

@media (max-width: 900px) {
  :root { --page-pad: 22px; --header-h: 64px; }
  body { padding-bottom: 66px; }
  .site-header { grid-template-columns: 1fr auto; height: var(--header-h); }
  .main-nav { display: none; }
  .nav-action { padding: 10px 12px; }
  .mobile-bottom-nav {
    position: fixed;
    z-index: 1700;
    right: 0;
    bottom: 0;
    left: 0;
    display: block;
    height: 66px;
    color: var(--ink);
    background: rgba(241,242,239,0.96);
    border-top: 1px solid var(--line-light);
    backdrop-filter: blur(18px);
  }
  .mobile-bottom-nav__scroller {
    display: grid;
    height: 100%;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    align-items: stretch;
    overflow: hidden;
  }
  .mobile-bottom-nav__scroller::-webkit-scrollbar { display: none; }
  .mobile-bottom-nav a {
    position: relative;
    display: grid;
    min-width: 0;
    place-items: center;
    padding: 0 3px;
    color: #6c7074;
    font-size: 0.56rem;
    line-height: 1.15;
    text-align: center;
    white-space: normal;
  }
  .mobile-bottom-nav a span {
    position: absolute;
    top: 0;
    right: 10px;
    left: 10px;
    height: 3px;
    background: transparent;
  }
  .mobile-bottom-nav a.active { color: var(--ink); }
  .mobile-bottom-nav a.active span { background: var(--red); }
  .mobile-bottom-nav strong { font-weight: 700; }

  .home-hero { width: calc(100% - 24px); height: 86svh; min-height: 650px; margin-top: 12px; border-radius: 14px; }
  .home-hero-copy { top: 42px; right: var(--page-pad); bottom: auto; left: var(--page-pad); width: auto; }
  .home-hero-copy h1 { max-width: 690px; font-size: 3.65rem; }
  .hero-lede { max-width: 500px; }
  .hero-scroll-cue { display: none; }
  .media-muse { width: 34%; height: 24%; }
  .media-aiwork { width: 34%; height: 24%; }
  .media-agency { left: 15%; width: 31%; height: 21%; }
  .media-radio { right: 15%; width: 31%; height: 21%; }
  .media-quackers { left: 34%; width: 22%; height: 18%; }
  .media-barekasu { right: 34%; width: 22%; height: 18%; }
  .proof-ribbon { grid-template-columns: repeat(3, 1fr); }
  .proof-ribbon p { grid-column: 1 / -1; min-height: 80px; border-top: 1px solid rgba(21,21,21,0.38); }
  .proof-ribbon > * { padding: 18px; }

  .content-section { padding-top: 88px; padding-bottom: 88px; }
  .section-heading { grid-template-columns: 1fr; gap: 20px; margin-bottom: 36px; }
  .section-heading h2 { font-size: 2.75rem; }
  .section-heading > .text-link { justify-self: start; }
  .offer-grid { grid-auto-rows: 330px; }
  .offer-card,
  .offer-card-wide,
  .offer-card:nth-child(1),
  .offer-card:nth-child(2),
  .offer-card:nth-child(3),
  .offer-card:nth-child(4),
  .offer-card:nth-child(5) { grid-column: span 12; }
  .ethos-section { width: calc(100% - 44px); min-height: 680px; padding: 90px 34px 130px; }
  .ethos-notes { right: 34px; left: 34px; }
  .ethos-copy h2 { font-size: 3.55rem; }
  .ethos-notes { grid-template-columns: 1fr; }
  .ethos-notes span { padding: 9px; border-right: 0; border-bottom: 1px solid var(--line-light); }
  .work-preview-grid { grid-auto-rows: 300px; }
  .work-card, .work-card-large, .work-card-wide { grid-row: span 1; grid-column: span 6; }
  .work-card-large { grid-row: span 2; }
  .prototype-preview-section, .alchemy-preview-section, .start-section { width: calc(100% - 44px); padding-right: 34px; padding-left: 34px; }
  .prototype-intro { display: block; }
  .prototype-intro h2 { margin: 14px 0 24px; font-size: 2.8rem; }
  .alchemy-preview-section { min-height: 0; grid-template-columns: 1fr; padding-top: 90px; padding-bottom: 90px; }
  .alchemy-preview-visual { min-height: 470px; }
  .founder-section { grid-template-columns: 0.8fr 1.2fr; gap: 38px; }
  .founder-copy h2 { font-size: 2.85rem; }
  .founder-facts { grid-template-columns: 1fr; }
  .founder-facts span, .founder-facts span:first-child { padding: 12px 0; border-right: 0; border-bottom: 1px solid var(--line-light); }
  .blog-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .blog-grid .blog-card:last-child { grid-column: 1 / -1; }
  .start-section { min-height: 500px; padding-top: 90px; padding-bottom: 90px; }
  .start-copy h2 { font-size: 3.55rem; }
  .start-kinetic { font-size: 5.5rem; }
  .footer-main { align-items: start; flex-direction: column; }
  .footer-main p { text-align: left; }

  .interior-hero, .alchemy-hero { height: 78svh; min-height: 560px; }
  .interior-hero, .alchemy-hero { width: calc(100% - 24px); margin-top: 12px; border-radius: 14px; }
  .work-intro-section,
  .work-gallery,
  .prototype-note-section,
  .rune-story-section,
  .alchemy-contrast-section,
  .blog-featured-wrap,
  .blog-article,
  .brief-machine,
  .process-section,
  .prototype-gallery,
  .alchemy-method-section,
  .alchemy-output-section,
  .contact-route,
  .alchemy-marquee { width: calc(100% - 44px); }
  .interior-hero-copy h1, .alchemy-hero-copy h1 { font-size: 3.85rem; }
  .approach-hero::after { content: none; }
  .approach-hero-veil { background: linear-gradient(90deg, rgba(7,9,11,0.98) 0%, rgba(7,9,11,0.82) 56%, rgba(7,9,11,0.38) 100%), linear-gradient(0deg, rgba(7,9,11,0.84), transparent 50%); }
  .approach-hero-system { top: 9%; right: -8%; width: 78%; height: 78%; opacity: 0.68; }
  .query-one { display: none; }
  .query-two { left: 8%; }
  .approach-system-readout { right: 8%; }
  .approach-manifesto { width: calc(100% - 44px); grid-template-columns: 1fr; gap: 56px; padding-top: 96px; padding-bottom: 96px; }
  .approach-manifesto-copy h2 { max-width: 720px; font-size: 3.45rem; }
  .approach-thought-engine { min-height: 500px; }
  .approach-evidence { min-height: 0; grid-template-columns: 1fr; gap: 56px; padding: 96px 34px; }
  .approach-evidence-copy h2 { max-width: 720px; }
  .approach-evidence-reel { min-height: 520px; }
  .approach-loop-section { width: calc(100% - 44px); grid-template-columns: 1fr; gap: 56px; padding: 82px 34px; }
  .approach-loop-intro { position: relative; top: auto; }
  .approach-loop-intro > p:not(.kicker) { max-width: 620px; }
  .approach-loop-dial { position: absolute; top: -32px; right: 0; width: 170px; height: 170px; margin: 0; opacity: 0.46; }
  .principle-section { grid-template-columns: 1fr; gap: 20px; }
  .principle-statement h2 { font-size: 3.2rem; }
  .capability-panel { grid-template-columns: 1fr; }
  .capability-image { min-height: 340px; }
  .capability-panel > div:last-child { padding: 34px; }
  .capability-panel h3 { font-size: 2.5rem; }
  .process-track { grid-template-columns: repeat(2, 1fr); }
  .process-card:nth-child(2) { border-right: 0; }
  .process-card { border-bottom: 1px solid var(--line-dark); }
  .work-hero-reel { padding-left: 28%; opacity: 0.8; }
  .work-intro-section { grid-template-columns: 1fr; gap: 36px; padding-top: 88px; padding-bottom: 88px; }
  .work-intro-copy h2 { font-size: 3.35rem; }
  .work-intro-tags { grid-template-columns: repeat(3,1fr); gap: 0 20px; }
  .work-gallery { grid-auto-rows: 360px; padding-bottom: 88px; }
  .project-card, .project-card-hero, .project-card-wide { grid-row: span 1; grid-column: span 6; }
  .project-card-hero { grid-row: span 2; }
  .prototype-feature { min-height: 500px; }
  .prototype-note-section { align-items: start; flex-direction: column; padding-top: 88px; padding-bottom: 88px; }
  .prototype-note h2 { font-size: 3.25rem; }
  .rune-story-section, .alchemy-contrast-section, .alchemy-output-section { grid-template-columns: 1fr; gap: 46px; padding-top: 88px; padding-bottom: 88px; }
  .rune-story-visual, .alchemy-output-stage { min-height: 480px; }
  .alchemy-reaction-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-feature-card .blog-card-link { grid-template-columns: 1fr; }
  .blog-feature-card .blog-card-art { min-height: 380px; }
  .blog-feature-card .blog-card-copy h3 { font-size: 2.6rem; }
  .article-header { grid-template-columns: 1fr; }
  .article-header .article-art { grid-row: auto; grid-column: 1; min-height: 380px; }
  .article-header h1 { font-size: 3.3rem; }
  .brief-machine { grid-template-columns: 1fr; }
  .brief-status { position: relative; top: auto; }
  .brief-step { min-height: 430px; }
  .contact-route { grid-template-columns: 1fr; }
  .brief-hero::after { background: linear-gradient(90deg, rgba(10,11,12,0.96) 0%, rgba(10,11,12,0.76) 52%, transparent 82%); }
  .brief-input-card { top: 13%; right: 23%; width: 190px; opacity: 0.72; }
  .brief-input-card > span { display: none; }
  .brief-rune-stage { top: 28%; right: 4%; width: 180px; height: 255px; }
  .brief-output-card { right: 4%; bottom: 9%; width: 194px; opacity: 0.8; }
  .message-one, .message-three { display: none; }
  .message-two { right: 25%; bottom: 9%; }
}

@media (max-width: 620px) {
  :root { --page-pad: 16px; }
  .site-header { padding-right: 14px; padding-left: 14px; }
  .nav-action { font-size: 0.7rem; }
  .home-hero { width: calc(100% - 16px); height: 88svh; min-height: 640px; margin-top: 8px; }
  .home-hero-copy { top: 34px; right: 18px; left: 18px; }
  .home-hero-copy h1 { font-size: 2.85rem; line-height: 0.94; }
  .home-hero-copy h1 span { display: inline; }
  .home-hero-copy h1 span::after { content: " "; }
  .hero-lede { font-size: 0.88rem; }
  .home-hero-copy .hero-actions { gap: 16px; }
  .hero-media-tile { opacity: 0.72; }
  .media-muse { top: auto; bottom: -2%; left: -10%; width: 48%; height: 23%; }
  .media-aiwork { top: auto; right: -10%; bottom: -2%; width: 48%; height: 23%; }
  .media-agency { top: auto; bottom: -5%; left: 20%; width: 38%; height: 20%; }
  .media-radio { top: auto; right: 20%; bottom: -5%; width: 38%; height: 20%; }
  .media-quackers, .media-barekasu { display: none; }
  .hero-veil { background: linear-gradient(0deg, rgba(10,11,12,0.94), rgba(10,11,12,0.18) 60%, rgba(10,11,12,0.58)); }
  .proof-ribbon { grid-template-columns: 1fr; }
  .proof-ribbon { width: calc(100% - 32px); margin-top: 24px; }
  .proof-ribbon > * { min-height: 85px; border-right: 0; border-bottom: 1px solid rgba(21,21,21,0.35); }
  .proof-ribbon p { grid-column: auto; }
  .section-heading h2 { font-size: 2.3rem; }
  .offer-card-copy h3 { font-size: 1.7rem; }
  .ethos-copy h2 { font-size: 2.75rem; }
  .ethos-copy > p:last-child { font-size: 0.88rem; }
  .ethos-orbit { width: 440px; height: 440px; }
  .work-preview-grid { grid-auto-rows: 290px; }
  .work-card, .work-card-large, .work-card-wide { grid-row: span 1; grid-column: 1 / -1; }
  .prototype-preview-section, .alchemy-preview-section, .start-section { width: calc(100% - 32px); padding-right: 22px; padding-left: 22px; margin-top: 32px; margin-bottom: 32px; border-radius: 16px; }
  .ethos-section { width: calc(100% - 32px); padding-right: 22px; padding-left: 22px; margin-top: 32px; margin-bottom: 32px; border-radius: 16px; }
  .ethos-notes { right: 22px; left: 22px; }
  .prototype-preview-track { grid-template-columns: 1fr; }
  .prototype-slab:first-child { grid-row: span 1; }
  .prototype-slab { min-height: 250px; }
  .alchemy-preview-visual { min-height: 400px; }
  .rune-wire { width: 220px; height: 310px; }
  .alchemy-preview-copy h2 { font-size: 2.75rem; }
  .alchemy-stages span { grid-template-columns: 90px 1fr; }
  .founder-section { grid-template-columns: 1fr; }
  .founder-media { max-width: 100%; }
  .founder-copy h2 { font-size: 2.65rem; }
  .blog-grid { grid-template-columns: 1fr; }
  .blog-grid .blog-card:last-child { grid-column: auto; }
  .start-copy h2 { font-size: 2.9rem; }
  .start-kinetic { font-size: 4.4rem; }
  .footer-brand { font-size: 2.3rem; }
  .site-footer > nav { display: grid; grid-template-columns: repeat(2, 1fr); }
  .footer-legal { align-items: start; flex-direction: column; }

  .interior-hero, .alchemy-hero { height: 78svh; min-height: 540px; }
  .interior-hero, .alchemy-hero { width: calc(100% - 16px); margin-top: 8px; }
  .work-intro-section,
  .work-gallery,
  .prototype-note-section,
  .rune-story-section,
  .alchemy-contrast-section,
  .blog-featured-wrap,
  .blog-article,
  .brief-machine,
  .process-section,
  .prototype-gallery,
  .alchemy-method-section,
  .alchemy-output-section,
  .contact-route,
  .alchemy-marquee { width: calc(100% - 32px); }
  .interior-hero-copy, .alchemy-hero-copy { right: var(--page-pad); width: auto; }
  .interior-hero-copy h1, .alchemy-hero-copy h1 { font-size: 3rem; }
  .approach-hero .interior-hero-copy { bottom: 8%; }
  .approach-hero-system { top: 2%; right: -26%; width: 118%; height: 66%; opacity: 0.5; }
  .approach-system-plane { inset: 4%; }
  .approach-system-core { top: 12%; right: 29%; width: 170px; height: 170px; }
  .query-two, .query-three, .approach-system-readout, .route-one, .route-two, .route-three { display: none; }
  .approach-hero-notes { max-width: 270px; }
  .approach-manifesto { width: calc(100% - 32px); gap: 40px; padding-top: 82px; padding-bottom: 82px; }
  .approach-manifesto-copy h2 { font-size: 2.65rem; }
  .approach-thought-engine { min-height: 430px; padding: 58px 18px 18px; border-radius: 10px; }
  .thought-lane { min-height: 112px; grid-template-columns: 1fr 48px; gap: 10px; }
  .thought-lane small { grid-column: 1; }
  .thought-lane b { grid-column: 1; font-size: 1.25rem; }
  .thought-lane i { grid-row: 1 / span 2; grid-column: 2; }
  .thought-pulse { top: 58px; bottom: 18px; left: 18px; }
  .approach-marquee > div { gap: 22px; padding: 16px 11px; }
  .approach-marquee span { font-size: 1.2rem; }
  .approach-evidence { padding: 82px 16px; }
  .approach-evidence-copy h2 { font-size: 2.65rem; }
  .approach-evidence-metrics { grid-template-columns: 1fr; }
  .approach-evidence-metrics span { padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,0.12); }
  .approach-evidence-reel { min-height: 410px; }
  .evidence-frame-one { width: 55%; height: 42%; }
  .evidence-frame-two { width: 62%; height: 48%; }
  .evidence-frame-three { width: 58%; height: 38%; }
  .evidence-crosshair { width: 54px; height: 54px; }
  .capability-section { padding-top: 88px; padding-bottom: 88px; }
  .capability-tabs button { min-width: 126px; padding: 14px 9px; }
  .capability-stage { min-height: 0; padding-top: 10px; }
  .capability-panel { min-height: 0; border-radius: 10px; }
  .capability-image { min-height: 310px; margin: 8px; }
  .approach-loop-section { width: calc(100% - 32px); padding: 72px 22px; border-radius: 16px; }
  .approach-loop-intro h2 { font-size: 2.75rem; }
  .approach-loop-dial { top: -14px; right: -55px; width: 145px; height: 145px; }
  .approach-loop-card { min-height: 240px; padding: 26px 52px 26px 18px; }
  .approach-loop-card h3 { margin-top: 42px; font-size: 1.85rem; }
  .approach-loop-card > b { right: 10px; font-size: 3.2rem; }
  .question-field { display: none; }
  .approach-compass { right: -70px; width: 260px; height: 260px; opacity: 0.55; }
  .principle-statement h2 { font-size: 2.55rem; }
  .capability-panel > div:last-child { padding: 26px; }
  .capability-panel h3 { font-size: 2.1rem; }
  .process-track { grid-template-columns: 1fr; }
  .process-card { min-height: 240px; border-right: 0; }
  .process-card h3 { margin-top: 45px; }
  .work-hero-reel { grid-template-columns: repeat(2,1fr); padding: 82px 0 0 28%; opacity: 0.48; }
  .work-hero-reel figure:nth-child(n+3) { display: none; }
  .work-intro-copy h2 { font-size: 2.75rem; }
  .work-intro-tags { grid-template-columns: repeat(2,1fr); }
  .work-gallery { grid-auto-rows: 410px; }
  .project-card, .project-card-hero, .project-card-wide { grid-row: span 1; grid-column: 1 / -1; }
  .project-card-copy h2 { font-size: 1.75rem; }
  .janbari-motion span { font-size: 2.65rem; }
  .prototype-feature { min-height: 520px; }
  .prototype-feature::after { background: linear-gradient(0deg, rgba(5,6,8,0.96), transparent 78%); }
  .prototype-feature-copy { right: 24px; bottom: 26px; left: 24px; width: auto; }
  .prototype-feature-copy h2 { font-size: 2.65rem; }
  .prototype-note h2 { font-size: 2.7rem; }
  .rune-story-visual, .alchemy-output-stage { min-height: 420px; }
  .large-rune { width: 220px; height: 310px; }
  .rune-story-copy h2, .alchemy-contrast-copy h2, .alchemy-output-copy h2 { font-size: 2.75rem; }
  .alchemy-reaction-grid { grid-template-columns: 1fr; }
  .reaction-card { min-height: 270px; }
  .alchemy-contrast-list div { grid-template-columns: 1fr; gap: 8px; }
  .alchemy-hero-formula { display: none; }
  .blog-feature-card .blog-card-copy { padding: 26px; }
  .blog-feature-card .blog-card-copy h3 { font-size: 2.2rem; }
  .blog-feature-card .blog-card-art { min-height: 300px; }
  .blog-article { padding-top: 88px; }
  .article-header h1 { font-size: 2.65rem; }
  .article-header .article-art { min-height: 300px; }
  .article-body { font-size: 0.94rem; }
  .article-body .lede { font-size: 1.35rem; }
  .article-body h2 { font-size: 2rem; }
  .brief-machine { padding-top: 50px; padding-bottom: 88px; }
  .brief-form, .contact-form, .brief-status { padding: 22px; }
  .brief-step h2 { font-size: 2.2rem; }
  .brief-fields { grid-template-columns: 1fr; }
  .brief-fields label.wide { grid-column: auto; }
  .brief-result-grid { grid-template-columns: 1fr; }
  .contact-route { padding-top: 88px; padding-bottom: 88px; }
  .contact-route-copy h2 { font-size: 2.75rem; }
  .brief-input-card, .brief-output-card, .brief-message, .brief-route-line { display: none; }
  .brief-hero-art::before { top: 16%; right: -22%; width: 94%; height: 62%; opacity: 0.7; }
  .brief-hero-art::after { top: 22%; right: -14%; width: 78%; height: 48%; opacity: 0.4; }
  .brief-rune-stage { top: 9%; right: -34px; width: 180px; height: 255px; opacity: 0.48; }
  .brief-hero-steps { flex-wrap: wrap; max-width: 240px; }
  .legal-shell .page-hero h1 { font-size: 3rem; }
  .legal-frame { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
  .alchemy-rune-canvas { display: none; }
  .rune-fallback-mark { opacity: 0.42; }
  [data-parallax] { translate: none; }
}

/* Kinetic portfolio system */
[data-filter-item][hidden] {
  display: none !important;
}

.kinetic-showcase {
  position: relative;
  width: min(var(--stage-max), calc(100% - 96px));
  padding: 112px 0 86px;
  margin: 48px auto;
  overflow: hidden;
}

.kinetic-showcase::before {
  position: absolute;
  top: 0;
  right: 0;
  width: 40%;
  height: 1px;
  content: "";
  background: var(--red);
  transform-origin: right;
  animation: showcase-rule 6s ease-in-out infinite;
}

.showcase-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.45fr);
  align-items: end;
  gap: 72px;
  padding: 0 32px;
}

.showcase-heading h2 {
  max-width: 920px;
  margin-top: 16px;
  font-size: 5.3rem;
  font-weight: 520;
}

.showcase-heading > p {
  max-width: 460px;
  padding-bottom: 8px;
  color: var(--muted);
  font-size: 0.92rem;
}

.showcase-toolbar,
.portfolio-filter-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin: 62px 32px 24px;
  padding-top: 18px;
  border-top: 1px solid var(--line-light);
}

.showcase-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.showcase-filters button {
  min-height: 34px;
  padding: 8px 14px;
  color: rgba(255, 255, 255, 0.7);
  font-family: var(--mono);
  font-size: 0.58rem;
  text-transform: uppercase;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  cursor: pointer;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease;
}

.kinetic-showcase .showcase-filters button,
.showcase-filters-dark button {
  color: var(--muted);
  border-color: var(--line-light);
}

.showcase-filters button:hover,
.showcase-filters button[aria-pressed="true"] {
  color: var(--black);
  background: var(--yellow);
  border-color: var(--yellow);
}

.showcase-navigation {
  display: flex;
  align-items: center;
  gap: 8px;
}

.showcase-navigation > span,
.portfolio-filter-row > span {
  margin-right: 8px;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 0.58rem;
  text-transform: uppercase;
}

.showcase-navigation button {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: var(--ink);
  background: transparent;
  border: 1px solid var(--line-light);
  border-radius: 50%;
  cursor: pointer;
  transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

.showcase-navigation button:hover {
  color: var(--white);
  background: var(--red);
  transform: rotate(-8deg);
}

.showcase-viewport {
  position: relative;
  overflow: hidden;
}

.showcase-viewport::before,
.showcase-viewport::after {
  position: absolute;
  z-index: 5;
  top: 0;
  bottom: 0;
  width: 34px;
  content: "";
  pointer-events: none;
}

.showcase-viewport::before {
  left: 0;
  background: linear-gradient(90deg, var(--paper), transparent);
}

.showcase-viewport::after {
  right: 0;
  background: linear-gradient(-90deg, var(--paper), transparent);
}

.showcase-track {
  display: grid;
  grid-auto-columns: minmax(290px, 22vw);
  grid-auto-flow: column;
  align-items: start;
  gap: 14px;
  padding: 4px 32px 34px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.showcase-track::-webkit-scrollbar {
  display: none;
}

.showcase-card {
  --card-tilt-x: 0deg;
  --card-tilt-y: 0deg;
  display: grid;
  grid-template-rows: 290px auto;
  min-width: 0;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line-light);
  border-radius: 8px;
  overflow: hidden;
  scroll-snap-align: start;
  transform: perspective(1000px) rotateX(var(--card-tilt-x)) rotateY(var(--card-tilt-y));
  transition: transform 260ms ease, box-shadow 260ms ease;
}

.showcase-card-wide {
  grid-auto-columns: minmax(390px, 29vw);
}

.showcase-card:hover {
  box-shadow: 0 22px 58px rgba(21, 21, 21, 0.12);
}

.showcase-card figure {
  position: relative;
  height: 290px;
  margin: 0;
  background: var(--coal);
  overflow: hidden;
}

.showcase-card figure > img,
.showcase-card figure > video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.01) translate3d(var(--depth-media-x, 0), var(--depth-media-y, 0), 0);
  transition: transform 650ms cubic-bezier(0.2, 0.7, 0, 1), filter 400ms ease;
}

.showcase-card:hover figure > img,
.showcase-card:hover figure > video {
  filter: saturate(1.12);
  transform: scale(1.055) translate3d(var(--depth-media-x, 0), var(--depth-media-y, 0), 0);
}

.showcase-card > div {
  min-height: 170px;
  padding: 22px 22px 24px;
}

.showcase-card > div > span,
.portfolio-tile > div > p,
.prototype-index-card > div > span {
  display: block;
  margin-bottom: 32px;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 0.56rem;
  text-transform: uppercase;
}

.showcase-card h3 {
  margin-bottom: 8px;
  font-size: 1.65rem;
}

.showcase-card p {
  max-width: 370px;
  color: var(--muted);
  font-size: 0.72rem;
}

.showcase-card-signal figure img {
  filter: hue-rotate(188deg) saturate(1.12);
}

.showcase-card-janbari figure {
  display: grid;
  place-items: center;
  color: #171717;
  background: #ffd43b;
}

.showcase-card-janbari figure span {
  z-index: 2;
  font-family: var(--display);
  font-size: 3rem;
  font-weight: 800;
  transform: rotate(-6deg);
  animation: janbari-pop 3.6s ease-in-out infinite;
}

.showcase-card-janbari figure i {
  position: absolute;
  width: 150px;
  height: 150px;
  border: 16px solid var(--red);
  transform: rotate(30deg);
  animation: showcase-shape-orbit 9s linear infinite;
}

.showcase-card-janbari figure i:last-child {
  right: -45px;
  bottom: -60px;
  border-color: var(--blue);
  border-radius: 50%;
  animation-direction: reverse;
}

.showcase-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  padding: 26px 32px 0;
  border-top: 1px solid var(--line-light);
}

.showcase-footer > p {
  max-width: 600px;
  color: var(--muted);
  font-size: 0.78rem;
}

.showcase-footer > div {
  display: flex;
  gap: 26px;
}

/* Work: cinematic stage and editorial index */
.work-hero-reframed {
  min-height: 730px;
  background: #101112;
  isolation: isolate;
}

.work-hero-reframed::after {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(10, 11, 12, 0.92) 0%, rgba(10, 11, 12, 0.54) 48%, rgba(10, 11, 12, 0.1) 78%),
    linear-gradient(0deg, rgba(10, 11, 12, 0.76), transparent 52%);
}

.work-hero-atmosphere {
  position: absolute;
  z-index: 0;
  inset: 0;
  overflow: hidden;
  perspective: 1200px;
}

.work-hero-wordmark {
  position: absolute;
  top: 18%;
  right: -2%;
  display: grid;
  color: rgba(255, 255, 255, 0.055);
  font-family: var(--display);
  font-size: 9.5rem;
  font-weight: 760;
  line-height: 0.7;
  text-align: right;
  transform: rotate(-4deg);
  animation: work-word-drift 11s ease-in-out infinite alternate;
}

.work-hero-wordmark span:nth-child(2) {
  color: rgba(237, 61, 50, 0.16);
  transform: translateX(-70px);
}

.work-orbit-card {
  position: absolute;
  width: min(300px, 22vw);
  aspect-ratio: 0.78;
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.42);
  overflow: hidden;
  translate: 0 var(--parallax-y, 0);
}

.work-orbit-card img,
.work-orbit-card video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.work-orbit-card-a {
  top: 14%;
  right: 23%;
  transform: rotate(-6deg);
  animation: work-card-a 7s ease-in-out infinite alternate;
}

.work-orbit-card-b {
  top: 29%;
  right: 6%;
  width: min(330px, 24vw);
  transform: rotate(5deg);
  animation: work-card-b 8s ease-in-out infinite alternate;
}

.work-orbit-card-c {
  right: 39%;
  bottom: -15%;
  width: min(260px, 19vw);
  transform: rotate(2deg);
  animation: work-card-c 9s ease-in-out infinite alternate;
}

.work-hero-atmosphere > i {
  position: absolute;
  z-index: -1;
  width: 10px;
  height: 10px;
  background: var(--yellow);
  animation: work-signal-float 5s ease-in-out infinite alternate;
}

.work-hero-atmosphere > i:nth-of-type(1) { top: 16%; right: 12%; }
.work-hero-atmosphere > i:nth-of-type(2) { right: 36%; bottom: 18%; width: 26px; height: 5px; background: var(--red); animation-delay: -2s; }
.work-hero-atmosphere > i:nth-of-type(3) { top: 42%; right: 50%; background: var(--blue); animation-delay: -3s; }

.work-hero-copy {
  z-index: 3;
  max-width: 780px;
}

.work-hero-copy h1 {
  max-width: 820px;
  font-size: 5.5rem;
}

.work-hero-copy h1 span {
  color: var(--red);
}

.work-hero-caption {
  position: absolute;
  z-index: 3;
  right: 32px;
  bottom: 30px;
  display: flex;
  gap: 28px;
  color: rgba(255, 255, 255, 0.56);
  font-family: var(--mono);
  font-size: 0.56rem;
  text-transform: uppercase;
}

.portfolio-index {
  width: min(var(--content-max), calc(100% - 96px));
  padding: 118px 0 130px;
  margin: 0 auto;
}

.portfolio-index-header,
.prototype-index-header {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(280px, 0.5fr);
  align-items: end;
  gap: 72px;
}

.portfolio-index-header h2,
.prototype-index-header h2 {
  max-width: 880px;
  margin-top: 15px;
  font-size: 4.8rem;
  font-weight: 520;
}

.portfolio-index-header > p,
.prototype-index-header > p {
  max-width: 470px;
  color: var(--muted);
  font-size: 0.86rem;
}

.portfolio-filter-row {
  margin-right: 0;
  margin-left: 0;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 54px 16px;
}

.portfolio-tile {
  --card-tilt-x: 0deg;
  --card-tilt-y: 0deg;
  grid-column: span 6;
  min-width: 0;
  transform: perspective(1100px) rotateX(var(--card-tilt-x)) rotateY(var(--card-tilt-y));
  transition: transform 260ms ease;
}

.portfolio-tile-major {
  grid-column: span 7;
}

.portfolio-tile-major + .portfolio-tile {
  grid-column: span 5;
}

.portfolio-tile-wide {
  grid-column: span 7;
}

.portfolio-tile-wide:nth-child(even) {
  grid-column: span 5;
}

.portfolio-tile figure {
  position: relative;
  aspect-ratio: 1.45;
  margin: 0;
  background: var(--coal);
  border: 1px solid var(--line-light);
  border-radius: 8px;
  overflow: hidden;
}

.portfolio-tile-major figure {
  aspect-ratio: 1.25;
}

.portfolio-tile figure > img,
.portfolio-tile figure > video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.01) translate3d(var(--depth-media-x, 0), var(--depth-media-y, 0), 0);
  transition: transform 700ms cubic-bezier(0.2, 0.7, 0, 1), filter 450ms ease;
}

.portfolio-tile:hover figure > img,
.portfolio-tile:hover figure > video {
  filter: saturate(1.13);
  transform: scale(1.05) translate3d(var(--depth-media-x, 0), var(--depth-media-y, 0), 0);
}

.portfolio-tile figure > span,
.portfolio-tile figure > b {
  position: absolute;
  z-index: 2;
  top: 16px;
  right: 16px;
  padding: 8px 10px;
  color: var(--black);
  font-family: var(--mono);
  font-size: 0.55rem;
  font-weight: 500;
  text-transform: uppercase;
  background: var(--white);
  border-radius: 4px;
  opacity: 0;
  transform: translateY(-8px);
  transition: opacity 220ms ease, transform 220ms ease;
}

.portfolio-tile:hover figure > span,
.portfolio-tile:hover figure > b {
  opacity: 1;
  transform: translateY(0);
}

.portfolio-tile > div {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 7px 24px;
  padding: 18px 3px 0;
}

.portfolio-tile > div > p {
  grid-column: 1 / -1;
  margin: 0 0 5px;
}

.portfolio-tile h3 {
  font-size: 2.25rem;
}

.portfolio-tile small {
  align-self: end;
  max-width: 360px;
  color: var(--muted);
  font-size: 0.68rem;
  line-height: 1.5;
  text-align: right;
}

.portfolio-tile-janbari figure {
  background: #ffd43b;
}

.portfolio-tile-janbari .janbari-motion {
  z-index: 1;
}

/* Prototype lab */
.prototype-hero-reframed {
  min-height: 730px;
  background: #0d1018;
  isolation: isolate;
}

.prototype-hero-reframed::before {
  display: none;
}

.prototype-lab-stage {
  position: absolute;
  z-index: 0;
  inset: 0;
  overflow: hidden;
  perspective: 1200px;
}

.prototype-lab-grid {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    radial-gradient(circle at 76% 42%, rgba(75, 116, 255, 0.26), transparent 31%);
  background-size: 38px 38px, 38px 38px, auto;
  transform: perspective(700px) rotateX(50deg) scale(1.5) translateY(20%);
  animation: prototype-grid-travel 12s linear infinite;
}

.prototype-screen {
  position: absolute;
  width: min(390px, 29vw);
  aspect-ratio: 1.28;
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 8px;
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.55);
  overflow: hidden;
  translate: 0 var(--parallax-y, 0);
}

.prototype-screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.prototype-screen-a {
  top: 11%;
  right: 10%;
  transform: rotateY(-12deg) rotateZ(3deg);
  animation: prototype-screen-a 7s ease-in-out infinite alternate;
}

.prototype-screen-b {
  right: 37%;
  bottom: -5%;
  width: min(310px, 23vw);
  transform: rotateY(12deg) rotateZ(-4deg);
  animation: prototype-screen-b 8s ease-in-out infinite alternate;
}

.prototype-screen-c {
  right: -6%;
  bottom: 3%;
  width: min(330px, 25vw);
  transform: rotateY(-8deg) rotateZ(5deg);
  animation: prototype-screen-c 9s ease-in-out infinite alternate;
}

.prototype-lab-readout {
  position: absolute;
  top: 18%;
  right: 43%;
  display: grid;
  padding: 14px 17px;
  color: var(--white);
  font-family: var(--mono);
  background: rgba(10, 11, 12, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 6px;
  backdrop-filter: blur(12px);
}

.prototype-lab-readout span,
.prototype-lab-readout small {
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.5rem;
  text-transform: uppercase;
}

.prototype-lab-readout strong {
  color: var(--yellow);
  font-size: 2.2rem;
}

.prototype-lab-stage > i {
  position: absolute;
  width: 8px;
  height: 8px;
  background: var(--white);
  animation: star-drift 5s ease-in-out infinite alternate;
}

.prototype-lab-stage > i:nth-of-type(1) { top: 12%; right: 4%; }
.prototype-lab-stage > i:nth-of-type(2) { top: 44%; right: 45%; background: var(--blue); animation-delay: -2s; }
.prototype-lab-stage > i:nth-of-type(3) { right: 31%; bottom: 12%; width: 20px; height: 4px; background: var(--red); animation-delay: -3s; }
.prototype-lab-stage > i:nth-of-type(4) { top: 24%; right: 32%; background: var(--yellow); animation-delay: -4s; }

.prototype-hero-copy {
  z-index: 2;
  max-width: 730px;
}

.prototype-hero-copy h1 {
  max-width: 760px;
  font-size: 5.4rem;
}

.prototype-hero-copy h1 span {
  color: var(--yellow);
}

.prototype-hero-cue {
  position: absolute;
  z-index: 3;
  right: 32px;
  bottom: 28px;
  display: flex;
  align-items: center;
  gap: 22px;
  color: rgba(255, 255, 255, 0.64);
  font-family: var(--mono);
  font-size: 0.58rem;
  text-transform: uppercase;
}

.prototype-hero-cue span {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 50%;
  animation: prototype-cue 1.8s ease-in-out infinite;
}

.prototype-index {
  width: min(var(--content-max), calc(100% - 96px));
  padding: 118px 0 130px;
  margin: 0 auto;
  color: var(--white);
  background: var(--black);
}

.prototypes-page main {
  background: var(--black);
}

.prototype-index-header > p {
  color: rgba(255, 255, 255, 0.54);
}

.portfolio-filter-row-dark {
  margin-right: 0;
  margin-left: 0;
  border-color: rgba(255, 255, 255, 0.16);
}

.portfolio-filter-row-dark > span {
  color: rgba(255, 255, 255, 0.52);
}

.prototype-index-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 18px;
}

.prototype-index-card {
  --card-tilt-x: 0deg;
  --card-tilt-y: 0deg;
  grid-column: span 6;
  min-width: 0;
  color: var(--white);
  background: #14161a;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  overflow: hidden;
  transform: perspective(1100px) rotateX(var(--card-tilt-x)) rotateY(var(--card-tilt-y));
  transition: transform 260ms ease, border-color 260ms ease;
}

.prototype-index-card:hover {
  border-color: rgba(242, 201, 76, 0.62);
}

.prototype-index-card-wide {
  grid-column: span 7;
}

.prototype-index-card-wide:nth-child(even) {
  grid-column: span 5;
}

.prototype-index-card figure {
  position: relative;
  height: 360px;
  margin: 0;
  background: #0f1115;
  overflow: hidden;
}

.prototype-index-card figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.01) translate3d(var(--depth-media-x, 0), var(--depth-media-y, 0), 0);
  transition: transform 650ms cubic-bezier(0.2, 0.7, 0, 1), filter 450ms ease;
}

.prototype-index-card:hover figure img {
  filter: saturate(1.14);
  transform: scale(1.055) translate3d(var(--depth-media-x, 0), var(--depth-media-y, 0), 0);
}

.prototype-status {
  position: absolute;
  top: 15px;
  left: 15px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 9px;
  color: var(--white);
  font-family: var(--mono);
  font-size: 0.52rem;
  text-transform: uppercase;
  background: rgba(10, 11, 12, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 4px;
  backdrop-filter: blur(10px);
}

.prototype-status i {
  width: 6px;
  height: 6px;
  background: #65e6a0;
  border-radius: 50%;
  box-shadow: 0 0 12px rgba(101, 230, 160, 0.8);
  animation: live-pulse 1.8s ease-in-out infinite;
}

.prototype-index-card > div {
  position: relative;
  min-height: 190px;
  padding: 24px 24px 28px;
}

.prototype-index-card > div > span {
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.5);
}

.prototype-index-card h3 {
  margin-bottom: 9px;
  font-size: 2.5rem;
}

.prototype-index-card p {
  max-width: 520px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.74rem;
}

.prototype-index-card b {
  position: absolute;
  right: 22px;
  bottom: 25px;
  font-family: var(--mono);
  font-size: 0.58rem;
  font-weight: 500;
  text-transform: uppercase;
}

@keyframes showcase-rule {
  0%, 100% { transform: scaleX(0.2); }
  50% { transform: scaleX(1); }
}

@keyframes showcase-shape-orbit {
  to { transform: rotate(390deg); }
}

@keyframes work-word-drift {
  to { transform: translate3d(-24px, 18px, 0) rotate(-2deg); }
}

@keyframes work-card-a {
  to { transform: translate3d(-12px, 20px, 30px) rotate(-3deg); }
}

@keyframes work-card-b {
  to { transform: translate3d(-18px, -18px, 50px) rotate(2deg); }
}

@keyframes work-card-c {
  to { transform: translate3d(10px, -20px, 20px) rotate(-2deg); }
}

@keyframes work-signal-float {
  to { transform: translate(18px, -20px) rotate(90deg); }
}

@keyframes prototype-grid-travel {
  to { background-position: 0 76px, 76px 0, center; }
}

@keyframes prototype-screen-a {
  to { transform: translate3d(-16px, 18px, 40px) rotateY(-7deg) rotateZ(1deg); }
}

@keyframes prototype-screen-b {
  to { transform: translate3d(13px, -18px, 30px) rotateY(8deg) rotateZ(-2deg); }
}

@keyframes prototype-screen-c {
  to { transform: translate3d(-10px, -12px, 45px) rotateY(-4deg) rotateZ(2deg); }
}

@keyframes prototype-cue {
  50% { transform: translateY(6px); }
}

@keyframes live-pulse {
  50% { opacity: 0.45; transform: scale(0.7); }
}

@media (max-width: 1100px) {
  .showcase-heading h2,
  .portfolio-index-header h2,
  .prototype-index-header h2 { font-size: 4rem; }
  .showcase-heading,
  .portfolio-index-header,
  .prototype-index-header { grid-template-columns: minmax(0, 1fr) minmax(250px, 0.42fr); gap: 42px; }
  .showcase-track { grid-auto-columns: minmax(300px, 38vw); }
  .work-hero-copy h1,
  .prototype-hero-copy h1 { font-size: 4.6rem; }
  .work-orbit-card-a { right: 16%; }
  .work-orbit-card-b { right: 2%; }
  .work-orbit-card-c { right: 36%; }
  .prototype-screen-a { right: 4%; }
  .prototype-screen-b { right: 29%; }
  .prototype-lab-readout { right: 39%; }
  .portfolio-tile h3 { font-size: 1.9rem; }
}

@media (max-width: 780px) {
  .kinetic-showcase,
  .portfolio-index,
  .prototype-index {
    width: calc(100% - 32px);
  }
  .kinetic-showcase { padding-top: 84px; margin-top: 32px; margin-bottom: 32px; }
  .showcase-heading,
  .portfolio-index-header,
  .prototype-index-header {
    grid-template-columns: 1fr;
    gap: 22px;
    padding-right: 6px;
    padding-left: 6px;
  }
  .showcase-heading h2,
  .portfolio-index-header h2,
  .prototype-index-header h2 { font-size: 3.15rem; }
  .showcase-heading > p,
  .portfolio-index-header > p,
  .prototype-index-header > p { max-width: 620px; }
  .showcase-toolbar,
  .portfolio-filter-row {
    align-items: flex-start;
    margin: 42px 6px 20px;
  }
  .showcase-navigation > span { display: none; }
  .showcase-track {
    grid-auto-columns: minmax(280px, 72vw);
    padding-right: 6px;
    padding-left: 6px;
  }
  .showcase-viewport::before,
  .showcase-viewport::after { display: none; }
  .showcase-card { grid-template-rows: 250px auto; }
  .showcase-card figure { height: 250px; }
  .showcase-footer {
    align-items: flex-start;
    padding-right: 6px;
    padding-left: 6px;
  }
  .showcase-footer > div { flex-direction: column; gap: 10px; }
  .work-hero-reframed,
  .prototype-hero-reframed { min-height: 670px; }
  .work-hero-copy h1,
  .prototype-hero-copy h1 { font-size: 3.8rem; }
  .work-hero-wordmark { right: -13%; font-size: 6.2rem; }
  .work-orbit-card-a { top: 9%; right: 2%; width: 210px; opacity: 0.72; }
  .work-orbit-card-b { top: 42%; right: -8%; width: 230px; opacity: 0.62; }
  .work-orbit-card-c { display: none; }
  .work-hero-caption { display: none; }
  .portfolio-index,
  .prototype-index { padding-top: 88px; padding-bottom: 100px; }
  .portfolio-grid,
  .prototype-index-grid { gap: 42px 12px; }
  .portfolio-tile,
  .portfolio-tile-major,
  .portfolio-tile-major + .portfolio-tile,
  .portfolio-tile-wide,
  .portfolio-tile-wide:nth-child(even),
  .prototype-index-card,
  .prototype-index-card-wide,
  .prototype-index-card-wide:nth-child(even) { grid-column: 1 / -1; }
  .portfolio-tile > div { grid-template-columns: 1fr; }
  .portfolio-tile small { max-width: 500px; text-align: left; }
  .prototype-screen-a { top: 11%; right: -6%; width: 290px; opacity: 0.72; }
  .prototype-screen-b { right: 25%; bottom: -1%; width: 220px; opacity: 0.58; }
  .prototype-screen-c { display: none; }
  .prototype-lab-readout { top: 33%; right: 5%; opacity: 0.76; }
  .prototype-hero-cue { display: none; }
}

@media (max-width: 520px) {
  .kinetic-showcase,
  .portfolio-index,
  .prototype-index { width: calc(100% - 24px); }
  .showcase-heading h2,
  .portfolio-index-header h2,
  .prototype-index-header h2 { font-size: 2.75rem; }
  .showcase-toolbar,
  .portfolio-filter-row { flex-direction: column; }
  .showcase-navigation { align-self: flex-end; }
  .showcase-track { grid-auto-columns: 84vw; }
  .showcase-footer { flex-direction: column; gap: 22px; }
  .work-hero-copy h1,
  .prototype-hero-copy h1 { font-size: 3.05rem; }
  .work-hero-copy,
  .prototype-hero-copy { bottom: 8%; }
  .work-orbit-card-a { right: -12%; width: 205px; }
  .work-orbit-card-b { right: -24%; opacity: 0.44; }
  .prototype-screen-a { right: -18%; }
  .prototype-screen-b { right: 11%; opacity: 0.46; }
  .portfolio-tile h3 { font-size: 1.75rem; }
  .prototype-index-card figure { height: 280px; }
  .prototype-index-card h3 { font-size: 2.05rem; }
  .prototype-index-card b { position: static; display: block; margin-top: 20px; }
}

/* Interior refresh: a shared editorial rhythm across every secondary page. */
.interior-page {
  --inner-gutter: clamp(24px, 5vw, 84px);
}

.interior-page main {
  overflow: clip;
}

.inner-signal-strip {
  position: relative;
  z-index: 5;
  display: grid;
  width: min(1180px, calc(100% - (var(--inner-gutter) * 2)));
  min-height: 92px;
  grid-template-columns: minmax(0, 1fr) 80px minmax(0, 1fr) 80px minmax(0, 1fr);
  align-items: center;
  gap: 20px;
  padding: 20px 30px;
  margin: -28px auto 72px;
  color: var(--ink);
  background: rgba(245, 246, 243, 0.92);
  border: 1px solid rgba(21, 21, 21, 0.12);
  border-radius: 6px;
  box-shadow: 0 20px 60px rgba(10, 11, 12, 0.09);
  backdrop-filter: blur(18px);
}

.inner-signal-strip span {
  display: flex;
  min-width: 0;
  align-items: baseline;
  gap: 12px;
  font-size: 0.78rem;
  font-weight: 650;
}

.inner-signal-strip small {
  color: var(--red);
  font-family: var(--mono);
  font-size: 0.52rem;
  font-weight: 500;
  text-transform: uppercase;
}

.inner-signal-strip i {
  position: relative;
  height: 1px;
  overflow: visible;
  background: rgba(21, 21, 21, 0.18);
}

.inner-signal-strip i::after {
  position: absolute;
  top: -2px;
  width: 5px;
  height: 5px;
  content: "";
  background: var(--red);
  border-radius: 50%;
  animation: inner-signal-run 3.6s ease-in-out infinite;
}

@keyframes inner-signal-run {
  0%, 100% { left: 0; opacity: 0.35; }
  50% { left: calc(100% - 5px); opacity: 1; }
}

/* Approach */
.approach-page .approach-manifesto,
.approach-page .approach-evidence,
.approach-page .capability-section,
.approach-page .approach-loop-section,
.alchemy-page .rune-story-section,
.alchemy-page .alchemy-method-section,
.alchemy-page .alchemy-contrast-section,
.alchemy-page .alchemy-output-section,
.brief-page .brief-machine,
.brief-page .contact-route {
  width: min(var(--content-max), calc(100% - (var(--inner-gutter) * 2)));
  margin-right: auto;
  margin-left: auto;
}

.approach-page .approach-manifesto {
  padding-top: 92px;
  border-top: 1px solid var(--line-light);
}

.approach-thought-engine {
  box-shadow: 0 24px 80px rgba(21, 21, 21, 0.09);
}

.approach-evidence,
.approach-loop-section {
  border-radius: 6px;
}

/* Alchemy */
.alchemy-hero {
  min-height: min(860px, 88vh);
  background:
    radial-gradient(circle at 72% 38%, rgba(241, 90, 74, 0.12), transparent 28%),
    radial-gradient(circle at 28% 20%, rgba(89, 166, 255, 0.1), transparent 26%),
    #0a0b0c;
}

.alchemy-hero::before {
  position: absolute;
  z-index: 0;
  inset: 0;
  content: "";
  background-image:
    linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, black, transparent 84%);
  animation: alchemy-grid-drift 16s linear infinite;
}

@keyframes alchemy-grid-drift {
  to { background-position: 0 64px, 64px 0; }
}

.alchemy-page-canvas {
  filter: saturate(1.2) drop-shadow(0 20px 80px rgba(241, 90, 74, 0.15));
}

.alchemy-hero-copy h1 {
  max-width: 860px;
}

.alchemy-signal-strip small {
  color: #6c58d9;
}

.alchemy-signal-strip i::after {
  background: #6c58d9;
}

.rune-story-section {
  align-items: stretch;
  gap: clamp(48px, 7vw, 120px);
  padding-top: 40px;
  padding-bottom: 120px;
}

.rune-story-visual {
  min-height: 660px;
  background:
    radial-gradient(circle at 50% 48%, rgba(255,255,255,0.24), transparent 28%),
    #ffd34d;
  border-radius: 6px;
  box-shadow: 0 28px 90px rgba(21, 21, 21, 0.08);
}

.rune-story-visual::after {
  position: absolute;
  inset: 22px;
  content: "";
  border: 1px solid rgba(21,21,21,0.13);
  border-radius: 3px;
  pointer-events: none;
}

.large-rune {
  top: 50%;
  left: 50%;
  width: min(62%, 300px);
  height: auto;
  aspect-ratio: 300 / 410;
  transform: translate(-50%, -50%);
  animation: rune-breathe 6s ease-in-out infinite;
}

.large-rune .rune-left,
.large-rune .rune-right,
.large-rune .rune-base,
.large-rune .rune-stem,
.large-rune .rune-bar-one,
.large-rune .rune-bar-two {
  background: #161718;
  box-shadow: none;
}

.large-rune .rune-left,
.large-rune .rune-right {
  top: 4%;
  right: auto;
  left: calc(50% - 1.7%);
  width: 3.4%;
  height: 57%;
  transform-origin: 50% 0;
}

.large-rune .rune-left { transform: rotate(37deg); }
.large-rune .rune-right { transform: rotate(-37deg); }
.large-rune .rune-base { left: 3%; width: 94%; }

.rune-story-copy {
  align-self: center;
}

.rune-story-copy blockquote {
  border-color: var(--red);
}

.reaction-card {
  min-height: 340px;
  border-radius: 6px;
}

.reaction-card:nth-child(2),
.reaction-card:nth-child(5) {
  transform: translateY(36px);
}

.reaction-card i {
  background: linear-gradient(90deg, var(--red), var(--yellow), var(--blue));
}

.alchemy-contrast-section {
  padding-top: 130px;
  padding-bottom: 130px;
}

.alchemy-output-section {
  min-height: 720px;
  border-radius: 6px;
}

/* Briefing */
.brief-hero {
  min-height: min(860px, 90vh);
  background:
    linear-gradient(110deg, rgba(8, 9, 10, 0.98) 0 43%, rgba(16, 19, 22, 0.94) 43% 100%),
    #0a0b0c;
}

.brief-hero::after {
  position: absolute;
  z-index: 0;
  inset: 0;
  content: "";
  background:
    radial-gradient(circle at 74% 42%, rgba(255, 211, 77, 0.12), transparent 26%),
    radial-gradient(circle at 58% 72%, rgba(241, 90, 74, 0.11), transparent 22%);
  pointer-events: none;
}

.brief-hero-copy {
  z-index: 3;
  max-width: 760px;
}

.brief-hero-copy h1 span {
  color: #ffd34d;
  font-style: italic;
}

.brief-hero-art {
  z-index: 2;
  overflow: visible;
}

.brief-input-card,
.brief-output-card {
  border-color: rgba(255,255,255,0.24);
  box-shadow: 0 22px 70px rgba(0,0,0,0.28);
}

.brief-input-card {
  transform: rotate(-3deg);
}

.brief-output-card {
  transform: rotate(3deg);
}

.brief-rune-stage {
  filter: drop-shadow(0 0 42px rgba(255, 211, 77, 0.18));
}

.brief-rune .rune-triangle {
  border: 0;
  background: currentColor;
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
}

.brief-rune .rune-triangle::after {
  position: absolute;
  inset: 13px 14px 12px;
  content: "";
  background: #171b1f;
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
}

.brief-message {
  border-color: rgba(255, 211, 77, 0.35);
}

.brief-signal-strip small {
  color: var(--red);
}

.brief-machine {
  grid-template-columns: minmax(280px, 0.34fr) minmax(0, 1fr);
  gap: 36px;
  padding-top: 28px;
}

.brief-status,
.brief-form {
  border-radius: 6px;
}

.brief-form {
  box-shadow: 0 28px 80px rgba(21,21,21,0.06);
}

.brief-type-deck button {
  transition: color 220ms ease, background 220ms ease, transform 220ms ease;
}

.brief-type-deck button:hover {
  transform: translateY(-2px);
}

/* Insights: unique, contained editorial cover compositions. */
.blog-page .blog-hero {
  min-height: min(740px, 78vh);
  background:
    radial-gradient(circle at 74% 36%, rgba(255, 211, 77, 0.14), transparent 25%),
    radial-gradient(circle at 56% 76%, rgba(241, 90, 74, 0.13), transparent 22%),
    #0a0b0c;
}

.blog-signal-art {
  opacity: 0.9;
  transform: scale(1.08);
}

.blog-editorial-strip {
  margin-bottom: 50px;
}

.blog-featured-wrap,
.blog-index,
.blog-article {
  width: min(var(--content-max), calc(100% - (var(--inner-gutter) * 2)));
  margin-right: auto;
  margin-left: auto;
}

.blog-featured-wrap {
  padding-right: 0;
  padding-left: 0;
}

.blog-feature-card {
  border-radius: 6px;
}

.blog-feature-card .blog-card-link {
  grid-template-columns: minmax(0, 1.14fr) minmax(390px, 0.86fr);
}

.blog-feature-card .blog-card-art {
  min-height: 520px;
}

.blog-grid-index {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 22px;
  align-items: stretch;
}

.blog-grid-index .blog-card {
  grid-column: span 4;
  border-radius: 6px;
}

.blog-grid-index .blog-card:nth-child(1),
.blog-grid-index .blog-card:nth-child(5),
.blog-grid-index .blog-card:nth-child(9) {
  grid-column: span 7;
}

.blog-grid-index .blog-card:nth-child(2),
.blog-grid-index .blog-card:nth-child(4),
.blog-grid-index .blog-card:nth-child(8) {
  grid-column: span 5;
}

.blog-card-art {
  min-height: 250px;
  aspect-ratio: 16 / 9;
  background: #151719;
}

.blog-card-image {
  inset: 0;
  width: 100%;
  height: 100%;
  border-radius: 0;
  filter: saturate(0.95) contrast(1.04);
  opacity: 0.82;
  transform: scale(1.015);
}

.blog-card:hover .blog-card-image,
.blog-feature-card:hover .blog-card-image {
  filter: saturate(1.12) contrast(1.06);
  opacity: 0.94;
  transform: scale(1.055);
}

.blog-card-art::before {
  position: absolute;
  z-index: 1;
  inset: 0;
  content: "";
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--art-a) 28%, transparent), transparent 48%),
    linear-gradient(0deg, rgba(8,9,10,0.68), transparent 58%);
  mix-blend-mode: screen;
  pointer-events: none;
}

.blog-card-art::after {
  inset: 12px;
  background: linear-gradient(0deg, rgba(10,11,12,0.74), transparent 48%);
  border-color: rgba(255,255,255,0.28);
  border-radius: 3px;
}

.blog-art-motion {
  inset: 12px;
  border-radius: 3px;
  mix-blend-mode: screen;
}

.blog-art-title,
.blog-card-art > span {
  z-index: 5;
}

.blog-art-words {
  position: absolute;
  z-index: 4;
  right: 20px;
  bottom: 19px;
  display: flex;
  max-width: 72%;
  flex-direction: column;
  align-items: flex-end;
  color: var(--white);
  text-align: right;
  text-transform: uppercase;
  pointer-events: none;
}

.blog-art-words b {
  max-width: 100%;
  overflow: hidden;
  font-family: var(--display);
  font-size: clamp(1.3rem, 3.4vw, 3rem);
  font-weight: 720;
  line-height: 0.82;
  text-overflow: clip;
  text-shadow: 0 4px 20px rgba(0,0,0,0.45);
  white-space: nowrap;
}

.blog-art-words b:nth-child(2) {
  color: var(--art-a);
  transform: translateX(-12px);
}

.blog-art-words b:nth-child(3) {
  color: var(--art-b);
  transform: translateX(-4px);
}

.blog-card-art > span {
  right: auto;
  bottom: 20px;
  left: 20px;
}

.blog-art-title {
  top: 22px;
  right: 22px;
  left: auto;
  padding: 6px 8px;
  color: #101112;
  background: var(--art-b);
  border-radius: 2px;
}

.blog-art-title::before {
  display: none;
}

.visual-ai-news-prism .blog-card-image,
.visual-ai-alchemy-field .blog-card-image {
  filter: saturate(1.2) hue-rotate(calc(var(--art-seed) * 4deg));
}

.visual-search-signal-map .blog-card-image {
  clip-path: polygon(0 0, 78% 0, 100% 28%, 100% 100%, 0 100%);
}

.visual-strategy-board .blog-card-image,
.visual-brand-memory-vault .blog-card-image {
  transform: scale(1.08) rotate(-1deg);
}

.visual-creative-workflow .blog-card-image {
  filter: saturate(0.78) sepia(0.1) contrast(1.14);
}

.visual-trend-heatline .blog-card-image {
  filter: saturate(1.3) hue-rotate(-8deg) contrast(1.05);
}

.blog-grid-index .blog-card:nth-child(3n + 2) .blog-art-words {
  right: auto;
  left: 22px;
  align-items: flex-start;
  text-align: left;
}

.blog-grid-index .blog-card:nth-child(3n + 2) .blog-card-art > span {
  right: 20px;
  left: auto;
}

.blog-grid-index .blog-card:nth-child(even) .blog-art-motion {
  transform: scaleX(-1);
}

.blog-card-copy {
  padding: 24px 24px 28px;
}

.blog-card-copy h3 {
  font-size: clamp(1.35rem, 2vw, 2.15rem);
}

.blog-feature-card .blog-card-copy h3 {
  font-size: clamp(2.1rem, 3.2vw, 3.05rem);
}

.article-art {
  min-height: 500px;
  margin-top: 42px;
  border-radius: 6px;
}

/* Legal */
.legal-shell {
  padding: 0;
}

.legal-hero {
  position: relative;
  display: grid;
  width: min(var(--content-max), calc(100% - (var(--inner-gutter) * 2)));
  min-height: 680px;
  grid-template-columns: minmax(0, 0.75fr) minmax(430px, 1fr);
  align-items: end;
  gap: 70px;
  padding: 86px 70px 72px;
  margin: 118px auto 42px;
  color: var(--white);
  background: #111315;
  border-radius: 6px;
  overflow: hidden;
}

.legal-hero::before {
  position: absolute;
  inset: 0;
  content: "";
  background-image:
    linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 46px 46px;
}

.legal-hero-copy {
  position: relative;
  z-index: 2;
}

.legal-hero-copy h1 {
  margin: 17px 0 22px;
  font-size: clamp(4rem, 7vw, 7rem);
  font-weight: 540;
  line-height: 0.86;
}

.legal-hero-copy h1 span {
  color: var(--yellow);
}

.legal-hero-copy > p:last-child {
  max-width: 560px;
  color: rgba(255,255,255,0.58);
}

.legal-hero > small {
  position: absolute;
  right: 28px;
  bottom: 24px;
  z-index: 3;
  color: rgba(255,255,255,0.48);
  font-family: var(--mono);
  font-size: 0.52rem;
  text-transform: uppercase;
}

.legal-hero-art {
  position: relative;
  z-index: 2;
  display: grid;
  min-height: 420px;
  grid-template-columns: 1fr 64px 1fr;
  grid-template-rows: repeat(3, 1fr);
  align-items: center;
  padding: 40px;
  background: rgba(255,255,255,0.035);
  border: 1px solid rgba(255,255,255,0.13);
  border-radius: 5px;
  transform: rotate(2deg);
}

.legal-hero-art span {
  padding: 12px;
  font-family: var(--mono);
  font-size: 0.56rem;
  text-transform: uppercase;
  background: rgba(8,9,10,0.74);
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 3px;
}

.legal-hero-art i {
  height: 1px;
  background: var(--yellow);
  animation: legal-line 3s ease-in-out infinite;
}

.legal-hero-art b {
  position: absolute;
  width: 9px;
  height: 9px;
  background: var(--red);
  border-radius: 50%;
  box-shadow: 0 0 0 10px rgba(241,90,74,0.08);
  animation: blog-node 3s ease-in-out infinite;
}

.legal-hero-art b:nth-of-type(1) { top: 18%; right: 19%; }
.legal-hero-art b:nth-of-type(2) { top: 52%; left: 18%; animation-delay: -1s; }
.legal-hero-art b:nth-of-type(3) { right: 32%; bottom: 15%; animation-delay: -2s; }
.legal-terms-art i { background: #59a6ff; }
.legal-terms-art b { background: var(--yellow); }

@keyframes legal-line {
  50% { transform: scaleX(0.55); opacity: 0.45; }
}

.legal-layout {
  display: grid;
  width: min(1120px, calc(100% - (var(--inner-gutter) * 2)));
  grid-template-columns: 240px minmax(0, 1fr);
  align-items: start;
  gap: clamp(48px, 8vw, 120px);
  padding: 90px 0 130px;
  margin: 0 auto;
}

.legal-index {
  position: sticky;
  top: 120px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.legal-index .kicker {
  margin-bottom: 12px;
}

.legal-index a {
  color: var(--muted);
  font-family: var(--mono);
  font-size: 0.58rem;
  text-transform: uppercase;
  transition: color 180ms ease, transform 180ms ease;
}

.legal-index a:hover {
  color: var(--red);
  transform: translateX(4px);
}

.legal-frame {
  display: block;
  padding: 0;
  background: transparent;
  border: 0;
}

.legal-frame article {
  display: grid;
  min-height: 0;
  grid-template-columns: minmax(180px, 0.38fr) minmax(0, 1fr);
  gap: 52px;
  padding: 42px 0 58px;
  background: transparent;
  border-right: 0;
  border-bottom: 0;
  border-top: 1px solid var(--line-light);
  scroll-margin-top: 120px;
}

.legal-frame article:last-child {
  border-bottom: 1px solid var(--line-light);
}

.legal-frame h2 {
  font-size: 1.65rem;
  line-height: 1;
}

.legal-frame p {
  max-width: 700px;
  color: var(--muted);
}

@media (max-width: 1100px) {
  .inner-signal-strip {
    grid-template-columns: minmax(0, 1fr) 44px minmax(0, 1fr) 44px minmax(0, 1fr);
  }
  .reaction-card:nth-child(2),
  .reaction-card:nth-child(5) { transform: none; }
  .blog-grid-index .blog-card { grid-column: span 6; }
  .blog-grid-index .blog-card:nth-child(1),
  .blog-grid-index .blog-card:nth-child(2),
  .blog-grid-index .blog-card:nth-child(4),
  .blog-grid-index .blog-card:nth-child(5),
  .blog-grid-index .blog-card:nth-child(8),
  .blog-grid-index .blog-card:nth-child(9) { grid-column: span 6; }
  .legal-hero { grid-template-columns: minmax(0, 0.8fr) minmax(350px, 1fr); padding-right: 50px; padding-left: 50px; }
}

@media (max-width: 780px) {
  .interior-page { --inner-gutter: 16px; }
  .inner-signal-strip {
    width: calc(100% - 32px);
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 0;
    padding: 0;
    margin-top: -18px;
    margin-bottom: 44px;
    overflow: hidden;
  }
  .inner-signal-strip span {
    justify-content: space-between;
    padding: 15px 18px;
    border-bottom: 1px solid var(--line-light);
  }
  .inner-signal-strip span:last-child { border: 0; }
  .inner-signal-strip i { display: none; }
  .approach-page .approach-manifesto,
  .approach-page .approach-evidence,
  .approach-page .capability-section,
  .approach-page .approach-loop-section,
  .alchemy-page .rune-story-section,
  .alchemy-page .alchemy-method-section,
  .alchemy-page .alchemy-contrast-section,
  .alchemy-page .alchemy-output-section,
  .brief-page .brief-machine,
  .brief-page .contact-route {
    width: calc(100% - 32px);
  }
  .rune-story-visual { min-height: 520px; }
  .brief-machine { grid-template-columns: 1fr; }
  .blog-featured-wrap,
  .blog-index,
  .blog-article { width: calc(100% - 32px); }
  .blog-feature-card .blog-card-link { grid-template-columns: 1fr; }
  .blog-feature-card .blog-card-art { min-height: 340px; }
  .blog-grid-index .blog-card,
  .blog-grid-index .blog-card:nth-child(1),
  .blog-grid-index .blog-card:nth-child(2),
  .blog-grid-index .blog-card:nth-child(4),
  .blog-grid-index .blog-card:nth-child(5),
  .blog-grid-index .blog-card:nth-child(8),
  .blog-grid-index .blog-card:nth-child(9) { grid-column: 1 / -1; }
  .blog-art-words b { font-size: clamp(1.5rem, 9vw, 2.8rem); }
  .legal-hero {
    width: calc(100% - 32px);
    min-height: 760px;
    grid-template-columns: 1fr;
    align-content: end;
    gap: 36px;
    padding: 54px 26px 64px;
    margin-top: 92px;
  }
  .legal-hero-copy h1 { font-size: clamp(3.6rem, 15vw, 5.2rem); }
  .legal-hero-art { min-height: 280px; padding: 24px; }
  .legal-layout {
    width: calc(100% - 32px);
    grid-template-columns: 1fr;
    gap: 50px;
    padding-top: 54px;
  }
  .legal-index { position: static; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .legal-index .kicker { grid-column: 1 / -1; }
  .legal-frame article { grid-template-columns: 1fr; gap: 20px; }
}

@media (max-width: 520px) {
  .alchemy-hero,
  .brief-hero,
  .blog-page .blog-hero { min-height: 720px; }
  .rune-story-visual { min-height: 430px; }
  .blog-card-art { min-height: 220px; }
  .blog-card-copy { padding: 21px; }
  .article-art { min-height: 300px; }
  .legal-hero-art { grid-template-columns: 1fr 34px 1fr; }
  .legal-hero-art span { font-size: 0.47rem; }
}

@media (prefers-reduced-motion: reduce) {
  .inner-signal-strip i::after,
  .alchemy-hero::before,
  .large-rune,
  .legal-hero-art i,
  .legal-hero-art b {
    animation: none;
  }
}

/* Conference readiness pass: clearer journeys, lighter motion and an app-like mobile dock. */
.hero-action-note {
  display: block;
  margin-top: 15px;
  color: rgba(255, 255, 255, 0.52);
  font-family: var(--mono);
  font-size: 0.56rem;
  text-transform: uppercase;
}

.interior-hero-copy > p:not(.kicker),
.alchemy-hero-copy > p:not(.kicker) {
  max-width: 600px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 1rem;
}

.interior-hero-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 25px;
}

.interior-hero-actions small {
  max-width: 235px;
  color: rgba(255, 255, 255, 0.48);
  font-family: var(--mono);
  font-size: 0.54rem;
  line-height: 1.45;
  text-transform: uppercase;
}

.interior-ambient {
  --ambient-x: 0px;
  --ambient-y: 0px;
  position: absolute;
  z-index: 1;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  transform: translate3d(var(--ambient-x), var(--ambient-y), 0);
  transition: transform 900ms cubic-bezier(0.2, 0.7, 0, 1);
}

.interior-ambient span,
.interior-ambient i {
  position: absolute;
  display: block;
  opacity: 0.34;
}

.interior-ambient span {
  width: 7px;
  height: 7px;
  background: var(--white);
  animation: interior-particle-float 6s ease-in-out infinite alternate;
}

.interior-ambient span:nth-child(1) { top: 14%; left: 8%; }
.interior-ambient span:nth-child(2) { top: 27%; right: 9%; width: 11px; height: 11px; background: var(--yellow); animation-delay: -2s; }
.interior-ambient span:nth-child(3) { right: 36%; bottom: 12%; width: 18px; height: 4px; background: var(--red); animation-delay: -4s; }
.interior-ambient i { width: 96px; height: 1px; background: rgba(255, 255, 255, 0.36); transform-origin: left; animation: interior-route-pulse 5s ease-in-out infinite; }
.interior-ambient i:nth-of-type(1) { top: 19%; left: 16%; transform: rotate(18deg); }
.interior-ambient i:nth-of-type(2) { top: 42%; right: 18%; width: 138px; transform: rotate(-24deg); animation-delay: -1.7s; }
.interior-ambient i:nth-of-type(3) { right: 42%; bottom: 18%; width: 74px; transform: rotate(6deg); animation-delay: -3.2s; }

@keyframes interior-particle-float {
  to { translate: 12px -18px; rotate: 90deg; opacity: 0.72; }
}

@keyframes interior-route-pulse {
  0%, 100% { scale: 0.22 1; opacity: 0.15; }
  50% { scale: 1 1; opacity: 0.58; }
}

.card-destination {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 18px;
  margin-top: 20px;
  color: var(--ink);
  font-family: var(--mono);
  font-size: 0.54rem;
  font-weight: 500;
  text-transform: uppercase;
  border-top: 1px solid var(--line-light);
}

.card-destination i {
  color: var(--red);
  font-style: normal;
}

.portfolio-tile-action {
  display: inline-flex;
  grid-column: 1 / -1;
  align-items: center;
  gap: 10px;
  justify-self: start;
  padding: 10px 12px;
  margin-top: 10px;
  color: var(--white);
  font-family: var(--mono);
  font-size: 0.56rem;
  text-transform: uppercase;
  background: var(--ink);
  border-radius: 4px;
  transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

.portfolio-tile-action:hover {
  color: var(--white);
  background: var(--red);
  transform: translateY(-2px);
}

.prototype-lab-ticker {
  position: absolute;
  top: 28px;
  left: 30px;
  display: flex;
  align-items: center;
  gap: 13px;
  color: rgba(255, 255, 255, 0.46);
  font-family: var(--mono);
  font-size: 0.5rem;
  text-transform: uppercase;
  animation: prototype-ticker-breathe 4s ease-in-out infinite;
}

.prototype-lab-ticker i {
  width: 3px;
  height: 3px;
  background: var(--yellow);
  border-radius: 50%;
}

@keyframes prototype-ticker-breathe {
  50% { color: rgba(255, 255, 255, 0.82); transform: translateX(10px); }
}

.prototype-index {
  position: relative;
  isolation: isolate;
}

.prototype-index::before,
.prototype-index::after {
  position: absolute;
  z-index: -1;
  content: "";
  pointer-events: none;
}

.prototype-index::before {
  top: 96px;
  right: -12%;
  width: 42%;
  height: 42%;
  background-image: linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: linear-gradient(135deg, black, transparent 78%);
  animation: prototype-index-grid 14s linear infinite;
}

.prototype-index::after {
  top: 40%;
  left: -8%;
  width: 38%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--red), transparent);
  animation: prototype-index-signal 7s ease-in-out infinite;
}

@keyframes prototype-index-grid {
  to { background-position: 64px 32px, 32px 64px; }
}

@keyframes prototype-index-signal {
  0%, 100% { transform: translateX(-30%) scaleX(0.4); opacity: 0.2; }
  50% { transform: translateX(85%) scaleX(1); opacity: 0.85; }
}

.prototype-index-card:nth-child(1),
.prototype-index-card:nth-child(4) { grid-column: span 7; }
.prototype-index-card:nth-child(2),
.prototype-index-card:nth-child(3) { grid-column: span 5; }
.prototype-index-card:nth-child(5),
.prototype-index-card:nth-child(6) { grid-column: span 6; }

.prototype-index-card figure::before,
.prototype-index-card figure::after {
  position: absolute;
  z-index: 2;
  content: "";
  pointer-events: none;
}

.prototype-index-card figure::before {
  right: 0;
  left: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.85), var(--yellow), transparent);
  box-shadow: 0 0 18px rgba(255, 211, 77, 0.36);
  animation: prototype-card-scan 5.4s linear infinite;
}

.prototype-index-card:nth-child(even) figure::before { animation-delay: -2.6s; }

.prototype-index-card figure::after {
  inset: 0;
  background-image: linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 22px 22px;
  opacity: 0.45;
  mix-blend-mode: screen;
}

@keyframes prototype-card-scan {
  from { top: 4%; opacity: 0; }
  12%, 86% { opacity: 0.65; }
  to { top: 96%; opacity: 0; }
}

.prototype-index-card figure img {
  animation: prototype-media-drift 12s ease-in-out infinite alternate;
}

.prototype-index-card:nth-child(even) figure img { animation-direction: alternate-reverse; }

@keyframes prototype-media-drift {
  from { object-position: 47% 52%; }
  to { object-position: 53% 47%; }
}

.prototype-index-card:hover figure img {
  animation-play-state: paused;
}

.prototype-build-callout {
  position: relative;
  display: grid;
  min-height: 430px;
  grid-template-columns: minmax(300px, 0.82fr) minmax(0, 1.18fr);
  align-items: center;
  gap: clamp(44px, 8vw, 120px);
  padding: clamp(36px, 6vw, 78px);
  margin-top: 92px;
  background: #17191d;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 8px;
  overflow: hidden;
}

.prototype-build-callout > div:last-child { position: relative; z-index: 2; }
.prototype-build-callout > div:last-child > span { color: var(--yellow); font-family: var(--mono); font-size: 0.56rem; text-transform: uppercase; }
.prototype-build-callout h2 { max-width: 650px; margin: 16px 0 18px; font-size: clamp(2.8rem, 5vw, 5rem); line-height: 0.92; }
.prototype-build-callout p { max-width: 590px; margin-bottom: 28px; color: rgba(255,255,255,0.58); }

.prototype-build-signal {
  position: relative;
  min-height: 280px;
  background-image: linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 28px 28px;
  border: 1px solid rgba(255,255,255,0.14);
  overflow: hidden;
  transform: rotate(-3deg);
}

.prototype-build-signal span { position: absolute; top: 50%; left: 50%; width: 54%; aspect-ratio: 1; border: 2px solid var(--yellow); transform: translate(-50%, -50%) rotate(45deg); animation: prototype-signal-orbit 9s linear infinite; }
.prototype-build-signal i { position: absolute; top: 50%; left: 12%; width: 76%; height: 1px; background: var(--red); animation: prototype-signal-line 3s ease-in-out infinite; }
.prototype-build-signal i:nth-of-type(2) { transform: rotate(90deg); animation-delay: -1.5s; }
.prototype-build-signal b { position: absolute; top: calc(50% - 8px); left: calc(50% - 8px); width: 16px; height: 16px; background: var(--white); box-shadow: 0 0 0 20px rgba(255,255,255,0.05); animation: live-pulse 2s ease-in-out infinite; }

@keyframes prototype-signal-orbit { to { transform: translate(-50%, -50%) rotate(405deg); } }
@keyframes prototype-signal-line { 50% { transform: scaleX(0.35); opacity: 0.4; } }

.form-trap {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.brief-fields label > span small {
  color: var(--muted);
  font-size: 0.52rem;
  font-weight: 500;
  text-transform: uppercase;
}

.blog-read-cue {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 17px;
  margin-top: 20px;
  color: var(--ink);
  font-family: var(--mono);
  font-size: 0.54rem;
  text-transform: uppercase;
  border-top: 1px solid var(--line-light);
}

.blog-read-cue i { color: var(--red); font-style: normal; }

@media (max-width: 900px) {
  body { padding-bottom: calc(88px + env(safe-area-inset-bottom)); }
  .mobile-bottom-nav {
    right: 8px;
    bottom: max(8px, env(safe-area-inset-bottom));
    left: 8px;
    height: 72px;
    color: var(--white);
    background: rgba(15, 16, 18, 0.94);
    border: 1px solid rgba(255,255,255,0.16);
    border-radius: 15px;
    box-shadow: 0 16px 44px rgba(0,0,0,0.28);
    backdrop-filter: blur(22px) saturate(135%);
    overflow: hidden;
  }
  .mobile-bottom-nav__scroller {
    gap: 2px;
    padding: 5px;
  }
  .mobile-bottom-nav a {
    display: flex;
    min-width: 0;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;
    padding: 4px 1px;
    color: rgba(255,255,255,0.58);
    font-size: 0.49rem;
    line-height: 1;
    border-radius: 10px;
    transition: color 180ms ease, background 180ms ease, transform 180ms ease;
  }
  .mobile-bottom-nav a .mobile-nav-icon {
    position: static;
    inset: auto;
    display: grid;
    width: 26px;
    height: 26px;
    place-items: center;
    color: currentColor;
    font-family: var(--mono);
    font-size: 1rem;
    line-height: 1;
    background: transparent;
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 8px;
  }
  .mobile-bottom-nav a.active {
    color: var(--ink);
    background: var(--white);
  }
  .mobile-bottom-nav a.active .mobile-nav-icon {
    color: var(--red);
    background: rgba(241,90,74,0.08);
    border-color: rgba(241,90,74,0.24);
  }
  .mobile-bottom-nav a:last-child {
    color: var(--white);
    background: var(--red);
  }
  .mobile-bottom-nav a:last-child .mobile-nav-icon { border-color: rgba(255,255,255,0.32); }
  .mobile-bottom-nav a:last-child.active { color: var(--white); background: var(--red); box-shadow: inset 0 0 0 2px var(--white); }
  .mobile-bottom-nav strong {
    max-width: 100%;
    overflow: hidden;
    font-weight: 650;
    text-overflow: clip;
    white-space: nowrap;
  }
  .interior-ambient { opacity: 0.58; }
  .interior-hero-actions { align-items: flex-start; flex-direction: column; gap: 10px; }
  .interior-hero-actions small { max-width: 290px; }
  .prototype-index-card:nth-child(1),
  .prototype-index-card:nth-child(2),
  .prototype-index-card:nth-child(3),
  .prototype-index-card:nth-child(4),
  .prototype-index-card:nth-child(5),
  .prototype-index-card:nth-child(6) { grid-column: 1 / -1; }
  .prototype-build-callout { grid-template-columns: 1fr; }
  .prototype-build-signal { min-height: 220px; }
}

@media (max-width: 620px) {
  .home-hero-copy { top: 36px; }
  .home-hero-copy h1 { font-size: clamp(3rem, 14vw, 3.65rem); }
  .hero-action-note { margin-top: 12px; font-size: 0.5rem; }
  .interior-hero-copy,
  .alchemy-hero-copy { bottom: 7%; }
  .interior-hero-copy h1,
  .alchemy-hero-copy h1 { font-size: clamp(2.65rem, 13vw, 3.2rem); }
  .interior-hero-copy > p:not(.kicker),
  .alchemy-hero-copy > p:not(.kicker) { font-size: 0.9rem; }
  .interior-hero-actions { margin-top: 19px; }
  .interior-hero-actions .button { min-height: 46px; }
  .prototype-lab-ticker { top: 18px; left: 18px; gap: 8px; }
  .prototype-lab-ticker span:nth-of-type(4),
  .prototype-lab-ticker span:nth-of-type(5),
  .prototype-lab-ticker i:nth-of-type(4) { display: none; }
  .prototype-lab-readout { top: 23%; right: 5%; }
  .prototype-build-callout { min-height: 0; padding: 24px; margin-top: 58px; }
  .prototype-build-callout h2 { font-size: 2.75rem; }
  .portfolio-tile > div { grid-template-columns: 1fr; }
  .portfolio-tile small { max-width: none; text-align: left; }
  .card-destination { margin-top: 16px; }
}

@media (max-width: 380px) {
  .mobile-bottom-nav { right: 4px; left: 4px; }
  .mobile-bottom-nav a { font-size: 0.45rem; }
  .mobile-bottom-nav a .mobile-nav-icon { width: 24px; height: 24px; }
}

@media (prefers-reduced-motion: reduce) {
  .interior-ambient,
  .prototype-lab-ticker,
  .prototype-index::before,
  .prototype-index::after,
  .prototype-index-card figure::before,
  .prototype-index-card figure img,
  .prototype-build-signal span,
  .prototype-build-signal i,
  .prototype-build-signal b {
    animation: none !important;
  }
  .prototype-build-signal span { transform: translate(-50%, -50%) rotate(45deg); }
}
