:root {
  --bg: #FFFFFF;
  --surface: #F7F8FA;
  --ink: #071D35;
  --fg: var(--ink);
  --muted: oklch(48% 0.032 253);
  --border: oklch(88% 0.012 245);
  --accent: var(--navy);
  --navy: #021c73;
  --black: #000000;
  --lime: #B7E000;
  --orange: #fb6202;
  --white: #FFFFFF;
  --success: oklch(44% 0.11 148);
  --danger: oklch(45% 0.16 28);
  --font-display: "Yu Gothic", "Hiragino Kaku Gothic ProN", "Noto Sans JP", system-ui, sans-serif;
  --font-body: "Hiragino Kaku Gothic ProN", "Yu Gothic", "Noto Sans JP", system-ui, sans-serif;
  --radius: 3px;
  --wrap: min(1180px, calc(100% - 48px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--bg); color: var(--fg); font-family: var(--font-body); font-size: 16px; line-height: 1.8; -webkit-font-smoothing: antialiased; }
img { display: block; width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
.wrap { width: var(--wrap); margin-inline: auto; }
.skip-link { position: fixed; top: -80px; left: 16px; z-index: 9999; padding: 10px 16px; background: var(--white); color: var(--navy); border: 2px solid var(--navy); border-radius: 2px; }
.skip-link:focus { top: 16px; }

.site-loader { display: none; }
.js .site-loader {
  position: fixed;
  inset: 0;
  z-index: 100000;
  display: grid;
  place-items: center;
  min-height: 100dvh;
  background: var(--orange);
  opacity: 1;
  visibility: visible;
  transition: opacity 0.5s ease, visibility 0s linear 0.5s;
}
.site-loader__logo { width: clamp(118px, 15vw, 188px); height: auto; max-height: 34vh; object-fit: contain; }
.js.is-loading body { overflow: hidden; }
.js.is-loader-leaving .site-loader,
.js.is-page-ready .site-loader { opacity: 0; visibility: hidden; pointer-events: none; }

.site-header { position: sticky; top: 0; z-index: 80; height: 76px; background: var(--orange); color: var(--white); border-bottom: 1px solid var(--navy); }
.js .site-header { transition: transform 0.65s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.45s ease; }
.js.is-loading .site-header { transform: translateY(calc(-100% - 48px)); opacity: 0; }
.js.is-page-ready .site-header { transform: translateY(0); opacity: 1; }
.home .site-header { position: fixed; inset-inline: 0; }
.header-inner { width: var(--wrap); height: 100%; margin: auto; display: flex; align-items: center; gap: 22px; }
.brand { display: flex; align-items: center; gap: 11px; min-width: 246px; }
.brand-text { color: var(--white); font-size: 12px; font-weight: 850; line-height: 1.28; letter-spacing: 0.02em; }
.brand-text small { display: block; margin-top: 2px; color: oklch(77% 0.015 245); font-size: 8px; font-weight: 600; letter-spacing: 0.08em; }
.site-header .brand { min-width: 294px; gap: 10px; }
.site-header .brand-logo { width: 56px; height: 56px; flex: 0 0 56px; object-fit: contain; }
.site-header .brand-text { min-width: 205px; padding: 0; background: transparent; color: var(--white); line-height: 1.18; }
.site-header .brand-text strong { display: block; font-size: 15px; font-weight: 700; white-space: nowrap; }
.site-header .brand-text small { display: block; margin-top: 4px; color: var(--white); font-size: 11px; font-weight: 700; letter-spacing: 0.16em; white-space: nowrap; }
.desktop-nav { flex: 1; display: flex; justify-content: flex-end; align-items: center; gap: 17px; padding: 0; background: transparent; }
.desktop-nav a { padding: 10px 0 8px; border-bottom: 3px solid transparent; color: var(--white); font-size: 13px; font-weight: 800; white-space: nowrap; }
.desktop-nav a:hover,
.desktop-nav a[aria-current="page"] { color: var(--white); border-color: var(--white); }
.header-actions { display: flex; align-items: center; gap: 8px; padding: 0; background: transparent; }
.social-link { display: inline-flex; align-items: center; justify-content: center; gap: 7px; min-height: 44px; flex: 0 0 auto; padding: 6px 2px; border: 0; color: inherit; font-size: 12px; font-weight: 800; line-height: 1; transition: color 0.15s ease, opacity 0.15s ease; }
.social-link svg { width: 23px; height: 23px; flex: 0 0 23px; }
.social-link .instagram-fill { fill: currentColor; }
.social-link .instagram-cutout { fill: none; stroke: var(--social-icon-cutout); stroke-width: 2; }
.social-link .instagram-dot { fill: var(--social-icon-cutout); }
.social-link:hover { opacity: 0.76; }
.social-link:hover .social-link__label { text-decoration: underline; text-underline-offset: 3px; }
.social-link--header { --social-icon-cutout: var(--orange); color: var(--white); }
.header-instagram--mobile { display: none; }

.button {
  --button-bg: var(--navy);
  --button-fg: var(--white);
  --button-border: var(--navy);
  --button-hover-bg: var(--white);
  --button-hover-fg: var(--navy);
  --button-hover-border: var(--navy);
  min-height: 48px;
  padding: 0 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  appearance: none;
  border: 1px solid var(--button-border);
  border-radius: 2px;
  background: var(--button-bg);
  color: var(--button-fg);
  font: 850 14px/1.25 var(--font-body);
  letter-spacing: 0.01em;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.15s ease, color 0.15s ease, border-color 0.15s ease, opacity 0.15s ease;
}
.button:hover:not(:disabled):not([aria-disabled="true"]) { background: var(--button-hover-bg); color: var(--button-hover-fg); border-color: var(--button-hover-border); }
.button:focus-visible { outline: 3px solid var(--white); outline-offset: 2px; box-shadow: 0 0 0 5px var(--navy); }
.button:is(:disabled, [aria-disabled="true"]) { opacity: 0.52; cursor: not-allowed; pointer-events: none; }
.button--compact { min-height: 50px; padding-inline: 9px; font-size: 13px; }
.button--navy { --button-bg: var(--navy); --button-fg: var(--white); --button-border: var(--navy); --button-hover-bg: var(--white); --button-hover-fg: var(--navy); --button-hover-border: var(--navy); }
.button--trial,
.button--lime { --button-bg: var(--lime); --button-fg: var(--navy); --button-border: var(--navy); --button-hover-bg: var(--navy); --button-hover-fg: var(--lime); --button-hover-border: var(--lime); }
.button--partner,
.button--white { --button-bg: var(--white); --button-fg: var(--navy); --button-border: var(--navy); --button-hover-bg: var(--navy); --button-hover-fg: var(--white); --button-hover-border: var(--white); }
.button--transparent-on-dark { --button-bg: transparent; --button-fg: var(--white); --button-border: var(--white); --button-hover-bg: var(--white); --button-hover-fg: var(--navy); --button-hover-border: var(--white); }
.button--orange { --button-bg: var(--orange); --button-fg: var(--navy); --button-border: var(--navy); --button-hover-bg: var(--navy); --button-hover-fg: var(--orange); --button-hover-border: var(--orange); }
.text-link { display: inline-flex; align-items: center; gap: 7px; color: var(--navy); font-weight: 800; }
.text-link:hover { color: var(--black); text-decoration: underline; text-underline-offset: 4px; }

.menu-button { display: none; width: 46px; height: 46px; border: 1px solid var(--white); border-radius: 2px; background: var(--navy); color: var(--white); cursor: pointer; }
.menu-button span, .menu-button::before, .menu-button::after { content: ""; display: block; width: 21px; height: 2px; margin: 5px auto; background: currentColor; transition: 0.15s; }
.site-header :focus-visible:not(.button) { outline: 3px solid var(--white); outline-offset: 2px; box-shadow: 0 0 0 5px var(--navy); }
.mobile-menu { display: none; }

.hero { position: relative; min-height: 690px; display: flex; align-items: flex-end; overflow: hidden; background: var(--ink); color: var(--white); }
.hero img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 58% 30%; }
.hero::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, var(--ink) 0%, color-mix(in oklch, var(--ink) 92%, transparent) 31%, color-mix(in oklch, var(--ink) 48%, transparent) 55%, transparent 78%); }
.hero-lines, .scroll-cue { display: none; }
.hero-content { position: relative; z-index: 2; width: var(--wrap); margin: 0 auto; padding: 112px 0 82px; }
h1, h2, h3 { margin: 0; color: var(--navy); font-family: var(--font-display); line-height: 1.28; letter-spacing: -0.03em; }
h1 { max-width: 760px; font-size: clamp(45px, 6vw, 78px); font-weight: 900; }
h2 { font-size: clamp(31px, 4vw, 50px); font-weight: 880; }
h3 { font-size: 21px; font-weight: 820; }
.hero h1 { color: var(--white); }
.hero h1::after { content: ""; display: block; width: 62px; height: 3px; margin-top: 24px; background: var(--orange); }
.hero-lead { max-width: 600px; margin: 20px 0 28px; color: oklch(94% 0.008 245); font-size: clamp(16px, 1.8vw, 19px); font-weight: 650; line-height: 1.85; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 10px; }

