@import url('https://fonts.googleapis.com/css2?family=Archivo+Black&family=Comic+Neue:wght@700&family=Inter:wght@400;500;600;700;800;900&display=swap');

:root {
  --ink: #0a0a0a;
  --bone: #f3efe6;
  --blue: #4d63ff;
  --lime: #d8ff3e;
  --coral: #ff6b5e;
  --gray: #b8b6b0;
  --white: #fff;
  --display: "Archivo Black", "Arial Black", Impact, sans-serif;
  --body: "Inter", Arial, Helvetica, sans-serif;
  --hand: "Comic Neue", "Comic Sans MS", cursive;
  --radius-sm: 16px;
  --radius-md: 28px;
  --radius-lg: 48px;
  --radius-xl: 80px;
  --shadow: 0 24px 70px rgba(10, 10, 10, 0.13);
  --container: min(1480px, calc(100vw - 48px));
  --header-h: 82px;
  --ease: cubic-bezier(.16, 1, .3, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--bone); scroll-padding-top: 112px; }
body {
  margin: 0;
  background: var(--bone);
  color: var(--ink);
  font-family: var(--body);
  font-size: 15px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}
body.menu-open { overflow: hidden; }
img, svg, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { color: inherit; }
::selection { background: var(--lime); color: var(--ink); }

.skip-link {
  position: fixed; left: 16px; top: -100px; z-index: 9999;
  background: var(--lime); color: var(--ink); padding: 12px 18px; border-radius: 999px;
  font-weight: 800; transition: top .2s ease;
}
.skip-link:focus { top: 16px; }

.container { width: var(--container); margin-inline: auto; }
.section { padding: clamp(84px, 9vw, 150px) 0; position: relative; }
.section-sm { padding: clamp(56px, 6vw, 96px) 0; }
.section-dark { background: var(--ink); color: var(--bone); }
.section-blue { background: var(--blue); color: var(--bone); }
.section-lime { background: var(--lime); color: var(--ink); }
.section-coral { background: var(--coral); color: var(--ink); }
.grid-line { border-top: 1px solid rgba(10,10,10,.18); }
.section-dark .grid-line, .section-blue .grid-line { border-color: rgba(243,239,230,.22); }

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 11px; line-height: 1; font-weight: 800; letter-spacing: .16em; text-transform: uppercase;
}
.eyebrow::before { content: ""; width: 9px; height: 9px; border-radius: 50%; background: var(--lime); box-shadow: 14px 0 0 var(--blue); margin-right: 14px; }
.eyebrow.dark-dot::before { background: var(--ink); box-shadow: 14px 0 0 rgba(10,10,10,.28); }

.display {
  margin: 0; font-family: var(--display); text-transform: uppercase; letter-spacing: -.055em;
  line-height: .88; text-wrap: balance;
}
.display-xl { font-size: clamp(43px, 7.9vw, 133px); }
.display-lg { font-size: clamp(38px, 6.2vw, 106px); }
.display-md { font-size: clamp(30px, 4.7vw, 75px); }
.display-sm { font-size: clamp(24px, 3.4vw, 52px); }
.heading { margin: 0; font-size: clamp(23px, 3vw, 47px); line-height: 1.02; letter-spacing: -.045em; font-weight: 900; text-wrap: balance; }
.lead { margin: 0; font-size: clamp(15px, 1.7vw, 26px); line-height: 1.2; letter-spacing: -.03em; max-width: 38ch; }
.copy-lg { font-size: clamp(14px, 1.25vw, 19px); line-height: 1.46; letter-spacing: -.018em; }
.copy { font-size: 15px; line-height: 1.65; }
.muted { color: rgba(10,10,10,.58); }
.section-dark .muted, .section-blue .muted { color: rgba(243,239,230,.63); }
.handnote { font-family: var(--hand); font-size: 14px; transform: rotate(-2deg); }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 14px;
  min-height: 52px; padding: 14px 22px; border: 2px solid var(--ink); border-radius: 999px;
  background: var(--ink); color: var(--bone); font-weight: 800; letter-spacing: -.01em;
  transition: transform .35s var(--ease), background .25s ease, color .25s ease, border-color .25s ease;
  cursor: pointer;
}
.btn:hover { transform: translateY(-3px) scale(1.015); }
.btn:focus-visible { outline: 4px solid var(--blue); outline-offset: 3px; }
.btn-lime { background: var(--lime); color: var(--ink); border-color: var(--lime); }
.btn-blue { background: var(--blue); border-color: var(--blue); }
.btn-ghost { background: transparent; color: currentColor; border-color: currentColor; }
.btn-arrow::after { content: "↗"; font-size: 1.15em; transition: transform .3s var(--ease); }
.btn-arrow:hover::after { transform: translate(3px,-3px); }
.btn[aria-disabled="true"] { opacity: .52; cursor: not-allowed; pointer-events: none; }

