/* ============================================================
   THE CAN CIC — Global Stylesheet
   style.css | v1.0 | June 2026
   ============================================================ */

/* === GOOGLE FONTS === */
@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@300;400;500;600;700;800;900&family=Montserrat:wght@300;700;800;900&display=swap');

/* === DESIGN TOKENS === */
:root {
  /* Brand colours — from logo assets June 2026 */
  --can-purple:       #3B1A74;  /* deep indigo-purple: amplifier mark, headings, primary CTA */
  --can-green:        #3CB54A;  /* vivid green: CAN lettermark, accents, labels */
  --can-green-light:  #E8F7EA;  /* light green tint: tag backgrounds, hover states */
  --can-purple-light: #EDE8F5;  /* light purple tint: tag backgrounds, secondary cards */

  /* Backgrounds */
  --bg-white:     #FFFFFF;
  --bg-warm:      #FAF9FC;      /* very slightly purple-warm white for section variation */
  --bg-secondary: #F2EFF8;      /* soft purple-tinted secondary background */
  --bg-dark:      #2a0a3d;      /* deep purple: footer, dark CTA bands — matches logo dark variant */

  /* Text */
  --text-primary:   #130727;    /* near-black with purple undertone */
  --text-secondary: #5A4878;    /* mid-purple for secondary text */
  --text-muted:     #9B8AB5;    /* muted purple-grey for captions */
  --text-inverse:   #FFFFFF;

  /* Borders */
  --border-light:  rgba(59, 26, 116, 0.10);
  --border-medium: rgba(59, 26, 116, 0.22);

  /* Typography */
  --font-sans:    'Nunito',     -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-heading: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Spacing scale */
  --space-xs:  0.5rem;
  --space-sm:  1rem;
  --space-md:  1.5rem;
  --space-lg:  2.5rem;
  --space-xl:  5rem;
  --space-2xl: 7.5rem;

  /* Border radius */
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;

  /* Shadows */
  --shadow-sm: 0 1px 4px rgba(26, 23, 48, 0.08);
  --shadow-md: 0 4px 18px rgba(26, 23, 48, 0.11);
  --shadow-lg: 0 8px 36px rgba(26, 23, 48, 0.13);

  /* Layout */
  --max-width:      1140px;
  --max-width-text: 720px;
  --nav-height:     68px;

  /* Transitions */
  --t-fast: 0.15s ease;
  --t-mid:  0.25s ease;
  --t-slow: 0.4s ease;
}

/* === RESET === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-sans);
  color: var(--text-primary);
  background: var(--bg-white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: var(--font-sans); border: none; background: none; }
ul, ol { list-style: none; }
input, textarea, select { font-family: var(--font-sans); }

/* === LAYOUT === */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}
.container--narrow {
  max-width: var(--max-width-text);
  margin: 0 auto;
  padding: 0 1.5rem;
}
.nav-offset { padding-top: var(--nav-height); }

section { padding: var(--space-xl) 0; }
.section--warm  { background: var(--bg-warm); }
.section--dark  { background: var(--bg-dark); color: var(--text-inverse); }
.section--tight { padding: var(--space-lg) 0; }

/* === TYPOGRAPHY SCALE === */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 800;
  line-height: 1.2;
  color: var(--can-purple);
}

/* Type label — small caps above headings */
.label {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--can-green);
  display: block;
  margin-bottom: 0.625rem;
}

.h1 { font-family: var(--font-heading); font-size: clamp(2rem,    5vw, 3.25rem); font-weight: 900; }
.h2 { font-family: var(--font-heading); font-size: clamp(1.5rem,  3vw, 2.25rem); font-weight: 800; }
.h3 { font-family: var(--font-heading); font-size: clamp(1.125rem,2vw, 1.5rem);  font-weight: 700; }

