@font-face {
  font-family: "Archivo Expanded";
  src: url("../fonts/archivo-expanded.woff2") format("woff2");
  font-style: normal;
  font-weight: 100 900;
  font-stretch: 75% 125%;
  font-display: swap;
}

@font-face {
  font-family: "Montserrat";
  src: url("../fonts/montserrat-300.woff2") format("woff2");
  font-style: normal;
  font-weight: 300;
  font-display: swap;
}

@font-face {
  font-family: "Montserrat";
  src: url("../fonts/montserrat-400.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Montserrat";
  src: url("../fonts/montserrat-700.woff2") format("woff2");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

@font-face {
  font-family: "JetBrains Mono";
  src: url("../fonts/jetbrains-mono.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

:root {
  --black: #070707;
  --black-soft: #0d0d0d;
  --panel: #121212;
  --paper: #f4f4ef;
  --muted: #a0a09a;
  --muted-dark: #6d6d68;
  --cyan: #00c0dc;
  --cyan-soft: rgba(0, 192, 220, 0.15);
  --magenta: #ff0080;
  --fuchsia: #ff0080;
  --violet: #7800bf;
  --line: rgba(244, 244, 239, 0.13);
  --line-strong: rgba(244, 244, 239, 0.28);
  --page: min(94vw, 1500px);
  --header-h: 78px;
  --display: "Archivo Expanded", "Arial Black", sans-serif;
  --body: "Montserrat", Arial, sans-serif;
  --mono: "Montserrat", Arial, sans-serif;
}

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

html {
  background: var(--black);
  color-scheme: dark;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 16px);
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 78% 8%, rgba(0, 192, 220, 0.055), transparent 25rem),
    var(--black);
  color: var(--paper);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 1000;
  pointer-events: none;
  opacity: 0.055;
  background-image: url("../images/grain.png");
  background-repeat: repeat;
}

body.menu-open { overflow: hidden; }

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { color: inherit; }

:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 5px;
}

::selection { background: var(--cyan); color: var(--black); }

/* Mira de selección: acompaña al cursor nativo y solo aparece en punteros precisos. */
.cursor-detail { display: none; }

@media (pointer: fine) and (prefers-reduced-motion: no-preference) {
  .cursor-detail {
    --cursor-x: -40px;
    --cursor-y: -40px;
    --cursor-scale: 1;
    position: fixed;
    z-index: 1600;
    left: 0;
    top: 0;
    display: block;
    width: 22px;
    height: 22px;
    pointer-events: none;
    opacity: 0;
    color: var(--cyan);
    transform: translate3d(var(--cursor-x), var(--cursor-y), 0) scale(var(--cursor-scale));
    transition: opacity 140ms ease, color 160ms ease, transform 100ms ease-out;
    will-change: transform;
  }
  .cursor-detail::before,
  .cursor-detail::after {
    content: "";
    position: absolute;
    inset: 0;
  }
  .cursor-detail::before { border-top: 1px solid currentColor; border-left: 1px solid currentColor; }
  .cursor-detail::after { border-right: 1px solid currentColor; border-bottom: 1px solid currentColor; }
  .cursor-detail span {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: var(--fuchsia);
    transform: translate(-50%, -50%);
    box-shadow: 0 0 8px rgba(255, 0, 128, .8);
  }
  .cursor-detail.is-visible { opacity: .82; }
  .cursor-detail.is-interactive {
    --cursor-scale: 1.34;
    color: var(--fuchsia);
  }
  .cursor-detail.is-interactive span { background: var(--cyan); box-shadow: 0 0 8px rgba(0, 192, 220, .8); }
}

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

.skip-link {
  position: fixed;
  z-index: 1200;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  transform: translateY(-150%);
  background: var(--cyan);
  color: var(--black);
  font: 700 12px/1 var(--mono);
  text-transform: uppercase;
}

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

.utility,
.section-label {
  font-family: var(--mono);
  font-size: 11px;
  line-height: 1.35;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.section {
  width: var(--page);
  margin: 0 auto;
  padding: clamp(94px, 11vw, 180px) 0;
  scroll-margin-top: calc(var(--header-h) + 12px);
}

.section-label {
  margin: 0 0 24px;
  color: var(--cyan);
}

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

h2 {
  margin-bottom: 32px;
  font-family: var(--display);
  font-stretch: expanded;
  font-size: clamp(3rem, 7vw, 8.2rem);
  font-weight: 850;
  line-height: 0.9;
  letter-spacing: -0.065em;
  text-transform: uppercase;
}

h2 em {
  color: var(--cyan);
  font-style: normal;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid var(--line-strong);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.button:hover { transform: translateY(-2px); }
.button-primary { border-color: var(--cyan); background: var(--cyan); color: var(--black); }
.button-primary:hover { background: var(--paper); border-color: var(--paper); }
.button-ghost:hover { border-color: var(--fuchsia); color: var(--fuchsia); }

.site-header {
  position: fixed;
  z-index: 100;
  inset: 0 0 auto 0;
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 3vw;
  border-bottom: 1px solid transparent;
  transition: background 220ms ease, border-color 220ms ease;
}

.site-header.is-scrolled {
  background: rgba(7, 7, 7, 0.88);
  border-color: var(--line);
  backdrop-filter: blur(14px);
}

.brand { width: 120px; height: 38px; display: flex; align-items: center; }
.brand img { width: 112px; height: auto; }

.desktop-nav { display: flex; align-items: center; gap: clamp(18px, 2.6vw, 42px); }
.desktop-nav a { font: 400 10px/1 var(--mono); letter-spacing: 0.08em; text-transform: uppercase; transition: color 180ms ease; }
.desktop-nav a:hover { color: var(--cyan); }
.desktop-nav .nav-cta { padding: 11px 15px; border: 1px solid var(--cyan); color: var(--cyan); }
.desktop-nav .nav-cta:hover { background: var(--cyan); color: var(--black); }

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line-strong);
  background: var(--black);
  cursor: pointer;
}

.menu-toggle > span:not(.sr-only) { display: block; width: 20px; height: 1px; margin: 5px auto; background: var(--paper); transition: transform 180ms ease; }
.menu-toggle[aria-expanded="true"] > span:nth-child(2) { transform: translateY(3px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] > span:nth-child(3) { transform: translateY(-3px) rotate(-45deg); }

.mobile-menu {
  position: fixed;
  z-index: 90;
  inset: 0;
  padding: calc(var(--header-h) + 50px) 6vw 40px;
  background: var(--black);
}

.mobile-menu[hidden] { display: none; }
.mobile-menu a { display: block; padding: 15px 0; border-bottom: 1px solid var(--line); font-family: var(--display); font-size: clamp(2.5rem, 12vw, 5rem); font-weight: 800; line-height: 0.95; text-transform: uppercase; }
.mobile-menu p { position: absolute; left: 6vw; bottom: 26px; color: var(--muted); font: 400 10px/1 var(--mono); letter-spacing: 0.1em; }

/* HERO */
.hero {
  --hero-top-x: 0px;
  --hero-bottom-x: 0px;
  --hero-title-y: 0px;
  --hero-grid-y: 0px;
  --hero-copy-y: 0px;
  --hero-copy-opacity: 1;
  --hero-meta-y: 0px;
  --hero-meta-opacity: 1;
  --hero-scroll-y: 0px;
  --hero-scroll-opacity: 1;
  --hero-glow-y: 0px;
  --hero-glow-scale: 1;
  --hero-glow-opacity: 1;
  --hero-criterion-scale: 1;
  position: relative;
  min-height: 100svh;
  padding: calc(var(--header-h) + 34px) 3vw 44px;
  display: block;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.hero-grid {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.75;
  background-image:
    linear-gradient(to right, transparent calc(100% - 1px), var(--line) 1px),
    linear-gradient(to bottom, transparent calc(100% - 1px), var(--line) 1px);
  background-size: calc(100% / 12) 100%, 100% 18vh;
  mask-image: linear-gradient(to bottom, black 0 75%, transparent 100%);
  transform: translate3d(0, var(--hero-grid-y), 0);
}

.hero::after {
  content: "";
  position: absolute;
  right: 7vw;
  top: 26%;
  width: 35vw;
  height: 35vw;
  border-radius: 50%;
  background: rgba(0, 192, 220, 0.08);
  filter: blur(80px);
  opacity: var(--hero-glow-opacity);
  transform: translate3d(0, var(--hero-glow-y), 0) scale(var(--hero-glow-scale));
  transform-origin: center;
  pointer-events: none;
}

.hero-meta {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  color: var(--muted);
  opacity: var(--hero-meta-opacity);
  transform: translate3d(0, var(--hero-meta-y), 0);
}

.hero-copy { position: relative; z-index: 2; align-self: start; }

.hero-title {
  margin: clamp(22px, 4vh, 50px) 0 0;
  font-family: var(--display);
  font-stretch: expanded;
  font-size: clamp(4rem, 12.5vw, 13.5rem);
  font-weight: 900;
  line-height: 0.73;
  letter-spacing: -0.085em;
  text-transform: uppercase;
}

.hero-title-line { display: block; will-change: transform; }
.hero-title-line:first-child { transform: translate3d(var(--hero-top-x), var(--hero-title-y), 0); }
.hero-title-line:last-child { margin-left: 10.5vw; color: transparent; transform: translate3d(var(--hero-bottom-x), var(--hero-title-y), 0); -webkit-text-stroke: 1px rgba(244, 244, 239, 0.72); }
.hero-title-word { display: block; }

.js .hero-title-word { animation: hero-title-in 900ms cubic-bezier(.16,.84,.24,1) both; }
.js .hero-title-line:last-child .hero-title-word { animation-delay: 120ms; }

@keyframes hero-title-in {
  from { opacity: 0; transform: translateY(34px); clip-path: inset(0 0 100%); }
  to { opacity: 1; transform: none; clip-path: inset(0); }
}

.hero-statement {
  width: min(560px, 43vw);
  margin: clamp(52px, 7vh, 100px) 0 0 3vw;
  opacity: var(--hero-copy-opacity);
  transform: translate3d(0, var(--hero-copy-y), 0);
}

.hero-statement p { margin-bottom: 28px; font-size: clamp(1.05rem, 1.42vw, 1.45rem); line-height: 1.55; font-weight: 300; }
.hero-statement strong { color: var(--cyan); font-weight: 700; }
.hero-criterion { position: relative; display: inline-block; color: var(--paper); font-family: var(--mono); font-size: .8em; letter-spacing: .06em; line-height: 1.15; text-transform: uppercase; }
.hero-criterion::after { content: ""; position: absolute; left: 0; right: 0; bottom: -4px; height: 2px; background: var(--cyan); box-shadow: 0 0 12px rgba(0,192,220,.65); transform: scaleX(var(--hero-criterion-scale)); transform-origin: left; }
.hero-actions { display: flex; gap: 10px; flex-wrap: wrap; }

.scroll-cue { position: absolute; z-index: 5; left: 3vw; bottom: 34px; color: var(--muted); opacity: var(--hero-scroll-opacity); transform: translate3d(0, var(--hero-scroll-y), 0); }
.scroll-cue span { display: inline-block; margin-left: 7px; color: var(--cyan); animation: nudge 1.4s ease-in-out infinite; }
@keyframes nudge { 50% { transform: translateY(5px); } }

/* SERVICES */
.section-head { display: grid; grid-template-columns: minmax(0, 1.8fr) minmax(260px, 0.7fr); column-gap: 7vw; align-items: end; }
.section-head .section-label { grid-column: 1 / -1; }
.section-head h2 { margin-bottom: 0; }
.section-head > p:last-child { color: var(--muted); max-width: 480px; margin-bottom: 8px; }

.service-grid { margin-top: 78px; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); border-top: 1px solid var(--line-strong); border-bottom: 1px solid var(--line-strong); }
.service-card { position: relative; min-width: 0; padding: 28px clamp(20px, 2.3vw, 38px) 32px; border-right: 1px solid var(--line); background: linear-gradient(180deg, transparent, rgba(255,255,255,0.015)); transition: background 240ms ease; }
.service-card:last-child { border-right: 0; }
.service-card::before { content: ""; position: absolute; top: -1px; left: 0; width: 0; height: 2px; background: var(--cyan); transition: width 450ms cubic-bezier(.2,.7,.2,1); }
.service-card:hover { background: var(--cyan-soft); }
.service-card:hover::before { width: 100%; }
.service-card header span { color: var(--cyan); }
.service-card h3 { margin: 20px 0 28px; font-family: var(--display); font-stretch: expanded; font-size: clamp(2rem, 3vw, 3rem); font-weight: 800; line-height: 0.92; letter-spacing: -0.055em; text-transform: uppercase; }
.service-card .service-title-long { font-size: clamp(1.75rem, 2.55vw, 2.55rem); }
.service-lede { min-height: 52px; color: var(--muted); }
.service-card ul { list-style: none; padding: 0; margin: 30px 0 36px; border-top: 1px solid var(--line); }
.service-card li { padding: 15px 0; border-bottom: 1px solid var(--line); }
.service-card li b, .service-card li span { display: block; }
.service-card li b { font-size: 14px; }
.service-card li span { margin-top: 4px; color: var(--muted); font-size: 12px; line-height: 1.45; }
.service-link { display: flex; align-items: center; justify-content: space-between; color: var(--cyan); font: 400 11px/1.2 var(--mono); text-transform: uppercase; letter-spacing: 0.05em; }
.service-link span { font-size: 18px; transition: transform 180ms ease; }
.service-link:hover span { transform: translate(4px, -4px); }

/* DECISION */
.decision { display: grid; grid-template-columns: minmax(0, 0.85fr) minmax(460px, 1.15fr); gap: clamp(50px, 9vw, 150px); align-items: center; }
.decision-copy h2 { margin-bottom: 28px; }
.decision-lede { margin-bottom: 18px; font-size: clamp(1.35rem, 2.1vw, 2.3rem); line-height: 1.25; }
.decision-copy > p:not(.section-label):not(.decision-lede) { max-width: 540px; color: var(--muted); }
.decision-copy .button { margin-top: 24px; }

.decision-image { position: relative; width: min(100%, 760px); margin: 0 0 0 auto; overflow: hidden; aspect-ratio: 16 / 9; border: 1px solid var(--line-strong); background: var(--black-soft); }
.decision-image picture { display: block; width: 100%; height: 100%; }
.decision-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.1s cubic-bezier(.2,.7,.2,1); }
.decision-image:hover img { transform: scale(1.025); }
.decision-image figcaption { position: absolute; z-index: 2; left: 16px; bottom: 16px; padding: 10px 12px; border-left: 2px solid var(--cyan); background: rgba(7,7,7,.9); color: var(--paper); }
.decision-reticle { position: absolute; z-index: 2; left: 18%; top: 34%; width: 24%; aspect-ratio: 16 / 10; border: 1px solid var(--cyan); box-shadow: 0 0 22px rgba(0,192,220,.18); animation: reticle-breathe 3.2s ease-in-out infinite; }
.decision-reticle::after { content: ""; position: absolute; right: -5px; top: -5px; width: 9px; height: 9px; background: var(--magenta); }
@keyframes reticle-breathe { 50% { transform: scale(1.045); box-shadow: 0 0 34px rgba(0,192,220,.3); } }

/* PROCESS */
.process { border-top: 1px solid var(--line); }
.process-intro { display: grid; grid-template-columns: minmax(0, 1.3fr) minmax(260px, 0.55fr); gap: 8vw; align-items: end; }
.process-intro .section-label { grid-column: 1 / -1; }
.process-intro h2 { margin-bottom: 0; }
.process-intro > p:last-child { color: var(--muted); }
.process-figure { position: relative; margin: clamp(58px, 8vw, 104px) 0 0; overflow: hidden; aspect-ratio: 16 / 7; border: 1px solid var(--line-strong); background: var(--black-soft); }
.process-figure img { width: 100%; height: 100%; object-fit: cover; object-position: center 48%; transition: transform 1.2s cubic-bezier(.2,.7,.2,1); }
.process-figure:hover img { transform: scale(1.018); }
.process-figure figcaption { position: absolute; left: 20px; right: 20px; bottom: 18px; display: flex; gap: 12px; align-items: center; color: var(--paper); }
.process-figure figcaption span { padding: 8px 10px; background: rgba(7,7,7,.88); border: 1px solid var(--line-strong); }
.process-figure figcaption i { flex: 1; height: 1px; background: var(--cyan); box-shadow: 0 0 10px rgba(0,192,220,.6); transform-origin: left; }
.process-figure.is-visible figcaption i { animation: process-line 1.1s cubic-bezier(.2,.7,.2,1) both 250ms; }
@keyframes process-line { from { transform: scaleX(0); } to { transform: scaleX(1); } }
.process-list { list-style: none; padding: 0; margin: 42px 0 0; border-top: 1px solid var(--line-strong); }
.process-list li { position: relative; min-height: 180px; display: grid; grid-template-columns: 12vw minmax(0, 1fr) 20vw; gap: 3vw; align-items: center; padding: 26px 0; overflow: hidden; border-bottom: 1px solid var(--line); }
.process-number { color: var(--cyan); font: 400 clamp(2rem, 4vw, 4.6rem)/1 var(--mono); }
.process-list h3 { margin: 0 0 10px; font-family: var(--display); font-size: clamp(2rem, 4vw, 5rem); line-height: .9; letter-spacing: -.045em; text-transform: uppercase; }
.process-list p { max-width: 520px; margin: 0; color: var(--muted); }
.process-art { justify-self: end; width: min(18vw, 230px); aspect-ratio: 1.65; border: 1px solid var(--line-strong); opacity: .65; background: repeating-linear-gradient(90deg, transparent 0 15px, var(--line) 15px 16px); transition: border-color 220ms ease, opacity 220ms ease, transform 350ms ease; }
.process-list li:nth-child(2) .process-art { border-radius: 50%; background: radial-gradient(circle, var(--cyan-soft) 0 2px, transparent 3px); background-size: 13px 13px; }
.process-list li:nth-child(3) .process-art { clip-path: polygon(0 0, 100% 0, 75% 100%, 20% 100%); background: linear-gradient(105deg, transparent 0 32%, var(--cyan) 32% 33%, transparent 33% 66%, var(--line-strong) 66% 67%, transparent 67%); }
.process-list li:hover .process-art { border-color: var(--cyan); opacity: 1; transform: translateX(-8px); }
.process-close { margin: 32px 0 0 auto; width: min(700px, 70%); text-align: right; font-size: clamp(1.25rem, 2.4vw, 2.6rem); }
.process-close strong { color: var(--cyan); }

/* AI */
.ai { display: grid; grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr); gap: clamp(48px, 9vw, 140px); align-items: center; }
.ai-stage { position: relative; min-height: 0; margin: 0; overflow: hidden; aspect-ratio: 4 / 5; border: 1px solid var(--line-strong); background: var(--black-soft); }
.ai-stage-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.1s cubic-bezier(.2,.7,.2,1), filter 400ms ease; }
.ai-stage-image:hover img { transform: scale(1.025); filter: contrast(1.05); }
.ai-stage-image figcaption { position: absolute; left: 16px; right: 16px; bottom: 16px; display: flex; justify-content: space-between; gap: 18px; padding: 11px 13px; border: 1px solid var(--line-strong); background: rgba(7,7,7,.88); color: var(--paper); }
.ai-stage-image figcaption span:first-child { color: var(--cyan); }
.ai-stage-image figcaption span:last-child { color: var(--paper); }
.ai-copy h2 { margin-bottom: 34px; }
.ai-lede { font-size: clamp(1.3rem, 2vw, 2.1rem); line-height: 1.4; }
.ai-copy > p:not(.section-label):not(.ai-lede):not(.ai-close) { color: var(--muted); }
.ai-uses { margin: 36px 0; border-top: 1px solid var(--line); }
.ai-uses div { display: grid; grid-template-columns: 0.42fr 1fr; gap: 20px; padding: 13px 0; border-bottom: 1px solid var(--line); }
.ai-uses dt { color: var(--cyan); font: 400 10px/1.4 var(--mono); text-transform: uppercase; }
.ai-uses dd { margin: 0; font-size: 13px; }
.ai-close { font-size: clamp(1.15rem, 1.8vw, 1.8rem); }
.ai-close strong { color: var(--cyan); }

