/* ================================================
   AEQUITAS HEALTH – Design System v4
   V4 Website Build – All Decisions Locked
   Production build – shared across all pages
   ================================================ */

/* === RESET === */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

/* === DESIGN TOKENS === */
:root {
  --navy: #1B2A4A;
  --navy-deep: #0F1B30;
  --navy-mid: #1e3354;
  --teal: #2FB4C8;
  --teal-bright: #3ED4EC;
  --teal-accessible: #1A8A9C;
  --teal-glow: rgba(47,180,200,0.10);
  --teal-subtle: rgba(47,180,200,0.04);
  --warm: #E8A87C;
  --warm-subtle: rgba(232,168,124,0.06);
  --white: #FFFFFF;
  --off-white: #F6F7F9;
  --warm-white: #FAFBFC;
  --text-primary: #1B2A4A;
  --text-body: #404D61;
  --text-secondary: #637083;
  --text-muted: #8E97A4;
  --text-faint: #B3B9C3;
  --border: rgba(27,42,74,0.06);
  --border-med: rgba(27,42,74,0.10);
  --border-strong: rgba(27,42,74,0.14);
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.05);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.07);
  --font-display: 'Instrument Serif', Georgia, serif;
  --font-body: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --container: 1100px;
  --container-narrow: 720px;
  --gutter: clamp(1.25rem, 5vw, 4rem);
  --gap: clamp(5rem, 10vw, 8rem);
  --gap-sm: clamp(3rem, 6vw, 5rem);
  --r-sm: 8px;
  --r-pill: 100px;
  --r-card: 16px;
}

/* === BASE === */
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--text-primary);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body::after {
  content: '';
  position: fixed; inset: 0;
  pointer-events: none; z-index: 9999; opacity: 0.018;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 150px;
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  html { scroll-behavior: auto; }
}
:focus-visible { outline: 2px solid var(--teal); outline-offset: 3px; border-radius: 4px; }
:focus:not(:focus-visible) { outline: none; }
::selection { background: rgba(47,180,200,0.14); color: var(--navy-deep); }
img { max-width: 100%; display: block; }
a { color: inherit; }

/* === NAVIGATION === */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 0 var(--gutter); height: 68px;
  display: flex; align-items: center; justify-content: space-between;
  transition: all 0.45s var(--ease);
}
.nav.scrolled {
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  box-shadow: 0 1px 0 var(--border); height: 58px;
}
.nav-logo img { height: 26px; width: auto; transition: all 0.35s var(--ease); filter: brightness(0) invert(1); }
.nav.scrolled .nav-logo img { height: 22px; filter: none; }
.nav-links { display: flex; align-items: center; gap: 0.15rem; list-style: none; }
.nav-link {
  font-size: 0.82rem; font-weight: 500; color: rgba(255,255,255,0.7);
  text-decoration: none; padding: 0.42rem 0.82rem;
  border-radius: var(--r-pill); transition: all 0.2s;
}
.nav-link:hover { color: var(--white); background: rgba(255,255,255,0.08); }
.nav-link.active { color: var(--white); background: rgba(255,255,255,0.1); font-weight: 600; }
.nav.scrolled .nav-link { color: var(--text-secondary); }
.nav.scrolled .nav-link:hover { color: var(--navy); background: var(--off-white); }
.nav.scrolled .nav-link.active { color: var(--navy); background: var(--off-white); }
.nav-cta {
  margin-left: 0.6rem; padding: 0.48rem 1.3rem;
  background: transparent; color: rgba(255,255,255,0.85); font-weight: 600;
  border-radius: var(--r-pill); font-size: 0.82rem;
  text-decoration: none; border: 1.5px solid rgba(255,255,255,0.25);
  transition: all 0.4s var(--ease);
}
.nav-cta:hover { border-color: var(--teal-bright); color: var(--teal-bright); }
.nav.scrolled .nav-cta { background: var(--navy); color: var(--white); border-color: var(--navy); }
.nav.scrolled .nav-cta:hover { background: var(--teal); border-color: var(--teal); transform: translateY(-1px); box-shadow: 0 4px 16px rgba(47,180,200,0.25); }

.hamburger {
  display: none; width: 36px; height: 36px;
  align-items: center; justify-content: center;
  background: none; border: none; cursor: pointer;
  border-radius: var(--r-sm); position: relative;
}
.hamburger span {
  display: block; width: 18px; height: 1.5px;
  background: rgba(255,255,255,0.85); border-radius: 2px;
  position: absolute; left: 50%; transform: translateX(-50%);
  transition: background 0.35s var(--ease);
}
.nav.scrolled .hamburger span { background: var(--navy); }
.hamburger span:nth-child(1) { top: 12px; }
.hamburger span:nth-child(2) { top: 17px; }
.hamburger span:nth-child(3) { top: 22px; }

.overlay {
  position: fixed; inset: 0; z-index: 200;
  background: var(--navy-deep);
  display: flex; flex-direction: column; justify-content: center;
  padding: 3rem var(--gutter);
  opacity: 0; visibility: hidden; transition: all 0.4s var(--ease);
}
.overlay.open { opacity: 1; visibility: visible; }
.overlay-close {
  position: absolute; top: 1rem; right: var(--gutter);
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.08);
  border-radius: 50%; color: rgba(255,255,255,0.65);
  font-size: 1.15rem; cursor: pointer; transition: all 0.25s;
}
.overlay-close:hover { color: white; background: rgba(255,255,255,0.1); }
.overlay-tag {
  font-size: 0.65rem; font-weight: 700; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--teal-accessible); margin-bottom: 2.5rem;
}
.overlay-main a {
  display: block; font-family: var(--font-display);
  font-size: clamp(2rem, 5.5vw, 3.25rem);
  color: rgba(255,255,255,0.55); text-decoration: none;
  line-height: 1.35; transition: all 0.3s;
}
.overlay-main a:hover { color: var(--teal-bright); transform: translateX(8px); }
.overlay a {
  display: block; font-family: var(--font-display);
  font-size: clamp(2rem, 5.5vw, 3.25rem);
  color: rgba(255,255,255,0.55); text-decoration: none;
  line-height: 1.35; transition: all 0.3s;
}
.overlay a:hover { color: var(--teal-bright); transform: translateX(8px); }
.overlay-secondary {
  display: flex; gap: 1.5rem; margin-top: 2rem;
  padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,0.06);
}
.overlay-secondary a {
  font-family: var(--font-body);
  font-size: 0.88rem;
  color: rgba(255,255,255,0.4);
}
.overlay-secondary a:hover { color: var(--teal-bright); transform: none; }