/* Header */
.site-header {
  position: fixed; inset: 14px 0 auto; z-index: 1000; pointer-events: none;
}
.header-inner {
  width: min(1520px, calc(100vw - 28px)); height: var(--header-h); margin-inline: auto;
  display: grid; grid-template-columns: 210px 1fr auto; align-items: center; gap: 30px;
  padding: 12px 15px 12px 20px; border: 1px solid rgba(10,10,10,.14); border-radius: 22px;
  background: color-mix(in srgb, var(--bone) 87%, transparent); backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 12px 50px rgba(10,10,10,.08); pointer-events: auto;
  transition: background .3s ease, color .3s ease, transform .35s var(--ease), border-color .3s ease;
}
.site-header.is-hidden .header-inner { transform: translateY(-120%); }
.site-header[data-theme="dark"] .header-inner { background: rgba(10,10,10,.86); color: var(--bone); border-color: rgba(243,239,230,.16); }
.brand-link { display: inline-flex; align-items: center; width: 176px; }
.brand-link img { width: 100%; height: auto; }
.logo-light { display: none; }
.site-header[data-theme="dark"] .logo-dark { display: none; }
.site-header[data-theme="dark"] .logo-light { display: block; }
.desktop-nav { display: flex; justify-content: center; gap: clamp(14px, 1.8vw, 30px); font-size: 12px; font-weight: 700; }
.desktop-nav a { position: relative; padding: 10px 0; white-space: nowrap; }
.desktop-nav a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: 4px; height: 3px; background: var(--lime); transition: right .3s var(--ease); }
.desktop-nav a:hover::after, .desktop-nav a[aria-current="page"]::after { right: 0; }
.header-actions { display: flex; align-items: center; gap: 9px; }
.lang-switch { display: inline-flex; border: 1px solid currentColor; border-radius: 999px; overflow: hidden; font-size: 11px; font-weight: 800; }
.lang-switch a { padding: 10px 11px; opacity: .48; }
.lang-switch a.active { background: currentColor; color: var(--bone); opacity: 1; }
.site-header[data-theme="dark"] .lang-switch a.active { color: var(--ink); }
.header-cta { min-height: 46px; padding: 11px 18px; border-width: 0; }
.menu-toggle { display: none; width: 48px; height: 48px; border: 1px solid currentColor; border-radius: 50%; background: transparent; position: relative; cursor: pointer; }
.menu-toggle span { position: absolute; left: 13px; right: 13px; height: 2px; background: currentColor; transition: transform .3s var(--ease), top .3s var(--ease); }
.menu-toggle span:first-child { top: 18px; }
.menu-toggle span:last-child { top: 27px; }
body.menu-open .menu-toggle span:first-child { top: 22px; transform: rotate(45deg); }
body.menu-open .menu-toggle span:last-child { top: 22px; transform: rotate(-45deg); }
.mobile-menu {
  position: fixed; inset: 0; z-index: 990; display: grid; align-content: center; padding: 120px 24px calc(40px + env(safe-area-inset-bottom));
  background: var(--blue); color: var(--bone); transform: translateY(-105%); transition: transform .55s var(--ease);
}
body.menu-open .mobile-menu { transform: translateY(0); }
.mobile-menu nav { display: grid; gap: 8px; }
.mobile-menu nav a { font-family: var(--display); font-size: clamp(28px, 8vw, 55px); text-transform: uppercase; letter-spacing: -.055em; line-height: .98; }
.mobile-menu-footer { margin-top: 38px; display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }

/* Progress */
.scroll-progress { position: fixed; z-index: 1200; left: 0; top: 0; height: 4px; width: 100%; transform-origin: left; transform: scaleX(0); background: var(--lime); }