/* WORK */
.work { position: relative; width: 100%; padding-left: 3vw; padding-right: 3vw; overflow: hidden; border-top: 1px solid var(--line-strong); border-bottom: 1px solid var(--line-strong); background: #090a0b; color: var(--paper); }
.work::before { content: ""; position: absolute; inset: 0; pointer-events: none; opacity: .45; background-image: linear-gradient(to right, transparent calc(100% - 1px), var(--line) 1px); background-size: calc(100% / 12) 100%; mask-image: linear-gradient(to bottom, transparent, black 20%, black 80%, transparent); }
.work-head { position: relative; width: min(100%, 1500px); margin: 0 auto; }
.work .section-label { color: var(--cyan); }
.work-head > p:last-child { color: var(--muted); }
.client-strip { position: relative; width: min(100%, 1500px); margin: clamp(54px, 7vw, 96px) auto 0; display: grid; grid-template-columns: 230px minmax(0, 1fr); align-items: center; overflow: hidden; border-top: 1px solid var(--line-strong); border-bottom: 1px solid var(--line-strong); background: rgba(244,244,239,.025); }
.client-strip-label { padding: 21px 24px; color: var(--cyan); border-right: 1px solid var(--line); }
.client-marquee { min-width: 0; overflow: hidden; }
.client-track { width: max-content; display: flex; gap: 24px; align-items: center; padding: 16px 0; animation: client-flow 28s linear infinite paused; }
.client-strip.is-visible .client-track { animation-play-state: running; }
.client-track span { font-family: var(--display); font-size: clamp(1.5rem, 2.6vw, 3.4rem); font-weight: 800; line-height: 1; letter-spacing: -.04em; white-space: nowrap; }
.client-track i { color: var(--magenta); font-size: 1.7rem; font-style: normal; }
@keyframes client-flow { to { transform: translateX(-50%); } }
.work-grid { position: relative; width: min(100%, 1500px); margin: 28px auto 0; display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); gap: 18px; counter-reset: work-case; }
.work-card { position: relative; min-width: 0; grid-column: span 6; overflow: hidden; border: 1px solid var(--line-strong); background: var(--black-soft); counter-increment: work-case; transition: transform 350ms cubic-bezier(.2,.7,.2,1), border-color 220ms ease, box-shadow 350ms ease; }
.work-card::before { content: "0" counter(work-case); position: absolute; z-index: 4; right: 12px; top: 11px; padding: 5px 7px; border: 1px solid rgba(244,244,239,.24); background: rgba(7,7,7,.84); color: var(--paper); font: 400 10px/1 var(--mono); }
.work-card:hover { z-index: 2; transform: translateY(-7px); border-color: var(--cyan); box-shadow: 0 28px 70px rgba(0,0,0,.38); }
.work-card-featured { grid-column: 1 / -1; display: grid; grid-template-columns: minmax(0, 1.45fr) minmax(280px, .55fr); }
.work-card:nth-child(2), .work-card:nth-child(5) { grid-column: span 5; }
.work-card:nth-child(3), .work-card:nth-child(4) { grid-column: span 7; }
.work-card:last-child { grid-column: 1 / -1; display: grid; grid-template-columns: minmax(0, .7fr) minmax(0, 1.3fr); }
.work-media { position: relative; aspect-ratio: 16 / 10; overflow: hidden; background: #111; }
.work-card-featured .work-media, .work-card:last-child .work-media { min-height: 520px; aspect-ratio: auto; }
.work-card:nth-child(2) .work-media, .work-card:nth-child(5) .work-media { aspect-ratio: 4 / 5; }
.work-card:nth-child(3) .work-media, .work-card:nth-child(4) .work-media { aspect-ratio: 16 / 11; }
.work-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: opacity 520ms cubic-bezier(.2,.7,.2,1), transform 850ms cubic-bezier(.2,.7,.2,1), filter 300ms ease; }
.work-image-primary { filter: grayscale(.65) contrast(1.08); }
.work-image-alt { opacity: 0; transform: scale(1.03); }
.work-card:hover .work-image-primary { opacity: 0; transform: scale(1.025); }
.work-card:hover .work-image-alt { opacity: 1; transform: scale(1); }
.work-selected { position: absolute; left: 18px; top: 18px; padding: 8px 10px; background: var(--cyan); color: var(--black); }
.work-info { min-height: 156px; padding: 22px 24px; display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 28px; align-items: end; }
.work-info h3 { margin: 0 0 8px; font-family: var(--display); font-size: clamp(2rem, 4vw, 5.5rem); line-height: .85; letter-spacing: -.055em; text-transform: uppercase; }
.work-card:not(.work-card-featured) .work-info h3 { font-size: clamp(2rem, 3vw, 3.9rem); }
.work-info p { max-width: 580px; margin: 0; color: var(--muted); font-size: 13px; }
.work-info > span { max-width: 230px; text-align: right; color: var(--muted); }
.work-card-featured .work-info, .work-card:last-child .work-info { align-content: end; grid-template-columns: 1fr; }
.work-card-featured .work-info > span, .work-card:last-child .work-info > span { text-align: left; }