/* === BUTTONS === */
.btn {
  display: inline-flex; align-items: center; gap: 0.45rem;
  font-family: var(--font-body); font-weight: 600;
  text-decoration: none; border-radius: var(--r-pill);
  cursor: pointer; transition: all 0.32s var(--ease);
  border: none; line-height: 1;
}
.btn svg { width: 14px; height: 14px; transition: transform 0.3s var(--ease); flex-shrink: 0; }
.btn:hover svg { transform: translateX(3px); }
.btn-md { font-size: 0.88rem; padding: 0.82rem 1.75rem; }
.btn-sm { font-size: 0.82rem; padding: 0.65rem 1.35rem; }
.btn-navy { background: var(--navy); color: var(--white); border: 1px solid var(--navy); white-space: nowrap; }
.btn-navy:hover { background: var(--teal); border-color: var(--teal); transform: translateY(-2px); box-shadow: 0 6px 24px rgba(47,180,200,0.3); }
.btn-white { background: var(--white); color: var(--navy); }
.btn-white:hover { background: var(--teal-bright); color: var(--white); transform: translateY(-2px); }
.btn-outline { background: transparent; color: var(--navy); box-shadow: inset 0 0 0 1.5px var(--border-strong); }
.btn-outline:hover { color: var(--teal); box-shadow: inset 0 0 0 1.5px var(--teal); }
.btn-outline-lt { background: transparent; color: rgba(255,255,255,0.7); box-shadow: inset 0 0 0 1.5px rgba(255,255,255,0.2); }
.btn-outline-lt:hover { color: var(--teal-bright); box-shadow: inset 0 0 0 1.5px rgba(47,180,200,0.4); }
.btn-text { padding: 0.4rem 0; background: transparent; color: var(--teal); font-size: 0.88rem; font-weight: 600; text-decoration: none; }
.btn-text:hover { color: var(--navy); }

/* === TYPOGRAPHY === */
.slabel {
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--teal-accessible); margin-bottom: 0.75rem;
}
.stitle {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 3.2vw, 2.65rem);
  font-weight: 400; line-height: 1.12; letter-spacing: -0.01em;
}
.stitle-dk { color: var(--navy-deep); }
.stitle-wh { color: var(--white); }
.sdesc { font-size: 0.92rem; color: rgba(255,255,255,0.65); line-height: 1.65; margin-top: 0.75rem; }

/* === SCROLL ANIMATIONS === */
html.js-ready .r { opacity: 0; transform: translateY(16px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
html.js-ready .r.v { opacity: 1; transform: translateY(0); }
.d1 { transition-delay: 0.08s; }
.d2 { transition-delay: 0.16s; }
.d3 { transition-delay: 0.24s; }
.d4 { transition-delay: 0.32s; }
.d5 { transition-delay: 0.40s; }
.d6 { transition-delay: 0.48s; }

/* === PAGE HEADERS === */
.page-header {
  padding: calc(68px + var(--gap-sm)) var(--gutter) var(--gap-sm);
  text-align: center;
}
.page-header-inner { max-width: var(--container-narrow); margin: 0 auto; }
.ph-about, .ph-reach, .ph-journal, .ph-team, .ph-members, .ph-conf, .ph-news, .ph-press {
  background: linear-gradient(170deg, var(--navy-deep) 0%, var(--navy) 55%, var(--navy-mid) 100%);
}
.page-header .slabel { color: var(--teal-bright); }

/* === HOMEPAGE: Hero === */
.hero {
  min-height: 100vh; display: flex; align-items: center; justify-content: center;
  padding: 0 var(--gutter); text-align: center;
  background: linear-gradient(170deg, var(--navy-deep) 0%, var(--navy) 45%, var(--navy-mid) 100%);
  position: relative; overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 50% at 50% 120%, rgba(47,180,200,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner { max-width: 740px; position: relative; z-index: 2; }
.hero-founded {
  display: inline-block;
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--teal-accessible);
  margin-bottom: 1.5rem;
  padding: 0.35rem 1rem;
  border: 1px solid rgba(47,180,200,0.2);
  border-radius: var(--r-pill);
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5.5vw, 4.8rem);
  color: var(--white); font-weight: 400;
  line-height: 1.06; letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
}
.hero h1 i { font-style: italic; color: var(--teal-bright); }
.hero-sub {
  font-size: clamp(0.88rem, 1.4vw, 1.05rem);
  color: rgba(255,255,255,0.6); line-height: 1.6;
  max-width: 520px; margin: 0 auto 2.5rem;
}
.hero-stats {
  display: flex; justify-content: center; gap: clamp(2rem, 5vw, 4rem);
  margin-bottom: 2.5rem;
}
.hero-stat { text-align: center; }
.hero-stat .num {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  color: var(--white); font-weight: 400;
  font-variant-numeric: tabular-nums;
}
.hero-stat .lbl { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.12em; color: rgba(255,255,255,0.55); margin-top: 0.25rem; }
.hero-btns { display: flex; align-items: center; justify-content: center; gap: 0.65rem; flex-wrap: wrap; }

/* === HOMEPAGE: Why Aequitas (v4 NEW) === */
.why-aequitas { padding: var(--gap) var(--gutter); }
.why-aequitas-inner { max-width: var(--container-narrow); margin: 0 auto; text-align: center; }
.why-aequitas-body {
  font-size: 0.95rem; color: var(--text-body); line-height: 1.75;
  margin: 1rem auto 0; max-width: 620px; text-align: left;
}
.why-aequitas-body strong { color: var(--navy); }
.why-quote {
  margin-top: 2.5rem; padding: 2rem 2.5rem;
  background: var(--off-white); border-radius: var(--r-card);
  border-left: 3px solid var(--warm); text-align: left;
}
.why-quote blockquote {
  font-family: var(--font-display); font-size: 1.1rem;
  color: var(--navy); line-height: 1.45; margin-bottom: 0.75rem;
}
.why-quote cite {
  font-style: normal; font-size: 0.82rem; color: var(--text-secondary);
  display: block;
}
.why-quote cite strong { color: var(--navy); }

/* === HOMEPAGE: Pillars === */
.pillars { padding: var(--gap) var(--gutter); background: var(--off-white); }
.pillars-inner { max-width: var(--container); margin: 0 auto; text-align: center; }
.pillars-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-top: 3rem; }
.pillar { text-align: left; padding: 2rem; border-radius: var(--r-card); background: var(--white); }
.pillar-icon {
  width: 40px; height: 40px; border-radius: 10px;
  background: var(--teal-glow); color: var(--teal);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem;
}
.pillar h3 { font-size: 1.05rem; font-weight: 600; margin-bottom: 0.5rem; }
.pillar p { font-size: 0.88rem; color: var(--text-body); line-height: 1.65; }

/* === HOMEPAGE: How It Works === */
.how { padding: var(--gap) var(--gutter); }
.how-inner { max-width: var(--container); margin: 0 auto; }
.how-header { text-align: center; margin-bottom: 3rem; }
.how-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.how-card { background: var(--off-white); border-radius: var(--r-card); padding: 2rem; box-shadow: var(--shadow-sm); }
.how-num { font-family: var(--font-display); font-size: 1.8rem; color: var(--teal-accessible); margin-bottom: 1rem; font-weight: 400; }
.how-card h3 { font-size: 1rem; font-weight: 600; margin-bottom: 0.5rem; }
.how-card p { font-size: 0.88rem; color: var(--text-body); line-height: 1.65; }

/* === HOMEPAGE: McNulty Endorsement === */
.endorsement { padding: var(--gap) var(--gutter); background: var(--off-white); }
.endorsement-inner {
  max-width: var(--container-narrow); margin: 0 auto; text-align: center;
  position: relative; padding: 3rem 2rem;
}
.endorsement-badge {
  display: inline-block; font-size: 0.62rem; font-weight: 700;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--teal); margin-bottom: 1.25rem;
  padding: 0.3rem 0.85rem; border: 1px solid rgba(47,180,200,0.2);
  border-radius: var(--r-pill);
}
.endorsement-txt {
  font-family: var(--font-display); font-size: clamp(1.15rem, 2vw, 1.4rem);
  line-height: 1.45; color: var(--navy-deep); margin-bottom: 1.5rem;
}
.endorsement-cite { font-size: 0.82rem; color: var(--text-secondary); line-height: 1.5; }
.endorsement-cite strong { color: var(--navy); }
.endorsement-link {
  display: inline-flex; align-items: center; gap: 0.35rem;
  margin-top: 1.25rem; font-size: 0.82rem; color: var(--teal);
  text-decoration: none; font-weight: 600;
}
.endorsement-link:hover { color: var(--navy); }
.endorsement-link svg { width: 13px; height: 13px; }

