:root {
  --ink: #101b2a;
  --ink-2: #24324a;
  --muted: #667085;
  --paper: #fbf7ee;
  --paper-2: #f3ead9;
  --white: #ffffff;
  --navy: #07192e;
  --navy-2: #0d2744;
  --blue: #426a8f;
  --blue-2: #e6eef5;
  --gold: #c8953d;
  --gold-2: #f2d59a;
  --green: #5c7a66;
  --green-2: #e7eee7;
  --red: #9f554c;
  --red-2: #f3e5e2;
  --line: rgba(16, 27, 42, 0.13);
  --line-strong: rgba(16, 27, 42, 0.24);
  --shadow: 0 26px 80px rgba(9, 24, 43, 0.18);
  --shadow-soft: 0 14px 38px rgba(9, 24, 43, 0.11);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --container: 1160px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
  text-rendering: geometricPrecision;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(circle at 12% 10%, rgba(200,149,61,0.17), transparent 28%),
    radial-gradient(circle at 85% 8%, rgba(66,106,143,0.20), transparent 32%),
    linear-gradient(180deg, #fffaf0 0%, #f7efe0 45%, #fbf7ee 100%);
}
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  opacity: 0.34;
  background-image:
    linear-gradient(rgba(7,25,46,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(7,25,46,0.035) 1px, transparent 1px);
  background-size: 42px 42px;
  pointer-events: none;
}
a { color: inherit; text-decoration: none; }
img, svg { max-width: 100%; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
::selection { background: rgba(200,149,61,0.28); }

.skip-link {
  position: absolute;
  left: 1rem;
  top: 0.75rem;
  z-index: 1000;
  transform: translateY(-140%);
  background: var(--navy);
  color: var(--white);
  padding: 0.75rem 1rem;
  border-radius: 999px;
}
.skip-link:focus { transform: translateY(0); }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}
.container {
  width: min(var(--container), calc(100% - 40px));
  margin-inline: auto;
}
.section-pad { padding: clamp(76px, 9vw, 128px) 0; }
.compact-hero { padding-bottom: clamp(48px, 6vw, 78px); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 14px 0;
  backdrop-filter: blur(18px);
  background: rgba(251, 247, 238, 0.78);
  border-bottom: 1px solid rgba(16, 27, 42, 0.08);
  transition: box-shadow 180ms ease, background 180ms ease;
}
.site-header[data-elevated="true"] {
  background: rgba(251, 247, 238, 0.94);
  box-shadow: 0 12px 34px rgba(9, 24, 43, 0.09);
}
.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}
.brand-mark {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  color: var(--paper);
  background: linear-gradient(135deg, rgba(200,149,61,0.94), rgba(14,40,70,0.98)), var(--navy);
  box-shadow: 0 12px 28px rgba(7, 25, 46, 0.25);
  font-weight: 900;
  letter-spacing: -0.04em;
}
.brand strong,
.brand em { display: block; }
.brand strong { font-size: 1.03rem; letter-spacing: -0.03em; }
.brand em { font-size: 0.76rem; font-style: normal; color: var(--muted); margin-top: -3px; }
.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 5px;
}
.site-nav a {
  padding: 10px 13px;
  border-radius: 999px;
  color: rgba(16, 27, 42, 0.82);
  font-size: 0.92rem;
  font-weight: 700;
  transition: background 160ms ease, color 160ms ease, transform 160ms ease;
}
.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a[aria-current="page"] {
  color: var(--ink);
  background: rgba(255,255,255,0.78);
  outline: none;
}
.site-nav .nav-cta {
  color: var(--white);
  background: var(--navy);
  box-shadow: 0 12px 28px rgba(7,25,46,0.16);
}
.site-nav .nav-cta:hover,
.site-nav .nav-cta:focus-visible { color: var(--white); background: var(--navy-2); transform: translateY(-1px); }
.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.72);
  border-radius: 16px;
  padding: 11px;
}
.nav-toggle span:not(.sr-only) {
  display: block;
  height: 2px;
  background: var(--ink);
  margin: 5px 0;
  border-radius: 99px;
}