/* ORIGIN */
.origin { display: grid; grid-template-columns: minmax(0, 1.08fr) minmax(0, .92fr); gap: clamp(50px, 8vw, 130px); align-items: center; }
.origin-figure { position: relative; width: 100%; max-width: 820px; margin: 0; aspect-ratio: 16 / 9; overflow: hidden; border: 1px solid var(--line-strong); background: #040404; }
.origin-figure img { width: 100%; height: 100%; object-fit: cover; }
.origin-twins { opacity: .72; transform: scale(1.035); transition: opacity 1s ease, transform 1.4s cubic-bezier(.2,.7,.2,1); }
.origin-figure.is-visible .origin-twins { opacity: 1; transform: none; }
.origin-axis { position: absolute; z-index: 2; left: 39%; top: 37%; width: 31%; height: 1px; transform: scaleX(0); transform-origin: left; background: var(--cyan); box-shadow: 0 0 14px var(--cyan); transition: transform 1.2s cubic-bezier(.2,.7,.2,1) 350ms; }
.origin-figure.is-visible .origin-axis { transform: scaleX(1); }
.figure-label { position: absolute; left: 14px; bottom: 14px; padding: 8px 10px; background: rgba(7,7,7,.9); border-left: 2px solid var(--cyan); }
.origin-story { margin-top: clamp(30px, 4vw, 54px); border-top: 1px solid var(--line-strong); border-bottom: 1px solid var(--line-strong); }
.origin-story summary { min-height: 74px; display: grid; grid-template-columns: minmax(0, 1fr) 26px; gap: 24px; align-items: center; padding: 18px 0; color: var(--paper); font: 400 11px/1.35 var(--mono); letter-spacing: .07em; text-transform: uppercase; cursor: pointer; list-style: none; transition: color 220ms ease; }
.origin-story summary::-webkit-details-marker { display: none; }
.origin-story summary:hover { color: var(--cyan); }
.origin-story summary:focus-visible { outline: 1px solid var(--cyan); outline-offset: 7px; }
.origin-story-toggle { position: relative; width: 26px; height: 26px; border: 1px solid var(--line-strong); transition: border-color 220ms ease, transform 320ms cubic-bezier(.2,.7,.2,1); }
.origin-story-toggle::before, .origin-story-toggle::after { content: ""; position: absolute; left: 6px; right: 6px; top: 12px; height: 1px; background: var(--cyan); }
.origin-story-toggle::after { transform: rotate(90deg); transition: transform 320ms cubic-bezier(.2,.7,.2,1); }
.origin-story[open] .origin-story-toggle { border-color: var(--cyan); transform: rotate(180deg); }
.origin-story[open] .origin-story-toggle::after { transform: rotate(0); }
.origin-story:not([open]) > .origin-story-body { display: none; }
.origin-story-body { padding: 8px 0 34px; animation: origin-story-in 420ms cubic-bezier(.2,.7,.2,1) both; }
.origin-story-body p { max-width: 680px; margin: 0 0 22px; color: var(--muted); font-size: clamp(.98rem, 1.12vw, 1.14rem); line-height: 1.7; }
.origin-story-body p:last-child { margin-bottom: 0; }
.origin-story-body strong { color: var(--paper); font-weight: 600; }
@keyframes origin-story-in { from { opacity: 0; transform: translateY(-8px); } to { opacity: 1; transform: none; } }

/* CONTACT */
.contact { display: grid; grid-template-columns: minmax(0, .85fr) minmax(450px, 1.15fr); gap: clamp(50px, 10vw, 160px); border-top: 1px solid var(--line); }
.contact-intro > p:not(.section-label) { max-width: 560px; color: var(--muted); }
.contact-direct { margin-top: 46px; border-top: 1px solid var(--line); }
.contact-direct a { display: flex; justify-content: space-between; gap: 20px; padding: 13px 0; border-bottom: 1px solid var(--line); font: 400 11px/1.3 var(--mono); text-transform: uppercase; }
.contact-direct a span { color: var(--cyan); }
.contact-direct a:hover { color: var(--cyan); }

.contact-form { align-self: start; padding: clamp(24px, 3.5vw, 48px); border: 1px solid var(--line-strong); background: var(--black-soft); }
.contact-form label { display: block; margin-bottom: 22px; color: var(--muted); font: 400 10px/1.4 var(--mono); letter-spacing: .06em; text-transform: uppercase; }
.contact-form input, .contact-form textarea, .contact-form select { width: 100%; min-height: 48px; margin-top: 8px; padding: 12px 0; border: 0; border-bottom: 1px solid var(--line-strong); border-radius: 0; background: transparent; color: var(--paper); font: 400 15px/1.5 var(--body); text-transform: none; outline: 0; }
.contact-form textarea { resize: vertical; }
.contact-form input:focus, .contact-form textarea:focus, .contact-form select:focus { border-bottom-color: var(--cyan); }
.contact-form input::placeholder, .contact-form textarea::placeholder { color: #73736f; opacity: 1; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.honeypot { position: absolute !important; left: -9999px; }
.form-foot { display: flex; justify-content: space-between; gap: 24px; align-items: end; margin-top: 34px; }
.form-foot p { max-width: 260px; margin: 0; color: var(--muted-dark); font-size: 10px; }
.form-status { margin-bottom: 26px; padding: 14px; border-left: 2px solid var(--cyan); background: var(--cyan-soft); color: var(--paper); font-size: 13px; }
.form-status.is-error { border-color: var(--magenta); background: rgba(255,0,128,.09); }

/* FOOTER */
.site-footer { min-height: 220px; display: grid; grid-template-columns: 140px 1fr auto; gap: 40px; align-items: center; padding: 48px 3vw; border-top: 1px solid var(--line); }
.site-footer > img { width: 88px; height: 88px; object-fit: contain; }
.site-footer > div:nth-child(2) p { margin: 0; }
.site-footer > div:nth-child(2) p:last-child { margin-top: 9px; font-family: var(--display); font-size: clamp(1.7rem, 3vw, 3.6rem); font-weight: 800; line-height: .9; text-transform: uppercase; }
.footer-links { display: grid; justify-items: end; gap: 8px; font: 400 10px/1.3 var(--mono); text-transform: uppercase; }
.footer-links a:hover { color: var(--fuchsia); }

/* MANIFESTO PAGE */
.about-page .site-header { background: rgba(7,7,7,.9); border-color: var(--line); }
.manifesto-hero { position: relative; width: var(--page); min-height: 92svh; margin: 0 auto; padding: calc(var(--header-h) + 80px) 0 70px; display: grid; align-content: space-between; overflow: hidden; }
.manifesto-hero::before { content: ""; position: absolute; z-index: -1; inset: 0; opacity: .7; background-image: linear-gradient(to right, transparent calc(100% - 1px), var(--line) 1px); background-size: calc(100% / 12) 100%; }
.manifesto-hero .section-label { align-self: start; }
.manifesto-title { margin: 10vh 0 40px; max-width: 1300px; font-family: var(--display); font-stretch: expanded; font-size: clamp(4rem, 9.5vw, 10.5rem); font-weight: 900; line-height: .78; letter-spacing: -.075em; text-transform: uppercase; }
.manifesto-title span { color: var(--cyan); }
.manifesto-intro { width: min(620px, 70%); margin: 0 0 0 auto; font-size: clamp(1.15rem, 1.8vw, 1.8rem); font-weight: 300; }
.manifesto-visual { width: var(--page); margin: 0 auto; padding: 0 0 clamp(100px, 11vw, 180px); display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(36px, 7vw, 100px); align-items: center; }
.manifesto-image-stack { position: relative; min-width: 0; padding: 0 12% 12% 0; }
.manifesto-visual figure { position: relative; margin: 0; overflow: hidden; aspect-ratio: 4 / 5; }
.manifesto-visual figure::before { content: ""; position: absolute; z-index: 2; inset: 6% 8%; border: 1px solid var(--cyan); pointer-events: none; }
.manifesto-visual figure::after { content: "+"; position: absolute; z-index: 3; right: calc(8% - 7px); top: calc(6% - 11px); color: var(--magenta); font: 300 26px/1 var(--mono); }
.manifesto-visual img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.75) contrast(1.04); }
.manifesto-visual figcaption { position: absolute; z-index: 3; left: 8%; bottom: 6%; padding: 10px 12px; background: rgba(7,7,7,.9); border-left: 2px solid var(--cyan); }
.manifesto-visual .manifesto-secondary-image { position: absolute; z-index: 4; right: 0; bottom: 0; width: 42%; aspect-ratio: 9 / 16; box-shadow: 0 24px 70px rgba(0,0,0,.55); }
.manifesto-visual .manifesto-secondary-image::before { inset: 5% 7%; }
.manifesto-visual .manifesto-secondary-image::after { right: calc(7% - 7px); top: calc(5% - 11px); }
.manifesto-secondary-image figcaption { left: 7%; bottom: 5%; }
.manifesto-visual-copy h2 { font-size: clamp(3.3rem, 6vw, 7.4rem); }
.manifesto-visual-copy p { color: var(--muted); }
.manifesto-body { width: var(--page); margin: 0 auto; padding: clamp(90px, 11vw, 170px) 0; border-top: 1px solid var(--line); }
.manifesto-body > .section-label { margin-bottom: 50px; }
.manifesto-text { width: 100%; display: grid; gap: clamp(76px, 10vw, 150px); }
.manifesto-chapter { display: grid; grid-template-columns: minmax(280px, .72fr) minmax(0, 1.28fr); gap: clamp(42px, 8vw, 130px); align-items: center; }
.manifesto-chapter-reverse .manifesto-instrument { order: 2; }
.manifesto-chapter-reverse .manifesto-copy { order: 1; margin-left: auto; }
.manifesto-copy { width: min(100%, 780px); }
.manifesto-copy p { margin: 0 0 28px; font-size: clamp(1.25rem, 1.85vw, 2.05rem); line-height: 1.48; letter-spacing: -.018em; }
.manifesto-copy p:last-child { margin-bottom: 0; }
.manifesto-copy p strong { color: var(--cyan); }
.manifesto-text .manifesto-short { width: min(100%, 1180px); margin: 0 auto; padding: clamp(42px, 6vw, 80px) 0; border-top: 1px solid var(--line-strong); border-bottom: 1px solid var(--line-strong); font-family: var(--display); font-size: clamp(3rem, 6vw, 7rem); font-weight: 800; line-height: .9; letter-spacing: -.06em; text-align: center; text-transform: uppercase; }
.manifesto-text .manifesto-signoff { width: 100%; color: var(--paper); background: linear-gradient(90deg, transparent, rgba(0,192,220,.08), transparent); }
.manifesto-text .manifesto-signoff strong { color: var(--cyan); }