.eyebrow { --eyebrow-color: var(--orange); display: flex; align-items: center; gap: 10px; margin: 0 0 12px; color: var(--eyebrow-color); font-size: 12px; font-weight: 850; letter-spacing: 0.05em; }
.eyebrow::after { content: ""; width: 40px; height: 2px; background: currentColor; }
.eyebrow.eyebrow--orange { --eyebrow-color: var(--orange); }
.eyebrow.eyebrow--lime { --eyebrow-color: var(--lime); }
.eyebrow.eyebrow--navy { --eyebrow-color: var(--navy); }
.eyebrow.eyebrow--white { --eyebrow-color: var(--white); }
.eyebrow.eyebrow--gray { --eyebrow-color: oklch(42% 0.018 253); }
.eyebrow.eyebrow--gray-light { --eyebrow-color: oklch(83% 0.014 245); }

.section { padding: 92px 0; }
.section.compact { padding: 66px 0; }
.section:nth-of-type(even):not(.hero):not(.dark-section):not(.dual-cta):not(.cta-band):not(.recruit-summary):not(.trust-section) { background: var(--white); }
.section-heading { display: grid; grid-template-columns: minmax(0, 1fr) minmax(280px, 430px); align-items: end; gap: 48px; margin-bottom: 42px; padding-top: 22px; border-top: 3px solid var(--navy); }
.section-heading p:not(.eyebrow) { margin: 0; color: var(--muted); }

.recruit-summary { padding: 62px 0; background: var(--white); border-bottom: 1px solid var(--border); }
.recruit-summary-grid { display: grid; grid-template-columns: 1.15fr 1.85fr; gap: 54px; align-items: center; }
.recruit-summary-copy h2 { font-size: clamp(30px, 3.4vw, 45px); }
.recruit-summary-copy p:not(.eyebrow) { margin: 14px 0 18px; color: var(--muted); }
.recruit-summary-copy .text-link { margin-top: 13px; }
.recruit-facts { display: grid; grid-template-columns: repeat(4, 1fr); border-left: 1px solid var(--border); }
.recruit-fact { min-height: 128px; padding: 18px 18px 16px; border-right: 1px solid var(--border); }
.recruit-fact b { display: block; margin-bottom: 12px; color: var(--navy); font-size: 13px; }
.recruit-fact strong { display: block; color: var(--navy); font-size: 17px; line-height: 1.55; }
.recruit-fact small { display: block; margin-top: 6px; color: var(--muted); font-size: 11px; }
.recruit-fact small:not(:last-child) { margin-bottom: 1em; }