/* === HOMEPAGE: CTA === */
.cta-idx {
  padding: var(--gap) var(--gutter);
  background: linear-gradient(170deg, var(--navy-deep) 0%, var(--navy) 55%, var(--navy-mid) 100%);
  text-align: center;
}
.cta-idx-inner { max-width: 560px; margin: 0 auto; position: relative; z-index: 1; }

/* === ABOUT: Origin === */
.origin { padding: var(--gap) var(--gutter); }
.origin-inner { max-width: var(--container); margin: 0 auto; }
.origin-layout { display: grid; grid-template-columns: 3fr 2fr; gap: 3rem; align-items: center; }
.origin-text h2 { margin-bottom: 1.25rem; }
.origin-text p { font-size: 0.92rem; color: var(--text-body); line-height: 1.75; margin-bottom: 1rem; }
.origin-pullquote {
  font-family: var(--font-display); font-size: 1.35rem;
  color: var(--navy); line-height: 1.35;
  border-left: 3px solid var(--warm); padding-left: 1.5rem; margin-top: 1rem;
}

/* === ABOUT: Timeline === */
.timeline { padding: var(--gap-sm) var(--gutter); background: var(--off-white); }
.timeline-inner { max-width: var(--container); margin: 0 auto; }
.timeline-header { text-align: center; margin-bottom: 3rem; }
.timeline-track { position: relative; max-width: 700px; margin: 0 auto; }
.timeline-track::before {
  content: ''; position: absolute; left: 20px; top: 0; bottom: 0;
  width: 2px; background: var(--border-med);
}
.tl-item { position: relative; padding-left: 56px; margin-bottom: 2.5rem; }
.tl-dot {
  position: absolute; left: 12px; top: 4px;
  width: 18px; height: 18px; border-radius: 50%;
  background: var(--white); border: 2px solid var(--teal);
}
.tl-year { font-family: var(--font-display); font-size: 1.2rem; color: var(--teal-accessible); margin-bottom: 0.25rem; }
.tl-content h3 { font-size: 0.95rem; font-weight: 600; margin-bottom: 0.25rem; }
.tl-content p { font-size: 0.85rem; color: var(--text-secondary); line-height: 1.6; }

/* === ABOUT: Values === */
.values { padding: var(--gap) var(--gutter); }
.values-inner { max-width: var(--container); margin: 0 auto; }
.values-header { text-align: center; margin-bottom: 3rem; }
.values-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.vc { padding: 1.75rem; border-radius: var(--r-card); background: var(--off-white); }
.vc-icon {
  width: 36px; height: 36px; border-radius: 8px;
  background: var(--teal-glow); color: var(--teal);
  display: flex; align-items: center; justify-content: center; margin-bottom: 1rem;
}
.vc h3 { font-size: 0.95rem; font-weight: 600; margin-bottom: 0.4rem; }
.vc p { font-size: 0.84rem; color: var(--text-body); line-height: 1.65; }

/* === ABOUT: Team/Leadership (v4 merged into About) === */
.team-section { padding: var(--gap) var(--gutter); }
.team-inner { max-width: var(--container-narrow); margin: 0 auto; }
.team-header { text-align: center; margin-bottom: 2.5rem; }
.team-lead {
  display: grid; grid-template-columns: auto 1fr; gap: 1.75rem;
  margin-bottom: 3rem; align-items: start;
}
.team-avatar { width: 90px; height: 90px; border-radius: 50%; overflow: hidden; flex-shrink: 0; }
.team-avatar img { width: 100%; height: 100%; object-fit: cover; }
.team-name { font-size: 1.1rem; font-weight: 600; }
.team-role { font-size: 0.82rem; color: var(--teal-accessible); font-weight: 500; margin-bottom: 0.75rem; }
.team-bio { font-size: 0.88rem; color: var(--text-body); line-height: 1.7; }
.team-personal {
  font-size: 0.84rem; color: var(--text-muted); font-style: italic;
  margin-top: 0.75rem; padding-top: 0.75rem;
  border-top: 1px solid var(--border);
  border-left: 3px solid var(--warm); padding-left: 1rem;
}
.chapter-leadership { padding: var(--gap-sm) var(--gutter); background: var(--off-white); }
.chapter-leadership-inner { max-width: var(--container-narrow); margin: 0 auto; text-align: center; }
.chapter-leadership h2 { margin-bottom: 0.75rem; }
.chapter-leadership p { font-size: 0.92rem; color: var(--text-body); line-height: 1.7; max-width: 600px; margin: 0 auto; }

/* === ABOUT: Awards === */
.awards { padding: var(--gap) var(--gutter); background: var(--off-white); }
.awards-inner { max-width: var(--container-narrow); margin: 0 auto; text-align: center; }
.award-card {
  margin-top: 2rem; padding: 2.5rem; background: var(--white);
  border-radius: var(--r-card); box-shadow: var(--shadow-md); text-align: left;
}
.award-card img { height: 64px; width: auto; margin-bottom: 1.25rem; }
.award-card h3 { font-size: 1rem; font-weight: 600; color: var(--teal-accessible); margin-bottom: 0.75rem; }
.award-card p { font-size: 0.88rem; color: var(--text-body); line-height: 1.65; }
.award-link { display: inline-flex; align-items: center; gap: 0.35rem; margin-top: 1rem; font-size: 0.82rem; color: var(--teal-accessible); text-decoration: none; font-weight: 600; }
.award-link:hover { color: var(--navy); }

/* === ABOUT: Recognition callout === */
.recognition-callout {
  margin: 0 var(--gutter); padding: 3rem;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  border-radius: var(--r-card);
}
.recognition-callout-inner {
  max-width: var(--container); margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between; gap: 2rem;
}
.recognition-callout h3 { font-family: var(--font-display); font-size: 1.4rem; color: var(--white); margin-bottom: 0.75rem; }
.recognition-callout p { font-size: 0.88rem; color: rgba(255,255,255,0.65); line-height: 1.65; max-width: 580px; }

/* === ABOUT: CTA === */
.cta-about { padding: var(--gap) var(--gutter); text-align: center; }
.cta-about-inner { max-width: 560px; margin: 0 auto; }