.hero {
  min-height: calc(100vh - 80px);
  display: grid;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.hero::before,
.page-hero::before {
  content: "";
  position: absolute;
  inset: 8% 0 auto auto;
  width: min(46vw, 560px);
  height: min(46vw, 560px);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200,149,61,0.16), transparent 68%);
  pointer-events: none;
}
.hero-grid,
.page-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(350px, 0.76fr);
  gap: clamp(36px, 6vw, 78px);
  align-items: center;
  position: relative;
}
.page-hero { position: relative; overflow: hidden; }
.eyebrow {
  margin: 0 0 15px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
h1, h2, h3, p { margin-top: 0; }
h1, h2 { color: var(--ink); letter-spacing: -0.055em; line-height: 0.98; }
h1 { font-size: clamp(3.35rem, 8.4vw, 6.9rem); max-width: 900px; margin-bottom: 24px; }
.page-hero h1 { font-size: clamp(3rem, 6vw, 5.7rem); }
h2 { font-size: clamp(2.2rem, 4.6vw, 4.4rem); margin-bottom: 18px; }
h3 { color: var(--ink); font-size: 1.12rem; letter-spacing: -0.02em; line-height: 1.16; margin-bottom: 10px; }
.lede { font-size: clamp(1.08rem, 1.7vw, 1.35rem); color: var(--ink-2); max-width: 720px; margin-bottom: 30px; }
p { color: var(--muted); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 28px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 850;
  letter-spacing: -0.01em;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}
.button:hover,
.button:focus-visible { transform: translateY(-2px); outline: none; }
.button.primary { color: var(--white); background: var(--navy); box-shadow: 0 16px 34px rgba(7,25,46,0.22); }
.button.secondary { color: var(--ink); background: rgba(255,255,255,0.76); border-color: var(--line); box-shadow: 0 10px 24px rgba(9,24,43,0.08); }
.button.light { color: var(--navy); background: var(--white); box-shadow: 0 16px 36px rgba(7,25,46,0.18); }
.hero-note {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  max-width: 660px;
  padding: 16px 18px;
  border: 1px solid rgba(200,149,61,0.28);
  background: rgba(255,255,255,0.52);
  border-radius: var(--radius-md);
}
.hero-note p { margin: 0; font-size: 0.96rem; }
.pulse {
  width: 11px;
  height: 11px;
  flex: 0 0 auto;
  margin-top: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 6px rgba(92,122,102,0.13);
}
.dashboard-card,
.note-card,
.prose-panel,
.checklist-card,
.submission-guide,
.contact-form {
  background: rgba(255,255,255,0.72);
  border: 1px solid rgba(255,255,255,0.76);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
}
.dashboard-card { padding: 20px; }
.dashboard-topline,
.board-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 800;
  margin-bottom: 16px;
}
.dashboard-topline strong,
.board-header strong { color: var(--gold); }
.spotlight-panel {
  padding: 28px;
  color: var(--white);
  border-radius: 28px;
  background:
    radial-gradient(circle at 100% 0%, rgba(200,149,61,0.36), transparent 36%),
    linear-gradient(145deg, var(--navy), #143657 76%);
  box-shadow: 0 24px 58px rgba(7,25,46,0.26);
}
.card-kicker,
.tag {
  display: inline-flex;
  align-items: center;
  width: max-content;
  margin-bottom: 13px;
  color: var(--gold-2);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.spotlight-panel h2 { color: var(--white); font-size: clamp(1.75rem, 3vw, 2.75rem); margin-bottom: 10px; }
.spotlight-panel p { color: rgba(255,255,255,0.78); margin-bottom: 0; }
.signal-list { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 14px; }
.signal-list a {
  padding: 16px;
  min-height: 110px;
  border-radius: 22px;
  background: rgba(255,255,255,0.70);
  border: 1px solid var(--line);
  transition: transform 160ms ease, box-shadow 160ms ease;
}
.signal-list a:hover,
.signal-list a:focus-visible { transform: translateY(-2px); box-shadow: var(--shadow-soft); outline: none; }
.signal-list span { display: block; color: var(--muted); font-size: 0.78rem; font-weight: 800; margin-bottom: 8px; text-transform: uppercase; letter-spacing: 0.08em; }
.signal-list strong { display: block; color: var(--ink); line-height: 1.16; }

.warm-section { background: linear-gradient(180deg, rgba(243,234,217,0.62), rgba(251,247,238,0.72)); }
.section-heading { max-width: 790px; margin-bottom: 36px; }
.section-heading.centered { margin-inline: auto; text-align: center; }
.section-heading.compact-heading { margin-bottom: 24px; }
.section-heading p:last-child { margin-bottom: 0; }
.pathway-grid,
.standard-grid,
.principle-grid,
.module-grid,
.directory-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.pathway-card,
.standard-card,
.principle-card,
.module-card,
.directory-card,
.mini-feature {
  display: block;
  padding: 24px;
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,0.68);
  border: 1px solid rgba(16,27,42,0.11);
  box-shadow: 0 8px 22px rgba(9,24,43,0.06);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}
a.pathway-card:hover,
a.pathway-card:focus-visible,
.directory-card a:hover,
.directory-card a:focus-visible { outline: none; }
.pathway-card:hover,
.pathway-card:focus-visible,
.standard-card:hover,
.principle-card:hover,
.module-card:hover,
.directory-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-soft); border-color: rgba(200,149,61,0.34); }
.icon-dot,
.principle-card span,
.module-card span {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-bottom: 20px;
  border-radius: 16px;
  color: var(--white);
  background: linear-gradient(135deg, var(--gold), var(--navy));
  font-size: 0.82rem;
  font-weight: 900;
}
.pathway-card p,
.standard-card p,
.principle-card p,
.module-card p,
.directory-card p { margin-bottom: 0; }
.two-column,
.split-copy,
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  gap: clamp(28px, 5vw, 68px);
  align-items: center;
}
.align-start { align-items: start; }
.transport-section { position: relative; overflow: hidden; }
.project-board,
.tracker-shell {
  padding: 20px;
  border-radius: var(--radius-xl);
  background: rgba(255,255,255,0.72);
  border: 1px solid rgba(255,255,255,0.8);
  box-shadow: var(--shadow-soft);
}
.project-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: start;
  padding: 18px 0;
  border-top: 1px solid var(--line);
}
.project-row h3 { display: inline; margin-left: 9px; }
.project-row p { margin: 7px 0 0 24px; font-size: 0.95rem; }
.status-dot {
  display: inline-block;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 5px rgba(92,122,102,0.15);
}
.status-dot.planning { background: var(--gold); box-shadow: 0 0 0 5px rgba(200,149,61,0.16); }
.status-dot.archive { background: var(--blue); box-shadow: 0 0 0 5px rgba(66,106,143,0.16); }
.status-pill,
.status-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 7px 11px;
  border-radius: 999px;
  color: #2f5b3b;
  background: var(--green-2);
  font-size: 0.78rem;
  font-weight: 900;
  white-space: nowrap;
}
.status-pill.gold,
.status-chip.gold { color: #73501e; background: rgba(242,213,154,0.62); }
.status-pill.blue,
.status-chip.blue { color: #284c6a; background: var(--blue-2); }
.status-chip.red { color: #7c3f39; background: var(--red-2); }

.hub-section { overflow: hidden; }
.hub-map {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 420px;
  margin: 18px 0 34px;
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at center, rgba(200,149,61,0.16), transparent 38%),
    linear-gradient(145deg, rgba(255,255,255,0.58), rgba(255,255,255,0.22));
  border: 1px solid rgba(255,255,255,0.7);
  box-shadow: var(--shadow-soft);
}
.hub-node {
  display: grid;
  place-items: center;
  text-align: center;
  width: min(280px, 74vw);
  min-height: 190px;
  padding: 28px;
  border-radius: 40px;
  color: var(--white);
  background: linear-gradient(145deg, var(--navy), #15395d);
  box-shadow: 0 28px 70px rgba(7,25,46,0.28);
}
.hub-node span { color: var(--gold-2); font-size: 0.77rem; text-transform: uppercase; letter-spacing: 0.12em; font-weight: 900; }
.hub-node strong { display: block; font-size: 1.8rem; letter-spacing: -0.04em; }
.hub-node p { color: rgba(255,255,255,0.74); margin: 0; }
.hub-spoke {
  position: absolute;
  display: grid;
  place-items: center;
  min-width: 150px;
  padding: 14px 18px;
  border-radius: 999px;
  background: rgba(255,255,255,0.84);
  border: 1px solid var(--line);
  box-shadow: 0 14px 34px rgba(9,24,43,0.10);
  color: var(--ink);
  font-weight: 900;
}
.spoke-a { top: 42px; left: 11%; }
.spoke-b { top: 52px; right: 10%; }
.spoke-c { left: 8%; bottom: 70px; }
.spoke-d { right: 8%; bottom: 70px; }
.spoke-e { bottom: 34px; left: 50%; transform: translateX(-50%); }
.final-cta-section { padding-top: 0; }
.final-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: clamp(28px, 5vw, 48px);
  border-radius: var(--radius-xl);
  color: var(--white);
  background:
    radial-gradient(circle at 100% 0%, rgba(200,149,61,0.34), transparent 36%),
    linear-gradient(145deg, var(--navy), #143657 76%);
  box-shadow: var(--shadow);
}
.final-cta h2,
.final-cta p { color: var(--white); }
.final-cta p:not(.eyebrow) { color: rgba(255,255,255,0.75); max-width: 760px; margin-bottom: 0; }
.final-cta .eyebrow { color: var(--gold-2); }

.note-card { padding: 28px; }
.note-card .card-kicker { color: var(--gold); }
.note-card h2 { font-size: clamp(1.9rem, 3vw, 3rem); }
.prose-panel { padding: clamp(24px, 4vw, 36px); }
.prose-panel p:last-child { margin-bottom: 0; }
.principle-card span { color: var(--white); }
.navy-section {
  color: var(--white);
  background:
    radial-gradient(circle at 10% 0%, rgba(200,149,61,0.18), transparent 32%),
    linear-gradient(160deg, var(--navy), #102f4f 74%);
}
.navy-section h2,
.navy-section h3,
.navy-section strong { color: var(--white); }
.navy-section p { color: rgba(255,255,255,0.72); }
.timeline {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  padding: 0;
  margin: 0;
}
.timeline li {
  position: relative;
  padding: 24px;
  min-height: 210px;
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.13);
}
.timeline span { display: block; color: var(--gold-2); font-weight: 900; margin-bottom: 12px; font-size: 1.08rem; }
.stacked-cards { display: grid; gap: 14px; }
.mini-feature { display: grid; grid-template-columns: 140px 1fr; gap: 16px; align-items: start; }
.mini-feature strong { color: var(--ink); font-size: 1.12rem; }
.mini-feature span { color: var(--muted); }

.tracker-row {
  display: grid;
  grid-template-columns: 1fr auto 1.1fr;
  gap: 14px;
  align-items: center;
  padding: 16px 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
}
.tracker-row:first-child { border-top: 0; }
.tracker-row span:first-child { color: var(--ink); font-weight: 850; }
.header-row { color: var(--muted); font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.1em; font-weight: 900; }
.layer-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.layer-grid div {
  padding: 24px;
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.13);
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 22px;
}
.filter-button {
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.72);
  color: var(--ink-2);
  padding: 10px 15px;
  border-radius: 999px;
  font-weight: 850;
}
.filter-button.is-active,
.filter-button:hover,
.filter-button:focus-visible { background: var(--navy); color: var(--white); outline: none; }
.events-grid { display: grid; gap: 18px; }
.event-card {
  display: grid;
  grid-template-columns: 132px minmax(0, 1fr);
  gap: 22px;
  padding: 22px;
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,0.72);
  border: 1px solid var(--line);
  box-shadow: 0 8px 24px rgba(9,24,43,0.06);
}
.event-card[hidden],
.directory-card[hidden] { display: none; }
.date-block {
  display: grid;
  place-items: center;
  align-content: center;
  min-height: 126px;
  border-radius: 22px;
  color: var(--white);
  background: linear-gradient(145deg, var(--gold), var(--navy));
}
.date-block span { font-size: 0.76rem; text-transform: uppercase; letter-spacing: 0.12em; font-weight: 900; }
.date-block strong { display: block; font-size: 1.42rem; letter-spacing: -0.04em; }
.tag { color: var(--gold); margin-bottom: 8px; }
.event-card p { margin-bottom: 12px; }
.event-card a,
.directory-card a { color: var(--navy); font-weight: 900; text-decoration: underline; text-decoration-thickness: 2px; text-underline-offset: 5px; }
.checklist-card { padding: 28px; }
.check-list { padding: 0; margin: 0; list-style: none; display: grid; gap: 14px; }
.check-list li {
  position: relative;
  padding-left: 34px;
  color: var(--ink-2);
}
.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.35em;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: inset 0 0 0 5px rgba(255,255,255,0.55);
}

