/* ZAQ — Website 3 · Merged Build (Dossier × HUD) */

/* ===== Nexa font family ===== */
@font-face { font-family: 'Nexa'; font-weight: 100; src: url('../Brand/Fonts/Nexa-Thin.ttf') format('truetype'); font-display: swap; }
@font-face { font-family: 'Nexa'; font-weight: 200; src: url('../Brand/Fonts/Nexa-Thin.ttf') format('truetype'); font-display: swap; }
@font-face { font-family: 'Nexa'; font-weight: 300; src: url('../Brand/Fonts/Nexa-Light.ttf') format('truetype'); font-display: swap; }
@font-face { font-family: 'Nexa'; font-weight: 400; src: url('../Brand/Fonts/Nexa-Book.ttf') format('truetype'); font-display: swap; }
@font-face { font-family: 'Nexa'; font-weight: 500; src: url('../Brand/Fonts/Nexa-Regular.ttf') format('truetype'); font-display: swap; }
@font-face { font-family: 'Nexa'; font-weight: 700; src: url('../Brand/Fonts/Nexa-Bold.ttf') format('truetype'); font-display: swap; }
@font-face { font-family: 'Nexa'; font-weight: 800; src: url('../Brand/Fonts/Nexa-XBold.ttf') format('truetype'); font-display: swap; }
@font-face { font-family: 'Nexa'; font-weight: 850; src: url('../Brand/Fonts/Nexa-Heavy.ttf') format('truetype'); font-display: swap; }
@font-face { font-family: 'Nexa'; font-weight: 900; src: url('../Brand/Fonts/Nexa-Black.ttf') format('truetype'); font-display: swap; }

:root {
  /* OKLCH palette (W2 origin) */
  --bg:           oklch(8% 0.012 230);
  --bg-deep:      oklch(5% 0.008 230);
  --surface:      oklch(13% 0.014 230);
  --surface-2:    oklch(16% 0.014 230);
  --fg:           oklch(96% 0.008 230);
  --fg-dim:       oklch(78% 0.01 230);
  --muted:        oklch(58% 0.012 230);
  --border:       oklch(22% 0.018 230);
  --border-strong:oklch(34% 0.02 230);
  --accent:       oklch(72% 0.18 210);
  --accent-soft:  oklch(82% 0.13 210);
  --accent-deep:  oklch(60% 0.2 220);
  --accent-glow:  oklch(72% 0.18 210 / 0.40);

  --f-display: 'Nexa', system-ui, sans-serif;
  --f-body:    'Nexa', system-ui, sans-serif;
  --f-mono:    'JetBrains Mono', ui-monospace, monospace;

  --pad: clamp(24px, 4vw, 80px);
  --max: 1440px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-q: cubic-bezier(0.4, 0, 0.2, 1);
  --dur-fast: 220ms; --dur-med: 600ms; --dur-slow: 1200ms;
}

/* ===== Division lane accent overrides ===== */
[data-lane="creatives"] {
  --accent:      oklch(72% 0.18 25);
  --accent-soft: oklch(82% 0.14 28);
  --accent-deep: oklch(60% 0.20 22);
  --accent-glow: oklch(72% 0.18 25 / 0.40);
}
[data-lane="vision"] {
  --accent:      oklch(78% 0.16 70);
  --accent-soft: oklch(86% 0.13 70);
  --accent-deep: oklch(64% 0.18 60);
  --accent-glow: oklch(78% 0.16 70 / 0.40);
}
[data-lane="motion"] {
  --accent:      oklch(70% 0.20 290);
  --accent-soft: oklch(80% 0.15 290);
  --accent-deep: oklch(58% 0.22 290);
  --accent-glow: oklch(70% 0.20 290 / 0.40);
}
[data-lane="lab"] {
  --accent:      oklch(76% 0.18 150);
  --accent-soft: oklch(84% 0.14 150);
  --accent-deep: oklch(62% 0.20 145);
  --accent-glow: oklch(76% 0.18 150 / 0.40);
}
[data-lane="ai"] {
  --accent:      oklch(85% 0.20 110);
  --accent-soft: oklch(90% 0.16 110);
  --accent-deep: oklch(72% 0.22 105);
  --accent-glow: oklch(85% 0.20 110 / 0.40);
}
/* Creatives uses :root default cyan */

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0; padding: 0;
  background: var(--bg-deep); color: var(--fg);
  font-family: var(--f-body);
  font-size: 15px;
  line-height: 1.55;
  letter-spacing: 0.005em;
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4, h5 {
  font-family: var(--f-display);
  margin: 0;
  line-height: 1.02;
  letter-spacing: -0.02em;
}

/* ===== Ambient ===== */
body::before {
  content: ''; position: fixed; inset: 0; z-index: -2; pointer-events: none;
  background:
    radial-gradient(1200px 600px at 80% -10%, oklch(72% 0.18 210 / 0.10), transparent 60%),
    radial-gradient(900px 500px at -10% 110%, oklch(60% 0.2 220 / 0.08), transparent 60%),
    var(--bg-deep);
}
body::after {
  content: ''; position: fixed; inset: 0; z-index: -1; pointer-events: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.8 0 0 0 0 0.85 0 0 0 0 1 0 0 0 0.045 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  opacity: 0.35;
}

/* ===== Utility ===== */
.mono {
  font-family: var(--f-mono);
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
}
.accent { color: var(--accent); }
.dim { color: var(--fg-dim); }

.frame {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad);
}

/* ===== Corner brackets (architectural) ===== */
.bracket {
  position: fixed; z-index: 30;
  width: 22px; height: 22px;
  border: 1px solid var(--accent);
  opacity: 0.55;
  pointer-events: none;
}
.bracket--tl { top: 22px; left: 22px; border-right: none; border-bottom: none; }
.bracket--tr { top: 22px; right: 22px; border-left: none; border-bottom: none; }
.bracket--bl { bottom: 22px; left: 22px; border-right: none; border-top: none; }
.bracket--br { bottom: 22px; right: 22px; border-left: none; border-top: none; }
@media (max-width: 720px) { .bracket { display: none; } }

