/* ──────────────────────────────────────────────────────────────────────────
   Elitez LMS — main.css
   Palette: elitez-institutional-navy (locked from palette.json)
   Author: Agent 4 (Stitch / UI Composer)
   Stitch DS: assets/13535604185779253715
   ────────────────────────────────────────────────────────────────────────── */

/* ── Tokens (sourced from palette.json — DO NOT hand-edit hex below) ───── */
:root {
  /* Surfaces & lines */
  --bg: #fafafa;
  --surface: #ffffff;
  --card: #ffffff;
  --card-hi: #f4f6f9;
  --border: #e5e7eb;
  --border2: #cbd2db;
  --border3: #003a70;

  /* Ink */
  --text: #0a1a2e;
  --muted: #475569;
  --muted2: #6b7785;

  /* Brand */
  --accent: #003a70;    /* Elitez navy — primary */
  --accent2: #F26522;   /* Elitez orange — accent only */
  --accent-d: #00254a;  /* Navy deep — hover state */

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(10,26,46,.08);
  --shadow-md: 0 4px 12px rgba(10,26,46,.12);
  --shadow-lg: 0 16px 40px rgba(10,26,46,.16);

  /* Type */
  --font-display: 'Source Serif 4', 'Source Serif Pro', Georgia, serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;
  --font-mono: 'IBM Plex Mono', 'JetBrains Mono', ui-monospace, monospace;

  /* Layout */
  --container-max: 1200px;
  --nav-height: 72px;
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 14px;

  /* Spacing scale */
  --s-1: 4px;
  --s-2: 8px;
  --s-3: 12px;
  --s-4: 16px;
  --s-5: 24px;
  --s-6: 32px;
  --s-7: 48px;
  --s-8: 64px;
  --s-9: 96px;

  /* Tone variants (within 6% lightness of canvas) */
  --tone-1: #f3f5f8;
  --tone-2: #eff2f6;
  --tone-3: #f0ecdf;  /* parchment warm — for grants/funded surfaces */
  --tone-4: #eef0f2;
  --tone-5: #e8eef4;

  /* Dark inversion (for telemetry / dark sections) */
  --dark-bg: #0a1a2e;
  --dark-card: #11233b;
  --dark-card-hi: #16304e;
  --dark-border: #1f3958;
  --dark-text: #f4f6f9;
  --dark-muted: #9eb0c5;

  color-scheme: light;
}

/* ── Reset ─────────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-height) + 12px);
}
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: "kern" 1, "liga" 1, "calt" 1;
  font-optical-sizing: auto;
}
img, svg { display: block; max-width: 100%; height: auto; }
button { font-family: inherit; cursor: pointer; }
a { color: var(--accent); text-decoration: none; transition: color 0.15s ease; }
a:hover { color: var(--accent2); }

/* ── Typography ────────────────────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--text);
  font-weight: 600;
  margin: 0 0 var(--s-4);
  letter-spacing: -0.01em;
  line-height: 1.2;
  font-feature-settings: "kern" 1, "liga" 1, "calt" 1, "dlig" 1;
  font-variant-numeric: lining-nums proportional-nums;
  text-wrap: balance;
}
h1 { font-size: clamp(2.2rem, 4.5vw, 3.4rem); font-weight: 700; letter-spacing: -0.022em; line-height: 1.08; }
h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); }
h3 { font-size: clamp(1.15rem, 1.6vw, 1.4rem); font-family: var(--font-body); font-weight: 600; }
h4 { font-size: 1.05rem; font-family: var(--font-body); font-weight: 600; }
p { margin: 0 0 var(--s-4); color: var(--muted); }
p strong { color: var(--text); font-weight: 600; }

code, .mono {
  font-family: var(--font-mono);
  font-size: 0.86em;
}

/* ── A11y ──────────────────────────────────────────────────────────────── */
.skip-link {
  position: absolute;
  top: -100px;
  left: 16px;
  background: var(--accent);
  color: #fff;
  padding: 10px 16px;
  border-radius: var(--radius-sm);
  font-size: 0.82rem;
  font-weight: 600;
  z-index: 999;
  transition: top 0.15s ease;
}
.skip-link:focus { top: 12px; color: #fff; }

:focus-visible {
  outline: 2px solid var(--accent2);
  outline-offset: 2px;
  border-radius: var(--radius-sm);
}

.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;
}