.manifesto-instrument { position: relative; min-height: 350px; overflow: hidden; border: 1px solid var(--line-strong); background-color: var(--black-soft); background-image: linear-gradient(var(--line) 1px, transparent 1px), linear-gradient(90deg, var(--line) 1px, transparent 1px); background-size: 42px 42px; }
.manifesto-instrument::before, .manifesto-instrument::after { content: "+"; position: absolute; z-index: 2; color: var(--muted-dark); font: 300 22px/1 var(--mono); }
.manifesto-instrument::before { left: -8px; top: -10px; }
.manifesto-instrument::after { right: -8px; bottom: -10px; }
.instrument-label, .instrument-note { position: absolute; z-index: 3; left: 18px; }
.instrument-label { top: 17px; color: var(--cyan); }
.instrument-note { bottom: 17px; color: var(--muted); }

.context-radar { position: absolute; left: 50%; top: 50%; width: min(64%, 230px); aspect-ratio: 1; transform: translate(-50%, -50%); border: 1px solid var(--line-strong); border-radius: 50%; }
.context-radar i { position: absolute; inset: 16%; border: 1px solid var(--line); border-radius: 50%; }
.context-radar i:nth-child(2) { inset: 32%; }
.context-radar i:nth-child(3) { inset: 48%; background: var(--cyan); border: 0; box-shadow: 0 0 24px rgba(0,192,220,.45); }
.context-radar b { position: absolute; left: 50%; top: 50%; width: 46%; height: 1px; transform-origin: left center; background: linear-gradient(90deg, var(--cyan), transparent); }
.instrument-context.is-visible .context-radar b { animation: radar-sweep 5.5s linear infinite; }
@keyframes radar-sweep { to { transform: rotate(360deg); } }