.mission-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 0; background: var(--white); border-top: 4px solid var(--navy); }
.mission-main { padding: clamp(34px, 5vw, 64px); background: var(--white); color: var(--navy); border: 0; border-radius: 0; box-shadow: none; }
.mission-main::after { display: none; }
.mission-main h3 { margin: 0 0 20px; font-size: clamp(29px, 3.6vw, 44px); }
.mission-main p:not(.eyebrow) { max-width: 640px; color: var(--muted); }
.mission-photo { margin: 0; min-height: 420px; overflow: hidden; }
.mission-photo img { height: 100%; object-fit: cover; object-position: center; }
.principles { grid-column: 1 / -1; display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; background: var(--white); border-block: 1px solid var(--border); border-radius: 0; overflow: visible; }
.principle { padding: 25px 28px; background: transparent; border-right: 1px solid var(--border); }
.principle:last-child { border-right: 0; }
.principle b { display: block; margin-bottom: 7px; color: var(--navy); font-size: 11px; }
.principle h3 { margin: 0 0 6px; }
.principle p { margin: 0; color: var(--muted); font-size: 14px; }

.stats { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 3px solid var(--navy); border-bottom: 1px solid var(--border); }
.stat { padding: 34px 26px; border-right: 1px solid var(--border); }
.stat:last-child { border-right: 0; }
.stat strong { display: block; color: var(--navy); font: 900 clamp(40px, 5vw, 62px)/1 var(--font-display); letter-spacing: -0.05em; }
.stat span { display: block; margin-top: 12px; color: var(--muted); font-size: 13px; font-weight: 750; }
.placeholder-tag { display: inline-flex; min-height: 24px; align-items: center; margin-top: 10px; padding: 2px 7px; border-left: 2px solid var(--lime); border-radius: 0; background: var(--surface); color: var(--muted); font-size: 11px; font-weight: 750; font-style: normal; }

.activity-grid, .card-grid { display: grid; grid-template-columns: 1.15fr 0.925fr 0.925fr; border-top: 3px solid var(--navy); border-bottom: 1px solid var(--border); }
.activity-card, .info-card { background: var(--white); border: 0; border-right: 1px solid var(--border); border-radius: 0; overflow: hidden; transition: background 0.15s ease; }
.activity-card:last-child, .info-card:last-child { border-right: 0; }
.activity-card:hover { background: var(--surface); transform: none; box-shadow: none; }
.activity-top { height: 5px; background: var(--navy); }
.activity-top::before, .activity-top::after { display: none; }
.activity-body { padding: 27px 24px 31px; }
.activity-body p { margin-bottom: 0; color: var(--muted); }
.activity-card .category { color: var(--navy); border: 0; padding: 0; }
.activity-card-title { margin-top: 14px; }

.dark-section { background: var(--navy); color: var(--white); }
.dark-section::after { display: none; }
.split-image { display: grid; grid-template-columns: 1.12fr 0.88fr; gap: 0; overflow: hidden; background: var(--navy); color: var(--white); border: 0; border-radius: 0; box-shadow: none; }
.split-image img { min-height: 500px; height: 100%; object-fit: cover; }
.split-copy { display: flex; flex-direction: column; justify-content: center; padding: clamp(36px, 5vw, 65px); }
.split-copy h2 { margin: 0 0 18px; color: var(--white); }
.split-copy p:not(.eyebrow) { color: oklch(80% 0.015 245); }
.check-list { display: grid; gap: 10px; margin: 22px 0; padding: 0; list-style: none; }
.check-list li { position: relative; padding-left: 22px; }
.check-list li::before { content: ""; position: absolute; left: 0; top: 0.78em; width: 9px; height: 5px; border-left: 2px solid var(--lime); border-bottom: 2px solid var(--lime); transform: rotate(-45deg); }
.split-copy .button { align-self: flex-start; }

