/* ==========================================================================
   Culture Impact — global styles
   Tokens transcribed from "Culture Impact redesign" Design System v1.0
   (claude.ai/design project · July 2026)
   ========================================================================== */

:root {
  /* Color — core */
  --cobalt: #1D4FD7;      /* actions, links, emphasis */
  --navy: #15243B;        /* text, dark surfaces */
  --amber: #F0A03C;       /* highlights — sparingly, one per view */
  --paper: #FCFBF8;       /* page background */

  /* Color — extended ramp */
  --cobalt-50: #EEF2FB;   /* tinted panels */
  --cobalt-200: #C9D6F5;  /* borders, charts */
  --cobalt-400: #6E8FF0;  /* on-navy accents */
  --cobalt-700: #1638A8;  /* hover states */
  --amber-100: #FBEBD2;   /* soft highlights */
  --amber-700: #B96F13;   /* amber that passes contrast as text on light */

  /* Color — derived (opacity steps the system allows) */
  --navy-70: rgba(21, 36, 59, .7);
  --navy-65: rgba(21, 36, 59, .65);
  --navy-55: rgba(21, 36, 59, .55);
  --navy-50: rgba(21, 36, 59, .5);
  --navy-10: rgba(21, 36, 59, .1);
  --cobalt-8: rgba(29, 79, 215, .08);

  /* Type */
  --font-display: 'Sora', sans-serif;      /* headlines and numbers only, never below 16px */
  --font-body: 'Public Sans', sans-serif;  /* everything else, min 15px body */

  /* Shape — no shadows anywhere; depth comes from tinted surfaces */
  --r-badge: 6px;
  --r-btn: 8px;
  --r-card: 12px;

  /* Layout */
  --container: 1200px;
  --gutter: clamp(20px, 5vw, 56px);
  --section-pad: clamp(48px, 7vw, 76px);
}

/* --------------------------------------------------------------------------
   Base
   -------------------------------------------------------------------------- */

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; animation: none !important; }
}

body {
  margin: 0;
  background: var(--paper);
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.6;
  color: var(--navy);
  -webkit-font-smoothing: antialiased;
}

a { color: var(--cobalt); text-decoration: none; }
a:hover { color: var(--cobalt-700); }

img, svg { max-width: 100%; display: block; }

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

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--navy);
  color: #fff;
  padding: 10px 16px;
  border-radius: 0 0 var(--r-btn) 0;
  z-index: 100;
}
.skip-link:focus { left: 0; color: #fff; }

.container {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

/* --------------------------------------------------------------------------
   Shared type components
   -------------------------------------------------------------------------- */

.eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--cobalt);
  margin: 0 0 14px;
}
.eyebrow--on-dark { color: var(--cobalt-400); }

.section-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(28px, 3.6vw, 36px);
  line-height: 1.12;
  letter-spacing: -0.015em;
  text-wrap: balance;
  margin: 0;
}

/* --------------------------------------------------------------------------
   Buttons, badges
   -------------------------------------------------------------------------- */

.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  padding: 15px 26px;
  border-radius: var(--r-btn);
  border: 0;
  cursor: pointer;
  text-align: center;
  transition: background-color .15s ease-out, border-color .15s ease-out, color .15s ease-out;
}

