/* =====================================================================
   ONTALENT — Design System
   Aesthetic: "Modern Academy" — warm paper, ink-violet brand, coral accent,
   Fraunces (display) + Hanken Grotesk (text), dot-grid + grain, soft depth.
   ===================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,400..700&family=Hanken+Grotesk:wght@400;500;600;700&display=swap');

/* ---------- Tokens ---------- */
:root {
  --paper:      #FDFAF5;
  --paper-2:    #F5EFE4;
  --card:       #FFFFFF;

  --ink:        #251D42;   /* deep violet body text — slightly lighter than before */
  --muted:      #675E7A;   /* secondary text — warmer, less harsh */
  --brand:      #3D2F6E;   /* OnTalent purple — lifted from near-black to true purple */
  --brand-deep: #2A1F55;   /* dark sections — still rich but not black-purple */

  --accent:     #FF6A4D;   /* warm coral — energy / CTAs */
  --accent-dk:  #D24A30;

  --robotics:   #F25C54;
  --ai:         #199FB0;
  --health:     #2F9E68;
  --leadership: #E0A12E;
  --emerging:   #7A5CD0;

  --line:       rgba(61,47,110,.13);
  --line-2:     rgba(61,47,110,.08);
  --on-dark:    #F2EEF8;   /* slight purple tint on dark — more on-brand than pure cream */
  --on-dark-mut:rgba(242,238,248,.70);

  --shadow-sm:  0 1px 2px rgba(61,47,110,.06), 0 4px 10px -6px rgba(61,47,110,.16);
  --shadow:     0 2px 4px rgba(61,47,110,.05), 0 18px 40px -18px rgba(61,47,110,.24);

  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --font-sans: "Hanken Grotesk", system-ui, -apple-system, sans-serif;

  --r-sm: 10px;
  --r:    16px;
  --r-lg: 24px;

  --maxw: 1140px;
  --maxw-narrow: 760px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  font-size: 17px;
  background-image:
    radial-gradient(120% 60% at 50% -10%, rgba(255,106,77,.05), transparent 60%);
  background-attachment: fixed;
}

img { max-width: 100%; display: block; }
a { color: var(--brand); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--accent-dk); }
ul, ol { padding-left: 1.2em; }
li { margin-bottom: .35em; }

/* ---------- Type ---------- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.01em;
  color: var(--ink);
  font-optical-sizing: auto;
}
h1 { font-size: clamp(2.4rem, 5.2vw, 3.9rem); font-weight: 600; }
h2 { font-size: clamp(1.9rem, 3.6vw, 2.7rem); }
h3 { font-size: clamp(1.2rem, 1.8vw, 1.45rem); }
h4 { font-size: 1rem; letter-spacing: .02em; }

.kicker {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: .78rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--accent-dk);
  display: inline-flex;
  align-items: center;
  gap: .5em;
  margin-bottom: .9rem;
}
.kicker::before {
  content: "";
  width: 26px; height: 2px;
  background: var(--accent);
  display: inline-block;
}
.lede { font-size: clamp(1.05rem, 1.6vw, 1.25rem); color: var(--muted); }
.center { text-align: center; }
.center .kicker { justify-content: center; }

/* ---------- Layout ---------- */
.container { max-width: var(--maxw); margin-inline: auto; padding-inline: 24px; }
.container-narrow { max-width: var(--maxw-narrow); margin-inline: auto; padding-inline: 24px; }

.section { padding-block: clamp(56px, 8vw, 104px); }
.section--alt { background: var(--paper-2); }
.section--ink {
  background: var(--brand-deep);
  color: var(--on-dark);
  position: relative;
  overflow: hidden;
}
.section--ink h1, .section--ink h2, .section--ink h3 { color: var(--on-dark); }
.section--ink .lede { color: var(--on-dark-mut); }
.section__head { max-width: 640px; margin-bottom: clamp(32px, 4vw, 56px); }
.section__head.center { margin-inline: auto; }
.section__head--wide { max-width: none; }
.nowrap-heading { white-space: nowrap; font-size: clamp(1.5rem, 3vw, 2.7rem); }
@media (max-width: 700px) { .nowrap-heading { white-space: normal; } }