.selection-cells { position: absolute; inset: 27% 13%; display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.selection-cells i { position: relative; border: 1px solid var(--line-strong); background: rgba(244,244,239,.025); }
.selection-cells i::after { content: ""; position: absolute; left: 14%; bottom: 14%; width: 44%; height: 1px; background: var(--muted-dark); box-shadow: 0 -8px 0 var(--muted-dark); }
.selection-cells .is-picked { border-color: var(--cyan); background: var(--cyan-soft); box-shadow: 0 0 26px rgba(0,192,220,.12); }
.selection-cells .is-picked::before { content: ""; position: absolute; right: -5px; top: -5px; width: 9px; height: 9px; background: var(--magenta); }
.instrument-selection.is-visible .is-picked { animation: selected-pulse 2.8s ease-in-out infinite; }
@keyframes selected-pulse { 50% { box-shadow: 0 0 42px rgba(0,192,220,.26); } }

.probability-list { position: absolute; inset: 24% 9% auto; display: flex; justify-content: space-between; color: rgba(0,192,220,.55); font: 400 clamp(1.4rem, 3vw, 3.8rem)/1 var(--mono); }
.instrument-probability > b { position: absolute; left: 9%; right: 9%; bottom: 26%; padding: 16px 18px; border: 1px solid var(--cyan); color: var(--paper); font: 700 clamp(1.1rem, 2.2vw, 2.4rem)/1 var(--display); text-align: center; letter-spacing: -.03em; }
.instrument-probability.is-visible > b { animation: decision-lock 850ms cubic-bezier(.16,.84,.24,1) both 250ms; }
@keyframes decision-lock { from { opacity: 0; transform: scaleX(.3); } to { opacity: 1; transform: scaleX(1); } }

.signal-line { position: absolute; left: 10%; right: 10%; top: 51%; height: 1px; background: var(--line-strong); }
.signal-line::before, .signal-line::after { content: ""; position: absolute; top: -18px; width: 1px; height: 36px; background: var(--line-strong); }
.signal-line::after { right: 0; }
.signal-line i { position: absolute; left: 0; top: -1px; width: 34%; height: 2px; background: var(--cyan); box-shadow: 0 0 12px rgba(0,192,220,.7); }
.signal-line b { position: absolute; left: 34%; top: -6px; width: 12px; height: 12px; border: 1px solid var(--cyan); background: var(--black); }
.instrument-signal.is-visible .signal-line i { animation: signal-grow 2.4s cubic-bezier(.2,.7,.2,1) both; }
.instrument-signal.is-visible .signal-line b { animation: signal-point 2.4s cubic-bezier(.2,.7,.2,1) both; }
@keyframes signal-grow { from { width: 0; } to { width: 72%; } }
@keyframes signal-point { from { left: 0; } to { left: 72%; } }
.manifesto-principles { width: var(--page); margin: 0 auto; padding: 0 0 clamp(100px, 12vw, 190px); }
.principles-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); border-top: 1px solid var(--line-strong); border-bottom: 1px solid var(--line-strong); }
.principle { padding: 30px; border-right: 1px solid var(--line); }
.principle:last-child { border-right: 0; }
.principle span { color: var(--cyan); }
.principle h3 { margin: 40px 0 20px; font-family: var(--display); font-size: clamp(2rem, 3vw, 3.8rem); line-height: .9; letter-spacing: -.05em; text-transform: uppercase; }
.principle p { color: var(--muted); }
.about-cta { width: var(--page); min-height: 70svh; margin: 0 auto; padding: 90px 0; display: grid; place-content: center; text-align: center; border-top: 1px solid var(--line); }
.about-cta h2 { max-width: 1100px; }
.about-cta .button { justify-self: center; }

@media (min-width: 1081px) {
  .decision-copy h2,
  .contact-intro h2,
  .origin-copy h2 {
    font-size: clamp(3.3rem, 4.15vw, 5.7rem);
  }
}

.js .reveal { opacity: 0; transform: translateY(28px); transition: opacity 680ms ease, transform 680ms cubic-bezier(.2,.7,.2,1); }
.js .reveal.is-visible { opacity: 1; transform: none; }
.js .reveal-scale { transform: translateY(28px) scale(.975); clip-path: inset(0 0 10%); }
.js .reveal-scale.is-visible { transform: none; clip-path: inset(0); }
.js .work-card.reveal:nth-child(2), .js .work-card.reveal:nth-child(4) { transition-delay: 70ms; }
.js .work-card.reveal:nth-child(3), .js .work-card.reveal:nth-child(5) { transition-delay: 140ms; }

