/*
  BNB Success corporate site, v2.
  The design system is the original Lovable site: its tokens, DM Serif Display +
  Fira Sans, collages, near-black bands, laptop mockups and every animation.
  Rebuilt as one handwritten stylesheet and upgraded (plan: corporate-site-redesign/v2/plan-v2.md).
*/

/* ================================================================ tokens */
:root {
  --background: oklch(95.7% .013 81);
  --foreground: oklch(18.4% .009 60);
  --card: oklch(98.2% .007 81);
  --primary: oklch(44.7% .17 25);
  --primary-foreground: oklch(98.2% .007 81);
  --accent: oklch(44.7% .17 25);
  --accent-foreground: oklch(98.2% .007 81);
  --accent-light: oklch(73% .12 28);
  --gold: oklch(75% .105 86);
  --surface: oklch(92.2% .012 78);
  --muted: oklch(91% .014 81);
  --muted-foreground: oklch(48% .018 60);
  --border: oklch(82% .012 75);
  --input: oklch(82% .012 75);
  --ring: oklch(41% .15 24);

  --font-serif: "DM Serif Display", Georgia, serif;
  --font-sans: "Fira Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  --ease-out: cubic-bezier(.2, .75, .25, 1);

  --shadow-sm: 0 1px 3px 0 rgb(0 0 0 / .1), 0 1px 2px -1px rgb(0 0 0 / .1);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / .1), 0 4px 6px -4px rgb(0 0 0 / .1);
  --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / .1), 0 8px 10px -6px rgb(0 0 0 / .1);
  --shadow-2xl: 0 25px 50px -12px rgb(0 0 0 / .25);

  /* context colours read by components; dark contexts override them */
  --text: var(--foreground);
  --text-2: var(--muted-foreground);
  --text-3: var(--muted-foreground);
  --rule: var(--border);
  --eyebrow: var(--accent);
  --link-hover: var(--accent);
}
.on-dark, .band--dark, .card--dark, .panel--dark, .site-footer {
  --text: var(--background);
  --text-2: color-mix(in oklab, var(--background) 65%, transparent);
  --text-3: color-mix(in oklab, var(--background) 60%, transparent);
  --rule: color-mix(in oklab, var(--background) 20%, transparent);
  --eyebrow: var(--accent-light);
  --link-hover: var(--accent-light);
  color: var(--background);
}

/* ================================================================= reset */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; text-size-adjust: 100%; }
body, h1, h2, h3, h4, p, figure, blockquote, dl, dd, ol, ul { margin: 0; }
ol, ul { padding: 0; list-style: none; }
img, svg, video { display: block; max-width: 100%; }
img { height: auto; }
button { font: inherit; color: inherit; background: none; border: 0; padding: 0; cursor: pointer; }
[hidden] { display: none !important; }
a { color: inherit; text-decoration: none; }

/* ================================================================== base */
body {
  background: var(--background);
  color: var(--foreground);
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.75;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
main { overflow: hidden; }
h1, h2, h3, h4 { font-weight: 400; text-wrap: balance; }
p { text-wrap: pretty; }
em { font-style: italic; font-weight: 400; }
::selection { background: var(--primary); color: var(--primary-foreground); }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }
.on-dark :focus-visible, .band--dark :focus-visible, .card--dark :focus-visible, .panel--dark :focus-visible, .site-footer :focus-visible { outline-color: var(--accent-light); }

/* ================================================================ layout */
.site-container { width: min(100% - 2.5rem, 88rem); margin-inline: auto; }
@media (min-width: 48rem) { .site-container { width: min(100% - 5rem, 88rem); } }

.section { padding-block: 5rem; }
@media (min-width: 48rem) { .section { padding-block: 7rem; } }
.section--tight-top { padding-top: 2rem; }
.section--flush-top { padding-top: 0; }
.band--dark { background: var(--foreground); padding-block: 7rem; }
@media (min-width: 48rem) { .band--dark { padding-block: 9rem; } }
.band--surface { background: var(--surface); border-block: 1px solid var(--border); }

.grid-12 { display: grid; grid-template-columns: minmax(0, 1fr); gap: 2rem 1.5rem; }
@media (min-width: 64rem) {
  .grid-12 { grid-template-columns: repeat(12, minmax(0, 1fr)); }
  .c-1-4 { grid-column: 1 / 5; } .c-1-5 { grid-column: 1 / 6; } .c-1-6 { grid-column: 1 / 7; }
  .c-1-7 { grid-column: 1 / 8; } .c-1-8 { grid-column: 1 / 9; } .c-1-12 { grid-column: 1 / -1; }
  .c-2-6 { grid-column: 2 / 7; } .c-5-9 { grid-column: 5 / 10; } .c-5-10 { grid-column: 5 / 11; }
  .c-5-12 { grid-column: 5 / -1; } .c-6-12 { grid-column: 6 / -1; } .c-7-12 { grid-column: 7 / -1; }
  .c-8-12 { grid-column: 8 / -1; } .c-9-12 { grid-column: 9 / -1; }
  .self-end { align-self: end; } .self-center { align-self: center; } .self-start { align-self: start; }
  .items-end { align-items: end; } .items-center { align-items: center; } .items-start { align-items: start; }
}
/* opening rows only split from 80rem so a 7rem headline never squeezes into half the page at 1024 */
@media (min-width: 64rem) and (max-width: 79.99rem) {
  .grid-12--wide > * { grid-column: 1 / -1; }
}

/* ============================================================ typography */
.hero-title { font-family: var(--font-serif); font-size: 3.75rem; line-height: .92; letter-spacing: -0.01em; }
@media (min-width: 40rem) { .hero-title { font-size: 4.5rem; } }
@media (min-width: 64rem) { .hero-title { font-size: 6rem; } }
@media (min-width: 80rem) { .hero-title { font-size: 7.5rem; } }
.display-title { font-family: var(--font-serif); font-size: clamp(3.5rem, 8vw, 7rem); line-height: .95; letter-spacing: -0.01em; }
.display-title--md { font-size: clamp(3rem, 6vw, 5.5rem); }
.h2-xl { font-family: var(--font-serif); font-size: 3rem; line-height: .95; }
@media (min-width: 40rem) { .h2-xl { font-size: 4.5rem; } }
.h2 { font-family: var(--font-serif); font-size: 3rem; line-height: 1; }
@media (min-width: 48rem) { .h2 { font-size: 3.75rem; } }
.h3 { font-family: var(--font-serif); font-size: 2.25rem; line-height: 1.1; }
.h4 { font-family: var(--font-serif); font-size: 1.875rem; line-height: 1.15; }
.h5 { font-family: var(--font-serif); font-size: 1.5rem; line-height: 1.2; }
.h2-xl, .h2 { max-width: 22ch; }
.hero-title, .display-title, .h2-xl, .h2, .h3, .h4, .h5 { color: var(--text); }

.numeral-xl { display: block; font-family: var(--font-serif); font-size: 3.75rem; line-height: 1; font-weight: 400; font-variant-numeric: lining-nums; color: var(--text); }
.card--dark .numeral-xl, .band--dark .numeral-xl { font-size: 3rem; }
@media (min-width: 48rem) { .card--dark .numeral-xl, .band--dark .numeral-xl { font-size: 4.5rem; } }
.numeral { font-family: var(--font-serif); font-size: 2.25rem; line-height: 1; font-variant-numeric: tabular-nums lining-nums; color: var(--text); }

.lead { font-size: 1.125rem; line-height: 2rem; color: var(--text-2); max-width: 36rem; }
@media (min-width: 48rem) { .lead { font-size: 1.25rem; } }
.body { font-size: 1rem; line-height: 1.75rem; color: var(--text-2); max-width: 36rem; }
.body-lg { font-size: 1.125rem; line-height: 2rem; color: var(--text-2); max-width: 36rem; }
.small { font-size: .75rem; line-height: 1.25rem; color: var(--text-3); }
.text-strong { color: var(--text); }
.serif-inline { font-family: var(--font-serif); font-size: 1.375rem; color: var(--text); white-space: nowrap; }

.eyebrow { display: inline-block; font: 700 .6875rem/1rem var(--font-sans); letter-spacing: .16em; text-transform: uppercase; color: var(--eyebrow); }
.eyebrow--muted { color: var(--text-2); }
.site-footer .eyebrow--muted { color: color-mix(in oklab, var(--background) 45%, transparent); }

.indent { margin-left: 0; }
@media (min-width: 48rem) { .indent { margin-left: 6rem; } }
.stack-sm > * + * { margin-top: 1rem; }
.stack > * + * { margin-top: 1.75rem; }
.stack-lg > * + * { margin-top: 2.5rem; }