/* === REACH: Stats === */
.reach-section { padding: var(--gap) var(--gutter); }
.reach-inner { max-width: var(--container); margin: 0 auto; }
.reach-hero-card {
  text-align: center; padding: 2.5rem 2rem;
  background: var(--navy); border-radius: var(--r-card);
  margin-bottom: 1.5rem;
}
.reach-hero-num {
  font-family: var(--font-display);
  font-size: clamp(3rem, 5vw, 4.5rem);
  color: var(--teal-bright); font-weight: 400; line-height: 1;
}
.reach-hero-lbl {
  font-size: 0.88rem; font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.1em; color: rgba(255,255,255,0.7); margin-top: 0.5rem;
}
.reach-hero-desc { font-size: 0.88rem; color: rgba(255,255,255,0.5); margin-top: 0.25rem; }
.reach-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-bottom: var(--gap-sm); }
.reach-card {
  padding: 1.75rem; border-radius: var(--r-card);
  background: var(--off-white); text-align: center;
}
.reach-card-num .t {
  font-family: var(--font-display); font-size: clamp(2rem, 3vw, 2.6rem);
  color: var(--navy); font-weight: 400; font-variant-numeric: tabular-nums;
}
.reach-card-lbl { font-size: 0.78rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-secondary); margin-top: 0.35rem; }
.reach-card-desc { font-size: 0.78rem; color: var(--text-muted); margin-top: 0.2rem; }
.reach-features { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; margin-bottom: var(--gap-sm); }
.reach-feat { padding: 2rem; border-radius: var(--r-card); border: 1px solid var(--border); }
.reach-feat h3 { font-size: 1rem; font-weight: 600; margin-bottom: 0.5rem; }
.reach-feat p { font-size: 0.88rem; color: var(--text-body); line-height: 1.65; }

/* === REACH: Animated Map (v4 canvas) === */
/* === REACH: Stats and features === */

/* === REACH: Conference & Grants Previews === */
.conf-preview, .grants-preview { padding: var(--gap-sm) var(--gutter); }
.conf-preview { background: var(--white); }
.grants-preview { background: var(--off-white); }
.conf-preview-inner, .grants-preview-inner { max-width: var(--container); margin: 0 auto; }
.preview-card {
  padding: 2.5rem; border-radius: var(--r-card);
  border: 1px solid var(--border); background: var(--white); text-align: center;
}
.preview-card h3 { font-family: var(--font-display); font-size: 1.35rem; color: var(--navy-deep); margin-bottom: 0.5rem; }
.preview-card p { font-size: 0.88rem; color: var(--text-body); line-height: 1.65; max-width: 560px; margin: 0 auto; }
.preview-stats { display: flex; justify-content: center; gap: 2.5rem; margin: 1.5rem 0; }
.preview-stat { text-align: center; }
.preview-stat-num { font-family: var(--font-display); font-size: 1.8rem; color: var(--teal-accessible); }
.preview-stat-lbl { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-muted); margin-top: 0.15rem; }

/* === FAQ === */
.faq-section { padding: var(--gap) var(--gutter); }
.faq-inner { max-width: var(--container-narrow); margin: 0 auto; }
.faq-header { text-align: center; margin-bottom: 2.5rem; }
.faq-item { border-bottom: 1px solid var(--border-med); }
.faq-q {
  width: 100%; text-align: left; padding: 1.25rem 0;
  font-family: var(--font-body); font-size: 0.95rem; font-weight: 600;
  color: var(--navy); background: none; border: none;
  cursor: pointer; display: flex; align-items: center; justify-content: space-between;
  transition: color 0.2s; min-height: 48px;
}
.faq-q:hover { color: var(--teal-accessible); }
.faq-q svg { flex-shrink: 0; transition: transform 0.3s var(--ease); }
.faq-q.open svg { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s var(--ease), padding 0.4s var(--ease); }
.faq-a.open { max-height: 300px; padding-bottom: 1.25rem; }
.faq-a p { font-size: 0.88rem; color: var(--text-body); line-height: 1.7; }

/* === REACH: Start section === */
.start-section { padding: var(--gap) var(--gutter); }
.start-inner { max-width: var(--container-narrow); margin: 0 auto; text-align: center; }
.start-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin: 2rem 0; text-align: left; }
.start-step { padding: 1.5rem; background: var(--off-white); border-radius: var(--r-card); }
.start-step-num {
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--teal-glow); color: var(--teal);
  font-weight: 700; font-size: 0.82rem;
  display: flex; align-items: center; justify-content: center; margin-bottom: 0.75rem;
}
.start-step h4 { font-size: 0.95rem; font-weight: 600; margin-bottom: 0.35rem; }
.start-step p { font-size: 0.84rem; color: var(--text-body); line-height: 1.6; }

.cta-reach, .cta-team, .cta-members {
  padding: var(--gap) var(--gutter); text-align: center;
  background: linear-gradient(170deg, var(--navy-deep) 0%, var(--navy) 55%, var(--navy-mid) 100%);
}

/* === JOURNAL: Masthead & Browsing === */
.journal-section { padding: var(--gap) var(--gutter); }
.journal-inner { max-width: var(--container); margin: 0 auto; }
.journal-masthead {
  text-align: center; margin-bottom: 2.5rem;
  padding-bottom: 2rem; border-bottom: 2px solid var(--navy);
}
.journal-masthead-title {
  font-family: var(--font-display); font-style: italic;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: var(--navy-deep); font-weight: 400; letter-spacing: -0.01em; margin-bottom: 0.5rem;
}
.journal-masthead-sub { font-size: 0.82rem; color: var(--text-secondary); line-height: 1.6; }
.journal-masthead-sub strong { color: var(--navy); }
.journal-masthead-rule { width: 60px; height: 1px; background: var(--teal); margin: 1rem auto 0; }
.journal-masthead-note {
  font-size: 0.75rem; color: var(--text-muted); font-style: italic;
  margin-top: 0.75rem; line-height: 1.5;
}

/* v4: Editorial board */
.editorial-board { margin-top: 1.5rem; }
.editorial-board-label {
  font-size: 0.65rem; font-weight: 700; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--teal-accessible); margin-bottom: 0.75rem;
}
.editorial-board-list {
  display: flex; gap: 1.5rem 2rem; justify-content: center; flex-wrap: wrap;
  max-width: 580px; margin: 0 auto;
}
.eb-member { text-align: center; width: 160px; }
.eb-member-name { font-size: 0.85rem; font-weight: 600; color: var(--navy); }
.eb-member-title { font-size: 0.75rem; color: var(--text-secondary); line-height: 1.4; margin-top: 0.15rem; }

.journal-vol-nav {
  display: flex; gap: 0.35rem; margin-bottom: 1.5rem; flex-wrap: wrap; justify-content: center;
}
.journal-vol-btn {
  padding: 0.5rem 1.1rem; border-radius: var(--r-pill);
  font-family: var(--font-body); font-size: 0.78rem; font-weight: 500;
  background: var(--off-white); color: var(--text-secondary);
  border: 1px solid var(--border); cursor: pointer; transition: all 0.25s;
}
.journal-vol-btn.active { background: var(--navy); color: var(--white); border-color: var(--navy); }
.journal-vol-btn:hover:not(.active) { color: var(--navy); border-color: var(--border-strong); }
.journal-filters { display: flex; gap: 0.5rem; margin-bottom: 1.5rem; flex-wrap: wrap; justify-content: center; }
.journal-filter {
  padding: 0.4rem 0.9rem; border-radius: var(--r-pill);
  font-family: var(--font-body); font-size: 0.75rem; font-weight: 500;
  background: transparent; color: var(--text-secondary);
  border: 1px solid var(--border); cursor: pointer; transition: all 0.25s;
}
.journal-filter.active { background: var(--teal); color: var(--white); border-color: var(--teal); }
.journal-filter:hover:not(.active) { color: var(--navy); }
.journal-vol-panel { display: none; }
.journal-vol-panel.active { display: block; }
.journal-toc-item {
  display: flex; justify-content: space-between; align-items: start; gap: 1.5rem;
  padding: 1.15rem 0; border-bottom: 1px solid var(--border);
  text-decoration: none; color: inherit; transition: all 0.2s;
}
.journal-toc-item:first-child { padding-top: 0; }
.journal-toc-item:last-child { border-bottom: none; }
.journal-toc-item:hover { color: var(--teal-accessible); }
.journal-toc-item:hover .jtoc-title { color: var(--teal-accessible); }
.jtoc-body { flex: 1; }
.jtoc-tag {
  display: inline-block; font-size: 0.62rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--teal-accessible); margin-bottom: 0.25rem;
}
.jtoc-title { font-size: 0.95rem; font-weight: 600; line-height: 1.35; margin-bottom: 0.2rem; color: var(--navy); transition: color 0.2s; }
.jtoc-desc { font-size: 0.82rem; color: var(--text-body); line-height: 1.5; }
.jtoc-meta { font-size: 0.75rem; color: var(--text-secondary); margin-top: 0.3rem; }
.jtoc-date { font-size: 0.75rem; color: var(--text-muted); white-space: nowrap; padding-top: 0.15rem; }
.jtoc-arrow { color: var(--text-faint); transition: color 0.2s; flex-shrink: 0; padding-top: 0.2rem; }
.journal-toc-item:hover .jtoc-arrow { color: var(--teal-accessible); }
.journal-submit { padding: var(--gap-sm) var(--gutter); background: var(--white); text-align: center; border-top: 1px solid var(--border); }
.journal-submit-inner { max-width: var(--container-narrow); margin: 0 auto; }

