:root {
  --blue: #318CCC;
  --blue-dark: #1E6EAA;
  --blue-deep: #0F4F82;
  --navy: #12324D;
  --ink: #1C2B38;
  --muted: #5B6C7B;
  --line: #D5E3EE;
  --sky: #EAF5FC;
  --mist: #F6FAFD;
  --white: #FFFFFF;
  --shadow: 0 18px 50px rgba(18, 50, 77, .08);
  --radius: 22px;
  --header: 92px;
  --content: 1180px;
  --gutter: 40px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Montserrat, system-ui, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
}
img { max-width: 100%; display: block; }
a { color: var(--blue-dark); text-decoration: none; }
a:hover { color: var(--blue); }
.container { width: min(var(--content), calc(100% - var(--gutter))); margin-inline: auto; }

.site-header { position: sticky; top: 0; z-index: 40; overflow: visible; }
.topbar { background: var(--navy); color: #d7e6f2; font-size: 13px; }
.topbar-inner, .nav-inner, .footer-bottom .container, .section-head, .cta-inner, .form-layout { display: flex; justify-content: space-between; gap: 20px; }
.topbar-inner { padding: 7px 0; align-items: center; }
.topbar-links { display: flex; gap: 18px; margin-left: auto; }
.topbar a { color: #fff; }
.topbar-social { display: flex; align-items: center; gap: 6px; }
.topbar-social a {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  color: #fff;
}
.topbar-social a:hover { background: rgba(255,255,255,.14); color: #fff; }
.topbar-social svg { width: 16px; height: 16px; fill: currentColor; display: block; }
.nav-wrap { background: #fff; border-bottom: 1px solid var(--line); position: relative; }
.nav-inner { align-items: center; min-height: 72px; position: relative; }
.brand { display: flex; align-items: flex-start; align-self: flex-start; gap: 12px; color: var(--navy); position: relative; z-index: 5; }
.brand-plaque {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 128px;
  height: 148px;
  margin-bottom: -76px;
  padding: 10px 12px 18px;
  background: #fff;
  border-radius: 0 0 20px 20px;
  box-shadow: 0 14px 30px rgba(18, 50, 77, .12);
}
.brand-plaque img {
  width: 108px;
  height: 108px;
  max-width: none;
  object-fit: contain;
}
.brand-light { display: flex; align-items: center; gap: 12px; }
.brand-light img { height: 44px; width: auto; max-width: 200px; object-fit: contain; }
.brand strong { display: block; font-size: 20px; letter-spacing: .08em; }
.brand small { display: block; color: var(--muted); font-size: 11px; font-weight: 600; max-width: 220px; line-height: 1.3; }
.site-nav { display: flex; align-items: center; gap: 22px; }
.site-nav ul { list-style: none; margin: 0; padding: 0; }
.site-nav > ul { display: flex; gap: 6px; }
.site-nav > ul > li { position: relative; }
.site-nav > ul > li > a,
.dropdown a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border-radius: 10px;
  color: var(--ink);
  font-weight: 600;
}
.site-nav > ul > li > a {
  color: var(--navy);
  font-weight: 700;
  font-size: 14px;
  border-radius: 0;
}
.nav-item-icon { flex-shrink: 0; }
.site-nav li.is-active > a, .site-nav a:hover { color: var(--blue); }
.site-nav .dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 230px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 8px;
  box-shadow: var(--shadow);
  flex-direction: column;
  z-index: 60;
}
.site-nav .has-children:hover > .dropdown,
.site-nav .has-children:focus-within > .dropdown { display: flex; }
.dropdown a:hover { background: var(--sky); }
.nav-toggle { display: none; width: 44px; height: 44px; border: 0; background: none; margin-left: auto; cursor: pointer; }
.nav-toggle span { display: block; height: 2px; background: var(--navy); margin: 6px 0; }
.nav-backdrop, .nav-panel-head, .nav-panel-foot, .nav-expand { display: none; }
body.nav-locked,
body.modal-locked { overflow: hidden; }

.btn { display: inline-flex; align-items: center; justify-content: center; min-height: 46px; padding: 0 20px; border-radius: 999px; font-weight: 800; border: 0; cursor: pointer; }
.btn-primary { background: var(--blue); color: #fff; }
.btn-primary:hover { background: var(--blue-dark); color: #fff; }
.btn-light { background: #fff; color: var(--navy); }
.btn-ghost { background: transparent; color: var(--navy); border: 1px solid var(--line); }
.btn-row { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 22px; }
.nav-cta {
  gap: 10px;
  padding: 0 6px 0 18px;
  white-space: nowrap;
}
.nav-cta-icon {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #fff;
  color: var(--blue);
  transition: transform .2s ease;
}
.nav-cta-icon .icon { display: block; }
.nav-cta:hover .nav-cta-icon {
  transform: translateX(3px);
}

.hero-slider { position: relative; height: min(78vh, 820px); min-height: 560px; overflow: hidden; background: var(--navy); touch-action: pan-y; cursor: grab; user-select: none; }
.hero-slider.is-dragging { cursor: grabbing; }
.slide { position: absolute; inset: 0; display: flex; align-items: center; background-size: cover; background-position: center; opacity: 0; transition: opacity .8s ease; pointer-events: none; }
.slide.is-active { opacity: 1; pointer-events: auto; }
.slide-overlay { position: absolute; inset: 0; background: rgba(12, 34, 54, .46); }
.slide-content { position: relative; z-index: 2; color: #fff; max-width: none; padding: 0; text-align: left; }
.slide-content h1,
.slide-content .eyebrow,
.slide-content .slide-text { color: #fff; }
.eyebrow { letter-spacing: .16em; text-transform: uppercase; font-size: 12px; font-weight: 800; opacity: .85; }
.slide-content h1 { font-size: clamp(36px, 5vw, 62px); line-height: 1.08; margin: 10px 0 16px; max-width: 16ch; }
.slide-text { font-size: 18px; max-width: 560px; color: #e8f2fa; }
.slider-dots { position: absolute; left: 50%; bottom: 24px; transform: translateX(-50%); display: flex; gap: 8px; z-index: 3; }
.slider-dots button { width: 10px; height: 10px; border-radius: 50%; border: 0; background: rgba(255,255,255,.45); cursor: pointer; }
.slider-dots button.is-active { background: #fff; width: 28px; border-radius: 999px; }

.stats-band { background: var(--mist); border-bottom: 1px solid var(--line); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.icon { display: inline-block; vertical-align: middle; flex-shrink: 0; }
.icon-sm { width: 16px; height: 16px; }
.stat-icon { width: 26px; height: 26px; color: var(--blue); margin-bottom: 8px; }
.stats-grid article { padding: 28px 18px; text-align: center; border-right: 1px solid var(--line); display: flex; flex-direction: column; align-items: center; }
.pillar-icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--sky);
  color: var(--blue);
  margin-bottom: 10px;
}
.pillar-icon .icon { display: block; }
.news-card time, .press-list span, .contact-line {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.step-list {
  list-style: none;
  margin: 0 0 8px;
  padding: 0;
}
.step-list li {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  margin: 0;
  padding: 12px 0;
  border-top: 1px solid var(--line);
}
.step-list li:first-child {
  border-top: 0;
  padding-top: 0;
}
.step-icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--sky);
  color: var(--blue);
}
.step-icon .icon {
  display: block;
  width: 20px;
  height: 20px;
  margin: 0;
}
.step-list li > span:last-child {
  min-width: 0;
  color: var(--navy);
  font-weight: 600;
  line-height: 1.45;
}
.kit-icon { color: var(--blue); margin-bottom: 10px; }
.stats-grid article:last-child { border: 0; }
.stats-grid strong { display: block; font-size: 28px; color: var(--blue); }
.stats-grid span { color: var(--muted); font-size: 13px; font-weight: 700; }

.from-president { padding: 88px 0; background: var(--white); }
.from-president-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 534px;
  gap: 56px;
  align-items: center;
}
.from-president-copy h2 {
  font-size: clamp(30px, 4vw, 44px);
  margin: 0 0 22px;
}
.from-president-copy p {
  margin: 0 0 14px;
  font-size: 17px;
  color: var(--muted);
}
.from-president-sign {
  margin: 28px 0 22px;
}
.from-president-sign strong {
  display: block;
  color: var(--navy);
  font-size: 18px;
}
.from-president-sign span {
  color: var(--blue);
  font-weight: 700;
  font-size: 13px;
}
.from-president-visual {
  position: relative;
  width: 534px;
  padding: 0 18px 18px 0;
}
.from-president-visual::before {
  content: "";
  position: absolute;
  inset: 24px 0 0 24px;
  background: var(--navy);
  border-radius: 28px;
}
.from-president-frame {
  position: relative;
  z-index: 1;
  width: 516px;
  height: 645px;
  overflow: hidden;
  border-radius: 28px;
  aspect-ratio: 516 / 645;
  background: var(--sky);
}
.from-president-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.from-president-placeholder {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  background: var(--navy);
  color: #fff;
  font-size: clamp(64px, 8vw, 92px);
  font-weight: 800;
  letter-spacing: .04em;
}

.section { padding: 84px 0; }
.section-muted { background: var(--mist); }
.kicker { color: var(--blue); font-weight: 800; letter-spacing: .12em; text-transform: uppercase; font-size: 12px; margin: 0 0 8px; }
.kicker.light { color: #cfe7f8; }
h1, h2, h3 { font-weight: 800; color: var(--navy); line-height: 1.2; }
.lede { font-size: 18px; color: var(--muted); }
.split { display: grid; grid-template-columns: 1.1fr .9fr; gap: 48px; align-items: start; }
.pillars { display: grid; gap: 16px; }
.pillars article { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 22px; box-shadow: var(--shadow); }
.pillars span { color: var(--blue); font-weight: 800; }
.section-head { align-items: end; margin-bottom: 28px; }
.text-link { font-weight: 800; color: var(--blue); }
.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.section .prose + .card-grid { margin-top: 28px; }
.news-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 0; overflow: hidden; box-shadow: var(--shadow); color: inherit; display: flex; flex-direction: column; }
.news-card:hover { transform: translateY(-3px); transition: .2s ease; }
.news-card-photo {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}
.news-card-body { padding: 24px; }
.news-card-body h3 { margin: 8px 0 10px; }
.news-card-body p { margin: 0; color: var(--muted); }
.news-card time, .meta { color: var(--blue); font-weight: 800; font-size: 13px; }
.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 36px;
}
.pagination-pages {
  display: flex;
  gap: 6px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.pagination-page,
.pagination-nav {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  min-height: 42px;
  padding: 0 14px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 14px;
  color: var(--navy);
  background: #fff;
  border: 1px solid var(--line);
}
.pagination-page:hover,
.pagination-nav:hover {
  border-color: var(--blue);
  color: var(--blue);
}
.pagination-page.is-current {
  background: var(--blue);
  border-color: var(--blue);
  color: #fff;
}
.pagination-nav.is-disabled {
  opacity: .4;
  pointer-events: none;
}
.people-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.people-grid-home { grid-template-columns: repeat(4, 1fr); }
.person-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; text-align: center; box-shadow: var(--shadow); }
.person-card .role { color: var(--blue); font-weight: 800; }
.avatar { width: 72px; height: 72px; border-radius: 50%; margin: 0 auto 12px; background: var(--sky); color: var(--blue-deep); display: grid; place-items: center; font-weight: 800; overflow: hidden; }
.avatar.large { width: 96px; height: 96px; font-size: 24px; }
.avatar img { width: 100%; height: 100%; object-fit: cover; }
.people-featured { grid-template-columns: repeat(3, 1fr); }
.person-card.is-featured { grid-column: 1 / -1; display: grid; grid-template-columns: 120px 1fr; text-align: left; gap: 24px; align-items: start; }
.person-card.is-featured .avatar { margin: 0; }

.home-founders h2,
.home-announcements h2 {
  margin: 0 0 28px;
  font-size: clamp(28px, 3.5vw, 40px);
}
.home-founders .section-intro {
  margin: -12px 0 28px;
  color: var(--muted);
  font-weight: 600;
  max-width: 42rem;
}
.home-announcements .section-head h2 { margin: 0; }
.founders-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
.founders-grid.is-cols-4 {
  grid-template-columns: repeat(4, 1fr);
}
.founder-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow);
  text-align: center;
}
.founder-card-photo {
  aspect-ratio: 1;
  width: 100%;
  background: var(--sky);
  color: var(--blue-deep);
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 28px;
}
.founder-card-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.founder-card h3,
.founder-card-name {
  display: block;
  margin: 0;
  padding: 14px 10px 16px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--navy);
}
.founder-card.has-title .founder-card-name {
  padding-bottom: 4px;
}
.founder-card-role {
  display: block;
  padding: 0 10px 14px;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.35;
  color: var(--blue);
}
.founder-card-trigger {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  cursor: pointer;
  text-align: center;
}
.founder-card.is-clickable:hover {
  border-color: var(--blue);
}
.founder-card-trigger:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: -2px;
}

.founder-modal {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: none;
  place-items: center;
  padding: max(16px, env(safe-area-inset-top)) max(16px, env(safe-area-inset-right)) max(16px, env(safe-area-inset-bottom)) max(16px, env(safe-area-inset-left));
}
.founder-modal.is-open {
  display: grid;
}
.founder-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(18, 50, 77, .55);
  cursor: pointer;
}
.founder-modal-dialog {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  width: min(440px, 100%);
  max-height: 100%;
  overflow: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  background: #fff;
  border-radius: 22px;
  box-shadow: var(--shadow);
}
.founder-modal-close {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: #fff;
  color: var(--navy);
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(18, 50, 77, .16);
}
.founder-modal-close:hover,
.founder-modal-close:focus-visible {
  background: var(--blue);
  color: #fff;
  outline: 0;
}
.founder-modal-photo {
  flex: 0 0 auto;
  width: min(200px, 46vw);
  aspect-ratio: 1;
  margin: 36px auto 0;
  border-radius: 18px;
  overflow: hidden;
  background: var(--sky);
  color: var(--blue-deep);
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 36px;
}
.founder-modal-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.founder-modal-body {
  padding: 18px 22px max(24px, env(safe-area-inset-bottom));
  text-align: center;
}
.founder-modal-body h2 {
  margin: 0 0 6px;
  font-size: clamp(20px, 5vw, 26px);
}
.founder-modal-title {
  margin: 0 0 12px;
  color: var(--blue);
  font-weight: 800;
}
.founder-modal-bio {
  margin: 0;
  color: var(--muted);
  white-space: pre-wrap;
  text-align: left;
}
.founder-modal-title[hidden],
.founder-modal-bio[hidden] {
  display: none;
}