.btn--primary { background: var(--cobalt); color: #fff; }
.btn--primary:hover { background: var(--cobalt-700); color: #fff; }

.btn--amber { background: var(--amber); color: var(--navy); font-weight: 700; }
.btn--amber:hover { background: #E2902C; color: var(--navy); }

.btn--ghost-light {
  background: transparent;
  border: 1.5px solid rgba(255, 255, 255, .45);
  color: #fff;
  padding: 14px 26px;
}
.btn--ghost-light:hover { background: rgba(255, 255, 255, .1); color: #fff; }

.btn--small { font-size: 13.5px; padding: 9px 18px; }

.text-link {
  font-weight: 600;
  font-size: 15px;
  color: var(--cobalt);
}
.text-link:hover { color: var(--cobalt-700); }

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--cobalt);
  background: var(--cobalt-8);
  padding: 7px 13px;
  border-radius: var(--r-badge);
}

/* --------------------------------------------------------------------------
   Logo
   -------------------------------------------------------------------------- */

.logo {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--navy);
}
.logo:hover { color: var(--navy); }

.logo__bars {
  display: flex;
  align-items: flex-end;
  gap: 2.5px;
  height: 20px;
  flex: none;
}
.logo__bars span { width: 5px; border-radius: 1.5px; background: var(--cobalt); }
.logo__bars span:nth-child(1) { height: 9px; }
.logo__bars span:nth-child(2) { height: 14px; }
.logo__bars span:nth-child(3) { height: 20px; background: var(--amber); }

.logo__word {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15.5px;
  letter-spacing: .015em;
}

/* Reversed lockup: cobalt lightens to cobalt-400 on navy */
.logo--reversed { color: #fff; gap: 10px; }
.logo--reversed:hover { color: #fff; }
.logo--reversed .logo__bars { height: 18px; gap: 2.5px; }
.logo--reversed .logo__bars span { width: 4.5px; background: var(--cobalt-400); }
.logo--reversed .logo__bars span:nth-child(1) { height: 8px; }
.logo--reversed .logo__bars span:nth-child(2) { height: 13px; }
.logo--reversed .logo__bars span:nth-child(3) { height: 18px; background: var(--amber); }
.logo--reversed .logo__word { font-size: 14px; }

/* --------------------------------------------------------------------------
   Announcement bar
   -------------------------------------------------------------------------- */

.announcement {
  background: var(--navy);
  color: rgba(255, 255, 255, .85);
  font-size: 13px;
  text-align: center;
  padding: 9px 20px;
}
.announcement a { color: var(--amber); font-weight: 600; }
.announcement a:hover { color: var(--amber-100); }
/* Unlinked CTA text while RegFox destination is on hold */
.announcement__cta { color: var(--amber); font-weight: 600; }

/* --------------------------------------------------------------------------
   Header / nav
   -------------------------------------------------------------------------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: var(--paper);
  border-bottom: 1px solid var(--navy-10);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  max-width: var(--container);
  margin-inline: auto;
  padding: 18px var(--gutter);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  font-size: 13.5px;
  font-weight: 600;
}
.site-nav a { color: var(--navy); }
.site-nav a:hover { color: var(--cobalt); }
.site-nav .btn { color: #fff; }

/* Dropdowns (desktop) */
.nav-item { position: relative; }
.nav-item > a { display: inline-flex; align-items: center; gap: 5px; }
.nav-caret { font-size: 9px; opacity: .55; }

.dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 12px);
  left: -20px;
  background: #fff;
  border: 1px solid var(--navy-10);
  border-radius: var(--r-card);
  padding: 18px 22px;
  min-width: 200px;
  z-index: 20;
}
/* invisible bridge so hover survives the gap between trigger and panel */
.dropdown::before { content: ''; position: absolute; top: -14px; left: 0; right: 0; height: 14px; }

.nav-item:hover .dropdown,
.nav-item:focus-within .dropdown { display: block; }

.dropdown a { display: block; padding: 6px 0; font-weight: 500; font-size: 13.5px; white-space: nowrap; }
.dropdown a:hover { color: var(--cobalt); }

.dropdown__group-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--navy-50);
  margin: 0 0 6px;
}
.dropdown__group-label--spaced { margin-top: 16px; }

.dropdown--programs {
  grid-template-columns: auto auto;
  gap: 0 36px;
  padding: 22px 26px;
}
.nav-item:hover .dropdown--programs,
.nav-item:focus-within .dropdown--programs { display: grid; }

.badge-flag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--navy);
  background: var(--amber-100);
  padding: 2px 7px;
  border-radius: var(--r-badge);
  margin-left: 4px;
  vertical-align: 1px;
}

.nav-toggle {
  display: none;
  background: none;
  border: 0;
  padding: 8px;
  margin: -8px;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  border-radius: 1px;
  background: var(--navy);
  margin: 5px 0;
  transition: transform .2s ease-out, opacity .2s ease-out;
}

@media (max-width: 840px) {
  .nav-toggle { display: block; }

  /* Mobile menu shows flat top-level links; lane wayfinding happens on /programs/ */
  .dropdown { display: none !important; }
  .nav-caret { display: none; }
  .nav-item > a { display: block; }

  .site-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--paper);
    border-bottom: 1px solid var(--navy-10);
    padding: 8px var(--gutter) 20px;
    font-size: 15px;
  }
  .site-nav a { padding: 12px 0; }
  .site-nav .btn { margin-top: 10px; text-align: center; }

  .nav-open .site-nav { display: flex; }
  .nav-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
  .nav-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
}

/* --------------------------------------------------------------------------
   Hero
   -------------------------------------------------------------------------- */

.hero {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: clamp(32px, 4.5vw, 56px);
  align-items: center;
  padding-block: clamp(48px, 6vw, 76px) clamp(40px, 5vw, 60px);
}

.hero .badge { margin-bottom: 20px; }

.hero__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(34px, 4.4vw, 52px);
  line-height: 1.08;
  letter-spacing: -0.02em;
  text-wrap: balance;
  margin: 0;
}

.hero__sub {
  font-size: 17px;
  line-height: 1.6;
  color: var(--navy-70);
  margin: 20px 0 0;
  max-width: 46ch;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin-top: 32px;
}

.hero__figure {
  border-radius: 14px;
  background: var(--cobalt-50);
  position: relative;
  overflow: hidden;
}
.hero__figure img { display: block; width: 100%; height: auto; }

/* Decorative circles bleeding off panel edges (illustration backdrop spec) */
.deco-circle { position: absolute; border-radius: 50%; pointer-events: none; }

@media (max-width: 840px) {
  .hero { grid-template-columns: 1fr; }
  .hero__figure { order: 2; max-width: 480px; }
}

/* --------------------------------------------------------------------------
   Trusted by
   -------------------------------------------------------------------------- */

.trusted {
  display: flex;
  align-items: center;
  gap: 24px;
  padding-bottom: clamp(44px, 5.5vw, 64px);
}