/* v4: Expandable submission guidelines */
.guidelines-toggle {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-family: var(--font-body); font-size: 0.88rem; font-weight: 600;
  color: var(--teal-accessible); background: none; border: none; cursor: pointer;
  padding: 0.5rem 0; transition: color 0.2s;
}
.guidelines-toggle:hover { color: var(--navy); }
.guidelines-toggle::after {
  content: '+'; font-size: 1.1rem; transition: transform 0.3s var(--ease);
}
.guidelines-toggle.open::after { content: '↑'; }
.guidelines-content {
  max-height: 0; overflow: hidden;
  transition: max-height 0.5s var(--ease);
  text-align: left;
}
.guidelines-content.open { max-height: 2000px; }
.guidelines-body {
  padding: 1.5rem 0;
  font-size: 0.88rem; color: var(--text-body); line-height: 1.7;
}
.guidelines-body h4 { font-size: 0.92rem; font-weight: 600; color: var(--navy); margin: 1.25rem 0 0.5rem; }
.guidelines-body h4:first-child { margin-top: 0; }
.guidelines-body p { margin-bottom: 0.75rem; }
.guidelines-body ul { margin: 0.5rem 0 1rem 1.25rem; }
.guidelines-body li { margin-bottom: 0.35rem; font-size: 0.85rem; }

/* === v4: Journal Article Page === */
.article-page { padding: calc(68px + 2rem) var(--gutter) var(--gap); }
.article-inner { max-width: 680px; margin: 0 auto; }
.article-meta { margin-bottom: 2rem; padding-bottom: 1.5rem; border-bottom: 1px solid var(--border-med); }
.article-type-tag {
  display: inline-block; font-size: 0.62rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--teal-accessible);
  padding: 0.2rem 0.6rem; border: 1px solid rgba(47,180,200,0.2);
  border-radius: var(--r-pill); margin-bottom: 0.75rem;
}
.article-title {
  font-family: var(--font-display); font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--navy-deep); line-height: 1.15; margin-bottom: 0.75rem;
}
.article-authors { font-size: 0.88rem; color: var(--text-secondary); margin-bottom: 0.35rem; }
.article-info { font-size: 0.78rem; color: var(--text-muted); }
.article-body { font-size: 0.95rem; color: var(--text-body); line-height: 1.8; }
.article-body p { margin-bottom: 1.25rem; }
.article-body h2 { font-size: 1.15rem; font-weight: 600; color: var(--navy); margin: 2rem 0 0.75rem; }
.article-body h3 { font-size: 1rem; font-weight: 600; color: var(--navy); margin: 1.5rem 0 0.5rem; }
.article-body blockquote {
  border-left: 3px solid var(--warm); padding-left: 1.25rem;
  margin: 1.5rem 0; font-style: italic; color: var(--text-secondary);
}
.article-affiliations {
  margin-top: 2rem; padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  font-size: 0.82rem; color: var(--text-muted); line-height: 1.6;
}

/* Citation block */
.cite-block {
  margin-top: 2rem; padding: 1.5rem;
  background: var(--off-white); border-radius: var(--r-card);
  border: 1px solid var(--border);
}
.cite-label { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--teal-accessible); margin-bottom: 0.5rem; }
.cite-text { font-size: 0.82rem; color: var(--text-body); line-height: 1.6; }
.cite-copy-btn {
  margin-top: 0.75rem; padding: 0.4rem 0.9rem;
  font-family: var(--font-body); font-size: 0.75rem; font-weight: 600;
  background: var(--navy); color: var(--white); border: none;
  border-radius: var(--r-pill); cursor: pointer; transition: all 0.25s;
}
.cite-copy-btn:hover { background: var(--teal); }
.cite-copy-btn.copied { background: #2d8a3e; }

/* Article nav */
.article-nav {
  display: flex; justify-content: space-between; align-items: center;
  margin-top: 3rem; padding-top: 1.5rem; border-top: 1px solid var(--border);
  font-size: 0.82rem;
}
.article-nav a { color: var(--teal-accessible); text-decoration: none; font-weight: 600; }
.article-nav a:hover { color: var(--navy); }

/* === v4: Press Release Page === */
.press-page { padding: calc(68px + 2rem) var(--gutter) var(--gap); }
.press-inner { max-width: 720px; margin: 0 auto; }
.press-date { font-size: 0.78rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 0.5rem; }
.press-title {
  font-family: var(--font-display); font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--navy-deep); line-height: 1.15; margin-bottom: 1.5rem;
}
.press-body { font-size: 0.92rem; color: var(--text-body); line-height: 1.75; }
.press-body p { margin-bottom: 1rem; }
.press-body h2 { font-size: 1.1rem; font-weight: 600; color: var(--navy); margin: 1.75rem 0 0.75rem; }
.press-body h3 { font-size: 0.95rem; font-weight: 600; color: var(--navy); margin: 1.25rem 0 0.5rem; }
.press-body strong { color: var(--navy); }
.press-boilerplate {
  margin-top: 2.5rem; padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  font-size: 0.85rem; color: var(--text-secondary); line-height: 1.65;
}
.press-boilerplate strong { color: var(--navy); }

/* === v4: News listing page === */
.news-list { padding: var(--gap) var(--gutter); }
.news-list-inner { max-width: var(--container-narrow); margin: 0 auto; }
.news-item {
  padding: 1.5rem 0; border-bottom: 1px solid var(--border-med);
  display: block; text-decoration: none; color: inherit; transition: all 0.2s;
}
.news-item:first-child { padding-top: 0; }
.news-item:last-child { border-bottom: none; }
.news-item:hover .news-item-title { color: var(--teal-accessible); }
.news-item-date { font-size: 0.75rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 0.3rem; }
.news-item-title { font-size: 1.05rem; font-weight: 600; color: var(--navy); margin-bottom: 0.3rem; transition: color 0.2s; }
.news-item-desc { font-size: 0.85rem; color: var(--text-body); line-height: 1.5; }