/* ===== Page load top loader ===== */
.loader {
  position: fixed; top: 0; left: 0; width: 100%; height: 2px;
  z-index: 100; pointer-events: none; overflow: hidden;
}
.loader::before {
  content: ''; display: block; height: 100%;
  background: linear-gradient(90deg, transparent, var(--accent-soft) 35%, var(--accent) 50%, var(--accent-soft) 65%, transparent);
  transform: translateX(-100%);
  animation: load 900ms var(--ease) forwards;
  box-shadow: 0 0 14px var(--accent-glow);
}
@keyframes load {
  0%   { transform: translateX(-100%); }
  60%  { transform: translateX(20%); }
  100% { transform: translateX(120%); }
}
main {
  animation: pageIn 720ms var(--ease) both;
}
@keyframes pageIn {
  from { opacity: 0; transform: translateY(10px); filter: blur(6px); }
  to   { opacity: 1; transform: translateY(0);    filter: blur(0); }
}

/* ===== Floating HUD pill nav ===== */
.hud {
  position: fixed; top: 22px; left: 50%;
  transform: translateX(-50%);
  z-index: 50;
  display: flex; align-items: center; gap: 4px;
  padding: 6px 6px 6px 18px;
  background: oklch(8% 0.012 230 / 0.78);
  border: 1px solid var(--border-strong);
  border-radius: 999px;
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  box-shadow: 0 10px 40px oklch(0% 0 0 / 0.4),
              inset 0 1px 0 oklch(100% 0 0 / 0.04);
  font-family: var(--f-mono);
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.hud__brand {
  display: flex; align-items: center; gap: 10px;
  padding-right: 14px;
  border-right: 1px solid var(--border);
  margin-right: 6px;
}
.hud__brand img {
  height: 16px; width: auto; display: block;
}
.hud__brand .tag {
  color: var(--accent);
  font-size: 9px;
  letter-spacing: 0.3em;
}
.hud__brand .live {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--muted);
  font-size: 9px;
  letter-spacing: 0.3em;
}
.hud__brand .live::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent); box-shadow: 0 0 8px var(--accent);
  animation: blink 2s infinite;
}
@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0.35; } }

.hud__nav { display: flex; gap: 2px; }
.hud__nav a {
  padding: 8px 14px; border-radius: 999px;
  color: var(--muted);
  transition: color var(--dur-fast), background var(--dur-fast);
}
.hud__nav a:hover { color: var(--fg); background: oklch(100% 0 0 / 0.04); }
.hud__nav a.is-active { color: var(--fg); background: oklch(100% 0 0 / 0.04); }

.hud__cta {
  margin-left: 6px;
  padding: 9px 16px;
  background: var(--accent);
  color: var(--bg-deep);
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: 0.22em;
  box-shadow: 0 0 24px var(--accent-glow);
  transition: background var(--dur-fast), box-shadow var(--dur-med);
}
.hud__cta:hover { background: var(--accent-soft); }

@media (max-width: 980px) {
  .hud { padding: 4px 6px 4px 12px; }
  .hud__nav { display: none; }
  .hud__brand { padding-right: 10px; margin-right: 4px; }
  .hud__brand .live { display: none; }
}

/* ===== Page header ===== */
.ph {
  padding: 11rem 0 5rem;
  border-bottom: 1px solid var(--border);
}
.ph__crumb {
  display: flex; gap: 0.5rem; align-items: center;
  margin-bottom: 3rem;
}
.ph__crumb a { color: var(--muted); transition: color var(--dur-fast); }
.ph__crumb a:hover { color: var(--fg); }
.ph__crumb .sep { color: var(--accent); }
.ph__crumb .here { color: var(--fg); }

.ph__grid {
  display: grid; grid-template-columns: 1fr 360px; gap: 4rem;
  align-items: end;
}
.ph__title {
  font-family: var(--f-display);
  font-weight: 100;
  font-size: clamp(3.5rem, 10vw, 9rem);
  letter-spacing: -0.04em;
  line-height: 0.92;
}
.ph__title em {
  font-style: normal;
  color: var(--accent);
}
.ph__lede {
  position: relative;
  padding-left: 1.5rem;
  font-size: 0.9375rem;
  color: var(--fg-dim);
  line-height: 1.65;
}
.ph__lede::before {
  content: ''; position: absolute; left: 0; top: 0.25rem; bottom: 0.25rem;
  width: 1px; background: var(--border);
}
.ph__meta {
  margin-top: 4rem;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}
.ph__meta > div {
  background: var(--bg);
  padding: 1.5rem 1.5rem;
}
.ph__meta dt { color: var(--accent); }
.ph__meta dd {
  margin: 0.5rem 0 0;
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 1.0625rem;
  letter-spacing: -0.005em;
  color: var(--fg);
}
@media (max-width: 980px) {
  .ph { padding: 9rem 0 3rem; }
  .ph__grid { grid-template-columns: 1fr; gap: 2rem; }
  .ph__meta { grid-template-columns: repeat(2, 1fr); }
}

/* ===== Section heads ===== */
section { padding: 6rem 0; position: relative; }
.sh {
  display: grid; grid-template-columns: 1fr 2fr; gap: 3rem;
  margin-bottom: 4rem;
  align-items: end;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border);
}
.sh h2 {
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  font-weight: 100;
  letter-spacing: -0.025em;
}
.sh h2 em { font-style: normal; color: var(--accent); }
.sh p {
  color: var(--fg-dim);
  font-size: 0.9375rem;
  max-width: 52ch;
  margin: 0;
  line-height: 1.65;
}
@media (max-width: 720px) {
  .sh { grid-template-columns: 1fr; gap: 1.5rem; }
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex; align-items: center; gap: 0.625rem;
  padding: 0.875rem 1.5rem;
  border-radius: 999px;
  font-family: var(--f-mono);
  font-weight: 500;
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform var(--dur-fast), background var(--dur-fast),
              color var(--dur-fast), border-color var(--dur-fast),
              box-shadow var(--dur-med);
}
.btn--primary {
  background: var(--accent);
  color: var(--bg-deep);
  box-shadow: 0 0 24px var(--accent-glow);
}
.btn--primary:hover { background: var(--accent-soft); transform: translateY(-1px); }
.btn--ghost {
  border-color: var(--border-strong);
  color: var(--fg);
}
.btn--ghost:hover { border-color: var(--accent); color: var(--accent); }
.btn .arr { display: inline-block; transition: transform var(--dur-med); }
.btn:hover .arr { transform: translateX(4px); }

