:root {
  --purple: #8b32ec;
  --lime: #d8ef44;
  --cyan: #46cded;
  --ink: #161115;
  --ink-2: #211923;
  --ivory: #f9f7f2;
  --ivory-2: #eee9df;
  --white: #fffef9;
  --muted: #aaa1aa;
  --muted-dark: #6f6870;
  --line-dark: rgba(249, 247, 242, 0.16);
  --line-light: rgba(22, 17, 21, 0.16);
  --display: "GFS Didot", Didot, "Bodoni MT", "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --shell: min(92vw, 1440px);
  --header-h: 84px;
  --radius: 8px;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.25);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--ink); }
body { margin: 0; min-width: 320px; overflow-x: hidden; background: var(--ink); color: var(--ivory); font-family: var(--sans); font-size: 16px; line-height: 1.55; -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; }
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { color: inherit; }
::selection { background: var(--lime); color: var(--ink); }

h1, h2, h3, h4, p, ul, ol, blockquote { margin-top: 0; }
h1, h2, h3 { text-wrap: balance; }
h1, h2 { font-family: var(--display); font-weight: 400; letter-spacing: -0.035em; line-height: 0.98; }
h1 { font-size: clamp(4rem, 8vw, 9.8rem); }
h2 { font-size: clamp(3rem, 5.7vw, 7rem); }
h3 { line-height: 1.08; }
em { color: var(--lime); font-style: normal; }

.shell { width: var(--shell); margin-inline: auto; }
.section-dark { background: var(--ink); color: var(--ivory); }
.section-ivory { background: var(--ivory); color: var(--ink); }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.skip-link { position: fixed; z-index: 9999; left: 1rem; top: 1rem; transform: translateY(-180%); padding: .85rem 1rem; background: var(--lime); color: var(--ink); font-weight: 700; border-radius: 4px; }
.skip-link:focus { transform: translateY(0); }

.media { display: block; overflow: hidden; }
.media img { width: 100%; height: 100%; object-fit: cover; }
.cover, .cover img { width: 100%; height: 100%; }
.icon { width: 1.15em; height: 1.15em; flex: 0 0 auto; }
.sparkle { width: 1em; height: 1em; color: var(--lime); flex: 0 0 auto; }
.orbit { width: 100%; height: 100%; color: var(--lime); }

.reveal { opacity: 0; transform: translateY(28px); transition: opacity .75s cubic-bezier(.2,.8,.2,1), transform .75s cubic-bezier(.2,.8,.2,1); }
.reveal.is-visible { opacity: 1; transform: none; }

.eyebrow { display: inline-flex; align-items: center; gap: .7rem; margin-bottom: 1.25rem; font-size: .72rem; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; }
.eyebrow span { display: grid; place-items: center; min-width: 2rem; height: 2rem; padding: 0 .5rem; background: var(--purple); color: var(--ivory); }
.eyebrow__star { width: .85rem; color: var(--lime); }
.eyebrow--purple { color: var(--purple); }
.eyebrow--lime { color: var(--lime); }
.section-label { display: block; margin-bottom: 1rem; color: var(--purple); font-size: .72rem; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; }
.hero-kicker { display: inline-flex; align-items: center; gap: .75rem; color: var(--lime); font-size: .75rem; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; }
.hero-kicker .sparkle { width: 1rem; }

.button-row { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; }
.button { position: relative; display: inline-flex; align-items: center; justify-content: center; gap: .85rem; min-height: 52px; padding: .9rem 1.45rem; border: 1px solid transparent; border-radius: 999px; appearance: none; cursor: pointer; font-size: .74rem; font-weight: 800; letter-spacing: .035em; text-transform: uppercase; transition: transform .25s ease, background .25s ease, color .25s ease, border-color .25s ease; }
.button:hover { transform: translateY(-2px); }
.button:focus-visible, a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible { outline: 3px solid var(--cyan); outline-offset: 3px; }
.button--lime { background: var(--lime); color: var(--ink); }
.button--lime:hover { background: var(--ivory); }
.button--outline { border-color: rgba(249,247,242,.45); background: rgba(22,17,21,.2); color: var(--ivory); }
.button--outline:hover { border-color: var(--lime); color: var(--lime); }
.button--ink { background: var(--ink); color: var(--ivory); }
.button--ink:hover { background: var(--purple); }
.button--ghost { border-color: var(--line-dark); background: transparent; color: var(--ivory); }
.button--wide { width: 100%; }
.text-link { display: inline-flex; align-items: center; gap: .7rem; font-size: .75rem; font-weight: 750; letter-spacing: .07em; text-transform: uppercase; }
.text-link .icon { transition: transform .25s ease; }
a:hover .text-link .icon, .text-link:hover .icon { transform: translateX(5px); }

/* Header */
.site-header { position: fixed; z-index: 1000; inset: 0 0 auto; height: var(--header-h); color: var(--ivory); transition: background .3s ease, backdrop-filter .3s ease, border-color .3s ease; }
.site-header.is-scrolled { background: rgba(22,17,21,.88); backdrop-filter: blur(18px); border-bottom: 1px solid var(--line-dark); }
.site-header__inner { height: 100%; display: grid; grid-template-columns: 190px 1fr auto; align-items: center; gap: 2rem; }
.site-header__brand { width: 144px; display: block; }
.brand-logo { width: 100%; height: auto; object-fit: contain; }
.desktop-nav ul { display: flex; align-items: center; justify-content: center; gap: clamp(1.2rem, 2.5vw, 2.8rem); margin: 0; padding: 0; list-style: none; }
.desktop-nav a { position: relative; padding: .65rem 0; font-size: .7rem; font-weight: 700; letter-spacing: .11em; text-transform: uppercase; }
.desktop-nav a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: .25rem; height: 2px; background: var(--lime); transition: right .25s ease; }
.desktop-nav a:hover::after, .desktop-nav a.is-active::after { right: 0; }
.site-header__cta { min-height: 44px; padding-inline: 1.25rem; }
.menu-toggle { display: none; align-items: center; gap: .6rem; border: 0; background: transparent; cursor: pointer; font-size: .72rem; font-weight: 700; text-transform: uppercase; }
.mobile-panel { position: fixed; z-index: 1001; inset: 0; display: flex; flex-direction: column; padding: 1.25rem 5vw 2rem; background: var(--ink); transform: translateX(105%); transition: transform .45s cubic-bezier(.2,.8,.2,1); }
.mobile-panel.is-open { transform: translateX(0); }
.mobile-panel__top { display: flex; align-items: center; justify-content: space-between; }
.mobile-panel__top > a { width: 150px; }
.mobile-panel__top button { display: grid; place-items: center; width: 44px; height: 44px; border: 1px solid var(--line-dark); border-radius: 50%; background: transparent; cursor: pointer; }
.mobile-panel nav { margin-block: auto; }
.mobile-panel ul { display: grid; gap: 1rem; list-style: none; padding: 0; margin: 0; }
.mobile-panel nav a { font-family: var(--display); font-size: clamp(2.8rem, 12vw, 5rem); line-height: 1; }
.mobile-panel__footer { display: flex; align-items: center; justify-content: space-between; gap: 1rem; border-top: 1px solid var(--line-dark); padding-top: 1.5rem; }
.mobile-panel__footer p { margin: 0; color: var(--muted); font-size: .8rem; }