.news-list { display: grid; border-top: 3px solid var(--navy); }
.news-row { display: grid; grid-template-columns: 128px 110px 1fr 24px; gap: 20px; align-items: center; padding: 20px 3px; border-bottom: 1px solid var(--border); }
.news-row:hover { background: var(--surface); }
.news-row time, .news-card time { color: var(--muted); font-size: 12px; font-weight: 700; }
.category { display: inline-flex; width: max-content; padding: 2px 8px; border: 1px solid var(--navy); border-radius: 0; color: var(--navy); font-size: 11px; font-weight: 750; }
.category.category--notice { background: #FF8A45; border-color: #FF8A45; color: var(--navy); }
.category.category--match { background: #CBEA4A; border-color: #CBEA4A; color: var(--navy); }
.category.category--other { background: #A7AEB7; border-color: #A7AEB7; color: var(--navy); }
.category:is(a):hover { text-decoration: none; }
.category:is(a):focus-visible { outline-color: var(--navy); outline-offset: 3px; }
.news-row b { font-size: 15px; }

.cta-band { padding: 56px 0; background: var(--navy); color: var(--white); }
.cta-band .wrap { display: flex; justify-content: space-between; align-items: center; gap: 38px; }
.cta-band h2 { color: var(--white); font-size: clamp(29px, 3.5vw, 44px); }
.cta-band p:not(.eyebrow) { margin: 10px 0 0; color: oklch(93% 0.008 245); }

.dual-cta { display: grid; grid-template-columns: 1fr 1fr; }
.dual-panel { min-height: 350px; padding: clamp(38px, 5vw, 66px); display: flex; flex-direction: column; justify-content: flex-end; background: var(--white); color: var(--navy); }
.dual-panel:first-child { background: var(--surface); color: var(--navy); }
.dual-panel:first-child h2 { color: var(--navy); }
.dual-panel:first-child p:not(.eyebrow) { color: var(--muted); }
.dual-panel:nth-child(2) { position: relative; isolation: isolate; background: var(--navy) url("team-huddle.png") center / cover no-repeat; color: var(--white); }
.dual-panel:nth-child(2)::before { content: ""; position: absolute; inset: 0; z-index: -1; background: color-mix(in oklch, var(--ink) 84%, transparent); }
.dual-panel:nth-child(2) h2 { color: var(--white); }
.dual-panel p:not(.eyebrow) { max-width: 480px; color: var(--muted); }
.dual-panel:nth-child(2) p:not(.eyebrow) { color: oklch(88% 0.01 245); }
.dual-panel .button { align-self: flex-start; }

.partner-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); border-block: 1px solid var(--border); }
.partner-slot { min-height: 112px; display: grid; place-items: center; padding: 20px 24px; border: 0; border-right: 1px solid var(--border); border-radius: 0; background: var(--white); color: var(--muted); font-size: 11px; font-weight: 750; line-height: 1.5; text-align: center; }
.partner-slot:last-child { border-right: 0; }
.partner-slot--dark { background: var(--navy); }
.partner-logo { display: block; width: auto; max-width: min(100%, 220px); height: auto; max-height: 58px; object-fit: contain; }
.partner-slot--dark .partner-logo { max-width: min(88%, 187px); max-height: 44px; }

.page-hero { padding: 72px 0 64px; background: var(--navy); color: var(--white); border-bottom: 3px solid var(--lime); }
.page-hero::after { display: none; }
.page-hero .wrap { position: relative; z-index: 1; }
.page-hero h1 { color: var(--white); font-size: clamp(38px, 4.7vw, 60px); }
.page-hero p:not(.eyebrow) { max-width: 660px; color: oklch(81% 0.015 245); font-size: 17px; }
.breadcrumb { margin-bottom: 24px; color: oklch(71% 0.014 245); font-size: 11px; font-weight: 750; }
.breadcrumb a:hover { color: var(--white); }

.content-grid { display: grid; grid-template-columns: minmax(0, 1fr) 285px; gap: 62px; }
.toc { position: sticky; top: 102px; align-self: start; padding-left: 19px; border-left: 2px solid var(--lime); }
.toc b { color: var(--muted); font-size: 11px; font-weight: 800; }
.toc a { display: block; padding: 7px 0; font-size: 14px; font-weight: 750; }
.toc a:hover { color: var(--navy); }
.prose-section { padding: 0 0 74px; scroll-margin-top: 100px; }
.prose-section h2 { margin-bottom: 23px; padding-left: 16px; border-left: 4px solid var(--navy); font-size: clamp(30px, 3.6vw, 44px); }
.prose-section > p:not(.eyebrow) { color: var(--muted); }
.page-team #philosophy .split-image { grid-template-columns: 0.85fr 1.15fr; background: var(--white); color: var(--navy); border-top: 4px solid var(--navy); }
.page-team #philosophy .split-image img { order: 2; min-height: 470px; }
.page-team #philosophy .split-copy { order: 1; }
.page-team #philosophy .split-copy h3 { color: var(--navy); }
.philosophy-statement { font-size: clamp(26px, 3vw, 32px); }
.staff-card-title { margin-top: 14px; }
.page-team #philosophy .split-copy p:not(.eyebrow) { color: var(--muted); }
.page-sponsors #meaning .split-image { border-bottom: 3px solid var(--lime); }
.page-sponsors #inquiry .mission-main { background: var(--navy); color: var(--white); }
.page-sponsors #inquiry .mission-main h3 { color: var(--white); }
.page-sponsors #inquiry .mission-main p:not(.eyebrow) { color: oklch(80% 0.015 245); }

.data-table { width: 100%; margin-top: 26px; border-collapse: collapse; border-top: 2px solid var(--navy); }
.data-table th, .data-table td { padding: 18px; text-align: left; vertical-align: top; border-bottom: 1px solid var(--border); }
.data-table th { width: 28%; background: var(--surface); color: var(--navy); font-size: 13px; }
.data-table td { color: var(--muted); }
.recruitment-actions { margin-top: 28px; display: flex; align-items: center; gap: 18px; }
.staff-grid { display: grid; grid-template-columns: 1.08fr 0.92fr; border-top: 1px solid var(--border); }
.staff-card { padding: 25px; border: 0; border-right: 1px solid var(--border); border-bottom: 1px solid var(--border); border-radius: 0; background: var(--white); }
.staff-card:last-child { border-right: 0; }
.staff-avatar { width: 66px; height: 66px; margin-bottom: 18px; display: grid; place-items: center; border-radius: 2px; background: var(--surface); color: var(--muted); font-size: 10px; font-weight: 800; line-height: 1.3; }
.timeline { margin-left: 7px; border-left: 1px solid var(--border); }
.timeline-item { position: relative; padding: 0 0 28px 30px; }
.timeline-item::before { content: ""; position: absolute; left: -5px; top: 8px; width: 9px; height: 9px; border-radius: 50%; background: var(--lime); box-shadow: 0 0 0 4px var(--white); }
.timeline-item b { color: var(--navy); font-size: 12px; }

.steps { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; margin-top: 26px; counter-reset: steps; }
.step { position: relative; display: grid; grid-template-columns: 54px minmax(0, 1fr); gap: 18px; min-height: 176px; padding: 27px 24px 25px; border: 1px solid color-mix(in oklch, var(--lime) 42%, var(--border)); border-top: 4px solid var(--lime); border-radius: 2px; background: color-mix(in oklch, var(--lime) 7%, var(--white)); counter-increment: steps; }
.step::before { content: "0" counter(steps); width: 48px; height: 48px; display: grid; place-items: center; background: var(--navy); color: var(--lime); font: 900 20px/1 var(--font-display); }
.step h3 { margin: 1px 0 8px; color: var(--navy); font-size: clamp(19px, 2vw, 23px); line-height: 1.35; }
.step p { margin: 0; color: var(--muted); line-height: 1.75; }
details { background: var(--white); border-bottom: 1px solid var(--border); }
summary { min-height: 68px; padding: 15px 4px; display: flex; align-items: center; justify-content: space-between; gap: 20px; cursor: pointer; list-style: none; font-weight: 800; }
summary::-webkit-details-marker { display: none; }
summary::after { content: "＋"; color: var(--navy); font-size: 20px; }
details[open] summary::after { content: "−"; }
details p { margin: 0; padding: 0 32px 22px 4px; color: var(--muted); }

.tier-grid { display: grid; grid-template-columns: 1.12fr 0.94fr 0.94fr; border-top: 3px solid var(--navy); }
.tier { padding: 28px 24px; border: 0; border-right: 1px solid var(--border); border-bottom: 1px solid var(--border); border-radius: 0; background: var(--white); }
.tier:last-child { border-right: 0; }
.tier.featured { padding-top: 25px; border-top: 3px solid var(--lime); background: var(--white); }
.tier-label { color: var(--navy); font-size: 11px; font-weight: 800; }
.tier h3 { margin: 8px 0 10px; font-size: 26px; }
.tier ul { padding-left: 19px; color: var(--muted); }

.news-grid { display: block; border-top: 3px solid var(--navy); }
.news-card { display: block; border: 0; border-bottom: 1px solid var(--border); border-radius: 0; background: var(--white); }
.news-card:hover { background: var(--surface); transform: none; box-shadow: none; }
.news-card-image { display: none; }
.news-card-body { display: grid; grid-template-columns: 125px 105px minmax(0, 1fr) 105px; gap: 18px; align-items: center; padding: 20px 3px; }
.news-card h2 { margin: 0; font-size: 16px; }
.news-card .text-link { justify-self: end; font-size: 13px; }
.pagination { display: flex; justify-content: center; gap: 6px; margin-top: 44px; }
.pagination a { width: 44px; height: 44px; display: grid; place-items: center; border: 1px solid var(--border); border-radius: 2px; font-weight: 800; }
.pagination a[aria-current="page"], .pagination a:hover { background: var(--navy); color: var(--white); border-color: var(--navy); }

.article { max-width: 780px; margin: auto; }
.article-header { margin-bottom: 38px; padding-bottom: 32px; border-bottom: 1px solid var(--border); }
.article-header h1 { color: var(--navy); font-size: clamp(33px, 4.5vw, 52px); }
.article-meta { display: flex; align-items: center; gap: 14px; margin-bottom: 16px; }
.article p { margin: 0 0 1.8em; color: oklch(34% 0.025 253); }
.article h2 { margin: 50px 0 18px; font-size: 29px; }
.article-placeholder { aspect-ratio: 16 / 9; margin: 32px 0; display: grid; place-items: center; background: var(--surface); color: var(--muted); border-top: 3px solid var(--lime); font-size: 12px; font-weight: 750; }
.article-back-link { margin-top: 60px; padding-top: 26px; border-top: 1px solid var(--border); }

.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.field { display: grid; gap: 7px; }
.field.full { grid-column: 1 / -1; }
.field label { color: var(--navy); font-size: 14px; font-weight: 800; }
.required { margin-left: 7px; color: var(--danger); font-size: 11px; }
input, select, textarea { width: 100%; min-height: 50px; padding: 12px 13px; border: 1px solid oklch(72% 0.012 245); border-radius: 2px; background: var(--white); color: var(--fg); }
textarea { min-height: 168px; resize: vertical; }
input:focus, select:focus, textarea:focus { outline: 3px solid color-mix(in oklch, var(--navy) 24%, transparent); border-color: var(--navy); }
.form-note { color: var(--muted); font-size: 13px; }
.form-status { display: none; padding: 15px; border-left: 3px solid var(--success); background: oklch(93% 0.025 148); color: oklch(34% 0.075 148); font-weight: 750; }
.form-status.show { display: block; }

.site-footer { padding: 42px 0 28px; background: var(--navy); color: var(--white); border-top: 1px solid oklch(100% 0 0 / 0.15); }
.site-footer .brand { width: fit-content; min-width: 0; gap: 10px; }
.site-footer .brand-logo { width: 52px; height: 52px; flex: 0 0 52px; object-fit: contain; }
.site-footer .brand-text { line-height: 1.18; }
.site-footer .brand-text strong { display: block; font-size: 14px; font-weight: 700; white-space: nowrap; }
.site-footer .brand-text small { display: block; margin-top: 4px; color: oklch(72% 0.015 245); font-size: 10px; font-weight: 700; letter-spacing: 0.16em; white-space: nowrap; }
.footer-grid { display: grid; grid-template-columns: 1.45fr 1fr 1fr; gap: 42px; }
.footer-copy { max-width: 390px; color: oklch(72% 0.014 245); font-size: 13px; }
.social-link--footer { --social-icon-cutout: var(--navy); margin-top: 12px; color: var(--white); }
.footer-nav b { display: block; margin-bottom: 10px; color: var(--lime); font-size: 11px; font-weight: 800; }
.footer-nav a { display: block; padding: 4px 0; font-size: 14px; }
.footer-nav a:hover { color: var(--white); text-decoration: underline; text-underline-offset: 3px; }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; margin-top: 27px; padding-top: 16px; border-top: 1px solid oklch(100% 0 0 / 0.14); color: oklch(64% 0.014 245); font-size: 10px; font-weight: 650; line-height: 1.6; }
.mobile-cta { display: none; }

