:root {
  --ink: #111111;
  --muted: #6e6e73;
  --soft: #f5f5f7;
  --line: rgba(17, 17, 17, 0.09);
  --paper: #ffffff;
  --blue: #0071e3;
  --violet: #7357ff;
  --radius-lg: 40px;
  --radius-md: 28px;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.1);
  --max: 1180px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

section[id], header[id], footer[id] { scroll-margin-top: 92px; }

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Helvetica Neue", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background:
    radial-gradient(circle at 78% 4%, rgba(115, 87, 255, 0.09), transparent 28rem),
    radial-gradient(circle at 12% 22%, rgba(0, 113, 227, 0.06), transparent 30rem),
    #fff;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, a { -webkit-tap-highlight-color: transparent; }

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 100;
  padding: 10px 14px;
  border-radius: 999px;
  background: #111;
  color: #fff;
  transform: translateY(-140%);
}

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

.nav {
  position: fixed;
  top: 18px;
  left: 50%;
  z-index: 50;
  width: min(calc(100% - 32px), 720px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 10px 8px 18px;
  border: 1px solid rgba(255,255,255,.65);
  border-radius: 999px;
  background: rgba(250, 250, 252, 0.78);
  box-shadow: 0 12px 40px rgba(0,0,0,.07);
  backdrop-filter: blur(22px) saturate(160%);
  -webkit-backdrop-filter: blur(22px) saturate(160%);
  transform: translateX(-50%);
}

.brand { color:var(--ink); font-size:14px; font-weight:700; letter-spacing:-0.01em; }
.nav-links { display:flex; align-items:center; gap:6px; }
.nav-links a { font-size:13px; color:#4b4b50; transition:color .2s ease,background .2s ease,box-shadow .2s ease; }
.nav-links > a:not(.nav-cta) { min-height:34px; display:inline-flex; align-items:center; padding:0 10px; border-radius:999px; }
.nav-links a:not(.nav-cta):hover { color:#000; background:rgba(17,17,17,.045); }
.nav-links > a[aria-current="page"]:not(.nav-cta) { color:var(--ink); background:rgba(17,17,17,.075); box-shadow:inset 0 0 0 1px rgba(17,17,17,.035); font-weight:700; }
.nav .nav-cta,
.nav-links .nav-cta { color: #fff; }
.nav-menu-toggle,
.mobile-nav-menu { display:none; }

.button,
.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 0 20px;
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  font-size: 14px;
  font-weight: 650;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}

.nav-cta { min-height: 34px; padding: 0 15px; font-size: 12px; }
.button:hover, .nav-cta:hover { transform: translateY(-2px); box-shadow: 0 10px 24px rgba(0,0,0,.18); }
.nav .nav-cta:hover,
.nav .nav-cta:focus-visible,
.nav .nav-cta:active { color: #fff; }
.button.secondary { color: var(--ink); background: rgba(255,255,255,.8); border: 1px solid var(--line); }
.button.secondary:hover { box-shadow: 0 10px 24px rgba(0,0,0,.08); }
.button.blue { background: var(--blue); }

.container { width: min(calc(100% - 40px), var(--max)); margin-inline: auto; }

.hero {
  min-height: 100svh;
  display: grid;
  align-items: center;
  padding: 128px 0 72px;
  overflow: hidden;
}

.hero-grid { position: relative; display: grid; grid-template-columns: 1fr .36fr; gap: 50px; align-items: end; }
.eyebrow { margin: 0 0 18px; color: var(--blue); font-size: 14px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; }

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

h1 {
  max-width: 980px;
  margin-bottom: 28px;
  font-size: clamp(56px, 8.4vw, 122px);
  line-height: .91;
  letter-spacing: -.072em;
  font-weight: 700;
}

.gradient-text {
  background: linear-gradient(100deg, #111 0%, #111 27%, #1771de 45%, #8057e7 57%, #111 76%, #111 100%);
  background-size: 240% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: hero-gradient-shift 7s cubic-bezier(.45,0,.2,1) infinite;
}

@keyframes hero-gradient-shift {
  0%, 12% { background-position:100% 50%; }
  58%, 72% { background-position:0% 50%; }
  100% { background-position:100% 50%; }
}

.hero-copy { max-width: 700px; font-size: clamp(20px, 2.15vw, 28px); line-height: 1.35; letter-spacing: -.025em; color: var(--muted); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }

.hero-aside { justify-self: end; width: 100%; max-width: 230px; }
.profile-wrap { position: relative; overflow: hidden; aspect-ratio: 1; border-radius: 50%; background: #e7e7e9; box-shadow: var(--shadow); }
.profile-wrap::after { content:""; position:absolute; inset:0; border:1px solid rgba(255,255,255,.75); border-radius:inherit; }
.profile-wrap img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.86) contrast(1.02); }
.availability { display: flex; align-items: center; gap: 8px; margin: 16px 0 0; color: var(--muted); font-size: 13px; line-height: 1.35; }
.status-dot { flex: 0 0 auto; width: 8px; height: 8px; border-radius: 50%; background: #23a55a; box-shadow: 0 0 0 5px rgba(35,165,90,.12); }

.proof-strip { padding: 12px 0 88px; }
.proof-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.proof { padding: 30px 22px; border-right: 1px solid var(--line); }
.proof:first-child { padding-left: 0; }
.proof:last-child { border-right: 0; }
.proof strong { display: block; margin-bottom: 8px; font-size: clamp(26px, 3vw, 42px); line-height: 1; letter-spacing: -.05em; }
.proof span { display: block; max-width: 190px; color: var(--muted); font-size: 13px; line-height: 1.4; }

.trust-section { overflow:hidden; padding:94px 0 100px; border-top:1px solid var(--line); }
.trust-head { display:flex; justify-content:space-between; align-items:end; gap:50px; margin-bottom:58px; }
.trust-head h2 { max-width:820px; font-size:clamp(42px,5.6vw,74px); }
.trust-head > p { max-width:370px; margin:0 0 5px; color:var(--muted); font-size:16px; line-height:1.5; }
.logo-marquee { width:100%; overflow:hidden; padding:31px 0; border-top:1px solid var(--line); border-bottom:1px solid var(--line); mask-image:linear-gradient(to right,transparent,#000 8%,#000 92%,transparent); -webkit-mask-image:linear-gradient(to right,transparent,#000 8%,#000 92%,transparent); }
.logo-track { display:flex; width:max-content; animation:logo-marquee 68s linear infinite; will-change:transform; }
.logo-marquee.is-interactive { cursor:grab; touch-action:pan-y; user-select:none; -webkit-user-select:none; overscroll-behavior-x:contain; }
.logo-marquee.is-interactive.is-dragging { cursor:grabbing; }
.logo-marquee.is-interactive .logo-track { animation:none; }
.logo-marquee.is-interactive img { pointer-events:none; -webkit-user-drag:none; }
.logo-set { display:flex; align-items:center; gap:64px; padding-right:64px; }
.logo-wordmark { flex:0 0 auto; display:inline-flex; align-items:center; gap:12px; color:#202024; font-size:20px; font-weight:700; line-height:1; letter-spacing:-.035em; white-space:nowrap; opacity:.76; transition:opacity .2s ease; }
.logo-wordmark img { width:40px; height:40px; flex:0 0 40px; object-fit:contain; }
.logo-wordmark > span { display:block; }
.logo-wordmark.logo-only { gap:0; }
.logo-wordmark.logo-only img { flex:none; }
.logo-wordmark.logo-roche-full img { width:76px; height:42px; }
.logo-wordmark.logo-bloomberg-full img { width:118px; height:28px; }
.logo-wordmark.logo-sony-full img { width:94px; height:24px; }
.logo-wordmark.logo-novo-full img { width:84px; height:62px; }
.logo-wordmark:hover { opacity:1; }
.logo-marquee:hover .logo-track,
.logo-marquee:focus .logo-track,
.logo-marquee:focus-within .logo-track { animation-play-state:paused; }
.trust-note { margin-top:20px; color:var(--muted); font-size:12px; text-align:right; }

@keyframes logo-marquee {
  from { transform:translateX(0); }
  to { transform:translateX(-50%); }
}

.section { padding: 100px 0; }
.section-soft { background: var(--soft); }
.section-head { display: flex; justify-content: space-between; align-items: end; gap: 30px; margin-bottom: 50px; }
.section-kicker { margin: 0 0 14px; color: var(--muted); font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; }
h2 { max-width: 900px; margin-bottom: 0; font-size: clamp(42px, 6vw, 80px); line-height: .98; letter-spacing: -.06em; }
.section-intro { max-width: 400px; margin-bottom: 5px; color: var(--muted); font-size: 17px; line-height: 1.5; }

.work-list { display: grid; gap: 30px; }
.case-card {
  position: relative;
  min-height: 680px;
  display: grid;
  grid-template-columns: .78fr 1.22fr;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: #101114;
  color: #fff;
  isolation: isolate;
}
.case-card[data-card-href] { cursor:pointer; }

.case-copy { position: relative; z-index: 2; align-self: end; padding: clamp(34px, 5vw, 68px); }
.case-number { margin-bottom: 26px; color: rgba(255,255,255,.52); font-size: 13px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.case-card h3 { max-width: 500px; margin-bottom: 20px; font-size: clamp(36px, 5vw, 66px); line-height: .96; letter-spacing: -.055em; }
.case-card h3 a:focus-visible { outline:2px solid #fff; outline-offset:5px; border-radius:4px; }
.case-card p { max-width: 510px; margin-bottom: 30px; color: rgba(255,255,255,.67); font-size: 17px; line-height: 1.5; }
.case-link { display: inline-flex; align-items: center; gap: 9px; font-size: 15px; font-weight: 650; }
.case-link span { transition: transform .2s ease; }
.case-link:hover span { transform: translateX(4px); }
.case-links { display:flex; flex-wrap:wrap; gap:22px; align-items:center; }
.case-link-muted { color:rgba(255,255,255,.55); }
.case-link-muted:hover { color:#fff; }

.all-work { margin-top:120px; padding-top:90px; border-top:1px solid rgba(17,17,17,.11); }
.all-work-head { display:flex; justify-content:space-between; align-items:end; gap:40px; margin-bottom:44px; }
.all-work-head h2 { font-size:clamp(42px,5vw,68px); }
.all-work-head > p { max-width:430px; margin:0 0 6px; color:var(--muted); font-size:16px; line-height:1.5; }
.archive-grid { display:grid; grid-template-columns:1fr 1fr; gap:22px; }
.story-card { overflow:hidden; border-radius:32px; background:#fff; border:1px solid rgba(17,17,17,.08); transition:transform .3s ease, box-shadow .3s ease; }
.story-card:hover { transform:translateY(-5px); box-shadow:0 24px 60px rgba(0,0,0,.09); }
.story-thumb { min-height:310px; display:flex; align-items:center; justify-content:center; overflow:hidden; background:#eef1f5; }
.story-thumb img { display:block; width:100%; height:auto; max-height:440px; object-fit:contain; }
.story-thumb strong { padding:42px; font-size:clamp(38px,5vw,66px); line-height:.94; letter-spacing:-.06em; }
.story-card-copy { padding:28px 30px 32px; }
.story-card-copy span { display:block; margin-bottom:16px; color:var(--muted); font-size:11px; font-weight:700; letter-spacing:.08em; text-transform:uppercase; }
.story-card-copy h3 { margin-bottom:13px; font-size:clamp(26px,3.2vw,38px); line-height:1.02; letter-spacing:-.045em; }
.story-card-copy p { margin:0; color:var(--muted); line-height:1.45; }
.story-card-dark { background:#111; color:#fff; border-color:#111; }
.story-card-dark .story-thumb { background:linear-gradient(145deg,#092e39,#101326); }
.story-card-dark .story-card-copy span,
.story-card-dark .story-card-copy p { color:rgba(255,255,255,.55); }
.story-card-green .story-thumb { background:linear-gradient(150deg,#e8ff62,#4bd979); }
.story-card-blue .story-thumb { background:#dceaff; color:#123a83; }
.story-card-warm .story-thumb { background:#f4dfbf; color:#39281b; }
.story-thumb-phone img { width:auto; height:310px; max-height:310px; }
.story-card-career { background:#101319; color:#fff; border-color:#101319; }
.story-card-career .story-card-copy span,
.story-card-career .story-card-copy p { color:rgba(255,255,255,.56); }
.career-thumb { align-items:stretch; justify-content:stretch; padding:28px; background:linear-gradient(145deg,#dbe7ff,#eee8ff 52%,#d5f7ec); color:#111; }
.career-thumb-content { width:100%; display:grid; grid-template-columns:repeat(6,1fr); align-content:space-between; gap:8px; padding:24px; border:1px solid rgba(17,17,17,.12); border-radius:22px; background:rgba(255,255,255,.58); }
.career-thumb-content > span { padding:8px 5px; border-radius:999px; background:rgba(255,255,255,.75); font-size:10px; font-weight:700; text-align:center; }
.career-thumb-content strong { grid-column:1/-1; align-self:end; padding:22px 4px 4px; font-size:clamp(34px,4vw,52px); line-height:.94; letter-spacing:-.055em; }
.story-card-agents { background:#0b1020; color:#fff; border-color:#0b1020; }
.story-card-agents .story-card-copy span,
.story-card-agents .story-card-copy p { color:rgba(255,255,255,.56); }
.agents-thumb { position:relative; flex-direction:column; align-items:flex-start; justify-content:space-between; padding:38px; background:radial-gradient(circle at 83% 18%,rgba(126,97,255,.62),transparent 30%),radial-gradient(circle at 14% 90%,rgba(0,187,214,.38),transparent 32%),#12172c; color:#fff; }
.agents-thumb::after { content:""; position:absolute; inset:0; pointer-events:none; background-image:linear-gradient(rgba(255,255,255,.045) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.045) 1px,transparent 1px); background-size:34px 34px; mask-image:linear-gradient(to bottom,#000,transparent); -webkit-mask-image:linear-gradient(to bottom,#000,transparent); }
.agents-thumb-flow { position:relative; z-index:1; display:flex; align-items:center; gap:9px; width:100%; }
.agents-thumb-flow span { flex:1 1 auto; padding:10px 8px; border:1px solid rgba(255,255,255,.18); border-radius:999px; background:rgba(255,255,255,.08); font-size:10px; font-weight:700; text-align:center; }
.agents-thumb-flow b { color:rgba(255,255,255,.38); font-weight:500; }
.agents-thumb > strong { position:relative; z-index:1; padding:42px 0 14px; font-size:clamp(46px,5vw,68px); }
.agents-thumb > small { position:relative; z-index:1; color:rgba(255,255,255,.52); font-size:11px; font-weight:700; letter-spacing:.07em; text-transform:uppercase; }
.story-card-taste { background:#0b0b0c; color:#fff; border-color:#0b0b0c; }
.story-card-taste .story-card-copy span,
.story-card-taste .story-card-copy p { color:rgba(255,255,255,.56); }
.taste-thumb { background:#08080a; }
.taste-thumb img { width:100%; height:100%; max-height:none; object-fit:cover; transition:transform .7s cubic-bezier(.2,.7,.2,1); }
.story-card-taste:hover .taste-thumb img { transform:scale(1.025); }

.view-all-work { margin-top:36px; display:flex; align-items:center; justify-content:space-between; gap:50px; padding:46px 50px; border-radius:30px; background:#fff; border:1px solid rgba(17,17,17,.08); }
.view-all-work h3 { margin-bottom:12px; font-size:clamp(32px,4vw,48px); line-height:1; letter-spacing:-.05em; }
.view-all-work p:not(.section-kicker) { max-width:650px; margin-bottom:0; color:var(--muted); font-size:16px; line-height:1.5; }
.view-all-work .button { flex:0 0 auto; }

.work-index-hero { padding:160px 0 92px; }
.work-index-hero h1 { max-width:1050px; }
.work-index-hero .case-lede { margin-bottom:0; }
.work-index-list { padding-top:90px; }
.work-index-list .all-work { margin:0; padding:0; border:0; }
.work-index-footer { margin-top:0; }

.case-media { position: relative; min-height: 570px; margin: 54px 0 54px 0; overflow: hidden; border-radius: 28px 0 0 28px; background: #f5f7fb; box-shadow: -20px 30px 80px rgba(0,0,0,.35); }
.case-media img { width: 100%; height: 100%; object-fit: cover; object-position: left center; transition: transform .7s cubic-bezier(.2,.7,.2,1); }
.case-card:hover .case-media img { transform: scale(1.018); }

.case-card.microverse { background: linear-gradient(145deg, #052a35, #0b192d 48%, #15152a); }
.microverse .case-media { margin-right: 46px; border-radius: 28px; display: flex; justify-content: center; background: radial-gradient(circle at 50% 15%, #125f68, #07151f 62%); }
.microverse .case-media img { width: auto; max-width: 74%; object-fit: cover; object-position: center top; box-shadow: 0 25px 70px rgba(0,0,0,.42); }

.case-card.research { background: #e8e2d9; color: #171717; }
.research .case-card p, .research .case-number { color: rgba(17,17,17,.6); }
.research .case-media { display: grid; place-items: center; margin-right: 46px; border-radius: 28px; background: #f8f7f4; }
.research-board { width: 82%; display: grid; gap: 16px; transform: rotate(-2deg); }
.research-note { padding: 22px; border: 1px solid rgba(0,0,0,.08); border-radius: 18px; background: #fff; box-shadow: 0 12px 32px rgba(40,30,20,.08); }
.research-note:nth-child(2) { margin-left: 12%; background: #dbe9ff; }
.research-note:nth-child(3) { margin-right: 18%; background: #fff1b9; }
.research-note span { display:block; margin-bottom:9px; color:var(--muted); font-size:11px; font-weight:700; letter-spacing:.08em; text-transform:uppercase; }
.research-note strong { font-size: clamp(20px, 2.4vw, 34px); line-height:1.05; letter-spacing:-.04em; }

.origin-grid { display:grid; grid-template-columns:1.06fr .94fr; gap:28px; }
.origin-story { min-height: 570px; display:flex; flex-direction:column; justify-content:space-between; padding:clamp(34px,5vw,64px); border-radius:var(--radius-lg); background:#111; color:#fff; }
.origin-story blockquote { max-width:720px; margin:0; font-size:clamp(36px,5vw,68px); line-height:1; letter-spacing:-.055em; }
.origin-meta { display:flex; flex-wrap:wrap; gap:28px; color:rgba(255,255,255,.62); font-size:14px; }
.origin-visual { position:relative; min-height:570px; overflow:hidden; border-radius:var(--radius-lg); background:linear-gradient(155deg,#e4ff45,#57df75); }
.origin-visual img { position:absolute; left:50%; bottom:-5%; width:96%; height:auto; transform:translateX(-50%) rotate(4deg); filter:drop-shadow(0 30px 30px rgba(0,0,0,.25)); }
.origin-badge { position:absolute; top:34px; left:34px; max-width:250px; font-size:18px; line-height:1.2; font-weight:700; letter-spacing:-.025em; }

.leadership-section { background:#0f1115; color:#fff; }
.leadership-section .section-kicker,
.leadership-section .section-intro { color:rgba(255,255,255,.53); }
.leadership-feature { display:grid; grid-template-columns:.92fr 1.08fr; min-height:610px; overflow:hidden; border:1px solid rgba(255,255,255,.1); border-radius:var(--radius-lg); background:#171a21; transition:transform .3s ease, box-shadow .3s ease; }
.leadership-feature:hover { transform:translateY(-5px); box-shadow:0 30px 80px rgba(0,0,0,.28); }
.leadership-feature-copy { align-self:end; padding:clamp(34px,5vw,64px); }
.leadership-feature-copy h3 { max-width:560px; margin:0 0 22px; font-size:clamp(38px,5vw,66px); line-height:.96; letter-spacing:-.055em; }
.leadership-feature-copy > p:not(.case-number) { max-width:540px; margin-bottom:30px; color:rgba(255,255,255,.63); font-size:17px; line-height:1.5; }
.leadership-feature-map { align-self:stretch; display:grid; grid-template-rows:auto 1fr auto; gap:22px; margin:42px 42px 42px 0; padding:30px; overflow:hidden; border-radius:28px; background:linear-gradient(145deg,#dbe7ff,#eee8ff 48%,#d5f7ec); color:#121318; }
.leadership-levels { display:grid; grid-template-columns:repeat(6,1fr); gap:7px; }
.leadership-levels span { padding:9px 5px; border:1px solid rgba(17,17,17,.1); border-radius:999px; background:rgba(255,255,255,.58); font-size:10px; font-weight:700; text-align:center; }
.leadership-pillars { display:grid; grid-template-columns:1fr 1fr; gap:12px; align-content:center; }
.leadership-pillars span { min-height:112px; display:flex; align-items:flex-end; padding:20px; border:1px solid rgba(17,17,17,.1); border-radius:20px; background:rgba(255,255,255,.68); font-size:clamp(18px,2vw,26px); font-weight:700; letter-spacing:-.035em; }
.leadership-ai { display:flex; align-items:center; gap:14px; padding:15px 18px; border-radius:16px; background:#111; color:#fff; }
.leadership-ai strong { display:grid; place-items:center; width:38px; height:38px; border-radius:50%; background:#fff; color:#111; }
.leadership-ai span { color:rgba(255,255,255,.64); font-size:13px; }

.principles { display:grid; grid-template-columns:repeat(3,1fr); gap:18px; }
.principle { min-height:330px; display:flex; flex-direction:column; justify-content:space-between; padding:34px; border:1px solid var(--line); border-radius:var(--radius-md); background:rgba(255,255,255,.72); }
.principle-index { color:var(--muted); font-size:13px; }
.principle h3 { margin:0 0 12px; font-size:30px; letter-spacing:-.04em; }
.principle p { margin:0; color:var(--muted); line-height:1.5; }

.about-grid { display:grid; grid-template-columns:.8fr 1.2fr; gap:80px; align-items:start; }
.about-photo { position:sticky; top:110px; overflow:hidden; aspect-ratio:1; border-radius:50%; background:#e7e7e9; }
.about-photo img { width:100%; height:100%; object-fit:cover; }
.about-copy h2 { margin-bottom:30px; }
.about-copy > p { max-width:700px; color:#3e3e43; font-size:clamp(22px,2.5vw,32px); line-height:1.35; letter-spacing:-.03em; }
.experience-list { margin-top:48px; border-top:1px solid var(--line); }
.experience { display:grid; grid-template-columns:1fr 1.25fr; gap:30px; padding:22px 0; border-bottom:1px solid var(--line); }
.experience strong { font-size:16px; }
.experience span { color:var(--muted); line-height:1.4; }

.contact { padding:120px 0 46px; background:#111; color:#fff; }
.contact h2 { max-width:1000px; margin-bottom:36px; font-size:clamp(52px,8vw,112px); }
.contact h2 em { font-style:normal; color:#8baeff; }
.contact-actions { display:flex; flex-wrap:wrap; gap:12px; }
.contact .button { background:#fff; color:#111; }
.contact .button.secondary { border-color:rgba(255,255,255,.2); background:rgba(255,255,255,.08); color:#fff; }
.footer { display:flex; justify-content:space-between; gap:20px; margin-top:100px; padding-top:24px; border-top:1px solid rgba(255,255,255,.14); color:rgba(255,255,255,.46); font-size:12px; }

.reveal { opacity:1; transform:none; }

/* Case study pages */
.case-page { background:#fff; }
.case-hero { padding:150px 0 76px; }
.back-link { display:inline-flex; align-items:center; gap:8px; margin-bottom:58px; color:var(--muted); font-size:14px; }
.case-hero h1 { max-width:1050px; font-size:clamp(54px,8vw,112px); }
.case-lede { max-width:800px; color:var(--muted); font-size:clamp(21px,2.3vw,30px); line-height:1.35; letter-spacing:-.025em; }
.case-facts { display:grid; grid-template-columns:repeat(4,1fr); gap:1px; margin-top:64px; overflow:hidden; border:1px solid var(--line); border-radius:24px; background:var(--line); }
.case-fact { min-height:130px; padding:24px; background:#fff; }
.case-fact span { display:block; margin-bottom:12px; color:var(--muted); font-size:12px; text-transform:uppercase; letter-spacing:.08em; }
.case-fact strong { font-size:18px; line-height:1.3; }
.case-cover { width:min(calc(100% - 24px), 1400px); margin:0 auto 110px; padding:clamp(18px,3vw,42px); overflow:hidden; border-radius:40px; background:#eef2f7; }
.case-cover.dark { background:linear-gradient(145deg,#07313c,#0c1528); }
.case-cover img { width:100%; border-radius:20px; box-shadow:0 24px 60px rgba(20,40,70,.16); }
.phone-cover { display:flex; justify-content:center; height:min(78vh,850px); }
.phone-cover img { width:auto; height:100%; }
.story { width:min(calc(100% - 40px), 780px); margin:0 auto; padding-bottom:110px; }
.story-section { margin-bottom:82px; }
.story h2 { margin-bottom:26px; font-size:clamp(38px,5vw,64px); }
.story h3 { margin:45px 0 16px; font-size:26px; letter-spacing:-.035em; }
.story p, .story li { color:#3f3f44; font-size:19px; line-height:1.68; }
.story ul { padding-left:22px; }
.story li + li { margin-top:10px; }
.pullquote { margin:80px -12vw; padding:58px 12vw; border-radius:36px; background:#111; color:#fff; font-size:clamp(32px,4.8vw,66px); line-height:1.05; letter-spacing:-.05em; }
.story-visual { width:min(calc(100% - 24px), 1400px); margin:0 auto 110px; display:grid; gap:22px; }
.story-visual img { width:100%; border-radius:30px; background:#f3f5f8; }
.story-visual.two { grid-template-columns:1fr 1fr; align-items:start; }
.next-case { padding:90px 0; background:var(--soft); }
.next-case a { display:flex; justify-content:space-between; align-items:end; gap:30px; }
.next-case span { color:var(--muted); font-size:13px; text-transform:uppercase; letter-spacing:.08em; }
.next-case strong { display:block; max-width:800px; margin-top:14px; font-size:clamp(38px,5.6vw,72px); line-height:1; letter-spacing:-.055em; }
.next-arrow { font-size:50px; }

/* Page-level navigation */
.page-breadcrumb { max-width:100%; margin-bottom:32px; }
.page-breadcrumb ol { display:flex; align-items:center; min-width:0; margin:0; padding:0; list-style:none; }
.page-breadcrumb li { min-width:0; color:var(--muted); font-size:13px; line-height:1.4; }
.page-breadcrumb li + li { display:flex; align-items:center; }
.page-breadcrumb li + li::before { flex:0 0 auto; margin:0 10px; color:#74747b; font-weight:650; content:'›'; }
.page-breadcrumb a { color:#35353a; transition:color .2s ease; }
.page-breadcrumb a:hover { color:var(--blue); }
.page-breadcrumb li:last-child { display:flex; min-width:0; }
.page-breadcrumb li:last-child span { display:block; min-width:0; overflow:hidden; text-overflow:ellipsis; white-space:nowrap; }

/* Full original Notion articles */
.article-hero { padding-bottom:76px; border-bottom:1px solid var(--line); }
.article-hero h1 { max-width:1120px; }
.article-actions { margin-bottom:6px; }
.notion-article { width:min(calc(100% - 40px), 980px); margin:0 auto; padding:86px 0 120px; }
.notion-content { color:#333338; white-space:normal; }
.notion-content > p,
.notion-content > h1,
.notion-content > h2,
.notion-content > h3,
.notion-content > ul,
.notion-content > ol,
.notion-content > blockquote,
.notion-content > aside,
.notion-content > .callout,
.notion-content > .table_of_contents { max-width:760px; margin-left:auto; margin-right:auto; }
.notion-content p,
.notion-content li { font-size:19px; line-height:1.72; }
.notion-content p { margin-top:0; margin-bottom:1.15em; }
.notion-content h1 { margin-top:2.05em; margin-bottom:.55em; font-size:clamp(38px,5vw,60px); line-height:1; letter-spacing:-.05em; }
.notion-content h2 { margin-top:1.9em; margin-bottom:.55em; font-size:clamp(30px,4vw,44px); line-height:1.05; letter-spacing:-.045em; }
.notion-content h3 { margin-top:1.7em; margin-bottom:.5em; font-size:26px; line-height:1.1; letter-spacing:-.035em; }
.notion-content ul,
.notion-content ol { padding-left:25px; margin-top:.4em; margin-bottom:1.2em; }
.notion-content ul + ul,
.notion-content ol + ol { margin-top:-1.15em; }
.notion-content figure { width:100%; margin:54px auto; }
.notion-content figure a { display:block; }
.notion-content img { display:block; width:auto !important; max-width:100%; height:auto !important; margin-inline:auto; object-fit:contain; }
.notion-content figcaption { max-width:760px; margin:11px auto 0; color:var(--muted); font-size:13px; line-height:1.45; }
.notion-content .column-list { width:100%; display:flex; align-items:flex-start; gap:18px; margin:38px 0; }
.notion-content .column { min-width:0; overflow:visible; }
.notion-content .column figure { margin:0; }
.notion-content .column img { width:100% !important; height:auto !important; }
.notion-content blockquote { margin-top:55px; margin-bottom:55px; padding:34px; border-radius:24px; background:#111; color:#fff; font-size:clamp(28px,4vw,48px); line-height:1.15; letter-spacing:-.04em; }
.notion-content .callout { padding:24px; border:1px solid var(--line); border-radius:20px; background:var(--soft); }
.notion-content hr { max-width:760px; margin:54px auto; border:0; border-bottom:1px solid var(--line); }
.notion-content iframe { display:block; width:100%; max-width:100%; margin:35px auto; border:0; }
.notion-content a { text-decoration:underline; text-decoration-thickness:1px; text-underline-offset:3px; }
.notion-content table { width:100%; border-collapse:collapse; }
.notion-content th,
.notion-content td { padding:10px; border:1px solid var(--line); }
.notion-content .bookmark { display:flex; padding:20px; border:1px solid var(--line); border-radius:18px; text-decoration:none; }

/* Global image viewer */
.lightbox-trigger { cursor:zoom-in; }
.lightbox-trigger img { transition:filter .25s ease; }
.lightbox-trigger:focus-visible { outline:3px solid var(--blue); outline-offset:5px; }
body.lightbox-is-open { position:fixed; right:0; left:0; width:100%; overflow:hidden; }
.image-lightbox {
  width:100vw;
  max-width:none;
  height:100dvh;
  max-height:none;
  margin:0;
  padding:0;
  border:0;
  overflow:hidden;
  background:rgba(8,8,10,.96);
  color:#fff;
}
.image-lightbox[open] { display:block; animation:lightbox-in .28s ease both; }
.image-lightbox::backdrop { background:rgba(8,8,10,.72); backdrop-filter:blur(18px); -webkit-backdrop-filter:blur(18px); }
.image-lightbox-shell { position:relative; width:100%; height:100%; display:grid; grid-template-rows:minmax(0,1fr) auto; }
.image-lightbox-stage { min-width:0; min-height:0; display:grid; place-items:center; padding:70px 88px 22px; }
.image-lightbox-stage img {
  display:block;
  width:auto;
  max-width:100%;
  height:auto;
  max-height:calc(100dvh - 148px);
  object-fit:contain;
  border-radius:4px;
  box-shadow:0 24px 90px rgba(0,0,0,.42);
  opacity:1;
  transform:scale(1);
  transition:opacity .2s ease,transform .35s cubic-bezier(.2,.7,.2,1);
  user-select:none;
  -webkit-user-drag:none;
}
.image-lightbox.is-loading .image-lightbox-stage img { opacity:0; transform:scale(.985); }
.image-lightbox-close,
.image-lightbox-nav {
  position:absolute;
  z-index:2;
  display:grid;
  place-items:center;
  width:46px;
  height:46px;
  padding:0;
  border:1px solid rgba(255,255,255,.14);
  border-radius:50%;
  background:rgba(255,255,255,.09);
  color:#fff;
  backdrop-filter:blur(16px);
  -webkit-backdrop-filter:blur(16px);
  cursor:pointer;
  transition:background .2s ease,transform .2s ease,border-color .2s ease;
}
.image-lightbox-nav[hidden] { display:none; }
.image-lightbox-close { top:20px; right:20px; }
.image-lightbox-nav { top:50%; transform:translateY(-50%); }
.image-lightbox-prev { left:20px; }
.image-lightbox-next { right:20px; }
.image-lightbox-close:hover { background:rgba(255,255,255,.18); transform:scale(1.04); border-color:rgba(255,255,255,.25); }
.image-lightbox-nav:hover { background:rgba(255,255,255,.18); transform:translateY(-50%) scale(1.04); border-color:rgba(255,255,255,.25); }
.image-lightbox-close:focus-visible,
.image-lightbox-nav:focus-visible { outline:2px solid #fff; outline-offset:3px; }
.image-lightbox-close svg,
.image-lightbox-nav svg { width:20px; height:20px; fill:none; stroke:currentColor; stroke-width:1.8; stroke-linecap:round; stroke-linejoin:round; }
.image-lightbox-meta {
  min-height:76px;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:24px;
  padding:16px 88px 22px;
  color:rgba(255,255,255,.68);
}
.image-lightbox-caption { max-width:720px; margin:0; font-size:13px; line-height:1.45; text-align:center; }
.image-lightbox-count { flex:none; color:rgba(255,255,255,.38); font-size:11px; font-weight:750; letter-spacing:.08em; }
.image-lightbox-error { display:none; margin:0; color:rgba(255,255,255,.62); }
.image-lightbox.has-error .image-lightbox-stage img { display:none; }
.image-lightbox.has-error .image-lightbox-error { display:block; }
@keyframes lightbox-in { from { opacity:0; } to { opacity:1; } }

/* Career framework article */
.career-map { width:100%; margin:64px auto 76px; padding:30px; border-radius:30px; background:#101319; color:#fff; }
.career-map-topline { display:grid; grid-template-columns:auto 1fr auto; align-items:center; gap:16px; padding-bottom:24px; border-bottom:1px solid rgba(255,255,255,.13); }
.career-map-topline span { color:rgba(255,255,255,.48); font-size:11px; font-weight:700; letter-spacing:.08em; text-transform:uppercase; }
.career-map-topline strong { font-size:17px; letter-spacing:-.02em; }
.career-levels { display:grid; grid-template-columns:repeat(6,1fr); gap:8px; margin:24px 0; }
.career-levels span { padding:13px 8px; border:1px solid rgba(255,255,255,.12); border-radius:999px; color:rgba(255,255,255,.7); font-size:12px; font-weight:650; text-align:center; }
.career-levels b { margin-right:5px; color:rgba(255,255,255,.32); font-size:9px; }
.career-pillars { display:grid; grid-template-columns:1fr 1fr; gap:12px; }
.career-pillars > div { min-height:170px; display:flex; flex-direction:column; justify-content:space-between; padding:22px; border-radius:20px; background:#fff; color:#111; }
.career-pillars > div:nth-child(2) { background:#dbe7ff; }
.career-pillars > div:nth-child(3) { background:#eee8ff; }
.career-pillars > div:nth-child(4) { background:#d5f7ec; }
.career-pillars > div > span { color:rgba(17,17,17,.38); font-size:11px; font-weight:700; }
.career-pillars strong { margin-top:auto; font-size:clamp(24px,3vw,34px); line-height:1; letter-spacing:-.045em; }
.career-pillars small { margin-top:10px; color:rgba(17,17,17,.55); line-height:1.35; }
.career-ai-rail { display:grid; grid-template-columns:auto 1fr auto; align-items:center; gap:14px; margin-top:12px; padding:16px 18px; border:1px solid rgba(255,255,255,.13); border-radius:18px; background:rgba(255,255,255,.07); }
.career-ai-rail > span { display:grid; place-items:center; width:38px; height:38px; border-radius:50%; background:#fff; color:#111; font-size:12px; font-weight:800; }
.career-ai-rail strong { font-size:15px; }
.career-ai-rail small { color:rgba(255,255,255,.48); text-align:right; }
.ai-practice-grid { width:100%; display:grid; grid-template-columns:repeat(3,1fr); gap:12px; margin:46px auto 64px; }
.ai-practice-grid > div { min-height:190px; display:flex; flex-direction:column; justify-content:space-between; padding:24px; border:1px solid var(--line); border-radius:22px; background:var(--soft); }
.ai-practice-grid span { color:var(--blue); font-size:11px; font-weight:800; letter-spacing:.08em; text-transform:uppercase; }
.ai-practice-grid strong { font-size:19px; line-height:1.25; letter-spacing:-.025em; }

/* Agents & skills article */
.notion-content code { padding:.12em .36em; border:1px solid var(--line); border-radius:7px; background:var(--soft); font-family:"SFMono-Regular",Consolas,"Liberation Mono",monospace; font-size:.86em; }
.agent-anatomy { width:100%; margin:64px auto 76px; padding:30px; border-radius:30px; background:#0b1020; color:#fff; }
.agent-anatomy-head { display:flex; justify-content:space-between; align-items:end; gap:24px; padding-bottom:26px; border-bottom:1px solid rgba(255,255,255,.13); }
.agent-anatomy-head span { color:rgba(255,255,255,.46); font-size:11px; font-weight:800; letter-spacing:.08em; text-transform:uppercase; }
.agent-anatomy-head strong { max-width:430px; font-size:clamp(22px,3vw,34px); line-height:1; letter-spacing:-.045em; text-align:right; }
.agent-anatomy-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:12px; margin-top:24px; }
.agent-anatomy-grid > div { min-height:170px; display:flex; flex-direction:column; justify-content:flex-end; padding:22px; border:1px solid rgba(255,255,255,.12); border-radius:20px; background:rgba(255,255,255,.055); }
.agent-anatomy-grid > div:nth-child(2),
.agent-anatomy-grid > div:nth-child(5) { background:rgba(125,97,255,.18); }
.agent-anatomy-grid > div:nth-child(3),
.agent-anatomy-grid > div:nth-child(6) { background:rgba(0,188,214,.12); }
.agent-anatomy-grid span { margin-bottom:auto; color:rgba(255,255,255,.35); font-size:10px; font-weight:800; }
.agent-anatomy-grid strong { font-size:clamp(24px,3vw,34px); line-height:1; letter-spacing:-.045em; }
.agent-anatomy-grid small { margin-top:9px; color:rgba(255,255,255,.52); line-height:1.35; }
.research-agent-pipeline { width:100%; display:grid; grid-template-columns:1fr auto 1.15fr auto .8fr auto 1.15fr; align-items:stretch; gap:10px; margin:64px auto 76px; padding:24px; border-radius:28px; background:#eef2ff; }
.pipeline-step { min-height:210px; display:flex; flex-direction:column; justify-content:space-between; padding:20px; border:1px solid rgba(17,17,17,.09); border-radius:20px; background:#fff; }
.pipeline-step > span { color:rgba(17,17,17,.42); font-size:10px; font-weight:800; letter-spacing:.07em; text-transform:uppercase; }
.pipeline-step strong { margin-top:auto; font-size:clamp(20px,2.4vw,29px); line-height:1.04; letter-spacing:-.04em; }
.pipeline-step small { margin-top:12px; color:var(--muted); font-size:11px; line-height:1.35; }
.pipeline-agent { background:#11182e; color:#fff; }
.pipeline-agent > span,
.pipeline-agent small { color:rgba(255,255,255,.5); }
.pipeline-automation { background:#d9efff; }
.pipeline-knowledge { background:#d9f5e9; }
.pipeline-arrow { align-self:center; color:rgba(17,17,17,.32); font-size:24px; }
.agent-skill-compare { width:100%; display:grid; grid-template-columns:1fr 1fr; gap:12px; margin:50px auto 64px; }
.agent-skill-compare > div { min-height:230px; display:flex; flex-direction:column; justify-content:flex-end; padding:28px; border-radius:24px; background:#0b1020; color:#fff; }
.agent-skill-compare > div:last-child { background:linear-gradient(145deg,#dbe7ff,#eee8ff); color:#111; }
.agent-skill-compare span { margin-bottom:auto; color:rgba(255,255,255,.45); font-size:11px; font-weight:800; letter-spacing:.08em; text-transform:uppercase; }
.agent-skill-compare > div:last-child span { color:rgba(17,17,17,.42); }
.agent-skill-compare strong { font-size:clamp(28px,4vw,42px); line-height:1; letter-spacing:-.045em; }
.agent-skill-compare p { margin:12px 0 0; color:rgba(255,255,255,.55); font-size:15px; line-height:1.45; }
.agent-skill-compare > div:last-child p { color:rgba(17,17,17,.58); }

/* Taste: full-bleed AI image collection */
.taste-page { background:#09090a; }
.taste-page::before { display:none; }
.taste-page .article-hero { padding-bottom:110px; border-color:rgba(255,255,255,.14); background:#09090a; color:#fff; }
.taste-page .article-hero h1 { max-width:1180px; font-size:clamp(68px,10vw,148px); }
.taste-page .article-hero .case-lede { max-width:900px; color:rgba(255,255,255,.58); }
.taste-page .page-breadcrumb li { color:rgba(255,255,255,.42); }
.taste-page .page-breadcrumb a { color:rgba(255,255,255,.7); }
.taste-page .page-breadcrumb a:hover { color:#fff; }
.taste-page .page-breadcrumb li + li::before { color:rgba(255,255,255,.3); }
.taste-article { width:100%; padding:0; background:#09090a; }
.taste-article .notion-content { color:#fff; background:#09090a; }
.taste-manifesto { width:min(calc(100% - 40px),1180px); margin:0 auto; padding:140px 0 150px; }
.taste-manifesto .taste-opening { max-width:none; margin:0 0 42px; color:rgba(255,255,255,.47); font-size:13px; font-weight:750; letter-spacing:.08em; text-transform:uppercase; }
.taste-manifesto h2 { max-width:1100px; margin:0 0 72px; font-size:clamp(64px,9.5vw,136px); line-height:.87; letter-spacing:-.075em; }
.taste-copy { display:grid; grid-template-columns:repeat(3,1fr); gap:42px; padding-top:34px; border-top:1px solid rgba(255,255,255,.14); }
.taste-copy p { margin:0; color:rgba(255,255,255,.62); font-size:18px; line-height:1.55; }
.taste-collection { padding:0 0 12px; }
.taste-collection-head { width:min(calc(100% - 40px),1400px); display:flex; justify-content:space-between; align-items:end; gap:48px; margin:0 auto 54px; }
.taste-collection-head span { display:block; margin-bottom:16px; color:rgba(255,255,255,.42); font-size:11px; font-weight:800; letter-spacing:.09em; text-transform:uppercase; }
.taste-collection-head h2 { max-width:880px; font-size:clamp(48px,7vw,94px); line-height:.92; }
.taste-collection-head > p { max-width:390px; margin:0 0 5px; color:rgba(255,255,255,.5); font-size:16px; line-height:1.5; }
.taste-gallery { width:calc(100% - 16px); margin:0 auto; columns:5 230px; column-gap:8px; }
.taste-piece { position:relative; break-inside:avoid; margin:0 0 8px; overflow:hidden; background:#141416; }
.taste-piece a { display:block; overflow:hidden; }
.taste-piece a:focus-visible { outline:3px solid #fff; outline-offset:-5px; }
.taste-piece img { display:block; width:100% !important; height:auto !important; max-width:none; margin:0; object-fit:contain; transition:transform .55s cubic-bezier(.2,.7,.2,1),opacity .3s ease; }
.taste-piece:hover img { transform:scale(1.018); opacity:.9; }
.taste-article .notion-content .taste-piece figcaption { position:absolute; right:0; bottom:0; left:0; display:flex; align-items:center; gap:10px; max-width:none; margin:0; padding:46px 16px 15px; color:#fff; background:linear-gradient(to top,rgba(0,0,0,.78),transparent); font-size:12px; line-height:1.35; opacity:0; transform:translateY(6px); transition:opacity .25s ease,transform .25s ease; pointer-events:none; }
.taste-article .notion-content .taste-piece figcaption span { color:rgba(255,255,255,.5); font-size:9px; font-weight:800; letter-spacing:.08em; }
.taste-piece:hover figcaption,
.taste-piece:focus-within figcaption { opacity:1; transform:translateY(0); }
.taste-closing { width:min(calc(100% - 40px),1180px); margin:0 auto; padding:180px 0 200px; }
.taste-closing p { max-width:none; margin:0; color:rgba(255,255,255,.46); font-size:clamp(28px,4vw,56px); line-height:1.1; letter-spacing:-.045em; }
.taste-closing strong { display:block; margin-top:40px; font-size:clamp(64px,10vw,142px); line-height:.86; letter-spacing:-.075em; }
.taste-page .next-case { background:#f5f5f7; color:#111; }

/* Music taste: an editorial listening room */
.story-card-music { background:#111318; color:#fff; border-color:#111318; }
.story-card-music .story-card-copy span,
.story-card-music .story-card-copy p { color:rgba(255,255,255,.56); }
.music-thumb { position:relative; min-height:420px; padding:24px; background:radial-gradient(circle at 82% 12%,rgba(216,255,62,.22),transparent 36%),#111318; }
.music-thumb img { width:min(78%,360px); height:auto; aspect-ratio:1; object-fit:cover; border-radius:18px; box-shadow:0 28px 55px rgba(0,0,0,.4); transform:rotate(-3deg); transition:transform .45s cubic-bezier(.2,.7,.2,1); }
.music-thumb::after { content:"PLAY / EDIT / REPEAT"; position:absolute; right:22px; bottom:20px; color:rgba(255,255,255,.35); font-size:9px; font-weight:800; letter-spacing:.12em; writing-mode:vertical-rl; }
.story-card-music:hover .music-thumb img { transform:rotate(0) scale(1.025); }

.music-page { background:#0a0b0e; color:#f6f6f3; }
.music-page::before { display:none; }
.music-page .article-hero { position:relative; overflow:hidden; padding-bottom:116px; border-color:rgba(255,255,255,.12); background:radial-gradient(circle at 84% 22%,rgba(216,255,62,.14),transparent 30rem),radial-gradient(circle at 12% 100%,rgba(117,87,255,.16),transparent 34rem),#0a0b0e; color:#f6f6f3; }
.music-page .article-hero::after { content:""; position:absolute; right:-10%; bottom:-170px; width:620px; aspect-ratio:1; border:1px solid rgba(216,255,62,.15); border-radius:50%; box-shadow:0 0 0 48px rgba(216,255,62,.018),0 0 0 96px rgba(216,255,62,.014),0 0 0 144px rgba(216,255,62,.01); pointer-events:none; }
.music-page .article-hero .container { position:relative; z-index:1; }
.music-page .article-hero .eyebrow { color:#d8ff3e; }
.music-page .article-hero h1 { max-width:1170px; font-size:clamp(64px,9.3vw,138px); }
.music-page .article-hero .case-lede { max-width:880px; color:rgba(255,255,255,.57); }
.music-page .page-breadcrumb li { color:rgba(255,255,255,.38); }
.music-page .page-breadcrumb a { color:rgba(255,255,255,.68); }
.music-page .page-breadcrumb a:hover { color:#fff; }
.music-page .page-breadcrumb li + li::before { color:rgba(255,255,255,.26); }
.music-article { width:100%; padding:0; background:#0a0b0e; }
.music-article .notion-content { color:#f6f6f3; background:#0a0b0e; }
.music-manifesto { width:min(calc(100% - 40px),1180px); margin:0 auto; padding:148px 0 156px; }
.music-opening { max-width:none !important; margin:0 0 46px !important; color:rgba(255,255,255,.45) !important; font-size:12px !important; font-weight:800; letter-spacing:.1em; text-transform:uppercase; }
.music-manifesto h2 { max-width:1140px; margin:0 0 82px; font-size:clamp(61px,8.9vw,128px); line-height:.88; letter-spacing:-.074em; }
.music-manifesto h2 em { color:#d8ff3e; font-style:normal; }
.music-copy { display:grid; grid-template-columns:1fr 1fr; gap:70px; max-width:950px; margin-left:auto; }
.music-copy p { max-width:none; margin:0; color:rgba(255,255,255,.61); font-size:20px; line-height:1.55; }
.music-thesis { max-width:1050px !important; margin:120px 0 0 !important; padding-top:38px; border-top:1px solid rgba(255,255,255,.14); color:#fff !important; font-size:clamp(31px,4.5vw,59px) !important; line-height:1.05 !important; letter-spacing:-.047em !important; }
.music-collection { padding:0 0 150px; }
.music-collection-head { width:min(calc(100% - 40px),1180px); display:flex; align-items:end; justify-content:space-between; gap:50px; margin:0 auto 68px; padding-top:108px; border-top:1px solid rgba(255,255,255,.14); }
.music-collection-head span { display:block; margin-bottom:17px; color:#d8ff3e; font-size:11px; font-weight:800; letter-spacing:.1em; text-transform:uppercase; }
.music-collection-head h2 { max-width:800px; color:#fff; font-size:clamp(52px,7vw,92px); line-height:.91; }
.music-collection-head > p { max-width:390px; margin:0 0 4px; color:rgba(255,255,255,.5); font-size:16px; line-height:1.5; }
.music-list { width:min(calc(100% - 40px),1180px); display:grid; grid-template-columns:1fr 1fr; gap:18px; margin:0 auto; }
.music-track { min-width:0; overflow:hidden; display:flex; flex-direction:column; border:1px solid rgba(255,255,255,.1); border-radius:30px; background:#13151a; transition:border-color .3s ease,transform .35s ease,box-shadow .35s ease; }
.music-track:hover { transform:translateY(-4px); border-color:color-mix(in srgb,var(--track-accent) 38%,transparent); box-shadow:0 25px 70px rgba(0,0,0,.25); }
.music-track.is-playing { border-color:color-mix(in srgb,var(--track-accent) 65%,transparent); box-shadow:0 0 0 1px color-mix(in srgb,var(--track-accent) 20%,transparent),0 28px 80px rgba(0,0,0,.32); }
.music-track.is-featured { grid-column:1/-1; display:grid; grid-template-columns:1.03fr .97fr; }
.music-cover-wrap { position:relative; overflow:hidden; aspect-ratio:1; background:#1d2027; }
.music-cover-wrap a { display:block; width:100%; height:100%; }
.music-cover-wrap img { width:100% !important; max-width:none; height:100% !important; margin:0; object-fit:cover; transition:transform .6s cubic-bezier(.2,.7,.2,1),filter .35s ease; }
.music-track:hover .music-cover-wrap img { transform:scale(1.018); filter:saturate(1.05); }
.music-index { position:absolute; top:18px; right:18px; display:grid; place-items:center; min-width:40px; height:40px; padding:0 11px; border:1px solid rgba(255,255,255,.15); border-radius:999px; background:rgba(10,11,14,.58); color:#fff; font-size:10px; font-weight:800; letter-spacing:.08em; backdrop-filter:blur(14px); -webkit-backdrop-filter:blur(14px); pointer-events:none; }
.music-track-copy { min-width:0; display:flex; flex:1; flex-direction:column; align-items:flex-start; padding:34px 34px 38px; }
.music-track.is-featured .music-track-copy { justify-content:center; padding:clamp(38px,6vw,74px); }
.music-genre { max-width:none !important; margin:0 0 19px !important; color:var(--track-accent) !important; font-size:10px !important; font-weight:800; letter-spacing:.1em !important; text-transform:uppercase; }
.music-track h3 { max-width:none; margin:0 0 22px; color:#fff; font-size:clamp(39px,5vw,68px); line-height:.94; letter-spacing:-.058em; }
.music-track:not(.is-featured) h3 { font-size:clamp(36px,4.3vw,54px); }
.music-track-copy > p:not(.music-genre) { max-width:520px; margin:0 0 30px; color:rgba(255,255,255,.58); font-size:16px; line-height:1.52; }
.music-actions { display:flex; flex-wrap:wrap; align-items:center; gap:9px 15px; margin-top:auto; }
.music-actions a { color:rgba(255,255,255,.5); font-size:12px; font-weight:650; text-decoration:none; transition:color .2s ease; }
.music-actions a:hover { color:#fff; }
.music-actions a:focus-visible { outline:2px solid #fff; outline-offset:4px; border-radius:3px; }
.music-play { min-height:42px; display:inline-flex; align-items:center; gap:9px; padding:0 16px; border:0; border-radius:999px; background:var(--track-accent); color:#0a0b0e; font:inherit; font-size:12px; font-weight:800; cursor:pointer; transition:transform .2s ease,box-shadow .2s ease; }
.music-play:hover { transform:translateY(-2px); box-shadow:0 10px 25px color-mix(in srgb,var(--track-accent) 22%,transparent); }
.music-play:focus-visible { outline:2px solid #fff; outline-offset:3px; }
.music-play span { font-size:9px; }
.music-player-slot { display:none; }
.music-embed { position:fixed; right:20px; bottom:20px; z-index:48; width:min(420px,calc(100% - 40px)); padding:12px; border:1px solid rgba(255,255,255,.15); border-radius:22px; background:rgba(19,21,26,.9); box-shadow:0 28px 80px rgba(0,0,0,.42); opacity:1; transform:none; transition:opacity .25s ease,transform .35s cubic-bezier(.2,.75,.2,1); backdrop-filter:blur(24px) saturate(145%); -webkit-backdrop-filter:blur(24px) saturate(145%); }
.music-embed.is-idle { opacity:0; transform:translateY(calc(100% + 52px)) scale(.97); pointer-events:none; }
.music-embed-head { display:flex; align-items:center; justify-content:space-between; gap:20px; padding:2px 4px 10px 8px; color:#fff; }
.music-embed-head span { display:block; margin-bottom:3px; color:rgba(255,255,255,.42); font-size:8px; font-weight:800; letter-spacing:.12em; text-transform:uppercase; }
.music-embed-head strong { display:block; max-width:320px; overflow:hidden; font-size:13px; line-height:1.15; text-overflow:ellipsis; white-space:nowrap; }
.music-embed-mount,
.music-embed iframe { display:block; width:100%; min-height:152px; border:0; border-radius:14px; overflow:hidden; background:#090909; }
.music-embed-close { flex:0 0 auto; display:grid; place-items:center; width:29px; height:29px; padding:0; border:1px solid rgba(255,255,255,.18); border-radius:50%; background:#24262c; color:#fff; cursor:pointer; }
.music-embed-close svg { display:block; width:14px; height:14px; fill:none; stroke:currentColor; stroke-width:1.8; stroke-linecap:round; }
.music-embed-close:hover { background:#353841; }
.music-embed-close:focus-visible { outline:2px solid #fff; outline-offset:2px; }
.music-elsewhere { width:min(calc(100% - 40px),1180px); margin:0 auto; padding:145px 0 175px; border-top:1px solid rgba(255,255,255,.14); }
.music-elsewhere h2 { margin-bottom:65px; color:#fff; font-size:clamp(62px,9vw,126px); line-height:.88; }
.music-profile-links { border-top:1px solid rgba(255,255,255,.15); }
.music-profile-links a { display:grid; grid-template-columns:160px 1fr auto; align-items:center; gap:25px; padding:25px 0; border-bottom:1px solid rgba(255,255,255,.15); text-decoration:none; transition:padding .25s ease,color .25s ease; }
.music-profile-links a:hover { padding-left:14px; color:#d8ff3e; }
.music-profile-links span { color:rgba(255,255,255,.42); font-size:11px; font-weight:800; letter-spacing:.09em; text-transform:uppercase; }
.music-profile-links strong { font-size:clamp(23px,3vw,38px); line-height:1; letter-spacing:-.04em; }
.music-profile-links b { font-size:25px; font-weight:400; }
.music-page .next-case { background:#f5f5f7; color:#111; }

@media (max-width: 900px) {
  .nav-links > a:not(.nav-cta) { display:none; }
  .nav-links { gap:8px; }
  .nav-menu-toggle { position:relative; display:grid; place-content:center; gap:5px; flex:0 0 34px; width:34px; height:34px; padding:0; border:1px solid var(--ink); border-radius:50%; background:rgba(255,255,255,.72); color:var(--ink); cursor:pointer; transition:background .2s ease,transform .2s ease; }
  .nav-menu-toggle:hover { background:#fff; transform:translateY(-1px); }
  .nav-menu-toggle:focus-visible { outline:2px solid var(--blue); outline-offset:3px; }
  .nav-menu-toggle > span { display:block; width:13px; height:1.5px; border-radius:2px; background:currentColor; transition:transform .25s cubic-bezier(.2,.7,.2,1); }
  .nav-menu-toggle[aria-expanded="true"] > span:first-child { transform:translateY(3.25px) rotate(45deg); }
  .nav-menu-toggle[aria-expanded="true"] > span:last-child { transform:translateY(-3.25px) rotate(-45deg); }
  .mobile-nav-menu { position:absolute; top:calc(100% + 10px); right:0; left:0; display:block; overflow:hidden; padding:10px; border:1px solid rgba(255,255,255,.82); border-radius:27px; background:rgba(247,247,249,.94); box-shadow:0 28px 70px rgba(0,0,0,.16); backdrop-filter:blur(28px) saturate(165%); -webkit-backdrop-filter:blur(28px) saturate(165%); transform-origin:top center; animation:mobile-nav-enter .28s cubic-bezier(.2,.75,.2,1); }
  .mobile-nav-menu[hidden] { display:none; }
  .mobile-nav-kicker { margin:0; padding:9px 12px 8px; color:#85858a; font-size:9px; font-weight:800; letter-spacing:.12em; text-transform:uppercase; }
  .mobile-nav-link { display:grid; grid-template-columns:28px 1fr auto; align-items:center; gap:11px; min-height:70px; padding:12px; border-top:1px solid rgba(17,17,17,.075); color:var(--ink); transition:background .2s ease,transform .2s ease; }
  .mobile-nav-link:hover { border-radius:17px; background:rgba(255,255,255,.86); transform:translateX(2px); }
  .mobile-nav-link:focus-visible { outline:2px solid var(--blue); outline-offset:-2px; border-radius:17px; }
  .mobile-nav-link[aria-current="page"] { color:var(--blue); }
  .mobile-nav-index { color:#aaaab0; font-size:9px; font-weight:750; letter-spacing:.08em; }
  .mobile-nav-copy { min-width:0; }
  .mobile-nav-copy strong { display:block; font-size:19px; line-height:1; letter-spacing:-.035em; }
  .mobile-nav-copy small { display:block; margin-top:6px; overflow:hidden; color:#76767c; font-size:10px; line-height:1.2; text-overflow:ellipsis; white-space:nowrap; }
  .mobile-nav-arrow { color:#8c8c92; font-size:17px; }
  @keyframes mobile-nav-enter { from { opacity:0; transform:translateY(-8px) scale(.98); } to { opacity:1; transform:none; } }
  .hero-grid { grid-template-columns:1fr; }
  .hero-aside { justify-self:start; display:flex; align-items:center; max-width:none; gap:16px; }
  .profile-wrap { width:88px; border-radius:50%; }
  .availability { margin:0; max-width:190px; }
  .proof-grid { grid-template-columns:1fr 1fr; }
  .proof:nth-child(2) { border-right:0; }
  .proof:nth-child(-n+2) { border-bottom:1px solid var(--line); }
  .proof:nth-child(3) { padding-left:0; }
  .section-head { display:block; }
  .section-intro { margin-top:24px; }
  .case-card { grid-template-columns:1fr; min-height:0; }
  .case-copy { order:2; }
  .case-media, .microverse .case-media, .research .case-media { order:1; min-height:480px; margin:24px 24px 0; border-radius:28px; }
  .origin-grid, .about-grid { grid-template-columns:1fr; }
  .leadership-feature { grid-template-columns:1fr; }
  .leadership-feature-map { min-height:500px; margin:0 24px 24px; }
  .about-photo { position:relative; top:auto; max-width:520px; }
  .principles { grid-template-columns:1fr; }
  .principle { min-height:240px; }
  .case-facts { grid-template-columns:1fr 1fr; }
  .trust-head { display:block; }
  .trust-head > p { margin-top:24px; }
  .all-work-head { display:block; }
  .all-work-head > p { margin-top:22px; }
  .archive-grid { grid-template-columns:1fr; }
  .view-all-work { display:block; padding:38px; }
  .view-all-work .button { margin-top:28px; }
  .taste-copy { grid-template-columns:1fr; gap:22px; }
  .taste-collection-head { display:block; }
  .taste-collection-head > p { margin-top:24px; }
  .music-copy { grid-template-columns:1fr; gap:24px; }
  .music-collection-head { display:block; }
  .music-collection-head > p { margin-top:28px; }
  .music-list { grid-template-columns:1fr; }
  .music-track.is-featured { grid-column:auto; display:flex; }
}

@media (max-width: 600px) {
  :root { --radius-lg:28px; }
  .container { width:min(calc(100% - 28px), var(--max)); }
  .nav { top:10px; width:calc(100% - 20px); }
  .brand { font-size:13px; }
  .nav-cta { padding:0 13px; }
  .hero { min-height:auto; padding-top:126px; }
  h1 { font-size:56px; }
  .hero-copy { font-size:20px; }
  .proof-strip { padding-bottom:64px; }
  .proof { padding:24px 14px; }
  .proof strong { font-size:30px; }
  .trust-section { padding:72px 0; }
  .trust-head { margin-bottom:40px; }
  .logo-set { gap:52px; padding-right:52px; }
  .logo-wordmark { font-size:21px; }
  .trust-note { text-align:left; }
  .section { padding:72px 0; }
  h2 { font-size:44px; }
  .case-card h3 { font-size:40px; }
  .case-copy { padding:34px 26px 40px; }
  .case-media, .microverse .case-media, .research .case-media { min-height:360px; margin:14px 14px 0; }
  .microverse .case-media img { max-width:82%; }
  .research-board { width:90%; }
  .research-note { padding:16px; }
  .origin-story, .origin-visual { min-height:470px; }
  .experience { grid-template-columns:1fr; gap:7px; }
  .footer { display:block; }
  .footer span { display:block; margin-top:8px; }
  .case-hero { padding-top:120px; }
  .back-link { margin-bottom:42px; }
  .case-hero h1 { font-size:54px; }
  .case-facts { grid-template-columns:1fr; }
  .case-fact { min-height:0; }
  .case-cover { border-radius:24px; margin-bottom:72px; }
  .story p, .story li { font-size:17px; }
  .pullquote { margin:60px 0; padding:34px 28px; }
  .story-visual.two { grid-template-columns:1fr; }
  .next-case a { align-items:start; }
  .all-work { margin-top:80px; padding-top:64px; }
  .story-thumb { min-height:230px; }
  .story-thumb-phone img { height:260px; max-height:260px; }
  .view-all-work { padding:30px 26px; }
  .work-index-hero { padding:130px 0 70px; }
  .page-breadcrumb { margin-bottom:26px; }
  .notion-article { width:min(calc(100% - 28px), 980px); padding-top:58px; }
  .notion-content p,
  .notion-content li { font-size:17px; }
  .notion-content .column-list { display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:10px; }
  .notion-content .column { width:auto !important; }
  .notion-content figure { margin:38px auto; }
  .career-thumb-content { grid-template-columns:repeat(3,1fr); }
  .leadership-feature-map { min-height:420px; margin:0 14px 14px; padding:20px; }
  .leadership-levels { grid-template-columns:repeat(3,1fr); }
  .leadership-pillars span { min-height:92px; padding:16px; }
  .career-map { margin:46px auto 58px; padding:20px; border-radius:24px; }
  .career-map-topline { grid-template-columns:1fr auto; }
  .career-map-topline > span:first-child { display:none; }
  .career-levels { grid-template-columns:repeat(3,1fr); }
  .career-pillars { grid-template-columns:1fr; }
  .career-pillars > div { min-height:140px; }
  .career-ai-rail { grid-template-columns:auto 1fr; }
  .career-ai-rail small { grid-column:1/-1; text-align:left; }
  .ai-practice-grid { grid-template-columns:1fr; }
  .ai-practice-grid > div { min-height:150px; }
  .agent-anatomy { margin:46px auto 58px; padding:20px; border-radius:24px; }
  .agent-anatomy-head { display:block; }
  .agent-anatomy-head strong { display:block; margin-top:12px; text-align:left; }
  .agent-anatomy-grid { grid-template-columns:1fr 1fr; }
  .agent-anatomy-grid > div { min-height:145px; }
  .research-agent-pipeline { grid-template-columns:1fr; padding:18px; }
  .pipeline-step { min-height:170px; }
  .pipeline-arrow { justify-self:center; transform:rotate(90deg); }
  .agent-skill-compare { grid-template-columns:1fr; }
  .agent-skill-compare > div { min-height:200px; }
  .taste-page .article-hero { padding-bottom:80px; }
  .taste-page .article-hero h1 { font-size:61px; }
  .taste-article { width:100%; padding:0; }
  .taste-manifesto { width:min(calc(100% - 28px),1180px); padding:96px 0 108px; }
  .taste-manifesto .taste-opening { margin-bottom:30px; }
  .taste-manifesto h2 { margin-bottom:50px; font-size:62px; }
  .taste-copy p { font-size:17px; }
  .taste-collection-head { width:min(calc(100% - 28px),1400px); margin-bottom:36px; }
  .taste-collection-head h2 { font-size:48px; }
  .taste-gallery { width:calc(100% - 8px); columns:2; column-gap:4px; }
  .taste-article .notion-content .taste-piece { margin:0 0 4px; }
  .taste-article .notion-content .taste-piece figcaption { padding:34px 10px 9px; font-size:10px; opacity:1; transform:none; }
  .taste-closing { width:min(calc(100% - 28px),1180px); padding:112px 0 130px; }
  .taste-closing p { font-size:31px; }
  .taste-closing strong { margin-top:30px; font-size:72px; }
  .music-page .article-hero { padding-bottom:82px; }
  .music-page .article-hero h1 { font-size:58px; }
  .music-article { width:100%; padding:0; }
  .music-manifesto { width:min(calc(100% - 28px),1180px); padding:98px 0 106px; }
  .music-manifesto h2 { margin-bottom:54px; font-size:56px; }
  .music-copy p { font-size:17px; }
  .music-thesis { margin-top:76px !important; font-size:32px !important; }
  .music-collection { padding-bottom:100px; }
  .music-collection-head { width:min(calc(100% - 28px),1180px); margin-bottom:38px; padding-top:82px; }
  .music-collection-head h2 { font-size:48px; }
  .music-list { width:min(calc(100% - 20px),1180px); gap:12px; }
  .music-track { border-radius:24px; }
  .music-track-copy,
  .music-track.is-featured .music-track-copy { padding:28px 24px 31px; }
  .music-track h3,
  .music-track:not(.is-featured) h3 { font-size:42px; }
  .music-cover-wrap a.is-mobile-music-play { cursor:pointer; }
  .music-cover-wrap a.is-mobile-music-play::after { content:"▶"; position:absolute; top:50%; left:50%; z-index:2; display:grid; place-items:center; width:58px; height:58px; padding-left:3px; border:1px solid rgba(255,255,255,.28); border-radius:50%; background:rgba(10,11,14,.62); color:#fff; box-shadow:0 16px 42px rgba(0,0,0,.3); font-size:17px; backdrop-filter:blur(15px); -webkit-backdrop-filter:blur(15px); transform:translate(-50%,-50%); pointer-events:none; }
  .music-actions { gap:12px 14px; }
  .music-play { width:100%; }
  .music-page.music-player-is-open .contact { padding-bottom:230px; }
  .music-embed { right:0; bottom:0; width:100%; padding:10px; border-width:1px 0 0; border-radius:20px 20px 0 0; }
  .music-embed-head { padding:1px 3px 8px 6px; }
  .music-embed-head strong { max-width:calc(100vw - 80px); }
  .music-elsewhere { width:min(calc(100% - 28px),1180px); padding:105px 0 125px; }
  .music-elsewhere h2 { margin-bottom:45px; font-size:67px; }
  .music-profile-links a { grid-template-columns:1fr auto; gap:8px 18px; }
  .music-profile-links span { grid-column:1/-1; }
  .image-lightbox-stage { padding:64px 12px 12px; }
  .image-lightbox-stage img { max-height:calc(100dvh - 145px); border-radius:2px; }
  .image-lightbox-close { top:12px; right:12px; }
  .image-lightbox-nav { top:auto; bottom:17px; width:42px; height:42px; transform:none; }
  .image-lightbox-prev { left:12px; }
  .image-lightbox-next { right:12px; }
  .image-lightbox-nav:hover { transform:scale(1.04); }
  .image-lightbox-meta { min-height:70px; padding:12px 64px 16px; }
  .image-lightbox-caption { max-width:220px; overflow:hidden; text-overflow:ellipsis; white-space:nowrap; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior:auto; }
  *, *::before, *::after { animation-duration:.01ms !important; transition-duration:.01ms !important; }
  .reveal { opacity:1; transform:none; }
  .logo-marquee:not(.is-interactive) { overflow-x:auto; mask-image:none; -webkit-mask-image:none; }
  .logo-track { animation:none; }
  .logo-marquee:not(.is-interactive) .logo-set[aria-hidden="true"] { display:none; }
  .gradient-text { animation:none; background-position:35% 50%; }
}