.trusted__label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .08em;
  color: var(--navy-50);
  flex: none;
}

.trusted__logos {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px 32px;
  flex: 1;
  flex-wrap: wrap;
}

.client-logo {
  height: 34px;
  width: auto;
  /* even out mixed brand colors on the warm-white page */
  filter: grayscale(1);
  opacity: .6;
  mix-blend-mode: multiply;
}

@media (max-width: 640px) {
  .trusted { flex-direction: column; align-items: flex-start; gap: 18px; }
  .trusted__logos { justify-content: flex-start; }
  .client-logo { height: 26px; }
}

/* --------------------------------------------------------------------------
   Hidden costs (dark stats band)
   -------------------------------------------------------------------------- */

.costs { background: var(--navy); color: #fff; }

.costs__inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(36px, 5vw, 64px);
  align-items: center;
  padding-block: clamp(52px, 6.5vw, 72px);
}

.costs__body { font-size: 15.5px; line-height: 1.65; color: rgba(255, 255, 255, .7); margin: 18px 0 0; }
.costs__sources { font-size: 12.5px; color: rgba(255, 255, 255, .45); margin: 22px 0 0; }

.costs__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.stat-card {
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: var(--r-card);
  padding: 24px;
}
.stat-card__value {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 30px;
  color: var(--amber);
}
.stat-card__label {
  font-size: 13px;
  color: rgba(255, 255, 255, .65);
  margin-top: 6px;
  line-height: 1.5;
}

@media (max-width: 840px) {
  .costs__inner { grid-template-columns: 1fr; }
}
@media (max-width: 420px) {
  .costs__grid { grid-template-columns: 1fr; }
}

/* --------------------------------------------------------------------------
   Programs
   -------------------------------------------------------------------------- */

.programs { padding-block: var(--section-pad); }

.programs__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 36px;
}
.programs__head .section-title { max-width: 20ch; }
.programs__head .text-link { flex: none; padding-bottom: 6px; font-size: 14.5px; }

.programs__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.program-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--navy-10);
  border-radius: var(--r-card);
  padding: 26px;
  color: var(--navy);
  transition: border-color .15s ease-out;
}
.program-card:hover { border-color: var(--cobalt); color: var(--navy); }

.program-card__tag {
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--cobalt);
  margin-bottom: 12px;
}
.program-card__tag--amber { color: var(--amber-700); }

.program-card__name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 17.5px;
  letter-spacing: -0.01em;
  line-height: 1.3;
  margin: 0;
}

.program-card__desc {
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--navy-65);
  margin: 9px 0 0;
  flex: 1;
}

.program-card__cta {
  color: var(--cobalt);
  font-weight: 600;
  font-size: 13.5px;
  margin-top: 16px;
}

@media (max-width: 980px) {
  .programs__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .programs__head { flex-direction: column; align-items: flex-start; gap: 12px; }
  .programs__grid { grid-template-columns: 1fr; }
}

/* --------------------------------------------------------------------------
   Flagship spotlight (Conversational Management)
   -------------------------------------------------------------------------- */

.spotlight { padding-bottom: var(--section-pad); }

.spotlight__panel {
  background: var(--navy);
  color: #fff;
  border-radius: 16px;
  padding: clamp(30px, 4.5vw, 56px);
  position: relative;
  overflow: hidden;
}

.spotlight__head {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: clamp(28px, 4vw, 56px);
  align-items: start;
  margin-bottom: clamp(28px, 4vw, 44px);
}

.spotlight__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(26px, 3.4vw, 34px);
  line-height: 1.15;
  letter-spacing: -0.015em;
  color: #fff;
  margin: 0;
}

.spotlight__sub {
  font-size: 15.5px;
  line-height: 1.6;
  color: rgba(255, 255, 255, .7);
  margin: 14px 0 0;
  max-width: 52ch;
}

.spotlight__link { display: inline-block; margin-top: 18px; color: var(--cobalt-400); }
.spotlight__link:hover { color: var(--cobalt-200); }

.spotlight__quote {
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: var(--r-card);
  padding: 24px 26px;
  margin: 0;
}
.spotlight__quote blockquote {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 22px;
  line-height: 1.4;
  letter-spacing: -0.005em;
  margin: 0;
}
.spotlight__quote figcaption {
  margin-top: 14px;
  font-size: 12.5px;
  color: rgba(255, 255, 255, .6);
}

.cm-modules {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  list-style: none;
  margin: 0;
  padding: 0;
  counter-reset: none;
}

.cm-module {
  position: relative;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: var(--r-card);
  padding: 20px 22px;
}
.cm-module__id {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  color: var(--amber);
}
.cm-module h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 17px;
  letter-spacing: -0.01em;
  color: #fff;
  margin: 10px 0 0;
}
.cm-module p {
  font-size: 13px;
  line-height: 1.55;
  color: rgba(255, 255, 255, .65);
  margin: 7px 0 0;
}
/* journey arrows between modules */
.cm-module:not(:last-child)::after {
  content: '\2192';
  position: absolute;
  right: -19px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--cobalt-400);
  font-size: 15px;
}