.standfirst {
  font-size: clamp(1rem, 2vw, 1.1875rem);
  line-height: 1.75;
  color: var(--text-secondary);
  font-weight: 400;
}
.body-copy {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-secondary);
}
.caption {
  font-size: 0.8125rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* Section header block */
.section-header { margin-bottom: 2rem; max-width: 680px; }
.section-header h2 {
  font-size: clamp(1.5rem, 3vw, 2.125rem);
  margin-bottom: 0.625rem;
}
.section-header p {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.75;
  max-width: 600px;
}
.section-header--centered { max-width: none; }
.section-header--centered { text-align: center; }
.section-header--centered p { margin: 0 auto; }

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-md);
  font-size: 0.9375rem;
  font-weight: 700;
  font-family: var(--font-sans);
  border: 2px solid transparent;
  transition: all var(--t-mid);
  white-space: nowrap;
  line-height: 1;
}
.btn--primary {
  background: var(--can-purple);
  color: #fff;
  border-color: var(--can-purple);
}
.btn--primary:hover {
  background: #1a1748;
  border-color: #1a1748;
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}
.btn--accent {
  background: var(--can-green);
  color: #fff;
  border-color: var(--can-green);
}
.btn--accent:hover {
  background: #188a65;
  border-color: #188a65;
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}
.btn--outline {
  background: transparent;
  color: var(--can-purple);
  border-color: var(--border-medium);
}
.btn--outline:hover {
  border-color: var(--can-purple);
  background: var(--bg-secondary);
}
.btn--outline-inverse {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.4);
}
.btn--outline-inverse:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.75);
}
.btn--sm {
  padding: 0.5rem 1.125rem;
  font-size: 0.875rem;
}
.btn--lg {
  padding: 1rem 2rem;
  font-size: 1.0625rem;
}
.btn-row {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  align-items: center;
}

/* === NAV (injected by nav.js) === */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-light);
  transition: background var(--t-mid), border-color var(--t-mid), box-shadow var(--t-mid);
}
.site-nav.scrolled { box-shadow: var(--shadow-sm); }

/* Adaptive nav — dark state (over dark heroes) */
.site-nav--dark {
  background: transparent;
  border-bottom-color: rgba(255,255,255,0.07);
  box-shadow: none !important;
}
.site-nav--dark .site-nav__logo { color: rgba(255,255,255,0.9); }
.site-nav--dark .site-nav__hamburger span { background: #fff; }
.site-nav--dark .site-nav__link { color: rgba(255,255,255,0.75); }
.site-nav--dark .site-nav__link:hover,
.site-nav--dark .site-nav__link.active { color: #fff; background: rgba(255,255,255,0.08); }
.site-nav--dark .site-nav__mobile {
  background: var(--bg-dark);
  border-top-color: rgba(255,255,255,0.1);
}
.site-nav--dark .site-nav__mobile-link { color: rgba(255,255,255,0.75); }
.site-nav--dark .site-nav__mobile-link:hover,
.site-nav--dark .site-nav__mobile-link.active { color: #fff; background: rgba(255,255,255,0.08); }

/* Logo variants controlled by nav state */
.site-nav--dark  .site-nav__logo-img--default { display: none; }
.site-nav--dark  .site-nav__logo-img--inverse  { display: block; }
.site-nav--light .site-nav__logo-img--default { display: block; }
.site-nav--light .site-nav__logo-img--inverse  { display: none; }

/* Light state (explicit — matches original default) */
.site-nav--light {
  background: rgba(255,255,255,0.96);
  border-bottom-color: var(--border-light);
}
.site-nav--light .site-nav__hamburger span { background: var(--can-purple); }

.site-nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-height);
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}
.site-nav__logo {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-weight: 800;
  font-size: 0.875rem;
  color: var(--can-purple);
  line-height: 1.25;
}
.site-nav__logo-img {
  height: 44px;
  width: auto;
  display: block;
}
.site-nav__logo-mark {
  font-size: 1.375rem;
  font-weight: 900;
  color: var(--can-green);
  letter-spacing: -0.03em;
  flex-shrink: 0;
}
.site-nav__links {
  display: none; /* hamburger-only nav — hidden at all screen sizes */
  align-items: center;
  gap: 0.125rem;
}
.site-nav__link {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-secondary);
  padding: 0.4rem 0.7rem;
  border-radius: var(--radius-sm);
  transition: all var(--t-fast);
}
.site-nav__link:hover,
.site-nav__link.active {
  color: var(--can-purple);
  background: var(--bg-secondary);
}
.site-nav__cta { margin-left: 0.5rem; }