/* === v4: Conference Speaker Cards === */
/* === v4: Members Hub Resource Categories === */
.resource-categories { margin-bottom: var(--gap-sm); max-width: 900px; margin-left: auto; margin-right: auto; }
.resource-cat { margin-bottom: 2.5rem; }
.resource-cat-label {
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--teal-accessible); margin-bottom: 1rem;
  text-align: center;
}
.resource-cat-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1rem; justify-content: center; }
.resource-link-card {
  padding: 1.5rem; border-radius: var(--r-card);
  border: 1px solid var(--border); background: var(--white);
  text-decoration: none; color: inherit; transition: all 0.25s;
  display: block;
}
.resource-link-card:hover { border-color: var(--teal); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.resource-link-card h3 { font-size: 0.95rem; font-weight: 600; color: var(--navy); margin-bottom: 0.35rem; }
.resource-link-card p { font-size: 0.82rem; color: var(--text-body); line-height: 1.5; }

/* === v4: Cookie consent banner === */
.cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 300;
  background: var(--navy-deep); color: rgba(255,255,255,0.7);
  padding: 0.75rem var(--gutter);
  display: flex; align-items: center; justify-content: center; gap: 1rem;
  font-size: 0.78rem; transform: translateY(100%);
  transition: transform 0.4s var(--ease);
}
.cookie-banner.visible { transform: translateY(0); }
.cookie-banner p { margin: 0; }
.cookie-accept, .cookie-decline {
  padding: 0.35rem 0.85rem; border-radius: var(--r-pill);
  font-family: var(--font-body); font-size: 0.72rem; font-weight: 600;
  cursor: pointer; border: none; transition: all 0.2s;
}
.cookie-accept { background: var(--teal); color: var(--white); }
.cookie-accept:hover { background: var(--teal-bright); }
.cookie-decline { background: transparent; color: rgba(255,255,255,0.5); border: 1px solid rgba(255,255,255,0.15); }
.cookie-decline:hover { color: var(--white); border-color: rgba(255,255,255,0.3); }

/* === MEMBERS: Resource page layout (v1 compat) === */
.resource-page-section { padding: var(--gap-sm) var(--gutter); }
.resource-page-inner { max-width: var(--container-narrow); margin: 0 auto; }
.resource-page-nav { margin-bottom: 2rem; }
.resource-content-section { margin-bottom: 2.5rem; }
.resource-content-section h2 { font-size: 1.15rem; font-weight: 600; color: var(--navy); margin-bottom: 1rem; }
.resource-content-section p { font-size: 0.9rem; color: var(--text-body); line-height: 1.7; margin-bottom: 0.75rem; }
.resource-example {
  background: var(--off-white); padding: 1.5rem; border-radius: var(--r-card);
  font-size: 0.85rem; color: var(--text-body); line-height: 1.7; margin: 1rem 0;
}

/* === FOOTER === */
footer { background: var(--navy-deep); color: rgba(255,255,255,0.5); padding: var(--gap-sm) var(--gutter) 2rem; }
.f-inner { max-width: var(--container); margin: 0 auto; }
.f-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 2rem; margin-bottom: 3rem; }
.f-brand img { height: 22px; width: auto; margin-bottom: 1rem; filter: brightness(0) invert(1); opacity: 0.6; }
.f-brand p { font-size: 0.82rem; line-height: 1.6; margin-bottom: 1rem; }
.f-human {
  font-size: 0.75rem; font-style: italic; line-height: 1.6;
  padding-top: 0.75rem; border-top: 1px solid rgba(255,255,255,0.06); color: rgba(255,255,255,0.4);
}
.f-col h4 { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.65); margin-bottom: 0.75rem; }
.f-col a { display: block; font-size: 0.82rem; color: rgba(255,255,255,0.55); text-decoration: none; padding: 0.25rem 0; transition: color 0.2s; }
.f-col a:hover { color: var(--teal-bright); }
.f-bottom {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,0.06);
  font-size: 0.72rem; color: rgba(255,255,255,0.4);
}
.f-social { display: flex; gap: 0.75rem; }
.f-social a { color: rgba(255,255,255,0.45); transition: color 0.2s; }
.f-social a:hover { color: var(--teal-bright); }

/* === ARTICLE PAGE === */
.article-page { min-height: 100vh; }
.article-header {
  background: linear-gradient(135deg, var(--navy) 0%, #0f1e3d 100%);
  padding: calc(80px + 3rem) var(--gutter) 3rem;
}
.article-header-inner { max-width: 720px; margin: 0 auto; }
.article-back {
  display: inline-flex; align-items: center; gap: 0.35rem;
  font-size: 0.78rem; font-weight: 600; color: rgba(255,255,255,0.5);
  text-decoration: none; margin-bottom: 1.5rem; transition: color 0.2s;
}
.article-back:hover { color: var(--teal-bright); }
.article-tag {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--teal-bright); margin-bottom: 1rem;
}
.article-title {
  font-family: var(--serif); font-size: clamp(1.5rem, 3.5vw, 2.2rem);
  color: white; line-height: 1.2; margin: 0 0 1rem; font-weight: 400;
}
.article-tagline {
  font-size: 0.95rem; color: rgba(255,255,255,0.6); line-height: 1.6;
  font-style: italic; margin: 0 0 1.5rem;
}
.article-meta { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 1.25rem; }
.article-authors { font-size: 0.88rem; font-weight: 600; color: rgba(255,255,255,0.85); }
.article-affil { font-size: 0.78rem; color: rgba(255,255,255,0.45); margin-top: 0.25rem; line-height: 1.5; }
.article-date { font-size: 0.75rem; color: rgba(255,255,255,0.35); margin-top: 0.5rem; }

.article-body { padding: 3rem var(--gutter); background: var(--white); }
.article-body-inner {
  max-width: 720px; margin: 0 auto;
  font-size: 0.95rem; line-height: 1.8; color: var(--text-body);
}
.article-body-inner h3 {
  font-family: var(--serif); font-size: 1.15rem; color: var(--navy);
  margin: 2.5rem 0 0.75rem; font-weight: 400;
}
.article-body-inner p { margin: 0 0 1.25rem; }
.article-body-inner em { color: var(--text-secondary); }
.article-note {
  padding: 1rem 1.25rem; border-radius: 8px; background: #fef3cd;
  border-left: 3px solid #ffc107; font-size: 0.85rem; line-height: 1.6;
}

.article-footer { padding: 2.5rem var(--gutter); background: var(--off-white); border-top: 1px solid var(--border); }
.article-footer-inner { max-width: 720px; margin: 0 auto; }
.article-cite {
  font-size: 0.78rem; color: var(--text-secondary); line-height: 1.6;
  padding: 1.25rem; border-radius: 8px; background: var(--white); border: 1px solid var(--border);
  margin-bottom: 1.5rem;
}
.article-cite strong { color: var(--navy); }
.article-nav-links { display: flex; gap: 0.65rem; flex-wrap: wrap; }