/* ================================================================ buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  height: 3.5rem; padding-inline: 1.75rem; border-radius: 0; border: 1px solid transparent;
  font: 500 .875rem/1 var(--font-sans); letter-spacing: .08em; text-transform: uppercase; white-space: nowrap;
  transition: color .15s ease, background-color .15s ease, border-color .15s ease;
}
.btn svg { width: 1rem; height: 1rem; flex: none; transition: transform .25s var(--ease-out); }
.btn:hover svg { transform: translate(2px, -2px); }
.btn--primary { background: var(--primary); color: var(--primary-foreground); box-shadow: var(--shadow-sm); }
.btn--primary:hover { background: color-mix(in oklab, var(--primary) 90%, transparent); }
.btn--outline { background: var(--background); color: var(--foreground); border-color: var(--input); box-shadow: 0 1px 2px 0 rgb(0 0 0 / .05); }
.btn--outline:hover { background: var(--accent); color: var(--accent-foreground); border-color: var(--accent); }
.band--dark .btn--outline, .card--dark .btn--outline, .panel--dark .btn--outline { background: transparent; color: var(--background); border-color: color-mix(in oklab, var(--background) 20%, transparent); box-shadow: none; }
.band--dark .btn--outline:hover, .card--dark .btn--outline:hover, .panel--dark .btn--outline:hover { background: var(--background); color: var(--foreground); border-color: var(--background); }
.btn--sm { height: 2.25rem; padding-inline: 1rem; text-transform: none; letter-spacing: 0; font-weight: 500; }
.btn-row { display: flex; flex-wrap: wrap; gap: 1rem; }
@media (max-width: 39.99rem) { .btn-row--stack { flex-direction: column; } .btn-row--stack .btn { width: 100%; } }

.textlink {
  display: inline-flex; align-items: center; gap: .75rem;
  font: 600 .75rem/1 var(--font-sans); letter-spacing: .12em; text-transform: uppercase; color: var(--text);
  text-decoration: underline; text-underline-offset: 8px; text-decoration-thickness: 1px; text-decoration-color: var(--border);
  transition: color .15s ease;
}
.band--dark .textlink, .card--dark .textlink, .panel--dark .textlink { text-decoration-color: color-mix(in oklab, var(--background) 25%, transparent); }
.textlink svg { width: 1rem; height: 1rem; flex: none; transition: transform .25s var(--ease-out); }
.textlink:hover { color: var(--link-hover); }
.textlink:hover svg { transform: translate(2px, -2px); }
.textlink--lg { font-size: .875rem; text-decoration: none; }
.textlink--lg:hover svg { transform: translateX(3px); }
.inline-link { text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: .2em; text-decoration-color: color-mix(in oklab, currentColor 35%, transparent); transition: color .15s, text-decoration-color .15s; }
.inline-link:hover { color: var(--link-hover); text-decoration-color: currentColor; }

/* ================================================================= header */
.skip-link { position: fixed; left: 1rem; top: 1rem; z-index: 1000; background: var(--foreground); color: var(--background); padding: .75rem 1rem; font-weight: 600; transform: translateY(-180%); transition: transform .16s ease; }
.skip-link:focus { transform: none; }

.site-header {
  position: sticky; top: 0; z-index: 50;
  background: color-mix(in oklab, var(--background) 90%, transparent);
  -webkit-backdrop-filter: blur(24px); backdrop-filter: blur(24px);
  border-bottom: 1px solid color-mix(in oklab, var(--border) 60%, transparent);
  transition: box-shadow .3s ease;
}
.site-header.is-scrolled { box-shadow: 0 12px 30px -24px rgb(40 24 16 / .45); }
.site-header__bar { display: flex; align-items: center; justify-content: space-between; height: 4.5rem; gap: 1.5rem; }
.site-header__logo { display: flex; align-items: center; height: 3.5rem; }
.site-header__logo img { height: 3rem; width: auto; }
.nav { display: none; }
@media (min-width: 64rem) { .nav { display: flex; align-items: center; gap: 1.75rem; } }
.nav-link { display: inline-flex; align-items: center; gap: .375rem; font: 600 .75rem/1 var(--font-sans); letter-spacing: .04em; padding-block: 1.6rem; transition: color .18s ease; }
.nav-link svg { width: .875rem; height: .875rem; transition: transform .2s ease; }
.nav-link:hover, .nav-link[aria-current="page"] { color: var(--accent); }
.nav-item { position: relative; }
.nav-item:hover > .nav-link svg, .nav-item:focus-within > .nav-link svg { transform: rotate(180deg); }
.dropdown { position: absolute; left: -1rem; top: 100%; z-index: 50; padding-top: .25rem; opacity: 0; visibility: hidden; transform: translateY(4px); transition: opacity .2s ease, transform .2s ease, visibility .2s; }
.nav-item:hover .dropdown, .nav-item:focus-within .dropdown, .header-apply:hover .dropdown, .header-apply:focus-within .dropdown { opacity: 1; visibility: visible; transform: none; }
.dropdown__panel { min-width: 17rem; background: var(--background); border: 1px solid var(--border); box-shadow: var(--shadow-xl); padding: .5rem; }
.dropdown a { display: block; padding: .625rem 1rem; transition: background-color .15s ease, color .15s ease; }
.dropdown a:hover { background: var(--surface); }
.dropdown__title { display: block; font-size: .875rem; font-weight: 600; color: var(--foreground); }
.dropdown a:hover .dropdown__title { color: var(--accent); }
.dropdown__desc { display: block; margin-top: .125rem; font-size: .75rem; line-height: 1.35; color: var(--muted-foreground); }
.dropdown--right { left: auto; right: 0; }
.site-header__actions { display: flex; align-items: center; gap: .5rem; }
.header-apply { position: relative; display: none; }
@media (min-width: 40rem) { .header-apply { display: block; } }
.header-apply .btn svg { width: .875rem; height: .875rem; }
.header-apply:hover .btn svg, .header-apply:focus-within .btn svg { transform: rotate(180deg); }
.menu-toggle { display: inline-grid; place-items: center; width: 2.25rem; height: 2.25rem; border-radius: calc(var(--radius, .25rem) + 2px); transition: background-color .15s; }
.menu-toggle:hover { background: var(--surface); }
.menu-toggle svg { width: 1.35rem; height: 1.35rem; }
@media (min-width: 64rem) { .menu-toggle { display: none; } }

.mobile-menu { position: fixed; inset: 0; z-index: 100; background: color-mix(in oklab, var(--foreground) 38%, transparent); -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px); }
.mobile-menu__panel { margin-left: auto; display: flex; flex-direction: column; min-height: 100%; width: min(88vw, 25rem); background: var(--background); padding: 1.25rem; box-shadow: -18px 0 60px rgb(28 24 20 / .22); animation: panel-in .35s var(--ease-out) both; }
@keyframes panel-in { from { transform: translateX(24px); opacity: 0; } to { transform: none; opacity: 1; } }
.mobile-menu__top { display: flex; align-items: center; justify-content: space-between; padding-bottom: 1.25rem; border-bottom: 1px solid var(--border); }
.mobile-menu__top img { height: 3.25rem; width: auto; }
.mobile-menu__close { display: grid; place-items: center; width: 2.75rem; height: 2.75rem; border: 1px solid var(--border); font-size: 1.8rem; line-height: 1; }
.mobile-menu__nav { display: grid; margin-top: 2rem; }
.mobile-menu__nav a { display: flex; align-items: center; min-height: 3.5rem; border-bottom: 1px solid var(--border); font-family: var(--font-serif); font-size: 1.65rem; }
.mobile-menu__nav a[aria-current="page"] { color: var(--accent); }
.mobile-menu__actions { display: grid; gap: .75rem; margin-top: auto; padding-top: 2rem; }
.mobile-menu__actions .btn { width: 100%; }
body.nav-open { overflow: hidden; }

/* ============================================================== photos */
.photo { position: relative; margin: 0; overflow: hidden; background: var(--muted); }
.photo img { width: 100%; height: 100%; object-fit: cover; }
.ar-4x5 { aspect-ratio: 4 / 5; } .ar-3x4 { aspect-ratio: 3 / 4; } .ar-3x2 { aspect-ratio: 3 / 2; } .ar-4x3 { aspect-ratio: 4 / 3; }
.ar-7x5 { aspect-ratio: 7 / 5; } .ar-8x5 { aspect-ratio: 8 / 5; } .ar-16x9 { aspect-ratio: 16 / 9; } .ar-21x9 { aspect-ratio: 21 / 9; }
.ar-1x1 { aspect-ratio: 1 / 1; } .ar-2x3 { aspect-ratio: 2 / 3; }
.photo--shadow { box-shadow: var(--shadow-2xl); }
.photo--frame { border: 8px solid var(--background); box-shadow: var(--shadow-xl); }
.flow-image { transition: filter .7s, transform .9s var(--ease-out); }
.flow-image:hover, .photo:hover > .flow-image { transform: scale(1.025); }
.caption { margin-top: .75rem; font-size: .75rem; line-height: 1.25rem; color: var(--text-2); }