/* Hamburger */
.site-nav__hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  padding: 0.5rem;
  cursor: pointer;
}
.site-nav__hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--can-purple);
  border-radius: 2px;
  transition: all var(--t-mid);
}
.site-nav__hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.site-nav__hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.site-nav__hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.site-nav__mobile {
  display: none;
  flex-direction: column;
  gap: 0.25rem;
  padding: 0.875rem 1.5rem 1.25rem;
  border-top: 1px solid var(--border-light);
  background: #fff;
}
.site-nav__mobile.open { display: flex; }
.site-nav__mobile-link {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-secondary);
  padding: 0.55rem 0.75rem;
  border-radius: var(--radius-sm);
  transition: all var(--t-fast);
}
.site-nav__mobile-link:hover,
.site-nav__mobile-link.active { color: var(--can-purple); background: var(--bg-secondary); }

/* nav breakpoint media query removed — hamburger is shown at all sizes */

/* === FOOTER (injected by footer.js) === */
.site-footer {
  background: #0d0d0d;
  color: var(--text-inverse);
  padding: var(--space-xl) 0 var(--space-lg);
}
.site-footer__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}
.site-footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: var(--space-lg);
  border-bottom: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 1.5rem;
}
.site-footer__logo-mark {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--can-green);
  letter-spacing: -0.03em;
  margin-bottom: 0.75rem;
}
.site-footer__tagline {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.65;
  max-width: 280px;
  margin-bottom: 1.25rem;
}
.site-footer__contact a {
  font-size: 0.875rem;
  color: var(--can-green);
  font-weight: 700;
  transition: opacity var(--t-fast);
}
.site-footer__contact a:hover { opacity: 0.8; }
.site-footer__col-title {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--can-green);
  margin-bottom: 1rem;
}
.site-footer__links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.site-footer__links a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  transition: color var(--t-fast);
}
.site-footer__links a:hover { color: #fff; }
.site-footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.35);
  flex-wrap: wrap;
  gap: 0.5rem;
}
.site-footer__bottom a { color: rgba(255,255,255,0.35); }
.site-footer__bottom a:hover { color: rgba(255,255,255,0.65); }

@media (max-width: 900px) {
  .site-footer__grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}
@media (max-width: 560px) {
  .site-footer__grid { grid-template-columns: 1fr; gap: 1.75rem; }
  .site-footer__bottom { flex-direction: column; text-align: center; gap: 0.375rem; }
}

/* === HERO === */
.hero {
  padding: calc(var(--space-xl) + 1.5rem) 0 var(--space-xl);
}
.hero--split {
  display: grid;
  grid-template-columns: 55fr 45fr;
  gap: 3rem;
  align-items: center;
}
.hero__content .label { margin-bottom: 1rem; }
.hero__content h1 { margin-bottom: 1.125rem; }
.hero__content .standfirst { margin-bottom: 2rem; max-width: 520px; }
.hero__image {
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4/3;
}

/* Photo placeholder — replace with real img when available */
.img-placeholder {
  width: 100%;
  height: 100%;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--can-purple-light) 0%, var(--can-green-light) 100%);
  color: var(--text-muted);
  font-size: 0.8125rem;
  font-style: italic;
  text-align: center;
  padding: 1.5rem;
  gap: 0.5rem;
}
.img-placeholder::before {
  content: '📷';
  font-size: 2rem;
  font-style: normal;
  opacity: 0.5;
}

@media (max-width: 820px) {
  .hero--split { grid-template-columns: 1fr; }
  .hero__image { display: none; }
}

/* === STAT CARDS === */
.stat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
  margin: 2rem 0;
}
.stat-card {
  background: var(--bg-secondary);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.25rem;
}
.stat-card__num {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 2.75rem);
  font-weight: 900;
  color: var(--can-purple);
  line-height: 1;
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
}
.stat-card__label {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.45;
}
.stat-card--accent .stat-card__num { color: var(--can-green); }
.stat-card--dark {
  background: var(--can-purple);
  color: #fff;
}
.stat-card--dark .stat-card__num { color: var(--can-green); }
.stat-card--dark .stat-card__label { color: rgba(255,255,255,0.7); }

/* === BLOCKQUOTE === */
.blockquote {
  border-left: 3px solid var(--can-green);
  padding: 0.25rem 0 0.25rem 1.25rem;
  margin: 2rem 0;
  max-width: 680px;
}
.blockquote__text {
  font-size: 1.0625rem;
  font-style: italic;
  line-height: 1.65;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
  font-weight: 500;
}
.blockquote__cite {
  font-size: 0.8125rem;
  color: var(--text-muted);
  font-style: normal;
}
.blockquote--large .blockquote__text { font-size: 1.25rem; }