/* === PRESS RELEASE PAGE === */
.press-body { padding: 3rem var(--gutter); background: var(--white); }
.press-body-inner {
  max-width: 720px; margin: 0 auto;
  font-size: 0.95rem; line-height: 1.8; color: var(--text-body);
}
.press-body-inner h2 {
  font-family: var(--serif); font-size: 1.3rem; color: var(--navy);
  margin: 2.5rem 0 0.75rem; font-weight: 400;
}
.press-body-inner h3 {
  font-size: 0.95rem; font-weight: 600; color: var(--navy);
  margin: 1.5rem 0 0.5rem;
}
.press-body-inner p { margin: 0 0 1.25rem; }
.press-boilerplate {
  margin-top: 3rem; padding-top: 2rem; border-top: 1px solid var(--border);
}
.press-boilerplate h3 {
  font-size: 0.82rem; font-weight: 700; letter-spacing: 0.06em;
  text-transform: uppercase; color: var(--text-secondary); margin: 0 0 0.5rem;
}
.press-boilerplate p { font-size: 0.84rem; color: var(--text-body); }

/* === CONFERENCE PAGE === */
.ph-conference { background: linear-gradient(135deg, var(--navy) 0%, #0f1e3d 100%); }
.conf-hero-stats {
  display: flex; gap: 2.5rem; justify-content: center; margin-top: 2rem;
  flex-wrap: wrap;
}
.conf-hero-stat { text-align: center; color: rgba(255,255,255,0.7); font-size: 0.82rem; letter-spacing: 0.04em; }
.conf-hero-stat strong { display: block; font-size: 1.5rem; color: var(--teal-bright); font-weight: 700; margin-bottom: 0.15rem; }

/* Speakers section */
.conf-speakers { padding: var(--gap-sm) var(--gutter); background: var(--off-white); }
.conf-speakers-inner { max-width: var(--container); margin: 0 auto; text-align: center; }
.conf-speaker-list .conf-spotlight { background: var(--white); }
.conf-speaker-list .conf-spotlight-body p { font-size: 0.82rem; }

/* Archive section */
.conf-library { padding: var(--gap-sm) var(--gutter); background: var(--white); }
.conf-library-inner { max-width: var(--container); margin: 0 auto; text-align: center; }
.sdesc-dk { font-size: 0.88rem; color: var(--text-secondary); line-height: 1.6; }

/* Year navigation */
.conf-year-nav { display: flex; gap: 0.5rem; justify-content: center; margin-bottom: 2.5rem; flex-wrap: wrap; }
.conf-year-btn {
  padding: 0.5rem 1.25rem; border-radius: 99px; font-size: 0.82rem; font-weight: 600;
  border: 1.5px solid var(--border); background: var(--white); color: var(--text-secondary);
  cursor: pointer; transition: all 0.2s; font-family: var(--sans);
}
.conf-year-btn:hover { border-color: var(--teal); color: var(--teal); }
.conf-year-btn.active { background: var(--navy); color: white; border-color: var(--navy); }

/* Year panels */
.conf-year { display: none; text-align: left; }
.conf-year.active { display: block; }
.conf-year-header {
  display: flex; align-items: center; gap: 1rem; margin-bottom: 1.5rem;
  padding-bottom: 1rem; border-bottom: 1px solid var(--border);
}
.conf-year-header h3 { font-family: var(--serif); font-size: 1.3rem; color: var(--navy); margin: 0; }
.conf-year-status {
  font-size: 0.7rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase;
  padding: 0.25rem 0.75rem; border-radius: 99px; background: var(--off-white); color: var(--text-secondary);
}
.conf-year-status.upcoming { background: var(--teal); color: white; }

/* Announcement card */
.conf-announcement-card {
  display: flex; gap: 1rem; align-items: flex-start;
  padding: 1.5rem; border-radius: 12px; background: var(--off-white); border: 1px solid var(--border);
}
.conf-announce-icon { color: var(--teal); flex-shrink: 0; margin-top: 0.1rem; }
.conf-announcement-card h4 { font-size: 0.92rem; font-weight: 600; color: var(--navy); margin: 0 0 0.35rem; }
.conf-announcement-card p { font-size: 0.84rem; color: var(--text-body); line-height: 1.6; margin: 0; }

/* Spotlights */
.conf-spotlights { margin-bottom: 2.5rem; }
.conf-spotlight-label {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--teal); margin-bottom: 1rem;
}
.conf-spotlight {
  display: flex; gap: 1.25rem; padding: 1.25rem; border-radius: 12px;
  background: var(--off-white); border: 1px solid var(--border); margin-bottom: 1rem;
  align-items: flex-start;
}
.conf-spotlight.conf-spotlight-text { flex-direction: column; }
.conf-spotlight-tag {
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--teal); margin-bottom: 0.35rem;
}
.conf-spotlight-body h4 { font-size: 1rem; font-weight: 600; color: var(--navy); margin: 0 0 0.35rem; }
.conf-spotlight-body p { font-size: 0.84rem; color: var(--text-body); line-height: 1.6; margin: 0; }
.conf-spotlight-meta { font-size: 0.72rem; color: var(--text-muted); margin-top: 0.5rem; }

/* Video wrappers */
.video-wrapper {
  position: relative; border-radius: 10px; overflow: hidden;
  background: var(--navy); aspect-ratio: 16/9;
}
.video-wrapper-sm { width: 200px; min-width: 200px; }
.video-wrapper video { width: 100%; height: 100%; object-fit: cover; display: block; }
.video-poster {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  cursor: pointer; background: rgba(10,26,54,0.6); transition: background 0.2s;
}
.video-poster:hover { background: rgba(10,26,54,0.4); }
.video-poster.hidden { display: none; }
.video-play-btn {
  width: 52px; height: 52px; border-radius: 50%; background: rgba(255,255,255,0.2);
  display: flex; align-items: center; justify-content: center;
  backdrop-filter: blur(4px); transition: transform 0.2s, background 0.2s;
}
.video-play-sm { width: 40px; height: 40px; }
.video-play-btn:hover { transform: scale(1.08); background: rgba(255,255,255,0.3); }

/* Presentation grid */
.conf-all-label {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--text-secondary); margin-bottom: 1rem; text-align: left;
}
.conf-pres-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 1rem; }
.conf-pres-card {
  display: flex; gap: 0.85rem; align-items: flex-start;
  padding: 1rem; border-radius: 10px; background: var(--off-white); border: 1px solid var(--border);
  transition: box-shadow 0.2s;
}
.conf-pres-card:hover { box-shadow: 0 2px 12px rgba(0,0,0,0.05); }
.conf-pres-card.conf-pres-text { align-items: center; }
.conf-pres-info h4 { font-size: 0.88rem; font-weight: 600; color: var(--navy); margin: 0; }
.conf-pres-info p { font-size: 0.78rem; color: var(--text-secondary); margin: 0.2rem 0 0; }

/* Consent note */
.conf-consent { padding: 1.5rem var(--gutter); background: var(--off-white); text-align: center; }
.conf-consent-inner { max-width: var(--container); margin: 0 auto; }
.conf-consent p { font-size: 0.76rem; color: var(--text-muted); margin: 0; }
.conf-consent a { color: var(--teal-accessible); }

/* Conference link card (on members page) */
.conf-link-card {
  display: flex; align-items: center; justify-content: space-between; gap: 2rem;
  padding: 2rem; border-radius: 14px; background: var(--off-white); border: 1px solid var(--border);
  max-width: 800px; margin: 0 auto;
}
.conf-link-stats { display: flex; gap: 2rem; margin-bottom: 0.75rem; }
.conf-link-stats div { font-size: 0.78rem; color: var(--text-secondary); }
.conf-link-stats strong { display: block; font-size: 1.1rem; color: var(--navy); font-weight: 700; }
.conf-link-left p { font-size: 0.84rem; color: var(--text-body); line-height: 1.6; margin: 0; }