@media (max-width: 680px) {
  .founder-modal-photo {
    width: min(160px, 42vw);
    margin-top: 28px;
    font-size: 28px;
  }
  .founder-modal-body {
    padding: 14px 18px max(20px, env(safe-area-inset-bottom));
  }
}
@media (max-height: 500px) and (orientation: landscape) {
  .founder-modal-dialog {
    flex-direction: row;
    align-items: stretch;
    width: min(640px, 100%);
  }
  .founder-modal-photo {
    width: min(168px, 42vh);
    margin: 20px 0 20px 20px;
    font-size: 28px;
  }
  .founder-modal-body {
    flex: 1;
    min-width: 0;
    overflow: auto;
    text-align: left;
    padding: 20px 52px 16px 16px;
  }
}

.cta-band { background: var(--blue); color: #fff; }
.cta-band h2, .cta-inner p { color: #fff; }
.cta-inner { align-items: center; padding: 64px 0; }
.press-list { display: grid; gap: 16px; }
.press-list article { background: #fff; border: 1px solid var(--line); border-radius: 18px; padding: 0; overflow: hidden; }
.press-photo {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}
.press-body { padding: 22px; }
.press-list span { color: var(--muted); font-size: 13px; font-weight: 700; }

.page-hero { padding: 96px 0 24px; background: var(--sky); }
.page-hero h1 { font-size: clamp(32px, 4vw, 48px); margin: 0 0 10px; }
.prose { font-size: 17px; max-width: none; }
.prose h2, .prose h3 { margin-top: 1.6em; }
.prose ul, .prose ol { padding-left: 1.25em; margin: 0.7em 0 1.1em; }
.prose li { margin: 0.2em 0; }
.prose img { border-radius: 16px; margin: 16px auto; }
.prose figure { margin: 20px 0; }
.prose figcaption { color: var(--muted); font-size: 14px; margin-top: 8px; }
.prose ul, .prose ol { padding-left: 1.25em; margin: 0.7em 0 1.1em; }
.prose li { margin: 0.2em 0; }
.prose.letter { font-size: 20px; }
.timeline { list-style: none; padding: 0; display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin: 0 0 40px; }
.timeline li { background: #fff; border: 1px solid var(--line); border-radius: 18px; padding: 18px; }
.timeline strong { display: block; color: var(--blue); font-size: 22px; }
.hero-image {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 20px;
  margin: 18px 0;
}

.form-layout { align-items: start; gap: 32px; }
.form-layout > div { flex: 1.4; min-width: 0; }
.form-layout aside { flex: .9; }
.form-layout .prose { margin: 0 0 20px; }
.panel-form, .side-card { background: #fff; border: 1px solid var(--line); border-radius: 24px; padding: 28px; box-shadow: var(--shadow); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
label { display: block; font-weight: 700; margin: 12px 0; color: var(--navy); }
input, select, textarea { width: 100%; margin-top: 6px; padding: 12px 14px; border: 1px solid var(--line); border-radius: 12px; font: inherit; background: var(--mist); }
.check { display: flex; gap: 10px; align-items: flex-start; font-weight: 600; }
.check input { width: auto; margin: 4px 0 0; }
.alert { padding: 12px 14px; border-radius: 12px; margin-bottom: 16px; font-weight: 700; }
.alert.success { background: #E7F6EC; color: #146C2E; }
.alert.error { background: #FDECEC; color: #9B1C1C; }

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, .8fr);
  gap: 32px;
  align-items: stretch;
}
.section .prose + .contact-layout { margin-top: 28px; }
.contact-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 36px;
  box-shadow: var(--shadow);
}
.contact-card h2 {
  margin: 0 0 8px;
  font-size: 24px;
}
.contact-lead {
  margin: 0 0 28px;
  color: var(--muted);
}
.contact-form {
  display: grid;
  gap: 18px;
}
.contact-form label { margin: 0; }
.contact-form .form-grid { gap: 18px; }
.contact-form .is-full { grid-column: 1 / -1; }
.contact-form .btn { justify-self: start; margin-top: 4px; }
.contact-facts {
  list-style: none;
  margin: 0;
  padding: 0;
}
.contact-facts > li {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  padding: 18px 0;
  border-top: 1px solid var(--line);
}
.contact-facts > li:first-child {
  border-top: 0;
  padding-top: 0;
}
.contact-fact-icon {
  display: grid;
  place-items: center;
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--sky);
  color: var(--blue);
}
.contact-fact-icon .icon {
  display: block;
  width: 20px;
  height: 20px;
  margin: 0;
}
.contact-fact-label {
  display: block;
  margin-bottom: 4px;
  color: var(--blue);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.contact-facts p {
  margin: 0;
  color: var(--navy);
  font-weight: 600;
  line-height: 1.55;
}
.contact-facts a { color: var(--navy); font-weight: 700; }
.contact-facts a:hover { color: var(--blue); }
.contact-social { margin-top: 8px; }
.contact-social .topbar-social a {
  width: 36px;
  height: 36px;
  background: var(--sky);
  color: var(--navy);
}
.contact-social .topbar-social a:hover {
  background: var(--blue);
  color: #fff;
}
.kit-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 24px; }
.kit-card, .file-list a { background: #fff; border: 1px solid var(--line); border-radius: 18px; padding: 22px; }
.color-chip {
  width: 100%;
  height: 48px;
  border-radius: 12px;
  margin: 8px 0 12px;
  border: 1px solid var(--line);
}
.kit-logo { height: 64px; width: auto; max-width: 220px; object-fit: contain; margin-bottom: 12px; }
.file-list { display: grid; gap: 10px; }
.subhead { margin-top: 40px; }

.site-footer { background: var(--navy); color: #d5e4f0; padding-top: 56px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr .7fr .7fr 1fr; gap: 28px; padding-bottom: 36px; }
.site-footer a, .site-footer h4 { color: #fff; }
.site-footer ul { list-style: none; padding: 0; }
.site-footer li { margin: 8px 0; }
.site-footer ul a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.contact-lines {
  display: grid;
  gap: 12px;
  margin: 8px 0 0;
}
.contact-lines li {
  display: grid;
  grid-template-columns: 16px minmax(0, 1fr);
  column-gap: 10px;
  align-items: start;
  margin: 0;
}
.contact-lines-ico {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 1.55em;
}
.contact-lines-ico .icon {
  display: block;
  width: 16px;
  height: 16px;
  margin: 0;
}
.contact-lines span:not(.contact-lines-ico),
.contact-lines a {
  min-width: 0;
  line-height: 1.55;
}
.site-footer .topbar-social {
  margin-top: 16px;
  gap: 8px;
}
.site-footer .topbar-social a {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,.08);
}
.site-footer .topbar-social a:hover {
  background: var(--blue);
  color: #fff;
}
.site-footer .topbar-social svg {
  width: 16px;
  height: 16px;
}
.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); padding: 16px 0; font-size: 13px; }
.brand-light { color: #fff; margin-bottom: 12px; }
.brand-light small { color: #bcd3e4; }

@media (max-width: 980px) {
  .split, .card-grid, .people-grid, .people-grid-home, .people-featured, .stats-grid, .timeline, .kit-grid, .footer-grid, .form-grid { grid-template-columns: 1fr 1fr; }
  .founders-grid { grid-template-columns: repeat(3, 1fr); }
  .form-layout, .cta-inner, .section-head { flex-direction: column; }
  .contact-layout { grid-template-columns: 1fr; }
  .contact-info-card { order: 1; }
  .contact-form-card { order: 2; }
  .from-president-grid { grid-template-columns: 1fr; gap: 32px; }
  .from-president-visual,
  .from-president-frame {
    width: 100%;
    height: auto;
  }
  .from-president-frame { aspect-ratio: 4 / 5; }
  .nav-toggle {
    display: block;
    position: relative;
    z-index: 70;
    border-radius: 14px;
    background: var(--sky);
    border: 1px solid var(--line);
    -webkit-tap-highlight-color: transparent;
  }
  .nav-toggle span {
    position: absolute;
    left: 12px;
    right: 12px;
    height: 2px;
    margin: 0;
    border-radius: 999px;
    background: var(--navy);
    transition: transform .28s ease, opacity .2s ease, top .28s ease;
  }
  .nav-toggle span:nth-child(1) { top: 15px; }
  .nav-toggle span:nth-child(2) { top: 21px; }
  .nav-toggle span:nth-child(3) { top: 27px; }
  body.nav-locked .nav-toggle {
    background: #fff;
    box-shadow: 0 10px 24px rgba(18, 50, 77, .12);
  }
  body.nav-locked .nav-toggle span:nth-child(1) { top: 21px; transform: rotate(45deg); }
  body.nav-locked .nav-toggle span:nth-child(2) { opacity: 0; }
  body.nav-locked .nav-toggle span:nth-child(3) { top: 21px; transform: rotate(-45deg); }
  .brand-plaque {
    width: 96px;
    height: 112px;
    margin-bottom: -44px;
    padding: 8px 8px 14px;
    border-radius: 0 0 16px 16px;
  }
  .brand-plaque img { width: 80px; height: 80px; }
  .nav-backdrop {
    display: block;
    position: fixed;
    inset: 0;
    background: rgba(18, 50, 77, .42);
    backdrop-filter: blur(6px);
    opacity: 0;
    pointer-events: none;
    transition: opacity .3s ease;
    z-index: 55;
  }
  .nav-backdrop.is-open {
    opacity: 1;
    pointer-events: auto;
  }
  .site-nav {
    display: flex;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: auto;
    width: min(360px, 92vw);
    margin: 0;
    background: #fff;
    padding: 24px 20px 28px;
    border: 0;
    border-radius: 28px 0 0 28px;
    flex-direction: column;
    align-items: stretch;
    gap: 18px;
    z-index: 60;
    transform: translateX(calc(100% + 48px));
    transition: transform .34s ease, box-shadow .34s ease, visibility .34s;
    box-shadow: none;
    overflow-y: auto;
    visibility: hidden;
    pointer-events: none;
  }
  .site-nav.is-open {
    transform: translateX(0);
    box-shadow: -24px 0 60px rgba(18, 50, 77, .18);
    visibility: visible;
    pointer-events: auto;
  }
  .nav-panel-head {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 4px 56px 18px 4px;
    border-bottom: 1px solid var(--line);
  }
  .nav-panel-head img {
    width: 48px;
    height: 48px;
    object-fit: contain;
    background: var(--mist);
    border-radius: 14px;
    padding: 6px;
  }
  .nav-panel-head .kicker { margin: 0 0 2px; }
  .nav-panel-head strong {
    display: block;
    font-size: 22px;
    color: var(--navy);
  }
  .site-nav > ul {
    flex-direction: column;
    gap: 6px;
    flex: 1;
  }
  .site-nav > ul > li > a {
    padding: 12px 14px;
    font-size: 16px;
    border-radius: 14px;
  }
  .site-nav > ul > li.is-active > a {
    background: var(--sky);
    color: var(--blue);
  }
  .site-nav .has-children {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 6px;
  }
  .site-nav .has-children > a { grid-column: 1; }
  .nav-expand {
    display: grid;
    place-items: center;
    grid-column: 2;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 12px;
    background: var(--mist);
    color: var(--navy);
    cursor: pointer;
  }
  .nav-expand .icon { display: block; transition: transform .25s ease; }
  .nav-expand[aria-expanded="true"] { background: var(--sky); color: var(--blue); }
  .nav-expand[aria-expanded="true"] .icon { transform: rotate(90deg); }
  .site-nav .has-children:hover > .dropdown,
  .site-nav .has-children:focus-within > .dropdown { display: none; }
  .site-nav .dropdown {
    display: none;
    grid-column: 1 / -1;
    position: static;
    min-width: 0;
    margin: 0 0 6px;
    padding: 6px;
    border: 0;
    border-radius: 16px;
    background: var(--mist);
    box-shadow: none;
  }
  .site-nav .has-children.is-expanded > .dropdown { display: flex; }
  .site-nav .dropdown a { font-weight: 600; }
  .site-nav .dropdown a:hover,
  .site-nav .dropdown .is-active a { background: #fff; color: var(--blue); }
  .site-nav .nav-cta {
    width: 100%;
    margin-top: 8px;
    min-height: 52px;
    justify-content: space-between;
    padding: 0 8px 0 20px;
  }
  .nav-panel-foot {
    display: grid;
    gap: 14px;
    padding-top: 16px;
    border-top: 1px solid var(--line);
  }
  .nav-panel-mail {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--muted);
    font-size: 13px;
    font-weight: 600;
  }
  .nav-panel-foot .topbar-social a {
    width: 36px;
    height: 36px;
    background: var(--sky);
    color: var(--navy);
  }
  .nav-panel-foot .topbar-social a:hover {
    background: var(--blue);
    color: #fff;
  }
  .person-card.is-featured { grid-column: auto; display: block; }
}
@media (max-width: 680px) {
  .topbar { display: none; }
  .split, .card-grid, .people-grid, .people-grid-home, .stats-grid, .timeline, .kit-grid, .footer-grid, .form-grid { grid-template-columns: 1fr; }
  .founders-grid { grid-template-columns: repeat(2, 1fr); }
  .founders-grid.is-cols-4 { grid-template-columns: repeat(2, 1fr); }
  .brand small { display: none; }
  .brand-plaque {
    width: 78px;
    height: 94px;
    margin-bottom: -30px;
  }
  .brand-plaque img { width: 64px; height: 64px; }
}