/* === PROBLEM CARDS === */
.problem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin: 1.75rem 0;
}
.problem-card {
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
}
.problem-card__tag {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
  margin-bottom: 0.875rem;
}
.problem-card h3 {
  font-size: 1rem;
  margin-bottom: 0.625rem;
}
.problem-card p {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.65;
}
@media (max-width: 600px) { .problem-grid { grid-template-columns: 1fr; } }

/* === TAG COLOUR VARIANTS === */
.tag-purple { background: var(--can-purple-light); color: #3B1A74; }
.tag-teal   { background: var(--can-green-light);  color: #1A5C22; }
.tag-blue   { background: #E6F1FB; color: #0C447C; }
.tag-amber  { background: #FAEEDA; color: #633806; }
.tag-coral  { background: #FAECE7; color: #712B13; }

/* === PATHWAY CARDS === */
.pathway-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin: 2rem 0;
}
.pathway-card {
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  transition: all var(--t-slow);
}
.pathway-card:hover {
  border-color: var(--can-purple);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.pathway-card__who {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--can-green);
  margin-bottom: 0.5rem;
}
.pathway-card h3 {
  font-size: 1.0625rem;
  margin-bottom: 0.75rem;
}
.pathway-card p {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.65;
  flex: 1;
  margin-bottom: 1.25rem;
}
.pathway-card__link {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--can-purple);
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  transition: gap var(--t-fast);
}
.pathway-card__link:hover { gap: 0.55rem; }
@media (max-width: 768px) { .pathway-grid { grid-template-columns: 1fr; } }

/* === PROGRAMME ACCORDION CARDS === */
.prog-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin: 2rem 0;
}
.prog-card {
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color var(--t-mid);
}
.prog-card.open { border-color: var(--can-purple); }

.prog-card__header {
  padding: 1.25rem 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  user-select: none;
  transition: background var(--t-fast);
}
.prog-card__header:hover { background: var(--bg-secondary); }

.prog-card__tag {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
  margin-bottom: 0.625rem;
}
.prog-card__title {
  font-size: 1rem;
  font-weight: 800;
  color: var(--can-purple);
  line-height: 1.3;
  margin-bottom: 0.4rem;
}
.prog-card__hook {
  font-size: 0.875rem;
  font-style: italic;
  color: var(--text-secondary);
  line-height: 1.5;
  border-left: 2px solid var(--can-green);
  padding-left: 0.625rem;
  margin-top: 0.625rem;
}

.prog-card__toggle {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--bg-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--t-mid);
  margin-top: 2px;
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--can-purple);
  line-height: 1;
}
.prog-card.open .prog-card__toggle {
  background: var(--can-purple);
  color: #fff;
  transform: rotate(45deg);
}

/* Accordion body */
.prog-card__body {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--t-slow);
}
.prog-card.open .prog-card__body { max-height: 600px; }
.prog-card__body-inner {
  padding: 1.25rem 1.5rem 1.5rem;
  border-top: 1px solid var(--border-light);
  display: grid;
  gap: 0.875rem;
}
.prog-card__row {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 0.5rem;
  font-size: 0.9rem;
  align-items: baseline;
}
.prog-card__row strong { color: var(--can-purple); font-weight: 700; }
.prog-card__row span  { color: var(--text-secondary); line-height: 1.55; }
.prog-card__cta { margin-top: 0.5rem; }

@media (max-width: 768px) {
  .prog-grid { grid-template-columns: 1fr; }
  .prog-card__row { grid-template-columns: 1fr; gap: 0.2rem; }
}

/* === CPD CARDS === */
.cpd-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin: 2rem 0;
}
.cpd-card {
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  transition: all var(--t-slow);
}
.cpd-card:hover { border-color: var(--can-purple); box-shadow: var(--shadow-sm); }
.cpd-card .label { margin-bottom: 0.5rem; }
.cpd-card h3 { font-size: 1rem; margin-bottom: 0.625rem; }
.cpd-card > p { font-size: 0.9375rem; color: var(--text-secondary); line-height: 1.65; }
.cpd-card__outcomes {
  margin-top: 1rem;
  background: var(--bg-secondary);
  border-radius: var(--radius-md);
  padding: 0.875rem 1rem;
  flex: 1;
}
.cpd-card__outcomes-title {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}
.cpd-card__outcomes ul {
  padding-left: 1rem;
  list-style: disc;
}
.cpd-card__outcomes li {
  font-size: 0.8125rem;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-bottom: 0.25rem;
}
.cpd-card__link {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--can-purple);
  margin-top: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  transition: gap var(--t-fast);
}
.cpd-card__link:hover { gap: 0.5rem; }
@media (max-width: 640px) { .cpd-grid { grid-template-columns: 1fr; } }