@media (max-width: 980px) {
  .cm-modules { grid-template-columns: 1fr 1fr; }
  .cm-module:not(:last-child)::after { display: none; }
}
@media (max-width: 840px) {
  .spotlight__head { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .cm-modules { grid-template-columns: 1fr; }
}

/* --------------------------------------------------------------------------
   How it works
   -------------------------------------------------------------------------- */

.how { background: var(--cobalt-50); }

.how__inner { padding-block: clamp(52px, 6.5vw, 72px); }
.how__inner .section-title { max-width: 24ch; }

.how__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 40px;
}

/* Four-card variant — 2x2, so the fourth card doesn't orphan on its own row.
   Declared above the 840px stack rule so that rule still wins on small screens. */
.how__grid--2up { grid-template-columns: repeat(2, 1fr); }

.step-card {
  background: #fff;
  border-radius: var(--r-card);
  padding: 28px;
}
.step-card__num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  color: var(--cobalt);
  margin-bottom: 14px;
}
.step-card__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 18px;
  letter-spacing: -0.01em;
  margin: 0;
}
.step-card__body {
  font-size: 14px;
  line-height: 1.6;
  color: var(--navy-65);
  margin: 10px 0 0;
}

@media (max-width: 840px) {
  .how__grid { grid-template-columns: 1fr; }
}

/* --------------------------------------------------------------------------
   Testimonials
   -------------------------------------------------------------------------- */

.testimonials { padding-block: var(--section-pad); }

.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 36px;
}

.quote-card {
  display: flex;
  flex-direction: column;
  background: var(--cobalt-50);
  border-radius: var(--r-card);
  padding: 26px 28px;
}
.quote-card blockquote {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: -0.005em;
  margin: 0;
  flex: 1;
}
.quote-card figcaption {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
}
.quote-card__avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  flex: none;
  background: repeating-linear-gradient(45deg, rgba(21, 36, 59, .12) 0 5px, transparent 5px 10px);
}
.quote-card__name { font-weight: 600; font-size: 13px; }
.quote-card__role { font-size: 12px; color: var(--navy-55); }

@media (max-width: 840px) {
  .testimonials__grid { grid-template-columns: 1fr; }
}

/* --------------------------------------------------------------------------
   CTA band
   -------------------------------------------------------------------------- */

.cta { padding-bottom: clamp(56px, 7vw, 80px); }

.cta__panel {
  background: var(--cobalt);
  border-radius: 16px;
  padding: clamp(32px, 5vw, 60px);
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: clamp(28px, 4vw, 48px);
  align-items: center;
  position: relative;
  overflow: hidden;
}
.cta__panel .deco-circle--amber { right: -50px; top: -50px; width: 220px; height: 220px; background: var(--amber); opacity: .2; }
.cta__panel .deco-circle--white { right: 120px; bottom: -80px; width: 180px; height: 180px; background: #fff; opacity: .08; }

.cta__copy { position: relative; }
.cta__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(26px, 3.4vw, 34px);
  line-height: 1.15;
  letter-spacing: -0.015em;
  color: #fff;
  text-wrap: balance;
  margin: 0;
}
.cta__sub {
  font-size: 15.5px;
  line-height: 1.6;
  color: rgba(255, 255, 255, .8);
  margin: 14px 0 0;
  max-width: 48ch;
}

.cta__actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
}
.cta__phone {
  font-size: 12.5px;
  color: rgba(255, 255, 255, .6);
  text-align: center;
  margin: 4px 0 0;
}
.cta__phone a { color: rgba(255, 255, 255, .8); font-weight: 600; }
.cta__phone a:hover { color: #fff; }

@media (max-width: 840px) {
  .cta__panel { grid-template-columns: 1fr; }
}

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */

.site-footer { background: var(--navy); color: #fff; }

.site-footer__inner { padding-block: clamp(40px, 5vw, 56px); }

.site-footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
}

.site-footer__mission {
  font-size: 13.5px;
  line-height: 1.6;
  color: rgba(255, 255, 255, .6);
  margin: 14px 0 0;
  max-width: 34ch;
}

.footer-col__title {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .45);
  margin: 0 0 14px;
}