.reveal { opacity: 0; transform: translateY(12px); transition: opacity 0.4s ease, transform 0.4s ease; }
.reveal.visible { opacity: 1; transform: none; }
:focus-visible:not(.button) { outline: 3px solid var(--orange); outline-offset: 3px; }

.trust-section { background: var(--lime); color: var(--navy); border-top: 5px solid var(--navy); border-bottom: 0; }
.trust-layout { display: grid; grid-template-columns: 0.72fr 1.28fr; gap: 64px; align-items: start; }
.trust-intro { padding-top: 4px; }
.trust-intro h2 { font-size: clamp(32px, 4vw, 50px); }
.trust-lead { margin: 20px 0 22px; color: var(--muted); }
.trust-profiles { display: grid; gap: 18px; }
.trust-profile { display: grid; grid-template-columns: 72px minmax(0, 1fr); gap: 24px; padding: 30px 0 34px; border-top: 1px solid var(--navy); }
.trust-profile:last-child { border-bottom: 1px solid var(--border); }
.trust-number { color: var(--navy); font: 900 38px/1 var(--font-display); letter-spacing: -0.06em; }
.trust-profile-body h3 { margin-bottom: 10px; font-size: clamp(22px, 2.4vw, 30px); }
.trust-profile-body > p:not(.verification-note) { margin: 0 0 20px; color: var(--muted); }
.verification-note { width: max-content; margin: 0 0 10px; padding-left: 10px; border-left: 3px solid var(--lime); color: var(--navy); font-size: 11px; font-weight: 850; }
.trust-meta { margin: 0; border-top: 1px solid var(--border); }
.trust-meta > div { display: grid; grid-template-columns: 128px minmax(0, 1fr); gap: 16px; padding: 10px 0; border-bottom: 1px solid var(--border); }
.trust-meta dt { color: var(--navy); font-size: 12px; font-weight: 850; }
.trust-meta dd { margin: 0; color: var(--muted); font-size: 13px; }
.trust-section .eyebrow::after { width: 48px; height: 4px; }
.trust-section .trust-intro h2,
.trust-section .trust-lead { color: var(--navy); }
.trust-section .text-link { color: var(--navy); border-bottom: 2px solid var(--navy); }
.trust-section .text-link:hover { color: var(--navy); text-decoration: none; border-bottom-color: var(--navy); }
.trust-section :focus-visible:not(.button) { outline-color: var(--navy); }
.trust-section .trust-profile { padding: 30px 28px 34px; background: var(--white); color: var(--navy); border-top: 5px solid var(--navy); }
.trust-section .trust-profile:last-child { border-bottom: 0; }
.trust-section .trust-number,
.trust-section .trust-profile-body h3,
.trust-section .trust-meta dt { color: var(--navy); }
.trust-section .trust-profile-body > p:not(.verification-note),
.trust-section .trust-meta dd { color: var(--muted); }
.trust-section .verification-note { width: max-content; padding: 4px 8px; background: var(--navy); border-left: 0; color: var(--white); }
.trust-section .trust-meta { border-top-color: oklch(22.79% 0.0545 252.76 / 0.36); }
.trust-section .trust-meta > div { border-bottom-color: oklch(22.79% 0.0545 252.76 / 0.24); }
.staff-featured-grid { display: grid; margin: 28px 0 42px; }
.staff-featured { grid-template-columns: 82px minmax(0, 1fr); padding: 34px 0 38px; }
.staff-featured .trust-number { font-size: 48px; }
.recruit-trust { padding: 40px 36px 46px; background: var(--white); border-top: 4px solid var(--navy); border-bottom: 1px solid var(--border); }
.recruit-trust-list { display: grid; margin-top: 26px; border-top: 1px solid var(--navy); }
.recruit-trust-item { display: grid; grid-template-columns: 58px minmax(0, 1fr); gap: 18px; padding: 24px 0; border-bottom: 1px solid var(--border); }
.recruit-trust-item > span { color: var(--navy); font: 900 26px/1 var(--font-display); }
.recruit-trust-item h3 { margin-bottom: 6px; }
.recruit-trust-item p { margin: 0 0 8px; color: var(--muted); }
.recruit-trust-item small { color: var(--navy); font-size: 11px; font-weight: 750; }

