:root {
  --red: #b62328;
  --red-dark: #8e171c;
  --blue: #17499b;
  --blue-dark: #0e3478;
  --orange: #e6871d;
  --gold: #d8aa3d;
  --gold-deep: #bd861c;
  --gold-light: #f7e7a4;
  --ink: #151513;
  --paper: #f3eee4;
  --paper-deep: #e7dfd1;
  --white: #fffdf8;
  --muted: #69645c;
  --line: rgba(21, 21, 19, .2);
  --line-light: rgba(255, 253, 248, .24);
  --container: 1280px;
  --gutter: max(clamp(1.1rem, 3vw, 2.6rem), env(safe-area-inset-left), env(safe-area-inset-right));
  --sp-2: .5rem;
  --sp-3: .75rem;
  --sp-4: 1rem;
  --sp-5: 1.25rem;
  --sp-6: 1.5rem;
}

*, *::before, *::after { box-sizing: border-box; }
[hidden] { display: none !important; }
html { scroll-behavior: smooth; scroll-padding-top: 90px; }
body { margin: 0; min-width: 320px; overflow-x: clip; background: var(--paper); color: var(--ink); font-family: "DM Sans", Arial, sans-serif; font-size: 16px; line-height: 1.55; -webkit-font-smoothing: antialiased; }
body.menu-open, body.dialog-open { overflow: hidden; }
img, video { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button, a { -webkit-tap-highlight-color: rgba(23,73,155,.18); touch-action: manipulation; }
h1, h2, h3, p, figure, blockquote { margin-top: 0; }
h1, h2, h3 { line-height: 1.02; letter-spacing: -.045em; text-wrap: balance; }
/* The sticky-header offset is already supplied by html scroll-padding-top. */
[id] { scroll-margin-top: 16px; }
h2 em, blockquote em, .section-heading em { color: var(--red); font-family: "Source Serif 4", Georgia, serif; font-weight: 600; }
strong { font-weight: 700; }
::selection { background: var(--blue); color: var(--white); }
:focus-visible { outline: 3px solid #0b57d0; outline-offset: 3px; box-shadow: 0 0 0 2px var(--white); }
.content-section--ink :focus-visible, .content-section--blue :focus-visible, .founder-section :focus-visible, .footer :focus-visible { outline-color: var(--gold-light); box-shadow: 0 0 0 2px var(--ink); }
.container { width: min(100% - (var(--gutter) * 2), var(--container)); margin-inline: auto; }
.mono, .eyebrow, .section-kicker, .page-hero__kicker, .program-card__num, .join-card__num { font-family: "IBM Plex Mono", ui-monospace, monospace; }
.skip-link { position: fixed; z-index: 1000; top: .6rem; left: .6rem; padding: .75rem 1rem; background: var(--ink); color: var(--white); transform: translateY(-140%); }
.skip-link:focus { transform: none; }

/* Navigation */
.site-header { position: sticky; z-index: 100; top: 0; background: var(--paper); }
.site-header::after { content: ""; height: 4px; display: block; background: linear-gradient(90deg,var(--red) 0 33.333%,var(--blue) 33.333% 66.666%,var(--orange) 66.666%); }
.site-header > .tricolor-rule { display: none; }
.nav { width: min(100% - (var(--gutter) * 2), var(--container)); height: 78px; margin-inline: auto; display: flex; align-items: center; gap: clamp(1rem, 2.5vw, 2.5rem); }
.nav__brand { min-width: 52px; min-height: 52px; display: inline-flex; align-items: center; justify-content: center; flex: 0 0 auto; }
.nav__logo { width: 52px; height: 52px; border-radius: 50%; object-fit: contain; box-shadow: none; }
.nav__wordmark { font-size: 1.18rem; font-weight: 700; letter-spacing: .17em; }
.nav__links { display: flex; align-items: center; justify-content: center; gap: clamp(1rem, 2vw, 2rem); margin: 0 auto; padding: 0; list-style: none; }
.nav__link { min-height: 44px; display: inline-flex; align-items: center; position: relative; font-size: .96rem; font-weight: 600; }
.nav__link::after { content: ""; position: absolute; left: 0; right: 100%; bottom: 5px; height: 2px; background: var(--red); transition: right .2s ease; }
.nav__link:hover::after, .nav__link[aria-current="page"]::after { right: 0; }
.nav__cta { min-height: 44px; display: inline-flex; align-items: center; gap: .6rem; padding: 0 1rem; border: 1px solid var(--ink); background: var(--ink); color: var(--white); font-size: .86rem; font-weight: 700; }
.nav__cta:hover { background: var(--red); border-color: var(--red); }
.nav__toggle { display: none; width: 44px; height: 44px; margin-left: auto; padding: 0; border: 1px solid var(--ink); background: transparent; align-items: center; justify-content: center; color: var(--ink); }
.nav__toggle svg { fill: none; stroke: currentColor; stroke-width: 2; }
.tricolor-rule { height: 4px; display: grid; grid-template-columns: repeat(3,1fr); }
.tricolor-rule span:nth-child(1), .flag-bars i:nth-child(1), .flag-blocks i:nth-child(1) { background: var(--red); }
.tricolor-rule span:nth-child(2), .flag-bars i:nth-child(2), .flag-blocks i:nth-child(2) { background: var(--blue); }
.tricolor-rule span:nth-child(3), .flag-bars i:nth-child(3), .flag-blocks i:nth-child(3) { background: var(--orange); }
.nav__drawer { position: fixed; z-index: 120; inset: 0; display: flex; flex-direction: column; padding: max(1.2rem, env(safe-area-inset-top)) max(var(--gutter), env(safe-area-inset-right)) max(2rem, env(safe-area-inset-bottom)) max(var(--gutter), env(safe-area-inset-left)); overflow-y: auto; overscroll-behavior: contain; background: var(--paper); transform: translateX(100%); visibility: hidden; transition: transform .25s ease, visibility .25s; }
.nav__drawer.is-open { transform: none; visibility: visible; }
.nav__drawer-head { display: flex; align-items: center; justify-content: space-between; padding-bottom: 1rem; border-bottom: 1px solid var(--ink); }
.nav__drawer-head > span { font-size: .72rem; letter-spacing: .12em; }
.nav__close { width: 44px; height: 44px; border: 1px solid var(--ink); background: transparent; color: var(--ink); font-size: 1.65rem; line-height: 1; }
.nav__drawer > .nav__close { flex: 0 0 auto; align-self: flex-end; }
.nav__drawer ul { list-style: none; margin: 2rem 0 auto; padding: 0; }
.nav__drawer li { border-bottom: 1px solid var(--line); }
.nav__drawer li a { min-height: 64px; display: flex; align-items: center; gap: 1rem; font-size: clamp(1.35rem, 6vw, 2rem); font-weight: 600; letter-spacing: -.03em; }
.nav__drawer li a span { width: 2rem; font-family: "IBM Plex Mono", monospace; color: var(--red); font-size: .68rem; letter-spacing: .08em; }
.nav__drawer-cta { min-height: 52px; margin-top: 1.5rem; display: flex; align-items: center; justify-content: space-between; padding: .75rem 1rem; background: var(--ink); color: var(--white); font-weight: 700; }

/* Shared controls */
.btn { min-height: 46px; width: fit-content; display: inline-flex; align-items: center; justify-content: center; gap: .65rem; padding: .72rem 1rem; border: 1px solid currentColor; color: var(--ink); font-size: .86rem; font-weight: 700; letter-spacing: -.01em; transition: background .18s ease, color .18s ease, border-color .18s ease; }
.btn:hover { background: var(--ink); color: var(--white); border-color: var(--ink); }
.btn--lg { min-height: 50px; padding-inline: 1.2rem; }
.btn--primary { background: var(--red); border-color: var(--red); color: var(--white); }
.btn--primary:hover { background: var(--red-dark); border-color: var(--red-dark); }
.btn--ink { background: var(--ink); border-color: var(--ink); color: var(--white); }
.btn--ink:hover { background: var(--blue); border-color: var(--blue); }
.btn--white { background: var(--white); border-color: var(--white); color: var(--ink); }
.btn--white:hover { background: transparent; color: var(--white); }
.btn--outline-light { border-color: rgba(255,255,255,.72); color: var(--white); }
.btn--outline-light:hover { background: var(--white); color: var(--ink); border-color: var(--white); }
.btn--donate { border-color: var(--blue); background: var(--blue); color: var(--white); }
.btn--donate:hover { border-color: var(--blue-dark); background: var(--blue-dark); }
.button-row, .hero__ctas, .page-hero__actions { display: flex; align-items: center; flex-wrap: wrap; gap: .7rem; }
.text-link, .card-link { min-height: 44px; display: inline-flex; align-items: center; font-weight: 700; text-decoration: underline; text-decoration-color: var(--red); text-underline-offset: .3em; text-decoration-thickness: 2px; }
.text-link:hover, .card-link:hover { color: var(--red); }
.light-link { color: var(--white); }
.light-link:hover { color: #fff; text-decoration-color: var(--orange); }
.eyebrow, .section-kicker, .page-hero__kicker { display: inline-block; margin-bottom: 1.1rem; color: var(--red); font-size: .72rem; font-weight: 600; letter-spacing: .11em; line-height: 1.3; text-transform: uppercase; }
.section, .content-section, .block { padding: clamp(4.5rem, 9vw, 8rem) 0; }
.section-line { min-height: 48px; display: flex; align-items: center; justify-content: space-between; gap: 1rem; border-top: 1px solid var(--ink); border-bottom: 1px solid var(--ink); font-family: "IBM Plex Mono", monospace; font-size: .68rem; letter-spacing: .09em; }
.chapter-heading { display: grid; grid-template-columns: 64px minmax(0, 1fr); gap: clamp(1rem, 3vw, 3rem); align-items: start; margin-bottom: clamp(2.4rem, 6vw, 5rem); }
.chapter-heading > span { width: 48px; height: 48px; display: grid; place-items: center; border: 1px solid var(--ink); border-radius: 50%; font-family: "IBM Plex Mono", monospace; font-size: .75rem; }
.chapter-heading h2, .section-heading, .display-md { max-width: 920px; margin: 0; font-size: clamp(2.3rem, 5.8vw, 5rem); font-weight: 600; }
.chapter-heading--spread { grid-template-columns: 64px minmax(0,1fr) auto; align-items: end; }
.section-lede { max-width: 690px; margin: 1.35rem 0 0; color: var(--muted); font-size: clamp(1rem, 1.5vw, 1.2rem); }

/* Homepage hero */
.home-hero { min-height: calc(100svh - 82px); display: grid; grid-template-columns: minmax(0, 1.04fr) minmax(360px, .96fr); background: var(--paper); }
.home-hero__copy { min-width: 0; padding: clamp(2.2rem, 5vh, 3.8rem) max(var(--gutter), calc((100vw - var(--container)) / 2)) clamp(1.5rem, 3vh, 2.5rem); padding-right: clamp(2rem, 4vw, 4rem); display: flex; flex-direction: column; justify-content: flex-start; }
.hero-index { display: flex; justify-content: space-between; gap: 1rem; padding-bottom: .7rem; border-bottom: 1px solid var(--ink); font-family: "IBM Plex Mono", monospace; font-size: .68rem; letter-spacing: .09em; }
.home-hero h1 { margin: clamp(1.6rem, 3.5vh, 2.7rem) 0 1rem; font-size: clamp(3.2rem, 5.35vw, 6.4rem); font-weight: 600; line-height: .87; letter-spacing: -.07em; }
.home-hero h1 span { color: var(--red); font-family: "Source Serif 4", Georgia, serif; font-style: italic; font-weight: 600; }
.home-hero__copy > p { max-width: 620px; margin-bottom: 1.25rem; font-size: clamp(.98rem, 1.15vw, 1.12rem); }
.hero-proof { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1rem; margin-top: auto; padding-top: 1.25rem; border-top: 1px solid var(--line); color: #544f48; font-size: .67rem; letter-spacing: .045em; text-transform: uppercase; }
.hero-proof span { min-width: 0; }
.hero-proof strong { display: block; margin-bottom: .18rem; color: var(--ink); font-family: "DM Sans", sans-serif; font-size: clamp(1rem, 1.35vw, 1.28rem); line-height: 1; letter-spacing: -.025em; }
.home-hero__media { min-height: 610px; position: relative; margin: 0; overflow: hidden; background: var(--ink); }
.home-hero__slides { position: absolute; inset: 0; }
.home-hero__slide { position: absolute; inset: 0; width: 100%; height: 100%; max-width: none; object-fit: cover; opacity: 0; pointer-events: none; filter: saturate(.78) contrast(1.04); transition: opacity .32s ease; }
.home-hero__slide.is-active { opacity: 1; }
.home-hero__slide--audience { object-position: center 38%; }
.home-hero__slide--laughter { object-position: center 45%; }
.home-hero__slide--stage { object-position: center 44%; }
.home-hero__media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 55%, rgba(0,0,0,.62)); pointer-events: none; }
.home-hero__media figcaption { position: absolute; z-index: 2; left: 1.2rem; right: 1.2rem; bottom: 1.2rem; display: flex; justify-content: space-between; gap: 1rem; color: var(--white); font-family: "IBM Plex Mono", monospace; font-size: .66rem; letter-spacing: .05em; }
.home-hero__caption-primary { display: inline-flex; align-items: center; gap: .75rem; }
.home-hero__counter { color: rgba(255,255,255,.72); }
.home-hero__progress { position: absolute; z-index: 4; right: 0; bottom: 0; left: 0; height: 4px; overflow: hidden; background: rgba(255,255,255,.2); }
.home-hero__progress i { display: block; width: 100%; height: 100%; transform: scaleX(0); transform-origin: center center; background: linear-gradient(90deg, var(--red) 0 33.333%, var(--blue) 33.333% 66.666%, var(--orange) 66.666% 100%); }
.flag-bars { position: absolute; z-index: 3; top: 1.25rem; right: 1.25rem; width: 54px; height: 54px; display: grid; grid-template-rows: repeat(3,1fr); }

/* Homepage modules */
.impact { padding: 1rem 0 clamp(4rem, 8vw, 7rem); background: var(--paper); }
.impact__grid { display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); }
.impact__item { min-height: 190px; padding: 1.4rem 1.1rem; border-bottom: 1px solid var(--ink); border-right: 1px solid var(--ink); display: flex; flex-direction: column; justify-content: space-between; }
.impact__item:first-child { border-left: 1px solid var(--ink); }
.impact__item strong { font-size: clamp(2.7rem, 5vw, 5rem); line-height: 1; letter-spacing: -.065em; }
.impact__item span { max-width: 130px; font-size: .78rem; font-weight: 600; line-height: 1.25; }
.impact__item.accent-red strong { color: var(--red); }
.impact__item.accent-blue strong { color: var(--blue); }
.impact__item.accent-orange { box-shadow: inset 0 5px 0 var(--orange); }
.impact__item.accent-orange strong { color: var(--ink); }
.network { background: var(--white); }
.network .chapter-heading { margin-bottom: clamp(2.5rem, 4vw, 3.75rem); }
.network__grid { display: grid; grid-template-columns: minmax(0, .8fr) minmax(450px, 1.2fr); gap: clamp(2.5rem, 5vw, 6rem); align-items: start; }
.network__copy { padding-top: clamp(.35rem, 1.2vw, 1rem); }
.network__copy .lead { max-width: 490px; margin-bottom: 1.8rem; font-size: clamp(1.15rem, 2vw, 1.6rem); line-height: 1.42; }
.network__media { min-width: 0; margin: 0; display: grid; grid-template-columns: minmax(240px, 300px) minmax(0, 1fr); border-top: 1px solid var(--ink); border-bottom: 1px solid var(--ink); }
.network__media-frame { width: 100%; aspect-ratio: 9/16; position: relative; overflow: hidden; background: var(--ink); }
.network__media video { width: 100%; height: 100%; max-width: none; aspect-ratio: 9/16; object-fit: contain; background: var(--ink); }
.media-toggle { position: absolute; right: .65rem; bottom: .65rem; min-width: 44px; min-height: 44px; padding: .55rem .7rem; border: 1px solid rgba(255,255,255,.72); background: rgba(21,21,19,.78); color: var(--white); font-family: "IBM Plex Mono", monospace; font-size: .6rem; font-weight: 600; text-transform: uppercase; cursor: pointer; backdrop-filter: blur(6px); }
.media-toggle:hover { background: var(--white); color: var(--ink); }
.network__media-info { min-width: 0; display: grid; grid-template-rows: minmax(190px, .9fr) minmax(130px, .65fr); }
.network__media figcaption { min-width: 0; position: relative; padding: clamp(1rem, 2.2vw, 1.6rem); border-left: 1px solid var(--ink); display: flex; flex-direction: column; font-family: "IBM Plex Mono", monospace; }
.network__media figcaption::after { content: ""; height: 4px; margin-top: 1rem; background: linear-gradient(to right, var(--red) 0 33.333%, var(--blue) 33.333% 66.666%, var(--orange) 66.666% 100%); }
.network__caption-label { display: flex; align-items: center; gap: .6rem; font-size: .66rem; letter-spacing: .06em; text-transform: uppercase; }
.network__media figcaption strong { margin: auto 0; font-family: "DM Sans", Arial, sans-serif; font-size: clamp(3.2rem, 5vw, 4.9rem); line-height: .82; letter-spacing: -.07em; }
.network__media figcaption strong span { display: block; margin-top: .75rem; font-family: "IBM Plex Mono", monospace; font-size: .68rem; font-weight: 600; letter-spacing: .06em; line-height: 1.2; text-transform: uppercase; }
.network__caption-meta { font-size: .68rem; letter-spacing: .05em; line-height: 1.65; text-transform: uppercase; }
.network__photo-strip { min-height: 0; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); border-top: 1px solid var(--ink); border-left: 1px solid var(--ink); }
.network__photo-strip img { width: 100%; height: 100%; min-height: 130px; object-fit: cover; object-position: center 28%; filter: saturate(.78); }
.network__photo-strip img + img { border-left: 1px solid var(--ink); object-position: center 40%; }
.signal-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--red); }
.pillars-section { background: var(--paper); }
.pillars { display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); border-top: 1px solid var(--ink); border-left: 1px solid var(--ink); }
.pillar { min-width: 0; min-height: 350px; position: relative; padding: 1.3rem; border-right: 1px solid var(--ink); border-bottom: 1px solid var(--ink); display: flex; flex-direction: column; overflow: hidden; }
.pillar__num { font-family: "IBM Plex Mono", monospace; font-size: .68rem; }
.pillar__mark { width: 58px; height: 74px; margin: 2.25rem 0 auto; position: relative; color: var(--red); }
.pillar__mark::before { content: ""; position: absolute; top: 12px; right: 15px; bottom: 12px; left: 15px; border-right: 6px double currentColor; border-left: 6px double currentColor; }
.pillar__mark::after { content: ""; position: absolute; inset: 0; background: linear-gradient(currentColor,currentColor) top center/100% 7px no-repeat,linear-gradient(currentColor,currentColor) center 10px/82% 5px no-repeat,linear-gradient(currentColor,currentColor) center calc(100% - 10px)/82% 5px no-repeat,linear-gradient(currentColor,currentColor) bottom center/100% 7px no-repeat; }
.pillar--red .pillar__mark { color: var(--red); }
.pillar--blue .pillar__mark { color: var(--blue); }
.pillar--orange .pillar__mark { color: var(--orange); }
.pillar--focus { background: var(--ink); color: var(--white); }
.pillar--focus .pillar__mark { width: 58px; height: 88px; color: var(--white); }
.pillar--focus .pillar__mark::before { top: 13px; bottom: 13px; border: 0; background: linear-gradient(to bottom,var(--red) 0 33.333%,var(--blue) 33.333% 66.666%,var(--orange) 66.666%); }
.pillar h3 { margin: 1.5rem 0 .7rem; font-size: clamp(1.55rem, 1.8vw, 2rem); font-weight: 600; overflow-wrap: break-word; word-break: normal; hyphens: none; text-wrap: pretty; }
.pillar p { max-width: 33ch; margin-bottom: 0; color: var(--muted); font-size: .92rem; }
.pillar.pillar--focus p { color: rgba(255,255,255,.8); }
.founder-section { background: var(--ink); color: var(--white); }
.founder-split { display: grid; grid-template-columns: minmax(320px,.8fr) minmax(0,1.2fr); gap: clamp(2rem, 7vw, 8rem); align-items: center; }
.founder-photo { margin: 0; }
.founder-photo img { width: 100%; aspect-ratio: 4/5; object-fit: cover; object-position: center 22%; filter: saturate(.72); }
.founder-photo figcaption { min-height: 42px; padding-top: .7rem; border-bottom: 1px solid var(--line-light); font-family: "IBM Plex Mono", monospace; font-size: .64rem; letter-spacing: .05em; }
.founder-text blockquote { max-width: 740px; margin: .5rem 0 2rem; font-size: clamp(2.3rem, 5vw, 5rem); font-weight: 600; line-height: .98; letter-spacing: -.055em; }
.founder-text blockquote em { color: var(--orange); }
.founder-text > p { max-width: 640px; color: rgba(255,253,248,.76); }
.founder-text .eyebrow { color: var(--orange); }
.events-section { background: var(--white); }
.events-grid { display: grid; grid-template-columns: 1.35fr 1fr 1fr; border-top: 1px solid var(--ink); border-left: 1px solid var(--ink); }
.event-card { min-width: 0; display: block; border-right: 1px solid var(--ink); border-bottom: 1px solid var(--ink); background: var(--paper); color: var(--ink); transition: background .2s ease, color .2s ease, transform .2s ease; }
a.event-card:hover { background: var(--ink); color: var(--white); }
a.event-card:hover p { color: rgba(255,255,255,.78); }
.event-card:focus-visible { position: relative; z-index: 2; }
.event-card img, .event-card__img { width: 100%; aspect-ratio: 4/3; object-fit: cover; object-position: var(--card-position, center 38%); filter: saturate(.78); }
.event-card--featured img { aspect-ratio: 4/3; }
.event-card__body, .event-card__content { padding: 1.1rem; }
.event-card__body > span, .event-card__date { font-family: "IBM Plex Mono", monospace; color: var(--red); font-size: .65rem; letter-spacing: .07em; }
.event-card h3, .event-card__title { margin: .75rem 0 .45rem; font-size: clamp(1.6rem, 3vw, 2.65rem); }
.event-card p, .event-card__meta { margin-bottom: 0; color: var(--muted); font-size: .83rem; }
.event-card__link { min-height: 34px; margin-top: .75rem; display: inline-flex; align-items: center; font-size: .72rem; text-decoration: underline; text-decoration-color: var(--red); text-underline-offset: .3em; }
.event-card__overlay { display: none; }
.founder-friday, .block--red { background: var(--red); color: var(--white); }
.founder-friday .eyebrow, .block--red .eyebrow { color: var(--white); }
.founder-friday .chapter-heading > span { border-color: var(--white); }
.founder-friday .section-lede { color: rgba(255,255,255,.8); }
.founder-list { border-top: 1px solid var(--line-light); }
.founder-list article { min-height: 76px; display: grid; grid-template-columns: 48px minmax(190px,.85fr) minmax(220px,1.2fr) 90px; align-items: center; gap: 1rem; border-bottom: 1px solid var(--line-light); }
.founder-list article > span { font-family: "IBM Plex Mono", monospace; font-size: .65rem; }
.founder-list h3 { margin: 0; font-size: 1.15rem; letter-spacing: -.025em; }
.founder-list p { margin: 0; color: rgba(255,255,255,.8); font-size: .87rem; }
.founder-list b { justify-self: end; padding: .35rem .5rem; border: 1px solid rgba(255,255,255,.45); font-family: "IBM Plex Mono", monospace; font-size: .6rem; text-transform: uppercase; }
.press-section { background: var(--paper); }
.press-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); border-top: 1px solid var(--ink); border-left: 1px solid var(--ink); }
.press-card { min-height: 310px; position: relative; padding: 1.2rem; border-right: 1px solid var(--ink); border-bottom: 1px solid var(--ink); display: flex; flex-direction: column; transition: background .18s ease, color .18s ease; }
.press-card:hover { background: var(--blue); color: var(--white); }
.press-card > span, .press-card__source { font-family: "IBM Plex Mono", monospace; font-size: .65rem; letter-spacing: .05em; }
.press-card h3, .press-card__headline { margin: auto 0 1.5rem; font-size: clamp(1.35rem, 2.3vw, 2.15rem); line-height: 1.08; }
.press-card > b { align-self: flex-end; font-size: 1.25rem; }
.press-card__meta { display: flex; justify-content: space-between; }
.nayi-quiz { background: var(--paper); }
.quiz-layout { display: grid; grid-template-columns: minmax(0,.85fr) minmax(420px,1.15fr); gap: clamp(2rem,6vw,7rem); align-items: start; }
.quiz-layout .chapter-heading { grid-template-columns: 52px minmax(0,1fr); margin-bottom: 0; }
.quiz-card { min-height: 440px; padding: clamp(1.25rem,3vw,2.4rem); border: 1px solid var(--ink); background: var(--white); }
.quiz-step { margin: 0; padding: 0; border: 0; }
.quiz-step legend { max-width: 18ch; margin-bottom: 1.4rem; font-size: clamp(1.65rem,3vw,2.6rem); font-weight: 600; line-height: 1.04; letter-spacing: -.04em; }
.quiz-step label { min-height: 58px; display: flex; align-items: center; gap: .8rem; padding: .75rem .85rem; border-top: 1px solid var(--line); cursor: pointer; }
.quiz-step label:last-of-type { border-bottom: 1px solid var(--line); }
.quiz-step label:hover { background: var(--paper); }
.quiz-step input { width: 20px; height: 20px; flex: 0 0 auto; accent-color: var(--blue); }
.quiz-progress { margin: 1rem 0 .75rem; color: var(--muted); font-size: .68rem; }
.quiz-actions { display: flex; justify-content: space-between; gap: .7rem; }
.quiz-actions .btn:disabled { opacity: .45; cursor: not-allowed; }
.quiz-result { min-height: 390px; display: flex; flex-direction: column; justify-content: center; }
.quiz-result[hidden] { display: none; }
.quiz-result h3 { margin-bottom: .7rem; font-size: clamp(2rem,4vw,3.6rem); }
.quiz-result p { max-width: 46ch; color: var(--muted); }
.quiz-result .button-row { margin-top: 1rem; }
.quiz-restart { width: fit-content; min-height: 44px; margin-top: 1rem; padding: 0; border: 0; border-bottom: 1px solid var(--ink); background: transparent; cursor: pointer; }
.partners { padding: clamp(3rem,6vw,5rem) 0; border-top: 1px solid var(--ink); border-bottom: 1px solid var(--ink); background: var(--white); }
.partners__head { min-height: 44px; margin-bottom: 1rem; display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.partners__head .eyebrow { margin-bottom: .5rem; }
.partners__head h2 { max-width: 700px; margin: 0; font-size: clamp(1.8rem,3vw,3rem); }
.partners__toggle { min-height: 44px; padding: 0 .15rem; border: 0; border-bottom: 1px solid var(--ink); background: transparent; color: var(--ink); font-family: "IBM Plex Mono", monospace; font-size: .64rem; font-weight: 600; letter-spacing: .07em; text-transform: uppercase; cursor: pointer; }
.partners__toggle:hover { color: var(--red); border-color: var(--red); }
.partners__viewport {
  --carousel-fade: clamp(1.25rem, 4vw, 3.75rem);
  width: 100%;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent 0, #000 var(--carousel-fade), #000 calc(100% - var(--carousel-fade)), transparent 100%);
  mask-image: linear-gradient(to right, transparent 0, #000 var(--carousel-fade), #000 calc(100% - var(--carousel-fade)), transparent 100%);
}
.partners__track { width: max-content; display: flex; animation: partners-loop var(--partner-duration, 38s) linear infinite; will-change: transform; }
.partners__track--reverse { animation-direction: reverse; }
.partners__track.is-paused { animation-play-state: paused; }
.partners__list { flex: none; display: flex; gap: .7rem; padding-right: .7rem; }
.partners__list span { min-height: 46px; padding: .55rem .8rem; border: 1px solid var(--line); display: inline-flex; align-items: center; white-space: nowrap; font-size: .72rem; font-weight: 700; }
.partners__viewport--logos { margin-top: 1.4rem; padding-inline: var(--carousel-fade); }
.partner-logo-list { --logo-gap: 2.5rem; gap: var(--logo-gap); padding-right: var(--logo-gap); align-items: center; }
.partners__list .partner-logo,
.partners__list .partner-name { flex: none; width: max-content; height: 76px; min-height: 0; padding: 0; border: 0; justify-content: center; background: transparent; }
.partner-logo img { width: min(110px, calc(42px * var(--logo-ratio, 1))); height: auto; max-width: 110px; max-height: 42px; display: block; object-fit: contain; filter: none; opacity: 1; }
.partners__list .partner-logo--firmpoint { flex-direction: column; gap: 4px; }
.partner-logo--firmpoint img { width: 114px; height: auto; max-width: none; max-height: none; }
.partner-logo__descriptor { color: #111820; font-family: Arial, Helvetica, sans-serif; font-size: .875rem; font-weight: 600; line-height: 1.25; letter-spacing: 0; text-align: center; }
.partner-logo--round img { width: 62px; height: 62px; max-width: none; max-height: none; border-radius: 50%; clip-path: circle(50%); object-fit: cover; }
.partners__list .partner-name { color: var(--muted); font-size: .64rem; line-height: 1.25; text-align: center; white-space: normal; }
.partners__list .partner-logo--dark { background: transparent; }
.partner-logo--dark img { filter: brightness(0); }
.partner-logo--gold { position: relative; overflow: visible; border: 0 !important; background: transparent !important; }
.partner-logo--gold::after { display: none; }
.partner-logo--gold img { filter: none; opacity: 1; }
.collaborators__head { display: flex; align-items: baseline; justify-content: space-between; gap: 1rem; margin: 2.25rem 0 .8rem; padding-top: 1.5rem; border-top: 1px solid var(--line); }
.collaborators__head .eyebrow, .collaborators__head p { margin: 0; }
.collaborators__head p { color: var(--muted); font-size: .86rem; }
.final-cta { position: relative; padding: clamp(4.5rem, 8vw, 7.5rem) 0; border-top: 1px solid var(--ink); background: var(--paper); color: var(--ink); }
.final-cta__inner { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(340px, .95fr); gap: clamp(3rem, 8vw, 8rem); align-items: end; }
.final-cta .eyebrow { color: var(--red); }
.final-cta h2, .final-cta__title { max-width: 760px; margin: 0; font-size: clamp(3.4rem, 6.6vw, 6.9rem); font-weight: 600; line-height: .88; }
.final-cta h2 span, .final-cta__title span { display: block; margin-top: .18em; color: var(--blue); font-family: "DM Sans", Arial, sans-serif; font-size: .54em; font-style: normal; font-weight: 500; letter-spacing: -.045em; }
.final-cta__content { padding-left: clamp(1.5rem, 3vw, 3rem); border-left: 1px solid var(--ink); }
.final-cta p, .final-cta__sub { max-width: 560px; margin-bottom: 1.8rem; color: var(--muted); font-size: clamp(1rem, 1.4vw, 1.15rem); }
.final-cta__rule { position: absolute; left: 0; right: 0; bottom: 0; height: 8px; display: grid; grid-template-columns: repeat(3, 1fr); }
.final-cta__rule i:nth-child(1) { background: var(--red); }
.final-cta__rule i:nth-child(2) { background: var(--blue); }
.final-cta__rule i:nth-child(3) { background: var(--orange); }

/* Inner page hero */
.page-main { min-height: 70vh; }
.page-hero { min-height: clamp(520px, 72vh, 760px); position: relative; display: flex; align-items: end; overflow: hidden; background: var(--ink); color: var(--white); }
.page-hero__media { position: absolute; inset: 0; }
.page-hero__media img { width: 100%; height: 100%; object-fit: cover; object-position: var(--hero-position, center 44%); filter: saturate(.65) contrast(1.08); }
.page-hero__scrim { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(14,14,13,.89) 0%, rgba(14,14,13,.64) 48%, rgba(14,14,13,.18) 100%), linear-gradient(0deg, rgba(14,14,13,.55), transparent 50%); }
.page-hero__inner { position: relative; z-index: 2; padding-top: clamp(7rem, 16vh, 11rem); padding-bottom: clamp(2.8rem, 7vh, 5rem); }
.page-hero__kicker { color: var(--orange); }
.page-hero__title { max-width: 1000px; margin-bottom: 1.2rem; font-size: clamp(3rem, 7vw, 7.2rem); font-weight: 600; line-height: .9; }
.page-hero__title .blue { color: #73a7ff; }
.page-hero__title .red { color: #f06366; }
.page-hero__title .orange { color: #ffac4f; }
.page-hero__lede { max-width: 650px; margin-bottom: 1.6rem; color: rgba(255,255,255,.82); font-size: clamp(1rem, 1.5vw, 1.2rem); }
.content-section { background: var(--paper); }
.content-section--paper { background: var(--white); }
.content-section--cream { background: var(--paper); }
.content-section--ink { background: var(--ink); color: var(--white); }
.content-section--blue { background: var(--blue); color: var(--white); }
.content-section--red { background: var(--red); color: var(--white); }
.content-section--orange { background: var(--orange); color: var(--ink); }
.content-section--ink .section-kicker, .content-section--blue .section-kicker { color: var(--orange); }
.content-section--red .section-kicker { color: var(--white); }
.content-section--orange .section-kicker { color: var(--ink); }
.content-section--ink .section-heading em, .content-section--blue .section-heading em { color: var(--orange); }
.content-section--red .section-heading em { color: var(--white); }
.content-section--orange .section-heading em { color: var(--blue); }
.content-section--ink .section-lede, .content-section--blue .section-lede { color: rgba(255,255,255,.76); }
.section-accent--orange { border-top: 7px solid var(--orange); }
.editorial-split { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(2rem, 7vw, 7rem); }
.editorial-copy { max-width: 650px; }
.editorial-copy p { font-size: clamp(1.02rem, 1.45vw, 1.18rem); }
.about-origin { overflow: hidden; }
.about-origin__grid { display: grid; grid-template-columns: minmax(0,1.08fr) minmax(320px,.92fr); gap: clamp(2.5rem,7vw,7rem); align-items: center; }
.about-origin__copy .section-heading { margin-bottom: 1.8rem; }
.about-origin__photo, .about-founder__photo { margin: 0; }
.about-origin__photo { position: relative; }
.about-origin__photo::before { content: ""; position: absolute; z-index: -1; width: 45%; aspect-ratio: 1; top: -1.25rem; right: -1.25rem; background: var(--orange); }
.about-origin__photo img { width: 100%; aspect-ratio: 4/5; object-fit: cover; object-position: center 42%; }
.about-origin__photo figcaption, .about-founder__photo figcaption { padding: .7rem 0; border-bottom: 1px solid currentColor; font-family: "IBM Plex Mono",monospace; font-size: .64rem; letter-spacing: .06em; line-height: 1.45; text-transform: uppercase; }
.about-founder__grid { display: grid; grid-template-columns: minmax(260px,.72fr) minmax(0,1.28fr); gap: clamp(2.5rem,8vw,8rem); align-items: center; }
.about-founder__photo img { width: 100%; aspect-ratio: 4/5; object-fit: cover; object-position: center 18%; }
.about-founder__photo figcaption { color: rgba(255,255,255,.72); border-color: var(--line-light); }
.about-founder__copy .section-heading { margin-bottom: 1.8rem; }
.about-founder__copy .editorial-copy { max-width: 700px; }
.about-founder__copy .editorial-copy p { color: rgba(255,255,255,.78); }
.about-founder__copy .btn { margin-top: .65rem; }
.about-structure-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); margin-top: 3rem; border-top: 1px solid var(--ink); border-left: 1px solid var(--ink); }
.about-structure-card { min-height: 300px; padding: clamp(1.15rem,2.5vw,1.75rem); display: flex; flex-direction: column; border-right: 1px solid var(--ink); border-bottom: 1px solid var(--ink); }
.about-structure-card > span { width: fit-content; padding-bottom: .55rem; border-bottom: 4px solid var(--red); color: var(--red); font-family: "IBM Plex Mono",monospace; font-size: .65rem; letter-spacing: .07em; }
.about-structure-card:nth-child(2) > span { color: var(--blue); border-color: var(--blue); }
.about-structure-card:nth-child(3) > span { color: #9a5200; border-color: var(--orange); }
.about-structure-card h3 { max-width: 12ch; margin: auto 0 .8rem; font-size: clamp(1.55rem,2.7vw,2.35rem); }
.about-structure-card p { margin: 0; color: var(--muted); }
.fact-grid, .program-grid, .join-grid, .contact-grid, .chapter-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); margin-top: 3rem; border-top: 1px solid currentColor; border-left: 1px solid currentColor; }
.fact-card, .program-card, .join-card, .contact-card, .chapter-card { min-width: 0; min-height: 260px; position: relative; padding: 1.35rem; border-right: 1px solid currentColor; border-bottom: 1px solid currentColor; }
.join-card { display: flex; flex-direction: column; }
.fact-card { display: flex; flex-direction: column; }
.fact-card__num { color: var(--red); font-size: clamp(3rem, 7vw, 6rem); font-weight: 700; line-height: 1; letter-spacing: -.07em; }
.fact-card strong { margin-top: auto; font-size: 1.1rem; }
.fact-card p, .program-card p, .join-card p, .contact-card p, .chapter-card p { color: var(--muted); }
.program-grid { grid-template-columns: repeat(3,minmax(0,1fr)); }
.program-card__num, .join-card__num { display: block; margin-bottom: clamp(2rem, 5vw, 4rem); color: var(--red); font-size: .66rem; letter-spacing: .07em; }
.program-card h3, .join-card h3, .contact-card h3, .chapter-card h3 { margin-bottom: .8rem; font-size: clamp(1.55rem, 2.7vw, 2.5rem); }
.program-card .card-link, .join-card .btn, .contact-card .card-link { margin-top: 1rem; }
.join-card__actions { display: flex; flex-wrap: wrap; align-items: center; gap: .5rem 1rem; margin-top: auto; }
.join-card__actions .btn, .join-card__actions .text-link { margin-top: 1rem; }
.chapter-grid { grid-template-columns: repeat(3,minmax(0,1fr)); counter-reset: chapters; }
.chapter-card { min-height: 360px; padding-top: 7rem; }
.chapter-card::before { content: attr(data-number); position: absolute; top: 1.2rem; left: 1.2rem; width: 46px; height: 46px; display: grid; place-items: center; border-radius: 50%; background: var(--red); color: var(--white); font-family: "IBM Plex Mono", monospace; font-size: .65rem; }
.chapter-card:nth-child(2)::before { background: var(--blue); }
.chapter-card:nth-child(3)::before { background: var(--orange); color: var(--ink); }
.chapter-card__handle { font-family: "IBM Plex Mono", monospace; font-size: .69rem; color: var(--blue); }
.image-panel { margin: 0; }
.image-panel img { width: 100%; height: 100%; min-height: 380px; object-fit: cover; filter: saturate(.76); }
.event-feature { display: grid; grid-template-columns: minmax(300px,.9fr) 1.1fr; gap: clamp(2rem, 7vw, 7rem); align-items: center; }
.event-feature img { width: 100%; max-height: 620px; object-fit: cover; }
.event-feature__body p { max-width: 620px; }
.event-gallery__header { display: grid; grid-template-columns: minmax(0,1fr) minmax(260px,.62fr); gap: clamp(1.5rem,5vw,5rem); align-items: end; margin-bottom: clamp(2rem,5vw,4rem); }
.event-gallery__header .section-heading { margin-bottom: 0; }
.event-gallery__intro { max-width: 540px; margin: 0; color: var(--muted); font-size: clamp(.95rem,1.25vw,1.08rem); }
.event-gallery__credit { display: block; margin-top: .75rem; color: var(--muted); font-family: "IBM Plex Mono", monospace; font-size: .62rem; letter-spacing: .04em; text-transform: uppercase; }
.event-gallery__credit a { color: var(--ink); text-decoration: underline; text-decoration-color: var(--red); text-underline-offset: .25em; }
.event-gallery__credit a:hover, .event-gallery__credit a:focus-visible { color: var(--blue); }
.event-photo-grid { columns: 3 280px; column-gap: clamp(.75rem,1.5vw,1.25rem); }
.event-photo { width: 100%; break-inside: avoid; margin: 0 0 clamp(.75rem,1.5vw,1.25rem); overflow: hidden; background: var(--paper-deep); }
.event-photo img { display: block; width: 100%; height: auto; max-width: none; filter: none; }
.event-list, .faq-list { margin-top: 3rem; border-top: 1px solid currentColor; }
.event-row { display: grid; grid-template-columns: minmax(170px,.33fr) 1fr; gap: clamp(1.5rem, 5vw, 5rem); padding: 1.5rem 0; border-bottom: 1px solid currentColor; }
.event-row__date { color: var(--red); font-family: "IBM Plex Mono", monospace; font-size: .69rem; text-transform: uppercase; }
.event-row h3 { margin-bottom: .45rem; font-size: clamp(1.4rem, 2.3vw, 2.2rem); }
.event-row p { max-width: 680px; margin-bottom: 0; color: var(--muted); }
.content-section--ink .event-row__date, .content-section--blue .event-row__date { color: var(--gold-light); }
.content-section--ink .event-row p, .content-section--blue .event-row p { color: rgba(255,255,255,.84); }
.speaker-grid { display: grid; grid-template-columns: repeat(5,minmax(0,1fr)); margin-top: 2.5rem; border-top: 1px solid var(--ink); border-left: 1px solid var(--ink); }
.speaker-card { min-width: 0; margin: 0; border-right: 1px solid var(--ink); border-bottom: 1px solid var(--ink); background: var(--white); }
.speaker-card__portrait { aspect-ratio: 4/5; overflow: hidden; background: var(--paper-deep); }
.speaker-card__portrait img { width: 100%; height: 100%; object-fit: cover; object-position: center top; filter: none; }
.speaker-card figcaption, .speaker-card__caption { min-height: 88px; padding: .8rem; }
.speaker-card strong { display: block; margin-bottom: .25rem; font-size: clamp(.9rem,1.3vw,1.05rem); line-height: 1.12; letter-spacing: -.025em; }
.speaker-card span { display: block; color: var(--muted); font-size: .69rem; line-height: 1.35; }
.join-grid, .contact-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
.faq-item { border-bottom: 1px solid rgba(255,255,255,.35); }
.faq-item summary { min-height: 62px; padding: 1rem 2.2rem 1rem 0; display: flex; align-items: center; position: relative; cursor: pointer; font-size: 1.08rem; font-weight: 600; list-style: none; }
.faq-item summary::after { content: "+"; position: absolute; right: .25rem; font-size: 1.4rem; }
.faq-item[open] summary::after { content: "−"; }
.faq-item p { max-width: 700px; color: rgba(255,255,255,.8); }
.simple-cta { position: relative; padding: clamp(3rem, 6vw, 5rem) 0; border-top: 1px solid var(--ink); background: var(--paper); color: var(--ink); }
.simple-cta::before { content: ""; position: absolute; inset: 0 0 auto; height: 7px; background: linear-gradient(to right, var(--red) 0 33.333%, var(--blue) 33.333% 66.666%, var(--orange) 66.666%); }
.simple-cta__inner { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; }
.simple-cta h2 { max-width: 800px; margin: 0; font-size: clamp(2rem, 5vw, 4.8rem); }

/* Forms */
.form-section { background: var(--white); }
.form-layout { display: grid; grid-template-columns: minmax(260px,.72fr) minmax(0,1.28fr); gap: clamp(2rem,7vw,7rem); align-items: start; }
.form-intro { max-width: 500px; }
.form-intro p { color: var(--muted); }
.form-shell { padding: clamp(1.1rem,3vw,2rem); border: 1px solid var(--ink); background: var(--paper); }
.form-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 1rem; }
.contact-form { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 1.2rem 1rem; position: relative; overflow: hidden; padding: clamp(1.5rem,3vw,2.35rem); padding-top: clamp(1.9rem,3.6vw,2.75rem); border: 1px solid var(--ink); background: var(--paper); }
.contact-form::before { content: ""; position: absolute; inset: 0 0 auto; height: 7px; background: linear-gradient(to right,var(--red) 0 33.333%,var(--blue) 33.333% 66.666%,var(--orange) 66.666%); }
.contact-form .form-field--full, .contact-form .form-consent, .contact-form .form-actions { grid-column: 1 / -1; }
.contact-form[aria-busy="true"] { cursor: wait; }
.form-field { min-width: 0; display: flex; flex-direction: column; gap: .5rem; }
.form-field--full { grid-column: 1 / -1; }
.form-field label, .newsletter-form > label { font-size: .8rem; font-weight: 700; }
.form-required { color: var(--red); }
.form-field input, .form-field select, .form-field textarea, .newsletter-form input { width: 100%; min-height: 54px; border: 1px solid #706b63; border-radius: 0; background: var(--white); color: var(--ink); padding: .85rem 1rem; transition: border-color .16s ease, background-color .16s ease, outline-color .16s ease; }
.form-field input:hover, .form-field select:hover, .form-field textarea:hover { border-color: var(--ink); }
.form-field input, .form-field select, .form-field textarea, .newsletter-form input { font-size: 1rem; }
.form-field input:focus-visible, .form-field select:focus-visible, .form-field textarea:focus-visible, .newsletter-form input:focus-visible { border-color: var(--blue); outline: 3px solid rgba(23,73,155,.24); outline-offset: 1px; box-shadow: none; }
.form-field textarea { min-height: 185px; resize: vertical; }
.form-field input::placeholder, .form-field textarea::placeholder, .newsletter-form input::placeholder { color: #777168; opacity: 1; }
.select-control { position: relative; }
.select-control select { appearance: none; -webkit-appearance: none; padding-right: 4.25rem; cursor: pointer; }
.select-control__icon { width: 54px; position: absolute; inset: 0 0 0 auto; display: grid; place-items: center; border-left: 1px solid var(--line); color: var(--blue); pointer-events: none; transition: background-color .16s ease, color .16s ease; }
.select-control:focus-within .select-control__icon { background: var(--blue); color: var(--white); }
.form-consent { grid-column: 1 / -1; display: grid; grid-template-columns: 24px minmax(0,1fr); gap: .75rem; align-items: start; margin-top: .1rem; padding: 1rem; border: 1px solid var(--line); background: rgba(255,253,248,.58); font-size: .78rem; line-height: 1.5; cursor: pointer; }
.form-consent:hover { border-color: var(--ink); }
.form-consent input { width: 22px; height: 22px; margin: .05rem 0 0; accent-color: var(--red); }
.form-consent a { text-decoration: underline; text-decoration-color: var(--red); text-underline-offset: .2em; }
.form-actions { grid-column: 1 / -1; display: grid; grid-template-columns: auto minmax(0,1fr); align-items: center; gap: 1rem; padding-top: .15rem; }
.contact-form .form-actions .btn { min-width: 190px; }
.form-actions .btn[disabled], .newsletter-form .btn[disabled] { opacity: .58; cursor: wait; }
.form-note { margin: .7rem 0 0; color: var(--muted); font-size: .73rem; }
.form-status { min-height: 1.5em; margin: 0; color: var(--muted); font-size: .8rem; font-weight: 600; }
.form-status.is-success { color: #1b6a38; }
.form-status.is-error { color: var(--red-dark); }
.form-honeypot { position: absolute !important; width: 1px !important; height: 1px !important; overflow: hidden !important; clip: rect(0 0 0 0) !important; clip-path: inset(50%) !important; white-space: nowrap !important; }

/* Newsletter dialog */
.newsletter-dialog { position: fixed; z-index: 300; inset: 0; display: grid; place-items: center; padding: var(--gutter); overscroll-behavior: contain; }
.newsletter-dialog[hidden] { display: none; }
.newsletter-dialog__backdrop { position: absolute; inset: 0; width: 100%; height: 100%; padding: 0; border: 0; background: rgba(10,10,9,.68); backdrop-filter: blur(5px); cursor: default; }
.newsletter-dialog__panel { width: min(100%,560px); position: relative; z-index: 1; padding: clamp(1.35rem,4vw,2.6rem); border-top: 7px solid var(--red); border-image: linear-gradient(to right,var(--red) 0 33.333%,var(--blue) 33.333% 66.666%,var(--orange) 66.666% 100%) 1; background: var(--paper); box-shadow: 0 24px 80px rgba(0,0,0,.28); }
.newsletter-dialog__panel { max-height: calc(100dvh - var(--gutter) * 2); overflow-y: auto; overscroll-behavior: contain; }
.newsletter-dialog__panel h2 { margin: 0 2rem .7rem 0; font-size: clamp(2.25rem,6vw,4rem); }
.newsletter-dialog__panel > p { max-width: 44ch; color: var(--muted); }
.newsletter-dialog__close { position: absolute; top: .75rem; right: .75rem; width: 44px; height: 44px; border: 1px solid var(--ink); background: transparent; color: var(--ink); font-size: 1.6rem; line-height: 1; cursor: pointer; }
.newsletter-form__row { display: grid; grid-template-columns: minmax(0,1fr) auto; margin-top: .45rem; }
.newsletter-form__row input { border-right: 0; }
.newsletter-form__row .btn { min-height: 48px; }

/* Members: deliberately plain and portrait-led */
.team-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: clamp(1.2rem, 2.5vw, 2rem); margin-top: 3rem; }
.person-card { min-width: 0; position: relative; padding: 0 0 1.1rem; border: 0; border-bottom: 1px solid currentColor; background: transparent; box-shadow: none; }
.person-card__portrait { width: 100%; aspect-ratio: 1; overflow: hidden; margin-bottom: .9rem; background: var(--paper-deep); }
.person-card__portrait img { width: 100%; height: 100%; object-fit: cover; object-position: var(--portrait-position, center 18%); filter: saturate(.88); }
.person-card h3 { margin-bottom: .25rem; font-size: clamp(1.05rem, 2vw, 1.55rem); letter-spacing: -.03em; }
.person-card__role { margin: 0; color: var(--red); font-family: "IBM Plex Mono", monospace; font-size: .65rem; font-weight: 600; line-height: 1.35; text-transform: uppercase; }
.content-section--ink .person-card__role { color: var(--orange); }
.person-card > p:not(.person-card__role) { margin: .5rem 0 0; color: var(--muted); font-size: .82rem; }
.content-section--ink .person-card > p:not(.person-card__role) { color: rgba(255,255,255,.67); }
.person-card__badge { display: inline-block; width: fit-content; margin-bottom: .55rem; padding: .28rem .45rem; background: var(--red); color: var(--white); font-family: "IBM Plex Mono", monospace; font-size: .62rem; font-weight: 600; letter-spacing: .06em; line-height: 1.25; text-transform: uppercase; }
.content-section--ink .person-card__badge { background: var(--orange); color: var(--ink); }
.person-card__badge--gold { position: relative; isolation: isolate; overflow: hidden; border: 1px solid rgba(117,76,4,.36); background: linear-gradient(120deg,var(--gold-deep),var(--gold) 38%,var(--gold-light) 52%,var(--gold) 68%,var(--gold-deep)); box-shadow: 0 0 16px rgba(216,170,61,.3); color: #211706; font-weight: 700; }
.person-card__badge--gold > span { position: relative; z-index: 2; }
.person-card__badge--gold::after { content: ""; position: absolute; z-index: 1; top: -50%; bottom: -50%; left: -45%; width: 28%; pointer-events: none; background: rgba(255,255,255,.72); filter: blur(1px); transform: translateX(-180%) skewX(-18deg); animation: president-badge-shine 3.8s ease-in-out infinite; }
.person-card--president { box-shadow: none; }

/* Legal */
.legal-hero { padding: clamp(7rem, 14vw, 11rem) 0 clamp(2.8rem, 6vw, 5rem); background: var(--ink); color: var(--white); }
.legal-hero h1 { margin-bottom: .8rem; font-size: clamp(3.2rem, 8vw, 7rem); }
.legal-hero p { margin: 0; color: rgba(255,255,255,.68); }
.legal-layout { display: grid; grid-template-columns: 220px minmax(0,760px); justify-content: space-between; gap: clamp(2rem, 8vw, 8rem); padding-top: clamp(3rem, 7vw, 6rem); padding-bottom: clamp(4rem, 9vw, 8rem); }
.legal-nav { height: fit-content; position: sticky; top: 100px; border-top: 1px solid var(--ink); }
.legal-nav a { min-height: 42px; display: flex; align-items: center; border-bottom: 1px solid var(--line); font-family: "IBM Plex Mono", monospace; font-size: .67rem; text-transform: uppercase; }
.legal-content h2 { margin: 2.8rem 0 .8rem; font-size: clamp(1.7rem, 3vw, 2.7rem); }
.legal-content h2:first-child { margin-top: 0; }
.legal-content p, .legal-content li { color: #403d38; }
.legal-content a { text-decoration: underline; text-decoration-color: var(--red); text-underline-offset: .2em; }

/* Footer */
.footer { padding: clamp(3rem, 7vw, 6rem) 0 1.5rem; background: var(--ink); color: var(--white); }
.footer__grid { display: grid; grid-template-columns: minmax(230px,1.7fr) repeat(4,minmax(110px,1fr)); gap: clamp(1.5rem,3.5vw,4rem); }
.footer__brand { display: inline-flex; align-items: center; gap: .8rem; font-size: 1.15rem; font-weight: 700; letter-spacing: .15em; }
.footer__brand img { width: 64px; height: 64px; border-radius: 50%; object-fit: contain; box-shadow: none; }
.footer__intro p, .footer__copy { max-width: 330px; margin-top: 1rem; color: rgba(255,255,255,.75); font-size: .92rem; }
.footer h2, .footer__col-title { margin-bottom: .8rem; color: var(--gold-light); font-family: "IBM Plex Mono", monospace; font-size: .72rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; }
.footer ul, .footer__list { list-style: none; margin: 0; padding: 0; }
.footer li a, .footer__list a { min-height: 40px; display: inline-flex; align-items: center; color: rgba(255,255,255,.84); font-size: .89rem; }
.footer li a:hover, .footer__list a:hover { color: var(--orange); }
.footer__bottom { display: flex; justify-content: space-between; gap: 1.2rem; margin-top: clamp(3rem, 7vw, 6rem); padding-top: 1.2rem; border-top: 1px solid var(--line-light); color: rgba(255,255,255,.7); font-family: "IBM Plex Mono", monospace; font-size: .75rem; letter-spacing: .02em; }
.footer__bottom p { margin: 0; }
.footer__bottom > p:nth-child(2) { display: flex; flex-wrap: wrap; gap: 1rem; }
.footer__credit { margin-left: auto !important; }
.footer__credit a { color: var(--white); text-decoration: underline; text-decoration-color: var(--orange); text-underline-offset: .25em; }
.footer__credit a:hover { color: var(--orange); }
.footer__brand-tag { font-size: 1.2rem; letter-spacing: .14em; }

/* Compatibility for previous content classes */
.sh { margin-bottom: 2.5rem; }
.sh__eyebrow { display: inline-flex; align-items: center; gap: .45rem; margin-bottom: 1rem; color: var(--red); font-family: "IBM Plex Mono", monospace; font-size: .7rem; letter-spacing: .08em; text-transform: uppercase; }
.sh__title { margin: 0; }
.sh__sub { max-width: 690px; color: var(--muted); }
.content-section--ink .sh__sub, .content-section--blue .sh__sub, .block--red .sh__sub { color: rgba(255,255,255,.75); }
.display-xl { font-size: clamp(3rem, 8vw, 7rem); }
.lead { font-size: 1.15rem; }
.blue { color: var(--blue); } .red { color: var(--red); } .orange { color: var(--orange); }
.press-card__arrow { float: right; }

/* September 2026 content and layout refinements */
.home-hero__inclusive { margin-top: auto; padding-top: 1.1rem; border-top: 1px solid var(--line); display: flex; align-items: center; gap: .65rem; color: var(--muted); font-size: .7rem !important; letter-spacing: .045em; text-transform: uppercase; }
.home-hero__inclusive span { width: 8px; height: 8px; flex: 0 0 auto; border-radius: 50%; background: var(--red); }
.home-hero .hero__ctas { max-width: 620px; display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); }
.home-hero .hero__ctas .btn { width: 100%; }
.home-hero .hero__ctas .btn--donate { grid-column: 1 / -1; min-height: 50px; }
.home-hero__slide--networking { object-position: center 42%; }
.home-hero__slide--expo { object-position: center 48%; }
.network__story-note { min-width: 0; padding: clamp(1rem,2.2vw,1.6rem); border-left: 1px solid var(--ink); display: flex; flex-direction: column; justify-content: center; }
.network__story-note .mono { margin-bottom: .7rem; color: var(--red); font-size: .63rem; letter-spacing: .07em; text-transform: uppercase; }
.network__story-note p { max-width: 32ch; margin: 0; font-size: clamp(.9rem,1.3vw,1.05rem); line-height: 1.5; }
.network__photo-strip--three { grid-template-columns: repeat(3,minmax(0,1fr)); }
.home-event-list { margin-top: clamp(2rem,4vw,3rem); border-top: 1px solid var(--ink); }
.home-event-list a { min-height: 88px; padding: 1rem 0; display: grid; grid-template-columns: minmax(135px,.28fr) minmax(0,1fr) minmax(120px,.34fr) auto; gap: clamp(.8rem,2.5vw,2.5rem); align-items: center; border-bottom: 1px solid var(--ink); transition: padding .18s ease, color .18s ease; }
.home-event-list a:hover { padding-inline: .8rem; color: var(--red); }
.home-event-list span { font-family: "IBM Plex Mono",monospace; font-size: .65rem; letter-spacing: .06em; text-transform: uppercase; }
.home-event-list h3 { margin: 0; font-size: clamp(1.35rem,2.7vw,2.5rem); }
.home-event-list em { color: var(--muted); font-family: "DM Sans",sans-serif; font-size: .78rem; font-style: normal; }
.home-event-list b { font-size: 1.25rem; }
.partner-logo--wide img { width: min(155px, calc(46px * var(--logo-ratio, 1))); max-width: 155px; max-height: 46px; }

.upcoming-events__grid { margin-top: 2.5rem; display: grid; grid-template-columns: minmax(0,.8fr) minmax(0,1.2fr); gap: clamp(2rem,6vw,6rem); align-items: end; }
.upcoming-events__date { max-width: 12ch; margin: 0; color: var(--blue); font-size: clamp(2.5rem,6vw,6rem); font-weight: 700; line-height: .9; letter-spacing: -.065em; }
.flagship-event { overflow: hidden; }
.flagship-event__grid { display: grid; grid-template-columns: minmax(0,.82fr) minmax(420px,1.18fr); gap: clamp(2rem,7vw,7rem); align-items: center; }
.flagship-event__copy .section-lede { margin-bottom: 1.8rem; }
.flagship-event__image { margin: 0; }
.flagship-event__image img { width: 100%; aspect-ratio: 4/3; object-fit: cover; object-position: center 45%; }
.flagship-event__image figcaption { padding: .65rem 0; border-bottom: 1px solid var(--line-light); color: rgba(255,255,255,.72); font-family: "IBM Plex Mono",monospace; font-size: .64rem; letter-spacing: .06em; text-transform: uppercase; }
.event-rail__head { display: flex; align-items: end; justify-content: space-between; gap: 2rem; margin-bottom: 2rem; }
.event-rail__head .mono { flex: 0 0 auto; margin: 0; color: var(--muted); font-size: .65rem; letter-spacing: .07em; text-transform: uppercase; }
.event-rail__nav { display: flex; align-items: center; gap: .65rem; }
.event-rail__button { width: 48px; height: 48px; display: grid; place-items: center; border: 1px solid var(--ink); background: transparent; color: var(--ink); cursor: pointer; font-size: 1.35rem; line-height: 1; transition: background .18s ease,color .18s ease,opacity .18s ease; }
.event-rail__button:hover:not(:disabled) { background: var(--ink); color: var(--white); }
.event-rail__button:disabled { opacity: .3; cursor: default; }
.event-rail { --rail-edge: max(var(--gutter),calc((100vw - var(--container))/2)); display: grid; grid-auto-flow: column; grid-auto-columns: clamp(255px,29vw,390px); gap: 1px; overflow-x: auto; overscroll-behavior-inline: contain; scroll-snap-type: inline mandatory; scrollbar-width: thin; scrollbar-color: var(--ink) transparent; padding: 0 var(--rail-edge) 1.2rem; -webkit-mask-image: linear-gradient(to right,transparent 0,#000 max(1rem,var(--gutter)),#000 calc(100% - max(1rem,var(--gutter))),transparent 100%); mask-image: linear-gradient(to right,transparent 0,#000 max(1rem,var(--gutter)),#000 calc(100% - max(1rem,var(--gutter))),transparent 100%); }
.event-rail .event-card { scroll-snap-align: start; border: 1px solid var(--ink); }
.event-rail { scroll-padding-inline: var(--rail-edge); }
.event-rail .event-card--flyer img { aspect-ratio: 2/3; object-fit: contain; object-position: center; background: var(--white); filter: none; }
.event-rail:has(.event-card--flyer) { align-items: start; }
.event-card--flyer h3 { font-size: clamp(1.4rem,2.5vw,2rem); }
.event-card__art { aspect-ratio: 4/3; padding: 1.1rem; display: flex; flex-direction: column; justify-content: space-between; background: var(--blue); color: var(--white); }
.event-card__art span { font-family: "IBM Plex Mono",monospace; font-size: .65rem; letter-spacing: .08em; }
.event-card__art strong { font-size: clamp(2rem,4vw,3.5rem); line-height: .86; letter-spacing: -.055em; }
.speaker-card { color: var(--ink); transition: transform .18s ease, background .18s ease; }
a.speaker-card:hover { transform: translateY(-3px); background: var(--paper); }
.speaker-card__caption { display: block; }

.branch-card__media { height: 150px; margin: -7rem -1.35rem 1.25rem; overflow: hidden; border-bottom: 1px solid var(--ink); background: var(--white); }
.branch-card__media img { width: 100%; height: 100%; object-fit: cover; object-position: center; filter: none; }
.branch-card__media--logo { padding: 1rem 1rem 1rem 4.75rem; }
.branch-card__media--logo img { width: auto; max-width: 100%; margin-inline: auto; object-fit: contain; }
.chapter-card--media { padding-top: 7rem; }

.program-choice-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); margin-top: 3rem; border-top: 1px solid var(--ink); border-left: 1px solid var(--ink); }
.program-choice { min-height: 400px; padding: clamp(1.2rem,3vw,2rem); border-right: 1px solid var(--ink); border-bottom: 1px solid var(--ink); display: flex; flex-direction: column; }
.program-choice:nth-child(2) { background: var(--blue); color: var(--white); }
.program-choice__num { color: var(--red); font-family: "IBM Plex Mono",monospace; font-size: .66rem; letter-spacing: .07em; }
.program-choice:nth-child(2) .program-choice__num { color: var(--gold-light); }
.program-choice h3 { margin: auto 0 1rem; font-size: clamp(2.4rem,5vw,4.8rem); }
.program-choice p { max-width: 44ch; margin-bottom: 1.5rem; color: var(--muted); }
.program-choice:nth-child(2) p { color: rgba(255,255,255,.8); }
.program-choice .btn { margin-top: auto; }
.program-detail-hero { min-height: 500px; display: grid; place-items: end start; background: var(--ink); color: var(--white); }
.program-detail-hero__inner { padding-block: clamp(6rem,12vw,10rem) clamp(3rem,7vw,5rem); }
.program-detail-hero h1 { max-width: 900px; margin: 0 0 1rem; font-size: clamp(3.5rem,8vw,8rem); }
.program-detail-hero p { max-width: 680px; color: rgba(255,255,255,.8); font-size: clamp(1rem,1.6vw,1.25rem); }
.program-detail-hero .button-row { margin-top: 1.6rem; }
.detail-grid { display: grid; grid-template-columns: minmax(250px,.65fr) minmax(0,1.35fr); gap: clamp(2rem,7vw,7rem); align-items: start; }
.detail-list { margin: 0; padding: 0; list-style: none; border-top: 1px solid currentColor; }
.detail-list li { padding: 1.1rem 0; display: grid; grid-template-columns: 36px 1fr; gap: 1rem; border-bottom: 1px solid currentColor; }
.detail-list span { color: var(--red); font-family: "IBM Plex Mono",monospace; font-size: .65rem; }
.steps-grid { display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); margin-top: 2.5rem; border-top: 1px solid currentColor; border-left: 1px solid currentColor; }
.step-card { min-height: 245px; padding: 1.1rem; border-right: 1px solid currentColor; border-bottom: 1px solid currentColor; }
.step-card span { color: var(--orange); font-family: "IBM Plex Mono",monospace; font-size: .65rem; }
.step-card h3 { margin: 4rem 0 .7rem; font-size: clamp(1.35rem,2.2vw,2rem); }
.step-card p { margin: 0; color: rgba(255,255,255,.78); font-size: .88rem; }
.mentor-empty { margin-top: 2.5rem; padding: clamp(1.4rem,4vw,3rem); border: 1px solid var(--ink); display: grid; grid-template-columns: minmax(0,1fr) auto; gap: 2rem; align-items: center; }
.mentor-empty h3 { margin-bottom: .55rem; font-size: clamp(1.7rem,3vw,2.8rem); }
.mentor-empty p { margin: 0; color: var(--muted); }

@media (max-width: 1024px) {
  .nav__links { gap: 1rem; }
  .home-hero { grid-template-columns: 1fr .85fr; }
  .home-hero__copy { padding-right: 2rem; }
  .home-hero h1 { font-size: clamp(3rem, 6vw, 4.8rem); }
  .chapter-heading--spread { grid-template-columns: 54px 1fr; }
  .chapter-heading--spread > .btn { grid-column: 2; }
  .pillars { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .program-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .speaker-grid { grid-template-columns: repeat(4,minmax(0,1fr)); }
  .flagship-event__grid { grid-template-columns: minmax(0,.9fr) minmax(360px,1.1fr); }
  .steps-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .footer__grid { grid-template-columns: repeat(4,minmax(0,1fr)); gap: 2rem; }
  .footer__grid > div:first-child { grid-column: 1 / -1; padding-bottom: 1.5rem; border-bottom: 1px solid var(--line-light); }
  .about-structure-grid { grid-template-columns: 1fr; }
  .about-structure-card { min-height: 0; display: grid; grid-template-columns: minmax(150px,.45fr) minmax(190px,.75fr) minmax(0,1fr); gap: 1.25rem; align-items: start; }
  .about-structure-card h3 { max-width: 14ch; margin: 0; }
}

@media (max-width: 820px) {
  .nav { height: 66px; }
  .nav__links, .nav > .nav__cta { display: none; }
  .nav__toggle { display: inline-flex; border: 0; }
  .home-hero { min-height: auto; display: flex; flex-direction: column; background: var(--paper); }
  .home-hero__media { order: 1; min-height: 390px; height: 52svh; max-height: 560px; aspect-ratio: auto; }
  .home-hero__slide--audience { object-position: center 42%; }
  .home-hero__slide--laughter { object-position: center 47%; }
  .home-hero__slide--stage { object-position: center 43%; }
  .home-hero__copy { z-index: 4; order: 2; width: min(100% - (var(--gutter) * 2), 720px); min-height: 0; margin: 0 auto; padding: clamp(1.5rem, 4vw, 2.2rem) 0; background: var(--paper); }
  .home-hero__media figcaption { bottom: 1.2rem; }
  .home-hero__progress { bottom: 0; }
  .hero-index { display: none; }
  .home-hero h1 { margin: 0 0 1.1rem; }
  .hero-proof { margin-top: 1.4rem; padding-top: 1rem; }
  .impact__grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .impact__item:nth-child(3) { border-left: 1px solid var(--ink); }
  .network__grid, .founder-split, .event-feature, .editorial-split, .flagship-event__grid, .upcoming-events__grid, .detail-grid { grid-template-columns: 1fr; }
  .about-origin__grid, .about-founder__grid { grid-template-columns: 1fr; }
  .about-origin__photo { max-width: 560px; }
  .about-founder__photo { max-width: 460px; }
  .event-gallery__header { grid-template-columns: 1fr; align-items: start; }
  .event-photo-grid { columns: 2; }
  .network__copy { max-width: 620px; padding-top: 0; }
  .network__media { grid-template-columns: min(38vw, 220px) minmax(0, 1fr); }
  .network__media-info { grid-template-rows: minmax(150px,1fr) minmax(108px,.72fr); }
  .network__photo-strip img { min-height: 108px; }
  .events-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .event-card--featured { grid-column: 1 / -1; }
  .pillars, .press-grid, .chapter-grid { grid-template-columns: 1fr; }
  .chapter-card { min-height: 0; padding: 1.2rem 1.2rem 1.2rem 5.25rem; }
  .chapter-card::before { top: 1.2rem; left: 1.2rem; }
  .chapter-card--media .branch-card__media { height: 112px; margin: -1.2rem -1.2rem 1rem -5.25rem; }
  .quiz-layout, .form-layout { grid-template-columns: 1fr; }
  .quiz-layout .chapter-heading { margin-bottom: 2rem; }
  .pillars-section .chapter-heading { margin-bottom: 2rem; }
  .pillar { min-height: 0; display: grid; grid-template-columns: 38px 58px minmax(0, 1fr); grid-template-rows: auto auto; column-gap: 1rem; row-gap: .35rem; align-items: start; padding: 1.2rem; }
  .pillar__num { grid-column: 1; grid-row: 1 / -1; padding-top: .18rem; }
  .pillar__mark, .pillar--focus .pillar__mark { grid-column: 2; grid-row: 1 / -1; width: 42px; height: 54px; margin: 0; }
  .pillar h3 { grid-column: 3; grid-row: 1; margin: 0; font-size: clamp(1.55rem, 5vw, 2.15rem); }
  .pillar p { grid-column: 3; grid-row: 2; max-width: 52ch; }
  .founder-photo { max-width: 520px; }
  .team-grid { grid-template-columns: repeat(3,minmax(0,1fr)); gap: 1rem; }
  .speaker-grid { grid-template-columns: repeat(3,minmax(0,1fr)); }
  .footer { padding: 2.5rem 0 max(1.25rem, env(safe-area-inset-bottom)); }
  .footer__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0 1.25rem; }
  .footer__grid > div:first-child { grid-column: 1 / -1; margin-bottom: 1.25rem; padding-bottom: 1.5rem; border-bottom: 1px solid var(--line-light); }
  .footer__grid > div:first-child img { width: 44px; height: 44px; }
  .footer__intro p, .footer__copy { max-width: 32rem; margin-top: .75rem; font-size: .82rem; line-height: 1.55; }
  .footer h2, .footer__col-title { margin-bottom: .45rem; font-size: .7rem; }
  .footer li a, .footer__list a { width: 100%; min-height: 44px; font-size: .88rem; }
  .footer__bottom { flex-direction: column; gap: .65rem; margin-top: 2rem; padding-top: .9rem; line-height: 1.5; }
  .footer__bottom:first-child { margin-top: 0; }
  .footer__bottom > p:nth-child(2) { order: -1; gap: .25rem .85rem; font-size: 0; }
  .footer__bottom > p:nth-child(2) a { min-height: 44px; display: inline-flex; align-items: center; font-size: .75rem; }
  .footer__credit { margin-left: 0 !important; }
  .footer__credit a { min-height: 44px; display: inline-flex; align-items: center; }
  .legal-layout { grid-template-columns: 1fr; }
  .legal-nav { position: static; display: flex; flex-wrap: wrap; gap: .5rem 1rem; border: 0; }
  .legal-nav a { min-height: 36px; border-bottom: 1px solid var(--ink); }
}

@media (max-width: 600px) {
  :root { --gutter: max(1rem, env(safe-area-inset-left), env(safe-area-inset-right)); }
  body { font-size: 15px; }
  html { scroll-padding-top: 70px; }
  .nav__brand { min-width: 46px; min-height: 46px; }
  .nav__logo { width: 46px; height: 46px; }
  .nav__wordmark { font-size: 1.02rem; }
  .home-hero__media { min-height: 340px; height: clamp(340px, 48svh, 470px); aspect-ratio: auto; }
  .home-hero__media::after { background: linear-gradient(180deg, rgba(0,0,0,.08) 0%, transparent 48%, rgba(0,0,0,.72) 100%); }
  .home-hero__copy { width: calc(100% - 2rem); margin-top: 0; padding: 1.35rem 0 1.5rem; }
  .home-hero h1 { margin: 0 0 1rem; font-size: clamp(2.5rem, 12vw, 3.05rem); line-height: .9; letter-spacing: -.06em; }
  .home-hero h1 span { white-space: normal; }
  .home-hero__copy > p { margin-bottom: 1.2rem; font-size: 1rem; line-height: 1.5; }
  .home-hero__inclusive { margin-top: .9rem !important; padding-top: .8rem; font-size: .62rem !important; }
  .hero__ctas { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); align-items: stretch; gap: .5rem; }
  .hero__ctas .btn { width: 100%; min-height: 48px; padding-inline: .7rem; }
  .hero__ctas .btn--primary { grid-column: 1 / -1; min-height: 52px; }
  .home-hero .hero__ctas .home-hero__secondary { grid-column: 1 / -1; }
  .page-hero__actions .btn { flex: 1 1 145px; }
  .hero-proof { gap: .55rem; margin-top: 1.15rem; padding-top: .85rem; font-size: .62rem; letter-spacing: .025em; }
  .hero-proof strong { font-size: 1rem; }
  .home-hero__media figcaption { left: .85rem; right: .85rem; bottom: 1rem; font-size: .64rem; }
  .home-hero__caption-primary { min-width: 0; gap: .5rem; }
  .home-hero__caption-primary > :last-child { line-height: 1.25; }
  .home-hero__media figcaption > #heroMeta { display: none; }
  .home-hero__progress { bottom: 0; height: 4px; }
  .flag-bars { display: none; }
  .section, .content-section, .block { padding: 3.8rem 0; }
  .section-line { min-height: 42px; font-size: .57rem; }
  .chapter-heading { grid-template-columns: 42px minmax(0,1fr); gap: .8rem; margin-bottom: 2.5rem; }
  .chapter-heading > span { width: 38px; height: 38px; font-size: .6rem; }
  .chapter-heading h2, .section-heading, .display-md { font-size: clamp(2.2rem, 11vw, 3.4rem); }
  .chapter-heading--spread { grid-template-columns: 42px 1fr; }
  .chapter-heading--spread > .btn { grid-column: 1 / -1; }
  .impact { padding-top: 1.5rem; padding-bottom: 3.8rem; }
  .impact__item { min-height: 135px; padding: .9rem .75rem; }
  .impact__item strong { font-size: clamp(2.3rem, 12vw, 3.2rem); }
  .impact__item span { font-size: .66rem; }
  .network__grid { gap: 1.8rem; }
  .network__media { grid-template-columns: min(40vw,155px) minmax(0,1fr); }
  .network__media-info { grid-template-rows: minmax(145px,1fr) minmax(96px,.66fr); }
  .network__media figcaption { padding: .8rem; }
  .network__caption-label, .network__caption-meta, .network__media figcaption strong span { font-size: .61rem; }
  .network__media figcaption strong { font-size: clamp(2.5rem, 12vw, 3.25rem); }
  .network__photo-strip img { min-height: 96px; }
  .network__photo-strip--three { grid-template-columns: repeat(3,minmax(0,1fr)); }
  .network__story-note { padding: .8rem; }
  .network__story-note p { font-size: .78rem; line-height: 1.4; }
  .media-toggle { right: .4rem; bottom: .4rem; padding: .45rem; font-size: .54rem; }
  .pillars { grid-template-columns: 1fr; }
  .pillars-section .chapter-heading { margin-bottom: 1.5rem; }
  .pillar { grid-template-columns: 26px 42px minmax(0, 1fr); column-gap: .8rem; padding: 1rem .85rem; }
  .pillar__mark, .pillar--focus .pillar__mark { width: 34px; height: 44px; }
  .pillar__mark::before { top: 8px; right: 9px; bottom: 8px; left: 9px; border-right-width: 4px; border-left-width: 4px; }
  .pillar--focus .pillar__mark::before { top: 8px; bottom: 8px; }
  .pillar__mark::after { background: linear-gradient(currentColor,currentColor) top center/100% 5px no-repeat,linear-gradient(currentColor,currentColor) center 7px/82% 4px no-repeat,linear-gradient(currentColor,currentColor) center calc(100% - 7px)/82% 4px no-repeat,linear-gradient(currentColor,currentColor) bottom center/100% 5px no-repeat; }
  .pillar h3 { font-size: 1.45rem; }
  .pillar p { font-size: .8rem; line-height: 1.4; }
  .quiz-card { min-height: 0; padding: 1rem; }
  .quiz-step legend { font-size: 1.65rem; }
  .quiz-step label { min-height: 54px; padding-inline: .55rem; }
  .quiz-actions .btn { flex: 1; }
  .founder-split { gap: 2.2rem; }
  .founder-photo { max-width: 78vw; }
  .founder-text blockquote { font-size: clamp(2.25rem, 11.5vw, 3.45rem); }
  .events-grid { grid-template-columns: 1fr; }
  .event-card--featured { grid-column: auto; }
  .event-card img, .event-card--featured img { aspect-ratio: 16/10; }
  .home-event-list a { min-height: 72px; grid-template-columns: 1fr auto; gap: .25rem 1rem; padding: .8rem 0; }
  .home-event-list span { grid-column: 1; font-size: .58rem; }
  .home-event-list h3 { grid-column: 1; font-size: 1.25rem; }
  .home-event-list em { display: none; }
  .home-event-list b { grid-column: 2; grid-row: 1 / 3; }
  .founder-list article { grid-template-columns: 30px 1fr auto; gap: .65rem; padding: .8rem 0; }
  .founder-list article p { grid-column: 2 / -1; }
  .founder-list article b { grid-column: 3; grid-row: 1; }
  .press-grid, .program-grid, .fact-grid, .join-grid, .contact-grid, .chapter-grid { grid-template-columns: 1fr; }
  .press-card { min-height: 235px; }
  .final-cta { padding-block: 3.8rem 4rem; }
  .final-cta__inner { grid-template-columns: 1fr; gap: 2rem; }
  .final-cta h2, .final-cta__title { font-size: clamp(3rem, 14vw, 4.4rem); }
  .final-cta__content { padding: 1.4rem 0 0; border-top: 1px solid var(--ink); border-left: 0; }
  .final-cta p, .final-cta__sub { margin-bottom: 1.35rem; }
  .final-cta .button-row { align-items: stretch; flex-direction: column; }
  .final-cta .button-row .btn { width: 100%; }
  .page-hero { min-height: 480px; }
  .page-hero__scrim { background: linear-gradient(0deg, rgba(14,14,13,.9) 0%, rgba(14,14,13,.55) 70%, rgba(14,14,13,.25) 100%); }
  .page-hero__inner { padding-top: 6rem; padding-bottom: 2.2rem; }
  .page-hero__title { font-size: clamp(3rem, 14vw, 4.7rem); }
  .page-hero--events .page-hero__title { font-size: clamp(2.6rem, 12.3vw, 4rem); }
  .page-hero__lede { font-size: .95rem; }
  .editorial-split, .event-feature { gap: 2rem; }
  .about-origin__grid, .about-founder__grid { gap: 2.2rem; }
  .about-origin__copy .section-heading, .about-founder__copy .section-heading { margin-bottom: 1.2rem; }
  .about-origin__photo, .about-founder__photo { max-width: none; }
  .about-origin__photo::before { width: 38%; top: -.7rem; right: -.7rem; }
  .about-origin__photo img { aspect-ratio: 5/4; object-position: center 42%; }
  .about-structure-grid { margin-top: 1.6rem; }
  .about-structure-card { padding: 1rem; grid-template-columns: 1fr; gap: .75rem; }
  .about-structure-card h3 { max-width: none; font-size: 1.45rem; }
  .event-gallery__header { margin-bottom: 1.5rem; gap: .8rem; }
  .event-gallery__credit { font-size: .67rem; }
  .event-photo-grid { column-gap: .55rem; }
  .event-photo { margin-bottom: .55rem; }
  .fact-grid, .program-grid, .join-grid, .chapter-grid { margin-top: 1.6rem; }
  .fact-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .fact-card { min-height: 190px; padding: .85rem; }
  .fact-card__num { font-size: clamp(2.35rem, 12vw, 3.2rem); }
  .fact-card strong { margin-top: .8rem; font-size: .92rem; line-height: 1.2; }
  .fact-card p { margin: .45rem 0 0; font-size: .78rem; line-height: 1.42; }
  .program-card, .join-card { min-height: 0; padding: 1rem; }
  .program-card__num, .join-card__num { margin-bottom: .75rem; font-size: .6rem; }
  .program-card h3, .join-card h3 { margin-bottom: .45rem; font-size: 1.45rem; }
  .program-card p, .join-card p { margin-bottom: .5rem; line-height: 1.45; }
  .program-card .card-link, .join-card .btn { margin-top: .55rem; }
  .join-card .btn { width: 100%; }
  .join-card__actions { display: grid; gap: .35rem; margin-top: .3rem; }
  .join-card__actions .btn, .join-card__actions .text-link { width: 100%; margin-top: 0; justify-content: center; }
  .contact-card { min-height: 0; padding: 1rem; }
  .chapter-card { min-height: 0; padding: 1rem 1rem 1rem 4.2rem; }
  .chapter-card::before { top: 1rem; left: 1rem; width: 34px; height: 34px; }
  .chapter-card h3 { margin-bottom: .4rem; font-size: 1.45rem; }
  .chapter-card p { margin-bottom: .55rem; line-height: 1.45; }
  .speaker-grid { grid-template-columns: repeat(3,minmax(0,1fr)); margin-top: 1.6rem; }
  .speaker-card figcaption, .speaker-card__caption { min-height: 84px; padding: .62rem .55rem; }
  .speaker-card strong { font-size: clamp(.72rem,3.2vw,.84rem); overflow-wrap: break-word; }
  .speaker-card span { font-size: clamp(.55rem,2.3vw,.64rem); overflow-wrap: break-word; }
  .event-row { grid-template-columns: 1fr; gap: .75rem; }
  .simple-cta__inner { align-items: flex-start; flex-direction: column; }
  .team-grid { grid-template-columns: repeat(3,minmax(0,1fr)); gap: .75rem .45rem; }
  .person-card { padding-bottom: .7rem; }
  .person-card__portrait { margin-bottom: .55rem; }
  .person-card h3 { margin-bottom: .18rem; font-size: clamp(.82rem, 3.7vw, 1rem); line-height: 1.08; }
  .person-card__role { font-size: clamp(.625rem, 2.6vw, .7rem); overflow-wrap: normal; word-break: normal; }
  .person-card > p:not(.person-card__role) { display: none; }
  .person-card__badge { margin-bottom: .35rem; padding: .25rem .35rem; font-size: .625rem; letter-spacing: .02em; }
  .form-grid { grid-template-columns: 1fr; gap: .85rem; }
  .contact-form { grid-template-columns: 1fr; gap: 1rem; padding: 1.65rem 1rem 1rem; }
  .contact-form .form-field:nth-child(3), .contact-form .form-field:nth-child(4), .contact-form .form-consent { grid-column: auto; }
  .form-field--full, .form-consent, .form-actions { grid-column: auto; }
  .form-field textarea { min-height: 165px; }
  .form-consent { padding: .85rem; }
  .form-actions { grid-template-columns: 1fr; align-items: stretch; gap: .55rem; }
  .form-actions .btn { width: 100%; }
  .newsletter-dialog { align-items: end; padding: 0; }
  .newsletter-dialog__panel { width: 100%; max-height: min(92svh,680px); overflow-y: auto; padding: 1.4rem 1rem max(1.4rem,env(safe-area-inset-bottom)); }
  .newsletter-form__row { grid-template-columns: 1fr; gap: .5rem; }
  .newsletter-form__row input { border-right: 1px solid var(--ink); }
  .newsletter-form__row .btn { width: 100%; }
  .partners__head, .collaborators__head { min-height: 0; align-items: flex-start; flex-direction: column; }
  .partners__toggle { align-self: flex-start; }
  .collaborators__head { gap: .45rem; }
  .partners__viewport--logos { margin-top: .9rem; }
  .partner-logo-list { --logo-gap: 1.5rem; }
  .partners__list .partner-logo,
  .partners__list .partner-name { height: 64px; }
  .partner-logo img { width: min(82px, calc(34px * var(--logo-ratio, 1))); max-width: 82px; max-height: 34px; }
  .partner-logo--round img { width: 54px; height: 54px; max-width: none; max-height: none; }
  .partners__list .partner-name { font-size: .58rem; }
  .partner-logo--wide img { width: min(116px, calc(34px * var(--logo-ratio, 1))); max-width: 116px; }
  .partners__list .partner-logo--firmpoint { gap: 0; }
  .partner-logo--firmpoint img { width: 106px; max-width: none; max-height: none; }
  .event-rail__head { align-items: flex-start; flex-direction: column; gap: .6rem; margin-bottom: 1.2rem; }
  .event-rail__nav { width: 100%; justify-content: flex-end; }
  .event-rail__nav .mono { margin-right: auto; }
  .event-rail__button { width: 44px; height: 44px; }
  .event-rail { grid-auto-columns: min(82vw,320px); padding-bottom: .9rem; }
  .event-card__art { aspect-ratio: 16/10; }
  .flagship-event__image img { aspect-ratio: 5/4; }
  .upcoming-events__date { max-width: 10ch; font-size: clamp(2.5rem,13vw,4.2rem); }
  .chapter-card--media .branch-card__media { height: 92px; margin: -1rem -1rem .8rem -4.2rem; border-left: 1px solid var(--ink); }
  .chapter-card--media { padding-top: 1rem; }
  .program-choice-grid { grid-template-columns: 1fr; margin-top: 1.6rem; }
  .program-choice { min-height: 280px; padding: 1rem; }
  .program-choice h3 { margin-top: 3rem; font-size: clamp(2.25rem,11vw,3.5rem); }
  .program-detail-hero { min-height: 440px; }
  .program-detail-hero h1 { font-size: clamp(3.2rem,15vw,5rem); }
  .steps-grid { grid-template-columns: 1fr; margin-top: 1.6rem; }
  .step-card { min-height: 0; display: grid; grid-template-columns: 34px 1fr; gap: .35rem .8rem; }
  .step-card h3 { grid-column: 2; margin: 0; font-size: 1.4rem; }
  .step-card p { grid-column: 2; }
  .mentor-empty { grid-template-columns: 1fr; gap: 1rem; padding: 1.1rem; }
  .mentor-empty .btn { width: 100%; }
  .footer__grid { grid-template-columns: repeat(2,minmax(0,1fr)); gap: 1.4rem 1rem; }
  .footer__grid > div { padding-top: .25rem; }
  .footer__grid > div:first-child { margin-bottom: 0; }
  .footer__grid > div:nth-child(4) { display: none; }
  .footer__grid > div:nth-child(5) { grid-column: 1 / -1; padding-top: 1.2rem; border-top: 1px solid var(--line-light); }
  .footer__grid > div:nth-child(5) ul { display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); gap: .45rem; }
  .footer__grid > div:nth-child(5) li a { justify-content: center; min-height: 42px; padding: .4rem .25rem; border: 1px solid var(--line-light); font-size: .72rem; }
  .legal-hero { padding-top: 6.5rem; }
  .legal-hero h1 { font-size: clamp(3rem, 14vw, 4.6rem); }
  .legal-layout { padding-top: 2.4rem; }
}

@media (max-width: 340px) {
  .speaker-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .speaker-card strong { font-size: .82rem; }
  .speaker-card span { font-size: .62rem; }
}

@media (max-width: 420px) {
  .footer__grid > div:nth-child(5) ul { grid-template-columns: repeat(2,minmax(0,1fr)); }
}

@media (max-width: 900px) and (min-width: 821px) {
  .editorial-split, .quiz-layout, .form-layout { grid-template-columns: 1fr; }
  .quiz-layout .chapter-heading { margin-bottom: 2rem; }
  .form-intro { max-width: 680px; }
}

@media (min-width: 821px) and (max-height: 720px) {
  .home-hero { min-height: calc(100svh - 82px); }
  .home-hero__copy { padding-top: 1.5rem; padding-bottom: 1.2rem; }
  .home-hero h1 { margin-top: 1.25rem; font-size: clamp(3rem, 4.8vw, 4.9rem); }
  .home-hero__media { min-height: calc(100svh - 82px); }
  .hero-proof { margin-top: 1rem; padding-top: .85rem; }
}

@keyframes mobile-hero-image-in {
  from { opacity: .9; transform: scale(1.02); }
  to { opacity: 1; transform: scale(1); }
}

@keyframes mobile-hero-copy-in {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes partners-loop {
  to { transform: translate3d(-50%, 0, 0); }
}

@keyframes president-badge-shine {
  0%, 68% { transform: translateX(-180%) skewX(-18deg); opacity: 0; }
  76% { opacity: .9; }
  94%, 100% { transform: translateX(620%) skewX(-18deg); opacity: 0; }
}

@keyframes sponsor-shine {
  0%, 65% { transform: translateX(-120%); }
  82%, 100% { transform: translateX(120%); }
}

@media (max-width: 600px) and (prefers-reduced-motion: no-preference) {
  .home-hero__slide.is-active { animation: mobile-hero-image-in .36s ease-out both; }
  .home-hero__copy { animation: mobile-hero-copy-in .28s ease-out .06s both; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .partners__viewport { overflow-x: auto; -webkit-mask-image: none; mask-image: none; }
  .partners__track { animation: none !important; transform: none; }
  .partners__list[aria-hidden="true"] { display: none; }
  .partners__toggle { display: none; }
  .home-hero__progress { display: none; }
  .partner-logo--gold::after, .person-card__badge--gold::after { display: none; }
}

@media (forced-colors: active) {
  .select-control select { appearance: auto; -webkit-appearance: auto; padding-right: 1rem; }
  .select-control__icon { display: none; }
}

/* Compact homepage entry to the complete NAYI Quiz. */
.quiz-feature { background: var(--paper); border-block: 1px solid var(--line); }
.quiz-feature__layout { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem 4rem; align-items: center; }
.quiz-feature .chapter-heading { margin: 0; }
.quiz-feature .section-lede { margin: 0 0 1.25rem; max-width: 44ch; }
.quiz-feature__note { margin: .8rem 0 0; font-size: .85rem; color: var(--muted); }
@media(max-width:768px) { .quiz-feature__layout { grid-template-columns: 1fr; gap: 1.25rem; } }