/* ============================================================== cards */
.card { background: var(--card); box-shadow: var(--shadow-sm); }
.card--stat { background: var(--card); padding: 1.75rem; box-shadow: var(--shadow-2xl); }
.card--stat .eyebrow, .card--dark .eyebrow--label { margin-top: .5rem; }
.card--stat p, .card--dark .card__note { margin-top: 1rem; font-size: .75rem; line-height: 1.25rem; }
.card--stat p { color: var(--muted-foreground); }
.card--dark { background: var(--foreground); padding: 1.75rem; box-shadow: var(--shadow-2xl); }
@media (min-width: 48rem) { .card--dark { padding: 2.5rem; } }
.card--dark .card__note { color: color-mix(in oklab, var(--background) 60%, transparent); }

/* ============================================================== ledger */
.ledger__head { display: flex; justify-content: space-between; gap: 1rem; padding-bottom: 1rem; }
.ledger__row { display: grid; grid-template-columns: minmax(0, 1fr) auto; align-items: baseline; gap: 1.5rem; padding-block: 1rem; border-top: 1px solid var(--rule); }
.ledger__row:last-of-type { border-bottom: 1px solid var(--rule); }
.ledger__label { font-size: 1rem; line-height: 1.5rem; color: var(--text-2); }
.ledger__row .numeral { text-align: right; white-space: nowrap; }
.band--dark .ledger .numeral { font-size: 2.25rem; }
@media (min-width: 64rem) { .band--dark .ledger .numeral { font-size: 3rem; } }
.ledger__source { margin-top: 1rem; font-size: .75rem; line-height: 1.25rem; color: var(--text-2); max-width: 44rem; }

/* ============================================================ mini stats */
.mini-stats { display: grid; gap: 1.5rem; }
@media (min-width: 40rem) { .mini-stats--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); } .mini-stats--4 { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 64rem) { .mini-stats--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); } }
.mini-stat { border-top: 1px solid var(--rule); padding-top: 1.25rem; }
.mini-stat .eyebrow { margin-top: .75rem; display: block; }
.mini-stat__label { display: block; margin-top: .6rem; font-size: .8125rem; line-height: 1.3rem; color: var(--text-2); }
.mini-stats--compact .numeral { font-size: 2rem; }
.mini-stats--compact .eyebrow { font-size: .625rem; letter-spacing: .14em; }

/* ======================================================== press strip */
.press-strip { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1.25rem 2rem; border-block: 1px solid var(--border); padding-block: 2rem; }
.press-strip__names { display: flex; flex-wrap: wrap; align-items: baseline; gap: .75rem 1.25rem; }
.press-strip__names .eyebrow { margin-right: .75rem; }
.press-strip__name { font-family: var(--font-serif); font-size: 1.75rem; line-height: 1.1; color: var(--foreground); }
.press-strip__dot { color: var(--border); font-size: 1.5rem; line-height: 1; }
@media (max-width: 47.99rem) { .press-strip__names { flex-direction: column; align-items: flex-start; } .press-strip__dot { display: none; } }

/* ======================================================== numeral square */
.numeral-square { display: inline-grid; place-items: center; flex: none; width: 3rem; height: 3rem; border: 1px solid var(--rule); font-family: var(--font-serif); font-size: 1.25rem; line-height: 1; color: var(--eyebrow); }
.lane { display: flex; align-items: center; gap: 1rem; }

/* ======================================================== index rows */
.index > li { border-top: 1px solid var(--rule); padding-block: 1.5rem; }
.index > li:last-child { border-bottom: 1px solid var(--rule); }
.index__title { font-family: var(--font-serif); font-size: 1.5rem; line-height: 1.2; color: var(--text); }
.index__text { margin-top: .5rem; font-size: 1rem; line-height: 1.75rem; color: var(--text-2); max-width: 40rem; }
.index--cols { display: grid; column-gap: 3rem; }
@media (min-width: 64rem) {
  .index--cols { grid-template-columns: 1fr 1fr; }
  .index--cols > li:nth-last-child(2):nth-child(odd) { border-bottom: 1px solid var(--rule); }
}
.index--link a { display: flex; align-items: baseline; justify-content: space-between; gap: 1.5rem; transition: color .15s ease; }
.index--link a:hover .index__title { color: var(--accent); }
.index--link .small { white-space: nowrap; font-size: .875rem; }
.index--compact > li { padding-block: 1rem; }
.index--compact .index__title { font-family: var(--font-sans); font-size: 1rem; font-weight: 600; line-height: 1.5rem; }
.index--compact .index__text { margin-top: .125rem; font-size: .9375rem; line-height: 1.5rem; }
@media (min-width: 40rem) {
  .index--split > li { display: grid; grid-template-columns: minmax(0, 2fr) minmax(0, 3fr); gap: 1.5rem; align-items: baseline; }
  .index--split .index__text { margin-top: 0; }
}

/* ======================================================== checklists and steps */
.checklist > li { position: relative; padding-left: 1.75rem; font-size: .9375rem; line-height: 1.5rem; }
.checklist > li + li { margin-top: .875rem; }
.checklist > li::before { content: ""; position: absolute; left: 2px; top: .4em; width: .8rem; height: .45rem; border-left: 1.5px solid var(--eyebrow); border-bottom: 1.5px solid var(--eyebrow); transform: rotate(-45deg); }
.steps > li { display: grid; grid-template-columns: 2.5rem 5.5rem minmax(0, 1fr); gap: .5rem; align-items: baseline; border-top: 1px solid var(--rule); padding-block: 1rem; }
.steps > li:last-child { border-bottom: 1px solid var(--rule); }
.steps__n { font-family: var(--font-serif); font-size: 1.25rem; color: var(--eyebrow); }
.steps__name { font-weight: 600; font-size: .9375rem; color: var(--text); }
.steps__text { font-size: .9375rem; line-height: 1.5rem; color: var(--text-2); }
@media (max-width: 29.99rem) { .steps > li { grid-template-columns: 2.25rem minmax(0, 1fr); } .steps__text { grid-column: 2; } }
.inclusions { display: flex; flex-wrap: wrap; gap: .25rem .9rem; margin-top: 1.5rem; }
.inclusions li { font: 700 .6875rem/1.25rem var(--font-sans); letter-spacing: .16em; text-transform: uppercase; color: var(--text-2); }
.inclusions li + li::before { content: "\00B7"; margin-right: .9rem; color: var(--rule); }