/* ── Layout primitives ────────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--s-5);
}

section { padding: var(--s-6) 0; }
@media (min-width: 768px)  { section { padding: var(--s-6) 0; } }
@media (min-width: 1024px) { section { padding: var(--s-7) 0; } }

main { padding-top: var(--nav-height); }

.section-intro {
  max-width: 760px;
  margin-bottom: var(--s-5);
}
.section-intro__eyebrow,
.eyebrow {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 var(--s-3);
  display: inline-block;
}
.section-intro__eyebrow::before,
.eyebrow::before {
  content: '';
  display: inline-block;
  width: 18px;
  height: 2px;
  background: var(--accent2);
  vertical-align: middle;
  margin-right: var(--s-2);
  transform: translateY(-2px);
}
.section-intro__heading { margin-bottom: var(--s-4); }
.section-intro__body { color: var(--muted); max-width: 64ch; }
.section-intro__heading::after {
  content: '';
  display: block;
  width: 32px;
  height: 2px;
  background: var(--accent2);
  margin-top: var(--s-3);
}

.section-divider { border: 0; border-top: 1px solid var(--border); margin: 0; }

/* ── Buttons ──────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  padding: 12px 22px;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  cursor: pointer;
  border: 1.5px solid transparent;
  text-decoration: none;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease, transform 0.15s ease;
  font-family: var(--font-body);
}
.btn--primary {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}
.btn--primary:hover,
.btn--primary:focus-visible {
  background: var(--accent2);
  border-color: var(--accent2);
  color: #fff;
  transform: translateY(-1px);
}
.btn--ghost {
  background: transparent;
  color: var(--accent);
  border-color: var(--border2);
}
.btn--ghost:hover,
.btn--ghost:focus-visible {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}
.btn--invert {
  background: #fff;
  color: var(--accent);
  border-color: #fff;
}
.btn--invert:hover { background: var(--accent2); color: #fff; border-color: var(--accent2); }

.btn-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--accent);
  font-weight: 600;
  font-size: 0.85rem;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color 0.15s ease, border-color 0.15s ease;
}
.btn-link:hover { color: var(--accent2); border-bottom-color: var(--accent2); }
.btn-link .chev { transition: transform 0.15s ease; }
.btn-link:hover .chev { transform: translateX(3px); }

/* ── Header / Nav ─────────────────────────────────────────────────────── */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 200;
  background: rgba(250, 250, 250, 0.96);
  backdrop-filter: saturate(140%) blur(8px);
  -webkit-backdrop-filter: saturate(140%) blur(8px);
  border-bottom: 1px solid var(--border);
}
.site-header__inner {
  height: var(--nav-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-5);
}
.brand-mark {
  display: inline-flex;
  align-items: center;
  gap: var(--s-3);
  color: var(--text);
}
.brand-mark__logo {
  height: 32px;
  width: auto;
}
.brand-mark__wordmark {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--accent);
  letter-spacing: -0.01em;
  line-height: 1;
  border-left: 1px solid var(--border);
  padding-left: var(--s-3);
  display: none;
}
@media (min-width: 540px) { .brand-mark__wordmark { display: inline; } }

.primary-nav {
  display: none;
  gap: var(--s-6);
  align-items: center;
}
@media (min-width: 920px) {
  .primary-nav { display: flex; }
}
.primary-nav__link {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  padding: 6px 0;
  border-bottom: 2px solid transparent;
  transition: color 0.15s ease, border-color 0.15s ease;
}
.primary-nav__link:hover { color: var(--accent); }
.primary-nav__link[aria-current="page"] {
  color: var(--accent);
  border-bottom-color: var(--accent2);
}

.header-cta, .header-admin { display: none; }
@media (min-width: 920px) {
  .header-cta  { display: inline-flex; }
  .header-admin { display: inline-flex; margin-right: var(--s-3); }
}