.directory-toolbar {
  display: grid;
  grid-template-columns: 1fr 260px auto;
  gap: 14px;
  align-items: end;
  margin-bottom: 22px;
  padding: 18px;
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,0.72);
  border: 1px solid var(--line);
}
.directory-toolbar label,
.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-weight: 850;
}
.directory-toolbar label span { color: var(--muted); font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.1em; }
input, select, textarea {
  width: 100%;
  border: 1px solid var(--line-strong);
  border-radius: 16px;
  background: rgba(255,255,255,0.84);
  color: var(--ink);
  padding: 13px 14px;
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}
input:focus, select:focus, textarea:focus { border-color: var(--gold); box-shadow: 0 0 0 4px rgba(200,149,61,0.15); }
.directory-count { margin: 0; color: var(--muted); font-size: 0.9rem; font-weight: 800; }
.directory-card { min-height: 230px; }
.directory-card h2 { font-size: 1.6rem; line-height: 1.05; letter-spacing: -0.04em; }
.directory-card p { margin-bottom: 18px; }

.contact-grid { grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.78fr); align-items: start; }
.contact-form { padding: clamp(24px, 4vw, 36px); display: grid; gap: 18px; }
.contact-form h2 { font-size: clamp(2rem, 3vw, 3rem); }
.contact-form textarea { resize: vertical; }
.form-note { margin: -2px 0 0; font-size: 0.9rem; }
.submission-guide { padding: 28px; position: sticky; top: 104px; }
.submission-guide h2 { font-size: clamp(1.9rem, 3vw, 2.8rem); }
.guide-item {
  padding: 18px 0;
  border-top: 1px solid var(--line);
}
.guide-item strong { display: block; color: var(--ink); margin-bottom: 4px; }
.guide-item span { color: var(--muted); }