/* ============================================================== laptop */
.laptop-wrap { position: relative; }
.laptop { position: relative; padding-bottom: 5.5%; margin: 0; }
.laptop__screen { position: relative; overflow: hidden; border-radius: 1.25rem 1.25rem 0 0; border: 7px solid var(--foreground); background: var(--foreground); box-shadow: var(--shadow-2xl); }
@media (min-width: 40rem) { .laptop__screen { border-width: 10px; } }
.laptop__camera { position: absolute; left: 50%; top: 3px; z-index: 10; width: 6px; height: 6px; border-radius: 999px; background: color-mix(in oklab, var(--background) 30%, transparent); transform: translateX(-50%); }
.laptop__img { display: block; width: 100%; aspect-ratio: 16 / 9; object-fit: cover; object-position: top; background: #fff; }
.laptop__base { position: absolute; left: -3%; right: -3%; bottom: 2.2%; height: 4.5%; border-radius: 0 0 55% 55%; background: var(--muted); box-shadow: var(--shadow-lg); }
.laptop__notch { position: absolute; bottom: 3.7%; left: 50%; z-index: 10; width: 14%; height: 1.4%; border-radius: 0 0 9999px 9999px; background: var(--border); transform: translateX(-50%); }
.badge--gold { position: absolute; bottom: -1.25rem; right: 1rem; background: var(--gold); color: var(--foreground); padding: .75rem 1.25rem; font: 600 .75rem/1rem var(--font-sans); letter-spacing: .12em; text-transform: uppercase; }
@media (min-width: 48rem) { .badge--gold { right: 2.5rem; } }

.shot { margin: 0; }
.shot__frame { border: 1px solid var(--border); background: var(--card); box-shadow: var(--shadow-sm); overflow: hidden; }
.shot__frame img { display: block; width: 100%; height: 100%; object-fit: cover; object-position: 50% 0; }

/* ============================================================== stories and cases */
.story { background: var(--card); box-shadow: var(--shadow-sm); padding: 2rem; display: flex; flex-direction: column; }
.story__meta { margin-top: .5rem; font-size: .8125rem; line-height: 1.25rem; color: var(--muted-foreground); }
.story__result { margin-top: 1.5rem; font-family: var(--font-serif); font-size: 1.5rem; line-height: 1.2; color: var(--foreground); }
.story__body { margin-top: .75rem; font-size: 1rem; line-height: 1.75rem; color: var(--muted-foreground); }
.story__data { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1rem; margin-top: 1.5rem; padding-top: 1rem; border-top: 1px solid var(--border); }
.story__data dt { font: 700 .625rem/1rem var(--font-sans); letter-spacing: .14em; text-transform: uppercase; color: var(--accent); }
.story__data dd { margin-top: .25rem; font-size: .8125rem; line-height: 1.25rem; color: var(--foreground); }
.story .textlink { margin-top: auto; padding-top: 1.75rem; align-self: flex-start; }
.stories { display: grid; gap: 2rem 1.5rem; }
@media (min-width: 64rem) { .stories { grid-template-columns: 1fr 1fr; } }

.case-row { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; background: var(--card); padding: 1.75rem 1.5rem; box-shadow: var(--shadow-sm); transition: transform .35s var(--ease-out), box-shadow .35s var(--ease-out); }
@media (min-width: 48rem) { .case-row { padding-inline: 2rem; } }
.case-row:hover { transform: translateY(-4px); box-shadow: var(--shadow-xl); }
.case-row svg { width: 1.5rem; height: 1.5rem; flex: none; transition: transform .35s var(--ease-out), color .2s; }
.case-row:hover svg { transform: rotate(45deg); color: var(--accent); }
.case-row .small { margin-top: .35rem; font-size: .875rem; color: var(--muted-foreground); }
.case-rows { display: grid; gap: .75rem; }

/* ============================================================== timeline */
.timeline > li { display: grid; gap: .5rem 1.5rem; border-top: 1px solid var(--rule); padding-block: 1.75rem; }
.timeline > li:last-child { border-bottom: 1px solid var(--rule); }
@media (min-width: 48rem) { .timeline > li { grid-template-columns: 10rem minmax(0, 1fr); } }
.timeline__title { font-family: var(--font-serif); font-size: 1.75rem; line-height: 1.15; color: var(--text); }
.timeline__text { margin-top: .5rem; font-size: 1rem; line-height: 1.75rem; color: var(--text-2); max-width: 40rem; }

/* ============================================================== FAQ */
.faq { max-width: 48rem; }
.faq__item { border-top: 1px solid var(--rule); }
.faq__item:last-child { border-bottom: 1px solid var(--rule); }
.faq__item summary { list-style: none; cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; padding-block: 1.5rem; font-family: var(--font-serif); font-size: 1.5rem; line-height: 1.2; color: var(--text); transition: color .2s ease; }
@media (min-width: 48rem) { .faq__item summary { font-size: 1.875rem; } }
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary:hover { color: var(--accent); }
.faq__item summary svg { width: 1.25rem; height: 1.25rem; flex: none; transition: transform .3s var(--ease-out); }
.faq__item[open] summary svg { transform: rotate(45deg); }
.faq__answer { padding-bottom: 1.75rem; font-size: 1.125rem; line-height: 2rem; color: var(--text-2); max-width: 44rem; }

/* ============================================================== chips + video tiles */
.chips { display: flex; flex-wrap: wrap; gap: .5rem; }
.chip { font: 700 .6875rem/1rem var(--font-sans); letter-spacing: .16em; text-transform: uppercase; padding: .75rem 1rem; border: 1px solid var(--border); background: transparent; color: var(--foreground); transition: background-color .15s, color .15s, border-color .15s; }
.chip:hover { border-color: var(--foreground); }
.chip[aria-pressed="true"] { background: var(--foreground); color: var(--background); border-color: var(--foreground); }
.chip__count { opacity: .55; margin-left: .35rem; }
.chips-bar { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1rem 2rem; }

.video-tile { margin: 0; }
.video-tile__btn { position: relative; display: block; width: 100%; overflow: hidden; aspect-ratio: 16 / 9; background: var(--foreground); border: 1px solid var(--border); }
.video-tile__btn img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease-out); }
.video-tile__btn:hover img { transform: scale(1.04); }
.play { position: absolute; left: 50%; top: 50%; display: grid; place-items: center; width: 3.5rem; height: 3.5rem; border-radius: 999px; background: var(--primary); color: #fff; box-shadow: var(--shadow-lg); transform: translate(-50%, -50%); transition: transform .3s var(--ease-out); }
.play svg { width: 1.25rem; height: 1.25rem; margin-left: 2px; }
.video-tile__btn:hover .play { transform: translate(-50%, -50%) scale(1.08); }
.video-tile figcaption { margin-top: 1rem; }
.video-tile__who { display: block; font-size: .875rem; font-weight: 600; line-height: 1.35rem; color: var(--foreground); }
.video-tile__what { display: block; margin-top: .15rem; font-size: .875rem; line-height: 1.35rem; color: var(--muted-foreground); }
.video-tile--featured .video-tile__who { font-family: var(--font-serif); font-weight: 400; font-size: 1.875rem; line-height: 1.15; }
.video-tile--featured .video-tile__what { font-size: 1rem; }
.video-tile--featured .play { width: 4.5rem; height: 4.5rem; }
.video-grid { display: grid; gap: 3rem 2rem; }
@media (min-width: 48rem) { .video-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 64rem) {
  .video-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .video-grid:not(.is-filtered) > .video-tile:nth-child(3n + 2) { margin-top: 2.5rem; }
}
.featured-videos { display: grid; gap: 2.5rem 2rem; }
@media (min-width: 64rem) { .featured-videos { grid-template-columns: 7fr 5fr; align-items: start; } .featured-videos__side { display: grid; gap: 2rem; padding-top: 3rem; } }

/* feature video (self-hosted) */
.feature-video { position: relative; background: var(--foreground); overflow: hidden; }
.feature-video video { display: block; width: 100%; aspect-ratio: 16 / 9; object-fit: cover; }
.feature-video__play { position: absolute; inset: 0; display: grid; place-items: center; background: color-mix(in oklab, var(--foreground) 20%, transparent); transition: background-color .3s; }
.feature-video__play:hover { background: color-mix(in oklab, var(--foreground) 10%, transparent); }
.feature-video__play span { display: grid; place-items: center; width: 4.5rem; height: 4.5rem; border-radius: 999px; background: var(--background); color: var(--primary); box-shadow: var(--shadow-2xl); transition: transform .3s var(--ease-out); }
.feature-video__play:hover span { transform: scale(1.08); }
.feature-video__play svg { width: 1.6rem; height: 1.6rem; margin-left: 3px; }

.video-modal { width: min(92vw, 70rem); padding: 0; border: 0; background: #000; color: #fff; box-shadow: 0 30px 100px rgb(0 0 0 / .55); overflow: visible; }
.video-modal::backdrop { background: rgb(0 0 0 / .78); -webkit-backdrop-filter: blur(5px); backdrop-filter: blur(5px); }
.video-modal__frame { aspect-ratio: 16 / 9; width: 100%; }
.video-modal__frame iframe { display: block; width: 100%; height: 100%; border: 0; }
.video-modal__close { position: absolute; top: -3.25rem; right: 0; display: grid; place-items: center; width: 2.75rem; height: 2.75rem; border-radius: 999px; background: rgb(255 255 255 / .92); color: #171310; font-size: 1.6rem; }

/* ============================================================== footer */
.site-footer { background: var(--foreground); padding: 5rem 0 2rem; }
.site-footer__top { display: grid; gap: 3rem; padding-bottom: 3rem; border-bottom: 1px solid color-mix(in oklab, var(--background) 15%, transparent); }
.site-footer__cols { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 2.5rem 1.5rem; }
@media (min-width: 64rem) {
  .site-footer__top { grid-template-columns: repeat(12, minmax(0, 1fr)); gap: 1.5rem; }
  .site-footer__brand { grid-column: 1 / 5; }
  .site-footer__cols { grid-column: 6 / -1; grid-template-columns: 1fr 1fr 1.6fr; }
}
.site-footer__logo img { height: 6rem; width: auto; }
.site-footer__tagline { margin-top: 1.5rem; max-width: 22rem; font-size: .875rem; line-height: 1.75rem; color: color-mix(in oklab, var(--background) 65%, transparent); }
.site-footer__brand .textlink { margin-top: 1.75rem; }
.site-footer ul { margin-top: 1.5rem; display: grid; gap: .75rem; }
.site-footer ul a { font-size: .875rem; color: color-mix(in oklab, var(--background) 65%, transparent); transition: color .15s ease; }
.site-footer ul a:hover { color: var(--background); }
.site-footer__follow { grid-column: 1 / -1; }
@media (min-width: 64rem) { .site-footer__follow { grid-column: auto; } }
.socials { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 1rem; }
.socials a { display: grid; place-items: center; width: 2.5rem; height: 2.5rem; border: 1px solid color-mix(in oklab, var(--background) 20%, transparent); color: color-mix(in oklab, var(--background) 80%, transparent); transition: border-color .2s, color .2s; }
.socials a:hover { border-color: var(--accent-light); color: var(--accent-light); }
.socials svg { width: 1rem; height: 1rem; }
.site-footer__social + .site-footer__social { margin-top: 1.75rem; }
.site-footer__disclaimer { margin-block: 2rem; max-width: 56rem; font-size: .75rem; line-height: 1.25rem; color: color-mix(in oklab, var(--background) 55%, transparent); }
.site-footer__legal { display: flex; flex-wrap: wrap; justify-content: space-between; gap: .75rem 2rem; padding-top: 1.75rem; border-top: 1px solid color-mix(in oklab, var(--background) 15%, transparent); font: 400 .6875rem/1.25rem var(--font-sans); letter-spacing: .16em; text-transform: uppercase; color: color-mix(in oklab, var(--background) 45%, transparent); }
.site-footer__legal nav { display: flex; flex-wrap: wrap; gap: 1.25rem; }
.site-footer__legal a:hover { color: var(--background); }

/* =============================================================== motion */
.scroll-reveal { opacity: 1; transform: none; }
.hero-word, .word-reveal-word { display: inline-block; }
@media (prefers-reduced-motion: no-preference) {
  .js .scroll-reveal {
    opacity: 0;
    transition: opacity .8s ease var(--reveal-delay, 0ms), transform .95s var(--ease-out) var(--reveal-delay, 0ms), filter .9s ease var(--reveal-delay, 0ms);
    will-change: opacity, transform;
  }
  .js .scroll-reveal-rise { transform: translateY(48px); }
  .js .scroll-reveal-drift-left { transform: translate(54px, 28px) rotate(1.5deg); }
  .js .scroll-reveal-drift-right { transform: translate(-54px, 28px) rotate(-1.5deg); }
  .js .scroll-reveal-scale { transform: scale(.94) translateY(30px); }
  .js .scroll-reveal-blur { filter: blur(10px); transform: translateY(26px); }
  .js .scroll-reveal-tilt { transform-origin: top; transform: perspective(1200px) rotateX(9deg) translateY(44px); }
  /* Nothing in the reveal clips: display serif descenders (g, y, p) sit below the
     line box at these line heights, and any clip-path shaved them off. */
  .js .scroll-reveal[data-visible="true"] { opacity: 1; transform: none; filter: none; }

  .hero-word { animation: word-rise .9s var(--ease-out) both; animation-delay: var(--wd, 0ms); }

  .js .word-reveal .word-reveal-word { opacity: 0; transform: translateY(.6em) rotate(1.5deg); transition: opacity .7s var(--ease-out) var(--wd, 0ms), transform .9s var(--ease-out) var(--wd, 0ms); }
  .js .word-reveal[data-visible="true"] .word-reveal-word { opacity: 1; transform: none; }

  .slow-drift { animation: slow-drift 9s ease-in-out infinite alternate; }
}
@keyframes word-rise { from { opacity: 0; transform: translateY(.65em); } to { opacity: 1; transform: translateY(0); } }
@keyframes slow-drift { from { transform: translateY(-5px) rotate(-2deg); } to { transform: translateY(12px) rotate(-.5deg); } }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; scroll-behavior: auto !important; }
}

/* ============================================================ utilities */
.visually-hidden { position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }
.relative { position: relative; }
.mt-2 { margin-top: .5rem; } .mt-3 { margin-top: .75rem; } .mt-4 { margin-top: 1rem; } .mt-5 { margin-top: 1.25rem; } .mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; } .mt-10 { margin-top: 2.5rem; } .mt-12 { margin-top: 3rem; } .mt-16 { margin-top: 4rem; } .mt-20 { margin-top: 5rem; }
.max-48 { max-width: 48rem; } .max-40 { max-width: 40rem; }

