:root {
  --black: #050505;
  --ink: #101110;
  --white: #fff;
  --soft: #f2f3f2;
  --line: #d9dbd8;
  --muted: #70736f;
  --green: #79dc54;
  --blue: #2d65d7;
  --lavender: #e9e7ff;
  --max: 1240px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font: 500 15px/1.45 Manrope, Inter, ui-sans-serif, system-ui, sans-serif;
  overflow-x: hidden;
}
body.case-modal-open { overflow: hidden; }
a { color: inherit; }
img { display: block; width: 100%; max-width: 100%; }
button, input, select, textarea { font: inherit; }
h1, h2, h3, p { overflow-wrap: anywhere; }
::selection { color: var(--black); background: var(--green); }

.page-loader {
  position: fixed;
  z-index: 999;
  inset: 0;
  display: grid;
  place-items: center;
  color: white;
  background: black;
  transition: opacity .65s ease .25s, visibility .65s ease .25s;
}
.page-loader span { font-size: 13px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.page-loader i { position: absolute; bottom: 0; left: 0; width: 100%; height: 3px; background: var(--green); transform: scaleX(0); transform-origin: left; animation: loadLine .9s cubic-bezier(.7,0,.2,1) forwards; }
.page-ready .page-loader { opacity: 0; visibility: hidden; }
@keyframes loadLine { to { transform: scaleX(1); } }

.site-shell { min-height: 100vh; }
.nav-wrap {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 50%;
  width: 100%;
  padding: 20px 26px;
  color: white;
  transform: translateX(-50%);
  transition: width .45s ease, top .45s ease, padding .45s ease, color .35s ease;
}
.nav-wrap.is-scrolled { top: 14px; width: min(950px, calc(100% - 32px)); padding: 0; }
.nav {
  width: 100%;
  min-height: 68px;
  display: grid;
  grid-template-columns: 150px 1fr 184px;
  align-items: center;
  gap: 20px;
  padding: 0 12px 0 4px;
  border: 1px solid transparent;
  border-radius: 42px;
  transition: background .45s ease, border-color .45s ease, box-shadow .45s ease, padding .45s ease;
}
.nav-wrap.is-scrolled .nav {
  padding-left: 18px;
  border-color: rgba(121,220,84,.48);
  background: rgba(18,20,18,.92);
  box-shadow: 0 12px 34px rgba(0,0,0,.2), 0 0 0 1px rgba(121,220,84,.08);
  backdrop-filter: blur(20px);
  animation: navBorderPulse 3.2s ease-in-out infinite;
}
.brand { display: inline-flex; align-items: center; width: 136px; height: 46px; }
.brand img { max-height: 45px; object-fit: contain; object-position: left center; filter: grayscale(1) brightness(0) invert(1); }
.nav-links { display: flex; align-items: center; justify-content: center; gap: 26px; }
.nav-links a { position: relative; color: white; text-decoration: none; font-size: 15px; font-weight: 700; white-space: nowrap; opacity: .86; transition: opacity .25s ease, transform .25s ease; }
.nav-links a:hover, .nav-links a.active { opacity: 1; transform: translateY(-1px); }
.nav-wrap.is-scrolled .nav-links a.active { color: var(--green); }
.nav-actions { display: flex; justify-content: flex-end; align-items: center; }
.button {
  position: relative;
  min-height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 14px 24px;
  border: 1px solid var(--black);
  border-radius: 999px;
  color: white;
  background: var(--black);
  text-decoration: none;
  font-size: 14px;
  font-weight: 800;
  white-space: nowrap;
  overflow: hidden;
  transition: color .25s ease, background .25s ease, transform .25s ease;
}
.button::after { content: ""; position: absolute; inset: 3px; border: 1px solid currentColor; border-radius: inherit; opacity: 0; transform: scale(.9); pointer-events: none; }
.button:hover::after { animation: buttonBorder .65s cubic-bezier(.2,.7,.2,1) both; }
.button i { font-style: normal; font-size: 18px; transition: transform .25s ease; }
.button:hover { transform: translateY(-2px); }
.button:hover i { transform: translateX(4px); }
.button.light, .button.nav-button { color: var(--black); border-color: white; background: white; }
.button.ghost { color: white; border-color: rgba(255,255,255,.5); background: transparent; }
.button.nav-button { min-height: 56px; padding-inline: 24px; font-size: 14px; }
.menu-toggle { display: none; }

.studio-hero {
  position: relative;
  width: 100%;
  max-width: none;
  margin-left: 0;
  min-height: 620px;
  color: white;
  background: #030b17;
  overflow: hidden;
  isolation: isolate;
}
.studio-hero::before {
  content: "";
  position: absolute;
  z-index: -3;
  inset: -4%;
  background-image: var(--hero-image);
  background-size: cover;
  background-position: center;
  transform: translate3d(0,var(--hero-y,0),0) scale(1.06);
  transition: transform .1s linear;
}
.studio-hero-home { height: 100svh; min-height: 800px; }
.studio-hero-home::before { display: none; }
.studio-hero-inner { height: 74svh; max-height: 760px; }
.studio-hero-inner::before { filter: saturate(.72) brightness(.56); }
.page-portfolio .studio-hero-inner::before { background-position: center 42%; filter: saturate(.65) brightness(.42); }
.hero-canvas {
  position: absolute;
  z-index: -2;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  background: #061326;
  touch-action: pan-y;
  cursor: grab;
  contain: strict;
}
.studio-hero-home.is-rotating-funnel, .studio-hero-home.is-rotating-funnel .hero-canvas { cursor: grabbing; }
.hero-shade { position: absolute; z-index: -1; inset: 0; background: linear-gradient(90deg,rgba(1,7,15,.72) 0%,rgba(2,10,20,.35) 49%,rgba(3,12,23,.18) 74%,rgba(2,8,16,.42) 100%); pointer-events: none; }
.hero-shade::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg,rgba(1,7,16,.14),transparent 34%,rgba(1,6,13,.4)); mix-blend-mode: multiply; }
.studio-hero-home .hero-shade {
  background:
    linear-gradient(90deg,rgba(0,4,11,.66) 0%,rgba(1,7,16,.5) 42%,rgba(2,10,20,.1) 63%,rgba(2,8,16,.03) 100%),
    radial-gradient(circle at 82% 48%,rgba(0,0,0,0),rgba(0,0,0,.05) 48%,rgba(0,0,0,.2) 100%);
}
.hero-funnel-backdrop { --funnel-x: 0px; --funnel-y: 0px; position: absolute; z-index: -2; inset: 0; overflow: hidden; background: radial-gradient(circle at 76% 48%,rgba(26,91,168,.2),transparent 38%),#030813; pointer-events: none; }
.funnel-starfield { position: absolute; inset: 0; opacity: .5; background-image: radial-gradient(circle,rgba(153,210,241,.55) 0 1px,transparent 1.5px); background-size: 118px 118px; transform: translate3d(calc(var(--funnel-x) * -.25),calc(var(--funnel-y) * -.25),0); transition: transform .08s linear; }
.funnel-map { position: absolute; inset: 0; width: calc(100% + 24px); height: 100%; transform: translate3d(calc(-12px + var(--funnel-x)),var(--funnel-y),0); transition: transform .08s linear; }
.funnel-visual-group { transform-origin: center; }
.funnel-stream-line { opacity: .4; stroke-dasharray: 8 18; animation: funnel-line-flow 8s linear infinite; }
.funnel-stream-line.is-green { opacity: .32; animation-duration: 10s; }
.funnel-stage-lines line { stroke: rgba(129,207,255,.15); stroke-width: 1; }
.converted-clients { position: absolute; inset: 0; transform: translate3d(calc(var(--funnel-x) * .55),calc(var(--funnel-y) * .45),0); transition: transform .08s linear; }
.converted-client { position: absolute; top: 54%; left: var(--client-x); width: 72px; height: 72px; display: grid; place-items: center; margin: 0; border: 1px solid color-mix(in srgb,var(--client-color) 72%,transparent); border-radius: 50%; opacity: 0; background: radial-gradient(circle at 36% 30%,color-mix(in srgb,var(--client-color) 22%,#102235),#07111d 72%); box-shadow: 0 0 0 6px color-mix(in srgb,var(--client-color) 7%,transparent),0 18px 48px rgba(0,0,0,.45),0 0 28px color-mix(in srgb,var(--client-color) 23%,transparent); animation: converted-client-rise 12s cubic-bezier(.2,.72,.2,1) infinite; animation-delay: var(--client-delay); }
.converted-client::after { content: ""; position: absolute; inset: 7px; border: 1px solid color-mix(in srgb,var(--client-color) 28%,transparent); border-radius: inherit; }
.converted-client-icon { position: relative; z-index: 1; display: grid; place-items: center; width: 38px; height: 38px; color: var(--client-color); }
.converted-client-icon svg { width: 100%; height: 100%; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; filter: drop-shadow(0 0 8px color-mix(in srgb,var(--client-color) 58%,transparent)); }
.funnel-moving-dots circle { filter: drop-shadow(0 0 7px rgba(86,213,255,.9)); }
.hero-funnel-backdrop.is-paused *, .hero-funnel-backdrop.is-reduced-motion * { animation-play-state: paused !important; }
.hero-funnel-backdrop.is-reduced-motion .converted-client { opacity: .78; transform: translate3d(var(--client-drift),var(--client-rest-y),0) scale(.9); }
@keyframes funnel-line-flow { to { stroke-dashoffset: -208; } }
@keyframes converted-client-rise {
  0%,12% { opacity: 0; transform: translate3d(0,38px,0) scale(.52); }
  24% { opacity: .96; transform: translate3d(0,-24px,0) scale(.84); }
  68% { opacity: .96; }
  100% { opacity: 0; transform: translate3d(var(--client-drift),-360px,0) scale(1.06); }
}
.hero-kicker { position: absolute; top: 116px; left: 34px; display: flex; align-items: center; gap: 12px; font-size: 12px; font-weight: 700; text-transform: uppercase; }
.hero-kicker i { width: 42px; height: 1px; background: rgba(255,255,255,.55); }
.hero-intro { position: absolute; left: 34px; bottom: 38px; width: 360px; }
.hero-intro > p { margin: 0 0 24px; font-size: 16px; line-height: 1.55; }
.rating { display: flex; align-items: center; gap: 16px; margin-bottom: 24px; }
.rating b { display: grid; place-items: center; width: 52px; height: 52px; border: 1px solid rgba(255,255,255,.4); border-radius: 50%; font-size: 15px; }
.rating span { color: rgba(255,255,255,.72); font-size: 12px; line-height: 1.35; text-transform: uppercase; }
.hero-intro > a, .human-copy > a, .split-copy > a, .case-card a, .intro-copy > a { display: inline-flex; gap: 12px; text-decoration: none; font-size: 14px; font-weight: 800; }
.hero-intro > a span, .human-copy > a span, .split-copy > a span, .case-card a span, .intro-copy > a span { transition: transform .25s ease; }
.hero-intro > a:hover span, .human-copy > a:hover span, .split-copy > a:hover span, .case-card a:hover span, .intro-copy > a:hover span { transform: translate(3px,-3px); }
.hero-services { position: absolute; bottom: 46px; left: 43%; display: grid; gap: 9px; }
.hero-services span { color: rgba(255,255,255,.38); font-size: 13px; transition: color .25s ease, transform .25s ease; }
.hero-services span:hover, .hero-services .active { color: white; transform: translateX(8px); }
.hero-title { position: absolute; right: 34px; bottom: 34px; width: min(42vw,620px); }
.hero-title > p { margin: 0 0 15px; font-size: 13px; font-weight: 700; text-transform: uppercase; }
.hero-title h1 { margin: 0; font-size: clamp(54px,5.4vw,82px); font-weight: 600; line-height: .94; letter-spacing: 0; }
.studio-hero-inner .hero-title { bottom: 45px; width: min(58vw,840px); }
.studio-hero-inner .hero-title h1 { font-size: clamp(48px,5.4vw,78px); }
.studio-hero-inner .hero-title h1 span { display: inline; color: var(--green); }
.studio-hero-home .hero-kicker { top: 24%; left: 7vw; }
.studio-hero-home .hero-copy-stack {
  position: absolute;
  z-index: 1;
  top: calc(31% - 24px);
  left: 7vw;
  width: 56vw;
  display: flex;
  flex-direction: column;
}
.studio-hero-home .hero-copy-stack .hero-title,
.studio-hero-home .hero-copy-stack .hero-intro {
  position: static;
  inset: auto;
  width: auto;
}
.studio-hero-home .hero-title h1 {
  font-size: clamp(58px,5.2vw,82px);
  line-height: .96;
}
.studio-hero-home .hero-copy-stack .hero-intro {
  width: min(560px,100%);
  margin-top: clamp(34px,4vh,52px);
}
.studio-hero-home .hero-services { display: none; }
.funnel-flow-labels { position: absolute; z-index: 0; top: 52%; right: 4.5vw; left: auto; display: flex; justify-content: space-between; width: min(46vw,690px); color: rgba(222,244,255,.7); font-size: 10px; font-weight: 700; text-transform: uppercase; pointer-events: none; }
.funnel-flow-labels span { display: inline-flex; align-items: center; gap: 8px; }
.funnel-flow-labels i { width: 6px; height: 6px; border-radius: 50%; background: #54d6ff; box-shadow: 0 0 18px rgba(84,214,255,.85); }
.funnel-flow-labels span:last-child i { background: var(--green); box-shadow: 0 0 18px rgba(121,220,84,.85); }
.hero-actions { display: flex; gap: 12px; margin-top: 26px; }
.hero-actions .button { min-height: 60px; padding: 16px 27px; font-size: 16px; }
.hero-scroll { position: absolute; right: 32px; top: 48%; display: flex; align-items: center; gap: 10px; color: white; text-decoration: none; font-size: 12px; font-weight: 700; text-transform: uppercase; transform: rotate(90deg) translateX(50%); transform-origin: right center; }
.funnel-sequence {
  position: absolute;
  z-index: 0;
  top: 165px;
  left: 34px;
  width: min(300px,26vw);
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 6px 14px;
  color: rgba(222,242,252,.74);
  pointer-events: none;
}
.funnel-sequence > span { font-size: 9px; font-weight: 800; letter-spacing: .08em; }
.funnel-sequence > strong { overflow: hidden; font-size: 10px; font-weight: 700; text-overflow: ellipsis; text-transform: uppercase; white-space: nowrap; }
.funnel-sequence > div { grid-column: 1 / -1; display: grid; grid-template-columns: repeat(20,1fr); gap: 3px; }
.funnel-sequence i { height: 2px; background: rgba(98,180,222,.15); transition: background .24s ease, box-shadow .24s ease, transform .24s ease; }
.funnel-sequence i.active { background: #70e4ff; box-shadow: 0 0 9px rgba(76,220,255,.72); transform: scaleY(1.8); }

.section-label { margin: 0; color: var(--muted); font-size: 10px; font-weight: 800; text-transform: uppercase; }
.intro-statement {
  max-width: var(--max);
  min-height: 620px;
  display: grid;
  grid-template-columns: 250px 1fr;
  gap: 7%;
  margin: 0 auto;
  padding: 125px 28px;
  align-items: start;
}
.intro-copy { max-width: 880px; }
.intro-copy h2 { margin: 0 0 42px; font-size: clamp(48px,5.3vw,76px); font-weight: 500; line-height: 1.02; letter-spacing: 0; }

.work-showcase {
  max-width: var(--max);
  display: grid;
  grid-template-columns: repeat(2,minmax(0,1fr));
  gap: 90px 42px;
  margin: 0 auto;
  padding: 0 28px 150px;
}
.work-card { display: block; color: var(--ink); text-decoration: none; }
.work-card:nth-child(even) { margin-top: 150px; }
.work-media { position: relative; height: 570px; margin: 0 0 18px; border-radius: 28px; background: var(--soft); overflow: hidden; }
.work-media img { height: 100%; object-fit: cover; transform: translate3d(var(--mx,0),var(--my,0),0) scale(1.04); transition: transform .45s cubic-bezier(.2,.7,.2,1); }
.work-card:first-child .work-media { background: #082d4d; }
.work-card:nth-child(3) .work-media { background: var(--lavender); }
.work-media::after { content: ""; position: absolute; inset: 0; border: 1px solid rgba(0,0,0,.08); border-radius: inherit; }
.work-media > span { position: absolute; right: 16px; bottom: 16px; padding: 9px 13px; border-radius: 999px; color: var(--black); background: white; font-size: 10px; font-weight: 800; }
.work-meta { display: flex; align-items: center; gap: 9px; color: #50534f; font-size: 10px; font-weight: 700; text-transform: uppercase; }
.work-meta i { width: 3px; height: 3px; border-radius: 50%; background: currentColor; }
.work-card h3 { max-width: 560px; margin: 12px 0 0; font-size: 22px; font-weight: 600; line-height: 1.2; }

.human-story { display: grid; grid-template-columns: 1.15fr .85fr; min-height: 760px; background: var(--soft); }
.human-photo { min-height: 680px; overflow: hidden; }
.human-photo img { height: 100%; object-fit: cover; }
.human-copy { align-self: center; padding: 80px 8%; }
.human-copy h2 { margin: 22px 0 28px; font-size: clamp(40px,4.2vw,62px); font-weight: 500; line-height: 1.02; }
.human-copy > p:not(.section-label) { max-width: 570px; margin: 0 0 34px; color: #555954; line-height: 1.65; }

.service-band { padding: 105px max(28px,calc((100% - var(--max))/2)); color: white; background: var(--black); }
.service-heading { display: grid; grid-template-columns: 230px 1fr; gap: 6%; margin-bottom: 65px; }
.service-heading .section-label { color: #858985; }
.service-heading h2 { max-width: 820px; margin: 0; font-size: clamp(46px,5.5vw,78px); font-weight: 500; line-height: 1.02; }
.service-row { min-height: 145px; display: grid; grid-template-columns: 110px 1fr 70px; align-items: center; border-top: 1px solid #2b2d2b; transition: color .25s ease, padding .3s ease; }
.service-row:last-child { border-bottom: 1px solid #2b2d2b; }
.service-row > span { color: #767976; font-size: 11px; }
.service-row h3 { margin: 0; font-size: clamp(48px,6.3vw,92px); font-weight: 400; line-height: 1; }
.service-row i { justify-self: end; font-style: normal; font-size: 32px; opacity: 0; transform: translate(-20px,20px); transition: opacity .25s ease, transform .25s ease; }
.service-row:hover { color: var(--green); padding-left: 14px; }
.service-row:hover i { opacity: 1; transform: translate(0,0); }

.proof-wall { padding: 130px max(28px,calc((100% - var(--max))/2)); }
.proof-wall > header { display: grid; grid-template-columns: 230px 1fr; gap: 6%; margin-bottom: 75px; }
.proof-wall h2 { margin: 0; font-size: clamp(48px,5vw,72px); font-weight: 500; line-height: 1.04; }
.proof-grid { display: grid; grid-template-columns: repeat(2,1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.proof-grid article { min-height: 285px; display: flex; flex-direction: column; padding: 30px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.proof-grid span, .proof-grid small { color: var(--muted); font-size: 10px; font-weight: 800; }
.proof-grid p { max-width: 480px; margin: auto 0; font-size: 26px; line-height: 1.22; }

.signal-strip { max-width: var(--max); margin: 0 auto; padding: 95px 28px 110px; }
.signal-strip > .section-label { margin-bottom: 45px; }
.signal-strip > div { display: grid; grid-template-columns: repeat(3,1fr); border-top: 1px solid var(--line); }
.signal-strip article { min-height: 250px; padding: 30px 28px; border-right: 1px solid var(--line); }
.signal-strip article:last-child { border-right: 0; }
.signal-strip article span { color: var(--muted); font-size: 10px; }
.signal-strip article h3 { margin: 72px 0 13px; font-size: 27px; font-weight: 600; }
.signal-strip article p { margin: 0; color: var(--muted); line-height: 1.6; }

.content-section, .process-section { max-width: var(--max); margin: 0 auto; padding: 105px 28px; }
.section-head { display: grid; grid-template-columns: 230px minmax(0,1fr); gap: 6%; margin-bottom: 70px; }
.section-head h2 { max-width: 850px; margin: 0; font-size: clamp(46px,5vw,70px); font-weight: 500; line-height: 1.03; }
.section-head > p:last-child { grid-column: 2; max-width: 690px; margin: 20px 0 0; color: var(--muted); line-height: 1.65; }
.editorial-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 75px 42px; }
.editorial-card:nth-child(even) { margin-top: 72px; }
.editorial-card figure { height: 430px; margin: 0 0 20px; border-radius: 28px; background: var(--soft); overflow: hidden; }
.editorial-card figure img { height: 100%; object-fit: cover; transform: translate3d(var(--mx,0),var(--my,0),0) scale(1.04); transition: transform .45s ease; }
.editorial-card h3 { margin: 14px 0 8px; font-size: 29px; font-weight: 600; line-height: 1.15; }
.editorial-card > p { margin: 0; color: var(--muted); line-height: 1.6; }

.split-story { display: grid; grid-template-columns: 1.08fr .92fr; min-height: 760px; background: var(--soft); }
.split-story.reverse figure { order: 2; }
.split-story figure { position: relative; min-height: 650px; margin: 0; overflow: hidden; }
.split-story figure img { height: 100%; object-fit: cover; }
.split-story figure > span { position: absolute; right: 20px; bottom: 20px; padding: 10px 14px; border-radius: 999px; color: var(--black); background: white; font-size: 10px; font-weight: 800; text-transform: uppercase; }
.split-copy { align-self: center; padding: 90px 11%; }
.split-copy h2 { margin: 22px 0 24px; font-size: clamp(42px,4.6vw,66px); font-weight: 500; line-height: 1.02; }
.split-copy > p:not(.section-label) { color: var(--muted); line-height: 1.65; }
.split-copy ul { display: grid; gap: 12px; margin: 28px 0 34px; padding: 0; list-style: none; }
.split-copy li { padding: 13px 0; border-bottom: 1px solid var(--line); }

.process-section { max-width: none; padding-right: max(28px,calc((100% - var(--max))/2)); padding-left: max(28px,calc((100% - var(--max))/2)); }
.process-list { border-top: 1px solid var(--line); }
.process-row { min-height: 170px; display: grid; grid-template-columns: 100px minmax(260px,.8fr) minmax(320px,1fr) 50px; gap: 30px; align-items: center; border-bottom: 1px solid var(--line); }
.process-row > span { color: var(--muted); font-size: 11px; }
.process-row h3 { margin: 0; font-size: clamp(36px,4vw,58px); font-weight: 500; line-height: 1; }
.process-row p { max-width: 520px; margin: 0; color: var(--muted); line-height: 1.6; }
.process-row i { justify-self: end; font-style: normal; font-size: 28px; transition: transform .25s ease; }
.process-row:hover i { transform: translate(6px,-6px); }

.internal-human { margin: 0; }
.portfolio-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 75px 42px; }
.portfolio-item:nth-child(even) { margin-top: 72px; }
.portfolio-case-trigger { width: 100%; display: block; margin: 0; padding: 0; border: 0; color: inherit; background: transparent; text-align: left; text-decoration: none; cursor: pointer; }
.portfolio-visual { position: relative; height: 440px; display: block; margin-bottom: 20px; border-radius: 28px; background: var(--lavender); overflow: hidden; }
.portfolio-visual img { height: 100%; padding: 7%; object-fit: contain; transition: transform .55s cubic-bezier(.2,.7,.2,1); }
.portfolio-item.official .portfolio-visual { background: #e9edf0; }
.portfolio-item.official .portfolio-visual img { padding: 0; object-fit: cover; }
.portfolio-visual small { position: absolute; z-index: 3; top: 16px; left: 16px; padding: 10px 13px; border-radius: 999px; color: white; background: rgba(8,9,8,.78); backdrop-filter: blur(8px); font-size: 9px; font-weight: 800; letter-spacing: 0; text-transform: uppercase; }
.portfolio-visual > span { position: absolute; z-index: 3; right: 16px; bottom: 16px; padding: 11px 15px; border-radius: 999px; color: var(--black); background: white; font-size: 11px; font-weight: 800; }
.portfolio-case-trigger:hover .portfolio-visual img { transform: scale(1.045) rotate(.4deg); }
.portfolio-title { display: block; margin: 14px 0 9px; font-size: 28px; font-weight: 600; line-height: 1.16; }
.portfolio-description { display: block; color: var(--muted); line-height: 1.65; }
.case-grid { display: grid; gap: 120px; }
.case-card { display: grid; grid-template-columns: 1.05fr .95fr; gap: 6%; align-items: center; }
.case-card:nth-child(even) figure { order: 2; }
.case-card figure { position: relative; height: 570px; margin: 0; border-radius: 28px; overflow: hidden; }
.case-card figure img { height: 100%; object-fit: cover; }
.case-card figure span { position: absolute; top: 20px; left: 20px; display: grid; place-items: center; width: 46px; height: 46px; border-radius: 50%; color: black; background: white; font-size: 11px; font-weight: 800; }
.case-card h3 { margin: 20px 0; font-size: clamp(39px,4.3vw,62px); font-weight: 500; line-height: 1.03; }
.case-card > div > p:not(.section-label) { margin-bottom: 30px; color: var(--muted); line-height: 1.65; }

.case-study-hero { position: relative; height: 76svh; min-height: 650px; color: white; background: #080908; overflow: hidden; isolation: isolate; }
.case-study-hero::before { display: none; content: ""; position: absolute; z-index: -2; inset: -4%; background-image: var(--case-cover); background-size: cover; background-position: var(--case-position,center); filter: saturate(.82) contrast(1.04); transform: translate3d(0,var(--hero-y,0),0) scale(1.05); }
.case-study-shade { position: absolute; z-index: -1; inset: 0; background: linear-gradient(90deg,rgba(8,7,15,.58) 0%,rgba(8,7,15,.24) 54%,rgba(8,7,15,.18) 100%); }
.case-study-hero-meta { position: absolute; top: 125px; right: 34px; left: 34px; display: flex; justify-content: space-between; gap: 20px; font-size: 10px; font-weight: 800; text-transform: uppercase; }
.case-study-hero-copy { position: absolute; right: 34px; bottom: 42px; left: 34px; }
.case-study-hero-copy > p { margin: 0 0 17px; font-size: 11px; font-weight: 800; text-transform: uppercase; }
.case-study-hero-copy h1 { max-width: 1080px; margin: 0; font-size: clamp(56px,6.3vw,92px); font-weight: 500; line-height: .95; }
.case-study-hero-copy a { display: inline-flex; gap: 12px; margin-top: 30px; color: white; text-decoration: none; font-size: 13px; font-weight: 800; }
.page-ready .case-study-hero-meta, .page-ready .case-study-hero-copy { animation: heroRise .9s cubic-bezier(.2,.7,.2,1) both; }
.page-ready .case-study-hero-copy { animation-delay: .15s; }

.case-study-intro { max-width: var(--max); margin: 0 auto; padding: 120px 28px 105px; }
.case-study-intro-copy { display: grid; grid-template-columns: 220px minmax(0,1fr); gap: 6%; }
.case-study-intro-copy h2 { max-width: 930px; margin: 0; font-size: clamp(48px,5.2vw,74px); font-weight: 500; line-height: 1.03; }
.case-study-intro-copy > p:last-child { grid-column: 2; max-width: 720px; margin: 28px 0 0; color: var(--muted); line-height: 1.65; }
.case-source-note a, .case-results-disclaimer a { color: var(--black); font-weight: 800; text-underline-offset: 4px; }
.case-study-meta { display: grid; grid-template-columns: repeat(4,1fr); margin-top: 90px; border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.case-study-meta > div { min-height: 145px; display: flex; flex-direction: column; justify-content: space-between; padding: 24px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.case-study-meta span { color: var(--muted); font-size: 10px; font-weight: 800; text-transform: uppercase; }
.case-study-meta strong { font-size: 18px; font-weight: 600; }

.case-study-artifact { padding: 100px max(28px,calc((100% - var(--max))/2)); background: #edf0ec; }
.case-study-artifact > div { display: flex; justify-content: space-between; gap: 25px; margin-bottom: 45px; }
.case-study-artifact > div > span { color: var(--muted); font-size: 12px; }
.case-study-artifact figure { margin: 0; padding: 5%; border-radius: 28px; background: white; overflow: hidden; }
.case-study-artifact img { max-height: 920px; object-fit: contain; }

.case-study-objectives { max-width: var(--max); margin: 0 auto; padding: 120px 28px; }
.case-study-objectives > header { display: grid; grid-template-columns: 220px 1fr; gap: 6%; margin-bottom: 70px; }
.case-study-objectives h2 { max-width: 800px; margin: 0; font-size: clamp(48px,5.1vw,72px); font-weight: 500; line-height: 1.03; }
.case-study-objectives > div { display: grid; grid-template-columns: repeat(3,1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.case-study-objectives article { min-height: 320px; display: flex; flex-direction: column; padding: 28px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.case-study-objectives article > span { color: var(--muted); font-size: 10px; }
.case-study-objectives article h3 { margin: auto 0 15px; font-size: 28px; font-weight: 600; line-height: 1.15; }
.case-study-objectives article p { margin: 0; color: var(--muted); line-height: 1.65; }

.case-study-problem { min-height: 680px; display: grid; align-content: center; padding: 110px max(28px,calc((100% - var(--max))/2)); color: white; background: var(--black); }
.case-study-problem .section-label { color: #858985; }
.case-study-problem h2 { max-width: 1150px; margin: 38px 0 0; font-size: clamp(54px,6.6vw,96px); font-weight: 500; line-height: .99; }

.case-study-chapter { display: grid; grid-template-columns: 1.08fr .92fr; min-height: 760px; background: var(--soft); }
.case-study-chapter:nth-of-type(even) { background: white; }
.case-study-chapter.reverse figure { order: 2; }
.case-study-chapter figure { position: relative; min-height: 680px; margin: 0; overflow: hidden; }
.case-study-chapter figure img { height: 108%; object-fit: cover; transform: translate3d(0,var(--parallax-y,0),0) scale(1.04); }
.case-study-chapter figure > span { position: absolute; top: 24px; left: 24px; display: grid; place-items: center; width: 48px; height: 48px; border-radius: 50%; color: var(--black); background: white; font-size: 11px; font-weight: 800; }
.case-study-chapter .case-chapter-artifact { padding: 6%; background: #e7ebe6; }
.case-study-chapter .case-chapter-artifact img { height: 100%; object-fit: contain; transform: none; }
.case-study-chapter > div { align-self: center; padding: 90px 11%; }
.case-study-chapter h2 { margin: 22px 0 25px; font-size: clamp(44px,4.7vw,68px); font-weight: 500; line-height: 1.02; }
.case-study-chapter > div > p:last-child { color: var(--muted); font-size: 17px; line-height: 1.75; }

.case-study-deliverables { padding: 120px max(28px,calc((100% - var(--max))/2)); color: white; background: var(--black); }
.case-study-deliverables > header { display: grid; grid-template-columns: 220px 1fr; gap: 6%; margin-bottom: 70px; }
.case-study-deliverables .section-label { color: #858985; }
.case-study-deliverables h2 { max-width: 850px; margin: 0; font-size: clamp(48px,5.2vw,74px); font-weight: 500; line-height: 1.02; }
.case-deliverable-list { border-top: 1px solid #2b2d2b; }
.case-deliverable-list > div { min-height: 115px; display: grid; grid-template-columns: 100px 1fr 35px; align-items: center; border-bottom: 1px solid #2b2d2b; }
.case-deliverable-list span { color: #777a77; font-size: 10px; }
.case-deliverable-list strong { font-size: clamp(28px,3.1vw,44px); font-weight: 500; }
.case-deliverable-list i { justify-self: end; font-style: normal; font-size: 24px; }

.case-study-evidence { max-width: var(--max); margin: 0 auto; padding: 120px 28px 140px; }
.case-study-evidence > header { display: grid; grid-template-columns: 220px 1fr; gap: 6%; margin-bottom: 75px; }
.case-study-evidence h2 { max-width: 900px; margin: 0; font-size: clamp(46px,5vw,70px); font-weight: 500; line-height: 1.03; }
.case-study-evidence > div { display: grid; grid-template-columns: repeat(3,1fr); border-top: 1px solid var(--line); }
.case-study-evidence article { min-height: 250px; padding: 28px; border-right: 1px solid var(--line); }
.case-study-evidence article:last-child { border-right: 0; }
.case-study-evidence article span { color: var(--muted); font-size: 10px; font-weight: 800; text-transform: uppercase; }
.case-study-evidence article p { margin: 75px 0 0; font-size: 24px; line-height: 1.3; }
.case-results-disclaimer { max-width: 840px; margin: 44px 0 0; color: var(--muted); font-size: 13px; line-height: 1.7; }

.case-study-next { position: relative; min-height: 680px; display: flex; flex-direction: column; justify-content: flex-end; gap: 22px; padding: 70px max(28px,calc((100% - var(--max))/2)); color: white; background: #080908; text-decoration: none; overflow: hidden; isolation: isolate; }
.case-study-next::before { content: ""; position: absolute; z-index: -2; inset: 0; background-image: var(--next-cover); background-size: cover; background-position: center; transition: transform .8s cubic-bezier(.2,.7,.2,1); }
.case-study-next::after { content: ""; position: absolute; z-index: -1; inset: 0; background: rgba(0,0,0,.58); }
.case-study-next:hover::before { transform: scale(1.035); }
.case-study-next > span { font-size: 10px; font-weight: 800; text-transform: uppercase; }
.case-study-next strong { max-width: 1050px; font-size: clamp(56px,7vw,102px); font-weight: 500; line-height: .95; }
.case-study-next i { position: absolute; right: max(28px,calc((100% - var(--max))/2)); bottom: 75px; font-style: normal; font-size: 40px; }

.application-section { display: grid; grid-template-columns: .78fr 1.22fr; gap: 8%; padding: 130px max(28px,calc((100% - var(--max))/2)); background: var(--soft); }
.application-intro .section-head { display: block; margin: 0; }
.application-intro .section-head h2 { margin: 20px 0; font-size: clamp(44px,4.6vw,66px); }
.application-intro .section-head > p:last-child { margin: 0; }
.application-intro > p { color: var(--muted); line-height: 1.65; }
.application-form { display: grid; grid-template-columns: repeat(2,1fr); gap: 32px 22px; }
.application-form label { display: grid; gap: 9px; }
.application-form label.full { grid-column: 1 / -1; }
.application-form label span { font-size: 10px; font-weight: 800; text-transform: uppercase; }
.application-form input, .application-form select, .application-form textarea { width: 100%; padding: 15px 0; border: 0; border-bottom: 1px solid #aeb1ad; border-radius: 0; outline: none; background: transparent; }
.application-form input:focus, .application-form select:focus, .application-form textarea:focus { border-color: var(--black); }
.form-submit { width: fit-content; border: 0; cursor: pointer; }
.form-status { align-self: center; margin: 0; color: #286d2e; font-size: 12px; }

.journal-intro {
  max-width: var(--max);
  display: grid;
  grid-template-columns: 240px minmax(0,1fr);
  gap: 7%;
  margin: 0 auto;
  padding: 120px 28px 105px;
}
.journal-intro-copy { max-width: 880px; }
.journal-intro-copy h2 { margin: 0 0 28px; font-size: 64px; font-weight: 500; line-height: 1.02; }
.journal-intro-copy p { max-width: 690px; margin: 0; color: var(--muted); font-size: 17px; line-height: 1.7; }
.journal-feature {
  max-width: var(--max);
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: 6%;
  align-items: center;
  margin: 0 auto;
  padding: 0 28px 140px;
}
.journal-feature-media { position: relative; height: 590px; overflow: hidden; border-radius: 6px; background: #edf0ec; }
.journal-feature-media img { height: 100%; object-fit: cover; transition: transform .7s cubic-bezier(.2,.7,.2,1); }
.journal-feature-media:hover img { transform: scale(1.025); }
.journal-feature-media > span { position: absolute; top: 18px; left: 18px; padding: 8px 11px; color: white; background: rgba(5,5,5,.82); font-size: 10px; font-weight: 800; text-transform: uppercase; }
.journal-meta { display: flex; flex-wrap: wrap; align-items: center; gap: 9px; color: var(--muted); font-size: 10px; font-weight: 800; text-transform: uppercase; }
.journal-meta i { width: 3px; height: 3px; border-radius: 50%; background: currentColor; }
.journal-feature-copy h2 { margin: 24px 0; font-size: 50px; font-weight: 500; line-height: 1.02; }
.journal-feature-copy h2 a { text-decoration: none; }
.journal-feature-copy > p { margin: 0 0 30px; color: var(--muted); font-size: 16px; line-height: 1.7; }
.journal-read { display: inline-flex; gap: 12px; font-weight: 800; text-decoration: none; }
.journal-read span { transition: transform .25s ease; }
.journal-read:hover span { transform: translate(3px,-3px); }
.journal-paths { padding: 120px max(28px,calc((100% - var(--max))/2)) 145px; background: var(--soft); }
.journal-paths header { max-width: 860px; margin: 0 0 70px; }
.journal-paths header h2 { margin: 16px 0 0; font-size: 58px; font-weight: 500; line-height: 1.03; }
.journal-path-grid { display: grid; grid-template-columns: repeat(3,1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.journal-path-grid a { min-height: 390px; display: flex; flex-direction: column; padding: 30px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); text-decoration: none; transition: color .3s ease, background .3s ease; }
.journal-path-grid a:hover { color: white; background: var(--ink); }
.journal-path-grid span { color: var(--muted); font-size: 10px; font-weight: 800; text-transform: uppercase; }
.journal-path-grid h3 { margin: auto 0 22px; font-size: 34px; font-weight: 500; line-height: 1.05; }
.journal-path-grid p { margin: 0 0 28px; color: var(--muted); line-height: 1.65; }
.journal-path-grid b { font-size: 12px; }

.article-shell { max-width: var(--max); margin: 0 auto; padding: 105px 28px 150px; }
.article-header { max-width: 850px; margin: 0 auto 105px; }
.article-header > p { margin: 28px 0 0; font-size: 25px; font-weight: 500; line-height: 1.55; }
.article-layout { display: grid; grid-template-columns: 230px minmax(0,760px); gap: 8%; justify-content: center; align-items: start; }
.article-rail { position: sticky; top: 120px; display: grid; gap: 13px; padding-top: 18px; border-top: 1px solid var(--ink); }
.article-rail span { margin-bottom: 7px; color: var(--muted); font-size: 10px; font-weight: 800; text-transform: uppercase; }
.article-rail a { color: #4e524d; font-size: 12px; text-decoration: none; transition: color .2s ease, transform .2s ease; }
.article-rail a:hover { color: var(--ink); transform: translateX(4px); }
.article-body { min-width: 0; }
.article-body section { scroll-margin-top: 120px; margin: 0 0 105px; }
.article-kicker { margin: 0 0 18px !important; color: #518142 !important; font-size: 10px !important; font-weight: 800; text-transform: uppercase; }
.article-body h2 { margin: 0 0 34px; font-size: 50px; font-weight: 500; line-height: 1.04; }
.article-body h3 { font-weight: 600; }
.article-body p, .article-body li { color: #525650; font-size: 17px; line-height: 1.78; }
.article-body p { margin: 0 0 25px; }
.article-body a { color: var(--ink); font-weight: 800; text-underline-offset: 4px; }
.article-body ul { display: grid; gap: 15px; margin: 30px 0; padding-left: 22px; }
.article-body blockquote { margin: 45px 0; padding: 8px 0 8px 30px; border-left: 4px solid var(--green); font-size: 30px; font-weight: 500; line-height: 1.38; }
.article-figure { margin: 0 0 105px; }
.article-figure img { min-height: 420px; object-fit: cover; border-radius: 6px; }
.article-figure figcaption { margin-top: 12px; color: var(--muted); font-size: 11px; }
.article-comparison { display: grid; grid-template-columns: 1fr 1fr; margin: 38px 0; border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.article-comparison > div { padding: 28px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.article-comparison span { color: var(--muted); font-size: 10px; font-weight: 800; text-transform: uppercase; }
.article-comparison p { margin: 42px 0 0; color: var(--ink); font-size: 20px; line-height: 1.45; }
.article-steps { margin: 40px 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.article-steps li { display: grid; grid-template-columns: 140px 1fr; gap: 30px; padding: 22px 0; border-bottom: 1px solid var(--line); }
.article-steps b { color: var(--ink); }
.article-timeline { margin: 40px 0; border-top: 1px solid var(--line); }
.article-timeline > div { display: grid; grid-template-columns: 90px 180px 1fr; gap: 24px; padding: 24px 0; border-bottom: 1px solid var(--line); }
.article-timeline span { color: #518142; font-size: 10px; font-weight: 800; text-transform: uppercase; }
.article-timeline h3 { margin: 0; font-size: 17px; }
.article-timeline p { margin: 0; font-size: 15px; }
.article-faq details { border-top: 1px solid var(--line); }
.article-faq details:last-child { border-bottom: 1px solid var(--line); }
.article-faq summary { padding: 24px 0; cursor: pointer; font-size: 18px; font-weight: 700; }
.article-faq details p { padding: 0 0 24px; }
.article-next { padding: 115px max(28px,calc((100% - var(--max))/2)) 135px; background: var(--soft); }
.article-next > div { display: grid; grid-template-columns: 1fr 1fr; margin-top: 55px; border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.article-next a { min-height: 330px; display: flex; flex-direction: column; padding: 30px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); text-decoration: none; }
.article-next span { color: var(--muted); font-size: 10px; font-weight: 800; text-transform: uppercase; }
.article-next h2 { margin: auto 0 25px; font-size: 40px; font-weight: 500; line-height: 1.05; }
.article-next b { font-size: 12px; }

.closing-cta { color: white; background: black; overflow: hidden; }
.marquee { padding: 25px 0; border-bottom: 1px solid #292b29; overflow: hidden; }
.marquee span { display: block; width: max-content; font-size: clamp(80px,12vw,180px); font-weight: 500; line-height: .88; white-space: nowrap; animation: marquee 24s linear infinite; }
@keyframes marquee { to { transform: translateX(-50%); } }
.closing-inner { min-height: 600px; display: grid; grid-template-columns: 1fr auto; gap: 7%; align-items: center; padding: 95px max(28px,calc((100% - var(--max))/2)); }
.closing-inner .section-label { color: #858985; }
.closing-inner h2 { max-width: 900px; margin: 20px 0; font-size: clamp(52px,6.2vw,88px); font-weight: 500; line-height: .98; }
.closing-inner p:not(.section-label) { max-width: 660px; color: #9b9e9a; }
.closing-inner > div:last-child { display: grid; gap: 10px; }

.site-footer { display: grid; grid-template-columns: 1.35fr repeat(3,.65fr); gap: 5%; padding: 100px max(28px,calc((100% - var(--max))/2)) 35px; color: #b6b9b5; background: black; border-top: 1px solid #292b29; }
.footer-brand { display: block; width: 170px; }
.footer-brand img { filter: grayscale(1) brightness(0) invert(1); }
.footer-pitch p { max-width: 330px; margin: 35px 0; color: #858985; }
.footer-pitch strong { color: white; font-size: 27px; font-weight: 500; }
.footer-column { display: grid; align-content: start; gap: 13px; }
.footer-column h3 { margin: 0 0 18px; color: white; font-size: 12px; }
.footer-column a { color: #8f928e; text-decoration: none; font-size: 12px; }
.footer-column a:hover { color: white; }
.footer-bottom { grid-column: 1 / -1; display: flex; justify-content: space-between; margin-top: 80px; padding-top: 25px; border-top: 1px solid #292b29; font-size: 10px; text-transform: uppercase; }

.case-modal { position: fixed; z-index: 500; inset: 0; display: grid; place-items: center; padding: 28px; background: rgba(0,0,0,.82); opacity: 0; visibility: hidden; transition: opacity .35s ease, visibility .35s ease; }
.case-modal[aria-hidden="false"] { opacity: 1; visibility: visible; }
.case-modal-dialog { position: relative; width: min(1200px,100%); max-height: calc(100vh - 56px); display: grid; grid-template-columns: .9fr 1.1fr; border-radius: 28px; background: white; overflow: hidden; transform: translateY(34px) scale(.98); transition: transform .55s cubic-bezier(.2,.7,.2,1); }
.case-modal[aria-hidden="false"] .case-modal-dialog { transform: translateY(0) scale(1); }
.case-modal-media { position: relative; min-height: 650px; background: #eef0ed; overflow: hidden; }
.case-modal-media img { height: 100%; padding: 7%; object-fit: contain; transition: transform .7s cubic-bezier(.2,.7,.2,1); }
.case-modal[aria-hidden="false"] .case-modal-media img { transform: scale(1.025); }
.case-modal-media > span { position: absolute; left: 22px; bottom: 22px; display: grid; place-items: center; min-width: 66px; height: 38px; padding: 0 14px; border-radius: 999px; color: var(--black); background: white; font-size: 11px; font-weight: 800; }
.case-modal-copy { padding: 52px; overflow-y: auto; }
.case-modal-copy h2 { margin: 18px 0 20px; font-size: clamp(38px,4vw,58px); font-weight: 500; line-height: 1.02; }
.case-modal-summary { margin: 0 0 30px; color: #4e514e; font-size: 17px; line-height: 1.6; }
.case-modal-details > div { display: grid; grid-template-columns: 110px 1fr; gap: 20px; padding: 20px 0; border-top: 1px solid var(--line); }
.case-modal-details span { color: var(--muted); font-size: 10px; font-weight: 800; text-transform: uppercase; }
.case-modal-details p { margin: 0; color: #4f524f; line-height: 1.6; }
.case-modal-tags { display: flex; flex-wrap: wrap; gap: 8px; margin: 28px 0; }
.case-modal-tags span { padding: 9px 12px; border: 1px solid var(--line); border-radius: 999px; font-size: 11px; font-weight: 700; }
.case-modal-close { position: absolute; z-index: 4; top: 16px; right: 16px; width: 46px; height: 46px; display: grid; place-items: center; padding: 0; border: 0; border-radius: 50%; color: var(--black); background: white; box-shadow: 0 8px 24px rgba(0,0,0,.12); font-size: 30px; line-height: 1; cursor: pointer; transition: transform .25s ease; }
.case-modal-close:hover { transform: rotate(90deg); }

.reveal { opacity: 1; transform: translateY(24px); transition: opacity .75s ease var(--delay,0ms), transform .75s cubic-bezier(.2,.7,.2,1) var(--delay,0ms); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.service-row.reveal { transform: translateX(-28px); }
.service-row.reveal:nth-child(even) { transform: translateX(28px); }
.service-row.reveal.visible, .process-row.reveal.visible { transform: translateX(0); }
.process-row.reveal { transform: translateX(30px); }
.section-head.reveal, .service-heading.reveal { transform: translateY(24px); transition: transform .85s cubic-bezier(.2,.7,.2,1) var(--delay,0ms); }
.section-head.reveal.visible, .service-heading.reveal.visible { transform: translateY(0); }
.proof-grid article.reveal, .signal-strip article.reveal { transform: scale(.96) translateY(24px); }
.proof-grid article.reveal.visible, .signal-strip article.reveal.visible { transform: scale(1) translateY(0); }
.work-media::before, .editorial-card figure::before, .portfolio-visual::before { content: ""; position: absolute; z-index: 2; inset: 0; border: 1px solid rgba(16,17,16,.2); border-radius: inherit; background: transparent; opacity: 0; transform: scale(.94); transition: opacity .8s ease var(--delay,0ms), transform 1s cubic-bezier(.2,.7,.2,1) var(--delay,0ms); pointer-events: none; }
.work-card.visible .work-media::before, .editorial-card.visible figure::before, .portfolio-item.visible .portfolio-visual::before { opacity: 1; transform: scale(1); }
.human-photo, .split-story figure, .case-card figure { position: relative; }
.human-photo img, .split-story figure img, .case-card figure img { height: 108%; transform: translate3d(0,var(--parallax-y,0),0) scale(1.04); will-change: transform; }
.human-photo::after, .split-story figure::after, .case-card figure::after { content: ""; position: absolute; z-index: 2; inset: 0; background: rgba(255,255,255,.12); transform: translateX(-100%); transition: transform 1.05s cubic-bezier(.2,.7,.2,1); pointer-events: none; }
.human-photo.visible::after, .split-story figure.visible::after, .case-card.visible figure::after { transform: translateX(100%); }
.page-ready .nav { animation: navEnter .8s cubic-bezier(.2,.7,.2,1) both; }
.page-ready .hero-kicker, .page-ready .hero-intro, .page-ready .hero-title { animation: heroRise .85s cubic-bezier(.2,.7,.2,1) both; }
.page-ready .hero-intro { animation-delay: .12s; }
.page-ready .hero-title { animation-delay: .22s; }
@keyframes navEnter { from { opacity: 0; transform: translateY(-18px); } }
@keyframes heroRise { from { opacity: 0; transform: translateY(28px); } }
@keyframes navBorderPulse {
  0%, 100% { border-color: rgba(121,220,84,.42); box-shadow: 0 12px 34px rgba(0,0,0,.2), 0 0 0 1px rgba(121,220,84,.08); }
  50% { border-color: rgba(255,255,255,.66); box-shadow: 0 12px 34px rgba(0,0,0,.24), 0 0 0 2px rgba(121,220,84,.13); }
}
@keyframes buttonBorder {
  0% { opacity: 0; transform: scale(.9); }
  55% { opacity: .45; }
  100% { opacity: 0; transform: scale(1); }
}

@media (max-width: 1120px) {
  .nav-wrap.is-scrolled { width: min(900px,calc(100% - 32px)); }
  .nav { grid-template-columns: 130px 1fr 164px; gap: 12px; }
  .nav-links { gap: 14px; }
  .nav-links a { font-size: 14px; }
  .hero-intro { width: 300px; }
  .hero-services { left: 36%; }
  .work-media { height: 470px; }
  .service-row { grid-template-columns: 70px 1fr 50px; }
  .process-row { grid-template-columns: 60px minmax(230px,.8fr) minmax(280px,1fr) 40px; }
}

@media (max-width: 900px) and (min-width: 761px) {
  .nav { grid-template-columns: 120px 1fr 154px; gap: 8px; }
  .brand { width: 110px; }
  .nav-links { gap: 10px; }
  .nav-links a { font-size: 13px; }
  .button.nav-button { padding-inline: 16px; font-size: 13px; }
  .studio-hero-home { min-height: 880px; }
  .case-modal-dialog { grid-template-columns: .82fr 1.18fr; }
  .case-modal-copy { padding: 40px 34px; }
}

@media (max-width: 760px) {
  .nav-wrap { padding: 14px 15px; }
  .nav-wrap.is-scrolled { top: 14px; width: calc(100% - 28px); }
  .nav { min-height: 60px; grid-template-columns: 1fr auto; padding: 0 14px !important; border-color: transparent; background: transparent; box-shadow: none; backdrop-filter: none; }
  .brand { width: 116px; height: 38px; }
  .nav-links { position: absolute; top: 68px; right: 0; left: 0; display: grid; gap: 0; padding: 14px; border-radius: 24px; background: rgba(15,15,15,.96); opacity: 0; visibility: hidden; transform: translateY(-8px); transition: opacity .25s ease, visibility .25s ease, transform .25s ease; }
  .nav-links.open { opacity: 1; visibility: visible; transform: translateY(0); }
  .nav-links a { padding: 15px 8px; font-size: 15px; }
  .nav-links a::after { display: none; }
  .nav-actions .nav-button { display: none; }
  .menu-toggle { width: 42px; height: 42px; display: grid; place-content: center; gap: 7px; padding: 0; border: 0; color: white; background: transparent; }
  .menu-toggle span { width: 27px; height: 1px; background: white; transition: transform .25s ease; }
  .menu-toggle.open span:first-child { transform: translateY(4px) rotate(45deg); }
  .menu-toggle.open span:last-child { transform: translateY(-4px) rotate(-45deg); }

  .studio-hero-home { height: 1320px; min-height: 1320px; }
  .studio-hero-inner { height: 800px; min-height: 800px; }
  .studio-hero::before { inset: 0; background-position: 64% center; transform: translate3d(0,var(--hero-y,0),0) scale(1.08); }
  .studio-hero-inner::before { background-position: center; }
  .hero-people { inset: 54px -90px 0; grid-template-rows: 1fr 1.08fr; gap: 9px; transform: rotate(-3deg) scale(1.05); }
  .hero-people-segment { gap: 9px; padding-right: 9px; }
  .hero-person-tile { width: 310px; border-radius: 4px; }
  .hero-person-tile:nth-child(3n+2) { width: 360px; }
  .hero-person-tile:nth-child(3n) { width: 330px; }
  .hero-shade { background: linear-gradient(180deg,rgba(1,7,16,.54) 0%,rgba(2,11,22,.25) 39%,rgba(2,9,18,.76) 73%,rgba(1,6,13,.94) 100%); }
  .studio-hero-home .hero-shade { background: linear-gradient(180deg,rgba(1,8,17,.05) 0%,rgba(2,12,24,.12) 36%,rgba(2,10,20,.7) 55%,rgba(1,6,13,.94) 100%); }
  .funnel-map { top: 105px; height: 565px; }
  .converted-client { top: 43%; width: 50px; height: 50px; }
  .converted-client-icon { width: 27px; height: 27px; }
  .converted-client:nth-child(n+4) { display: none; }
  .hero-kicker { top: 100px; left: 22px; }
  .hero-intro { right: 22px; bottom: 36px; left: 22px; width: auto; }
  .hero-services { display: none; }
  .hero-title { right: 22px; bottom: 305px; left: 22px; width: auto; }
  .hero-title h1, .studio-hero-inner .hero-title h1 { font-size: 48px; line-height: .96; }
  .studio-hero-home .hero-kicker { top: 500px; left: 22px; }
  .studio-hero-home .hero-copy-stack { top: 550px; right: 22px; left: 22px; width: auto; }
  .studio-hero-home .hero-title h1 { font-size: 48px; }
  .studio-hero-home .hero-copy-stack .hero-intro { width: auto; margin-top: 48px; }
  .studio-hero-inner .hero-title { right: 22px; bottom: 270px; left: 22px; width: auto; }
  .studio-hero-inner .hero-kicker { display: none; }
  .studio-hero-inner .hero-title { top: 108px; bottom: auto; }
  .studio-hero-inner .hero-title h1 { font-size: 42px; }
  .studio-hero-inner .hero-intro { bottom: 30px; }
  .hero-actions { flex-wrap: wrap; }
  .hero-actions .button { min-height: 54px; padding: 13px 20px; font-size: 14px; }
  .hero-scroll { display: none; }
  .funnel-sequence { display: none; }

  .intro-statement { min-height: auto; display: block; padding: 95px 22px 105px; }
  .intro-statement > .section-label { margin-bottom: 34px; }
  .intro-copy h2 { margin-bottom: 34px; font-size: 43px; }
  .work-showcase, .editorial-grid, .portfolio-grid { grid-template-columns: 1fr; gap: 65px; padding-right: 22px; padding-left: 22px; }
  .work-card:nth-child(even), .editorial-card:nth-child(even), .portfolio-item:nth-child(even) { margin-top: 0; }
  .work-media { height: 390px; border-radius: 24px; }
  .work-card h3 { font-size: 19px; }
  .human-story, .split-story { grid-template-columns: 1fr; min-height: auto; }
  .human-photo, .split-story figure { min-height: 470px; }
  .human-copy, .split-copy { padding: 75px 22px 90px; }
  .human-copy h2, .split-copy h2 { font-size: 42px; }
  .split-story.reverse figure { order: initial; }
  .service-band, .proof-wall { padding: 95px 22px; }
  .service-heading, .proof-wall > header, .section-head { display: block; margin-bottom: 58px; }
  .service-heading .section-label, .proof-wall .section-label, .section-head .section-label { margin-bottom: 24px; }
  .service-heading h2, .proof-wall h2, .section-head h2 { font-size: 43px; }
  .service-row { min-height: 110px; grid-template-columns: 42px 1fr 28px; }
  .service-row.reveal, .service-row.reveal:nth-child(even), .process-row.reveal { transform: translateY(28px); }
  .service-row.reveal.visible, .process-row.reveal.visible { transform: translateY(0); }
  .service-row h3 { font-size: 36px; }
  .service-row i { font-size: 20px; }
  .proof-grid { grid-template-columns: 1fr; }
  .proof-grid article { min-height: 220px; padding: 24px; }
  .proof-grid p { font-size: 22px; }
  .signal-strip { padding: 90px 22px; }
  .signal-strip > div { grid-template-columns: 1fr; }
  .signal-strip article { min-height: 230px; border-right: 0; border-bottom: 1px solid var(--line); }
  .signal-strip article h3 { margin-top: 48px; }
  .content-section, .process-section { padding: 95px 22px; }
  .section-head > p:last-child { margin: 24px 0 0; }
  .editorial-card figure { height: 330px; border-radius: 24px; }
  .process-row { min-height: 230px; grid-template-columns: 40px 1fr 25px; gap: 14px; padding: 25px 0; }
  .process-row h3 { font-size: 34px; }
  .process-row p { grid-column: 2 / -1; }
  .process-row i { grid-column: 3; grid-row: 1; }
  .portfolio-visual { height: 330px; border-radius: 24px; }
  .portfolio-title { font-size: 25px; }
  .case-grid { gap: 85px; }
  .case-card { grid-template-columns: 1fr; gap: 40px; }
  .case-card:nth-child(even) figure { order: initial; }
  .case-card figure { height: 390px; border-radius: 24px; }
  .case-card h3 { font-size: 39px; }
  .case-study-hero { height: 680px; min-height: 680px; }
  .case-study-hero::before { inset: 0; background-position: var(--case-position,center); }
  .case-study-hero-meta { top: 95px; right: 22px; left: 22px; }
  .case-study-hero-meta span:last-child { display: none; }
  .case-study-hero-copy { right: 22px; bottom: 38px; left: 22px; }
  .case-study-hero-copy h1 { font-size: 44px; line-height: .98; }
  .case-study-intro { padding: 90px 22px 80px; }
  .case-study-intro-copy, .case-study-objectives > header, .case-study-deliverables > header, .case-study-evidence > header { display: block; }
  .case-study-intro-copy .section-label, .case-study-objectives .section-label, .case-study-deliverables .section-label, .case-study-evidence .section-label { margin-bottom: 25px; }
  .case-study-intro-copy h2, .case-study-objectives h2, .case-study-deliverables h2, .case-study-evidence h2 { font-size: 41px; }
  .case-study-intro-copy > p:last-child { grid-column: auto; }
  .case-study-meta { grid-template-columns: repeat(2,1fr); margin-top: 55px; }
  .case-study-meta > div { min-height: 125px; padding: 19px; }
  .case-study-meta strong { font-size: 15px; }
  .case-study-artifact { padding: 75px 22px; }
  .case-study-artifact > div { display: block; }
  .case-study-artifact > div > span { display: block; margin-top: 12px; }
  .case-study-artifact figure { padding: 16px; border-radius: 20px; }
  .case-study-objectives { padding: 90px 22px; }
  .case-study-objectives > header { margin-bottom: 50px; }
  .case-study-objectives > div, .case-study-evidence > div { grid-template-columns: 1fr; }
  .case-study-objectives article { min-height: 250px; }
  .case-study-problem { min-height: 570px; padding: 85px 22px; }
  .case-study-problem h2 { font-size: 46px; }
  .case-study-chapter { grid-template-columns: 1fr; min-height: 0; }
  .case-study-chapter.reverse figure { order: initial; }
  .case-study-chapter figure { min-height: 480px; }
  .case-study-chapter .case-chapter-artifact { min-height: 390px; padding: 22px; }
  .case-study-chapter > div { padding: 75px 22px 90px; }
  .case-study-chapter h2 { font-size: 42px; }
  .case-study-chapter > div > p:last-child { font-size: 15px; }
  .case-study-deliverables { padding: 90px 22px; }
  .case-study-deliverables > header { margin-bottom: 50px; }
  .case-deliverable-list > div { min-height: 95px; grid-template-columns: 38px 1fr 22px; gap: 9px; }
  .case-deliverable-list strong { font-size: 24px; }
  .case-study-evidence { padding: 90px 22px; }
  .case-study-evidence > header { margin-bottom: 55px; }
  .case-study-evidence article { min-height: 190px; border-right: 0; border-bottom: 1px solid var(--line); }
  .case-study-evidence article p { margin-top: 45px; font-size: 21px; }
  .case-study-next { min-height: 620px; padding: 55px 22px; }
  .case-study-next strong { font-size: 48px; }
  .case-study-next i { right: 22px; bottom: 58px; }
  .application-section { grid-template-columns: 1fr; gap: 60px; padding: 95px 22px; }
  .application-form { grid-template-columns: 1fr; }
  .application-form label.full { grid-column: 1; }
  .marquee span { font-size: 78px; }
  .closing-inner { min-height: 560px; display: block; padding: 85px 22px; }
  .closing-inner h2 { margin: 22px 0; font-size: 49px; }
  .closing-inner > div:last-child { margin-top: 38px; }
  .site-footer { grid-template-columns: repeat(2,1fr); padding: 80px 22px 28px; }
  .footer-pitch { grid-column: 1 / -1; margin-bottom: 42px; }
  .footer-column:nth-of-type(4) { margin-top: 35px; }
  .footer-bottom { display: grid; gap: 9px; margin-top: 55px; }
  .case-modal { display: block; padding: 10px; overflow-y: auto; }
  .case-modal-dialog { min-height: 0; max-height: none; display: block; border-radius: 22px; }
  .case-modal-media { min-height: 300px; height: 300px; }
  .case-modal-copy { padding: 34px 24px 40px; }
  .case-modal-copy h2 { font-size: 35px; }
  .case-modal-summary { font-size: 15px; }
  .case-modal-details > div { display: block; }
  .case-modal-details span { display: block; margin-bottom: 8px; }
  .case-modal-close { position: fixed; top: 20px; right: 20px; }
}

@media (max-width: 980px) {
  .journal-intro-copy h2 { font-size: 54px; }
  .journal-feature { grid-template-columns: 1fr; gap: 42px; }
  .journal-feature-media { height: 520px; }
  .journal-feature-copy { max-width: 760px; }
  .journal-paths header h2 { font-size: 50px; }
  .journal-path-grid h3 { font-size: 29px; }
  .article-layout { grid-template-columns: 190px minmax(0,1fr); gap: 6%; }
}

@media (max-width: 760px) {
  .journal-intro { display: block; padding: 82px 22px 72px; }
  .journal-intro > .section-label { margin-bottom: 24px; }
  .journal-intro-copy h2 { font-size: 42px; }
  .journal-intro-copy p { font-size: 15px; }
  .journal-feature { gap: 34px; padding: 0 22px 90px; }
  .journal-feature-media { height: 360px; }
  .journal-feature-copy h2 { font-size: 38px; }
  .journal-paths { padding: 82px 22px 90px; }
  .journal-paths header { margin-bottom: 45px; }
  .journal-paths header h2 { font-size: 40px; }
  .journal-path-grid { grid-template-columns: 1fr; }
  .journal-path-grid a { min-height: 310px; padding: 24px; }
  .article-shell { padding: 80px 22px 105px; }
  .article-header { margin-bottom: 70px; }
  .article-header > p { font-size: 21px; }
  .article-layout { display: block; }
  .article-rail { position: static; grid-template-columns: 1fr 1fr; margin-bottom: 75px; padding: 22px 0; border-bottom: 1px solid var(--line); }
  .article-rail span { grid-column: 1 / -1; }
  .article-body section { margin-bottom: 80px; }
  .article-body h2 { font-size: 40px; }
  .article-body p, .article-body li { font-size: 16px; }
  .article-body blockquote { margin: 35px 0; padding-left: 22px; font-size: 25px; }
  .article-figure { margin-bottom: 80px; }
  .article-figure img { min-height: 300px; }
  .article-comparison { grid-template-columns: 1fr; }
  .article-steps li { grid-template-columns: 1fr; gap: 8px; }
  .article-timeline > div { grid-template-columns: 1fr; gap: 8px; }
  .article-next { padding: 82px 22px 90px; }
  .article-next > div { grid-template-columns: 1fr; margin-top: 40px; }
  .article-next a { min-height: 270px; padding: 24px; }
  .article-next h2 { font-size: 34px; }
}

@media (prefers-reduced-motion: reduce) {
  .hero-people-track { animation-play-state: paused; }
}

.case-study-hero-compact { height: 68svh; min-height: 570px; max-height: 760px; }
.case-study-hero-compact .case-study-hero-copy h1 { max-width: 1060px; font-size: clamp(52px,5.7vw,84px); line-height: .96; }
.case-compact-overview { max-width: var(--max); margin: 0 auto; padding: 105px 28px 90px; }
.case-compact-copy { display: grid; grid-template-columns: 210px minmax(0,1fr); gap: 6%; }
.case-compact-copy h2 { max-width: 920px; margin: 0; font-size: clamp(42px,4.6vw,66px); font-weight: 500; line-height: 1.04; }
.case-compact-copy .case-source-note { grid-column: 2; max-width: 740px; margin: 26px 0 0; color: var(--muted); line-height: 1.7; }
.case-compact-overview .case-study-meta { margin-top: 65px; }
.case-metric-strip { display: grid; grid-template-columns: repeat(3,1fr); padding: 0 max(28px,calc((100% - var(--max))/2)); color: white; background: var(--black); }
.case-metric-strip article { min-height: 260px; display: flex; flex-direction: column; justify-content: space-between; padding: 34px 30px; border-right: 1px solid #2d302d; }
.case-metric-strip article:last-child { border-right: 0; }
.case-metric-strip strong { font-size: clamp(44px,5vw,72px); font-weight: 500; line-height: 1; }
.case-metric-strip p { max-width: 300px; margin: 0; color: #afb3af; font-size: 15px; line-height: 1.5; }
.case-compact-story { display: grid; grid-template-columns: .92fr 1.08fr; background: var(--soft); }
.case-compact-story > figure { position: relative; min-height: 760px; margin: 0; overflow: hidden; }
.case-compact-story > figure img { height: 100%; object-fit: cover; }
.case-compact-story > figure figcaption { position: absolute; right: 18px; bottom: 18px; padding: 10px 13px; color: white; background: rgba(8,9,8,.8); font-size: 9px; font-weight: 800; text-transform: uppercase; }
.case-story-stack article { min-height: 280px; display: grid; align-content: center; padding: 60px 10%; border-bottom: 1px solid var(--line); }
.case-story-stack article:last-child { border-bottom: 0; }
.case-story-stack article > span { margin-bottom: 28px; color: var(--muted); font-size: 10px; font-weight: 800; text-transform: uppercase; }
.case-story-stack h2 { max-width: 740px; margin: 0; font-size: clamp(34px,3.5vw,52px); font-weight: 500; line-height: 1.06; }
.case-move-list { display: grid; gap: 20px; }
.case-move-list p { display: grid; grid-template-columns: minmax(150px,.55fr) 1fr; gap: 25px; margin: 0; color: var(--muted); line-height: 1.55; }
.case-move-list b { color: var(--black); font-size: 18px; font-weight: 600; }
.case-compact-stack { padding: 105px max(28px,calc((100% - var(--max))/2)); color: white; background: var(--black); }
.case-compact-stack > header { display: grid; grid-template-columns: 210px 1fr; gap: 6%; margin-bottom: 56px; }
.case-compact-stack .section-label { color: #858985; }
.case-compact-stack h2 { max-width: 800px; margin: 0; font-size: clamp(42px,4.6vw,66px); font-weight: 500; line-height: 1.04; }
.case-compact-stack > div { display: flex; flex-wrap: wrap; gap: 10px; }
.case-compact-stack > div > span { padding: 14px 17px; border: 1px solid #343734; border-radius: 999px; color: #d7dad7; font-size: 12px; }
.case-compact-stack .case-results-disclaimer { color: #858985; }
.case-compact-stack .case-results-disclaimer a { color: white; }
.case-library-carousel { padding: 105px 0 125px; overflow: hidden; }
.case-library-carousel > header { max-width: var(--max); display: flex; justify-content: space-between; gap: 30px; align-items: end; margin: 0 auto 52px; padding: 0 28px; }
.case-library-carousel h2 { margin: 16px 0 0; font-size: clamp(42px,4.7vw,66px); font-weight: 500; line-height: 1; }
.case-carousel-controls { display: flex; gap: 8px; }
.case-carousel-controls button { width: 52px; height: 52px; border: 1px solid var(--line); border-radius: 50%; color: var(--black); background: white; font-size: 20px; cursor: pointer; transition: color .25s ease,background .25s ease,transform .25s ease; }
.case-carousel-controls button:hover { color: white; background: var(--black); transform: translateY(-2px); }
.case-carousel-track { display: grid; grid-auto-flow: column; grid-auto-columns: minmax(330px,430px); gap: 22px; padding: 0 max(28px,calc((100% - var(--max))/2)); overflow-x: auto; overscroll-behavior-inline: contain; scroll-snap-type: inline mandatory; scrollbar-width: none; }
.case-carousel-track::-webkit-scrollbar { display: none; }
.case-carousel-card { min-width: 0; display: block; color: inherit; text-decoration: none; scroll-snap-align: start; }
.case-carousel-card figure { position: relative; height: 300px; margin: 0 0 20px; border-radius: 8px; background: #e9edeb; overflow: hidden; }
.case-carousel-card figure img { height: 100%; object-fit: cover; transition: transform .55s cubic-bezier(.2,.7,.2,1); }
.case-carousel-card figure span { position: absolute; top: 14px; left: 14px; display: grid; place-items: center; width: 42px; height: 42px; border-radius: 50%; color: var(--black); background: white; font-size: 10px; font-weight: 800; }
.case-carousel-card > p { margin: 0 0 10px; color: var(--muted); font-size: 10px; font-weight: 800; text-transform: uppercase; }
.case-carousel-card > strong { display: block; min-height: 86px; font-size: 25px; font-weight: 600; line-height: 1.15; }
.case-carousel-card > i { display: inline-block; margin-top: 18px; font-size: 12px; font-style: normal; font-weight: 800; }
.case-carousel-card:hover figure img { transform: scale(1.035); }
.case-carousel-card.is-current figure { outline: 3px solid var(--green); outline-offset: -3px; }

/* Case-study chapters */
.case-phase { --case-accent: var(--green); position: relative; width: 100%; }
.case-phase-label { display: flex; align-items: center; gap: 14px; margin: 0 0 38px; color: var(--muted); font-size: 11px; font-weight: 800; text-transform: uppercase; }
.case-phase-label span { display: grid; place-items: center; width: 38px; height: 38px; border: 1px solid currentColor; border-radius: 50%; }
.case-phase-copy h2, .case-result-copy h2 { margin: 0; font-size: clamp(46px,5vw,72px); font-weight: 500; line-height: 1.02; }
.case-phase-copy > p:not(.case-phase-label), .case-result-copy > p:not(.case-phase-label) { margin: 30px 0 0; color: var(--muted); font-size: 17px; line-height: 1.75; }
.case-phase figure { position: relative; margin: 0; overflow: hidden; }
.case-phase figure figcaption { position: absolute; right: 18px; bottom: 18px; padding: 10px 13px; color: white; background: rgba(5,5,5,.82); font-size: 9px; font-weight: 800; text-transform: uppercase; }

.case-phase-problem { display: grid; grid-template-columns: minmax(0,.88fr) minmax(0,1.12fr); gap: clamp(48px,7vw,108px); align-items: center; padding: 120px max(28px,calc((100% - var(--max))/2)); background: #f1f3f1; }
.case-phase-problem::before { position: absolute; top: 0; left: max(28px,calc((100% - var(--max))/2)); width: 92px; height: 4px; background: var(--case-accent); content: ""; transform-origin: left; animation: caseAccent 3.6s ease-in-out infinite alternate; }
.case-friction-list { margin-top: 52px; border-top: 1px solid #cfd2cf; }
.case-friction-list > div { display: grid; grid-template-columns: 46px 1fr; gap: 18px; align-items: start; padding: 22px 0; border-bottom: 1px solid #cfd2cf; }
.case-friction-list span { color: var(--case-accent); font-size: 11px; font-weight: 800; }
.case-friction-list p { max-width: 520px; margin: 0; font-size: 16px; line-height: 1.55; }
.case-phase-source { height: clamp(520px,48vw,700px); border-radius: 8px; background: #111411; box-shadow: 0 30px 70px rgba(12,18,13,.12); }
.case-phase-source img { height: 100%; padding: 22px; object-fit: contain; }

.case-phase-solution { padding: 112px max(28px,calc((100% - var(--max))/2)) 126px; color: white; background: #070908; overflow: hidden; }
.case-phase-solution::before { position: absolute; z-index: 0; top: -18%; right: -12%; width: 48vw; height: 48vw; border: 1px solid color-mix(in srgb,var(--case-accent) 28%,transparent); border-radius: 50%; content: ""; animation: caseOrbit 18s linear infinite; }
.case-system-visual { z-index: 1; max-width: var(--max); aspect-ratio: 3 / 2; margin: 0 auto 88px !important; border: 1px solid #252a26; border-radius: 8px; background: #101310; box-shadow: 0 50px 120px rgba(0,0,0,.42); }
.case-system-visual img { height: 100%; object-fit: cover; transition: transform .8s cubic-bezier(.2,.7,.2,1); }
.case-system-visual:hover img { transform: scale(1.018); }
.case-solution-body { position: relative; z-index: 1; max-width: var(--max); display: grid; grid-template-columns: minmax(0,.78fr) minmax(0,1.22fr); gap: clamp(55px,8vw,120px); margin: 0 auto; }
.case-phase-solution .case-phase-label { color: #939893; }
.case-phase-solution .case-phase-label span { color: var(--case-accent); }
.case-phase-solution .case-phase-copy > p:not(.case-phase-label) { color: #afb4af; }
.case-phase-solution .case-phase-copy h2 { font-size: clamp(44px,4.2vw,64px); }
.case-build-steps { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); align-self: end; }
.case-build-steps article { min-height: 300px; padding: 26px 24px 28px; border-top: 1px solid #343834; border-left: 1px solid #343834; transition: background .3s ease,transform .3s ease; }
.case-build-steps article:last-child { border-right: 1px solid #343834; }
.case-build-steps article:hover { background: #111511; transform: translateY(-8px); }
.case-build-steps article > span { color: var(--case-accent); font-size: 11px; font-weight: 800; }
.case-build-steps h3 { margin: 72px 0 15px; font-size: 22px; font-weight: 600; line-height: 1.15; }
.case-build-steps p { margin: 0; color: #929792; font-size: 13px; line-height: 1.65; }

.case-phase-result { padding: 120px max(28px,calc((100% - var(--max))/2)) 132px; background: white; }
.case-result-copy { max-width: var(--max); display: grid; grid-template-columns: 190px minmax(0,1.12fr) minmax(250px,.58fr); gap: 30px 5%; margin: 0 auto 84px; }
.case-result-copy .case-phase-label { grid-column: 1; grid-row: 1 / span 3; }
.case-result-copy h2 { grid-column: 2 / 4; }
.case-result-copy > p:not(.case-phase-label) { grid-column: 2; margin-top: 4px; }
.case-result-copy .case-result-source { grid-column: 3; align-self: end; margin: 4px 0 0; padding-top: 18px; border-top: 1px solid var(--line); font-size: 12px; }
.case-result-source a { font-weight: 800; text-decoration: none; }
.case-result-proof { max-width: var(--max); display: grid; grid-template-columns: minmax(0,1.3fr) minmax(300px,.7fr); gap: 0; margin: 0 auto; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.case-result-proof > figure { min-height: 680px; background: #eef0ee; }
.case-result-proof > figure img { height: 100%; padding: 22px; object-fit: contain; }
.case-result-metrics { border-left: 1px solid var(--line); }
.case-result-metrics article { min-height: 226px; display: flex; flex-direction: column; justify-content: space-between; padding: 30px 32px; border-bottom: 1px solid var(--line); transition: color .3s ease,background .3s ease; }
.case-result-metrics article:last-child { border-bottom: 0; }
.case-result-metrics article:hover { color: white; background: var(--black); }
.case-result-metrics strong { color: var(--case-accent); font-size: clamp(44px,5vw,72px); font-weight: 500; line-height: .95; }
.case-result-metrics p { max-width: 290px; margin: 0; font-size: 14px; line-height: 1.5; }

@keyframes caseAccent { from { transform: scaleX(.3); } to { transform: scaleX(1); } }
@keyframes caseOrbit { to { transform: rotate(360deg); } }

@media (max-width: 1020px) {
  .case-phase-problem { grid-template-columns: 1fr; }
  .case-phase-copy { max-width: 760px; }
  .case-phase-source { height: min(680px,72vw); }
  .case-solution-body { grid-template-columns: 1fr; }
  .case-build-steps article { min-height: 250px; }
  .case-result-copy { grid-template-columns: 150px 1fr; }
  .case-result-copy .case-phase-label { grid-column: 1; }
  .case-result-copy h2, .case-result-copy > p:not(.case-phase-label), .case-result-copy .case-result-source { grid-column: 2; }
  .case-result-proof { grid-template-columns: 1fr; }
  .case-result-proof > figure { min-height: min(680px,76vw); }
  .case-result-metrics { display: grid; grid-template-columns: repeat(3,1fr); border-top: 1px solid var(--line); border-left: 0; }
  .case-result-metrics article { min-height: 220px; border-right: 1px solid var(--line); border-bottom: 0; }
  .case-result-metrics article:last-child { border-right: 0; }
}

@media (max-width: 740px) {
  .case-study-hero-compact { height: 620px; min-height: 620px; }
  .case-study-hero-compact .case-study-hero-copy h1 { font-size: 42px; }
  .case-compact-overview { padding: 80px 22px 70px; }
  .case-compact-copy { display: block; }
  .case-compact-copy .section-label { margin-bottom: 24px; }
  .case-compact-copy h2 { font-size: 38px; }
  .case-compact-copy .case-source-note { margin-top: 24px; }
  .case-compact-overview .case-study-meta { margin-top: 48px; }
  .case-metric-strip { grid-template-columns: 1fr; padding: 0 22px; }
  .case-metric-strip article { min-height: 190px; padding: 28px 0; border-right: 0; border-bottom: 1px solid #2d302d; }
  .case-metric-strip article:last-child { border-bottom: 0; }
  .case-metric-strip strong { font-size: 52px; }
  .case-compact-story { grid-template-columns: 1fr; }
  .case-compact-story > figure { min-height: 390px; }
  .case-story-stack article { min-height: 0; padding: 65px 22px; }
  .case-story-stack h2 { font-size: 36px; }
  .case-move-list p { grid-template-columns: 1fr; gap: 7px; }
  .case-compact-stack { padding: 80px 22px; }
  .case-compact-stack > header { display: block; }
  .case-compact-stack .section-label { margin-bottom: 24px; }
  .case-compact-stack h2 { font-size: 38px; }
  .case-library-carousel { padding: 80px 0 95px; }
  .case-library-carousel > header { align-items: end; margin-bottom: 38px; padding: 0 22px; }
  .case-library-carousel h2 { max-width: 230px; font-size: 38px; }
  .case-carousel-controls button { width: 44px; height: 44px; }
  .case-carousel-track { grid-auto-columns: minmax(290px,84vw); padding: 0 22px; }
  .case-carousel-card figure { height: 240px; }
  .case-carousel-card > strong { min-height: 0; font-size: 23px; }
  .case-phase-copy h2, .case-result-copy h2 { font-size: 40px; }
  .case-phase-label { margin-bottom: 28px; }
  .case-phase-problem { gap: 52px; padding: 84px 22px; }
  .case-phase-problem::before { left: 22px; }
  .case-friction-list { margin-top: 38px; }
  .case-phase-source { height: 410px; }
  .case-phase-source img { padding: 12px; }
  .case-phase-solution { padding: 80px 22px 90px; }
  .case-system-visual { aspect-ratio: 1 / 1; margin-bottom: 62px !important; }
  .case-system-visual img { object-fit: contain; }
  .case-build-steps { grid-template-columns: 1fr; }
  .case-build-steps article { min-height: 220px; border-right: 1px solid #343834; }
  .case-build-steps h3 { margin-top: 48px; }
  .case-phase-result { padding: 82px 22px 92px; }
  .case-result-copy { display: block; margin-bottom: 58px; }
  .case-result-copy .case-phase-label { margin-bottom: 28px; }
  .case-result-copy > p:not(.case-phase-label), .case-result-copy .case-result-source { margin-top: 26px; }
  .case-result-proof > figure { min-height: 410px; }
  .case-result-proof > figure img { padding: 12px; }
  .case-result-metrics { grid-template-columns: 1fr; }
  .case-result-metrics article { min-height: 185px; border-right: 0; border-bottom: 1px solid var(--line); }
  .case-result-metrics article:last-child { border-bottom: 0; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
  .section-head.reveal, .service-heading.reveal { clip-path: none; }
  .work-media::before, .editorial-card figure::before, .portfolio-visual::before, .human-photo::after, .split-story figure::after, .case-card figure::after { display: none; }
}