/* ===== Home HERO ===== */
.hero {
  padding: 12rem 0 5rem;
  position: relative;
}
.hero__eyebrow {
  display: flex; gap: 1.5rem; align-items: center;
  margin-bottom: 2rem;
}
.hero__title {
  font-family: var(--f-display);
  font-weight: 100;
  font-size: clamp(3.5rem, 11vw, 10.5rem);
  letter-spacing: -0.045em;
  line-height: 0.92;
  max-width: 16ch;
}
.hero__title em { font-style: normal; color: var(--accent); }
.hero__grid {
  display: grid; grid-template-columns: 1.4fr 1fr; gap: 4rem;
  align-items: end;
  margin-top: 3rem;
}
.hero__lede {
  font-size: 1rem;
  color: var(--fg-dim);
  line-height: 1.65;
  padding-left: 1.5rem;
  border-left: 1px solid var(--border);
}
.hero__cta {
  display: flex; gap: 0.75rem; flex-wrap: wrap;
  margin-top: 2.5rem;
}
@media (max-width: 980px) {
  .hero { padding: 10rem 0 3rem; }
  .hero__grid { grid-template-columns: 1fr; gap: 2rem; }
}

/* ===== Stats strip ===== */
.stats {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px;
  background: var(--border);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.stats__item {
  background: var(--bg);
  padding: 2.5rem 1.75rem;
  display: flex; flex-direction: column; gap: 0.5rem;
  position: relative; overflow: hidden;
}
.stats__item::before {
  content: ''; position: absolute; top: 0; left: 0;
  width: 0; height: 2px; background: var(--accent);
  transition: width var(--dur-slow) var(--ease);
}
.stats__item:hover::before { width: 100%; }
.stats__num {
  font-family: var(--f-display);
  font-weight: 100;
  font-size: clamp(2.75rem, 5vw, 4.5rem);
  letter-spacing: -0.04em;
  line-height: 1;
}
.stats__num sup { font-size: 0.4em; color: var(--accent); vertical-align: super; margin-left: 4px; }
.stats__label { color: var(--muted); }
@media (max-width: 720px) { .stats { grid-template-columns: repeat(2, 1fr); } }

/* ===== Services index folios ===== */
.svc {
  display: grid; grid-template-columns: 180px 1fr 1.6fr 100px; gap: 2.5rem;
  padding: 4rem 0;
  border-top: 1px solid var(--border);
  align-items: start;
  position: relative;
  transition: background var(--dur-med);
}
.svc > * { min-width: 0; }
.svc:hover { background: linear-gradient(90deg, oklch(72% 0.18 210 / 0.04), transparent 70%); }
.svc:last-of-type { border-bottom: 1px solid var(--border); }
.svc__num {
  font-family: var(--f-display);
  font-weight: 100;
  font-size: clamp(3rem, 6vw, 5rem);
  letter-spacing: -0.05em;
  line-height: 0.9;
  color: var(--fg);
  white-space: nowrap;
}
.svc__num .slash { color: var(--accent); }
.svc__head h2 {
  font-size: clamp(1.5rem, 2.4vw, 2.125rem);
  font-weight: 700;
  margin: 0.5rem 0 0.75rem;
}
.svc__head .mono { color: var(--accent); }
.svc__head p { color: var(--fg-dim); margin: 0; font-size: 0.9375rem; }
.svc__body p { color: var(--fg-dim); font-size: 0.9375rem; line-height: 1.7; margin: 0 0 1.25rem; }
.svc__list {
  list-style: none; padding: 0; margin: 0;
  display: grid; grid-template-columns: 1fr 1fr; gap: 0.5rem 1rem;
}
.svc__list li {
  font-family: var(--f-mono);
  font-size: 10.5px;
  letter-spacing: 0.16em;
  color: var(--fg);
  padding-left: 1rem; position: relative;
}
.svc__list li::before { content: '+'; position: absolute; left: 0; color: var(--accent); }
.svc__cta {
  align-self: end;
  display: inline-flex; gap: 0.5rem; align-items: center;
  font-family: var(--f-mono);
  font-size: 10.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  padding: 0.75rem 0;
  border-top: 1px solid var(--accent);
  white-space: nowrap;
}
.svc__cta::after { content: '→'; transition: transform var(--dur-med); }
.svc:hover .svc__cta::after { transform: translateX(4px); }
@media (max-width: 1180px) {
  .svc { grid-template-columns: 1fr; gap: 1.5rem; padding: 3rem 0; }
  .svc__list { grid-template-columns: 1fr 1fr; }
}

/* ===== Home services preview cards ===== */
.svc-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}
.svc-card {
  background: var(--bg);
  padding: 2rem 1.75rem 2.25rem;
  display: flex; flex-direction: column; gap: 1rem;
  position: relative; overflow: hidden;
  transition: background var(--dur-med);
}
.svc-card:hover { background: var(--surface); }
.svc-card::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 0; height: 2px; background: var(--accent);
  transition: width var(--dur-med) var(--ease);
}
.svc-card:hover::after { width: 100%; }
.svc-card__top { display: flex; justify-content: space-between; align-items: flex-start; }
.svc-card__num { color: var(--accent); font-family: var(--f-mono); font-size: 10.5px; letter-spacing: 0.2em; }
.svc-card__icon {
  width: 36px; height: 36px;
  border: 1px solid var(--border);
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--accent);
  transition: border-color var(--dur-med);
}
.svc-card:hover .svc-card__icon { border-color: var(--accent); }
.svc-card__icon svg { width: 18px; height: 18px; stroke: currentColor; fill: none; stroke-width: 1.5; }
.svc-card__title { font-size: 1.25rem; font-weight: 700; line-height: 1.2; }
.svc-card__desc { color: var(--fg-dim); font-size: 0.875rem; margin: 0; }
.svc-card__link {
  margin-top: auto; padding-top: 0.5rem;
  font-family: var(--f-mono); font-size: 10.5px; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--accent);
}
@media (max-width: 980px) { .svc-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .svc-grid { grid-template-columns: 1fr; } }