/* ========================================================== page: home */
.hero { position: relative; padding-block: 3.5rem 7rem; }
@media (min-width: 48rem) { .hero { padding-block: 6rem 10rem; } }
.hero__watermark { position: absolute; left: -6rem; top: 1.5rem; width: 46rem; max-width: none; opacity: .055; pointer-events: none; user-select: none; }
@media (min-width: 48rem) { .hero__watermark { left: -4rem; top: 0; width: 62rem; } }
.hero__grid { position: relative; align-items: start; }
.hero__copy { position: relative; z-index: 20; }
.hero__lead { margin-top: 2.5rem; }
.hero__ctas { margin-top: 2.5rem; }
.hero__media { position: relative; z-index: 10; width: 82%; max-width: 28rem; margin: 2rem auto 0; }
.hero__drift { display: none; }
.hero__card { position: relative; z-index: 20; width: 85%; max-width: 20rem; margin: -3.5rem auto 0; }
@media (min-width: 48rem) {
  .hero__drift { display: block; position: absolute; right: -2.5rem; top: -7.5rem; width: 9rem; z-index: 15; }
}
@media (min-width: 64rem) {
  .hero__media { width: auto; max-width: none; margin: 3.5rem 0 0; }
  .hero__card { position: absolute; left: -5rem; bottom: -4rem; width: 16rem; margin: 0; }
}
.hero__scroll { position: absolute; bottom: 2.25rem; left: 50%; display: none; color: var(--muted-foreground); transform: translateX(-50%); transition: color .2s; }
.hero__scroll svg { width: 1.25rem; height: 1.25rem; }
.hero__scroll:hover { color: var(--accent); }
@media (min-width: 48rem) { .hero__scroll { display: block; } }

/* community collage */
.collage { display: grid; gap: 1.5rem; margin-top: 4rem; }
.collage__b { width: 80%; margin-left: auto; }
.collage__card { width: 70%; margin-top: -2.5rem; position: relative; z-index: 20; }
.collage__c { width: 85%; margin-left: auto; }
@media (min-width: 64rem) {
  .collage { display: block; position: relative; min-height: 760px; margin-top: 5rem; }
  .collage > * { position: absolute; margin: 0; }
  .collage__a { left: 0; top: 0; width: 43%; }
  .collage__b { right: 5%; top: 5rem; width: 31%; z-index: 10; }
  .collage__card { left: 35%; top: 38%; width: 18rem; }
  .collage__c { right: 18%; bottom: 0; width: 38%; }
}
@media (min-width: 80rem) { .collage { min-height: 900px; } }

/* programs band rows */
.program-row { border-top: 1px solid var(--rule); padding-top: 2.25rem; display: grid; gap: 1.5rem; }
.program-row + .program-row { margin-top: 5rem; }
@media (min-width: 80rem) { .program-row { grid-template-columns: 14rem minmax(0, 1fr); } .program-row .lane { align-self: start; margin-top: 1.4rem; } }
.program-row__title { font-family: var(--font-serif); font-size: 3.75rem; line-height: 1; color: var(--background); }
@media (min-width: 40rem) { .program-row__title { font-size: 4.5rem; } }
@media (min-width: 80rem) { .program-row__title { font-size: 6rem; } }
.program-row .body-lg { margin-top: 1.75rem; max-width: 36rem; }
.program-row .textlink { margin-top: 2.25rem; }
.program-note { margin-top: 4rem; padding-top: 2rem; border-top: 1px solid var(--rule); display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 1.5rem; }

/* results with midline */
.results { position: relative; }
.results__rule { position: absolute; inset-inline: 0; top: 50%; height: 1px; background: var(--border); display: none; }
@media (min-width: 64rem) { .results__rule { display: block; } }
.results > .grid-12 { position: relative; z-index: 1; }
.results .story { position: relative; }
.results__left { position: relative; background: var(--background); }
@media (min-width: 64rem) { .results__left { padding-right: 3rem; } }

/* founders split card */
.founders-card { padding: 2rem; box-shadow: var(--shadow-xl); background: var(--card); }
@media (min-width: 48rem) { .founders-card { padding: 3rem; } }
@media (min-width: 64rem) { .founders-card__text { padding-left: 1.5rem; } }
.founders-card .h2 { max-width: 18ch; }