.footer-col__links {
  display: flex;
  flex-direction: column;
  gap: 9px;
  font-size: 13.5px;
}
.footer-col__links a,
.footer-col__links span { color: rgba(255, 255, 255, .75); }
.footer-col__links a:hover { color: #fff; }

.site-footer__legal {
  border-top: 1px solid rgba(255, 255, 255, .12);
  margin-top: 44px;
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 12px;
  color: rgba(255, 255, 255, .4);
}

@media (max-width: 980px) {
  .site-footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .site-footer__grid { grid-template-columns: 1fr; gap: 28px; }
}

/* --------------------------------------------------------------------------
   Inner pages — shared components
   -------------------------------------------------------------------------- */

.breadcrumbs { font-size: 12.5px; color: var(--navy-55); padding-top: 28px; }
.breadcrumbs a { color: var(--navy-55); }
.breadcrumbs a:hover { color: var(--cobalt); }

.page-hero { padding-block: clamp(36px, 4.5vw, 56px) clamp(28px, 4vw, 44px); }
.page-hero__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(30px, 3.8vw, 44px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  text-wrap: balance;
  margin: 0;
  max-width: 24ch;
}
.page-hero__sub { font-size: 17px; line-height: 1.6; color: var(--navy-70); margin: 18px 0 0; max-width: 58ch; }
.page-hero .badge { margin-bottom: 18px; }
.page-hero__actions { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; margin-top: 28px; }

/* Hero video (CM flagship only) — mobile-first: stacked below the copy, with
   the split layout added back at >=1180px. See the note in the CM page markup.
   The card is a poster that opens a lightbox; nothing plays inline. */
.page-hero__video { margin: 32px 0 0; max-width: 560px; }
.page-hero__video-link {
  display: block;
  border-radius: 14px;
  overflow: hidden;
  background: var(--navy);
  transition: transform .18s ease;
}
.page-hero__video-link img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
}
.page-hero__video-link:hover { transform: translateY(-2px); }
.page-hero__video-link:focus-visible {
  outline: 3px solid var(--cobalt);
  outline-offset: 3px;
}
.page-hero__video-cap {
  font-size: 13px;
  font-weight: 600;
  color: var(--navy-55);
  margin-top: 10px;
}

/* Video lightbox — sized to fill most of the viewport so the video's on-screen
   dashboards are legible without anyone hunting for the fullscreen control. */
.video-modal {
  width: min(94vw, 1500px);
  max-width: none;
  max-height: 94vh;
  padding: 0;
  border: 0;
  background: transparent;
  overflow: visible;
}
.video-modal::backdrop { background: rgba(10, 20, 40, .9); }
.video-modal video {
  display: block;
  width: 100%;
  max-height: 88vh;
  aspect-ratio: 16 / 9;
  border-radius: 14px;
  background: #000;
}
.video-modal__close {
  position: absolute;
  top: -44px;
  right: 0;
  width: 36px;
  height: 36px;
  line-height: 1;
  font-size: 28px;
  color: #fff;
  background: transparent;
  border: 0;
  cursor: pointer;
  border-radius: 50%;
}
.video-modal__close:hover { background: rgba(255, 255, 255, .14); }
.video-modal__close:focus-visible { outline: 3px solid #fff; outline-offset: 2px; }

@media (max-width: 700px) {
  .video-modal { width: 94vw; }
  .video-modal__close { top: -40px; }
}

@media (min-width: 1180px) {
  .page-hero--split {
    display: grid;
    grid-template-columns: 1.6fr 1fr;
    gap: clamp(28px, 3vw, 44px);
    align-items: center;
  }
  .page-hero--split .page-hero__video { margin: 0; max-width: none; }
}

.section { padding-block: clamp(36px, 4.5vw, 56px); }
.section--pad-bottom { padding-block: 0 var(--section-pad); }
.band { background: var(--cobalt-50); }
.band--navy { background: var(--navy); color: #fff; }

.split { display: grid; grid-template-columns: 1.15fr 1fr; gap: clamp(28px, 4vw, 56px); align-items: start; }
@media (max-width: 840px) { .split { grid-template-columns: 1fr; } }

.prose { max-width: 68ch; }
.prose p { font-size: 16px; line-height: 1.7; color: var(--navy-70); margin: 0 0 18px; }
.prose strong { color: var(--navy); }

/* Format at a glance */
.spec-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 20px 28px;
  background: var(--cobalt-50);
  border-radius: var(--r-card);
  padding: 26px 30px;
}
.spec__label { font-size: 11px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--navy-50); margin: 0 0 5px; }
.spec__value { font-family: var(--font-display); font-weight: 600; font-size: 16px; letter-spacing: -0.01em; }

/* Checked feature list */
.check-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 12px; }
.check-list li { position: relative; padding-left: 26px; font-size: 15px; line-height: 1.55; color: var(--navy-70); }
.check-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 9px;
  height: 9px;
  border-radius: 3px;
  background: var(--cobalt);
}
.check-list li strong { color: var(--navy); }
.band--navy .check-list li { color: rgba(255,255,255,.75); }
.band--navy .check-list li::before { background: var(--amber); }

/* Numbered criteria blocks (CPEC) */
.num-item { display: grid; grid-template-columns: 44px 1fr; gap: 16px; align-items: start; }
.num-item__n { font-family: var(--font-display); font-weight: 700; font-size: 22px; color: var(--cobalt); line-height: 1.2; }
.num-item h3 { font-family: var(--font-display); font-weight: 600; font-size: 16.5px; letter-spacing: -0.01em; margin: 0 0 6px; }
.num-item p { font-size: 14px; line-height: 1.6; color: var(--navy-65); margin: 0; }