/* Hero */
.hero { min-height: 100svh; padding: 120px 14px 14px; background: var(--ink); color: var(--bone); position: relative; }
.hero-frame {
  min-height: calc(100svh - 134px); border-radius: clamp(26px, 3vw, 54px); overflow: hidden; position: relative;
  background: var(--blue) url('../img/hero.png') center/cover no-repeat;
  isolation: isolate;
}
.hero-frame::before {
  content: ""; position: absolute; inset: 0; z-index: -2;
  background-image: linear-gradient(90deg, rgba(10,10,10,.88) 0%, rgba(10,10,10,.53) 44%, rgba(10,10,10,.10) 100%);
  background-position: center; background-size: cover; background-blend-mode: multiply, normal;
}
.hero-frame::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgba(10,10,10,.05), rgba(10,10,10,.35)); }
.hero-content { min-height: inherit; display: grid; grid-template-columns: minmax(0,1fr) minmax(270px, .35fr); grid-template-rows: auto 1fr auto; gap: 32px; padding: clamp(30px, 4vw, 68px); }
.hero-top { grid-column: 1/-1; display: flex; justify-content: space-between; align-items: flex-start; gap: 20px; }
.hero-index { font-size: 12px; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; opacity: .78; }
.hero-copy { align-self: end; max-width: 1140px; }
.hero-title { max-width: 9.4ch; text-shadow: 0 4px 35px rgba(10,10,10,.24); }
.hero-title .accent { color: var(--lime); display: inline-block; transform: rotate(-1.5deg); }
.hero-info { align-self: end; display: grid; gap: 20px; padding: 24px; border-radius: 26px; background: rgba(10,10,10,.72); border: 1px solid rgba(243,239,230,.22); backdrop-filter: blur(12px); }
.hero-info p { margin: 0; font-size: 15px; line-height: 1.5; }
.hero-buttons { display: flex; flex-wrap: wrap; gap: 10px; }
.hero-bottom { grid-column: 1/-1; display: flex; align-items: end; justify-content: space-between; gap: 24px; }
.hero-proof { display: flex; flex-wrap: wrap; gap: 8px; }
.pill { display: inline-flex; align-items: center; gap: 8px; padding: 10px 14px; border-radius: 999px; border: 1px solid rgba(243,239,230,.35); background: rgba(10,10,10,.34); font-size: 11px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.pill::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--lime); }
.scroll-cue { display: inline-flex; align-items: center; gap: 12px; font-size: 11px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.scroll-cue span { display: inline-grid; place-items: center; width: 42px; height: 42px; border: 1px solid rgba(243,239,230,.5); border-radius: 50%; animation: cue 1.9s ease-in-out infinite; }
@keyframes cue { 0%,100%{transform:translateY(0)}50%{transform:translateY(6px)} }

.page-hero { padding: 160px 0 90px; min-height: 72svh; display: grid; align-items: end; position: relative; overflow: hidden; }
.page-hero .container { position: relative; z-index: 2; }
.page-hero::after { content: ""; position: absolute; right: -14vw; top: 9%; width: 48vw; aspect-ratio: 1; border-radius: 50%; background: var(--lime); filter: blur(1px); opacity: .96; }
.page-hero.dark { background: var(--ink); color: var(--bone); }
.page-hero.blue { background: var(--blue); color: var(--bone); }
.page-hero.coral { background: var(--coral); color: var(--ink); }
.page-hero-grid { display: grid; grid-template-columns: 1fr minmax(260px,.38fr); gap: 60px; align-items: end; }
.page-hero-copy { max-width: 760px; padding-bottom: 12px; }
.page-hero-copy p { margin: 24px 0 0; }

/* Trust */
.trust-intro { display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(36px, 7vw, 110px); align-items: start; }
.trust-intro .heading { max-width: 12ch; }
.trust-cards { margin-top: 60px; display: grid; grid-template-columns: repeat(4,1fr); border: 1px solid var(--ink); border-radius: var(--radius-md); overflow: hidden; }
.trust-card { min-height: 230px; padding: 28px; display: flex; flex-direction: column; justify-content: space-between; border-right: 1px solid var(--ink); transition: background .3s ease, color .3s ease; }
.trust-card:last-child { border-right: 0; }
.trust-card:hover { background: var(--lime); }
.trust-card span { font-family: var(--display); font-size: 41px; line-height: 1; letter-spacing: -.06em; }
.trust-card h3 { margin: 0 0 8px; font-size: 16px; }
.trust-card p { margin: 0; font-size: 13px; color: rgba(10,10,10,.62); }

/* Expertise orbs */
.expertise-layout { display: grid; grid-template-columns: .42fr 1fr; gap: clamp(40px,6vw,100px); align-items: start; }
.expertise-sticky { position: sticky; top: 130px; }
.expertise-sticky p { max-width: 36ch; margin: 26px 0; }
.orb-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 18px; }
.expertise-orb {
  aspect-ratio: auto; min-height: 260px; border-radius: 44px; padding: clamp(26px,3vw,42px);
  display: flex; flex-direction: column; gap: 16px; justify-content: space-between;
  position: relative; overflow: hidden; border: 1px solid rgba(243,239,230,.28);
  transition: transform .55s var(--ease);
}
.expertise-orb:hover { transform: rotate(-1.5deg) translateY(-6px); }
.expertise-orb:nth-child(1) { background: var(--bone); color: var(--ink); }
.expertise-orb:nth-child(2) { background: var(--blue); color: var(--bone); }
.expertise-orb:nth-child(3) { background: var(--lime); color: var(--ink); }
.expertise-orb:nth-child(4) { background: var(--coral); color: var(--ink); }
.orb-number { font-size: 11px; font-weight: 900; letter-spacing: .14em; }
.expertise-orb h3 { margin: 0; font-family: var(--display); font-size: clamp(22px,2.4vw,38px); line-height: 1; letter-spacing: -.055em; text-transform: uppercase; }
.orb-list { margin: 0; font-size: 14px; line-height: 1.55; max-width: 30ch; }
.orb-arrow { width: 48px; height: 48px; border: 2px solid currentColor; border-radius: 50%; display: grid; place-items: center; align-self: flex-end; font-size: 17px; }