/* ===== Process phases ===== */
.phase {
  display: grid; grid-template-columns: 200px 1fr 1fr; gap: 3rem;
  padding: 3.5rem 0;
  border-top: 1px solid var(--border);
  align-items: start;
}
.phase > * { min-width: 0; }
.phase:last-of-type { border-bottom: 1px solid var(--border); }
.phase__num {
  font-family: var(--f-display); font-weight: 100;
  font-size: clamp(3rem, 6vw, 5rem);
  letter-spacing: -0.05em; line-height: 0.9;
  white-space: nowrap;
}
.phase__num .slash { color: var(--accent); }
.phase__head { display: flex; flex-direction: column; gap: 0.875rem; }
.phase__head h3 { font-size: 1.625rem; font-weight: 700; }
.phase__head p { margin: 0; color: var(--fg-dim); line-height: 1.7; }
.phase__deliv {
  background: var(--surface-2);
  border: 1px solid var(--border);
  padding: 1.5rem 1.5rem 1.75rem;
}
.phase__deliv .mono { color: var(--accent); }
.phase__deliv ul {
  list-style: none; padding: 0; margin: 0.875rem 0 0;
  display: flex; flex-direction: column; gap: 0.5rem;
}
.phase__deliv li { font-size: 0.9375rem; display: flex; gap: 0.625rem; align-items: baseline; }
.phase__deliv li::before { content: '—'; color: var(--accent); }
@media (max-width: 1100px) { .phase { grid-template-columns: 1fr; gap: 1.5rem; padding: 2.5rem 0; } }

/* ===== Work grid ===== */
.work-grid {
  display: grid; grid-template-columns: repeat(12, 1fr); gap: 1.5rem;
}
.home-work { padding-top: 3rem; padding-bottom: 1rem; }
.home-work__head {
  display: flex; justify-content: space-between; align-items: end; gap: 2rem;
  margin-bottom: 2rem; padding-bottom: 1rem; border-bottom: 1px solid var(--border);
}
.home-work__head h2 em { color: var(--accent); font-style: normal; }
@media (max-width: 720px) {
  .home-work__head { flex-direction: column; align-items: flex-start; }
}
.proj {
  grid-column: span 6;
  background: var(--surface);
  border: 1px solid var(--border);
  overflow: hidden; display: block;
  transition: transform var(--dur-med), border-color var(--dur-med);
  position: relative; cursor: zoom-in;
}
.proj--lg { grid-column: span 12; }
.proj--sm { grid-column: span 4; }
.proj:hover { transform: translateY(-3px); border-color: var(--accent); }
.proj__media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: linear-gradient(135deg, oklch(11% 0.014 230), oklch(6% 0.008 230));
}
.proj--lg .proj__media { aspect-ratio: 21 / 9; }
.proj__media img, .proj__media video {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  transition: transform var(--dur-slow) var(--ease);
}
.proj:hover .proj__media img, .proj:hover .proj__media video { transform: scale(1.04); }
.proj__corner {
  position: absolute; top: 0; right: 0;
  font-family: var(--f-mono);
  font-size: 10.5px; letter-spacing: 0.2em;
  background: oklch(8% 0.012 230 / 0.78);
  backdrop-filter: blur(8px);
  border-left: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 0.5rem 0.75rem;
  color: var(--accent);
  z-index: 2;
}
.proj__meta {
  padding: 1.25rem 1.5rem 1.5rem;
  display: flex; flex-direction: column; gap: 0.375rem;
}
.proj__meta h3 { font-size: 1.0625rem; font-weight: 700; }
.proj__meta .client {
  font-family: var(--f-mono);
  font-size: 10.5px; letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}
@media (max-width: 720px) {
  .proj, .proj--lg, .proj--sm { grid-column: span 12; }
}

/* ===== Lightbox ===== */
.lb {
  position: fixed; inset: 0; z-index: 200;
  display: flex; align-items: center; justify-content: center;
  background: oklch(5% 0.008 230 / 0.92);
  backdrop-filter: blur(14px);
  opacity: 0; pointer-events: none;
  transition: opacity var(--dur-med) var(--ease);
  padding: 5rem 4rem;
}
.lb.is-open { opacity: 1; pointer-events: auto; }
.lb__stage {
  position: relative; max-width: 92vw; max-height: 80vh;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--border);
  background: var(--surface-2);
  transform: scale(0.96);
  transition: transform var(--dur-med) var(--ease);
}
.lb.is-open .lb__stage { transform: scale(1); }
.lb__stage img, .lb__stage video {
  display: block;
  max-width: 90vw; max-height: 78vh;
  object-fit: contain;
  background: oklch(5% 0.008 230);
}
.lb__close, .lb__nav {
  position: absolute;
  width: 44px; height: 44px;
  display: inline-flex; align-items: center; justify-content: center;
  background: oklch(8% 0.012 230 / 0.6);
  border: 1px solid var(--border);
  color: var(--fg); cursor: pointer;
  font-family: var(--f-mono); font-size: 0.75rem; letter-spacing: 0.12em;
  transition: border-color var(--dur-fast), color var(--dur-fast), background var(--dur-fast);
}
.lb__close:hover, .lb__nav:hover {
  border-color: var(--accent); color: var(--accent);
  background: oklch(72% 0.18 210 / 0.08);
}
.lb__close { top: -56px; right: 0; }
.lb__nav--prev { top: 50%; left: -64px; transform: translateY(-50%); }
.lb__nav--next { top: 50%; right: -64px; transform: translateY(-50%); }
.lb__meta {
  position: absolute; bottom: -52px; left: 0; right: 0;
  display: flex; justify-content: space-between; gap: 1rem;
  pointer-events: none;
}
.lb__title { font-family: var(--f-display); font-weight: 700; color: var(--fg); font-size: 0.9375rem; }
.lb__brk { position: absolute; width: 18px; height: 18px; border: 1px solid var(--accent); opacity: 0.7; }
.lb__brk.tl { top: -1px; left: -1px; border-right: none; border-bottom: none; }
.lb__brk.tr { top: -1px; right: -1px; border-left: none; border-bottom: none; }
.lb__brk.bl { bottom: -1px; left: -1px; border-right: none; border-top: none; }
.lb__brk.br { bottom: -1px; right: -1px; border-left: none; border-top: none; }
@media (max-width: 720px) {
  .lb { padding: 4rem 1rem; }
  .lb__nav--prev { left: 8px; } .lb__nav--next { right: 8px; }
  .lb__close { top: 12px; right: 12px; }
}