/* Footer */
.site-footer { padding: 5rem 0 1.25rem; background: #0d0a0d; border-top: 1px solid var(--line-dark); color: var(--ivory); }
.site-footer__grid { display: grid; grid-template-columns: 1.65fr repeat(4, 1fr); gap: clamp(2rem, 4vw, 5rem); }
.site-footer__brand .brand-logo { width: 170px; margin-bottom: 1.25rem; }
.site-footer__brand p { color: var(--muted); font-size: .85rem; }
.site-footer__brand p span { color: var(--lime); }
.site-footer h2 { margin-bottom: 1rem; font-family: var(--sans); font-size: .68rem; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; }
.site-footer ul { display: grid; gap: .6rem; margin: 0; padding: 0; list-style: none; }
.site-footer li, .site-footer p, .site-footer a { color: #aaa2aa; font-size: .82rem; }
.site-footer a:hover { color: var(--lime); }
.site-footer__email { display: inline-block; margin-bottom: .6rem; color: var(--ivory) !important; }
.social-links { display: flex; gap: .6rem; margin-top: 1rem; }
.social-links a { display: grid; place-items: center; width: 36px; height: 36px; border: 1px solid var(--line-dark); border-radius: 50%; }
.site-footer__bottom { display: flex; justify-content: space-between; gap: 1rem; margin-top: 4rem; padding-top: 1.25rem; border-top: 1px solid var(--line-dark); color: #736d73; font-size: .7rem; }

/* Shared headings */
.section-heading { display: grid; grid-template-columns: minmax(0, 1.35fr) minmax(280px, .65fr); align-items: end; gap: clamp(2rem, 6vw, 7rem); margin-bottom: 3rem; }
.section-heading--wide { grid-template-columns: 1.6fr .6fr; }
.section-heading h2 { margin-bottom: 0; font-size: clamp(3.1rem, 5.4vw, 6.4rem); }
.section-heading p { margin-bottom: 1.4rem; color: inherit; opacity: .72; max-width: 520px; }
.section-heading .button { margin-top: .6rem; }

/* Home hero */
.home-hero { position: relative; min-height: 980px; padding-top: var(--header-h); overflow: hidden; }
.home-hero__media, .home-hero__shade { position: absolute; inset: 0; }
.home-hero__media img { object-position: center; }
.home-hero__shade { background: linear-gradient(90deg, rgba(10,7,11,.98) 0%, rgba(10,7,11,.88) 35%, rgba(10,7,11,.25) 70%, rgba(10,7,11,.25) 100%), linear-gradient(0deg, var(--ink) 0%, transparent 30%); }
.home-hero__orbit { position: absolute; width: 570px; height: 760px; right: 3vw; top: 8vh; opacity: .9; transform: rotate(13deg); pointer-events: none; }
.home-hero__content { position: relative; z-index: 2; min-height: 700px; display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(280px, .6fr); align-items: center; gap: 4rem; padding-block: 5rem 3rem; }
.home-hero__copy { max-width: 960px; }
.home-hero h1 { max-width: 960px; margin: 1.25rem 0 1.5rem; font-size: clamp(5rem, 8.4vw, 10rem); }
.home-hero__copy > p { max-width: 620px; margin-bottom: 2rem; color: #d8d2d7; font-size: clamp(1.05rem, 1.5vw, 1.35rem); }
.home-hero__promise { justify-self: end; align-self: end; display: grid; gap: .45rem; width: min(330px, 100%); padding: 1.3rem; border-left: 1px solid var(--lime); background: rgba(22,17,21,.44); backdrop-filter: blur(10px); }
.home-hero__promise span { color: var(--lime); font-family: var(--display); font-size: 1.4rem; }
.home-hero__promise strong { font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; }
.home-hero__steps { position: relative; z-index: 2; display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line-dark); border-bottom: 1px solid var(--line-dark); }
.home-hero__steps > div { padding: 2rem clamp(1.25rem, 3vw, 3.2rem); border-right: 1px solid var(--line-dark); }
.home-hero__steps > div:last-child { border-right: 0; }
.home-hero__steps strong { color: var(--purple); font-family: var(--display); font-size: 2rem; }
.home-hero__steps h2 { margin: .3rem 0 .6rem; font-family: var(--sans); font-size: 1rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.home-hero__steps p { margin: 0; color: var(--muted); font-size: .86rem; max-width: 300px; }

/* Problem */
.editorial-split { padding: 8rem 0; }
.editorial-split__grid { display: grid; grid-template-columns: minmax(0, .84fr) minmax(0, 1.16fr); align-items: stretch; min-height: 720px; }
.editorial-split__copy { position: relative; z-index: 2; padding: clamp(2rem, 5vw, 5.5rem); background: var(--ivory); border: 1px solid var(--line-light); }
.editorial-split__copy h2 { font-size: clamp(3.4rem, 5vw, 6rem); }
.editorial-split__copy > p { max-width: 540px; color: var(--muted-dark); font-size: 1.1rem; }
.diagnostic-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin: 2.5rem 0; }
.diagnostic-list > div { padding-top: 1.2rem; border-top: 1px solid var(--line-light); }
.diagnostic-list strong, .diagnostic-list span { display: block; }
.diagnostic-list strong { margin-bottom: .4rem; font-family: var(--display); font-size: 1.25rem; }
.diagnostic-list span { color: var(--muted-dark); font-size: .78rem; }
.editorial-split__media { position: relative; min-height: 700px; overflow: hidden; background: var(--ink); }
.editorial-split__media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(22,17,21,.15), rgba(22,17,21,.55)); }
.editorial-split__orbit { position: absolute; z-index: 2; width: 420px; height: 590px; right: -8%; bottom: -10%; transform: rotate(14deg); }
.floating-note { position: absolute; z-index: 3; padding: .9rem 1rem; background: var(--lime); color: var(--ink); font-size: .78rem; line-height: 1.3; transform: rotate(-3deg); box-shadow: var(--shadow); }
.floating-note--one { top: 13%; right: 9%; }
.floating-note--two { right: 12%; bottom: 13%; background: var(--ivory); transform: rotate(2deg); }

/* Belief */
.belief { padding: 0; overflow: hidden; }
.belief__grid { width: 100%; max-width: none; display: grid; grid-template-columns: minmax(0, .82fr) minmax(0, 1.18fr); }
.belief__copy { padding: clamp(4rem, 9vw, 10rem) max(4vw, calc((100vw - 1440px)/2)); padding-right: clamp(3rem, 6vw, 7rem); }
.belief__copy h2 { font-size: clamp(4rem, 7vw, 8rem); }
.belief__copy > p { max-width: 600px; color: var(--muted); font-size: 1.1rem; }
.star-list { display: grid; gap: .8rem; margin: 2rem 0 2.5rem; padding: 0; list-style: none; }
.star-list li { display: flex; align-items: center; gap: .8rem; padding-bottom: .8rem; border-bottom: 1px solid var(--line-dark); }
.star-list .sparkle { width: .7rem; }
.belief__media { min-height: 820px; }

/* Projects cards */
.featured-projects, .project-catalog { padding: 8rem 0; }
.featured-projects__grid, .project-catalog__grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 1rem; }
.project-card { position: relative; min-height: 520px; overflow: hidden; border: 1px solid var(--line-dark); background: var(--ink-2); isolation: isolate; }
.project-card--large { grid-row: span 2; min-height: 1060px; }
.project-card__link { position: absolute; z-index: 5; inset: 0; }
.project-card__media, .project-card__shade { position: absolute; inset: 0; }
.project-card__media img { transition: transform .9s cubic-bezier(.2,.8,.2,1), filter .5s ease; }
.project-card__shade { background: linear-gradient(0deg, rgba(10,7,11,.96) 0%, rgba(10,7,11,.62) 48%, rgba(10,7,11,.05) 100%); }
.project-card__orbit { position: absolute; width: 290px; height: 420px; right: -8%; top: 4%; opacity: .65; transition: transform .7s ease; }
.project-card__content { position: absolute; z-index: 3; inset: auto 0 0; padding: clamp(1.5rem, 3vw, 3rem); }
.project-card__meta { display: flex; align-items: center; gap: .7rem; flex-wrap: wrap; margin-bottom: 1rem; color: var(--lime); font-size: .65rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.project-card__meta span + span::before { content: "/"; margin-right: .7rem; color: var(--muted); }
.demo-label { border: 1px solid rgba(216,239,68,.5); padding: .25rem .45rem; }
.demo-label::before { display: none; }
.project-card h3 { max-width: 650px; margin-bottom: .7rem; font-family: var(--display); font-size: clamp(2.2rem, 3.7vw, 4.5rem); font-weight: 400; }
.project-card p { max-width: 520px; margin-bottom: 1.3rem; color: #d1cad1; font-size: .92rem; }
.project-card__metrics { display: flex; gap: 2rem; margin: 1rem 0; }
.project-card__metrics div { display: grid; }
.project-card__metrics strong { color: var(--lime); font-family: var(--display); font-size: 2.2rem; font-weight: 400; line-height: 1; }
.project-card__metrics span { color: var(--muted); font-size: .66rem; text-transform: uppercase; }
.tag-list { display: flex; flex-wrap: wrap; gap: .4rem; margin: 1rem 0 1.35rem; }
.tag-list span { padding: .3rem .5rem; border: 1px solid rgba(249,247,242,.22); color: #d8d1d7; font-size: .6rem; letter-spacing: .06em; text-transform: uppercase; }
.project-card:hover .project-card__media img { transform: scale(1.045); filter: saturate(1.15); }
.project-card:hover .project-card__orbit { transform: rotate(8deg) scale(1.05); }
.demo-notice { display: flex; gap: 1rem; align-items: flex-start; margin-top: 2rem; padding: 1.2rem 1.4rem; border: 1px solid var(--line-dark); color: var(--muted); font-size: .78rem; }
.demo-notice span { color: var(--lime); }
.demo-notice p { margin: 0; }

/* Capabilities */
.capabilities { padding: 8rem 0; }
.capabilities__grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); border: 1px solid var(--line-light); }
.capability-tile { position: relative; min-height: 380px; padding: 2.2rem; border-right: 1px solid var(--line-light); border-bottom: 1px solid var(--line-light); transition: background .3s ease, color .3s ease; }
.capability-tile:nth-child(3n) { border-right: 0; }
.capability-tile:nth-last-child(-n+3) { border-bottom: 0; }
.capability-tile__number { color: var(--purple); font-family: var(--display); font-size: 2rem; }
.capability-tile__icon { display: grid; place-items: center; width: 64px; height: 64px; margin: 3.2rem 0 2rem; border: 1px solid currentColor; border-radius: 50%; color: var(--purple); }
.capability-tile__icon .icon { width: 1.7rem; height: 1.7rem; }
.capability-tile h3 { max-width: 300px; font-family: var(--display); font-size: 2.1rem; font-weight: 400; }
.capability-tile p { color: var(--muted-dark); font-size: .88rem; }
.capability-tile > .icon { position: absolute; right: 2rem; bottom: 2rem; }
.capability-tile:hover { background: var(--purple); color: var(--ivory); }
.capability-tile:hover p, .capability-tile:hover .capability-tile__number, .capability-tile:hover .capability-tile__icon { color: var(--ivory); }

/* Team and results */
.team-process { position: relative; min-height: 980px; padding: 9rem 0 4rem; overflow: hidden; }
.team-process__media, .team-process__shade { position: absolute; inset: 0; }
.team-process__shade { background: linear-gradient(90deg, rgba(10,7,11,.96) 0%, rgba(10,7,11,.7) 42%, rgba(10,7,11,.25) 75%), linear-gradient(0deg, var(--ink), transparent 45%); }
.team-process__content { position: relative; z-index: 2; max-width: 760px; margin-left: max(4vw, calc((100vw - 1440px)/2)); margin-right: auto; }
.team-process__content h2 { font-size: clamp(4rem, 6.6vw, 8rem); }
.team-process__content p { max-width: 540px; color: var(--muted); font-size: 1.05rem; }
.process-steps { position: absolute; z-index: 2; left: 50%; bottom: 3rem; transform: translateX(-50%); display: grid; grid-template-columns: repeat(4,1fr); border-top: 1px solid var(--line-dark); }
.process-steps > div { padding: 1.5rem 1.4rem; border-right: 1px solid var(--line-dark); }
.process-steps > div:last-child { border-right: 0; }
.process-steps strong { color: var(--lime); font-family: var(--display); font-size: 2rem; }
.process-steps h3 { margin: .4rem 0; font-family: var(--display); font-size: 1.6rem; font-weight: 400; }
.process-steps p { margin: 0; color: var(--muted); font-size: .76rem; }
.results { position: relative; padding: 8rem 0; overflow: hidden; }
.results__ornament { position: absolute; width: 600px; height: 820px; right: -180px; top: -120px; opacity: .2; }
.results__grid { position: relative; z-index: 1; display: grid; grid-template-columns: .8fr 1.2fr; gap: 5rem; align-items: center; }
.results__copy h2 { font-size: clamp(4rem, 6vw, 7.3rem); }
.results__copy p { max-width: 500px; color: var(--muted); }
.results__visual { min-height: 520px; overflow: hidden; border: 1px solid var(--line-dark); }
.metric-grid { display: grid; grid-template-columns: repeat(3, 1fr); }
.metric { padding: 1.6rem; border: 1px solid var(--line-dark); }
.metric strong, .metric span { display: block; }
.metric strong { color: var(--lime); font-family: var(--display); font-size: clamp(2.8rem, 5vw, 5.8rem); font-weight: 400; line-height: 1; }
.metric span { margin-top: .5rem; color: var(--muted); font-size: .7rem; letter-spacing: .08em; text-transform: uppercase; }
.metric-grid--home { grid-template-columns: repeat(4,1fr); margin-top: 4rem; }

/* Resources cards */
.resources-preview, .related-resources, .related-projects, .services-projects, .resource-services { padding: 8rem 0; }
.resources-grid, .related-projects__grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 1rem; }
.resource-card { border: 1px solid var(--line-light); background: var(--white); overflow: hidden; transition: transform .3s ease, box-shadow .3s ease; }
.resource-card:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(22,17,21,.12); }
.resource-card__media { position: relative; display: block; aspect-ratio: 1.48; overflow: hidden; background: var(--ink); }
.resource-card__media img { transition: transform .7s ease; }
.resource-card:hover .resource-card__media img { transform: scale(1.04); }
.resource-card__type { position: absolute; z-index: 2; left: 1rem; top: 1rem; padding: .38rem .55rem; background: var(--purple); color: var(--ivory); font-size: .62rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.resource-card__body { padding: 1.5rem; }
.resource-card__meta { display: flex; justify-content: space-between; gap: 1rem; margin-bottom: 1rem; color: var(--purple); font-size: .65rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.resource-card h3 { margin-bottom: .8rem; font-family: var(--display); font-size: clamp(1.8rem, 2.4vw, 2.7rem); font-weight: 400; }
.resource-card p { color: var(--muted-dark); font-size: .86rem; }

/* Newsletter and CTA */
.newsletter-band { position: relative; padding: 5rem 0; overflow: hidden; background: linear-gradient(100deg, #1d1227, var(--ink)); color: var(--ivory); border-block: 1px solid var(--line-dark); }
.newsletter-band__ornament { position: absolute; width: 300px; height: 420px; right: 4vw; top: -100px; opacity: .6; }
.newsletter-band__grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr 1.1fr; gap: 5rem; align-items: center; }
.newsletter-band h2 { font-size: clamp(3.2rem, 4.6vw, 5.6rem); }
.newsletter-band p { color: var(--muted); }
.newsletter-form label { display: block; margin-bottom: .55rem; font-size: .68rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.newsletter-form > div { display: flex; gap: .7rem; }
.newsletter-form input { flex: 1; min-width: 0; height: 54px; border: 1px solid var(--line-dark); background: rgba(255,255,255,.05); color: var(--ivory); padding: 0 1rem; }
.newsletter-form small { display: block; margin-top: .8rem; color: #857c85; }
.newsletter-form small a { text-decoration: underline; }
.form-status { min-height: 1.4em; margin: .7rem 0 0; font-size: .8rem; }
.form-status.is-success { color: var(--lime); }
.form-status.is-error { color: #ff8c8c; }
.cta-band { position: relative; min-height: 490px; display: grid; align-items: center; overflow: hidden; }
.cta-band__media, .cta-band__overlay { position: absolute; inset: 0; }
.cta-band__overlay { background: linear-gradient(90deg, rgba(10,7,11,.98), rgba(10,7,11,.78) 50%, rgba(10,7,11,.35)); }
.cta-band__content { position: relative; z-index: 2; display: grid; grid-template-columns: 1.3fr auto; gap: 3rem; align-items: end; padding-block: 6rem; }
.cta-band h2 { margin-bottom: 1rem; font-size: clamp(3.8rem, 6vw, 7.2rem); }
.cta-band p { max-width: 600px; margin: 0; color: var(--muted); }

/* Projects index */
.projects-hero, .resources-hero, .simple-hero, .contact-hero { position: relative; min-height: 760px; padding-top: var(--header-h); display: grid; align-items: center; overflow: hidden; }
.projects-hero__media, .projects-hero__shade, .resources-hero__media, .resources-hero__shade, .simple-hero__media, .simple-hero__shade, .contact-hero__media, .contact-hero__shade { position: absolute; inset: 0; }
.projects-hero__shade, .resources-hero__shade, .simple-hero__shade, .contact-hero__shade { background: linear-gradient(90deg, rgba(10,7,11,.98), rgba(10,7,11,.78) 50%, rgba(10,7,11,.18)); }
.projects-hero__orbit, .resources-hero__orbit, .contact-hero__orbit { position: absolute; width: 480px; height: 670px; right: 3vw; top: 6rem; opacity: .8; }
.projects-hero__content, .resources-hero__content, .simple-hero__content { position: relative; z-index: 2; max-width: 900px; padding-block: 6rem; }
.projects-hero h1, .resources-hero h1, .simple-hero h1 { font-size: clamp(4.6rem, 7.5vw, 9rem); }
.projects-hero__content > p, .resources-hero__content > p, .simple-hero__content > p { max-width: 650px; color: #d0c9d0; font-size: 1.12rem; }
.project-philosophy { padding: 5rem 0; }
.project-philosophy__grid { display: grid; grid-template-columns: 1.5fr repeat(3,1fr); gap: 0; border-block: 1px solid var(--line-light); }
.project-philosophy__grid > div { padding: 2rem; border-right: 1px solid var(--line-light); }
.project-philosophy__grid > div:last-child { border-right: 0; }
.project-philosophy h2 { font-size: clamp(2.8rem, 4vw, 4.8rem); }
.philosophy-item .sparkle { color: var(--purple); font-size: 1.7rem; }
.philosophy-item:nth-child(3) .sparkle { color: var(--lime); }
.philosophy-item:nth-child(4) .sparkle { color: var(--cyan); }
.philosophy-item h3 { margin: 1rem 0 .5rem; font-size: .75rem; letter-spacing: .1em; text-transform: uppercase; }
.philosophy-item p { color: var(--muted-dark); font-size: .78rem; }
.catalog-toolbar, .resource-toolbar { display: flex; justify-content: space-between; align-items: center; gap: 1rem; margin-bottom: 2rem; }
.filter-group { display: flex; flex-wrap: wrap; gap: .55rem; }
.filter-button { min-height: 38px; padding: .55rem .85rem; border: 1px solid var(--line-dark); border-radius: 999px; background: transparent; color: var(--ivory); cursor: pointer; font-size: .62rem; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; }
.filter-button:hover, .filter-button.is-active { border-color: var(--lime); background: var(--lime); color: var(--ink); }
.catalog-sort { display: flex; align-items: center; gap: .7rem; color: var(--muted); font-size: .66rem; text-transform: uppercase; }
.catalog-sort select { border: 1px solid var(--line-dark); background: var(--ink); color: var(--ivory); padding: .55rem .8rem; }
.project-catalog__grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
.project-card[hidden], .resource-card[hidden], .featured-resource[hidden] { display: none !important; }
.empty-state { padding: 5rem 0; text-align: center; }
.empty-state h2 { font-size: 3rem; }
.system-statement { padding: 6rem 0; border-top: 1px solid var(--line-dark); }
.system-statement__grid { position: relative; display: grid; grid-template-columns: 1.1fr .8fr .45fr; gap: 4rem; align-items: center; padding: 3rem; border: 1px solid var(--line-dark); overflow: hidden; }
.system-statement h2 { margin: 0; font-size: clamp(3.4rem, 5.5vw, 6.4rem); }
.system-statement p { color: var(--muted); }
.system-statement__orbit { width: 260px; height: 360px; opacity: .8; }
.capability-strip { padding: 5rem 0; }
.capability-strip > .shell { display: grid; grid-template-columns: .65fr 1.35fr; gap: 4rem; }
.capability-strip__title h2 { font-size: 3.5rem; }
.capability-strip__items { display: grid; grid-template-columns: repeat(3,1fr); }
.capability-strip__items a { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: .8rem; min-height: 95px; padding: 1rem; border: 1px solid var(--line-light); margin: -1px 0 0 -1px; }
.capability-strip__items a:hover { background: var(--lime); }
.capability-strip__items .icon:first-child { color: var(--purple); }
.capability-strip__items strong { font-size: .72rem; text-transform: uppercase; }

/* Case study */
.case-hero { position: relative; min-height: 830px; padding-top: var(--header-h); overflow: hidden; }
.case-hero__media, .case-hero__shade { position: absolute; inset: 0; }
.case-hero__shade { background: linear-gradient(90deg, rgba(10,7,11,.98) 0%, rgba(10,7,11,.82) 43%, rgba(10,7,11,.2) 78%), linear-gradient(0deg, rgba(10,7,11,.8), transparent 45%); }
.case-hero__orbit { position: absolute; width: 450px; height: 630px; right: 10vw; top: 4rem; opacity: .7; }
.case-hero__content { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr 340px; grid-template-rows: auto 1fr; gap: 3rem 5rem; min-height: 750px; padding-block: 2rem 5rem; }
.breadcrumb { grid-column: 1/-1; align-self: start; }
.breadcrumb ol { display: flex; flex-wrap: wrap; align-items: center; gap: .35rem; margin: 0; padding: 0; list-style: none; color: rgba(249,247,242,.62); font-size: .68rem; }
.breadcrumb li { display: flex; align-items: center; gap: .35rem; }
.breadcrumb .icon { width: .85rem; }
.breadcrumb a:hover { color: var(--lime); }
.case-hero__copy { align-self: center; max-width: 900px; }
.case-category, .article-type { color: var(--lime); font-size: .72rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.case-hero h1 { margin: 1rem 0 1.2rem; font-size: clamp(4.8rem, 7.2vw, 8.7rem); }
.case-hero__copy > p { max-width: 670px; color: #ddd7dc; font-size: 1.15rem; }
.case-demo { display: inline-flex; margin-top: 1rem; padding: .45rem .7rem; border: 1px solid rgba(216,239,68,.55); color: var(--lime); font-size: .64rem; text-transform: uppercase; }
.case-hero__metrics { align-self: center; padding: 1rem; border: 1px solid var(--line-dark); background: rgba(22,17,21,.72); backdrop-filter: blur(14px); }
.case-hero__metrics .metric-grid { grid-template-columns: 1fr; }
.case-hero__metrics .metric { border-width: 0 0 1px; }
.case-hero__metrics .metric:last-child { border-bottom: 0; }
.case-hero__metrics .metric strong { font-size: 3.6rem; }
.case-info { padding: 2rem 0; }
.case-info__grid { display: grid; grid-template-columns: .75fr 1.5fr .65fr 1.6fr; }
.case-info__grid > div { padding: 1.3rem 1.4rem; border-right: 1px solid var(--line-light); }
.case-info__grid > div:last-child { border-right: 0; }
.case-info strong, .case-info span { display: block; }
.case-info strong { margin-bottom: .45rem; color: var(--purple); font-size: .62rem; letter-spacing: .1em; text-transform: uppercase; }
.case-info span { font-size: .82rem; }
.case-challenge { padding: 8rem 0; }
.case-challenge__grid { display: grid; grid-template-columns: .75fr .7fr 1fr; gap: 4rem; align-items: center; }
.case-challenge h2 { font-size: clamp(3.8rem, 5.6vw, 6.4rem); }
.case-challenge p { color: var(--muted); }
.challenge-points { display: grid; gap: 1rem; padding: 0; list-style: none; }
.challenge-points li { display: flex; gap: .8rem; padding-bottom: 1rem; border-bottom: 1px solid var(--line-dark); }
.challenge-points .sparkle { width: .65rem; }
.case-challenge__image { min-height: 560px; }
.case-strategy { padding: 8rem 0; }
.strategy-pillars { display: grid; grid-template-columns: repeat(4,1fr); border: 1px solid var(--line-light); }
.strategy-pillar { min-height: 300px; padding: 2rem; border-right: 1px solid var(--line-light); }
.strategy-pillar:last-child { border-right: 0; }
.strategy-pillar .sparkle { color: var(--purple); font-size: 1.8rem; }
.strategy-pillar:nth-child(2) .sparkle { color: var(--cyan); }
.strategy-pillar:nth-child(3) .sparkle { color: var(--lime); }
.strategy-pillar h3 { margin: 4rem 0 .8rem; font-family: var(--display); font-size: 2.3rem; font-weight: 400; }
.strategy-pillar p { color: var(--muted-dark); }
.case-timeline { padding: 8rem 0; }
.timeline { position: relative; display: grid; grid-template-columns: repeat(4,1fr); gap: 2rem 1rem; }
.timeline::before { content: ""; position: absolute; left: 0; right: 0; top: 2.1rem; height: 1px; background: var(--line-dark); }
.timeline-item { position: relative; }
.timeline-item > span { display: grid; place-items: center; width: 4.2rem; height: 4.2rem; margin-bottom: 1.5rem; border: 1px solid var(--lime); border-radius: 50%; background: var(--ink); color: var(--lime); font-family: var(--display); font-size: 1.35rem; }
.timeline-item > div { padding-right: 1rem; }
.timeline-item .sparkle { width: .7rem; }
.timeline-item h3 { margin: 1rem 0 .5rem; font-family: var(--display); font-size: 1.6rem; font-weight: 400; }
.timeline-item p { color: var(--muted); font-size: .78rem; }
.case-gallery { padding: 8rem 0; }
.case-gallery__grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 1rem; }
.case-gallery figure { position: relative; min-height: 460px; margin: 0; overflow: hidden; border: 1px solid var(--line-dark); }
.case-gallery figure:nth-child(1) { grid-column: span 2; min-height: 650px; }
.case-gallery figcaption { position: absolute; left: 1rem; bottom: 1rem; padding: .5rem .7rem; background: rgba(22,17,21,.8); color: var(--ivory); font-size: .66rem; letter-spacing: .08em; text-transform: uppercase; }
.case-results { padding: 8rem 0; }
.case-results__grid { display: grid; grid-template-columns: .7fr 1.3fr; gap: 5rem; align-items: center; }
.case-results h2 { font-size: clamp(3.8rem, 5.6vw, 6.4rem); }
.case-results p { color: var(--muted); }
.metric-grid--case { grid-template-columns: repeat(2,1fr); }
.testimonial { padding: 4rem 0; }
.testimonial__grid { display: grid; grid-template-columns: 80px 1.5fr .7fr .7fr; gap: 2rem; align-items: center; }
.testimonial__avatar { display: grid; place-items: center; width: 72px; height: 72px; border-radius: 50%; background: var(--ink); color: var(--lime); }
.testimonial__avatar .sparkle { width: 1.8rem; }
.testimonial blockquote { margin: 0; font-family: var(--display); font-size: clamp(1.8rem, 3vw, 3.4rem); line-height: 1.05; }
.testimonial strong, .testimonial span { display: block; }
.testimonial span { color: var(--muted-dark); font-size: .75rem; }
.testimonial__brand { justify-self: end; font-family: var(--display); font-size: 2rem; letter-spacing: .2em; text-transform: uppercase; }

/* Services */
.simple-hero__content { max-width: 850px; }
.service-intro { padding: 6rem 0; }
.service-intro__grid { display: grid; grid-template-columns: 1.2fr .8fr; gap: 6rem; align-items: end; }
.service-intro h2 { font-size: clamp(3.5rem, 5.2vw, 6.2rem); }
.service-intro p { color: var(--muted-dark); font-size: 1.05rem; }
.service-details { padding-bottom: 8rem; }
.service-detail { padding: 4rem 0; }
.service-detail__grid { display: grid; grid-template-columns: .75fr 1.25fr; min-height: 640px; border: 1px solid var(--line-light); }
.service-detail--reverse .service-detail__visual { order: 2; }
.service-detail__visual { position: relative; display: grid; place-items: center; min-height: 640px; overflow: hidden; background: var(--ink); color: var(--lime); }
.service-detail__visual > .icon { width: 160px; height: 160px; }
.service-detail__visual .orbit { position: absolute; width: 420px; height: 580px; opacity: .7; transform: rotate(14deg); }
.service-detail__number { position: absolute; left: 2rem; top: 1.4rem; color: var(--purple); font-family: var(--display); font-size: 3rem; }
.service-detail__copy { padding: clamp(3rem, 6vw, 7rem); }
.service-detail__copy h2 { font-size: clamp(3.5rem, 5.2vw, 6.2rem); }
.service-detail__lead { max-width: 680px; color: var(--muted-dark); font-size: 1.05rem; }
.service-result { margin: 2rem 0; padding: 1.4rem; border-left: 3px solid var(--purple); background: var(--ivory-2); }
.service-result strong { font-size: .66rem; letter-spacing: .1em; text-transform: uppercase; }
.service-result p { margin: .4rem 0 0; font-family: var(--display); font-size: 1.5rem; }
.check-list { display: grid; grid-template-columns: repeat(2,1fr); gap: .8rem 1.4rem; padding: 0; margin: 2rem 0; list-style: none; }
.check-list li { display: flex; align-items: center; gap: .7rem; padding-bottom: .7rem; border-bottom: 1px solid var(--line-light); font-size: .82rem; }
.check-list .icon { color: var(--purple); }
.integrated-process { padding: 8rem 0; }
.integrated-process__flow { display: grid; grid-template-columns: repeat(5,1fr); border: 1px solid var(--line-dark); }
.integrated-process__flow > div { min-height: 260px; padding: 1.5rem; border-right: 1px solid var(--line-dark); }
.integrated-process__flow > div:last-child { border-right: 0; }
.integrated-process__flow span { color: var(--purple); font-family: var(--display); font-size: 2.5rem; }
.integrated-process__flow h3 { margin-top: 3rem; font-family: var(--display); font-size: 2rem; font-weight: 400; }
.integrated-process__flow p { color: var(--muted); font-size: .8rem; }

/* About */
.manifesto { padding: 9rem 0; }
.manifesto__grid { display: grid; grid-template-columns: 1.25fr .75fr; gap: 6rem; }
.manifesto h2 { font-size: clamp(3.8rem, 5.7vw, 7rem); }
.manifesto__copy p { color: var(--muted-dark); font-size: 1.05rem; }
.manifesto__copy strong { display: block; margin-top: 2rem; color: var(--purple); font-family: var(--display); font-size: 2.4rem; }
.values { padding: 8rem 0; }
.values__grid { display: grid; grid-template-columns: repeat(4,1fr); border: 1px solid var(--line-dark); }
.values article { min-height: 470px; padding: 2rem; border-right: 1px solid var(--line-dark); }
.values article:last-child { border-right: 0; }
.values article > span { color: var(--purple); font-family: var(--display); font-size: 2rem; }
.values article .sparkle { display: block; margin: 4rem 0 2rem; font-size: 1.7rem; }
.values article:nth-child(2) .sparkle { color: var(--cyan); }
.values article:nth-child(3) .sparkle { color: var(--lime); }
.values h3 { font-family: var(--display); font-size: 3rem; font-weight: 400; }
.values p { color: #d4ccd3; }
.values small { display: block; margin-top: 3rem; padding-top: 1rem; border-top: 1px solid var(--line-dark); color: var(--muted); }
.about-process { padding: 8rem 0; }
.about-process__grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 1rem; }
.about-process__grid > div { position: relative; min-height: 560px; padding: 1.5rem; display: flex; flex-direction: column; justify-content: flex-end; overflow: hidden; background: var(--ink); color: var(--ivory); }
.about-process__grid .media { position: absolute; inset: 0; }
.about-process__grid > div::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(10,7,11,.96), transparent 70%); }
.about-process__grid span, .about-process__grid h3, .about-process__grid p { position: relative; z-index: 2; }
.about-process__grid span { color: var(--lime); font-family: var(--display); font-size: 2.2rem; }
.about-process__grid h3 { margin: .4rem 0; font-family: var(--display); font-size: 3rem; font-weight: 400; }
.about-process__grid p { max-width: 420px; margin: 0; color: #d4cdd3; }
.culture-note { padding: 8rem 0; }
.culture-note__grid { position: relative; display: grid; grid-template-columns: 1.2fr .7fr .3fr; gap: 4rem; align-items: center; }
.culture-note h2 { font-size: clamp(3.8rem, 5.7vw, 7rem); }
.culture-note p { color: var(--muted); }
.culture-note .orbit { width: 240px; height: 340px; }

/* Resources hub */
.resources-hero__content { max-width: 880px; }
.resource-library { padding: 5rem 0 8rem; }
.resource-toolbar { color: var(--ink); }
.resource-toolbar .filter-button { border-color: var(--line-light); color: var(--ink); }
.resource-toolbar .filter-button:hover, .resource-toolbar .filter-button.is-active { background: var(--ink); border-color: var(--ink); color: var(--ivory); }
.resource-search { display: flex; align-items: center; gap: .6rem; min-width: min(380px, 100%); padding: 0 .9rem; border: 1px solid var(--line-light); }
.resource-search input { width: 100%; height: 42px; border: 0; outline: 0; background: transparent; color: var(--ink); }
.featured-resource { display: grid; grid-template-columns: .85fr 1.15fr; min-height: 520px; margin-bottom: 1rem; border: 1px solid var(--line-light); background: var(--ink); color: var(--ivory); }
.featured-resource__copy { position: relative; padding: clamp(2rem,5vw,5rem); }
.featured-resource__copy .resource-card__type { position: static; display: inline-flex; }
.featured-resource h2 { margin-top: 1.5rem; font-size: clamp(3.3rem, 5vw, 5.8rem); }
.featured-resource p { color: var(--muted); }
.featured-resource__media { position: relative; overflow: hidden; }
.featured-resource__metric { position: absolute; left: 1rem; right: 1rem; bottom: 1rem; display: flex; justify-content: space-between; gap: 1rem; padding: 1rem; background: rgba(22,17,21,.85); backdrop-filter: blur(10px); }
.featured-resource__metric strong { color: var(--lime); }
.featured-resource__metric span { color: var(--muted); font-size: .75rem; }
.downloads { padding: 3rem 0 8rem; }
.downloads__grid { display: grid; grid-template-columns: 1.25fr repeat(3,1fr); gap: 1rem; }
.downloads__intro { padding-right: 2rem; }
.downloads__intro h2 { font-size: clamp(3rem, 4.5vw, 5rem); }
.downloads__intro p { color: var(--muted-dark); }
.download-card { display: flex; flex-direction: column; min-height: 290px; padding: 1.5rem; border: 1px solid var(--line-light); background: var(--ink); color: var(--ivory); transition: transform .3s ease, background .3s ease; }
.download-card:hover { transform: translateY(-5px); background: var(--purple); }
.download-card > span { display: grid; place-items: center; width: 52px; height: 52px; border: 1px solid var(--line-dark); border-radius: 50%; color: var(--lime); }
.download-card strong { margin-top: auto; font-family: var(--display); font-size: 2rem; font-weight: 400; }
.download-card small { color: var(--muted); }
.resource-services__grid { display: grid; grid-template-columns: repeat(4,1fr); }
.resource-services__grid a { min-height: 280px; padding: 1.5rem; border: 1px solid var(--line-light); margin-right: -1px; }
.resource-services__grid a:hover { background: var(--lime); }
.resource-services__grid > a > .icon:first-child { width: 2rem; height: 2rem; color: var(--purple); }
.resource-services__grid h3 { margin-top: 3.5rem; font-family: var(--display); font-size: 2rem; font-weight: 400; }
.resource-services__grid p { color: var(--muted-dark); font-size: .8rem; }

/* Article */
.reading-progress { position: fixed; z-index: 1200; left: 0; top: 0; width: 0; height: 3px; background: var(--lime); }
.article-hero { position: relative; min-height: 760px; padding-top: var(--header-h); overflow: hidden; }
.article-hero__media, .article-hero__shade { position: absolute; inset: 0; }
.article-hero__shade { background: linear-gradient(90deg, rgba(10,7,11,.98), rgba(10,7,11,.82) 55%, rgba(10,7,11,.38)), linear-gradient(0deg, rgba(10,7,11,.75), transparent); }
.article-hero__content { position: relative; z-index: 2; min-height: 680px; display: grid; align-content: space-between; padding-block: 2rem 5rem; }
.article-hero__content > div { max-width: 980px; }
.article-hero h1 { margin: 1rem 0 1.25rem; font-size: clamp(4.4rem, 7vw, 8.2rem); }
.article-hero p { max-width: 760px; color: #d9d2d8; font-size: 1.12rem; }
.article-meta { display: flex; flex-wrap: wrap; gap: 1.2rem; align-items: center; margin-top: 2rem; color: var(--muted); font-size: .72rem; }
.article-meta span, .article-meta button { display: inline-flex; align-items: center; gap: .5rem; }
.article-meta button, .article-share button { border: 0; background: transparent; color: inherit; cursor: pointer; }
.article-layout { padding: 7rem 0; }
.article-layout__grid { display: grid; grid-template-columns: 300px minmax(0,760px); gap: 6rem; justify-content: center; align-items: start; }
.article-sidebar__sticky { position: sticky; top: calc(var(--header-h) + 2rem); padding: 1.4rem; border: 1px solid var(--line-light); }
.article-sidebar__sticky > strong { display: block; margin-bottom: 1rem; color: var(--purple); font-size: .68rem; letter-spacing: .1em; text-transform: uppercase; }
.article-sidebar ol { display: grid; gap: .8rem; padding-left: 1.15rem; color: var(--muted-dark); font-size: .78rem; }
.article-sidebar a:hover { color: var(--purple); }
.article-sidebar__cta { margin-top: 1.5rem; padding-top: 1.5rem; border-top: 1px solid var(--line-light); }
.article-sidebar__cta .sparkle { color: var(--purple); }
.article-sidebar__cta p { font-family: var(--display); font-size: 1.5rem; }
.article-lead { margin-bottom: 4rem; font-family: var(--display); font-size: clamp(1.8rem, 3vw, 3rem); line-height: 1.15; }
.article-section { scroll-margin-top: 120px; margin-bottom: 4rem; }
.article-section h2 { font-size: clamp(2.5rem, 4vw, 4.4rem); }
.article-section p { color: #3c363c; font-size: 1.03rem; line-height: 1.8; }
.article-section ul { display: grid; gap: .75rem; padding: 0; list-style: none; }
.article-section li { display: flex; gap: .8rem; padding-bottom: .75rem; border-bottom: 1px solid var(--line-light); }
.article-section li .sparkle { width: .65rem; margin-top: .35rem; color: var(--purple); }
.article-takeaway { display: flex; gap: 1.2rem; margin: 5rem 0 2rem; padding: 2rem; background: var(--ink); color: var(--ivory); }
.article-takeaway .sparkle { font-size: 1.6rem; }
.article-takeaway strong { color: var(--lime); font-size: .68rem; letter-spacing: .1em; text-transform: uppercase; }
.article-takeaway p { margin: .5rem 0 0; font-family: var(--display); font-size: 1.8rem; line-height: 1.2; }
.article-share { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; padding-top: 1.5rem; border-top: 1px solid var(--line-light); }
.article-share strong { margin-right: auto; }
.article-share button, .article-share a { display: inline-flex; align-items: center; gap: .5rem; padding: .6rem .8rem; border: 1px solid var(--line-light); font-size: .7rem; }

/* Contact */
.contact-hero { min-height: 920px; }
.contact-hero__grid { position: relative; z-index: 2; display: grid; grid-template-columns: .85fr 1.15fr; gap: 5rem; align-items: center; padding-block: 7rem 5rem; }
.contact-hero__copy h1 { font-size: clamp(4.5rem, 7vw, 8.5rem); }
.contact-hero__copy > p { color: #d4ccd3; font-size: 1.05rem; }
.contact-benefits { display: grid; gap: .7rem; margin: 2rem 0; }
.contact-benefits div { display: flex; align-items: center; gap: .7rem; font-size: .8rem; }
.contact-benefits .sparkle { width: .65rem; }
.contact-email { display: inline-flex; align-items: center; gap: .7rem; color: var(--lime); }
.contact-form { padding: clamp(1.5rem, 4vw, 3rem); border: 1px solid var(--line-dark); background: rgba(22,17,21,.82); backdrop-filter: blur(18px); }
.contact-form__header { display: flex; gap: 1rem; align-items: center; margin-bottom: 1.5rem; }
.contact-form__header .sparkle { font-size: 1.5rem; }
.contact-form__header strong, .contact-form__header span { display: block; }
.contact-form__header strong { font-family: var(--display); font-size: 1.8rem; font-weight: 400; }
.contact-form__header span { color: var(--muted); font-size: .7rem; }
.form-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 1rem; }
.form-grid label, .privacy-check { display: grid; gap: .4rem; color: #d1cad0; font-size: .67rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; }
.form-grid__full { grid-column: 1/-1; }
.form-grid input, .form-grid select, .form-grid textarea { width: 100%; border: 1px solid var(--line-dark); border-radius: 0; background: rgba(255,255,255,.04); color: var(--ivory); padding: .85rem; outline: 0; }
.form-grid select option { background: var(--ink); }
.form-grid textarea { resize: vertical; }
.form-grid input:focus, .form-grid select:focus, .form-grid textarea:focus { border-color: var(--lime); }
.privacy-check { grid-template-columns: auto 1fr; align-items: start; margin: 1rem 0; font-weight: 400; letter-spacing: 0; text-transform: none; }
.privacy-check input { margin-top: .25rem; accent-color: var(--lime); }
.privacy-check a { text-decoration: underline; }
.honeypot { position: absolute !important; left: -9999px !important; }
.contact-options { padding: 7rem 0; }
.contact-options__grid { display: grid; grid-template-columns: 1.2fr repeat(3,1fr); }
.contact-options__grid > div, .contact-options__grid > a { min-height: 340px; padding: 2rem; border: 1px solid var(--line-light); margin-right: -1px; }
.contact-options__grid > div h2 { font-size: 3.8rem; }
.contact-options__grid > a { display: flex; flex-direction: column; }
.contact-options__grid > a:hover { background: var(--lime); }
.contact-options__grid > a > .icon:first-child { width: 2.2rem; height: 2.2rem; color: var(--purple); }
.contact-options h3 { margin-top: auto; font-family: var(--display); font-size: 2.2rem; font-weight: 400; }
.contact-options p { color: var(--muted-dark); font-size: .8rem; }
.faq { padding: 4rem 0 8rem; }
.faq__grid { display: grid; grid-template-columns: .6fr 1.4fr; gap: 5rem; }
.faq h2 { font-size: 4.5rem; }
.faq-list details { border-top: 1px solid var(--line-light); }
.faq-list details:last-child { border-bottom: 1px solid var(--line-light); }
.faq-list summary { display: flex; justify-content: space-between; gap: 1rem; align-items: center; padding: 1.5rem 0; cursor: pointer; font-family: var(--display); font-size: 1.7rem; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list details[open] summary .icon { transform: rotate(90deg); }
.faq-list p { max-width: 780px; color: var(--muted-dark); }

/* Legal / 404 */
.legal-hero { padding: calc(var(--header-h) + 6rem) 0 6rem; }
.legal-hero h1 { font-size: clamp(4.5rem,7vw,8rem); }
.legal-hero p { color: var(--muted); }
.legal-content { padding: 6rem 0 9rem; }
.legal-content__grid { display: grid; grid-template-columns: 260px minmax(0,760px); gap: 6rem; justify-content: center; }
.legal-content aside { position: sticky; top: calc(var(--header-h) + 2rem); align-self: start; padding: 1.2rem; border: 1px solid var(--line-light); }
.legal-content aside strong { color: var(--purple); font-size: .68rem; text-transform: uppercase; }
.legal-content aside ol { display: grid; gap: .55rem; padding-left: 1.2rem; color: var(--muted-dark); font-size: .78rem; }
.legal-content article section { scroll-margin-top: 120px; margin-bottom: 3rem; }
.legal-content h2 { font-size: 2.8rem; }
.legal-content p, .legal-content li { color: #3f393f; }
.legal-warning { display: flex; gap: 1rem; margin-bottom: 3rem; padding: 1.2rem; background: var(--ink); color: var(--ivory); }
.legal-warning p { margin: 0; color: var(--ivory); }
.not-found { position: relative; min-height: 100vh; display: grid; align-items: center; padding-top: var(--header-h); overflow: hidden; }
.not-found__ornament { position: absolute; width: 650px; height: 900px; right: -100px; top: 0; opacity: .5; }
.not-found .shell { position: relative; z-index: 2; max-width: 1000px; }
.not-found h1 { font-size: clamp(5rem,9vw,10rem); }
.not-found p { max-width: 560px; color: var(--muted); }

/* Consent */
.consent { position: fixed; z-index: 1500; left: 1rem; right: 1rem; bottom: 1rem; display: flex; justify-content: space-between; gap: 2rem; align-items: center; max-width: 980px; margin-inline: auto; padding: 1rem 1.2rem; border: 1px solid var(--line-dark); background: rgba(22,17,21,.96); backdrop-filter: blur(16px); box-shadow: var(--shadow); }
.consent[hidden] { display: none; }
.consent strong { font-family: var(--display); font-size: 1.3rem; font-weight: 400; }
.consent p { margin: .25rem 0 0; color: var(--muted); font-size: .75rem; }
.consent__actions { display: flex; gap: .6rem; flex-shrink: 0; }
.consent .button { min-height: 42px; padding: .65rem 1rem; }

@media (max-width: 1180px) {
  :root { --header-h: 76px; }
  .desktop-nav, .site-header__cta { display: none; }
  .site-header__inner { grid-template-columns: 1fr auto; }
  .menu-toggle { display: inline-flex; }
  .site-footer__grid { grid-template-columns: 1.5fr repeat(2,1fr); }
  .site-footer__grid > :nth-child(4), .site-footer__grid > :nth-child(5) { margin-top: 1rem; }
  .home-hero__content { grid-template-columns: 1fr; }
  .home-hero__promise { justify-self: start; align-self: auto; }
  .editorial-split__grid, .belief__grid, .results__grid, .case-challenge__grid, .case-results__grid, .service-detail__grid, .manifesto__grid, .contact-hero__grid { grid-template-columns: 1fr; }
  .belief__copy { padding-inline: 6vw; }
  .belief__media { min-height: 700px; }
  .capabilities__grid { grid-template-columns: repeat(2,1fr); }
  .capability-tile:nth-child(3n) { border-right: 1px solid var(--line-light); }
  .capability-tile:nth-child(2n) { border-right: 0; }
  .capability-tile:nth-last-child(-n+3) { border-bottom: 1px solid var(--line-light); }
  .capability-tile:nth-last-child(-n+2) { border-bottom: 0; }
  .project-philosophy__grid { grid-template-columns: repeat(3,1fr); }
  .project-philosophy__grid > div:first-child { grid-column: 1/-1; border-bottom: 1px solid var(--line-light); }
  .system-statement__grid { grid-template-columns: 1fr 1fr; }
  .system-statement__orbit { display: none; }
  .capability-strip > .shell { grid-template-columns: 1fr; }
  .case-hero__content { grid-template-columns: 1fr 300px; }
  .case-info__grid { grid-template-columns: repeat(2,1fr); }
  .case-info__grid > div:nth-child(2) { border-right: 0; }
  .case-info__grid > div:nth-child(-n+2) { border-bottom: 1px solid var(--line-light); }
  .strategy-pillars { grid-template-columns: repeat(2,1fr); }
  .strategy-pillar:nth-child(2) { border-right: 0; }
  .strategy-pillar:nth-child(-n+2) { border-bottom: 1px solid var(--line-light); }
  .timeline { grid-template-columns: repeat(3,1fr); }
  .case-challenge__image { min-height: 520px; }
  .service-detail--reverse .service-detail__visual { order: 0; }
  .service-detail__grid { grid-template-columns: .8fr 1.2fr; }
  .values__grid { grid-template-columns: repeat(2,1fr); }
  .values article:nth-child(2) { border-right: 0; }
  .values article:nth-child(-n+2) { border-bottom: 1px solid var(--line-dark); }
  .downloads__grid { grid-template-columns: repeat(3,1fr); }
  .downloads__intro { grid-column: 1/-1; }
  .resource-services__grid { grid-template-columns: repeat(2,1fr); }
  .article-layout__grid { grid-template-columns: 240px minmax(0,700px); gap: 3rem; }
  .contact-options__grid { grid-template-columns: repeat(3,1fr); }
  .contact-options__grid > div { grid-column: 1/-1; min-height: 0; }
}

@media (max-width: 900px) {
  h1 { font-size: clamp(3.8rem, 15vw, 6.6rem); }
  h2 { font-size: clamp(3rem, 12vw, 5.5rem); }
  .section-heading, .section-heading--wide { grid-template-columns: 1fr; gap: 1.5rem; }
  .section-heading p { margin-bottom: 0; }
  .site-footer__grid { grid-template-columns: repeat(2,1fr); }
  .site-footer__brand { grid-column: 1/-1; }
  .home-hero { min-height: 100svh; }
  .home-hero__shade { background: linear-gradient(0deg, rgba(10,7,11,.98) 0%, rgba(10,7,11,.65) 55%, rgba(10,7,11,.25) 100%); }
  .home-hero__orbit { width: 360px; height: 520px; right: -8rem; top: 7rem; }
  .home-hero__content { min-height: 700px; align-content: end; padding-top: 10rem; }
  .home-hero h1 { font-size: clamp(4rem, 16vw, 7rem); }
  .home-hero__steps { grid-template-columns: 1fr; }
  .home-hero__steps > div { border-right: 0; border-bottom: 1px solid var(--line-dark); }
  .home-hero__steps > div:last-child { border-bottom: 0; }
  .editorial-split { padding: 4rem 0; }
  .editorial-split__grid { min-height: 0; }
  .editorial-split__copy { padding: 2rem; }
  .diagnostic-list { grid-template-columns: 1fr; }
  .editorial-split__media { min-height: 540px; }
  .belief__media { min-height: 650px; }
  .featured-projects, .project-catalog, .capabilities, .resources-preview, .related-resources, .related-projects, .services-projects, .resource-services, .case-challenge, .case-strategy, .case-timeline, .case-gallery, .case-results, .values, .about-process, .manifesto, .integrated-process { padding-block: 5rem; }
  .featured-projects__grid, .project-catalog__grid, .resources-grid, .related-projects__grid { grid-template-columns: 1fr; }
  .project-card, .project-card--large { min-height: 650px; grid-row: auto; }
  .capabilities__grid { grid-template-columns: 1fr; }
  .capability-tile, .capability-tile:nth-child(n) { border-right: 0; border-bottom: 1px solid var(--line-light); }
  .capability-tile:last-child { border-bottom: 0; }
  .team-process { min-height: 1150px; }
  .team-process__shade { background: linear-gradient(0deg, rgba(10,7,11,.98), rgba(10,7,11,.52) 72%, rgba(10,7,11,.2)); }
  .team-process__content { margin: 0 5vw; }
  .process-steps { position: relative; left: auto; bottom: auto; transform: none; grid-template-columns: repeat(2,1fr); margin-top: 28rem; }
  .process-steps > div:nth-child(2) { border-right: 0; }
  .process-steps > div:nth-child(-n+2) { border-bottom: 1px solid var(--line-dark); }
  .results__grid { gap: 2rem; }
  .metric-grid--home { grid-template-columns: repeat(2,1fr); }
  .newsletter-band__grid, .cta-band__content { grid-template-columns: 1fr; gap: 2rem; }
  .newsletter-form > div { flex-direction: column; }
  .cta-band__content { align-items: start; }
  .project-philosophy__grid { grid-template-columns: 1fr; }
  .project-philosophy__grid > div { border-right: 0; border-bottom: 1px solid var(--line-light); }
  .catalog-toolbar, .resource-toolbar { align-items: stretch; flex-direction: column; }
  .project-catalog__grid { grid-template-columns: 1fr; }
  .system-statement__grid { grid-template-columns: 1fr; padding: 2rem; }
  .capability-strip__items { grid-template-columns: 1fr; }
  .case-hero { min-height: 950px; }
  .case-hero__shade { background: linear-gradient(0deg, rgba(10,7,11,.98), rgba(10,7,11,.55) 70%, rgba(10,7,11,.2)); }
  .case-hero__content { grid-template-columns: 1fr; grid-template-rows: auto auto auto; min-height: 870px; align-content: end; }
  .case-hero__metrics { max-width: 100%; }
  .case-hero__metrics .metric-grid { grid-template-columns: repeat(3,1fr); }
  .case-hero__metrics .metric { border-width: 0 1px 0 0; }
  .case-hero__metrics .metric:last-child { border-right: 0; }
  .case-hero__metrics .metric strong { font-size: 2.5rem; }
  .case-info__grid { grid-template-columns: 1fr; }
  .case-info__grid > div { border-right: 0 !important; border-bottom: 1px solid var(--line-light); }
  .case-info__grid > div:last-child { border-bottom: 0; }
  .strategy-pillars { grid-template-columns: 1fr; }
  .strategy-pillar { border-right: 0 !important; border-bottom: 1px solid var(--line-light) !important; }
  .strategy-pillar:last-child { border-bottom: 0 !important; }
  .timeline { grid-template-columns: repeat(2,1fr); }
  .case-gallery__grid { grid-template-columns: 1fr; }
  .case-gallery figure:nth-child(1) { grid-column: auto; min-height: 500px; }
  .metric-grid--case { grid-template-columns: repeat(2,1fr); }
  .testimonial__grid { grid-template-columns: 70px 1fr; }
  .testimonial__grid > div:nth-child(3), .testimonial__brand { grid-column: 2; justify-self: start; }
  .service-intro__grid, .service-detail__grid { grid-template-columns: 1fr; }
  .service-detail__visual { min-height: 480px; }
  .integrated-process__flow { grid-template-columns: 1fr; }
  .integrated-process__flow > div { min-height: 180px; border-right: 0; border-bottom: 1px solid var(--line-dark); }
  .integrated-process__flow > div:last-child { border-bottom: 0; }
  .integrated-process__flow h3 { margin-top: 1.5rem; }
  .manifesto__grid { grid-template-columns: 1fr; gap: 2rem; }
  .culture-note__grid { grid-template-columns: 1fr; }
  .culture-note .orbit { display: none; }
  .featured-resource { grid-template-columns: 1fr; }
  .featured-resource__media { min-height: 430px; }
  .downloads__grid { grid-template-columns: 1fr; }
  .downloads__intro { grid-column: auto; }
  .resource-services__grid { grid-template-columns: 1fr; }
  .article-layout__grid { grid-template-columns: 1fr; }
  .article-sidebar { display: none; }
  .contact-hero { min-height: 1150px; }
  .contact-hero__grid { grid-template-columns: 1fr; gap: 2rem; }
  .contact-options__grid { grid-template-columns: 1fr; }
  .contact-options__grid > div { grid-column: auto; }
  .faq__grid { grid-template-columns: 1fr; gap: 2rem; }
  .legal-content__grid { grid-template-columns: 1fr; }
  .legal-content aside { display: none; }
}

@media (max-width: 620px) {
  :root { --shell: 92vw; }
  .site-header__brand { width: 128px; }
  .mobile-panel__footer { align-items: flex-start; flex-direction: column; }
  .button { width: 100%; }
  .button-row { width: 100%; }
  .site-footer__grid { grid-template-columns: 1fr; }
  .site-footer__bottom { flex-direction: column; }
  .home-hero__content { padding-bottom: 2rem; }
  .home-hero__promise { display: none; }
  .home-hero__steps > div { padding-inline: 0; }
  .belief__copy { padding: 4rem 5vw; }
  .belief__media { min-height: 520px; }
  .project-card, .project-card--large { min-height: 580px; }
  .project-card__content { padding: 1.3rem; }
  .project-card h3 { font-size: 2.8rem; }
  .project-card__metrics { gap: 1rem; }
  .project-card__metrics strong { font-size: 1.8rem; }
  .metric-grid--home, .metric-grid--case { grid-template-columns: 1fr; }
  .newsletter-band__ornament { display: none; }
  .consent { align-items: stretch; flex-direction: column; }
  .consent__actions { display: grid; grid-template-columns: 1fr 1fr; }
  .consent .button { width: auto; }
  .projects-hero, .resources-hero, .simple-hero { min-height: 700px; }
  .project-philosophy__grid > div { padding-inline: 0; }
  .filter-group { flex-wrap: nowrap; overflow-x: auto; padding-bottom: .5rem; }
  .filter-button { flex: 0 0 auto; }
  .case-hero__metrics .metric-grid { grid-template-columns: 1fr; }
  .case-hero__metrics .metric { border-width: 0 0 1px; }
  .timeline { grid-template-columns: 1fr; }
  .timeline::before { display: none; }
  .check-list { grid-template-columns: 1fr; }
  .values__grid { grid-template-columns: 1fr; }
  .values article { border-right: 0 !important; border-bottom: 1px solid var(--line-dark) !important; }
  .values article:last-child { border-bottom: 0 !important; }
  .about-process__grid { grid-template-columns: 1fr; }
  .resource-search { min-width: 100%; }
  .article-hero { min-height: 690px; }
  .article-meta { align-items: flex-start; flex-direction: column; }
  .form-grid { grid-template-columns: 1fr; }
  .form-grid__full { grid-column: auto; }
  .contact-hero { min-height: 1300px; }
  .testimonial__grid { grid-template-columns: 1fr; }
  .testimonial__grid > div:nth-child(3), .testimonial__brand { grid-column: auto; }
}

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

@media print {
  .site-header, .site-footer, .newsletter-band, .cta-band, .consent, .article-sidebar, .article-share, .reading-progress { display: none !important; }
  body { background: #fff; color: #000; }
  .section-dark, .article-hero, .article-takeaway { background: #fff !important; color: #000 !important; }
  .article-hero__media, .article-hero__shade { display: none; }
  .article-hero { min-height: 0; padding: 2rem 0; }
  .article-hero__content { min-height: 0; }
  .article-layout { padding: 1rem 0; }
  .article-layout__grid { display: block; }
  a { text-decoration: none; }
}

@media (max-width: 620px) {
  .projects-hero h1,
  .resources-hero h1,
  .simple-hero h1,
  .case-hero h1,
  .contact-hero__copy h1,
  .article-hero h1 {
    font-size: clamp(3.35rem, 14vw, 5rem);
  }
}