/* Statement */
.statement { min-height: 90svh; display: grid; align-items: center; overflow: hidden; }
.statement-text { font-family: var(--display); font-size: clamp(38px, 6.8vw, 120px); line-height: .88; letter-spacing: -.06em; text-transform: uppercase; margin: 0; max-width: 11ch; }
.statement-text .outline-word { color: transparent; -webkit-text-stroke: 2px var(--bone); }
.statement-row { display: grid; grid-template-columns: 1fr 310px; gap: 50px; align-items: end; }
.statement-mascot { position: relative; }
.statement-mascot img { width: 300px; animation: floaty 4s ease-in-out infinite; }
@keyframes floaty { 0%,100%{transform:translateY(0) rotate(-2deg)}50%{transform:translateY(-18px) rotate(2deg)} }

/* Projects */
.section-head { display: flex; justify-content: space-between; align-items: end; gap: 30px; margin-bottom: 54px; }
.section-head > div:first-child { max-width: 820px; }
.projects-grid { display: grid; grid-template-columns: repeat(12,1fr); gap: 18px; }
.project-card { position: relative; min-height: 520px; border-radius: var(--radius-md); overflow: hidden; background: var(--ink); color: var(--bone); box-shadow: var(--shadow); }
.project-card:nth-child(1) { grid-column: span 7; }
.project-card:nth-child(2) { grid-column: span 5; }
.project-card:nth-child(3) { grid-column: span 5; }
.project-card:nth-child(4) { grid-column: span 7; }
.project-media { position: absolute; inset: 0; }
.project-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease), filter .4s ease; }
.project-card:hover .project-media img { transform: scale(1.055); }
.project-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 35%, rgba(10,10,10,.86)); }
.project-card.light-overlay .project-media::after { background: linear-gradient(180deg, transparent 38%, rgba(10,10,10,.82)); }
.project-meta { position: absolute; inset: auto 0 0; padding: 28px; display: grid; grid-template-columns: 1fr auto; align-items: end; gap: 22px; z-index: 2; }
.project-kicker { display: block; font-size: 11px; font-weight: 900; letter-spacing: .13em; text-transform: uppercase; margin-bottom: 10px; }
.project-meta h3 { margin: 0; font-size: clamp(22px,2.4vw,40px); line-height: .96; letter-spacing: -.05em; text-transform: uppercase; font-family: var(--display); }
.project-tag { padding: 9px 12px; border: 1px solid rgba(243,239,230,.4); border-radius: 999px; font-size: 10px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; white-space: nowrap; }
.project-card .orb-arrow { border-color: var(--bone); color: var(--bone); }
.lab-note { margin-top: 26px; display: flex; align-items: center; gap: 14px; font-size: 13px; }
.lab-note::before { content: "LAB"; display: inline-grid; place-items: center; width: 46px; height: 46px; border-radius: 50%; background: var(--lime); color: var(--ink); font-weight: 900; font-size: 10px; }