/* ===== Play overlay on streaming cards ===== */
.proj__play {
  position: absolute; inset: 0; margin: auto;
  width: 64px; height: 64px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: oklch(8% 0.012 230 / 0.65);
  border: 1px solid var(--accent);
  color: var(--accent);
  backdrop-filter: blur(6px);
  z-index: 2; pointer-events: none;
  transition: transform var(--dur-fast) var(--ease), background var(--dur-fast) var(--ease), border-color var(--dur-fast) var(--ease);
}
.proj__play svg { transform: translateX(2px); }
.proj--stream:hover .proj__play {
  transform: scale(1.08);
  background: var(--accent);
  color: oklch(8% 0.012 230);
  border-color: var(--accent);
}

/* ===== Sleek streaming video player (in lightbox) ===== */
.lb__stream {
  width: min(92vw, 1280px);
  aspect-ratio: 16 / 9;
  max-height: 78vh;
  position: relative;
  background: oklch(5% 0.008 230);
}
.zvp {
  position: relative; width: 100%; height: 100%;
  cursor: pointer;
}
.zvp__frame { position: absolute; inset: 0; }
.zvp__frame iframe { width: 100%; height: 100%; border: 0; }
.zvp__overlay {
  position: absolute; inset: 0;
  z-index: 3; background: transparent;
}
.zvp__center {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  pointer-events: none;
  z-index: 4;
  opacity: 0;
  transition: opacity var(--dur-fast) var(--ease);
}
.zvp__big-play {
  width: 88px; height: 88px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: oklch(8% 0.012 230 / 0.6);
  border: 1px solid var(--accent);
  color: var(--accent);
  backdrop-filter: blur(8px);
  pointer-events: auto;
  cursor: pointer;
  transition: transform var(--dur-fast) var(--ease), background var(--dur-fast) var(--ease), color var(--dur-fast) var(--ease);
}
.zvp__big-play:hover { transform: scale(1.08); background: var(--accent); color: oklch(8% 0.012 230); }
.zvp__big-play svg { transform: translateX(3px); }
.zvp[data-state="paused"] .zvp__center,
.zvp[data-state="loading"] .zvp__center,
.zvp[data-state="ready"] .zvp__center {
  opacity: 1;
}
.zvp[data-state="playing"]:hover .zvp__center { opacity: 0.65; }
.zvp__bar {
  position: absolute; left: 0; right: 0; bottom: 0;
  height: 4px;
  background: oklch(8% 0.012 230 / 0.6);
  cursor: pointer;
  z-index: 5;
  transition: height var(--dur-fast) var(--ease);
}
.zvp:hover .zvp__bar { height: 6px; }
.zvp__bar-fill {
  position: absolute; left: 0; top: 0; bottom: 0;
  width: 0;
  background: var(--accent);
  box-shadow: 0 0 12px var(--accent-glow);
  transition: width 80ms linear;
}
.zvp__loader {
  position: absolute; bottom: 14px; left: 14px;
  font-size: 10.5px; letter-spacing: 0.2em;
  color: var(--accent);
  z-index: 5;
  opacity: 0;
  transition: opacity var(--dur-fast) var(--ease);
}
.zvp[data-state="loading"] .zvp__loader { opacity: 1; }

/* ===== Principles grid ===== */
.principles {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}
.principle {
  background: var(--bg);
  padding: 2.25rem 1.75rem;
  display: flex; flex-direction: column; gap: 0.75rem;
  min-height: 230px; position: relative;
}
.principle__id { color: var(--accent); font-family: var(--f-mono); font-size: 10.5px; letter-spacing: 0.2em; }
.principle h4 { font-size: 1.25rem; font-weight: 700; margin-top: 0.5rem; }
.principle p { margin: 0; color: var(--fg-dim); font-size: 0.9375rem; line-height: 1.65; }
@media (max-width: 980px) { .principles { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .principles { grid-template-columns: 1fr; } }

/* ===== About + capabilities ===== */
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 5rem;
  align-items: start;
}
.about-grid .lead {
  font-family: var(--f-display);
  font-weight: 300;
  font-size: clamp(1.5rem, 2.5vw, 2.125rem);
  line-height: 1.3;
  letter-spacing: -0.01em;
}
.about-grid .body { display: flex; flex-direction: column; gap: 1rem; color: var(--fg-dim); font-size: 0.9375rem; line-height: 1.7; }
.about-grid .body p { margin: 0; }
@media (max-width: 980px) { .about-grid { grid-template-columns: 1fr; gap: 2rem; } }

.cap-matrix {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px;
  background: var(--border); border: 1px solid var(--border);
}
.cap-matrix > div { background: var(--bg); padding: 1.5rem 1.75rem; }
.cap-matrix h5 {
  font-family: var(--f-display); font-size: 0.875rem; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--accent);
  margin-bottom: 0.75rem;
}
.cap-matrix ul { list-style: none; padding: 0; margin: 0; }
.cap-matrix li {
  font-family: var(--f-mono); font-size: 10.5px;
  letter-spacing: 0.1em; color: var(--fg-dim);
  padding: 0.375rem 0;
  border-top: 1px dashed var(--border);
}
.cap-matrix li:first-child { border-top: none; }
@media (max-width: 720px) { .cap-matrix { grid-template-columns: 1fr; } }