/* Stat panel (design system §04, navy variant) */
.stat-panel { background: var(--navy); color: #fff; border-radius: var(--r-card); padding: 24px; }
.stat-panel__value { font-family: var(--font-display); font-weight: 700; font-size: 30px; color: var(--amber); }
.stat-panel__label { font-size: 13px; color: rgba(255,255,255,.65); margin-top: 5px; line-height: 1.5; }
.stat-panel__source { border-top: 1px solid rgba(255,255,255,.15); margin-top: 16px; padding-top: 12px; font-size: 12px; color: var(--cobalt-400); font-weight: 600; }
.stat-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 14px; }

/* Team */
.team-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 16px; }
.team-card { background: #fff; border: 1px solid var(--navy-10); border-radius: var(--r-card); padding: 24px; }
.team-card__avatar {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--cobalt-50); color: var(--cobalt);
  font-family: var(--font-display); font-weight: 700; font-size: 18px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 14px;
}
.team-card__name { font-family: var(--font-display); font-weight: 600; font-size: 17px; letter-spacing: -0.01em; margin: 0; }
.team-card__role { font-size: 11px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--cobalt); margin: 5px 0 10px; }
.team-card__bio { font-size: 13.5px; line-height: 1.6; color: var(--navy-65); margin: 0; }

/* Story milestones */
.milestone { display: grid; grid-template-columns: 96px 1fr; gap: 22px; padding: 22px 0; border-top: 1px solid var(--navy-10); }
.milestone:first-of-type { border-top: 0; }
.milestone__year { font-family: var(--font-display); font-weight: 700; font-size: 20px; color: var(--cobalt); }
.milestone p { font-size: 15.5px; line-height: 1.65; color: var(--navy-70); margin: 0; }
.milestone p strong { color: var(--navy); }
@media (max-width: 560px) { .milestone { grid-template-columns: 1fr; gap: 6px; } }

/* Forms */
.form-grid { display: grid; gap: 14px; }
.field label { display: block; font-size: 13px; font-weight: 600; margin-bottom: 6px; }
.field input, .field textarea, .field select {
  width: 100%;
  box-sizing: border-box;
  border: 1.5px solid rgba(21, 36, 59, .2);
  border-radius: var(--r-btn);
  padding: 12px 14px;
  font-family: var(--font-body);
  font-size: 14.5px;
  color: var(--navy);
  background: #fff;
}
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--cobalt); }
.form-note { font-size: 12.5px; color: var(--navy-55); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 560px) { .form-row { grid-template-columns: 1fr; } }