.nav-toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  border: 1px solid var(--border);
  background: transparent;
  border-radius: var(--radius-sm);
  padding: 8px;
}
@media (min-width: 920px) { .nav-toggle { display: none; } }
.nav-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--text);
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  position: fixed;
  inset: var(--nav-height) 0 auto 0;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  padding: var(--s-5);
  display: none;
  z-index: 199;
  box-shadow: var(--shadow-md);
}
.mobile-nav.is-open { display: block; }
.mobile-nav__list { list-style: none; margin: 0; padding: 0; display: grid; gap: var(--s-3); }
.mobile-nav__link {
  display: block;
  padding: var(--s-3) var(--s-4);
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text);
  text-decoration: none;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
}
.mobile-nav__link[aria-current="page"] {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--card-hi);
}
.mobile-nav__cta { margin-top: var(--s-3); }

/* ── Hero (split) ─────────────────────────────────────────────────────── */
.hero {
  padding-top: var(--s-6);
  padding-bottom: var(--s-6);
}
@media (min-width: 1024px) {
  .hero { padding-top: var(--s-7); padding-bottom: var(--s-7); }
}
.hero__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-7);
  align-items: center;
}
@media (min-width: 920px) {
  .hero__grid { grid-template-columns: 1.3fr 1fr; gap: var(--s-8); }
}
.hero__eyebrow { margin-bottom: var(--s-4); }
.hero__headline {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.2rem, 4.8vw, 3.4rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin: 0 0 var(--s-5);
}
.hero__subhead {
  font-size: 1.05rem;
  color: var(--muted);
  margin-bottom: var(--s-5);
  max-width: 60ch;
  line-height: 1.55;
}
.hero__body {
  font-size: 0.95rem;
  color: var(--muted);
  max-width: 58ch;
  margin-bottom: var(--s-6);
}
.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-3);
  margin-bottom: var(--s-6);
}
.hero__trust {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  color: var(--muted2);
  border-top: 1px solid var(--border);
  padding-top: var(--s-4);
  max-width: 60ch;
}
.hero__visual {
  position: relative;
  background: var(--card-hi);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--s-6);
  overflow: hidden;
  min-height: 320px;
}

/* Hero-visual data card — replaces photography for institutional B2B */
.hero-stack {
  display: grid;
  gap: var(--s-4);
}
.hero-stack__row {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: var(--s-3) var(--s-4);
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: var(--s-4);
  align-items: center;
}
.hero-stack__code {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  color: var(--accent);
  font-weight: 600;
  text-transform: uppercase;
}
.hero-stack__label {
  font-size: 0.88rem;
  color: var(--text);
  font-weight: 500;
}
.hero-stack__value {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--muted);
  font-variant-numeric: tabular-nums;
}

/* Grid background for hero visual frame */
.hero__visual--grid {
  background-image:
    linear-gradient(to right, rgba(0, 58, 112, 0.05) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(0, 58, 112, 0.04) 1px, transparent 1px);
  background-size: 28px 28px;
}
.hero__visual--grid > .hero-stack { position: relative; z-index: 1; }

/* Corner brackets on hero visual */
.hero__visual--brackets::before,
.hero__visual--brackets::after {
  content: '';
  position: absolute;
  width: 18px;
  height: 18px;
  border: 2px solid var(--accent2);
  z-index: 2;
  pointer-events: none;
}
.hero__visual--brackets::before {
  top: -2px; left: -2px;
  border-right: 0; border-bottom: 0;
  border-top-left-radius: var(--radius-lg);
}
.hero__visual--brackets::after {
  bottom: -2px; right: -2px;
  border-left: 0; border-top: 0;
  border-bottom-right-radius: var(--radius-lg);
}