.site-footer {
  padding: 60px 0 28px;
  color: var(--white);
  background: var(--navy);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.6fr 0.7fr;
  gap: clamp(28px, 6vw, 90px);
  align-items: start;
}
.footer-brand .brand-mark { box-shadow: none; }
.footer-brand strong { color: var(--white); }
.footer-brand em { color: rgba(255,255,255,0.62); }
.footer-lede { max-width: 520px; color: rgba(255,255,255,0.66); margin: 20px 0 0; }
.site-footer h2 {
  color: var(--gold-2);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  line-height: 1.2;
  margin-bottom: 14px;
}
.site-footer a:not(.brand) {
  display: block;
  color: rgba(255,255,255,0.76);
  margin: 9px 0;
}
.site-footer a:not(.brand):hover,
.site-footer a:not(.brand):focus-visible { color: var(--white); outline: none; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-top: 48px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.56);
  font-size: 0.9rem;
}

.reveal { opacity: 1; transform: none; }
.js .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 700ms ease, transform 700ms ease;
}
.js .reveal.is-visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: 90ms; }
.delay-2 { transition-delay: 170ms; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
}
@media (max-width: 980px) {
  .nav-toggle { display: block; }
  .site-nav {
    position: absolute;
    left: 20px;
    right: 20px;
    top: 76px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
    padding: 14px;
    border-radius: 24px;
    background: rgba(251,247,238,0.96);
    border: 1px solid var(--line);
    box-shadow: var(--shadow-soft);
  }
  .site-nav.is-open { display: flex; }
  .site-nav a { text-align: center; }
  .hero-grid,
  .page-hero-grid,
  .two-column,
  .split-copy,
  .contact-grid { grid-template-columns: 1fr; }
  .pathway-grid,
  .standard-grid,
  .principle-grid,
  .module-grid,
  .directory-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .timeline,
  .layer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .directory-toolbar { grid-template-columns: 1fr; }
  .submission-guide { position: static; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > div:first-child { grid-column: 1 / -1; }
}
@media (max-width: 680px) {
  .container { width: min(100% - 28px, var(--container)); }
  .section-pad { padding: 64px 0; }
  h1 { font-size: clamp(2.75rem, 14vw, 4.6rem); }
  h2 { font-size: clamp(2rem, 10vw, 3.1rem); }
  .hero { min-height: auto; }
  .hero-actions, .final-cta, .footer-bottom { align-items: stretch; flex-direction: column; }
  .button { width: 100%; }
  .signal-list,
  .pathway-grid,
  .standard-grid,
  .principle-grid,
  .module-grid,
  .directory-grid,
  .timeline,
  .layer-grid { grid-template-columns: 1fr; }
  .hub-map { min-height: 580px; }
  .hub-spoke { position: static; margin: 6px; transform: none; width: min(86%, 260px); }
  .hub-map { display: flex; flex-direction: column; justify-content: center; gap: 8px; }
  .project-row { grid-template-columns: 1fr; }
  .project-row p { margin-left: 0; }
  .tracker-row { grid-template-columns: 1fr; gap: 6px; }
  .event-card { grid-template-columns: 1fr; }
  .date-block { min-height: 96px; }
  .mini-feature { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
}