/* Inline capture panel (white paper / guide) */
.capture {
  background: var(--navy);
  color: #fff;
  border-radius: 16px;
  padding: clamp(28px, 4vw, 44px);
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: clamp(24px, 4vw, 48px);
  align-items: center;
}
.capture h2 { font-family: var(--font-display); font-weight: 700; font-size: clamp(22px, 2.6vw, 28px); letter-spacing: -0.015em; line-height: 1.2; color: #fff; margin: 0; }
.capture p { font-size: 14.5px; line-height: 1.6; color: rgba(255,255,255,.7); margin: 12px 0 0; }
.capture__form { display: flex; gap: 10px; }
.capture__form input {
  flex: 1;
  border: 1.5px solid rgba(255,255,255,.3);
  background: rgba(255,255,255,.08);
  color: #fff;
  border-radius: var(--r-btn);
  padding: 12px 14px;
  font-family: var(--font-body);
  font-size: 14px;
}
.capture__form input::placeholder { color: rgba(255,255,255,.5); }
.capture__note { font-size: 12px; color: rgba(255,255,255,.5); margin-top: 10px; }
@media (max-width: 840px) { .capture { grid-template-columns: 1fr; } }

/* Schedule rows */
.schedule { border-top: 1px solid var(--navy-10); }
.schedule__row { display: flex; align-items: center; justify-content: space-between; gap: 18px; padding: 18px 0; border-bottom: 1px solid var(--navy-10); flex-wrap: wrap; }
.schedule__date { font-family: var(--font-display); font-weight: 600; font-size: 16.5px; letter-spacing: -0.01em; }
.schedule__time { font-size: 13.5px; color: var(--navy-55); }

/* Lane heads on the programs hub */
.lane { padding-top: clamp(30px, 4vw, 44px); }
.lane__desc { font-size: 15px; color: var(--navy-65); margin: 6px 0 20px; max-width: 62ch; }

/* Footer utility row */
.site-footer__utility {
  border-top: 1px solid rgba(255,255,255,.12);
  margin-top: 36px;
  padding-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 26px;
  font-size: 12.5px;
}
.site-footer__utility a { color: rgba(255,255,255,.55); }
.site-footer__utility a:hover { color: #fff; }
.site-footer__legal { border-top: 0; margin-top: 18px; padding-top: 0; }

/* Empty state (insights) */
.empty-state {
  background: var(--cobalt-50);
  border-radius: 16px;
  padding: clamp(36px, 5vw, 60px);
  text-align: center;
}
.empty-state h1, .empty-state h2 { font-family: var(--font-display); font-weight: 700; font-size: clamp(22px, 2.6vw, 28px); letter-spacing: -0.015em; margin: 0 0 10px; }
.empty-state p { font-size: 15px; line-height: 1.6; color: var(--navy-65); max-width: 52ch; margin: 0 auto 22px; }

/* Light variant of the CM module strip (flagship page, on cobalt-50) */
.cm-modules--light .cm-module { background: #fff; border-color: var(--navy-10); }
.cm-modules--light .cm-module__id { color: var(--amber-700); }
.cm-modules--light .cm-module h3 { color: var(--navy); }
.cm-modules--light .cm-module p { color: var(--navy-65); }
.cm-modules--light .cm-module strong { color: var(--navy); font-weight: 600; }

/* --------------------------------------------------------------------------
   Flagship CM page — program-proof components
   Ported from marketing/cm-2point0-revamp.html + cm-ai-adoption-uvp.html,
   scaled from print (8.5x11 sheet) to web. Same tokens, no new palette.
   -------------------------------------------------------------------------- */

/* Definition strapline — sits above the H1 so a reader who reads nothing
   else still knows the category and the mechanism. */
.strapline {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(15px, 1.7vw, 18px);
  letter-spacing: -0.01em;
  color: var(--cobalt);
  margin: 0 0 16px;
}

/* Proof bar — the credibility numbers, pulled up under the hero */
.proof-bar {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 18px 32px;
  border-top: 1px solid var(--navy-10);
  border-bottom: 1px solid var(--navy-10);
  padding: 24px 0;
}
.proof-bar__num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(26px, 3vw, 32px);
  line-height: 1;
  color: var(--cobalt);
}
.proof-bar__label { font-size: 13.5px; line-height: 1.5; color: var(--navy-65); margin: 8px 0 0; }

/* Numbered argument chain (the "why now" load angle) */
.chain { list-style: none; margin: 0; padding: 0; counter-reset: beat; }
.chain li {
  position: relative;
  counter-increment: beat;
  padding-left: 52px;
  padding-bottom: 22px;
  font-size: 15.5px;
  line-height: 1.6;
  color: rgba(255, 255, 255, .72);
}
.chain li::before {
  content: counter(beat);
  position: absolute;
  left: 0;
  top: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .18);
  color: var(--amber);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
}
/* connecting rule between beats */
.chain li::after {
  content: '';
  position: absolute;
  left: 16px;
  top: 36px;
  bottom: 8px;
  width: 1px;
  background: rgba(255, 255, 255, .14);
}
.chain li:last-child { padding-bottom: 0; }
.chain li:last-child::after { display: none; }
.chain li strong { color: #fff; font-weight: 600; }

/* Program arc — the week-by-week picture */
.arc {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 16px;
  margin-top: 36px;
}
.arc__step {
  position: relative;
  background: #fff;
  border: 1px solid var(--navy-10);
  border-radius: var(--r-card);
  padding: 22px 24px;
}
.arc__step:not(:last-child)::after {
  content: '\2192';
  position: absolute;
  right: -13px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--cobalt-200);
  font-size: 17px;
  font-weight: 700;
  z-index: 1;
}
.arc__label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--amber-700);
  margin: 0 0 9px;
}
.arc__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 16.5px;
  letter-spacing: -0.01em;
  margin: 0;
}
.arc__body { font-size: 13.5px; line-height: 1.6; color: var(--navy-65); margin: 9px 0 0; }
@media (max-width: 900px) {
  .arc__step:not(:last-child)::after { display: none; }
}

/* --- Dashboard views (learner + sponsor) --- */
.dash-view {
  background: #fff;
  border: 1px solid var(--navy-10);
  border-radius: var(--r-card);
  padding: 26px 28px;
}
.dash-view + .dash-view { margin-top: 16px; }
.dash-view__title {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 16.5px;
  letter-spacing: -0.01em;
  margin: 0 0 20px;
}
.dash-view__tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--cobalt);
  background: var(--cobalt-8);
  border-radius: var(--r-badge);
  padding: 5px 10px;
}
.dash-view__tag--amber { color: var(--amber-700); background: var(--amber-100); }

.learner-grid { display: grid; grid-template-columns: 300px 1fr; gap: 32px; align-items: center; }
.radar-col { display: flex; flex-direction: column; align-items: center; }
.radar { width: 100%; max-width: 280px; overflow: visible; }
.radar-score { text-align: center; margin-top: 14px; }
.radar-score__big { font-family: var(--font-display); font-weight: 700; font-size: 24px; color: var(--navy); display: block; }
.radar-score__band { font-size: 12.5px; color: var(--navy-55); }
.radar-legend { display: flex; gap: 18px; margin-top: 12px; font-size: 11.5px; color: var(--navy-55); }
.radar-legend span { display: inline-flex; align-items: center; gap: 6px; }
.radar-legend i { width: 14px; height: 0; border-top: 2.5px solid var(--cobalt); display: inline-block; }
.radar-legend .is-prev i { border-top: 2.5px dashed var(--navy-50); }