/* Story scroll */
.story-section { background: var(--blue); color: var(--bone); }
.story-wrap { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(50px,9vw,140px); align-items: start; }
.story-stage { position: sticky; top: 110px; min-height: calc(100svh - 150px); display: grid; align-content: center; }
.story-visual { aspect-ratio: 1; border-radius: 50%; background: var(--bone); color: var(--ink); display: grid; place-items: center; position: relative; transition: background .5s ease, transform .7s var(--ease); overflow: hidden; }
.story-visual::before { content: ""; position: absolute; inset: 10%; border: 2px dashed rgba(10,10,10,.2); border-radius: 50%; animation: spin 18s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
.story-visual img { width: 76%; max-width: 510px; position: relative; z-index: 1; transition: opacity .25s ease, transform .55s var(--ease); }
.story-counter { position: absolute; top: 7%; left: 50%; transform: translateX(-50%); z-index: 3; font-family: var(--display); font-size: clamp(26px,3.6vw,52px); letter-spacing: -.06em; line-height: 1; background: var(--ink); color: var(--bone); padding: 12px 22px; border-radius: 999px; box-shadow: 0 8px 24px rgba(10,10,10,.28); }
.story-steps { display: grid; }
.story-step { min-height: 76svh; display: grid; align-content: center; padding: 40px 0; opacity: .35; transform: translateX(30px); transition: opacity .4s ease, transform .55s var(--ease); }
.story-step.is-active { opacity: 1; transform: translateX(0); }
.story-step h3 { margin: 18px 0 18px; font-family: var(--display); font-size: clamp(28px,4vw,64px); line-height: .92; letter-spacing: -.055em; text-transform: uppercase; max-width: 10ch; }
.story-step p { margin: 0; max-width: 36ch; font-size: clamp(14px,1.4vw,19px); line-height: 1.45; }

/* Method */
.method-grid { margin-top: 60px; display: grid; grid-template-columns: repeat(5,1fr); border-top: 1px solid var(--ink); border-bottom: 1px solid var(--ink); }
.method-step { padding: 26px 18px 34px; min-height: 300px; border-right: 1px solid var(--ink); display: flex; flex-direction: column; justify-content: space-between; transition: background .25s ease; }
.method-step:last-child { border-right: 0; }
.method-step:hover { background: var(--lime); }
.method-step .num { font-family: var(--display); font-size: 28px; letter-spacing: -.06em; }
.method-step h3 { margin: 0 0 12px; font-size: 16px; letter-spacing: -.025em; }
.method-step p { margin: 0; font-size: 13px; color: rgba(10,10,10,.64); }

/* Team */
.team-intro { display: grid; grid-template-columns: 1fr .9fr; gap: 70px; align-items: end; }
.role-grid { margin-top: 54px; display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.role-card { min-height: 300px; border: 1px solid rgba(243,239,230,.28); border-radius: 26px; padding: 26px; display: flex; flex-direction: column; justify-content: space-between; position: relative; overflow: hidden; }
.role-card::after { content: "+"; position: absolute; right: 20px; top: 8px; font-family: var(--display); font-size: 72px; color: var(--lime); transition: transform .5s var(--ease); }
.role-card:hover::after { transform: rotate(90deg); }
.role-card h3 { margin: 0; font-family: var(--display); font-size: 23px; line-height: .95; text-transform: uppercase; letter-spacing: -.045em; max-width: 8ch; }
.role-card p { margin: 0; color: rgba(243,239,230,.62); font-size: 13px; max-width: 28ch; }
.team-promise { margin-top: 40px; padding: 30px; border-radius: 24px; background: var(--lime); color: var(--ink); display: flex; justify-content: space-between; gap: 28px; align-items: center; }
.team-promise strong { font-size: clamp(18px,2.3vw,32px); letter-spacing: -.04em; max-width: 21ch; }

/* Commitment / FAQ */
.commitments { display: grid; grid-template-columns: repeat(2,1fr); gap: 18px; margin-top: 48px; }
.commitment { border: 1px solid var(--ink); border-radius: 24px; padding: 28px; display: grid; grid-template-columns: 58px 1fr; gap: 20px; align-items: start; }
.commitment .icon { width: 58px; height: 58px; border-radius: 50%; display: grid; place-items: center; background: var(--blue); color: var(--bone); font-size: 25px; }
.commitment h3 { margin: 0 0 8px; font-size: 16px; }
.commitment p { margin: 0; color: rgba(10,10,10,.62); }
.faq { margin-top: 48px; border-top: 1px solid var(--ink); }
.faq details { border-bottom: 1px solid var(--ink); }
.faq summary { list-style: none; cursor: pointer; padding: 25px 0; display: flex; align-items: center; justify-content: space-between; gap: 20px; font-weight: 800; font-size: clamp(15px,1.5vw,19px); }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-family: var(--display); font-size: 26px; transition: transform .3s var(--ease); }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { max-width: 760px; margin: -4px 0 28px; color: rgba(10,10,10,.64); font-size: 15px; }

/* CTA */
.cta-section { background: var(--lime); color: var(--ink); overflow: hidden; }
.cta-grid { display: grid; grid-template-columns: 1fr 300px; gap: 50px; align-items: end; }
.cta-grid .display { max-width: 9ch; }
.cta-side { display: grid; gap: 20px; justify-items: start; }
.cta-side img { width: 230px; }
.marquee { display: flex; width: max-content; animation: marquee 18s linear infinite; margin-top: 70px; border-top: 1px solid var(--ink); border-bottom: 1px solid var(--ink); }
.marquee span { font-family: var(--display); font-size: clamp(30px,4.5vw,68px); text-transform: uppercase; letter-spacing: -.055em; white-space: nowrap; padding: 18px 34px; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* Content pages */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(38px,8vw,130px); align-items: start; }
.big-number { font-family: var(--display); font-size: clamp(75px,13.5vw,210px); line-height: .75; letter-spacing: -.09em; color: var(--blue); }
.content-card { padding: clamp(28px,4vw,56px); border-radius: var(--radius-md); background: var(--white); border: 1px solid rgba(10,10,10,.16); }
.content-card.dark { background: var(--ink); color: var(--bone); }
.content-card.blue { background: var(--blue); color: var(--bone); }
.content-card.lime { background: var(--lime); }
.content-card.coral { background: var(--coral); }
.principles-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 18px; margin-top: 48px; }
.principle-card { min-height: 340px; padding: 30px; border-radius: 28px; border: 1px solid currentColor; display: flex; flex-direction: column; justify-content: space-between; }
.principle-card h3 { margin: 0; font-family: var(--display); font-size: clamp(21px,2.4vw,39px); line-height: .96; text-transform: uppercase; letter-spacing: -.05em; max-width: 11ch; }
.principle-card p { margin: 30px 0 0; max-width: 36ch; }