/* ── Stat row ─────────────────────────────────────────────────────────── */
.stat-row {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.stat-row__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--s-5);
}
@media (min-width: 768px) {
  .stat-row__grid { grid-template-columns: repeat(4, 1fr); gap: var(--s-6); }
}
.stat-cell {
  padding: var(--s-5) 0;
  border-top: 2px solid var(--accent);
  position: relative;
}
.stat-cell__value {
  font-family: var(--font-mono);
  font-size: clamp(2rem, 4.6vw, 3rem);
  font-weight: 600;
  color: var(--accent);
  line-height: 1;
  margin-bottom: var(--s-3);
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums lining-nums;
}
.stat-cell__label {
  font-size: 0.88rem;
  color: var(--text);
  font-weight: 500;
  margin: 0;
  line-height: 1.45;
}
.stat-cell::before {
  position: absolute;
  top: var(--s-2);
  right: 0;
  font-family: var(--font-mono);
  font-size: 0.66rem;
  letter-spacing: 0.16em;
  color: var(--muted2);
}
.stat-cell:nth-child(1)::before { content: 'M-01'; }
.stat-cell:nth-child(2)::before { content: 'M-02'; }
.stat-cell:nth-child(3)::before { content: 'M-03'; }
.stat-cell:nth-child(4)::before { content: 'M-04'; }
.stat-cell:nth-child(2) { border-top-color: var(--accent2); }
.stat-cell:nth-child(2) .stat-cell__value { color: var(--accent2); }
.stat-cell:nth-child(3) { border-top-color: var(--accent); }
.stat-cell:nth-child(4) { border-top-color: var(--accent2); }
.stat-cell:nth-child(4) .stat-cell__value { color: var(--accent2); }

/* ── CTA band (orange closer) ─────────────────────────────────────────── */
.cta-band {
  background: var(--accent2);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 48px 48px, 48px 48px;
  pointer-events: none;
}
.cta-band > .container { position: relative; z-index: 1; }
.cta-band h2,
.cta-band .cta-band__heading { color: #fff; }
.cta-band .cta-band__body { color: rgba(255,255,255,0.92); margin: 0; max-width: 56ch; }
.cta-band .eyebrow,
.cta-band .section-intro__eyebrow { color: rgba(255,255,255,0.85); }
.cta-band .eyebrow::before,
.cta-band .section-intro__eyebrow::before { background: #fff; }
.cta-band__heading::after,
.cta-band .section-intro__heading::after { background: #fff; }
.cta-band .btn--primary {
  background: #fff;
  color: var(--accent2);
  border-color: #fff;
}
.cta-band .btn--primary:hover,
.cta-band .btn--primary:focus-visible {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}
.cta-band .btn--ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.6);
}
.cta-band .btn--ghost:hover,
.cta-band .btn--ghost:focus-visible {
  background: #fff;
  color: var(--accent2);
  border-color: #fff;
}
.cta-band__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-6);
  align-items: center;
}
@media (min-width: 920px) {
  .cta-band__inner { grid-template-columns: 1.4fr 1fr; }
}
.cta-band__heading {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin-bottom: var(--s-3);
}
.cta-band__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-3);
}
@media (min-width: 920px) {
  .cta-band__ctas { justify-content: flex-end; }
}

/* Subtle navy variant for in-page CTAs that shouldn't be loud */
.cta-band--navy {
  background: var(--accent);
}
.cta-band--navy .btn--primary {
  background: #fff;
  color: var(--accent);
  border-color: #fff;
}
.cta-band--navy .btn--primary:hover {
  background: var(--accent2);
  color: #fff;
  border-color: var(--accent2);
}