/* ===== Contact ===== */
.contact-grid {
  display: grid; grid-template-columns: 1fr 1.2fr; gap: 5rem;
}
.form { display: flex; flex-direction: column; gap: 1.5rem; }
.form label {
  display: flex; flex-direction: column; gap: 0.5rem;
  font-family: var(--f-mono); font-size: 10.5px;
  letter-spacing: 0.22em; text-transform: uppercase; color: var(--accent);
}
.form input, .form textarea, .form select {
  background: transparent; border: none;
  border-bottom: 1px solid var(--border);
  padding: 0.875rem 0; color: var(--fg);
  font-family: var(--f-display); font-size: 1rem; font-weight: 500;
  outline: none;
  transition: border-color var(--dur-fast);
}
.form input:focus, .form textarea:focus, .form select:focus { border-color: var(--accent); }
.form textarea { resize: vertical; min-height: 100px; }
.form select { appearance: none; cursor: pointer; }
.info { display: flex; flex-direction: column; gap: 3rem; }
.info__block h4 { font-family: var(--f-mono); font-size: 10.5px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--accent); margin-bottom: 0.75rem; font-weight: 700; }
.info__block .big {
  font-family: var(--f-display); font-size: clamp(1.5rem, 2.5vw, 2.125rem);
  font-weight: 700; color: var(--fg); letter-spacing: -0.01em;
  transition: color var(--dur-fast);
}
.info__block .big:hover { color: var(--accent); }
.info__block ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 0.5rem; }
.info__block li { color: var(--fg-dim); }
@media (max-width: 980px) { .contact-grid { grid-template-columns: 1fr; gap: 3rem; } }

/* ===== Clients strip ===== */
.clients {
  display: grid; grid-template-columns: repeat(6, 1fr); gap: 1px;
  background: var(--border); border: 1px solid var(--border);
}
.clients span {
  background: var(--bg);
  padding: 1.5rem 1rem; text-align: center;
  font-family: var(--f-display); font-weight: 700; font-size: 1rem;
  letter-spacing: 0.08em; color: var(--fg-dim);
  transition: color var(--dur-fast), background var(--dur-fast);
}
.clients span:hover { color: var(--accent); background: var(--surface); }
@media (max-width: 980px) { .clients { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 480px) { .clients { grid-template-columns: repeat(2, 1fr); } }

/* ===== CTA strip ===== */
.cta {
  padding: 4rem 3rem;
  border: 1px solid var(--border);
  background:
    radial-gradient(circle at 85% 50%, oklch(72% 0.18 210 / 0.15), transparent 60%),
    var(--bg);
  display: grid; grid-template-columns: 2fr 1fr; gap: 2rem; align-items: center;
}
.cta h2 { font-size: clamp(1.75rem, 3.5vw, 2.75rem); font-weight: 100; letter-spacing: -0.03em; }
.cta h2 em { font-style: normal; color: var(--accent); }
.cta p { color: var(--fg-dim); margin: 1rem 0 0; font-size: 0.9375rem; }
.cta__btn { justify-self: end; }
@media (max-width: 720px) {
  .cta { grid-template-columns: 1fr; padding: 2.5rem 1.5rem; }
  .cta__btn { justify-self: start; }
}

/* ===== Footer ===== */
.foot {
  border-top: 1px solid var(--border);
  padding: 4rem var(--pad) 2rem;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem;
  max-width: var(--max); margin: 0 auto;
}
.foot__brand { display: flex; flex-direction: column; gap: 1.25rem; max-width: 320px; }
.foot__brand img { height: 32px; width: auto; }
.foot__brand p { color: var(--fg-dim); font-size: 0.9375rem; margin: 0; line-height: 1.6; }
.foot__col h5 { font-family: var(--f-mono); font-size: 10.5px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--accent); margin-bottom: 1rem; font-weight: 700; }
.foot__col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 0.625rem; }
.foot__col a { color: var(--fg-dim); transition: color var(--dur-fast); font-size: 0.9375rem; }
.foot__col a:hover { color: var(--accent); }
.foot__base {
  grid-column: 1 / -1;
  display: flex; justify-content: space-between;
  padding-top: 2rem; margin-top: 1rem;
  border-top: 1px solid var(--border);
}
@media (max-width: 720px) {
  .foot { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .foot__base { flex-direction: column; gap: 0.75rem; }
}

/* ===== Reveal ===== */
.reveal {
  opacity: 0; filter: blur(10px); transform: translateY(20px);
  transition: opacity var(--dur-slow) var(--ease),
              filter var(--dur-slow) var(--ease),
              transform var(--dur-slow) var(--ease);
}
.reveal.is-in { opacity: 1; filter: blur(0); transform: translateY(0); }

/* ===== Service detail body ===== */
.svc-body {
  display: grid; grid-template-columns: 1.4fr 1fr; gap: 5rem;
}
.svc-body p {
  font-family: var(--f-display); font-weight: 300;
  font-size: 1.25rem; line-height: 1.55; letter-spacing: -0.005em;
  color: var(--fg);
  margin: 0 0 1.5rem;
}
.svc-body .body-dim { color: var(--fg-dim); font-weight: 400; font-size: 1rem; line-height: 1.7; }
.svc-deliv {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 2rem;
  display: flex; flex-direction: column; gap: 1.5rem;
}
.svc-deliv h5 { font-family: var(--f-mono); font-size: 10.5px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--accent); font-weight: 700; }
.svc-deliv ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 0.5rem; }
.svc-deliv li {
  font-family: var(--f-mono); font-size: 11px; letter-spacing: 0.1em;
  color: var(--fg); padding-left: 1rem; position: relative;
}
.svc-deliv li::before { content: '+'; position: absolute; left: 0; color: var(--accent); }
@media (max-width: 980px) { .svc-body { grid-template-columns: 1fr; gap: 2.5rem; } }

/* ===================================================================
   DIVISIONAL ARCHITECTURE — added 2026-05-24
   =================================================================== */