@media (max-width: 1080px) {
  :root { --page: 92vw; }
  .desktop-nav { display: none; }
  .menu-toggle { display: block; }
  .hero { min-height: 100svh; padding-left: 4vw; padding-right: 4vw; }
  .hero-title { font-size: clamp(4.7rem, 16vw, 10rem); }
  .hero-statement { width: min(600px, 64vw); margin-left: 0; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card { border-right: 0; border-bottom: 1px solid var(--line); }
  .service-card h3 { font-size: clamp(2rem, 5.5vw, 3.8rem); }
  .service-card .service-title-long { font-size: clamp(2rem, 5.5vw, 3.8rem); }
  .service-card:last-child { border-bottom: 0; }
  .service-lede { min-height: 0; }
  .service-card ul { columns: 2; column-gap: 40px; }
  .service-card li { break-inside: avoid; }
  .decision { grid-template-columns: 1fr; }
  .decision-image { width: min(700px, 92%); margin-left: auto; }
  .process-list li { grid-template-columns: 100px 1fr 200px; }
  .ai { grid-template-columns: 1fr; }
  .ai-stage { width: min(640px, 92%); }
  .ai-copy { width: min(720px, 88%); margin-left: auto; }
  .origin { grid-template-columns: 1fr; gap: 64px; }
  .contact { grid-template-columns: 1fr; }
  .contact-form { width: min(820px, 100%); margin-left: auto; }
}

@media (max-width: 760px) {
  :root { --header-h: 66px; --page: 90vw; }
  body { font-size: 15px; }
  .site-header { padding: 0 5vw; }
  .brand { width: 104px; }
  .brand img { width: 100px; }
  h2 { font-size: clamp(2.45rem, 11.5vw, 4.5rem); line-height: .88; }
  .section { padding: 92px 0; }
  .hero { min-height: min(100svh, 760px); padding: calc(var(--header-h) + 28px) 5vw 32px; }
  .hero-grid { background-size: 25% 100%, 100% 18vh; }
  .hero-meta span:last-child { display: none; }
  .hero-title { margin-top: 34px; font-size: clamp(3.2rem, 15vw, 6rem); line-height: .75; }
  .hero-title span:last-child { margin-left: 0; }
  .hero-statement { width: 100%; margin: 42px 0 0; }
  .hero-statement p { font-size: 1rem; }
  .hero-actions { display: grid; grid-template-columns: 1fr 1fr; }
  .button { padding-left: 13px; padding-right: 13px; }
  .scroll-cue { left: 5vw; bottom: 24px; }
  .section-head, .process-intro { display: block; }
  .section-head h2, .process-intro h2 { margin-bottom: 28px; }
  .service-grid { margin-top: 52px; }
  .service-card { padding: 26px 20px; }
  .service-card .service-title-long { font-size: clamp(1.85rem, 7.6vw, 3.4rem); }
  .service-card ul { columns: 1; }
  .decision,
  .ai,
  .origin,
  .contact,
  .manifesto-visual { grid-template-columns: minmax(0, 1fr); }
  .decision { gap: 55px; }
  .decision-copy,
  .ai-copy,
  .origin-copy,
  .contact-intro,
  .contact-form { min-width: 0; }
  .decision-copy h2,
  .origin-copy h2 { font-size: clamp(2.65rem, 11.5vw, 4.5rem); }
  .contact-intro h2 { font-size: clamp(2.25rem, 10.2vw, 4rem); }
  .decision-image { width: 100%; }
  .decision-image { aspect-ratio: 4 / 5; }
  .decision-reticle { left: auto; right: 17%; top: 35%; width: 23%; aspect-ratio: 1; }
  .process-list { margin-top: 52px; }
  .process-figure { aspect-ratio: 4 / 3; }
  .process-figure figcaption { left: 12px; right: 12px; bottom: 12px; gap: 6px; }
  .process-figure figcaption span { padding: 6px; font-size: 8px; }
  .process-list li { min-height: 0; grid-template-columns: 54px 1fr; gap: 18px; padding: 26px 0; }
  .process-number { font-size: 1.55rem; }
  .process-list h3 { font-size: clamp(2rem, 10vw, 3.4rem); }
  .process-art { display: none; }
  .process-close { width: 100%; text-align: left; }
  .ai-stage { width: 100%; }
  .ai-copy { width: 100%; }
  .ai-uses div { grid-template-columns: 110px 1fr; }
  .work { padding-left: 5vw; padding-right: 5vw; }
  .client-strip { grid-template-columns: 1fr; }
  .client-strip-label { padding: 15px 16px; border-right: 0; border-bottom: 1px solid var(--line); }
  .client-track { padding: 13px 0; gap: 18px; }
  .work-grid { grid-template-columns: 1fr; margin-top: 52px; }
  .work-card,
  .work-card-featured,
  .work-card:nth-child(2),
  .work-card:nth-child(3),
  .work-card:nth-child(4),
  .work-card:nth-child(5),
  .work-card:last-child { grid-column: auto; display: block; }
  .work-card .work-media, .work-card:not(.work-card-featured) .work-media { aspect-ratio: 4 / 3; }
  .work-card-featured .work-media, .work-card:last-child .work-media { min-height: 0; }
  .work-info { min-height: 0; grid-template-columns: 1fr; gap: 16px; }
  .work-info > span { text-align: left; }
  .origin { grid-template-columns: 1fr; }
  .origin-figure { width: 100%; margin: 0 auto; }
  .origin-copy { order: -1; }
  .field-row { grid-template-columns: 1fr; gap: 0; }
  .contact-form { padding: 25px 20px; }
  .form-foot { align-items: stretch; flex-direction: column; }
  .site-footer { grid-template-columns: 80px 1fr; gap: 22px; }
  .site-footer > img { width: 64px; height: 64px; }
  .footer-links { grid-column: 1 / -1; justify-items: start; grid-template-columns: 1fr 1fr auto; width: 100%; padding-top: 24px; border-top: 1px solid var(--line); }
  .manifesto-hero { min-height: 86svh; padding-top: calc(var(--header-h) + 50px); }
  .manifesto-title { margin: 9vh 0 34px; font-size: clamp(3rem, 14.5vw, 6rem); }
  .manifesto-intro { width: 100%; }
  .manifesto-visual { grid-template-columns: 1fr; }
  .manifesto-image-stack { width: 100%; padding: 0; display: grid; grid-template-columns: minmax(0, 1.12fr) minmax(0, .88fr); gap: 10px; align-items: end; }
  .manifesto-image-stack > figure:first-child { width: 100%; }
  .manifesto-visual .manifesto-secondary-image { position: relative; right: auto; bottom: auto; width: 100%; margin: 0; }
  .manifesto-visual .manifesto-secondary-image { aspect-ratio: 3 / 4; }
  .manifesto-secondary-image img { object-position: center 62%; }
  .manifesto-text { width: 100%; }
  .manifesto-chapter { grid-template-columns: 1fr; gap: 34px; }
  .manifesto-chapter-reverse .manifesto-instrument,
  .manifesto-chapter-reverse .manifesto-copy { order: initial; }
  .manifesto-copy { width: 100%; }
  .manifesto-copy p { font-size: clamp(1.15rem, 5vw, 1.55rem); }
  .manifesto-instrument { min-height: 290px; }
  .manifesto-text .manifesto-short { width: 100%; font-size: clamp(2.8rem, 13vw, 5.5rem); }
  .principles-grid { grid-template-columns: 1fr; }
  .manifesto-principles h2,
  .about-cta h2 { font-size: clamp(2.1rem, 9.2vw, 3.7rem); }
  .principle { border-right: 0; border-bottom: 1px solid var(--line); }
  .principle:last-child { border-bottom: 0; }
}

@media (max-width: 430px) {
  .hero { min-height: min(100svh, 760px); }
  .hero-title { font-size: clamp(3.1rem, 14.7vw, 5rem); }
  .hero-actions { grid-template-columns: 1fr; }
  .origin-figure { width: 100%; }
  .footer-links { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; transition-duration: 0.001ms !important; }
  .scroll-cue span { display: none; }
  .origin-axis { transform: scaleX(1); }
  .hero { --hero-top-x: 0px; --hero-bottom-x: 0px; --hero-title-y: 0px; --hero-grid-y: 0px; --hero-copy-y: 0px; --hero-copy-opacity: 1; --hero-meta-y: 0px; --hero-meta-opacity: 1; --hero-scroll-y: 0px; --hero-scroll-opacity: 1; --hero-glow-y: 0px; --hero-glow-scale: 1; --hero-glow-opacity: 1; --hero-criterion-scale: 1; }
  .js .reveal { opacity: 1; transform: none; }
}

/* REDISEÑO EDITORIAL 2026
   Akira Expanded sigue representada por Archivo Expanded hasta contar con
   el archivo web con licencia. Toda la tipografía auxiliar usa Montserrat. */

.utility,
.section-label,
.button,
.desktop-nav a,
.mobile-menu p,
.contact-direct a,
.contact-form label,
.origin-story summary {
  font-family: var(--body);
  font-weight: 700;
}

/* HERO — wordmark alineado como el logo y movimiento sutil al salir */
.hero-title {
  max-width: 100%;
  font-size: clamp(4rem, 12.2vw, 13.2rem);
  line-height: .76;
}

.hero-title-line:last-child {
  margin-left: 0;
  color: var(--paper);
  -webkit-text-stroke: 0;
}

.hero-statement {
  width: min(780px, 63vw);
  margin-left: 0;
}

.hero-statement p {
  max-width: 760px;
  font-family: var(--body);
}

.hero-intro,
.hero-thesis { display: block; }
.hero-thesis { white-space: nowrap; }

.hero-criterion {
  color: var(--cyan);
  font-family: var(--body);
  font-size: 1em;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: none;
}

.hero-meta {
  font-family: var(--body);
  font-weight: 700;
}

/* NOSOTROS — la imagen queda sin rótulos; la mira sostiene la idea de selección */
.decision-image {
  isolation: isolate;
}

/* HILERA DE PALABRAS CLAVE */
.keyword-marquee {
  width: 100%;
  overflow: hidden;
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
  background: #090909;
}

.keyword-track {
  display: flex;
  width: max-content;
  padding: clamp(18px, 2.2vw, 30px) 0;
  animation: keyword-flow 34s linear infinite;
}

.keyword-track span {
  display: flex;
  align-items: center;
  white-space: nowrap;
  font-family: var(--display);
  font-size: clamp(1.2rem, 2.3vw, 2.8rem);
  font-weight: 850;
  line-height: 1;
  letter-spacing: -.045em;
  text-transform: uppercase;
}

.keyword-track b {
  color: var(--cyan);
  font-weight: inherit;
}

.keyword-track i {
  margin: 0 .62em;
  color: var(--magenta);
  font-family: var(--body);
  font-style: normal;
  font-weight: 400;
}

.keyword-marquee:hover .keyword-track { animation-play-state: paused; }
@keyframes keyword-flow { to { transform: translateX(-50%); } }

/* IA — texto de la maqueta original con una escala útil para lectura */
.ai-copy h2 { margin-bottom: 28px; }
.ai-lede { max-width: 760px; }
.ai-uses { margin: clamp(34px, 4vw, 58px) 0; }
.ai-uses div {
  grid-template-columns: minmax(150px, .42fr) minmax(0, 1fr);
  gap: clamp(24px, 4vw, 64px);
  align-items: baseline;
  padding: 18px 0;
}
.ai-uses dt {
  color: var(--cyan);
  font-family: var(--body);
  font-size: clamp(1.1rem, 1.55vw, 1.55rem);
  font-weight: 700;
  letter-spacing: -.02em;
  text-transform: none;
}
.ai-uses dd {
  color: var(--paper);
  font-family: var(--body);
  font-size: clamp(.95rem, 1.12vw, 1.12rem);
}
.ai-close { max-width: 700px; }

/* SERVICIOS — tres franjas desplegables, anchas y escalonadas */
.services-wide {
  width: 100%;
  max-width: none;
  padding-left: 0;
  padding-right: 0;
  overflow: hidden;
  border-top: 1px solid var(--line);
}

.services-heading {
  width: var(--page);
  margin: 0 auto clamp(58px, 7vw, 100px);
}

.services-heading h2 {
  max-width: 980px;
  margin-bottom: 0;
}

.service-layers {
  width: 100%;
}

.service-layer {
  --layer-accent: var(--cyan);
  width: calc(100% - 9vw);
  margin: 0;
  border-top: 1px solid var(--line-strong);
  background: #090909;
  transition: background 240ms ease, color 240ms ease, transform 320ms cubic-bezier(.2,.7,.2,1);
}

.service-layer:last-child { border-bottom: 1px solid var(--line-strong); }
.service-layer-two { --layer-accent: var(--fuchsia); margin-left: 4.5vw; }
.service-layer-three { margin-left: 9vw; }

.service-layer summary {
  min-height: clamp(145px, 16vw, 230px);
  display: grid;
  grid-template-columns: 58px 110px minmax(0, 1fr) 50px;
  grid-template-areas: "number action title toggle";
  gap: clamp(16px, 2vw, 34px);
  align-items: center;
  padding: 28px clamp(24px, 4vw, 72px);
  list-style: none;
  cursor: pointer;
  transition: background 240ms ease, color 240ms ease, padding 320ms cubic-bezier(.2,.7,.2,1);
}

.service-layer summary::-webkit-details-marker { display: none; }
.service-layer summary:hover,
.service-layer[open] summary {
  background: var(--layer-accent);
  color: var(--black);
}

.service-layer summary:hover { padding-left: clamp(32px, 5vw, 92px); }

.service-number {
  grid-area: number;
  font-family: var(--body);
  font-size: clamp(1.15rem, 1.8vw, 1.75rem);
  font-weight: 700;
  color: var(--layer-accent);
}

.service-action {
  grid-area: action;
  font-family: var(--body);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
}

.service-layer summary:hover .service-number,
.service-layer summary:hover .service-action,
.service-layer[open] .service-number,
.service-layer[open] .service-action { color: var(--black); }

.service-layer h3 {
  grid-area: title;
  min-width: 0;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(2.2rem, 5.9vw, 7.4rem);
  font-weight: 850;
  line-height: .86;
  letter-spacing: -.065em;
  text-transform: uppercase;
}

.service-toggle {
  grid-area: toggle;
  position: relative;
  width: 46px;
  height: 46px;
  justify-self: end;
  border: 1px solid currentColor;
}

.service-toggle::before,
.service-toggle::after {
  content: "";
  position: absolute;
  left: 11px;
  right: 11px;
  top: 22px;
  height: 1px;
  background: currentColor;
}

.service-toggle::after { transform: rotate(90deg); transition: transform 260ms ease; }
.service-layer[open] .service-toggle::after { transform: rotate(0); }

.service-panel {
  display: grid;
  grid-template-columns: minmax(220px, .6fr) minmax(420px, 1.4fr);
  column-gap: clamp(50px, 8vw, 140px);
  row-gap: 34px;
  padding: clamp(42px, 5vw, 76px) clamp(24px, 8vw, 130px) clamp(52px, 7vw, 90px);
  animation: service-panel-in 420ms cubic-bezier(.2,.7,.2,1) both;
}

@keyframes service-panel-in {
  from { opacity: 0; transform: translateY(-12px); }
  to { opacity: 1; transform: none; }
}

.service-panel .service-lede {
  min-height: 0;
  margin: 0;
  color: var(--paper);
  font-size: clamp(1.25rem, 2vw, 2.05rem);
  line-height: 1.35;
}

.service-panel ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 clamp(24px, 4vw, 70px);
  list-style: none;
  padding: 0;
  margin: 0;
  border-top: 1px solid var(--line);
}