/* Trial practice and local partnership conversion systems */
.link--trial { color: var(--navy); text-decoration-color: var(--lime); text-underline-offset: 4px; }
.link--trial:hover { color: var(--navy); text-decoration: underline; text-decoration-thickness: 2px; }
.link--partner { color: var(--navy); text-decoration-color: var(--navy); text-underline-offset: 4px; }
.link--partner:hover { color: var(--black); text-decoration: underline; }


.section--trial { border-top: 5px solid var(--lime); }
.section--trial .check-list li::before { border-color: var(--lime); }
.section--trial .eyebrow--lime { width: max-content; padding: 4px 8px; background: var(--navy); color: var(--lime); }
.section--trial .text-link { color: var(--navy); }
.section--trial :focus-visible:not(.button) { outline-color: var(--navy); }
.section--trial-support { border-top: 1px solid color-mix(in oklch, var(--lime) 58%, var(--border)); }
.section--trial-support h2 { border-left-color: var(--lime); color: var(--navy); }
.section--trial-support .steps { border-top-color: var(--lime); }
.section--trial-support .step { border-bottom-color: color-mix(in oklch, var(--lime) 52%, var(--border)); }
.section--trial-support details { border-bottom-color: color-mix(in oklch, var(--lime) 52%, var(--border)); }
.recruit-summary.section--trial { border-bottom-color: color-mix(in oklch, var(--lime) 58%, var(--border)); }
.recruit-summary.section--trial .recruit-facts { border-left-color: var(--lime); }
.recruit-summary.section--trial .recruit-fact { border-right-color: color-mix(in oklch, var(--lime) 52%, var(--border)); }