/* min-width:0 lets this grid column shrink rather than force overflow */
.skill-list { min-width: 0; }
.skill-list__title {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--navy-55);
  margin: 0 0 14px;
}
.skill-list__title span { text-transform: none; letter-spacing: 0; font-weight: 400; }
.skill {
  display: grid;
  grid-template-columns: 28px 1fr 72px 78px;
  align-items: center;
  gap: 14px;
  padding: 10px 0;
  border-top: 1px solid var(--navy-10);
}
.skill:first-of-type { border-top: 0; }
.skill__badge {
  width: 26px;
  height: 26px;
  border-radius: var(--r-badge);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 12.5px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.skill__badge--3 { background: var(--cobalt); color: #fff; }
.skill__badge--2 { background: var(--cobalt-50); color: var(--cobalt); }
.skill__name { font-size: 14px; color: var(--navy); }
.skill__spark { width: 72px; height: 24px; }
.skill__trend { font-size: 12px; font-weight: 600; text-align: right; }
.skill__trend--up { color: var(--cobalt); }
.skill__trend--down { color: var(--amber-700); }

.kpi-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 14px; }
.kpi { background: var(--cobalt-50); border-radius: var(--r-card); padding: 18px 20px; }
.kpi__label { font-size: 11px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--navy-50); margin: 0 0 8px; }
.kpi__value { font-family: var(--font-display); font-weight: 700; font-size: 24px; line-height: 1; color: var(--navy); margin: 0; }
.kpi__hint { font-size: 12px; color: var(--navy-55); margin: 8px 0 0; }
.eng-bar { display: flex; gap: 3px; height: 10px; margin: 4px 0 0; }
.eng-bar span { border-radius: 2px; }

.sponsor-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 28px; margin-top: 22px; }
.dash-label { font-size: 11px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--navy-50); margin: 0 0 12px; }
.dash-chart { width: 100%; height: auto; }

.cohort { border-top: 1px solid var(--navy-10); padding: 14px 0; }
.cohort:first-of-type { border-top: 0; padding-top: 0; }
.cohort__top { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; }
.cohort__name { font-family: var(--font-display); font-weight: 600; font-size: 15px; }
.cohort__level { font-size: 11px; font-weight: 600; letter-spacing: .06em; color: var(--cobalt); }
.cohort__meta { font-size: 12.5px; color: var(--navy-55); margin: 8px 0 0; }
.cohort .eng-bar { margin-top: 10px; }

.dash-note { font-size: 13px; line-height: 1.6; color: var(--navy-55); margin: 18px 0 0; max-width: 76ch; }

@media (max-width: 900px) {
  .learner-grid, .sponsor-grid { grid-template-columns: 1fr; gap: 26px; }
  .skill { grid-template-columns: 26px 1fr 60px 70px; gap: 10px; }
}

/* --- Evidence cards ("why it works") --- */
.evidence-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
  margin-top: 32px;
}
.evidence {
  background: #fff;
  border: 1px solid var(--navy-10);
  border-radius: var(--r-card);
  padding: 24px;
  display: flex;
  flex-direction: column;
}
.evidence__tag {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 13px;
  color: var(--cobalt);
  margin: 0 0 10px;
}
.evidence__claim { font-size: 14.5px; line-height: 1.6; color: var(--navy-70); margin: 0; flex: 1; }
.evidence__source {
  font-size: 11.5px;
  color: var(--navy-50);
  margin: 16px 0 0;
  padding-top: 12px;
  border-top: 1px solid var(--navy-10);
}
.evidence-footnote { font-size: 13px; color: var(--navy-55); margin: 20px 0 0; }

/* Technology partner credit — text only, deliberately not co-branded */
.partner-credit {
  background: var(--cobalt-50);
  border-radius: var(--r-card);
  padding: 22px 26px;
  margin-top: 24px;
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--navy-70);
}
.partner-credit strong { color: var(--navy); font-weight: 600; }

/* Callout — a single load-bearing point that needs its own air */
.callout {
  border-left: 3px solid var(--cobalt);
  background: var(--cobalt-50);
  border-radius: 0 var(--r-card) var(--r-card) 0;
  padding: 26px 30px;
}
.callout__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(19px, 2.2vw, 23px);
  letter-spacing: -0.015em;
  line-height: 1.25;
  margin: 0 0 12px;
}
.callout p { font-size: 15px; line-height: 1.7; color: var(--navy-70); margin: 0 0 14px; }
.callout p:last-child { margin-bottom: 0; }

/* --- Before/after comparison (for readers who know CM 1.0) --- */
.compare { border-top: 1.5px solid var(--navy); margin-top: 24px; }
.compare__head,
.compare__row {
  display: grid;
  grid-template-columns: 1fr 40px 1fr;
  align-items: center;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid var(--navy-10);
}
.compare__head { padding: 12px 0; }
.compare__label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--navy-50);
}
.compare__label--new { color: var(--cobalt); }
.compare__old { font-size: 14.5px; color: var(--navy-55); }
.compare__arrow { color: var(--cobalt-200); font-weight: 700; text-align: center; }
.compare__new { font-size: 14.5px; color: var(--navy); font-weight: 500; }
@media (max-width: 640px) {
  .compare__head { display: none; }
  .compare__row { grid-template-columns: 1fr; gap: 6px; padding: 16px 0; }
  .compare__arrow { text-align: left; transform: rotate(90deg); width: 1em; }
}