.grid { display: grid; gap: 22px; }
.grid-2 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(270px, 1fr)); }
.grid-4 { grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); }
/* Mission / Vision / Values: 2-up top row, Values full-width below */
.grid--mvv { grid-template-columns: 1fr 1fr; }
.grid--mvv > :last-child { grid-column: 1 / -1; }
@media (max-width: 600px) { .grid--mvv { grid-template-columns: 1fr; } .grid--mvv > :last-child { grid-column: auto; } }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5em;
  font-family: var(--font-sans);
  font-weight: 600; font-size: .98rem;
  padding: .85em 1.5em;
  border-radius: 999px;
  border: 1.5px solid transparent;
  cursor: pointer; text-align: center;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease, border-color .18s ease;
}
.btn--primary { background: var(--accent); color: #fff; box-shadow: 0 10px 22px -10px rgba(255,106,77,.7); }
.btn--primary:hover { background: var(--accent-dk); color: #fff; transform: translateY(-2px); box-shadow: 0 16px 30px -12px rgba(210,74,48,.65); }
.btn--ghost { background: transparent; border-color: var(--line); color: var(--ink); }
.btn--ghost:hover { border-color: var(--ink); color: var(--ink); transform: translateY(-2px); }
.btn--on-dark { background: var(--on-dark); color: var(--brand-deep); }
.btn--on-dark:hover { background: #fff; color: var(--brand-deep); transform: translateY(-2px); }
.btn--outline-dark { background: transparent; border-color: rgba(244,239,231,.4); color: var(--on-dark); }
.btn--outline-dark:hover { border-color: var(--on-dark); color: var(--on-dark); transform: translateY(-2px); }
.btn--sm { padding: .65em 1.1em; font-size: .9rem; }
.btn--block { width: 100%; }
.btn-row { display: flex; flex-wrap: wrap; gap: 14px; }
.btn-row.center { justify-content: center; }

/* ---------- Header / Nav ---------- */
.preview-banner {
  background: var(--brand-deep);
  color: var(--on-dark);
  border-bottom: 1px solid rgba(255,255,255,.14);
  padding: .65rem 24px;
  text-align: center;
  font-size: .9rem;
  font-weight: 600;
}
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(251,247,240,.82);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line-2);
}
.site-header__inner {
  max-width: var(--maxw); margin-inline: auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 24px;
}
.brand { display: inline-flex; align-items: center; font-weight: 700; }
.brand__logo { height: 38px; width: auto; display: block; }
.site-footer .brand__logo { height: 34px; }
@media (max-width: 480px) { .brand__logo { height: 32px; } }

.nav { display: flex; align-items: center; gap: 4px; }
.nav__link {
  position: relative;
  font-weight: 500; font-size: .95rem; color: var(--ink);
  padding: .5em .7em; border-radius: 8px;
}
.nav__link::after {
  content: ""; position: absolute; left: .7em; right: .7em; bottom: .28em;
  height: 2px; background: var(--accent);
  transform: scaleX(0); transform-origin: left; transition: transform .22s ease;
}
.nav__link:hover { color: var(--ink); }
.nav__link:hover::after, .nav__link.is-active::after { transform: scaleX(1); }
.nav__link.is-active { color: var(--ink); }
.nav__cta { margin-left: 8px; }

.nav-toggle {
  display: none;
  width: 42px; height: 42px; border-radius: 10px;
  border: 1px solid var(--line); background: var(--card);
  cursor: pointer; align-items: center; justify-content: center;
}
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  content: ""; display: block; width: 18px; height: 2px; background: var(--ink); position: relative; transition: transform .2s ease, opacity .2s ease;
}
.nav-toggle span::before { position: absolute; top: -6px; }
.nav-toggle span::after { position: absolute; top: 6px; }
.nav-toggle[aria-expanded="true"] span { background: transparent; }
.nav-toggle[aria-expanded="true"] span::before { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span::after { transform: translateY(-6px) rotate(-45deg); }

@media (max-width: 860px) {
  .nav-toggle { display: inline-flex; }
  .nav {
    position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 2px;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    padding: 12px 18px 18px;
    box-shadow: var(--shadow);
    transform: translateY(-8px); opacity: 0; pointer-events: none;
    transition: transform .2s ease, opacity .2s ease;
  }
  .nav.is-open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .nav__link { padding: .7em .4em; font-size: 1.05rem; }
  .nav__link::after { display: none; }
  .nav__cta { margin: 8px 0 0; }
  .site-header__inner { position: relative; }
}

/* ---------- Hero (home) ---------- */
.hero {
  position: relative; overflow: hidden;
  background: var(--brand-deep);
  color: var(--on-dark);
  padding-block: clamp(72px, 11vw, 132px);
  isolation: isolate;
}
.hero::before { /* dot grid */
  content: ""; position: absolute; inset: 0; z-index: -2;
  background-image: radial-gradient(rgba(255,255,255,.10) 1px, transparent 1.4px);
  background-size: 26px 26px;
  mask-image: radial-gradient(120% 100% at 70% 0%, #000 35%, transparent 78%);
}
.hero::after { /* warm glow */
  content: ""; position: absolute; z-index: -1;
  width: 60vw; height: 60vw; right: -10vw; top: -22vw;
  background: radial-gradient(circle, rgba(255,106,77,.42), transparent 62%);
  filter: blur(8px);
}
.hero__network {
  position: absolute;
  inset: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  opacity: .96;
  pointer-events: none;
}
.hero__inner { position: relative; z-index: 1; max-width: var(--maxw); margin-inline: auto; padding-inline: 24px; }
.hero__title { color: #fff; max-width: 16ch; }
.hero__title em { font-style: italic; color: var(--accent); }
.hero__lede { color: var(--on-dark-mut); max-width: 54ch; margin-top: 1.1rem; font-size: clamp(1.05rem,1.6vw,1.25rem); }
.hero__cta { margin-top: 2rem; }

.hero__stats {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 14px; margin-top: 3rem; max-width: 760px;
}
.stat {
  padding: 20px; border-radius: var(--r);
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  backdrop-filter: blur(4px);
}
.stat__num { font-family: var(--font-display); font-weight: 600; font-size: clamp(2rem,4vw,2.7rem); color: #fff; line-height: 1; }
.stat__label { font-size: .85rem; color: var(--on-dark-mut); margin-top: .5rem; }

/* ---------- Page hero (interior) ---------- */
.page-hero { position: relative; overflow: hidden; background: var(--brand-deep); color: var(--on-dark); padding-block: clamp(64px, 9vw, 104px); }
.page-hero::before {
  content: ""; position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.08) 1px, transparent 1.3px);
  background-size: 24px 24px;
  mask-image: radial-gradient(130% 120% at 80% -10%, #000 30%, transparent 75%);
}
.page-hero__inner { position: relative; max-width: var(--maxw); margin-inline: auto; padding-inline: 24px; }
.page-hero__title { color: #fff; max-width: 18ch; }
.page-hero__title em { font-style: italic; color: var(--accent); }
.page-hero__lede { color: var(--on-dark-mut); max-width: 56ch; margin-top: 1rem; font-size: clamp(1.02rem,1.5vw,1.2rem); }
.page-hero__cta { margin-top: 1.8rem; }
.page-hero__tag {
  display: inline-block; font-size: .72rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase;
  color: var(--brand-deep); background: var(--accent); padding: .35em .8em; border-radius: 999px; margin-bottom: 1rem;
}

/* ---------- Cards / features ---------- */
.card {
  background: var(--card); border: 1px solid var(--line-2);
  border-radius: var(--r); padding: 28px;
  box-shadow: var(--shadow-sm);
  transition: transform .25s ease, box-shadow .25s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.card__icon { font-size: 2rem; line-height: 1; margin-bottom: .9rem; display: block; }
.card__meta { color: var(--accent-dk); font-weight: 600; font-size: .9rem; margin: .35rem 0 .6rem; }
.card__body { color: var(--muted); font-size: .98rem; }
.card h3 { margin-bottom: .35rem; }

.feature { padding: 6px 4px; }
.feature__icon { font-size: 1.7rem; display: block; margin-bottom: .6rem; }
.feature h3 { margin-bottom: .35rem; }
.feature p { color: var(--muted); font-size: .98rem; }

/* ---------- Pathway cards ---------- */
.pathway {
  display: flex; flex-direction: column;
  background: var(--card); border: 1px solid var(--line-2);
  border-radius: var(--r); padding: 26px;
  border-top: 4px solid var(--brand);
  box-shadow: var(--shadow-sm);
  transition: transform .25s ease, box-shadow .25s ease;
  color: inherit;
}
.pathway:hover { transform: translateY(-6px); box-shadow: var(--shadow); color: inherit; }
.pathway--robotics   { border-top-color: var(--robotics); }
.pathway--ai         { border-top-color: var(--ai); }
.pathway--health     { border-top-color: var(--health); }
.pathway--leadership { border-top-color: var(--leadership); }
.pathway--emerging   { border-top-color: var(--emerging); }
.pathway__top { display: flex; align-items: center; justify-content: space-between; margin-bottom: .8rem; }
.pathway__index { font-family: var(--font-display); font-size: 1.1rem; color: var(--muted); }
.pathway__icon { font-size: 1.9rem; }
.pathway__tag { font-size: .68rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); border: 1px solid var(--line); border-radius: 999px; padding: .3em .7em; }
.pathway h3 { margin-bottom: .4rem; }
.pathway__desc { color: var(--muted); font-size: .96rem; flex: 1; }
.pathway__link { margin-top: 1rem; font-weight: 600; color: var(--brand); font-size: .95rem; }
.pathway:hover .pathway__link { color: var(--accent-dk); }

/* ---------- Roles (get involved) ---------- */
.role { text-align: left; display: flex; flex-direction: column; }
.role__icon { font-size: 1.9rem; margin-bottom: .7rem; }
.role h3 { margin-bottom: .4rem; }
.role p { color: var(--muted); font-size: .96rem; flex: 1; margin-bottom: 1.2rem; }

/* ---------- Steps ---------- */
.steps { counter-reset: step; display: grid; gap: 18px; grid-template-columns: repeat(auto-fit, minmax(220px,1fr)); }
.step { background: var(--card); border: 1px solid var(--line-2); border-radius: var(--r); padding: 24px; box-shadow: var(--shadow-sm); }
.step__num { font-family: var(--font-display); font-size: 1.4rem; color: var(--accent-dk); display: block; margin-bottom: .4rem; }
.step h3 { font-size: 1.15rem; margin-bottom: .3rem; }
.step p { color: var(--muted); font-size: .95rem; }
.section--ink .step { background: rgba(255,255,255,.05); border-color: rgba(255,255,255,.12); }
.section--ink .step p { color: var(--on-dark-mut); }

/* ---------- Quote band ---------- */
.quote-band { position: relative; overflow: hidden; }
.quote-band::after { content: ""; position: absolute; z-index: 0; width: 50vw; height: 50vw; left: -12vw; bottom: -24vw; background: radial-gradient(circle, rgba(255,106,77,.30), transparent 60%); }
.quote { position: relative; z-index: 1; max-width: 760px; margin-inline: auto; text-align: center; }
.quote__text { font-family: var(--font-display); font-style: italic; font-weight: 500; font-size: clamp(1.4rem, 3vw, 2rem); color: #fff; line-height: 1.4; }
.quote__cite { margin-top: 1.4rem; color: var(--on-dark-mut); font-style: normal; font-weight: 600; }
.quote__cite span { display: block; font-weight: 400; font-size: .9rem; margin-top: .2rem; }

/* ---------- Metrics ---------- */
.metric { text-align: center; background: var(--card); border: 1px solid var(--line-2); border-radius: var(--r); padding: 30px 22px; border-top: 4px solid var(--brand); box-shadow: var(--shadow-sm); }
.metric__num { font-family: var(--font-display); font-weight: 600; font-size: clamp(2.3rem,4vw,3rem); color: var(--ink); line-height: 1; }
.metric__label { font-weight: 600; margin: .5rem 0 .4rem; }
.metric p { color: var(--muted); font-size: .9rem; }

/* ---------- Trend ---------- */
.trend { max-width: 640px; margin-inline: auto; display: grid; gap: 26px; }
.trend__year { font-weight: 600; color: var(--muted); font-size: .95rem; }
.trend__stat { font-family: var(--font-display); font-size: 1.4rem; margin: .15rem 0 .5rem; }
.trend__bar { height: 30px; border-radius: 8px; background: linear-gradient(90deg, var(--ai), var(--emerging)); }
.trend__note { color: var(--muted); font-size: .85rem; margin-top: .5rem; }

/* ---------- Stories ---------- */
.story { overflow: hidden; padding: 0; }
.story__media { height: 200px; }
.story__pad { padding: 24px; }
.story__meta { color: var(--accent-dk); font-weight: 600; font-size: .88rem; margin: .3rem 0 .7rem; }
.story__quote { font-style: italic; color: var(--muted); margin-bottom: .9rem; }
.story__outcome { font-size: .9rem; }

/* ---------- Team / board ---------- */
.member { text-align: center; }
.member__avatar { width: 132px; height: 132px; border-radius: 50%; margin: 0 auto .9rem; background: linear-gradient(135deg, var(--brand), var(--emerging)); }
img.member__avatar { object-fit: cover; }
.member__avatar--initials { display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-size: 2rem; font-weight: 600; color: #fff; letter-spacing: .02em; text-shadow: 0 1px 6px rgba(37,29,66,.35); }
.member .role-title { color: var(--accent-dk); font-weight: 600; font-size: .88rem; margin: .15rem 0 .6rem; }
.member p { color: var(--muted); font-size: .92rem; }
.board-members-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.board-grid { display: grid; gap: 16px; grid-template-columns: repeat(auto-fit, minmax(260px,1fr)); }
.board-item { background: var(--card); border: 1px solid var(--line-2); border-left: 3px solid var(--brand); border-radius: var(--r-sm); padding: 16px 18px; }
.board-item strong { display: block; }
.board-item span { color: var(--muted); font-size: .88rem; }
.board-item--placeholder { opacity: .55; border-left-color: var(--line); }
.board-item--placeholder strong { color: var(--muted); }

/* ---------- Docs / spend ---------- */
.doc-link { display: block; text-align: center; background: var(--card); border: 1px solid var(--line); border-radius: var(--r); padding: 26px; transition: border-color .2s, transform .2s; color: var(--ink); }
.doc-link:hover { border-color: var(--accent); transform: translateY(-3px); color: var(--ink); }
.doc-link .doc-icon { font-size: 2rem; display: block; margin-bottom: .6rem; }
.doc-link .doc-title { font-weight: 600; font-size: .92rem; }
.spend { background: var(--card); border: 1px solid var(--line-2); border-radius: var(--r); padding: 28px; box-shadow: var(--shadow-sm); }
.spend__row { margin-bottom: 22px; }
.spend__row:last-child { margin-bottom: 0; }
.spend__label { font-weight: 600; margin-bottom: .5rem; }
.spend__bar { height: 22px; border-radius: 6px; }
.spend__note { color: var(--muted); font-size: .82rem; margin-top: .4rem; }

/* ---------- Tiers ---------- */
.tier { position: relative; background: var(--card); border: 1px solid var(--line-2); border-radius: var(--r); padding: 28px; border-top: 4px solid var(--line); box-shadow: var(--shadow-sm); display: flex; flex-direction: column; }
.tier--featured { border-top-color: var(--accent); box-shadow: var(--shadow); }
.tier__tag { position: absolute; top: 16px; right: 16px; background: var(--accent); color: #fff; font-size: .68rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; padding: .35em .7em; border-radius: 999px; }
.tier__name { margin-bottom: .2rem; }
.tier__range { color: var(--accent-dk); font-weight: 600; margin-bottom: 1rem; }
.tier__list { list-style: none; padding: 0; margin: 0 0 1.4rem; flex: 1; }
.tier__list li { position: relative; padding-left: 1.5em; color: var(--muted); font-size: .92rem; margin-bottom: .55rem; }
.tier__list li::before { content: "✓"; position: absolute; left: 0; color: var(--health); font-weight: 700; }
.tier--robotics { border-top-color: var(--robotics); }
.tier--ai { border-top-color: var(--ai); }
.tier--health { border-top-color: var(--health); }
.tier--leadership { border-top-color: var(--leadership); }

/* ---------- Logo wall ---------- */
.logo-wall { display: grid; gap: 16px; grid-template-columns: repeat(auto-fit, minmax(160px,1fr)); }
.logo-chip {
  background: var(--card);
  border: 1.5px solid var(--line-2);
  border-radius: var(--r-sm);
  padding: 12px 16px;
  text-align: center;
  font-weight: 600;
  font-size: .88rem;
  color: var(--brand);
  cursor: default;
  transition: background .18s ease, border-color .18s ease, color .18s ease, transform .18s ease, box-shadow .18s ease;
}
.logo-chip:hover {
  background: var(--brand);
  color: #fff;
  border-color: var(--brand);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}
/* Chip-specific grid: tighter columns for text-only chips */
.logo-wall--chips { grid-template-columns: repeat(auto-fill, minmax(130px, 1fr)); gap: 10px; }
/* Sub-group label within a supporters-group */
.chip-group { margin-top: 1.4rem; }
.chip-group__label { font-size: .7rem; font-weight: 600; letter-spacing: .13em; text-transform: uppercase; color: var(--muted); margin-bottom: .65rem; }

/* Real logo tiles */
.logo-tile {
  display: flex; align-items: center; justify-content: center;
  background: var(--card); border: 1px solid var(--line-2); border-radius: var(--r-sm);
  padding: 20px 18px; min-height: 90px;
  transition: border-color .2s, box-shadow .2s, transform .2s;
}
.logo-tile:hover { border-color: var(--brand); box-shadow: var(--shadow-sm); transform: translateY(-2px); }
.logo-tile img { max-height: 52px; max-width: 140px; width: auto; height: auto; object-fit: contain; }
.logo-wall--grantors { grid-template-columns: repeat(auto-fit, minmax(200px,1fr)); }
.logo-wall--grantors .logo-tile img { max-height: 68px; max-width: 180px; }

.supporters-group { margin-bottom: 2.5rem; }
.supporters-group:last-child { margin-bottom: 0; }
.supporters-group__label { font-size: .76rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); margin-bottom: 1rem; }

/* Logo strip (inline horizontal) */
.logo-strip { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 8px; padding: 16px 0; }
.logo-strip .logo-tile { min-height: 72px; padding: 12px 14px; }
.logo-strip .logo-tile img { max-height: 40px; max-width: 110px; }

/* ---------- Contact form ---------- */
.contact-form { display: grid; gap: 16px; }
.contact-form label { font-weight: 600; font-size: .92rem; display: block; margin-bottom: .35rem; }
.form-field { display: flex; flex-direction: column; }
.form-input {
  font-family: var(--font-sans); font-size: 1rem; color: var(--ink);
  background: var(--card); border: 1.5px solid var(--line);
  border-radius: var(--r-sm); padding: .7em 1em;
  transition: border-color .18s ease, box-shadow .18s ease;
  width: 100%;
}
.form-input:focus { outline: none; border-color: var(--brand); box-shadow: 0 0 0 3px rgba(43,33,74,.12); }
textarea.form-input { resize: vertical; min-height: 120px; }
.form-input--invalid { border-color: var(--robotics); box-shadow: 0 0 0 3px rgba(242,92,84,.12); }
.form-field__err { display: none; font-size: .82rem; color: var(--robotics); margin-top: .3rem; font-weight: 500; }
.form-status { font-size: .9rem; margin-top: .5rem; padding: .7em 1em; border-radius: var(--r-sm); display: none; }
.form-status--ok { background: rgba(47,158,104,.12); color: var(--health); display: block; }
.form-status--err { background: rgba(242,92,84,.12); color: var(--robotics); display: block; }

/* ---------- Split (text + panel) ---------- */
.split { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(28px, 5vw, 64px); align-items: center; }
@media (max-width: 820px) { .split { grid-template-columns: 1fr; } }
.panel { background: var(--card); border: 1px solid var(--line-2); border-radius: var(--r-lg); padding: 30px; box-shadow: var(--shadow); }
.panel--ink { background: rgba(255,255,255,.05); border-color: rgba(255,255,255,.14); color: var(--on-dark); }
.panel h3 { margin-bottom: .6rem; }

/* ---------- Checklist ---------- */
.checklist { list-style: none; padding: 0; margin: 0; }
.checklist li { position: relative; padding-left: 1.7em; margin-bottom: .7rem; }
.checklist li::before { content: "→"; position: absolute; left: 0; color: var(--accent-dk); font-weight: 700; }

/* ---------- CTA band ---------- */
.cta-band { position: relative; overflow: hidden; text-align: center; }
.cta-band::after { content: ""; position: absolute; z-index: 0; width: 56vw; height: 56vw; right: -16vw; top: -26vw; background: radial-gradient(circle, rgba(255,106,77,.32), transparent 60%); }
.cta-band__inner { position: relative; z-index: 1; max-width: 680px; margin-inline: auto; }
.cta-band p { color: var(--on-dark-mut); margin: .8rem 0 1.6rem; font-size: 1.1rem; }

/* ---------- Newsletter ---------- */
.newsletter__label { font-weight: 600; margin-bottom: .9rem; color: var(--on-dark); }
.newsletter__buttons { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
.newsletter__alt { color: var(--on-dark-mut); font-size: .9rem; margin-top: 1.2rem; }
.newsletter__alt a { color: var(--on-dark); text-decoration: underline; }

/* ---------- Program cards ---------- */
.program { background: var(--card); border: 1px solid var(--line-2); border-radius: var(--r); padding: 26px; border-left: 4px solid var(--brand); box-shadow: var(--shadow-sm); display: flex; flex-direction: column; }
.program--robotics { border-left-color: var(--robotics); }
.program--ai { border-left-color: var(--ai); }
.program--health { border-left-color: var(--health); }
.program--leadership { border-left-color: var(--leadership); }
.program h3 { margin-bottom: .3rem; }
.program__tag { color: var(--accent-dk); font-weight: 600; font-size: .88rem; margin-bottom: .8rem; }
.program ul { font-size: .9rem; color: var(--muted); flex: 1; margin: 0 0 1.2rem; }
.program ul li { margin-bottom: .35rem; }

/* ---------- Footer ---------- */
.site-footer { background: var(--brand-deep); color: var(--on-dark); padding-block: clamp(48px, 7vw, 80px); }
.site-footer__top { display: grid; grid-template-columns: 1.4fr repeat(4, 1fr); gap: 32px; max-width: var(--maxw); margin-inline: auto; padding-inline: 24px; }
/* .brand__word removed — replaced by .brand__logo */
.site-footer__about { color: var(--on-dark-mut); font-size: .92rem; margin-top: 1rem; max-width: 32ch; }
.fcol h4 { color: #fff; margin-bottom: 1rem; font-family: var(--font-sans); font-weight: 600; font-size: .82rem; letter-spacing: .12em; text-transform: uppercase; }
.fcol ul { list-style: none; padding: 0; margin: 0; }
.fcol li { margin-bottom: .6rem; }
.fcol a { color: var(--on-dark-mut); font-size: .94rem; }
.fcol a:hover { color: #fff; }
.site-footer__legal { max-width: var(--maxw); margin-inline: auto; padding: 28px 24px 0; margin-top: 36px; border-top: 1px solid rgba(255,255,255,.14); color: var(--on-dark-mut); font-size: .85rem; }
.site-footer__legal p { margin-bottom: .5rem; }
.site-footer__legal a { color: var(--on-dark); }
@media (max-width: 860px) { .site-footer__top { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .site-footer__top { grid-template-columns: 1fr; } }
@media (max-width: 980px) { .board-members-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 560px) { .board-members-grid { grid-template-columns: 1fr; } }

/* ---------- Motion (progressive, no-JS safe) ---------- */
.js [data-reveal] { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.js [data-reveal].is-visible { opacity: 1; transform: none; }
.js [data-reveal][data-delay="1"] { transition-delay: .08s; }
.js [data-reveal][data-delay="2"] { transition-delay: .16s; }
.js [data-reveal][data-delay="3"] { transition-delay: .24s; }

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
  .js [data-reveal] { opacity: 1; transform: none; }
}

/* ---------- Utilities ---------- */
.mt-1 { margin-top: 1rem; } .mt-2 { margin-top: 2rem; } .mb-0 { margin-bottom: 0; }
.note { font-size: .85rem; color: var(--muted); }
.section--ink .note { color: var(--on-dark-mut); }