/* === TRUST BAR === */
.trust-bar {
  background: var(--bg-secondary);
  border-radius: var(--radius-md);
  padding: 1rem 1.25rem;
  margin: 1.75rem 0;
}
.trust-bar__title {
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
}
.trust-items {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
}
.trust-item {
  font-size: 0.8125rem;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 0.35rem;
}
.trust-item__tick { color: var(--can-green); font-weight: 800; font-size: 0.9375rem; }

/* === BENEFIT CARDS === */
.benefit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin: 1.75rem 0;
}
.benefit-card {
  background: var(--bg-secondary);
  border-radius: var(--radius-md);
  padding: 1.25rem;
}
.benefit-card h3 {
  font-size: 0.9375rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
}
.benefit-card p {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.6;
}
@media (max-width: 600px) { .benefit-grid { grid-template-columns: 1fr; } }

/* === HOW IT WORKS STEPS === */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
  counter-reset: step;
}
.step {
  position: relative;
  padding-left: 3.25rem;
  counter-increment: step;
}
.step::before {
  content: counter(step);
  position: absolute;
  left: 0;
  top: 0;
  width: 2.125rem;
  height: 2.125rem;
  background: var(--can-purple);
  color: #fff;
  border-radius: 50%;
  font-size: 0.875rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}
.step h3 { font-size: 1rem; margin-bottom: 0.375rem; }
.step p  { font-size: 0.9rem; color: var(--text-secondary); line-height: 1.6; }

/* === BUSINESS SUPPORT TIERS === */
.tier-row {
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 1rem 1.25rem;
  margin-bottom: 0.625rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  transition: border-color var(--t-fast);
}
.tier-row:hover { border-color: var(--can-purple); }
.tier-row__name {
  font-size: 0.875rem;
  font-weight: 800;
  color: var(--can-purple);
  min-width: 80px;
  padding-top: 0.1rem;
}
.tier-row__desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.55;
}

/* === CTA BAND === */
.cta-band {
  background: var(--can-purple);
  color: #fff;
  padding: var(--space-lg) 0;
  text-align: center;
}
.cta-band h2 { color: #fff; font-size: clamp(1.5rem, 3vw, 2.125rem); margin-bottom: 0.625rem; }
.cta-band p  { color: rgba(255,255,255,0.72); font-size: 1rem; margin-bottom: 1.75rem; max-width: 480px; margin-left: auto; margin-right: auto; }

/* === PHOTO SPLIT SECTION === */
.photo-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}
.photo-split--reversed .photo-split__image { order: -1; }
.photo-split__image {
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4/3;
}
@media (max-width: 768px) {
  .photo-split { grid-template-columns: 1fr; }
  .photo-split--reversed .photo-split__image { order: 0; }
}

/* === STUB PAGE === */
.stub-hero {
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: calc(var(--space-xl) + 4rem) 0 var(--space-xl);
}
.stub-coming-soon {
  display: inline-block;
  background: var(--can-green-light);
  color: #085041;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 1.25rem;
}

/* === UTILITIES === */
.mt-sm  { margin-top: var(--space-sm); }
.mb-sm  { margin-bottom: var(--space-sm); }
.mt-md  { margin-top: var(--space-md); }
.mb-md  { margin-bottom: var(--space-md); }
.mt-lg  { margin-top: var(--space-lg); }
.mb-lg  { margin-bottom: var(--space-lg); }
.text-center  { text-align: center; }
.text-green   { color: var(--can-green); }
.text-purple  { color: var(--can-purple); }
.text-muted   { color: var(--text-muted); }
.max-text     { max-width: var(--max-width-text); }
.divider-green {
  border: none;
  border-top: 3px solid var(--can-green);
  width: 48px;
  margin: 0 0 1.5rem;
}
.divider-light {
  border: none;
  border-top: 1px solid var(--border-light);
  margin: var(--space-lg) 0;
}