/* ===== Umbrella picker (index.html) ===== */
.umbrella-hero {
  padding: 9rem 0 3rem;
}
.umbrella-hero__eyebrow {
  display: flex; gap: 1.5rem; align-items: center;
  margin-bottom: 1.5rem;
}

/* Hero 2-col layout : copy left, square logo box right */
.umbrella-hero__grid {
  display: grid; grid-template-columns: 1.2fr 1fr; gap: 4rem;
  align-items: center;
}
.umbrella-hero__copy {
  display: flex; flex-direction: column; gap: 2rem;
}

.umbrella-hero__mark {
  position: relative;
  display: flex; align-items: center; justify-content: center;
  aspect-ratio: 1 / 1;
  width: 100%;
  max-width: 560px;
  justify-self: end;
  background: linear-gradient(135deg, oklch(12% 0.014 230), oklch(6% 0.008 230));
  border: 1px solid var(--border);
  overflow: hidden;
}
.umbrella-hero__mark::before {
  content: ''; position: absolute; inset: 0;
  background-image:
    linear-gradient(var(--border) 1px, transparent 1px),
    linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 60px 60px;
  opacity: 0.35;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
}
.umbrella-hero__logo {
  width: 70%;
  height: auto;
  display: block;
  color: var(--fg);
  z-index: 2;
  animation: floaty 7s var(--ease) infinite;
}
@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.umbrella-hero__mark .corner {
  position: absolute; width: 18px; height: 18px;
  border: 1px solid var(--accent); opacity: 0.7;
}
.umbrella-hero__mark .corner--tl { top: 18px; left: 18px; border-right: none; border-bottom: none; }
.umbrella-hero__mark .corner--tr { top: 18px; right: 18px; border-left: none; border-bottom: none; }
.umbrella-hero__mark .corner--bl { bottom: 18px; left: 18px; border-right: none; border-top: none; }
.umbrella-hero__mark .corner--br { bottom: 18px; right: 18px; border-left: none; border-top: none; }
.umbrella-hero__mark .stamp {
  position: absolute; bottom: 1.25rem; left: 1.25rem;
  font-size: 9.5px;
}
.umbrella-hero__mark .dim-mark {
  position: absolute;
  font-family: var(--f-mono);
  font-size: 9.5px; letter-spacing: 0.22em;
  color: var(--accent);
}
.umbrella-hero__mark .dim-mark--top   { top: 14px; left: 50%; transform: translateX(-50%); }
.umbrella-hero__mark .dim-mark--right { right: 14px; top: 50%; transform: translateY(-50%) rotate(90deg); }

@media (max-width: 980px) {
  .umbrella-hero__grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .umbrella-hero__mark { justify-self: stretch; max-width: none; aspect-ratio: 4 / 3; }
  .umbrella-hero__logo { width: 60%; }
}
@media (max-width: 600px) {
  .umbrella-hero__mark { aspect-ratio: 1 / 1; }
  .umbrella-hero__logo { width: 75%; }
}
.umbrella-hero__title {
  font-family: var(--f-display);
  font-weight: 100;
  font-size: clamp(3.5rem, 10vw, 9.5rem);
  letter-spacing: -0.045em;
  line-height: 0.94;
  max-width: 14ch;
}
.umbrella-hero__title em { font-style: normal; color: var(--accent); }
.umbrella-hero__lede {
  margin-top: 2.5rem;
  max-width: 56ch;
  color: var(--fg-dim);
  font-size: 1.0625rem;
  line-height: 1.65;
}

.lanes {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 1.25rem;
  margin-top: 4rem;
}
.lane-card {
  --lane-accent: var(--accent);
  position: relative;
  display: flex; flex-direction: column;
  padding: 2rem 1.5rem 2.25rem;
  background: var(--bg);
  border: 1px solid var(--border);
  overflow: hidden;
  min-height: 360px;
  transition: transform var(--dur-med) var(--ease),
              background var(--dur-med),
              border-color var(--dur-med);
}
.lane-card[data-lane="creatives"] { --lane-accent: oklch(72% 0.18 25); }
.lane-card[data-lane="vision"]    { --lane-accent: oklch(78% 0.16 70); }
.lane-card[data-lane="motion"]    { --lane-accent: oklch(70% 0.20 290); }
.lane-card[data-lane="lab"]       { --lane-accent: oklch(76% 0.18 150); }
.lane-card[data-lane="ai"]        { --lane-accent: oklch(85% 0.20 110); }
.lane-card:hover {
  transform: translateY(-4px);
  background: var(--surface);
  border-color: var(--lane-accent);
}
.lane-card::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 100%; height: 3px;
  background: var(--lane-accent);
  transform: scaleX(0); transform-origin: left;
  transition: transform var(--dur-med) var(--ease);
}
.lane-card:hover::after { transform: scaleX(1); }

.lane-card__top {
  display: flex; justify-content: space-between; align-items: flex-start;
  margin-bottom: 1.25rem;
}
.lane-card__num {
  font-family: var(--f-mono);
  font-size: 11px; letter-spacing: 0.22em;
  color: var(--lane-accent);
}
.lane-card__count {
  font-family: var(--f-mono);
  font-size: 10px; letter-spacing: 0.2em;
  color: var(--muted);
  padding: 0.25rem 0.625rem;
  border: 1px solid var(--border-strong);
  border-radius: 999px;
}
.lane-card__name {
  font-family: var(--f-display);
  font-weight: 100;
  font-size: clamp(1.75rem, 2.4vw, 2.5rem);
  letter-spacing: -0.03em;
  line-height: 0.95;
  margin-bottom: 0.5rem;
}
.lane-card__name em { font-style: normal; color: var(--lane-accent); font-weight: 700; }
.lane-card__kicker {
  font-family: var(--f-mono);
  font-size: 11px; letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--lane-accent);
  margin-bottom: 1rem;
}
.lane-card__desc {
  color: var(--fg-dim);
  font-size: 0.875rem;
  line-height: 1.55;
  margin: 0;
}
.lane-card__services {
  margin-top: auto; padding-top: 1.25rem;
  display: flex; flex-wrap: wrap; gap: 0.375rem;
}
.lane-card__services span {
  font-family: var(--f-mono);
  font-size: 9.5px; letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 0.25rem 0.5rem;
  border: 1px solid var(--border);
}
.lane-card__enter {
  margin-top: 1rem;
  font-family: var(--f-mono);
  font-size: 10.5px; letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--lane-accent);
  display: inline-flex; align-items: center; gap: 0.5rem;
}
.lane-card__enter::after { content: '→'; transition: transform var(--dur-med); }
.lane-card:hover .lane-card__enter::after { transform: translateX(4px); }