.section--partner { color: var(--navy); border-top: 5px solid var(--navy); }
.dual-panel.section--partner { background: var(--surface); color: var(--navy); }
.dual-panel.section--partner::before { display: none; }
.dual-panel.section--partner h2 { color: var(--navy); }
.dual-panel.section--partner p:not(.eyebrow) { color: var(--muted); }
.section--partner .eyebrow--white { width: max-content; padding: 4px 8px; background: var(--navy); color: var(--white); }
.section--partner :focus-visible:not(.button) { outline-color: var(--navy); }
.page-sponsors #inquiry.section--partner .mission-main { background: var(--surface); color: var(--navy); border-top: 4px solid var(--navy); }
.page-sponsors #inquiry.section--partner .mission-main h3 { color: var(--navy); }
.page-sponsors #inquiry.section--partner .mission-main p:not(.eyebrow) { color: var(--muted); }

@media (max-width: 1080px) {
  .desktop-nav { display: none; }
  .header-actions .button--partner { display: none; }
  .header-inner { justify-content: space-between; }
  .brand { min-width: 0; }
  .menu-button { display: block; }
  .menu-button[aria-expanded="true"] span { opacity: 0; }
  .menu-button[aria-expanded="true"]::before { transform: translateY(7px) rotate(45deg); }
  .menu-button[aria-expanded="true"]::after { transform: translateY(-7px) rotate(-45deg); }
  .mobile-menu { position: fixed; top: 76px; inset-inline: 0; z-index: 79; padding: 12px 24px 20px; background: var(--orange); color: var(--white); border-top: 1px solid var(--white); border-bottom: 2px solid var(--orange); }
  .mobile-menu.open { display: block; }
  body.menu-open { overflow: hidden; }
  .mobile-menu a:not(.button) { display: block; padding: 12px 3px; border-bottom: 1px solid oklch(100% 0 0 / 0.22); color: var(--white); font-weight: 800; }
  .mobile-menu a:not(.button):hover, .mobile-menu a:not(.button)[aria-current="page"] { color: var(--white); border-bottom-color: var(--white); }
  .mobile-menu .button { width: 100%; margin-top: 12px; }
  .content-grid { grid-template-columns: 1fr; }
  .toc { display: none; }
  .recruit-summary-grid { grid-template-columns: 1fr; gap: 32px; }
  .partner-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .partner-slot:nth-child(even) { border-right: 0; }
  .partner-slot:nth-child(n + 3) { border-top: 1px solid var(--border); }
}

@media (max-width: 760px) {
  :root { --wrap: min(calc(100% - 32px), 1180px); }
  body { padding-bottom: 66px; font-size: 15px; }
  .site-header { height: 64px; }
  .brand-text { font-size: 10px; }
  .brand-text small { font-size: 7px; }
  .site-header .header-inner { gap: 12px; }
  .site-header .brand { min-width: 0; gap: 8px; }
  .site-header .brand-logo { width: 42px; height: 42px; flex-basis: 42px; }
  .site-header .brand-text { min-width: 0; padding: 0; }
  .site-header .brand-text strong { font-size: 10px; }
  .site-header .brand-text small { margin-top: 3px; font-size: 10px; letter-spacing: 0.09em; }
  .header-actions { display: none; }
  .header-instagram--mobile { display: inline-flex; margin-left: auto; }
  .header-instagram--mobile .social-link__label { display: none; }
  .header-instagram--mobile { min-width: 44px; padding-inline: 0; }
  .header-instagram--mobile svg { width: 44px; height: 44px; flex-basis: 44px; }
  .mobile-menu { top: 64px; padding-inline: 16px; }
  .hero { min-height: 690px; }
  .hero img { object-position: 66% center; }
  .hero::after { background: linear-gradient(0deg, var(--ink) 0%, color-mix(in oklch, var(--ink) 90%, transparent) 45%, color-mix(in oklch, var(--ink) 38%, transparent) 72%, transparent 92%); }
  .hero-content { padding: 300px 0 50px; }
  .hero h1 { font-size: clamp(40px, 11vw, 53px); line-height: 1.25; }
  .hero h1::after { width: 50px; margin-top: 20px; }
  .hero-lead { font-size: 15px; }
  .hero-actions { display: grid; }
  .hero-actions .button { width: 100%; }
  .section { padding: 68px 0; }
  .section.compact { padding: 52px 0; }
  .section-heading { grid-template-columns: 1fr; gap: 15px; margin-bottom: 31px; }
  .recruit-summary { padding: 50px 0; }
  .recruit-facts { grid-template-columns: 1fr 1fr; }
  .recruit-fact:nth-child(2) { border-right: 0; }
  .recruit-fact:nth-child(-n + 2) { border-bottom: 1px solid var(--border); }
  .mission-grid, .split-image, .dual-cta { grid-template-columns: 1fr; }
  .mission-photo { min-height: 300px; }
  .mission-photo img { min-height: 300px; }
  .principles { grid-template-columns: 1fr; }
  .principle { border-right: 0; border-bottom: 1px solid var(--border); }
  .principle:last-child { border-bottom: 0; }
  .stats { grid-template-columns: 1fr 1fr; }
  .stat:nth-child(2) { border-right: 0; }
  .stat:nth-child(-n + 2) { border-bottom: 1px solid var(--border); }
  .stat { padding: 25px 18px; }
  .activity-grid, .card-grid, .tier-grid { grid-template-columns: 1fr; }
  .activity-card, .info-card, .tier { border-right: 0; border-bottom: 1px solid var(--border); }
  .split-image img { min-height: 310px; max-height: 390px; }
  .split-copy { padding: 34px 24px; }
  .split-copy .button, .dual-panel .button { align-self: stretch; }
  .news-row { grid-template-columns: 92px 1fr 22px; gap: 10px; }
  .news-row .category { grid-column: 1; }
  .news-row b { grid-column: 2; grid-row: 1 / 3; }
  .news-card-body { grid-template-columns: 92px 1fr; gap: 10px 12px; }
  .news-card-body .category { justify-self: start; }
  .news-card h2 { grid-column: 2; grid-row: 1 / 3; }
  .news-card .text-link { display: none; }
  .cta-band .wrap { display: block; }
  .cta-band .button { width: 100%; margin-top: 22px; }
  .dual-panel { min-height: 290px; }
  .dual-panel:nth-child(2) { min-height: 350px; }
  .partner-grid { grid-template-columns: 1fr 1fr; }
  .partner-slot { min-height: 96px; padding: 18px 16px; }
  .partner-slot:nth-child(even) { border-right: 0; }
  .partner-logo { max-height: 50px; }
  .page-hero { padding: 50px 0 46px; }
  .page-hero p:not(.eyebrow) { font-size: 15px; }
  .breadcrumb { margin-bottom: 20px; }
  .page-team #philosophy .split-image { grid-template-columns: 1fr; }
  .page-team #philosophy .split-image img { order: 1; min-height: 310px; }
  .page-team #philosophy .split-copy { order: 2; }
  .data-table, .data-table tbody, .data-table tr, .data-table th, .data-table td { display: block; }
  .data-table th { width: 100%; padding: 11px 14px; }
  .data-table td { padding: 15px 14px; }
  .recruitment-actions { display: grid; }
  .staff-grid { grid-template-columns: 1fr; }
  .staff-card { border-right: 0; }
  .steps { grid-template-columns: 1fr; gap: 12px; }
  .step { grid-template-columns: 48px minmax(0, 1fr); gap: 15px; min-height: 0; padding: 22px 19px; }
  .step::before { width: 42px; height: 42px; font-size: 18px; }
  .form-grid { grid-template-columns: 1fr; }
  .field.full { grid-column: auto; }
  .site-footer { padding: 38px 0 74px; }
  .site-footer .brand-logo { width: 42px; height: 42px; flex-basis: 42px; }
  .site-footer .brand-text strong { font-size: 10px; }
  .site-footer .brand-text small { margin-top: 3px; font-size: 10px; letter-spacing: 0.09em; }
  .footer-grid { grid-template-columns: 1fr; gap: 25px; }
  .footer-bottom { display: block; margin-top: 24px; }
  .footer-bottom span { display: block; margin-top: 9px; }
  .mobile-cta { position: fixed; bottom: 0; inset-inline: 0; z-index: 90; height: 66px; display: grid; grid-template-columns: 1fr 1fr; gap: 7px; padding: 8px 11px; background: var(--navy); border-top: 1px solid oklch(100% 0 0 / 0.14); }
}