/* === SCROLLING TICKER BANNER === */
.ticker {
  overflow: hidden;
  background: var(--bg-dark);
  padding: 0.8rem 0;
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.ticker__track {
  display: flex;
  width: max-content;
  animation: ticker-scroll 40s linear infinite;
}
.ticker__track:hover { animation-play-state: paused; }
.ticker__item {
  white-space: nowrap;
  font-family: var(--font-heading);
  font-weight: 300;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  padding: 0 0.25rem;
}
.ticker__dot {
  color: var(--can-green);
  font-size: 0.5rem;
  vertical-align: middle;
  padding: 0 1.25rem;
}
@keyframes ticker-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .ticker__track { animation: none; }
}

/* === FADE-IN SCROLL ANIMATIONS === */
.fade-in {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.fade-in.is-visible {
  opacity: 1;
  transform: none;
}
.fade-in[data-delay="1"] { transition-delay: 0.08s; }
.fade-in[data-delay="2"] { transition-delay: 0.16s; }
.fade-in[data-delay="3"] { transition-delay: 0.24s; }
.fade-in[data-delay="4"] { transition-delay: 0.32s; }
.fade-in[data-delay="5"] { transition-delay: 0.40s; }
.fade-in[data-delay="6"] { transition-delay: 0.48s; }

@media (prefers-reduced-motion: reduce) {
  .fade-in {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* === PULL QUOTE === */
/* Large typographic bridge statement — generous padding, no container box */
.pull-quote {
  text-align: center;
  padding: var(--space-2xl) 1.5rem;
  max-width: 800px;
  margin: 0 auto;
}
.pull-quote__text {
  font-family: var(--font-heading);
  font-size: clamp(1.375rem, 3.5vw, 2.25rem);
  font-weight: 800;
  line-height: 1.3;
  color: var(--can-purple);
  letter-spacing: -0.01em;
}
.pull-quote__text strong {
  color: var(--can-green);
}

/* ============================================================
   DARK HERO
   Pulls background behind the transparent nav; extra top
   padding compensates for nav height so content sits correctly.
   ============================================================ */
.hero--dark {
  background: var(--bg-dark);
  /* Reach up behind the fixed nav */
  margin-top: calc(-1 * var(--nav-height));
  padding-top: calc(var(--space-xl) + 1.5rem + var(--nav-height));
}
.hero--dark h1 { color: #fff; }
.hero--dark .label { color: var(--can-green); }
.hero--dark .standfirst { color: rgba(255,255,255,0.72); }
/* Outline button needs inverse treatment on dark bg */
.hero--dark .btn--outline {
  color: #fff;
  border-color: rgba(255,255,255,0.35);
}
.hero--dark .btn--outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.7);
}

/* ============================================================
   SECTION--DARK OVERRIDES
   Typography, components and interactive elements on dark bg.
   ============================================================ */
.section--dark h1,
.section--dark h2,
.section--dark h3      { color: #fff; }
.section--dark .label  { color: var(--can-green); }
.section--dark .standfirst      { color: rgba(255,255,255,0.72); }
.section--dark .body-copy       { color: rgba(255,255,255,0.65); }
.section--dark .section-header p { color: rgba(255,255,255,0.65); }

/* Blockquotes */
.section--dark .blockquote       { border-left-color: var(--can-green); }
.section--dark .blockquote__text { color: rgba(255,255,255,0.9); }
.section--dark .blockquote__cite { color: rgba(255,255,255,0.45); }

/* Pathway / belief cards */
.section--dark .pathway-card {
  background: rgba(255,255,255,0.04);
  border-color: rgba(255,255,255,0.1);
}
.section--dark .pathway-card:hover {
  border-color: var(--can-green);
  background: rgba(255,255,255,0.07);
}
.section--dark .pathway-card__who  { color: var(--can-green); }
.section--dark .pathway-card h3    { color: #fff; }
.section--dark .pathway-card p     { color: rgba(255,255,255,0.65); }
.section--dark .pathway-card__link { color: var(--can-green); }

/* Trust bar */
.section--dark .trust-bar {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
}
.section--dark .trust-bar__title { color: rgba(255,255,255,0.9); }
.section--dark .trust-item        { color: rgba(255,255,255,0.65); }

/* ============================================================
   CTA BAND — unified with footer/hero dark
   ============================================================ */
.cta-band { background: var(--bg-dark); }