.service-panel li { padding: 17px 0; border-bottom: 1px solid var(--line); }
.service-panel li b,
.service-panel li span { display: block; }
.service-panel li b { font-size: 14px; }
.service-panel li span { margin-top: 5px; color: var(--muted); font-size: 13px; }
.service-panel .service-link { grid-column: 2; }
.service-layer .service-link { color: var(--layer-accent); }

/* EQUIPOS A MEDIDA */
.team {
  display: grid;
  grid-template-columns: minmax(0, .86fr) minmax(500px, 1.14fr);
  gap: clamp(54px, 9vw, 150px);
  align-items: center;
}

.team-copy > p:last-child {
  max-width: 620px;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.35vw, 1.35rem);
}
.team-copy strong { color: var(--paper); }

.team-system {
  position: relative;
  min-height: clamp(470px, 45vw, 650px);
  overflow: hidden;
  border: 1px solid var(--line-strong);
  background:
    linear-gradient(to right, transparent calc(100% - 1px), var(--line) 1px),
    linear-gradient(to bottom, transparent calc(100% - 1px), var(--line) 1px),
    #090909;
  background-size: 25% 100%, 100% 25%, auto;
}

.team-axis {
  position: absolute;
  left: 14%;
  right: 14%;
  top: 50%;
  height: 1px;
  background: var(--cyan);
  box-shadow: 0 0 14px rgba(0,192,220,.65);
}

.team-axis::before,
.team-axis::after {
  content: "";
  position: absolute;
  top: -4px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--cyan);
}
.team-axis::before { left: 0; }
.team-axis::after { right: 0; }

.team-module {
  position: absolute;
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  padding: 0 clamp(15px, 2vw, 26px);
  border: 1px solid var(--line-strong);
  background: rgba(7,7,7,.96);
  font-family: var(--body);
  font-size: clamp(.72rem, .95vw, .95rem);
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  transition: transform 260ms cubic-bezier(.2,.7,.2,1), background 220ms ease, color 220ms ease, border-color 220ms ease;
}

.team-module:hover {
  z-index: 2;
  transform: translateY(-5px);
  border-color: var(--cyan);
  background: var(--cyan);
  color: var(--black);
}

.team-module-a { left: 8%; top: 13%; }
.team-module-b { right: 10%; top: 18%; }
.team-module-c { left: 22%; top: 40%; }
.team-module-d { right: 7%; top: 51%; }
.team-module-e { left: 8%; bottom: 18%; }
.team-module-f { right: 28%; bottom: 12%; }

.team-system > p {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 18px;
  margin: 0;
  color: var(--muted);
  font-family: var(--body);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}

/* PORTFOLIO */
.work-head { display: block; }
.work-head h2 {
  max-width: 1050px;
  font-size: clamp(2.8rem, 5.35vw, 6.2rem);
  line-height: .92;
}

/* FORMULARIO */
.contact-form select { color-scheme: dark; }
.contact-form select option {
  background: #111;
  color: var(--paper);
}

@media (max-width: 1080px) {
  .hero-statement { width: min(720px, 72vw); }
  .service-layer h3 { font-size: clamp(2.2rem, 5.3vw, 5.2rem); }
  .service-panel { grid-template-columns: 1fr; }
  .service-panel .service-link { grid-column: 1; }
  .team { grid-template-columns: 1fr; }
  .team-system { width: min(780px, 94%); margin-left: auto; }
}

@media (max-width: 760px) {
  .hero-title { font-size: clamp(3.2rem, 15vw, 6rem); line-height: .78; }
  .hero-title-line:last-child { margin-left: 0; }
  .hero-statement { width: 100%; margin-top: 46px; }
  .hero-meta { font-size: 9px; letter-spacing: .07em; }

  .keyword-track { animation-duration: 27s; }

  .ai { gap: 54px; }
  .ai-copy { order: -1; }
  .ai-uses div { grid-template-columns: 1fr; gap: 5px; }

  .services-heading { margin-bottom: 48px; }
  .service-layer,
  .service-layer-two,
  .service-layer-three { width: 100%; margin-left: 0; }
  .service-layer summary {
    min-height: 152px;
    grid-template-columns: 38px minmax(0, 1fr) 34px;
    grid-template-areas:
      "number action toggle"
      ". title toggle";
    row-gap: 12px;
    padding: 24px 5vw;
  }
  .service-layer summary:hover { padding-left: 7vw; }
  .service-layer h3 { font-size: clamp(1.75rem, 8vw, 3.4rem); line-height: .9; }
  .service-toggle { width: 34px; height: 34px; }
  .service-toggle::before,
  .service-toggle::after { left: 8px; right: 8px; top: 16px; }
  .service-panel { padding: 34px 5vw 50px; }
  .service-panel ul { grid-template-columns: 1fr; }

  .team-system { width: 100%; min-height: 500px; }
  .team-module-b { right: 5%; }
  .team-module-c { left: 12%; }
  .team-module-d { right: 4%; }
  .team-module-f { right: 14%; }
}

@media (max-width: 430px) {
  .hero-meta span:first-child { max-width: 240px; }
  .service-layer summary { grid-template-columns: 32px minmax(0, 1fr) 32px; }
  .team-system { min-height: 455px; }
  .team-module { min-height: 42px; padding: 0 12px; font-size: .64rem; }
}