@media (max-width: 760px) {
  .trust-layout { grid-template-columns: 1fr; gap: 32px; }
  .trust-profile, .staff-featured { grid-template-columns: 50px minmax(0, 1fr); gap: 14px; padding: 24px 0 28px; }
  .trust-number, .staff-featured .trust-number { font-size: 30px; }
  .trust-meta > div { grid-template-columns: 1fr; gap: 2px; padding: 9px 0; }
  .staff-featured-grid { margin-bottom: 34px; }
  .recruit-trust { padding: 32px 20px 38px; }
  .recruit-trust-item { grid-template-columns: 42px minmax(0, 1fr); gap: 12px; }
  .recruit-trust-item > span { font-size: 23px; }
  .trust-section .trust-layout { gap: 28px; }
  .trust-section .trust-profiles { gap: 14px; }
  .trust-section .trust-profile { grid-template-columns: 42px minmax(0, 1fr); gap: 12px; padding: 24px 18px 28px; }
}

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

/* WordPress integration */
.screen-reader-text { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }
.desktop-nav ul, .mobile-menu ul, .footer-nav ul { display: contents; margin: 0; padding: 0; list-style: none; }
.desktop-nav li, .mobile-menu li, .footer-nav li { display: contents; }
.current-menu-item > a, .current_page_item > a { border-color: currentColor; }
.wp-site-blocks, .wp-block-group { margin: 0; }
.wp-block-html { margin: 0; }
.entry-content > :where(:not(.alignfull)) { width: var(--wrap); margin-inline: auto; }
.news-card-body .category { margin-left: 0; }
.pagination .nav-links { display: flex; gap: 6px; }
.pagination .page-numbers { min-width: 42px; min-height: 42px; display: grid; place-items: center; border: 1px solid var(--border); }
.pagination .current { background: var(--navy); color: var(--white); border-color: var(--navy); }
.snow-monkey-form { margin-top: 28px; }
.smf-form .smf-item { padding-block: 16px; border-bottom: 1px solid var(--border); }
.smf-form .smf-item__label { color: var(--navy); font-weight: 800; }
.smf-form input, .smf-form select, .smf-form textarea { width: 100%; min-height: 50px; border: 1px solid var(--border); border-radius: 2px; background: var(--white); }
.smf-form textarea { min-height: 160px; }
.smf-action .smf-button-control__control { min-height: 50px; padding-inline: 24px; border: 1px solid var(--navy); border-radius: 2px; background: var(--navy); color: var(--white); font-weight: 800; cursor: pointer; }
.smf-action .smf-button-control__control:hover { background: var(--white); color: var(--navy); }
.required { display: inline-block; margin-left: 6px; padding: 1px 6px; background: var(--orange); color: var(--white); font-size: 11px; }
body.admin-bar .site-header { top: 32px; }
@media (max-width: 782px) { body.admin-bar .site-header { top: 46px; } }