/* ── Footer ───────────────────────────────────────────────────────────── */
.site-footer {
  background: var(--accent);
  color: rgba(255, 255, 255, 0.85);
  padding: var(--s-7) 0 var(--s-5);
  margin-top: var(--s-7);
}
.site-footer a { color: rgba(255, 255, 255, 0.85); }
.site-footer a:hover { color: var(--accent2); }
.site-footer__columns {
  display: grid;
  gap: var(--s-7);
  grid-template-columns: 1fr;
  margin-bottom: var(--s-7);
}
@media (min-width: 640px) { .site-footer__columns { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .site-footer__columns { grid-template-columns: 1.4fr repeat(3, 1fr); } }
.site-footer__brand .brand-mark__logo { height: 36px; filter: brightness(0) invert(1); opacity: 0.95; }
.site-footer__brand .brand-mark__wordmark {
  color: #fff;
  border-color: rgba(255,255,255,0.2);
  display: inline;
}
.site-footer__tagline {
  margin-top: var(--s-4);
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.75);
  max-width: 32ch;
}
.site-footer__col-heading {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin: 0 0 var(--s-4);
  font-weight: 600;
}
.site-footer__list { list-style: none; padding: 0; margin: 0; display: grid; gap: var(--s-3); }
.site-footer__list a { font-size: 0.9rem; text-decoration: none; }
.site-footer__list a:hover { text-decoration: underline; }
.site-footer__contact-line {
  display: block;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: var(--s-2);
}
.site-footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: var(--s-4);
  display: grid;
  gap: var(--s-3);
  grid-template-columns: 1fr;
  align-items: center;
}
@media (min-width: 768px) {
  .site-footer__bottom { grid-template-columns: 1fr auto; }
}
.site-footer__rights {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
}
.site-footer__attribution {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}
.site-footer__attribution a { font-weight: 600; }
.site-footer__legal {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.55);
  margin: var(--s-3) 0 0 0;
  line-height: 1.5;
}

/* ── Reduced motion ──────────────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  .btn:hover { transform: none; }
}

/* ── Hero photo treatment (replaces hero-stack) ─────────────────────── */
.hero__visual--photo {
  background: var(--dark-bg);
  padding: 0;
  min-height: 0;
  aspect-ratio: 4 / 3;
  display: flex;
  align-items: stretch;
}
.hero__visual--photo .hero__visual-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: var(--radius-lg);
}

/* ── Section-split: copy on one side, visual on the other ───────────── */
.section-split {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-5);
  align-items: center;
  margin-bottom: var(--s-5);
}
@media (min-width: 920px) {
  .section-split { grid-template-columns: 1.25fr 1fr; gap: var(--s-7); margin-bottom: var(--s-6); }
  .section-split--reverse { grid-template-columns: 1fr 1.25fr; }
  .section-split--reverse .section-split__visual { order: -1; }
}
.section-split__copy .section-intro {
  margin-bottom: 0;
}
.section-intro--flush { margin-bottom: 0; }

.section-split__visual {
  margin: 0;
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--dark-bg);
  aspect-ratio: 16 / 10;
  box-shadow: var(--shadow-md);
}
.section-split__visual--portrait { aspect-ratio: 3 / 4; max-height: 420px; margin-inline: auto; }
.section-split__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ── Band with visual (AI literacy / inline CTA banded image) ───────── */
.band-with-visual { padding: var(--s-6) 0; }
@media (min-width: 1024px) { .band-with-visual { padding: var(--s-7) 0; } }
.band-with-visual__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-5);
  align-items: stretch;
  background: var(--dark-bg);
  color: #fafafa;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.band-with-visual__media {
  margin: 0;
  min-height: 220px;
  position: relative;
}
.band-with-visual__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.band-with-visual__copy {
  padding: var(--s-5);
}
.band-with-visual__copy .eyebrow { color: var(--accent2); }
.band-with-visual__copy .eyebrow::before { background: var(--accent2); }
.band-with-visual__copy .inline-cta-band__heading {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.4rem, 2.4vw, 1.8rem);
  line-height: 1.18;
  letter-spacing: -0.01em;
  color: #fafafa;
  margin: var(--s-3) 0 var(--s-3);
}
.band-with-visual__copy .inline-cta-band__body {
  color: rgba(250,250,250,0.78);
  margin-bottom: var(--s-4);
  max-width: 60ch;
}
@media (min-width: 920px) {
  .band-with-visual__grid { grid-template-columns: 1.05fr 1.25fr; gap: 0; }
  .band-with-visual__copy { padding: var(--s-6) var(--s-7); }
  .band-with-visual__media { min-height: 100%; }
}

/* ── Tighter section intros across the board ────────────────────────── */
.section-intro__heading { letter-spacing: -0.015em; }
@media (min-width: 1024px) {
  .section-intro { margin-bottom: var(--s-5); }
}