.expertise-detail { border-top: 1px solid var(--ink); padding: 56px 0; display: grid; grid-template-columns: 120px .75fr 1fr; gap: 40px; align-items: start; }
.expertise-detail:last-child { border-bottom: 1px solid var(--ink); }
.expertise-detail .num { font-family: var(--display); font-size: 39px; letter-spacing: -.06em; }
.expertise-detail h2 { margin: 0; font-family: var(--display); font-size: clamp(27px,3.4vw,53px); line-height: .92; text-transform: uppercase; letter-spacing: -.055em; max-width: 9ch; }
.detail-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 34px; }
.detail-cols h3 { margin: 0 0 14px; font-size: 12px; letter-spacing: .12em; text-transform: uppercase; }
.detail-cols ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.detail-cols li { padding-left: 18px; position: relative; }
.detail-cols li::before { content: ""; position: absolute; left: 0; top: .65em; width: 7px; height: 7px; border-radius: 50%; background: var(--blue); }

.process-list { display: grid; gap: 0; margin-top: 60px; border-top: 1px solid var(--ink); }
.process-item { display: grid; grid-template-columns: 130px 1fr .8fr; gap: 34px; padding: 40px 0; border-bottom: 1px solid var(--ink); align-items: start; }
.process-item .num { font-family: var(--display); font-size: clamp(36px,4.5vw,66px); line-height: .85; color: var(--blue); }
.process-item h2 { margin: 0; font-family: var(--display); font-size: clamp(26px,3.2vw,50px); line-height: .93; letter-spacing: -.05em; text-transform: uppercase; }
.process-item p { margin: 0; font-size: 15px; color: rgba(10,10,10,.65); }
.process-deliverable { display: inline-flex; margin-top: 18px; padding: 9px 12px; background: var(--lime); border-radius: 999px; font-size: 11px; font-weight: 900; text-transform: uppercase; letter-spacing: .08em; }

.case-hero { padding: 150px 0 70px; }
.case-meta { display: flex; gap: 9px; flex-wrap: wrap; margin-bottom: 32px; }
.case-meta span { padding: 9px 12px; border: 1px solid currentColor; border-radius: 999px; font-size: 10px; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.case-cover { margin-top: 55px; border-radius: var(--radius-lg); overflow: hidden; background: var(--blue); }
.case-cover img { width: 100%; aspect-ratio: 16/10; object-fit: cover; }
.case-section { display: grid; grid-template-columns: .38fr 1fr; gap: 80px; padding: 70px 0; border-top: 1px solid var(--ink); }
.case-section h2 { margin: 0; font-family: var(--display); font-size: clamp(26px,3.2vw,48px); line-height: .96; text-transform: uppercase; letter-spacing: -.05em; }
.case-section .case-copy { max-width: 780px; }
.case-copy p { font-size: clamp(14px,1.3vw,18px); line-height: 1.55; margin: 0 0 24px; }
.case-copy ul { font-size: 15px; line-height: 1.7; }
.case-gallery { display: grid; grid-template-columns: repeat(2,1fr); gap: 18px; margin-top: 40px; }
.case-gallery img { border-radius: 24px; width: 100%; height: 100%; object-fit: cover; }
.case-gallery .wide { grid-column: 1/-1; }

/* Team page */
.team-model { display: grid; grid-template-columns: .8fr 1.2fr; gap: 80px; }
.team-role-list { border-top: 1px solid var(--ink); }
.team-role-row { display: grid; grid-template-columns: 50px 1fr auto; gap: 20px; align-items: center; padding: 24px 0; border-bottom: 1px solid var(--ink); }
.team-role-row span:first-child { font-family: var(--display); }
.team-role-row strong { font-size: clamp(16px,1.6vw,24px); letter-spacing: -.03em; }
.team-role-row em { font-style: normal; color: rgba(10,10,10,.55); font-size: 13px; }

/* Contact */
.contact-layout { display: grid; grid-template-columns: .72fr 1.28fr; gap: clamp(50px,8vw,120px); align-items: start; }
.contact-aside { position: sticky; top: 130px; }
.contact-aside .display { font-size: clamp(39px,5.3vw,84px); }
.contact-channel { margin-top: 35px; padding-top: 22px; border-top: 1px solid var(--ink); }
.contact-channel span { display: block; font-size: 11px; font-weight: 900; text-transform: uppercase; letter-spacing: .12em; margin-bottom: 8px; }
.contact-channel a, .contact-channel p { font-size: 16px; font-weight: 700; margin: 0; }
.contact-form { background: var(--white); border: 1px solid rgba(10,10,10,.14); border-radius: 32px; padding: clamp(25px,4vw,52px); box-shadow: var(--shadow); }
.form-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 20px; }
.field { display: grid; gap: 8px; }
.field.full { grid-column: 1/-1; }
.field label { font-size: 12px; font-weight: 800; letter-spacing: .05em; text-transform: uppercase; }
.field input, .field select, .field textarea {
  width: 100%; border: 1px solid rgba(10,10,10,.25); background: var(--bone); color: var(--ink); border-radius: 15px; padding: 15px 16px; outline: 0; transition: border-color .2s ease, box-shadow .2s ease;
}
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--blue); box-shadow: 0 0 0 4px rgba(77,99,255,.15); }
.field textarea { min-height: 150px; resize: vertical; }
.field small { color: rgba(10,10,10,.55); }
.checkbox { grid-column: 1/-1; display: flex; gap: 10px; align-items: flex-start; font-size: 13px; color: rgba(10,10,10,.65); }
.checkbox input { margin-top: 4px; }
.form-actions { grid-column: 1/-1; display: flex; align-items: center; gap: 16px; flex-wrap: wrap; margin-top: 10px; }
.form-actions small { max-width: 38ch; color: rgba(10,10,10,.55); }
.next-steps { margin-top: 40px; display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; }
.next-step { border: 1px solid var(--ink); border-radius: 20px; padding: 20px; }
.next-step span { display: block; font-family: var(--display); color: var(--blue); font-size: 21px; }
.next-step strong { display: block; margin: 10px 0 6px; }
.next-step p { margin: 0; color: rgba(10,10,10,.6); font-size: 13px; }