/* ========================================================== page: about */
.about-open { padding-top: 2.5rem; }
.about-open__media { position: relative; }
.about-open__card { position: relative; width: 16rem; margin: -2.5rem 0 0 1.25rem; z-index: 5; }
@media (min-width: 40rem) { .about-open__card { position: absolute; left: 2.5rem; bottom: -3rem; width: 18rem; margin: 0; } }
.about-open__text { margin-top: 3rem; }
@media (min-width: 40rem) { .about-open__text { margin-top: 7rem; } }
.pullquote { border-top: 1px solid var(--border); padding-top: 2rem; }
.pullquote blockquote { font-family: var(--font-serif); font-size: clamp(2.5rem, 1.6rem + 2.6vw, 4.25rem); line-height: 1; color: var(--foreground); }
.pullquote .eyebrow { display: block; }
.pullquote .eyebrow { margin-top: 1rem; }
.founder-col { border-top: 1px solid var(--border); padding-top: 1.5rem; margin-top: 1.5rem; }
.founder-col .h3 { margin-top: 1.25rem; }
.founder-col .small { margin-top: .25rem; font-size: .875rem; }
.founder-col .body { margin-top: 1rem; }
.founders-grid { display: grid; gap: 3.5rem 1.5rem; }
@media (min-width: 64rem) { .founders-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
.sticky-photo { position: sticky; top: 6rem; align-self: start; }
.interiors { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1rem; margin-top: 4rem; }
.interiors .photo { aspect-ratio: 1 / 1; }
@media (min-width: 64rem) {
  .interiors { grid-template-columns: repeat(12, minmax(0, 1fr)); gap: 1.5rem; }
  .interiors .photo { aspect-ratio: auto; }
  .int-1 { grid-column: 1 / 6; aspect-ratio: 3 / 2 !important; } .int-2 { grid-column: 6 / 9; } .int-3 { grid-column: 9 / -1; aspect-ratio: 3 / 2 !important; }
  .int-4 { grid-column: 1 / 5; aspect-ratio: 3 / 2 !important; } .int-5 { grid-column: 5 / 9; aspect-ratio: 3 / 2 !important; } .int-6 { grid-column: 9 / -1; aspect-ratio: 3 / 2 !important; }
}

/* ======================================================= page: programs */
.panels { display: grid; border: 1px solid var(--border); }
@media (min-width: 64rem) { .panels { grid-template-columns: 1fr 1fr; } }
.panel { display: flex; flex-direction: column; padding: 2rem; background: var(--background); }
@media (min-width: 48rem) { .panel { padding: 3rem; min-height: 35rem; } }
.panel--dark { background: var(--foreground); }
.panel .h2 { margin-top: 2rem; }
.panel .body-lg { margin-top: 1rem; color: var(--text); }
.panel .body { margin-top: 1rem; }
.panel__list { margin-top: 2rem; }
.panel .btn { margin-top: auto; align-self: flex-start; }
.panel__cta { margin-top: 2.5rem; padding-top: 0; }
.panel__cta-wrap { margin-top: auto; padding-top: 2.5rem; }

/* ========================================================= page: research */
.principles { display: grid; gap: 2.5rem 2rem; margin-top: 4rem; }
@media (min-width: 64rem) {
  .principles { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .principles > :nth-child(2), .principles > :nth-child(5) { margin-top: 2.5rem; }
  .principles > :nth-child(3) { margin-top: 1.25rem; }
}
.principle { border-top: 1px solid var(--border); padding-top: 1.5rem; }
.principle .eyebrow { color: var(--accent); }
.principle .h4 { margin-top: 1.5rem; }
.principle .body { margin-top: .75rem; }

/* ====================================================== page: resources */
.stage-tools { margin-top: 1.5rem; }
.stage { display: grid; gap: 1.5rem; }
@media (min-width: 64rem) { .stage { grid-template-columns: minmax(0, 7fr) minmax(0, 5fr); gap: 3rem; } .stage__shot { position: sticky; top: 6rem; align-self: start; } }
.stage-nav { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); margin-top: 2rem; border-top: 1px solid var(--border); }
@media (min-width: 40rem) { .stage-nav { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
.stage-nav a { display: flex; gap: .75rem; align-items: baseline; padding: 1rem .75rem 1rem 0; border-bottom: 1px solid var(--border); font-size: .9375rem; font-weight: 600; transition: color .15s; }
.stage-nav a:hover { color: var(--accent); }
.stage-nav span { font-family: var(--font-serif); font-weight: 400; font-size: 1.1rem; color: var(--accent); }
.shots-row { display: grid; gap: 2rem 1.5rem; margin-top: 4rem; }
@media (min-width: 64rem) { .shots-row { grid-template-columns: repeat(3, minmax(0, 1fr)); align-items: start; } }

/* ========================================================== page: media */
.channels { display: grid; gap: 4rem 3rem; }
@media (min-width: 64rem) { .channels { grid-template-columns: 1fr 1fr; } }
.channel-icons { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: 1.5rem; }
.channel-icons a { display: grid; place-items: center; width: 3.5rem; height: 3.5rem; border: 1px solid var(--border); transition: border-color .2s, color .2s; }
.channel-icons a:hover { border-color: var(--accent); color: var(--accent); }
.channel-icons svg { width: 1.35rem; height: 1.35rem; }
.events-grid { display: grid; gap: 1.5rem; margin-top: 4rem; }
@media (min-width: 64rem) {
  .events-grid { grid-template-columns: repeat(12, minmax(0, 1fr)); }
  .ev-1 { grid-column: 1 / 9; } .ev-2 { grid-column: 9 / -1; grid-row: span 2; } .ev-3 { grid-column: 1 / 5; } .ev-4 { grid-column: 5 / 9; }
}
.kit { display: grid; gap: 3rem 4rem; }
@media (min-width: 64rem) { .kit { grid-template-columns: 1fr 1fr; } }
.kit .h4 + * { margin-top: 1.25rem; }
.press-panel { background: var(--surface); border: 1px solid var(--border); padding: 2.5rem; }
@media (max-width: 39.99rem) { .about-open__photo { aspect-ratio: 4 / 5; } .about-open__photo img { object-position: 50% 30% !important; } }

/* inner page opening */
.opening { padding-block: 3.5rem 3rem; }
@media (min-width: 48rem) { .opening { padding-block: 6rem 4.5rem; } }
@media (min-width: 64rem) { .opening { padding-block: 8rem 5rem; } }
.opening .grid-12 > .lead { margin-top: 0; }
@media (max-width: 79.99rem) { .opening .grid-12 > .lead { margin-top: .5rem; } }
.pb-rule { border-bottom: 1px solid var(--border); padding-bottom: 2rem; }
.shot__frame--16x10 { aspect-ratio: 16 / 10; }
.shot__frame--portfolio { aspect-ratio: 2400 / 1110; }
@media (min-width: 48rem) { .stages > li { grid-template-columns: 4rem minmax(0, 1fr); } }
.stages > li { padding-block: 2.5rem; }
.included { max-width: 44rem; margin-inline: auto; text-align: center; }
.included .h2 { margin-inline: auto; }
.included .body-lg { margin-inline: auto; }
.included .btn-row { justify-content: center; }
.index--channels .small { white-space: normal; text-align: right; max-width: 22rem; }
.kit .index { margin-top: 1.25rem; }
.report-card .h3 { color: var(--background); }

/* 1024 to 1279: keep the hero card clear of the lead, and scale four-up figures to their columns */
@media (min-width: 64rem) and (max-width: 79.99rem) {
  .hero__lead { max-width: 29rem; }
  .hero__card { left: -2rem; bottom: -5rem; width: 13.5rem; }
}
.mini-stats--4 .numeral-xl { font-size: clamp(2.5rem, 4.4vw, 4.5rem); }

/* mobile refinements */
@media (max-width: 39.99rem) {
  .ledger__row .numeral, .band--dark .ledger .numeral { font-size: 1.75rem; }
  .ledger__row { gap: 1rem; }
  .story { padding: 1.5rem; }
  .story__data { grid-template-columns: 1fr; gap: .6rem; }
  .story__data > div { display: grid; grid-template-columns: 6.5rem minmax(0, 1fr); gap: 1rem; align-items: baseline; }
  .story__data dd { margin-top: 0; }
  .founders-card { padding: 1.25rem; }
  .card--dark { padding: 1.5rem; }
}
@media (max-width: 63.99rem) {
  .founders-grid .photo.ar-2x3 { aspect-ratio: 4 / 5; }
}

/* =================================================================== v3 */
/* hero: polaroid kept inside the viewport, stat card clear of the founders */
@media (min-width: 48rem) { .hero__drift { right: -1rem; top: -6rem; width: 9.5rem; } }
@media (min-width: 80rem) { .hero__card { left: -7.5rem; bottom: -6.5rem; width: 15.5rem; } }
.hero__card .numeral-xl { font-size: 3.25rem; }

/* home: quote card in the community collage */
.quote-card blockquote { font-family: var(--font-serif); font-size: 1.5rem; line-height: 1.25; color: var(--background); }
@media (min-width: 48rem) { .quote-card blockquote { font-size: 1.75rem; } }
.quote-card figcaption { margin-top: 1.25rem; display: flex; align-items: center; gap: .875rem; }
.quote-card figcaption img { width: 3rem; height: 3rem; flex: none; object-fit: cover; }
.quote-card__name { display: block; font-size: .875rem; font-weight: 600; color: var(--background); line-height: 1.3; }
.quote-card__job { display: block; font-size: .8125rem; color: color-mix(in oklab, var(--background) 60%, transparent); line-height: 1.3; }
@media (min-width: 64rem) {
  .collage { min-height: 0; display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); gap: 1.5rem; }
  .collage > * { position: relative; left: auto; right: auto; top: auto; bottom: auto; width: auto; }
  .collage__a { grid-column: 1 / 7; grid-row: 1; }
  .collage__b { grid-column: 8 / 12; grid-row: 1 / span 2; margin-top: 6rem; }
  .collage__card { grid-column: 2 / 7; grid-row: 2; margin-top: -3.5rem; z-index: 20; align-self: start; }
  .collage__c { grid-column: 5 / 11; grid-row: 3; margin-top: -2rem; z-index: 5; }
}
@media (min-width: 80rem) { .collage { min-height: 0; } }

/* press strip with a linked outlet */
.press-strip__name a { border-bottom: 1px solid var(--border); transition: border-color .2s, color .2s; }
.press-strip__name a:hover { color: var(--accent); border-color: var(--accent); }
.press-strip__date { font-size: .8125rem; color: var(--muted-foreground); margin-left: .5rem; font-family: var(--font-sans); }

/* home founders card quote */
.said { border-left: 2px solid var(--accent); padding-left: 1.5rem; }
.said blockquote { font-family: var(--font-serif); font-size: 1.625rem; line-height: 1.3; color: var(--text); }
@media (min-width: 48rem) { .said blockquote { font-size: 1.875rem; } }
.said figcaption { margin-top: 1rem; font-size: .875rem; color: var(--text-2); }
.said--dark { border-color: var(--accent-light); }

/* story cards with a face and a quote */
.stories--faces { display: grid; gap: 1.5rem; }
@media (min-width: 64rem) { .stories--faces { grid-template-columns: repeat(2, minmax(0, 1fr)); align-items: start; } }
.story--face { padding: 2rem; }
@media (min-width: 48rem) { .story--face { padding: 2.5rem; } }
.story__top { display: flex; gap: 1.25rem; align-items: center; }
.story__face { width: 4.5rem; height: 4.5rem; flex: none; object-fit: cover; background: var(--muted); }
.story__name { font-family: var(--font-serif); font-size: 1.625rem; line-height: 1.1; color: var(--foreground); }
.story__job { margin-top: .25rem; font-size: .875rem; line-height: 1.35rem; color: var(--muted-foreground); }
.story__quote { margin-top: 1.75rem; font-family: var(--font-serif); font-size: 1.5rem; line-height: 1.3; color: var(--foreground); }
.story--face .story__body { margin-top: 1.25rem; }
.story--face .textlink { padding-top: 1.5rem; }
@media (min-width: 64rem) { .stories--faces > .story--face:nth-child(4n + 2), .stories--faces > .story--face:nth-child(4n + 3) { background: var(--surface); box-shadow: none; border: 1px solid var(--border); } }

/* wall of filmed voices */
.voices { columns: 1; column-gap: 1.5rem; }
@media (min-width: 48rem) { .voices { columns: 2; } }
@media (min-width: 80rem) { .voices { columns: 3; } }
.voice { break-inside: avoid; margin: 0 0 1.5rem; padding: 1.75rem; background: var(--card); box-shadow: var(--shadow-sm); }
.voice__quote { font-family: var(--font-serif); font-size: 1.3125rem; line-height: 1.35; color: var(--foreground); }
.voice__by { display: flex; align-items: center; gap: .875rem; margin-top: 1.5rem; }
.voice__face { width: 3.25rem; height: 3.25rem; flex: none; object-fit: cover; background: var(--muted); }
.voice__who { min-width: 0; flex: 1; }
.voice__name { display: block; font-size: .875rem; font-weight: 600; line-height: 1.3; color: var(--foreground); }
.voice__job { display: block; font-size: .8125rem; line-height: 1.3; color: var(--muted-foreground); }
.voice__watch { display: inline-flex; align-items: center; gap: .4rem; flex: none; font: 700 .6875rem/1rem var(--font-sans); letter-spacing: .14em; text-transform: uppercase; color: var(--accent); padding: .5rem 0; }
.voice__watch svg { width: .75rem; height: .75rem; }
.voice__watch:hover { color: var(--foreground); }

/* face mosaic on the case studies opening */
.faces { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: .75rem; }
.faces img { width: 100%; aspect-ratio: 1; object-fit: cover; background: var(--muted); }
@media (min-width: 64rem) { .faces > :nth-child(3n + 2) { transform: translateY(1.5rem); } }

/* three case studies */
.cases { display: grid; gap: 1.5rem; }
@media (min-width: 64rem) { .cases { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
.case { display: flex; flex-direction: column; background: var(--card); padding: 2rem; box-shadow: var(--shadow-sm); transition: transform .35s var(--ease-out), box-shadow .35s var(--ease-out); }
.case:hover { transform: translateY(-4px); box-shadow: var(--shadow-xl); }
.case .numeral-xl { color: var(--accent); }
.case__unit { margin-top: .5rem; font-size: .875rem; font-weight: 600; color: var(--foreground); }
.case__name { margin-top: 2rem; font-family: var(--font-serif); font-size: 1.875rem; line-height: 1.1; color: var(--foreground); }
.case__text { margin-top: .75rem; font-size: 1rem; line-height: 1.75rem; color: var(--muted-foreground); }
.case .textlink { margin-top: auto; padding-top: 2rem; align-self: flex-start; }

/* about: Jordan's letter */
.letter { display: grid; gap: 3rem 1.5rem; }
@media (min-width: 64rem) { .letter { grid-template-columns: repeat(12, minmax(0, 1fr)); } .letter__aside { grid-column: 1 / 5; position: sticky; top: 7rem; align-self: start; } .letter__text { grid-column: 6 / 12; } }
.letter__text p { font-size: 1.125rem; line-height: 2rem; color: var(--muted-foreground); max-width: 38rem; }
.letter__text p + p { margin-top: 1.5rem; }
.letter__text p:first-child { font-size: 1.375rem; line-height: 2.1rem; color: var(--foreground); }
.letter__text .said { margin-block: 2.75rem; max-width: 38rem; }
.letter__sign { margin-top: 2rem; font-family: var(--font-serif); font-size: 1.5rem; color: var(--foreground); }

/* about: bios under one group photo */
.bios { display: grid; gap: 2.5rem 1.5rem; margin-top: 3rem; }
@media (min-width: 64rem) { .bios { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
.bio { border-top: 1px solid var(--border); padding-top: 1.5rem; }
.bio .h4 { color: var(--foreground); }
.bio .small { margin-top: .25rem; display: block; font-size: .875rem; }
.bio .body { margin-top: 1rem; }

/* about: timeline beside a sticky intro */
.history { display: grid; gap: 3rem 1.5rem; }
@media (min-width: 64rem) { .history { grid-template-columns: repeat(12, minmax(0, 1fr)); } .history__aside { grid-column: 1 / 5; position: sticky; top: 7rem; align-self: start; } .history .timeline { grid-column: 6 / -1; } }
@media (min-width: 48rem) { .history .timeline > li { grid-template-columns: 9rem minmax(0, 1fr); } }
.timeline__photo { margin-top: 1.5rem; max-width: 30rem; }

/* programs */
.panel__quote { margin-top: 2rem; }
.program-list { margin-top: 2rem; }
.program-list li { display: grid; grid-template-columns: 1.25rem minmax(0, 1fr); gap: .75rem; padding-block: .875rem; border-top: 1px solid var(--rule); font-size: 1rem; line-height: 1.6rem; color: var(--text-2); }
.program-list li:last-child { border-bottom: 1px solid var(--rule); }
.program-list li::before { content: ""; width: .5rem; height: .5rem; margin-top: .55rem; background: var(--accent); }
.panel--dark .program-list li::before { background: var(--accent-light); }
.program-list strong { color: var(--text); font-weight: 600; }
.needs { display: grid; gap: 3rem 1.5rem; }
@media (min-width: 64rem) { .needs { grid-template-columns: repeat(12, minmax(0, 1fr)); } .needs__aside { grid-column: 1 / 5; position: sticky; top: 7rem; align-self: start; } .needs .index { grid-column: 6 / -1; } }

/* research: guide list */
.guides { display: grid; gap: 2.5rem 3rem; }
@media (min-width: 64rem) { .guides { grid-template-columns: 1fr 1fr; } }
.guides__topic { font: 700 .6875rem/1rem var(--font-sans); letter-spacing: .16em; text-transform: uppercase; color: var(--accent); padding-bottom: .75rem; }
.guides ul { border-top: 1px solid var(--border); }
.guides li { border-bottom: 1px solid var(--border); }
.guides a { display: flex; justify-content: space-between; align-items: baseline; gap: 1rem; padding-block: 1rem; font-family: var(--font-serif); font-size: 1.3125rem; line-height: 1.3; color: var(--foreground); transition: color .15s; }
.guides a svg { width: 1rem; height: 1rem; flex: none; color: var(--muted-foreground); transition: transform .3s var(--ease-out), color .2s; }
.guides a:hover { color: var(--accent); }
.guides a:hover svg { color: var(--accent); transform: rotate(45deg); }

/* media: press cards */
.press { display: grid; gap: 1.5rem; }
@media (min-width: 64rem) { .press { grid-template-columns: 7fr 5fr; align-items: stretch; } }
.press-card { display: flex; flex-direction: column; padding: 2rem; background: var(--card); box-shadow: var(--shadow-sm); }
@media (min-width: 48rem) { .press-card { padding: 2.75rem; } }
.press-card--dark { background: var(--foreground); box-shadow: var(--shadow-2xl); }
.press-card__outlet { font-family: var(--font-serif); font-size: 2.25rem; line-height: 1.05; color: var(--text); }
@media (min-width: 48rem) { .press-card__outlet { font-size: 2.75rem; } }
.press-card__meta { margin-top: .75rem; font-size: .875rem; color: var(--text-2); }
.press-card__pull { margin-top: 2rem; font-family: var(--font-serif); font-size: 1.625rem; line-height: 1.25; color: var(--text); }
.press-card__pull cite { display: block; margin-top: .75rem; font: 400 .8125rem/1.3 var(--font-sans); color: var(--text-2); font-style: normal; }
.press-card .body { margin-top: 1.25rem; }
.press-card .btn-row, .press-card .textlink { margin-top: auto; padding-top: 2rem; }
.follow { display: grid; gap: 2.5rem 3rem; }
@media (min-width: 64rem) { .follow { grid-template-columns: 1fr 1fr; } }
.follow .body { margin-top: 1rem; }
@media (min-width: 64rem) { .events-grid--3 .ev-1 { grid-column: 1 / 8; grid-row: 1 / span 2; } .events-grid--3 .ev-2 { grid-column: 8 / -1; grid-row: 1; } .events-grid--3 .ev-3 { grid-column: 8 / -1; grid-row: 2; } }
.events-grid--3 .ev-1 { aspect-ratio: auto; min-height: 20rem; }
.kit-files a { align-items: center; }
.kit-files img { width: 3.5rem; height: 2.5rem; object-fit: cover; flex: none; background: var(--muted); }
.kit-files .kit-file { display: flex; align-items: center; gap: 1rem; }

/* technology */
.feature-list { display: grid; gap: 0 3rem; margin-top: 3rem; }
@media (min-width: 64rem) { .feature-list { grid-template-columns: 1fr 1fr; } }
.feature-list > li { border-top: 1px solid var(--rule); padding-block: 1.5rem; display: grid; gap: .5rem; }
@media (min-width: 48rem) { .feature-list > li { grid-template-columns: 11rem minmax(0, 1fr); gap: 1.5rem; } }
.feature-list h3 { font-size: .9375rem; font-weight: 600; line-height: 1.75rem; color: var(--text); }
.feature-list p { font-size: 1rem; line-height: 1.75rem; color: var(--text-2); }
.shots-2 { display: grid; gap: 1.5rem; margin-top: 1.5rem; }
@media (min-width: 64rem) { .shots-2 { grid-template-columns: 5fr 7fr; align-items: start; } }
.shot__frame--wide { aspect-ratio: auto; }
.stage__shot--tall .shot__frame { aspect-ratio: 4 / 5; }
.stage__shot--tall .shot__frame img { object-position: top; }

/* shared */
.lead--dark { color: var(--foreground); }
.note { font-size: .8125rem; line-height: 1.35rem; color: var(--text-2); max-width: 40rem; }
.photo-band { margin-top: 0; }
.cta-end { display: grid; gap: 2rem 1.5rem; align-items: end; border-top: 1px solid var(--border); padding-top: 3rem; }
@media (min-width: 64rem) { .cta-end { grid-template-columns: repeat(12, minmax(0, 1fr)); } .cta-end > :first-child { grid-column: 1 / 8; } .cta-end > :last-child { grid-column: 9 / -1; justify-self: end; } }
@media (max-width: 39.99rem) { .story--face, .voice, .case, .press-card { padding: 1.5rem; } .story__quote { font-size: 1.3125rem; } }
/* home collage, v3.1: text sits in the collage's open corner on desktop, first on mobile */
.collage__text { order: -1; }
@media (min-width: 64rem) {
  .collage__text { order: 0; grid-column: 1 / 5; grid-row: 3; align-self: end; padding-bottom: .5rem; }
  .collage__a { grid-column: 1 / 8; grid-row: 1; }
  .collage__b { grid-column: 9 / -1; grid-row: 1 / span 2; margin-top: 4rem; }
  .collage__card { grid-column: 2 / 7; grid-row: 2; margin-top: -4rem; }
  .collage__c { grid-column: 6 / -1; grid-row: 3; margin-top: 2rem; }
}
#results-title { max-width: 26ch; }
@media (min-width: 64rem) {
  .interiors { grid-auto-rows: 20rem; }
  .interiors .photo, .int-1, .int-3, .int-4, .int-5, .int-6 { aspect-ratio: auto !important; height: 100%; }
}
/* technology: bigger stage screenshots, a narrow sidebar */
@media (min-width: 64rem) { .stage { grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); } }
.stage__shot--tall { max-width: 16rem; }
.stage__shot--tall .shot__frame { aspect-ratio: 1 / 2; }
@media (min-width: 64rem) { .stage__shot--tall { justify-self: center; } }
.shot__frame--wide img { height: auto; }
.page-research .display-title { font-size: clamp(3rem, 6vw, 5.5rem); }
@media (min-width: 64rem) { .stage-nav { grid-template-columns: 1fr; } }
.press-card--dark .btn--outline { color: var(--background); border-color: color-mix(in oklab, var(--background) 40%, transparent); }
.press-card--dark .btn--outline:hover { background: var(--background); color: var(--foreground); }
@media (min-width: 64rem) and (max-width: 79.99rem) { .hero__card { left: -2rem; bottom: -8rem; width: 13.5rem; } }
/* v3.2 */
.pair { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.pair .caption { grid-column: 1 / -1; margin-top: 0; }
@media (min-width: 64rem) { .pair > figure:nth-child(2) { margin-top: 4rem; } }
@media (min-width: 64rem) { .collage__text { align-self: start; margin-top: 3rem; } }
.press-card--dark .btn--outline { background: transparent; }
/* case studies v3.2: even grid of quotes, clean portraits */
.voices { columns: auto; display: grid; gap: 1.5rem; }
@media (min-width: 48rem) { .voices { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 80rem) { .voices { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
.voice { margin: 0; display: flex; flex-direction: column; }
.voice__result { font: 700 .6875rem/1rem var(--font-sans); letter-spacing: .14em; text-transform: uppercase; color: var(--accent); margin-bottom: 1rem; }
.voice__by { margin-top: auto; padding-top: 1.5rem; }
.voice--more { background: var(--foreground); color: var(--background); justify-content: space-between; min-height: 12rem; transition: background-color .2s; }
.voice--more .voice__quote { color: var(--background); }
.voice--more .textlink { color: var(--background); margin-top: 2rem; align-self: flex-start; }
.voice--more:hover { background: var(--primary); }
.faces > :nth-child(3n + 2) { transform: none !important; }
.faces { gap: .5rem; }
.story--face .story__name { margin-top: 0; }
.stage__shot .shot__frame img { height: auto; }
@media (min-width: 64rem) {
  .interiors { grid-template-columns: repeat(3, minmax(0, 1fr)); grid-auto-rows: auto; }
  .interiors .photo, .int-1, .int-2, .int-3, .int-4, .int-5, .int-6 { grid-column: auto !important; aspect-ratio: 3 / 2 !important; height: auto; }
}
@media (min-width: 64rem) { .press { align-items: start; } .hero__media { margin-top: 1.5rem; } }
.press-card .btn-row { margin-top: 0; padding-top: 2.25rem; }
/* technology v3.3: each stage is copy, a two-column tool list, then the full screen at a readable size */
.stages .stage { display: block; }
@media (min-width: 64rem) { .stages .stage-tools { display: grid; grid-template-columns: 1fr 1fr; column-gap: 3rem; } .stages .stage-tools > li:last-child { border-bottom: 0; } .stages .stage-tools > li { border-bottom: 1px solid var(--rule); } .stages .stage-tools > li:nth-last-child(-n+2) { border-bottom: 0; } }
.stage__shot-full { margin-top: 2.5rem; }
.stage__shot-full .shot__frame img { height: auto; }
.stage-nav--row { margin-top: 2.5rem; }
@media (min-width: 64rem) { .stage-nav--row { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
/* v3.3 layout fixes */
@media (min-width: 64rem) { .pair > figure:nth-child(2) { margin-top: 0; } .collage__text { align-self: end; margin-top: 0; padding-bottom: 0; } }
.press-strip > .textlink { margin-left: auto; }
.press-card__outlet { text-wrap: balance; }
@media (min-width: 64rem) { .media-hero__photo { max-height: 36rem; } }
.events-grid--3 .ev-1 img { object-position: 50% 25%; }
@media (min-width: 64rem) { .press { align-items: stretch; grid-template-columns: 1fr 1fr; } .media-hero__photo { max-height: none; } }
.press-card .btn-row { margin-top: auto; padding-top: 2.25rem; }
@media (min-width: 64rem) {
  .events-grid--3 { grid-template-rows: 1fr 1fr; }
  .events-grid--3 .ev-1 { aspect-ratio: 4 / 5; min-height: 0; }
  .events-grid--3 .ev-2, .events-grid--3 .ev-3 { aspect-ratio: auto; height: 100%; }
}
@media (min-width: 40rem) { .about-open__media .caption { text-align: right; } }
/* v3.4 */
@media (min-width: 64rem) { .stage-nav--row { grid-template-columns: repeat(5, minmax(0, 1fr)); } .stage-nav--row a { flex-direction: column; gap: .25rem; font-size: .875rem; line-height: 1.3; padding-right: 1rem; } }
@media (min-width: 64rem) { .press { align-items: start; } }
/* about: pull quotes sit beside the story on desktop, inside it on phones */
.said--inline { margin-block: 2.5rem; }
@media (min-width: 64rem) { .said--inline { display: none; } }
@media (max-width: 63.99rem) { .said--aside { display: none; } }
@media (max-width: 39.99rem) { .about-open__media .caption { display: none; } }
.letter__text .said--inline + p { margin-top: 1.5rem; }