/* === JOURNAL: Disclaimer (v5) === */
.journal-disclaimer {
  font-size: 0.78rem; font-style: italic; color: var(--text-secondary);
  text-align: center; margin-top: 1rem; padding-top: 0.5rem;
}

/* === HOMEPAGE: Why Aequitas paragraph spacing (v5) === */
.why-aequitas-body p + p { margin-top: 1rem; }

/* === FELLOWS PAGE: Sections (v5) === */
.members-section { padding: var(--gap-sm) var(--gutter); background: var(--off-white); }
.members-section:first-of-type { background: var(--white); }
.members-inner { max-width: var(--container); margin: 0 auto; }
.members-header { text-align: center; margin-bottom: 2.5rem; }

/* === FELLOWS PAGE: Resource Cards Grid (v5) === */
.resource-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 1.25rem;
}
.resource-card {
  background: var(--white); border: 1px solid var(--border-light, var(--border));
  border-radius: var(--r-card); padding: 1.75rem;
  transition: border-color 0.25s var(--ease), transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.resource-card:hover {
  border-color: var(--teal); transform: translateY(-2px); box-shadow: var(--shadow-md);
}
.resource-num {
  font-size: 0.7rem; font-weight: 600; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--teal-accessible); margin-bottom: 0.65rem;
}
.resource-card h3 { font-size: 1rem; font-weight: 600; color: var(--navy); margin-bottom: 0.5rem; line-height: 1.35; }
.resource-card h3 a { color: inherit; text-decoration: none; }
.resource-card h3 a:hover { color: var(--teal-accessible); }
.resource-card p { font-size: 0.84rem; color: var(--text-body); line-height: 1.6; margin-bottom: 0.75rem; }
.resource-format {
  font-size: 0.72rem; color: var(--text-secondary);
  padding-top: 0.5rem; border-top: 1px solid var(--border-light, var(--border));
}

/* === FELLOWS PAGE: Conference Section (v5) === */
.conference-section { padding: var(--gap-sm) var(--gutter); background: var(--white); }
.conference-inner { max-width: var(--container); margin: 0 auto; }
.conference-header { text-align: center; margin-bottom: 2rem; }

/* === FELLOWS PAGE: CTA (v5) === */
.cta-members {
  padding: var(--gap) var(--gutter);
  background: linear-gradient(135deg, var(--navy) 0%, #1a2744 100%);
  text-align: center;
}

/* === FILM GRAIN TEXTURE (v5 — restored from v3 per Design Panel) === */
.hero::before,
.page-header::before,
.cta-idx::before,
.cta-about::before,
.cta-reach::before,
.cta-members::before {
  content: ''; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  opacity: 0.018;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 256px 256px;
}
.hero, .page-header, .cta-idx, .cta-about, .cta-reach, .cta-members { position: relative; }
.hero > *, .page-header > *, .cta-idx > *, .cta-about > *, .cta-reach > *, .cta-members > * { position: relative; z-index: 2; }

/* === RESPONSIVE === */
@media (max-width: 1024px) {
  .pillars-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .reach-grid { grid-template-columns: repeat(3, 1fr); }
  .origin-layout { grid-template-columns: 1fr; }
  .conf-spotlight { flex-direction: column; }  .conf-link-card { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .how-grid { grid-template-columns: 1fr; }
  .pillars-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .start-steps { grid-template-columns: 1fr; }
  .reach-grid { grid-template-columns: 1fr; }
  .reach-features { grid-template-columns: 1fr; }
  .f-grid { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
  .recognition-callout-inner { flex-direction: column; text-align: center; }
  .team-lead { grid-template-columns: 1fr; text-align: center; }
  .team-avatar { margin: 0 auto; }
  .hero-stats { gap: 1.5rem; }
  .preview-stats { gap: 1.5rem; }
  .editorial-board-list { flex-direction: column; align-items: center; }
  .cookie-banner { flex-wrap: wrap; justify-content: center; text-align: center; }
  .overlay-secondary { flex-direction: column; gap: 0.75rem; }
  .resource-cat-grid { grid-template-columns: 1fr; }
  .why-quote { padding: 1.5rem; }
  .conf-spotlight { flex-direction: column; }
  .video-wrapper-sm { width: 100%; min-width: unset; }
  .conf-pres-card { flex-direction: column; }
  .conf-pres-grid { grid-template-columns: 1fr; }
  .conf-hero-stats { gap: 1.5rem; }
  .conf-year-header { flex-direction: column; gap: 0.5rem; }
  .conf-link-stats { gap: 1.25rem; }
  .resource-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .reach-grid { grid-template-columns: 1fr; }
  .f-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: 2.4rem; }
  .preview-stats { flex-direction: column; gap: 0.75rem; }
}

/* === GRANT RECIPIENTS === */
.grant-cycle { margin-bottom: 3rem; }
.grant-cycle-header {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding-bottom: 1rem; border-bottom: 2px solid var(--navy); margin-bottom: 2rem;
}
.grant-cycle-header h3 { font-family: var(--font-display); font-size: 1.3rem; color: var(--navy); margin: 0; }
.grant-cycle-link { font-size: 0.75rem; color: var(--teal-accessible); font-weight: 600; text-decoration: none; white-space: nowrap; }
.grant-cycle-link:hover { color: var(--teal-bright); }
.grant-category { margin-bottom: 2rem; }
.grant-category-label {
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--text-muted); margin-bottom: 1rem; padding-left: 0.25rem;
}
.grant-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1rem; }
.grant-card {
  background: var(--white); border: 1px solid var(--border-med); border-radius: var(--r-card);
  padding: 1.5rem; transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.grant-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.grant-card-award {
  display: inline-block; font-size: 0.65rem; font-weight: 700; letter-spacing: 0.06em;
  text-transform: uppercase; color: var(--teal-accessible); background: var(--teal-glow);
  padding: 0.2rem 0.6rem; border-radius: var(--r-pill); margin-bottom: 0.75rem;
}
.grant-card-award.award-winner { background: rgba(232,168,124,0.12); color: #B07840; }
.grant-card h4 { font-size: 0.95rem; font-weight: 600; color: var(--navy); margin-bottom: 0.3rem; line-height: 1.35; }
.grant-card-meta { font-size: 0.78rem; color: var(--text-secondary); margin-bottom: 0.65rem; line-height: 1.4; }
.grant-card p { font-size: 0.82rem; color: var(--text-body); line-height: 1.55; margin: 0; }
.grant-stats-row {
  display: flex; gap: 2rem; justify-content: center; margin-bottom: 2.5rem; flex-wrap: wrap;
}
.grant-stat { text-align: center; }
.grant-stat strong { display: block; font-size: 1.5rem; font-weight: 700; color: var(--navy); font-family: var(--font-display); }
.grant-stat span { font-size: 0.72rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.05em; }
@media (max-width: 600px) {
  .grant-cycle-header { flex-direction: column; align-items: flex-start; gap: 0.5rem; }
  .grant-cards { grid-template-columns: 1fr; }
}

/* ---- Mission support link in footer brand column ---- */
.f-mission-link{display:inline-block;margin-top:0.75rem;font-size:0.82rem;color:var(--teal-bright,#4ecdc4);text-decoration:none;transition:opacity 0.2s}
.f-mission-link:hover{opacity:0.7}