@media (prefers-reduced-motion: reduce) {
  .keyword-track { animation: none; }
  .service-panel { animation: none; }
}

/* AJUSTE DE JERARQUÍA Y RESISTENCIA AL ZOOM */
.title-line {
  display: block;
  white-space: nowrap;
}

/* Alineación óptica: Archivo/Akira tiene aire lateral propio en la D. */
.hero-title { margin-left: -.065em; }
.hero-criterion::after { content: none; }

.decision-copy {
  justify-self: start;
  text-align: left;
}
.decision-copy h2 { margin-left: -.052em; }
.decision-copy > p:not(.section-label),
.team-copy > p:last-child,
.work-info p,
.origin-story-copy p,
.contact-intro > p:not(.section-label) { text-wrap: pretty; }
.decision-lede {
  max-width: none;
  white-space: nowrap;
  font-size: clamp(1.05rem, 1.65vw, 1.7rem);
}

/* IA: dos líneas de título y párrafo con una medida más editorial. */
.ai {
  grid-template-columns: minmax(0, .82fr) minmax(0, 1.18fr);
  gap: clamp(42px, 7vw, 110px);
}
.ai-copy h2 {
  font-size: clamp(3.3rem, 6vw, 7rem);
  margin-bottom: 28px;
  color: var(--paper);
  white-space: nowrap;
}
.ai-copy h2 em,
.team-copy h2 em,
.origin-copy h2 em { color: var(--cyan); }
.ai-lede {
  max-width: 70ch;
  font-size: clamp(1rem, 1.22vw, 1.25rem);
  line-height: 1.58;
  text-wrap: pretty;
}

.ai-close {
  display: flex;
  flex-wrap: wrap;
  gap: 0 .38em;
  max-width: none;
  text-wrap: pretty;
}
.ai-close span,
.ai-close strong { white-space: nowrap; }

/* El fucsia entra como señal secundaria, no como superficie dominante. */
.keyword-track i:nth-of-type(even),
.client-track i { color: var(--fuchsia); }
.service-layer:not([open]) .service-number { color: var(--layer-accent); }

.decision-copy .button-primary {
  border-color: var(--fuchsia);
  background: var(--fuchsia);
}
.decision-copy .button-primary:hover { border-color: var(--paper); background: var(--paper); }
.contact-direct a:nth-child(even) span { color: var(--fuchsia); }

/* Título e introducción de Servicios. */
.services-heading h2 {
  max-width: 1100px;
  font-size: clamp(3rem, 7vw, 8rem);
}
.services-intro {
  max-width: 680px;
  margin: clamp(24px, 3vw, 40px) 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.3vw, 1.25rem);
  text-wrap: pretty;
}

/* Cada capa conserva el gesto horizontal, pero integra su bajada al abrirse. */
.service-layer summary {
  grid-template-areas:
    "number action title toggle"
    ". . lede toggle";
  row-gap: 10px;
}
.service-layer h3 {
  font-size: clamp(2rem, 4.8vw, 6.2rem);
  line-height: .9;
}
.service-summary-lede {
  grid-area: lede;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  color: currentColor;
  font-family: var(--body);
  font-size: clamp(.82rem, 1.05vw, 1rem);
  font-weight: 500;
  line-height: 1.35;
  white-space: nowrap;
  transition: max-height 260ms ease, opacity 220ms ease;
}
.service-layer[open] .service-summary-lede {
  max-height: 2em;
  opacity: .8;
}
.service-layer[open] summary { min-height: clamp(165px, 17vw, 250px); }

.service-panel {
  display: block;
  padding-top: clamp(34px, 4vw, 58px);
}
.service-panel ul {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0 clamp(22px, 3vw, 52px);
}
.service-panel li { min-width: 0; padding: 20px 0; }
.service-panel li b {
  font-size: clamp(1rem, 1.25vw, 1.2rem);
  line-height: 1.25;
}
.service-panel li span {
  margin-top: 8px;
  font-size: clamp(.78rem, .9vw, .9rem);
  line-height: 1.5;
}
.service-panel .service-link {
  width: min(100%, 420px);
  margin-top: 32px;
}

/* Equipos vuelve al sistema modular de la maqueta de Tomy. */
.team {
  display: block;
}
.team-copy { max-width: 980px; }
.team-copy h2 { max-width: 900px; }
.team-copy > p:last-child { max-width: 760px; }
.team-build {
  display: flex;
  align-items: stretch;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: clamp(38px, 5vw, 64px);
  max-width: 1120px;
}
.team-build .team-module {
  position: static;
  flex: 1.2 1 140px;
  min-height: 76px;
  justify-content: center;
  padding: 18px 16px;
  border: 1px solid var(--line-strong);
  border-top: 2px solid var(--cyan);
  background: linear-gradient(180deg, rgba(255,255,255,.035), transparent);
  color: var(--muted);
  text-align: center;
}
.team-build .team-module:nth-child(2),
.team-build .team-module:nth-child(5) { border-top-color: var(--fuchsia); }
.team-build .team-module:nth-child(3),
.team-build .team-module:nth-child(6) { border-top-color: var(--cyan); }
.team-build .team-module:nth-child(4) { border-top-color: var(--fuchsia); }
.team-build .team-module:nth-child(1) { flex-grow: 1.5; }
.team-build .team-module:nth-child(4) { flex-grow: 1.35; }
.team-build .team-module:nth-child(6) { flex-grow: .55; }
.team-build .team-module:hover { color: var(--paper); }
.team-caption {
  margin: 18px 0 0;
  color: var(--muted-dark);
  font-family: var(--body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

/* Portfolio: la información nunca vuelve a quedar encerrada en una columna angosta. */
.work-card-featured,
.work-card:last-child { display: block; }
.work-card-featured .work-media {
  min-height: clamp(400px, 48vw, 690px);
  aspect-ratio: 16 / 8;
}
.work-card:last-child .work-media {
  min-height: clamp(360px, 42vw, 600px);
  aspect-ratio: 16 / 8;
}
.work-card-featured .work-info,
.work-card:last-child .work-info {
  grid-template-columns: minmax(0, 1fr) minmax(220px, .34fr);
}
.work-card-featured .work-info > span,
.work-card:last-child .work-info > span { text-align: right; }
.work-info h3 {
  max-width: 100%;
  overflow-wrap: break-word;
  font-size: clamp(2rem, 3.45vw, 4.8rem);
}
.work-card:not(.work-card-featured) .work-info h3 {
  font-size: clamp(1.75rem, 2.55vw, 3.25rem);
}
.work-info > span { max-width: none; }
.work-head h2 { max-width: 1200px; }
.contact-intro h2 { font-size: clamp(2.7rem, 4.05vw, 5.5rem); }

@media (max-width: 1280px) {
  .service-panel ul { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .work-card,
  .work-card:nth-child(2),
  .work-card:nth-child(3),
  .work-card:nth-child(4),
  .work-card:nth-child(5) { grid-column: span 6; }
  .work-card-featured,
  .work-card:last-child { grid-column: 1 / -1; }
  .work-info,
  .work-card-featured .work-info,
  .work-card:last-child .work-info { grid-template-columns: minmax(0, 1fr); }
  .work-info > span,
  .work-card-featured .work-info > span,
  .work-card:last-child .work-info > span { text-align: left; }
}

@media (max-width: 1080px) {
  .ai { grid-template-columns: 1fr; }
  .service-panel { display: block; }
  .team-build { max-width: 100%; }
}

@media (max-width: 760px) {
  .hero-title { margin-left: -.055em; }
  .hero-thesis { white-space: normal; }
  .decision-copy h2 { margin-left: -.045em; }
  .decision-lede { font-size: clamp(.86rem, 4vw, 1rem); }
  .contact-intro h2 { font-size: clamp(2.25rem, 10.2vw, 4rem); }

  .ai-copy h2 { font-size: clamp(2.7rem, 12vw, 4.5rem); }
  .ai-lede { font-size: 1rem; }

  .services-heading h2 {
    font-size: clamp(2.25rem, 9.6vw, 3.4rem);
    letter-spacing: -.06em;
  }
  .services-intro { font-size: .96rem; }

  .service-layer summary {
    grid-template-areas:
      "number action toggle"
      ". title toggle"
      ". lede toggle";
  }
  .service-layer h3 { font-size: clamp(1.55rem, 7vw, 2.7rem); }
  .service-summary-lede {
    font-size: clamp(.58rem, 2.5vw, .72rem);
    letter-spacing: -.01em;
  }
  .service-layer[open] summary { min-height: 178px; }
  .service-panel ul { grid-template-columns: 1fr; }
  .service-panel li b { font-size: 1rem; }

  .team-build { gap: 6px; }
  .team-build .team-module {
    flex: 1 1 42%;
    min-height: 58px;
    padding: 13px 8px;
    font-size: .68rem;
  }
  .team-build .team-module:nth-child(6) { flex-grow: 1; }

  .work-head h2 {
    font-size: clamp(1.45rem, 6vw, 2.8rem);
    letter-spacing: -.06em;
  }
  .work-card-featured .work-media,
  .work-card:last-child .work-media { min-height: 0; aspect-ratio: 4 / 3; }
}