@media (max-width: 1180px) { .lanes { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 720px)  { .lanes { grid-template-columns: 1fr; } }

/* ===== Division landing : Selected work strip ===== */
.lane-work {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
}
.lane-work .proj { grid-column: span 1; }
@media (max-width: 980px) { .lane-work { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .lane-work { grid-template-columns: 1fr; } }

/* ===== Cross-division strip (small cards) ===== */
.cross-lanes {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}
.cross-lane {
  --lane-accent: var(--accent);
  background: var(--bg);
  padding: 1.75rem 1.5rem;
  display: flex; flex-direction: column; gap: 0.5rem;
  transition: background var(--dur-med);
  position: relative; overflow: hidden;
}
.cross-lane[data-lane="creatives"] { --lane-accent: oklch(72% 0.18 25); }
.cross-lane[data-lane="vision"]    { --lane-accent: oklch(78% 0.16 70); }
.cross-lane[data-lane="motion"]    { --lane-accent: oklch(70% 0.20 290); }
.cross-lane[data-lane="lab"]       { --lane-accent: oklch(76% 0.18 150); }
.cross-lane[data-lane="ai"]        { --lane-accent: oklch(85% 0.20 110); }
.cross-lane:hover { background: var(--surface); }
.cross-lane::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 0; height: 2px; background: var(--lane-accent);
  transition: width var(--dur-med) var(--ease);
}
.cross-lane:hover::after { width: 100%; }
.cross-lane .mono { color: var(--lane-accent); }
.cross-lane h4 {
  font-family: var(--f-display);
  font-size: 1.0625rem; font-weight: 700;
}
.cross-lane p { margin: 0; color: var(--fg-dim); font-size: 0.8125rem; line-height: 1.5; }
@media (max-width: 980px) { .cross-lanes { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .cross-lanes { grid-template-columns: 1fr; } }

/* ===== Work page : filter tabs ===== */
.work-tabs {
  display: flex; flex-wrap: wrap; gap: 4px;
  padding: 4px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 999px;
  margin-bottom: 2rem;
  width: max-content;
}
.work-tab {
  --lane-accent: var(--accent);
  padding: 0.625rem 1.125rem;
  border: none; background: transparent;
  font-family: var(--f-mono);
  font-size: 10.5px; letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted); cursor: pointer;
  border-radius: 999px;
  transition: color var(--dur-fast), background var(--dur-fast);
}
.work-tab[data-lane="creatives"] { --lane-accent: oklch(72% 0.18 25); }
.work-tab[data-lane="vision"]    { --lane-accent: oklch(78% 0.16 70); }
.work-tab[data-lane="motion"]    { --lane-accent: oklch(70% 0.20 290); }
.work-tab[data-lane="lab"]       { --lane-accent: oklch(76% 0.18 150); }
.work-tab[data-lane="ai"]        { --lane-accent: oklch(85% 0.20 110); }
.work-tab:hover { color: var(--fg); }
.work-tab.is-active {
  background: var(--lane-accent);
  color: var(--bg-deep);
}
@media (max-width: 720px) { .work-tabs { width: 100%; overflow-x: auto; } }

/* ===== Division landing : process snapshot ===== */
.proc-strip {
  display: grid; grid-template-columns: repeat(6, 1fr); gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}
.proc-strip__cell {
  background: var(--bg);
  padding: 1.5rem 1.25rem;
  display: flex; flex-direction: column; gap: 0.5rem;
  transition: background var(--dur-med);
}
.proc-strip__cell:hover { background: var(--surface); }
.proc-strip__cell .num {
  font-family: var(--f-display); font-weight: 100;
  font-size: 1.75rem; letter-spacing: -0.04em;
  color: var(--accent);
}
.proc-strip__cell h5 {
  font-family: var(--f-display); font-size: 0.875rem;
  font-weight: 700; letter-spacing: -0.005em;
}
.proc-strip__cell p { margin: 0; color: var(--fg-dim); font-size: 0.75rem; line-height: 1.5; }
@media (max-width: 980px) { .proc-strip { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 600px) { .proc-strip { grid-template-columns: repeat(2, 1fr); } }

/* ===== Custom cursor (hidden on touch) ===== */
@media (hover: hover) and (pointer: fine) {
  html, body { cursor: none; }
  a, button, .proj, .lane-card, input, textarea, select, [role="button"] { cursor: none; }
  input, textarea { cursor: none; }
}
.cursor__dot {
  position: fixed; top: 0; left: 0;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--fg);
  pointer-events: none;
  z-index: 9999;
  transition: opacity 200ms;
  will-change: transform;
  contain: layout style paint;
}
.cursor__ring {
  position: fixed; top: 0; left: 0;
  width: 34px; height: 34px;
  border: 1px solid var(--accent);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transition: width 260ms var(--ease),
              height 260ms var(--ease),
              border-color 200ms,
              background 200ms,
              opacity 200ms;
  will-change: transform;
  contain: layout style paint;
}
.cursor__ring.is-hover {
  width: 52px; height: 52px;
  border-color: var(--accent);
}
.cursor__dot.is-hover {
  opacity: 0;
}

@media (hover: none), (pointer: coarse) {
  .cursor, .cursor__dot, .cursor__ring { display: none; }
  html, body { cursor: auto; }
}

/* ===== HUD brand tag : lane name pill ===== */
.hud__brand .lane-tag {
  display: inline-block;
  padding: 2px 8px;
  background: var(--accent);
  color: var(--bg-deep);
  border-radius: 4px;
  font-size: 9px;
  letter-spacing: 0.22em;
  font-weight: 700;
  margin-left: 4px;
}