/* Footer */
.site-footer { background: var(--ink); color: var(--bone); padding: 70px 0 24px; }
.footer-top { display: grid; grid-template-columns: .9fr 1.1fr; gap: 80px; align-items: start; }
.footer-logo { width: min(420px,80vw); }
.footer-copy { margin-top: 25px; max-width: 34ch; color: rgba(243,239,230,.62); }
.footer-nav { display: grid; grid-template-columns: repeat(3,1fr); gap: 30px; }
.footer-col strong { display: block; font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: var(--lime); margin-bottom: 18px; }
.footer-col a, .footer-col span { display: block; margin: 10px 0; color: rgba(243,239,230,.72); }
.footer-col a:hover { color: var(--bone); }
.footer-bottom { margin-top: 70px; border-top: 1px solid rgba(243,239,230,.18); padding-top: 22px; display: flex; justify-content: space-between; gap: 20px; color: rgba(243,239,230,.45); font-size: 12px; }

/* Reveal */
.reveal { opacity: 0; transform: translateY(35px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal.delay-1 { transition-delay: .1s; }
.reveal.delay-2 { transition-delay: .2s; }
.reveal.delay-3 { transition-delay: .3s; }

/* Cursor */
.cursor-dot { position: fixed; z-index: 2000; left: 0; top: 0; width: 12px; height: 12px; border-radius: 50%; background: var(--lime); pointer-events: none; transform: translate(-50%,-50%); mix-blend-mode: difference; transition: width .25s ease, height .25s ease; opacity: 0; }
body.cursor-ready .cursor-dot { opacity: 1; }
body.cursor-hover .cursor-dot { width: 34px; height: 34px; }

/* Legal */
.prose { max-width: 860px; }
.prose h2 { margin: 54px 0 14px; font-size: 24px; letter-spacing: -.03em; }
.prose h3 { margin: 34px 0 10px; }
.prose p, .prose li { font-size: 15px; line-height: 1.7; color: rgba(10,10,10,.72); }
.prose a { text-decoration: underline; text-decoration-thickness: 2px; text-underline-offset: 3px; }

/* Responsive */
@media (max-width: 1180px) {
  :root { --container: min(100% - 36px, 1180px); }
  .header-inner { grid-template-columns: 180px 1fr auto; }
  .desktop-nav { display: none; }
  .menu-toggle { display: block; }
  .header-cta { display: none; }
  .hero-content { grid-template-columns: 1fr; }
  .hero-info { max-width: 560px; }
  .trust-cards { grid-template-columns: repeat(2,1fr); }
  .trust-card:nth-child(2) { border-right: 0; }
  .trust-card:nth-child(-n+2) { border-bottom: 1px solid var(--ink); }
  .method-grid { grid-template-columns: repeat(3,1fr); }
  .method-step:nth-child(3) { border-right: 0; }
  .method-step:nth-child(-n+3) { border-bottom: 1px solid var(--ink); }
  .role-grid { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 900px) {
  :root { --header-h: 68px; }
  .site-header { inset: 8px 0 auto; }
  .header-inner { width: calc(100vw - 16px); height: var(--header-h); grid-template-columns: 1fr auto; padding: 9px 10px 9px 16px; border-radius: 18px; }
  .brand-link { width: 150px; }
  .lang-switch { display: none; }
  .hero { padding: 84px 8px 8px; }
  .hero-frame { min-height: calc(100svh - 92px); border-radius: 26px; }
  .hero-frame::before { background-image: linear-gradient(180deg, rgba(10,10,10,.22), rgba(10,10,10,.8)); background-position: 55% center; }
  .hero-content { padding: 24px; grid-template-rows: auto 1fr auto auto; gap: 20px; }
  .hero-copy { align-self: end; }
  .hero-info { padding: 18px; }
  .hero-bottom { align-items: flex-start; }
  .scroll-cue { display: none; }
  .page-hero { padding: 120px 0 64px; min-height: auto; }
  .page-hero-grid, .trust-intro, .expertise-layout, .story-wrap, .team-intro, .split, .team-model, .contact-layout, .footer-top, .case-section { grid-template-columns: 1fr; }
  .page-hero::after { width: 76vw; right: -38vw; top: 14%; opacity: .7; }
  .expertise-sticky, .story-stage, .contact-aside { position: relative; top: auto; }
  .story-stage { min-height: auto; margin-bottom: 50px; }
  .story-visual { max-width: 620px; margin-inline: auto; }
  .story-step { min-height: auto; padding: 56px 0; opacity: 1; transform: none; border-top: 1px solid rgba(243,239,230,.2); }
  .story-step:last-child { border-bottom: 1px solid rgba(243,239,230,.2); }
  .projects-grid { grid-template-columns: 1fr 1fr; }
  .project-card:nth-child(n) { grid-column: auto; min-height: 460px; }
  .statement-row { grid-template-columns: 1fr; }
  .statement-mascot { justify-self: end; }
  .method-grid { grid-template-columns: 1fr 1fr; }
  .method-step:nth-child(n) { border-right: 1px solid var(--ink); border-bottom: 1px solid var(--ink); }
  .method-step:nth-child(even) { border-right: 0; }
  .method-step:last-child { grid-column: 1/-1; border-right: 0; border-bottom: 0; }
  .cta-grid { grid-template-columns: 1fr; }
  .cta-side { grid-template-columns: 1fr auto; align-items: end; }
  .expertise-detail { grid-template-columns: 70px 1fr; }
  .expertise-detail .detail-cols { grid-column: 2; }
  .process-item { grid-template-columns: 80px 1fr; }
  .process-item p { grid-column: 2; }
  .contact-aside { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
  .contact-aside .display, .contact-aside > .copy-lg { grid-column: 1/-1; }
}

@media (max-width: 640px) {
  :root { --container: calc(100vw - 28px); }
  .section { padding: 78px 0; }
  .section-sm { padding: 50px 0; }
  .hero-title { font-size: clamp(36px,13vw,60px); max-width: 8.2ch; }
  .hero-info p { font-size: 15px; }
  .hero-buttons { display: grid; grid-template-columns: 1fr; }
  .hero-buttons .btn { width: 100%; }
  .hero-proof { display: grid; grid-template-columns: 1fr 1fr; }
  .pill { justify-content: center; font-size: 9px; padding: 9px 8px; }
  .trust-cards { grid-template-columns: 1fr; }
  .trust-card:nth-child(n) { border-right: 0; border-bottom: 1px solid var(--ink); min-height: 190px; }
  .trust-card:last-child { border-bottom: 0; }
  .orb-grid { grid-template-columns: 1fr; }
  .expertise-orb { min-height: 230px; border-radius: 32px; }
  .story-counter { top: 4%; font-size: clamp(20px,5vw,30px); padding: 8px 14px; }
  .statement { min-height: auto; }
  .statement-text { font-size: clamp(35px,11.6vw,62px); }
  .statement-mascot img { width: 210px; }
  .projects-grid { grid-template-columns: 1fr; }
  .project-card:nth-child(n) { min-height: 430px; }
  .project-meta { padding: 22px; }
  .project-meta .orb-arrow { display: none; }
  .section-head { display: grid; align-items: start; }
  .method-grid { grid-template-columns: 1fr; }
  .method-step:nth-child(n) { border-right: 0; min-height: 210px; }
  .method-step:last-child { grid-column: auto; }
  .role-grid, .principles-grid, .commitments, .form-grid, .next-steps, .case-gallery { grid-template-columns: 1fr; }
  .team-promise { display: grid; }
  .cta-side { grid-template-columns: 1fr; }
  .cta-side img { justify-self: end; width: 180px; }
  .expertise-detail { grid-template-columns: 1fr; gap: 18px; }
  .expertise-detail .detail-cols { grid-column: auto; }
  .detail-cols { grid-template-columns: 1fr; }
  .process-item { grid-template-columns: 1fr; gap: 16px; }
  .process-item p { grid-column: auto; }
  .case-section { gap: 28px; }
  .contact-aside { grid-template-columns: 1fr; }
  .contact-aside .display, .contact-aside > .copy-lg { grid-column: auto; }
  .field.full, .checkbox, .form-actions { grid-column: auto; }
  .form-actions { display: grid; justify-items: stretch; }
  .form-actions .btn { width: 100%; }
  .footer-nav { grid-template-columns: 1fr 1fr; }
  .footer-bottom { display: grid; }
  .cursor-dot { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
