/* ==========================================================================
   Trusted Agentic AI — Design System
   ========================================================================== */

/* --- Tokens --- */
:root {
  --bg: #f3f4f6;
  --bg-elevated: #e8eaed;
  --border: #d1d4d9;
  --text: #1e2a3a;
  --text-muted: #5c6a78;
  --accent: #2d4a6f;
  --font-body: 'Inter', system-ui, sans-serif;
  --max-width: 1120px;
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 3rem;
  --space-xl: 5rem;
  --space-xxl: 7rem;
}

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
a { color: inherit; text-decoration: none; }
.hidden { display: none; }
img { max-width: 100%; display: block; }

/* --- Layout --- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

section {
  padding: var(--space-xl) 0;
}

section.elevated {
  background: var(--bg-elevated);
}

/* --- Typography --- */
h1, h2, h3, h4 {
  font-family: var(--font-body);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.03em;
}

h1 { font-size: clamp(2.2rem, 5vw, 3rem); }
h2 { font-size: clamp(1.6rem, 4vw, 2.2rem); }
h3 { font-size: clamp(1.05rem, 2.5vw, 1.25rem); }

p { margin-bottom: var(--space-sm); }
p:last-child { margin-bottom: 0; }

strong { font-weight: 700; }

.label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--text-muted);
  margin-bottom: var(--space-xs);
  display: block;
}

.section-intro {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 680px;
  margin-bottom: var(--space-lg);
  line-height: 1.7;
  text-align: justify;
}

.section-intro a {
  color: var(--text);
  text-decoration: underline;
  text-decoration-color: var(--border);
  text-underline-offset: 2px;
  transition: text-decoration-color 0.2s;
}

.section-intro a:hover {
  text-decoration-color: var(--accent);
}

/* --- Nav --- */
.nav {
  padding: var(--space-md) 0;
}

.nav__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav__logo {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  z-index: 201;
}

.nav__link {
  font-size: 0.85rem;
  color: var(--text-muted);
  transition: color 0.2s;
}

.nav__link:hover {
  color: var(--text);
}

.nav__links {
  display: flex;
  gap: var(--space-md);
}

.nav__link--active {
  color: var(--text);
}

/* Hamburger button – hidden on desktop */
.nav__toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.25rem;
  flex-direction: column;
  gap: 5px;
}

.nav__toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 1px;
  transition: transform 0.25s, opacity 0.25s;
}

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

@media (max-width: 639px) {
  .nav__toggle {
    display: flex;
    z-index: 201;
  }

  .nav__links {
    display: flex;
    position: fixed;
    inset: 0;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: var(--space-md);
    background: var(--bg);
    z-index: 200;
    padding-bottom: 15vh;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.2s ease, visibility 0.2s ease;
  }

  .nav__links--open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .nav__links .nav__link {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.35rem;
    font-weight: 500;
    color: var(--text-muted);
    padding: 0.5rem 0;
    transition: color 0.2s;
  }

  .nav__links .nav__link--active {
    color: var(--text);
    font-weight: 600;
  }

  .nav {
    position: relative;
  }
}

.nav__byline {
  font-size: 0.85rem;
  color: var(--text-muted);
  transition: color 0.2s;
}

.nav__byline:hover {
  color: var(--text);
}

/* --- Accent utility --- */
.accent { color: var(--accent); }

/* --- Questions --- */
.questions {
  padding: var(--space-xl) 0;
  background: var(--bg-elevated);
}

.questions__intro {
  text-align: center;
  font-size: 0.8rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: var(--space-lg);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.questions__viewport {
  max-width: 640px;
  margin: 0 auto;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.15) 20%, black 42%, black 58%, rgba(0,0,0,0.15) 80%, transparent 100%);
  mask-image: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.15) 20%, black 42%, black 58%, rgba(0,0,0,0.15) 80%, transparent 100%);
}

.questions__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.questions__item {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text);
  line-height: 1.5;
  padding: var(--space-md) var(--space-md);
  border-left: 2px solid var(--accent);
  flex-shrink: 0;
  text-align: center;
  border-left: none;
}

.questions__toggle {
  display: block;
  margin: var(--space-sm) auto 0;
  background: none;
  border: none;
  font-family: var(--font-body);
  font-size: 0.8rem;
  color: var(--text-muted);
  cursor: pointer;
  letter-spacing: 0.02em;
  transition: color 0.2s;
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

.questions__toggle:hover {
  color: var(--text);
}

.questions__viewport.is-expanded {
  -webkit-mask-image: none;
  mask-image: none;
  height: auto !important;
}

.questions__viewport.is-expanded .questions__list {
  transform: none !important;
  transition: none !important;
}

.questions__viewport.is-expanded .questions__item {
  text-align: left;
  font-size: 0.88rem;
  font-weight: 400;
  color: var(--text-muted);
  padding: var(--space-xs) 0;
  padding-left: 1.2em;
  position: relative;
}

.questions__viewport.is-expanded .questions__item::before {
  content: "\2022";
  position: absolute;
  left: 0;
  color: var(--text-muted);
}

/* --- Hero --- */
.hero {
  min-height: calc(100vh - 200px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--space-lg) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

#hero-particles {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.8s ease;
}
#hero-particles.ready {
  opacity: 1;
}

.hero__badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text);
  background: var(--bg);
  border: 1px solid var(--border);
  padding: 0.4em 1.2em;
  border-radius: 100px;
  margin-bottom: var(--space-lg);
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero h1 {
  max-width: 860px;
  margin: 0 auto var(--space-lg);
}

.hero h1 em {
  font-style: normal;
  color: var(--accent);
}

.hero__subtitle {
  max-width: 640px;
  margin: 0 auto var(--space-lg);
  color: var(--text-muted);
  font-size: 1.15rem;
  font-weight: 400;
  line-height: 1.7;
}

.hero__subtitle .highlight {
  color: var(--text);
  font-weight: 600;
}

.hero__target {
  max-width: 700px;
  margin: 0 auto;
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.7;
  text-align: center;
}

.hero__target strong {
  color: var(--text);
}

/* --- Tension --- */
.tension {
  padding: var(--space-xl) 0;
}

.tension {
  padding: var(--space-xl) 0;
}

/* --- Stats --- */
.stats-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
}

@media (min-width: 640px) {
  .stats-grid { grid-template-columns: 1fr 1fr 1fr; }
}

.stat {
  padding: var(--space-md);
  border-left: 2px solid var(--accent);
}

.stat__number {
  display: block;
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: var(--space-xs);
}

.stat__text {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: var(--space-xs);
}

.stat__source {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 400;
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

.stat__source:hover {
  color: var(--text);
}

.stats-summary {
  font-size: 0.95rem;
  color: var(--text-muted);
  font-weight: 400;
  max-width: 640px;
  margin: var(--space-lg) auto 0;
  text-align: center;
}

/* --- Timeline --- */
.timeline {
  padding: var(--space-xl) 0;
  overflow-x: auto;
}

.timeline__sentiment {
  position: relative;
  height: 150px;
  margin-bottom: var(--space-sm);
}

.timeline__curve {
  width: 100%;
  height: 100%;
}

.timeline__y-label {
  position: absolute;
  top: 50%;
  left: -1.5rem;
  font-size: 0.65rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  writing-mode: vertical-rl;
  transform: rotate(180deg) translateX(50%);
}

.timeline__track {
  display: flex;
  align-items: flex-start;
  position: relative;
}

.timeline__track::before {
  content: '';
  position: absolute;
  top: 3px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--border);
}

.timeline__track::after {
  content: '';
  position: absolute;
  top: 3px;
  right: -1px;
  width: 0;
  height: 0;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 8px solid var(--border);
  transform: translateY(-2px);
}

.timeline__point {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  text-align: center;
  padding: 0 var(--space-sm);
}

.timeline__marker {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border);
  margin-bottom: 0.75rem;
  position: relative;
  z-index: 1;
}

.timeline__date {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.03em;
  margin-bottom: 0.25rem;
}

.timeline__point--now .timeline__date {
  color: var(--accent);
}

.timeline__point--now .timeline__marker {
  width: 10px;
  height: 10px;
  background: var(--accent);
}

.timeline__label {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.4;
}

.timeline__point--now .timeline__label {
  color: var(--accent);
  font-weight: 600;
}

.timeline__legend {
  display: flex;
  justify-content: flex-end;
  gap: var(--space-md);
  margin-top: var(--space-sm);
}

.timeline__legend-item {
  font-size: 0.75rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.timeline__legend-item::before {
  content: '';
  width: 20px;
  height: 2px;
  border-top: 2px dashed;
}

.timeline__legend-item--up::before {
  border-color: #5a82a8;
}

.timeline__legend-item--down::before {
  border-color: #c4847e;
  opacity: 0.6;
}

/* --- Venn --- */
.framework__top {
  margin-bottom: var(--space-lg);
}

.venn {
  display: flex;
  justify-content: center;
}

.venn__svg {
  width: 200px;
  height: auto;
}

@media (min-width: 640px) {
  .framework__top {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: var(--space-lg);
    align-items: start;
  }

  .venn {
    margin-top: -1rem;
  }

  .venn__svg {
    width: 440px;
  }
}

/* --- Framework --- */
.framework .section-intro {
  max-width: 680px;
}

.framework h2 {
  margin-bottom: var(--space-sm);
}

.framework__closing {
  margin-top: var(--space-lg);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: -0.01em;
  text-align: center;
}

.card-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
}

@media (min-width: 640px) {
  .card-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 900px) {
  .card-grid { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
}

.card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: var(--space-md);
}

.card h3 {
  margin-bottom: var(--space-xs);
}

.card h3 .letter {
  color: var(--accent);
  margin-right: 0.15em;
}

.card p {
  color: var(--text-muted);
  font-size: 0.92rem;
}

/* PAC pillar accents */
.card--potential { border-left: 3px solid rgba(37,99,235,0.5); }
.card--accountability { border-left: 3px solid rgba(217,119,6,0.5); }
.card--control { border-left: 3px solid rgba(22,163,74,0.5); }

.card--potential h3 .letter { color: #2563eb; }
.card--accountability h3 .letter { color: #d97706; }
.card--control h3 .letter { color: #16a34a; }

/* Offering card accents */
.card--offering-framework { border-top: 3px solid rgba(37,99,235,0.4); }
.card--offering-tools { border-top: 3px solid rgba(45,74,111,0.4); }
.card--offering-programme { border-top: 3px solid rgba(217,119,6,0.4); }
.card--offering-workshop { border-top: 3px solid rgba(147,51,234,0.4); }
.card--offering-consultancy { border-top: 3px solid rgba(22,163,74,0.4); }

.card__tier {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 0.35rem;
}

/* --- Profiler --- */
.profiler h2 {
  margin-bottom: var(--space-sm);
}

.profiler__showcase {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.profiler__preview {
  order: -1;
}

@media (min-width: 640px) {
  .profiler__showcase {
    flex-direction: row;
    align-items: flex-start;
  }

  .profiler__preview {
    order: 0;
  }
}

.profiler__text {
  flex: 1;
  min-width: 0;
}

.profiler__features {
  list-style: none;
  margin-bottom: var(--space-lg);
}

.profiler__features li {
  font-size: 0.92rem;
  color: var(--text-muted);
  padding: var(--space-xs) 0;
  padding-left: 1.2em;
  position: relative;
  line-height: 1.6;
}

.profiler__features li::before {
  content: "\2192";
  position: absolute;
  left: 0;
  color: var(--text-muted);
}

.profiler__features li strong {
  color: var(--text);
}

.profiler__preview {
  display: block;
  flex: 1.4;
  min-width: 0;
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
  transition: border-color 0.2s;
}

.profiler__preview:hover {
  border-color: var(--accent);
}

.profiler__preview img {
  width: 100%;
  height: auto;
  display: block;
}

.profiler__bridge {
  margin-top: var(--space-lg);
  font-size: 0.95rem;
  color: var(--text-muted);
  text-align: center;
}

/* --- Instructor --- */
.instructor__card {
  display: flex;
  gap: var(--space-lg);
  align-items: flex-start;
  background: none;
  border: none;
  border-radius: 0;
  padding: 0;
}

.instructor__photo {
  width: 240px;
  height: 300px;
  border-radius: 4px;
  object-fit: cover;
  border: 1px solid var(--border);
  flex-shrink: 0;
  image-rendering: smooth;
}

.instructor__text {
  flex: 1;
  min-width: 0;
  max-width: 640px;
}

.instructor__name {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.2em;
}

.instructor__subtitle {
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: var(--space-sm);
}

.instructor__bio p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: var(--space-sm);
  text-align: justify;
}

.instructor__bio strong {
  color: var(--text);
}

.instructor__bio a {
  color: var(--text);
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

.instructor__bio a:hover {
  color: var(--accent);
}

@media (max-width: 639px) {
  .instructor__card {
    flex-direction: column;
  }
}

.credentials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xs);
  margin-top: var(--space-md);
  padding-top: var(--space-md);
  border-top: 1px solid var(--border);
}

@media (min-width: 640px) {
  .credentials-grid { grid-template-columns: 1fr 1fr; }
}

.credentials-grid li {
  list-style: none;
  font-size: 0.85rem;
  color: var(--text-muted);
  padding-left: 1.2em;
  position: relative;
}

.credentials-grid li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--text-muted);
}

/* --- Programme / Schedule --- */
.programme h2 {
  margin-bottom: var(--space-sm);
}

.schedule {
}

.schedule-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.25rem;
  padding: var(--space-md) 0;
  border-top: 1px solid var(--border);
}

.schedule-row:last-child {
  border-bottom: 1px solid var(--border);
}

@media (min-width: 640px) {
  .schedule-row {
    grid-template-columns: 4.5rem 5.5rem 10rem 1fr;
    align-items: baseline;
    gap: var(--space-md);
  }
}

.schedule-week {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
}

.schedule-date {
  font-size: 0.9rem;
  color: var(--accent);
  font-weight: 600;
}

.schedule-title {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
}

.schedule-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.schedule-stakeholders {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-style: italic;
}

@media (min-width: 640px) {
  .schedule-stakeholders {
    grid-column: 4;
  }
}

.schedule-note {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.schedule-note--before {
  margin-bottom: var(--space-lg);
}

.schedule-note--after {
  margin-top: var(--space-md);
}

/* --- Curriculum --- */
.curriculum h2 {
  margin-bottom: var(--space-sm);
}

.curriculum__accordion {
  display: flex;
  flex-direction: column;
}

.curriculum__session {
  border-top: 1px solid var(--border);
}

.curriculum__session:last-child {
  border-bottom: 1px solid var(--border);
}

.curriculum__header {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding: var(--space-md) 0;
  cursor: pointer;
  list-style: none;
  user-select: none;
}

.curriculum__header::-webkit-details-marker {
  display: none;
}

.curriculum__header::marker {
  content: '';
}

.curriculum__pillar {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  flex-shrink: 0;
  min-width: 5.5rem;
}

.curriculum__pillar .letter {
  color: var(--accent);
  margin-right: 0.15em;
}

.curriculum__title {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text);
  flex: 1;
}

.curriculum__chevron {
  flex-shrink: 0;
  width: 1rem;
  height: 1rem;
  position: relative;
}

.curriculum__chevron::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0.45rem;
  height: 0.45rem;
  border-right: 1.5px solid var(--text-muted);
  border-bottom: 1.5px solid var(--text-muted);
  transform: translate(-50%, -65%) rotate(45deg);
  transition: transform 0.2s ease;
}

.curriculum__session[open] .curriculum__chevron::before {
  transform: translate(-50%, -35%) rotate(-135deg);
}

.curriculum__body {
  padding: 0 0 var(--space-md);
}

.curriculum__body ul {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}

@media (min-width: 640px) {
  .curriculum__body ul { grid-template-columns: 1fr 1fr; }
}

.curriculum__body li {
  font-size: 0.88rem;
  color: var(--text-muted);
  padding: var(--space-xs) 0;
  padding-left: 1.2em;
  position: relative;
  line-height: 1.6;
}

.curriculum__body li::before {
  content: "\2192";
  position: absolute;
  left: 0;
  color: var(--text-muted);
}

.curriculum__body li strong {
  color: var(--text);
  font-weight: 600;
}

/* --- Included --- */
.included h2 {
  margin-bottom: var(--space-sm);
}

.included-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xs);
}

@media (min-width: 640px) {
  .included-grid { grid-template-columns: 1fr 1fr; }
}

.included-grid li {
  list-style: none;
  font-size: 0.92rem;
  color: var(--text-muted);
  padding: var(--space-xs) 0;
  padding-left: 1.6em;
  position: relative;
}

.included-grid li::before {
  content: "\2192";
  position: absolute;
  left: 0;
  color: var(--text-muted);
}

.included-grid li strong {
  color: var(--text);
}

/* --- Fit --- */
.fit {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

@media (min-width: 640px) {
  .fit { grid-template-columns: 1fr 1fr; }
}

.fit__col {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: var(--space-md);
}

.fit__col h3 {
  margin-bottom: var(--space-md);
  font-size: 1.15rem;
}

.fit__col ul {
  list-style: none;
}

.fit__col ul li {
  font-size: 0.92rem;
  color: var(--text-muted);
  padding: var(--space-xs) 0;
  padding-left: 1.4em;
  position: relative;
  border-bottom: 1px solid var(--border);
}

.fit__col ul li:last-child {
  border-bottom: none;
}

.fit__col.yes li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}

.fit__col.no li::before {
  content: "\00d7";
  position: absolute;
  left: 0;
  color: var(--text-muted);
  font-weight: 700;
  font-size: 1.1em;
}

/* --- CTA --- */
.enroll {
  text-align: center;
}

.enroll .container {
  max-width: 640px;
}

.enroll h2 {
  margin-bottom: var(--space-md);
}

.enroll__details {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: var(--space-lg);
}

.enroll__price {
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.3em;
  letter-spacing: -0.02em;
}

.enroll__vat {
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--text-muted);
}

.enroll__note {
  font-size: 0.85rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto var(--space-lg);
}

.enroll__custom {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: var(--space-lg);
}

.enroll__custom a {
  color: var(--text);
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

.enroll__custom a:hover {
  color: var(--accent);
}

.enroll__divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: var(--space-lg) auto 0;
  max-width: 160px;
}

.notify {
  text-align: center;
  padding: var(--space-md) 0 var(--space-xl);
}

.notify__intro {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: var(--space-md);
}

.notify__form {
  display: flex;
  gap: var(--space-xs);
  justify-content: center;
  align-items: center;
}

.notify__input {
  font-family: var(--font-body);
  font-size: 0.85rem;
  padding: 0.6em 0.9em;
  border: 1px solid var(--border);
  border-radius: 4px;
  background: var(--bg);
  color: var(--text);
  width: 200px;
}

.notify__input:focus {
  outline: none;
  border-color: var(--accent);
}

@media (max-width: 639px) {
  .notify__form {
    flex-direction: column;
  }

  .notify__input {
    width: 100%;
  }

  .notify__form .btn {
    width: 100%;
  }
}

.notify__consent {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: var(--space-sm);
}

.notify__consent a {
  color: var(--text-muted);
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

.notify__consent a:hover {
  color: var(--text);
}

.btn.btn--outline {
  background: transparent;
  color: var(--text-muted);
  border: 1px solid var(--border);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 0.85em 2.4em;
}

.btn.btn--outline:hover {
  color: var(--text);
  border-color: var(--text);
}

.btn {
  display: inline-block;
  background: #1e2a3a;
  color: #f5f4f0;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 0.85em 2.4em;
  border: none;
  border-radius: 4px;
  text-decoration: none;
  transition: opacity 0.15s;
  letter-spacing: -0.01em;
  cursor: pointer;
}

.btn--light {
  background: var(--bg);
  color: var(--text);
  font-size: 1rem;
  padding: 1em 3em;
}

.btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.btn:hover {
  opacity: 0.85;
}


/* --- Footer --- */
.footer {
  border-top: 1px solid var(--border);
  padding: var(--space-xl) 0 0;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  padding-bottom: var(--space-xl);
}

@media (min-width: 640px) {
  .footer__grid {
    grid-template-columns: 2fr 1fr 1fr;
  }
}

.footer__brand {
  max-width: 300px;
}

.footer__logo {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  display: block;
  margin-bottom: var(--space-xs);
}

.footer__tagline {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.footer__col {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.footer__heading {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text);
  margin-bottom: 0.2rem;
}

.footer__col a {
  font-size: 0.85rem;
  color: var(--text-muted);
  transition: color 0.2s;
}

.footer__col a:hover {
  color: var(--text);
}

.footer__bottom {
  border-top: 1px solid var(--border);
  padding: var(--space-md) 0;
  font-size: 0.78rem;
  color: var(--text-muted);
  text-align: center;
}

.footer__bottom a {
  color: var(--text-muted);
  transition: color 0.2s;
}

.footer__bottom a:hover {
  color: var(--text);
}

.footer__sep {
  margin: 0 0.4em;
}

/* --- Legal Pages --- */
.legal {
  padding: var(--space-xxl) 0 var(--space-xl);
}

.legal h1 {
  margin-bottom: var(--space-lg);
}

.legal__content {
  max-width: 700px;
}

.legal__content h2 {
  font-size: 1.1rem;
  margin-top: var(--space-lg);
  margin-bottom: var(--space-sm);
}

.legal__content p,
.legal__content li {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

.legal__content ul {
  padding-left: 1.2em;
  margin-bottom: var(--space-sm);
}

.legal__content a {
  color: var(--text);
  text-decoration: underline;
}

.legal__content a:hover {
  color: var(--text-muted);
}

.legal__content em {
  font-size: 0.85rem;
}

/* --- Thank You --- */
.thank-you {
  padding: var(--space-xxl) 0 var(--space-xl);
  text-align: center;
}

.thank-you h1 {
  margin-bottom: var(--space-sm);
}

.thank-you__subtitle {
  color: var(--text-muted);
  font-size: 1.1rem;
  max-width: 540px;
  margin: 0 auto var(--space-xl);
}

.thank-you__steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
  max-width: 720px;
  margin: 0 auto var(--space-xl);
  text-align: left;
}

@media (min-width: 640px) {
  .thank-you__steps { grid-template-columns: repeat(3, 1fr); }
}

.thank-you__step {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: var(--space-md);
}

.thank-you__step-number {
  display: inline-block;
  width: 1.8em;
  height: 1.8em;
  line-height: 1.8em;
  text-align: center;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--bg);
  background: var(--accent);
  border-radius: 50%;
  margin-bottom: var(--space-xs);
}

.thank-you__step h3 {
  font-size: 1.05rem;
  margin-bottom: var(--space-xs);
}

.thank-you__step p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.thank-you__details {
  max-width: 480px;
  margin: 0 auto var(--space-lg);
  text-align: left;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: var(--space-md);
}

.thank-you__details p {
  font-size: 0.92rem;
  color: var(--text-muted);
  margin-bottom: var(--space-xs);
}

.thank-you__details p:last-child {
  margin-bottom: 0;
}

.thank-you__details strong {
  color: var(--text);
}

/* --- Responsive spacing --- */
@media (max-width: 639px) {
  section {
    padding: var(--space-lg) 0;
  }
  .hero {
    padding: var(--space-xl) 0 var(--space-lg);
  }
  .container {
    padding: 0 var(--space-sm);
  }
  .timeline {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .timeline .container {
    min-width: 520px;
  }
  .timeline__label {
    font-size: 0.75rem;
  }
  #intro-viz {
    display: none;
  }
}

/* ==========================================================================
   Framework Page
   ========================================================================== */

/* --- Framework Hero --- */
.framework-hero {
  padding: var(--space-md) 0 var(--space-xl);
}

.framework-hero h1 {
  margin-bottom: var(--space-xs);
}

.framework-hero__subtitle {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-bottom: var(--space-md);
}

.framework-hero__layout {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

@media (min-width: 640px) {
  .framework-hero__layout {
    flex-direction: row;
    align-items: flex-start;
  }
}

.framework-hero__visual {
  flex-shrink: 0;
  width: 440px;
  aspect-ratio: 11 / 10;
  display: flex;
  justify-content: flex-start;
  margin-left: -20px;
}

.framework-hero__visual canvas {
  width: 100% !important;
  height: 100% !important;
}

.framework-hero__visual img {
  width: 100%;
  height: auto;
}

@media (max-width: 639px) {
  .framework-hero__visual {
    width: 180px;
    margin: 0 auto;
  }
}

.framework-hero__text {
  flex: 1;
  min-width: 0;
}

.framework-hero__intro {
  color: var(--text-muted);
  font-size: 0.935rem;
  line-height: 1.7;
  text-align: justify;
}

/* --- Framework Hero: Lead + Pillar Rotator --- */
.framework-hero__lead {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-bottom: var(--space-md);
  line-height: 1.6;
}

.pillar-rotator {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.pillar-rotator__item {
  padding: 0.75rem 1rem;
  border-left: 3px solid var(--border);
  border-radius: 0 6px 6px 0;
  cursor: pointer;
  transition: background 0.3s, border-color 0.3s, opacity 0.4s;
}

.pillar-rotator--has-active .pillar-rotator__item:not(.pillar-rotator__item--active) {
  opacity: 0.35;
}

.pillar-rotator__item:hover {
  background: rgba(0,0,0,0.02);
}

.pillar-rotator__item--active {
  border-left-color: var(--pillar-color, var(--accent));
  background: rgba(0,0,0,0.03);
}

.pillar-rotator__item--active .pillar-rotator__letter {
  background: var(--pillar-color);
  color: #fff;
}

.pillar-rotator__header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.pillar-rotator__letter {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--pillar-color);
  background: transparent;
  border: 2px solid var(--pillar-color);
  transition: background 0.3s, color 0.3s;
}

.pillar-rotator__name {
  display: block;
  font-weight: 600;
  font-size: 0.95rem;
  line-height: 1.2;
  color: var(--text);
}

.pillar-rotator__oneliner {
  display: block;
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.4;
}

.pillar-rotator__detail {
  margin-top: 0.5rem;
  padding: 0 0 0 2.75rem;
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.pillar-rotator__item--integrated {
  border-left-color: var(--pillar-color, var(--accent));
  opacity: 0.6;
}

.pillar-rotator__closing {
  margin-top: var(--space-md);
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.65;
  cursor: pointer;
}

/* Pillar border color via CSS custom property on the item */
.pillar-rotator__item:nth-child(1) { --pillar-color: #2563eb; }
.pillar-rotator__item:nth-child(2) { --pillar-color: #d97706; }
.pillar-rotator__item:nth-child(3) { --pillar-color: #16a34a; }

/* --- Highlight span (purple background) --- */
.fw-highlight {
  background: linear-gradient(120deg, rgba(196,181,253,0.2) 0%, rgba(196,181,253,0.33) 100%);
  border-radius: 3px;
  padding: 1px 5px;
  margin: 0 -2px;
}

/* --- Table of contents --- */
.fw-toc {
  margin-top: var(--space-lg);
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem var(--space-sm);
  font-size: 0.85rem;
  color: var(--text-muted);
}

.fw-toc__label {
  font-weight: 600;
}

.fw-toc a {
  text-decoration: underline;
  text-underline-offset: 0.2em;
  transition: color 0.2s;
}

.fw-toc a:hover {
  color: var(--text);
}

/* --- Pillars --- */
.fw-pillars {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.fw-pillar {
  border-left: 2px solid var(--border);
  padding: var(--space-md) var(--space-md);
  border-radius: 0 4px 4px 0;
  background: rgba(0,0,0,0.015);
}

.fw-pillar--potential { border-color: rgba(37,99,235,0.6); }
.fw-pillar--accountability { border-color: rgba(217,119,6,0.6); }
.fw-pillar--control { border-color: rgba(22,163,74,0.6); }

.fw-pillar__title {
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0;
}

.fw-pillar__subtitle {
  font-style: italic;
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-top: 0.25rem;
}

.fw-pillar__body {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-top: var(--space-xs);
}

.fw-pillar__stakeholders {
  font-size: 0.82rem;
  color: var(--text-muted);
  opacity: 0.7;
  margin-top: var(--space-xs);
}

/* --- Interdependent --- */
/* --- Callouts (colored left border) --- */
.fw-callouts {
  display: grid;
  gap: var(--space-sm);
}

.fw-callout {
  border-left: 2px solid var(--border);
  padding-left: var(--space-md);
}

.fw-callout p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

.fw-callout--potential { border-color: rgba(37,99,235,0.6); }
.fw-callout--accountability { border-color: rgba(217,119,6,0.6); }
.fw-callout--control { border-color: rgba(22,163,74,0.6); }

/* --- Inside Each Pillar accordion --- */
.fw-accordion {
  display: flex;
  flex-direction: column;
}

.fw-pillar-detail {
  border-left: 3px solid var(--pillar-color, var(--border));
  padding-left: var(--space-md);
  margin-bottom: var(--space-md);
}

.fw-pillar-detail__header {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding: var(--space-sm) 0;
  cursor: pointer;
  list-style: none;
  user-select: none;
}

.fw-pillar-detail__header::-webkit-details-marker {
  display: none;
}

.fw-pillar-detail__header::marker {
  content: '';
}

.fw-pillar-detail__letter {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--pillar-color);
  flex-shrink: 0;
  width: 2.2rem;
  text-align: center;
}

.fw-pillar-detail__title {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text);
  flex: 1;
}

.fw-pillar-detail__chevron {
  flex-shrink: 0;
  width: 1rem;
  height: 1rem;
  position: relative;
}

.fw-pillar-detail__chevron::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0.45rem;
  height: 0.45rem;
  border-right: 1.5px solid var(--text-muted);
  border-bottom: 1.5px solid var(--text-muted);
  transform: translate(-50%, -65%) rotate(45deg);
  transition: transform 0.2s ease;
}

.fw-pillar-detail[open] .fw-pillar-detail__chevron::before {
  transform: translate(-50%, -35%) rotate(-135deg);
}

.fw-pillar-detail__body {
  padding: 0 0 var(--space-md);
}

.fw-pillar-detail__body ul {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}

@media (min-width: 640px) {
  .fw-pillar-detail__body ul { grid-template-columns: 1fr 1fr; }
}

.fw-pillar-detail__body li {
  font-size: 0.88rem;
  color: var(--text-muted);
  padding: var(--space-xs) 0;
  padding-left: 1.2em;
  position: relative;
  line-height: 1.6;
}

.fw-pillar-detail__body li::before {
  content: "\2192";
  position: absolute;
  left: 0;
  color: var(--text-muted);
}

.fw-pillar-detail__body li strong {
  color: var(--text);
  font-weight: 600;
}

.fw-legend {
  margin-top: 0;
  border-left: 3px solid var(--border);
  padding-left: var(--space-md);
}

.fw-legend__header {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-sm) 0;
  cursor: pointer;
  list-style: none;
  user-select: none;
}

.fw-legend__header::-webkit-details-marker { display: none; }
.fw-legend__header::marker { content: ''; }

.fw-legend__title {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
}

.fw-legend__sub {
  font-size: 0.78rem;
  color: var(--text-muted);
  flex: 1;
}

.fw-legend__sub a {
  text-decoration: underline;
  text-underline-offset: 0.15em;
  text-decoration-color: var(--border);
}

.fw-legend__sub a:hover {
  color: var(--text);
  text-decoration-color: var(--accent);
}

.fw-legend__body {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-sm);
  padding-bottom: var(--space-md);
}

@media (min-width: 640px) {
  .fw-legend__body { grid-template-columns: 1fr 1fr 1fr; }
}

.fw-legend__dim h4 {
  font-size: 0.8rem !important;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.2rem;
}

.fw-legend__dim p {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 0.3rem;
}

.fw-scale {
  display: flex;
  flex-wrap: wrap;
  gap: 0.15rem 0;
  margin-top: 0.3rem;
}

.fw-scale > span {
  font-size: 0.68rem;
  font-family: 'IBM Plex Mono', ui-monospace, monospace;
  color: var(--text-muted);
  opacity: 0.75;
  white-space: nowrap;
}

.fw-scale > span::after {
  content: " → ";
  opacity: 0.4;
}

.fw-scale > span:last-child::after {
  content: none;
}

/* --- Questions --- */
.fw-questions {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.fw-question-group__title {
  font-weight: 700;
  margin-bottom: var(--space-sm);
}

.fw-question-list {
  display: flex;
  flex-direction: column;
}

.fw-question {
  border-top: 1px solid var(--border);
}

.fw-question:last-child {
  border-bottom: 1px solid var(--border);
}

.fw-question summary {
  cursor: pointer;
  list-style: none;
  user-select: none;
  font-size: 0.95rem;
  padding: var(--space-sm) 0;
  padding-left: 1.2em;
  position: relative;
  color: var(--text-muted);
  transition: color 0.2s;
}

.fw-question summary:hover {
  color: var(--text);
}

.fw-question summary::-webkit-details-marker { display: none; }
.fw-question summary::marker { content: ''; }

.fw-question summary::before {
  content: '+';
  position: absolute;
  left: 0;
  opacity: 0.4;
  font-weight: 400;
}

.fw-question[open] summary::before {
  content: '\2212';
}

.fw-question p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
  padding: 0 0 var(--space-sm) 1.2em;
}

.fw-question a {
  text-decoration: underline;
  text-underline-offset: 0.15em;
  transition: color 0.2s;
}

.fw-question a:hover {
  color: var(--text);
}

/* --- Question Preview --- */
.fw-question-preview {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
  margin-bottom: var(--space-md);
}

@media (min-width: 640px) {
  .fw-question-preview { grid-template-columns: 1fr 1fr 1fr; }
}

.fw-question-preview__pillar {
  display: flex;
  gap: var(--space-sm);
}

.fw-question-preview__letter {
  flex-shrink: 0;
  width: 1.6rem;
  height: 1.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.8rem;
  color: var(--pillar-color);
  border: 1.5px solid var(--pillar-color);
  border-radius: 3px;
  margin-top: 0.15rem;
}

.fw-question-preview__pillar ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.fw-question-preview__pillar li {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.fw-question-preview__link {
  font-size: 0.95rem;
}

.fw-question-preview__link a {
  color: var(--text);
  text-decoration: underline;
  text-decoration-color: var(--border);
  text-underline-offset: 2px;
  transition: text-decoration-color 0.2s;
}

.fw-question-preview__link a:hover {
  text-decoration-color: var(--accent);
}

/* --- Iterative --- */
.fw-iterative {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
}

.fw-iterative__closing {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
  max-width: 720px;
}

.fw-iterative__closing a {
  text-decoration: underline;
  text-underline-offset: 0.15em;
  transition: color 0.2s;
}

.fw-iterative__closing a:hover {
  color: var(--text);
}

/* --- Framework CTA --- */
.fw-cta {
  text-align: center;
  padding: var(--space-xl) 0;
}

.fw-cta .container {
  max-width: 640px;
}

.fw-cta__text {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: var(--space-lg);
}

.fw-cta__secondary {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: var(--space-md);
}

.fw-cta__secondary a {
  color: var(--text);
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

.fw-cta__secondary a:hover {
  color: var(--accent);
}

/* ==========================================================================
   Programme Page
   ========================================================================== */

.programme-hero {
  padding: var(--space-xl) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.programme-shimmer {
  position: absolute;
  inset: -50%;
  pointer-events: none;
  overflow: hidden;
  filter: blur(120px);
  opacity: 0.5;
}

.programme-shimmer__a,
.programme-shimmer__b,
.programme-shimmer__c {
  position: absolute;
  border-radius: 50%;
}

.programme-shimmer__a {
  width: 70%;
  height: 200%;
  top: -60%;
  left: -15%;
  background: radial-gradient(circle, rgba(45,74,111,0.20) 0%, transparent 55%);
  animation: shimmer-a 10s ease-in-out infinite;
}

.programme-shimmer__b {
  width: 65%;
  height: 200%;
  top: -50%;
  right: -20%;
  background: radial-gradient(circle, rgba(90,130,168,0.18) 0%, transparent 55%);
  animation: shimmer-b 8s ease-in-out infinite;
}

.programme-shimmer__c {
  width: 60%;
  height: 180%;
  bottom: -50%;
  left: 20%;
  background: radial-gradient(circle, rgba(45,74,111,0.15) 0%, transparent 55%);
  animation: shimmer-c 12s ease-in-out infinite;
}

@keyframes shimmer-a {
  0%, 100% { transform: translate(0, 0); }
  33%      { transform: translate(30%, 18%); }
  66%      { transform: translate(10%, -12%); }
}

@keyframes shimmer-b {
  0%, 100% { transform: translate(0, 0); }
  40%      { transform: translate(-25%, 15%); }
  70%      { transform: translate(-10%, -10%); }
}

@keyframes shimmer-c {
  0%, 100% { transform: translate(0, 0); }
  50%      { transform: translate(20%, -18%); }
}

.programme-hero .container {
  position: relative;
  z-index: 1;
}

.programme-hero h1 {
  max-width: 860px;
  margin: 0 auto var(--space-md);
}

.programme-hero__subtitle {
  max-width: 640px;
  margin: 0 auto var(--space-md);
  color: var(--text-muted);
  font-size: 1.15rem;
  line-height: 1.7;
}

.programme-hero__target {
  max-width: 700px;
  margin: 0 auto var(--space-lg);
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.7;
}

/* --- Quick Facts --- */
.quick-facts {
  padding: var(--space-lg) 0;
}

.quick-facts__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}

@media (min-width: 640px) {
  .quick-facts__grid {
    grid-template-columns: repeat(5, 1fr);
  }
}

.quick-facts__item {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: var(--space-sm) var(--space-md);
  border-left: 1px solid var(--border);
}

.quick-facts__item:first-child {
  border-left: none;
}

@media (max-width: 639px) {
  .quick-facts__item {
    border-left: none;
    border-bottom: 1px solid var(--border);
    padding: var(--space-sm) 0;
  }
  .quick-facts__item:last-child {
    border-bottom: none;
  }
}

.quick-facts__label {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
}

.quick-facts__value {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
}

.quick-facts__note {
  font-size: 0.78rem;
  font-weight: 400;
  color: var(--text-muted);
}

/* --- Programme Spotlight (homepage) --- */
.programme-spotlight {
  text-align: center;
  padding: var(--space-xl) 0;
  background: var(--bg-elevated);
}

.programme-spotlight .section-intro {
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.programme-spotlight h2 {
  margin-bottom: var(--space-sm);
}

.programme-spotlight__details {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: var(--space-lg);
}

.programme-spotlight__sep {
  margin: 0 0.4em;
}

/* ==========================================================================
   Offerings Section
   ========================================================================== */

.offerings__link {
  display: inline-block;
  margin-top: var(--space-sm);
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--accent);
  text-decoration: none;
  transition: opacity 0.2s;
}

.offerings__link:hover {
  opacity: 0.7;
}

/* ==========================================================================
   Blog
   ========================================================================== */

/* --- Blog Index --- */
.blog-index {
  padding: var(--space-xl) 0;
}

.blog-index h1 {
  margin-bottom: var(--space-xs);
}

.blog-list {
  display: flex;
  flex-direction: column;
}

.blog-list__item {
  border-top: 1px solid var(--border);
}

.blog-list__item:last-child {
  border-bottom: 1px solid var(--border);
}

.blog-list__link {
  display: block;
  padding: var(--space-md) 0;
  transition: background 0.15s;
}

.blog-list__link:hover .blog-list__title {
  color: var(--accent);
}

.blog-list__date {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.03em;
}

.blog-list__title {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text);
  margin: 0.2rem 0 0.3rem;
  transition: color 0.2s;
}

.blog-list__summary {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 640px;
}

.blog-list__empty {
  padding: var(--space-lg) 0;
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* --- Blog Post --- */
.blog-post {
  padding: var(--space-xl) 0;
}

.blog-post__header {
  margin-bottom: var(--space-xl);
}

.blog-post__back {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
  display: inline-block;
  margin-bottom: var(--space-md);
}

.blog-post__back:hover {
  color: var(--text);
}

.blog-post__date {
  display: block;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.03em;
  margin-bottom: var(--space-xs);
}

.blog-post__header h1 {
  margin-bottom: var(--space-sm);
}

.blog-post__summary {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 640px;
}

.blog-post__content {
  max-width: 700px;
}

.blog-post__content p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: var(--space-md);
}

.blog-post__content h2 {
  font-size: 1.2rem;
  margin-top: var(--space-lg);
  margin-bottom: var(--space-sm);
}

.blog-post__content h3 {
  font-size: 1.05rem;
  margin-top: var(--space-lg);
  margin-bottom: var(--space-sm);
}

.blog-post__content a {
  color: var(--text);
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

.blog-post__content a:hover {
  color: var(--accent);
}

.blog-post__content ul,
.blog-post__content ol {
  padding-left: 1.4em;
  margin-bottom: var(--space-md);
}

.blog-post__content li {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 0.3rem;
}

.blog-post__content blockquote {
  border-left: 2px solid var(--border);
  padding-left: var(--space-md);
  margin: var(--space-md) 0;
}

.blog-post__content blockquote p {
  font-style: italic;
}

.blog-post__content strong {
  color: var(--text);
}

/* --- Consultancy --- */
.consult-hero {
  padding: var(--space-xl) 0 var(--space-lg);
}

.consult-hero h1 {
  max-width: 800px;
  margin-bottom: var(--space-sm);
}

.consult-how h2,
.consult-engage h2,
.consult-typical h2 {
  margin-bottom: var(--space-sm);
}

.consult-engage__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
  margin-top: var(--space-md);
}

@media (min-width: 640px) {
  .consult-engage__grid { grid-template-columns: 1fr 1fr; }
}

.consult-engage__item {
  border-left: 2px solid var(--border);
  padding-left: var(--space-md);
}

.consult-engage__item h3 {
  font-size: 1.05rem;
  margin-bottom: var(--space-xs);
}

.consult-engage__item p {
  color: var(--text-muted);
  font-size: 0.92rem;
}

.consult-cta {
  text-align: center;
}

.consult-cta h2 {
  margin-bottom: var(--space-sm);
}

.consult-cta__intro {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 580px;
  margin: 0 auto var(--space-md);
}

.consult-cta__speaking {
  color: var(--text-muted);
  font-size: 0.92rem;
  margin-bottom: var(--space-md);
}

.consult-engage__detail {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: var(--space-xs);
}

.consult-engage__detail a {
  color: var(--accent);
  font-weight: 500;
}

.workshop-cta__alt {
  color: var(--text-muted);
  font-size: 0.92rem;
  margin-top: var(--space-md);
}

.workshop-cta__alt a {
  color: var(--accent);
  font-weight: 500;
}

/* --- Workshop --- */
.workshop-hero {
  padding: var(--space-xl) 0 var(--space-lg);
}

.workshop-hero h1 {
  max-width: 640px;
  margin-bottom: var(--space-sm);
}

.workshop-what h2,
.workshop-format h2,
.workshop-included h2 {
  margin-bottom: var(--space-sm);
}

/* --- Knowledge Base --- */
.kb-hero {
  padding: var(--space-xl) 0 var(--space-lg);
}

.kb-hero h1 {
  max-width: 840px;
  margin-bottom: var(--space-md);
}

.kb-pillar {
  border-top: 1px solid var(--border);
}

.kb-pillar h2 {
  font-size: clamp(1.15rem, 2.5vw, 1.35rem);
  margin-bottom: var(--space-xs);
}

.kb-pillar h2 .letter {
  margin-right: 0.15em;
}

.kb-pillar--potential h2 .letter { color: #2563eb; }
.kb-pillar--accountability h2 .letter { color: #d97706; }
.kb-pillar--control h2 .letter { color: #16a34a; }

.kb-pillar__desc {
  color: var(--text-muted);
  font-size: 0.95rem;
  max-width: 680px;
  margin-bottom: var(--space-md);
}

.kb-list {
  display: grid;
  gap: var(--space-xs);
  list-style: none;
  counter-reset: kb-question;
}

.kb-list__item {
  border-left: 2px solid var(--border);
  padding-left: var(--space-md);
  counter-increment: kb-question;
}

.kb-pillar--potential .kb-list__item { border-left-color: rgba(37,99,235,0.4); }
.kb-pillar--accountability .kb-list__item { border-left-color: rgba(217,119,6,0.4); }
.kb-pillar--control .kb-list__item { border-left-color: rgba(22,163,74,0.4); }

.kb-list__link {
  display: block;
}

.kb-list__link:hover .kb-list__question {
  color: var(--accent);
}

.kb-list__question {
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1.5;
  transition: color 0.15s;
  display: block;
}

.kb-list__question::before {
  content: counter(kb-question) ". ";
  color: var(--text-muted);
  font-weight: 600;
  font-size: 0.85rem;
}

.kb-list__summary {
  color: var(--text-muted);
  font-size: 0.88rem;
  margin-top: 0.2em;
}

.kb-list__empty {
  color: var(--text-muted);
  font-size: 0.9rem;
  font-style: italic;
}

.kb-label--potential { color: #2563eb; }
.kb-label--accountability { color: #d97706; }
.kb-label--control { color: #16a34a; }

.kb-entry__header {
  padding-top: var(--space-lg);
  margin-bottom: var(--space-lg);
}

.kb-entry__header h1 {
  font-size: clamp(1.3rem, 3vw, 1.7rem);
  max-width: 680px;
  line-height: 1.35;
}

/* --- About --- */
.about-hero {
  padding: var(--space-xl) 0 var(--space-lg);
}

.about-hero h1 {
  max-width: 640px;
  margin-bottom: var(--space-sm);
}

.about-mission h2 {
  margin-bottom: var(--space-md);
}

.about-mission__body {
  max-width: 680px;
}

.about-mission__body p {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.7;
  text-align: justify;
}

.about-cta__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
}

@media (max-width: 639px) {
  .about-cta__grid { grid-template-columns: 1fr; }
}

.about-cta__item h3 {
  margin-bottom: var(--space-xs);
}

.about-cta__item p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: var(--space-md);
}

/* --- KB Entry CTA --- */
.kb-entry__cta {
  margin-top: var(--space-xl);
  padding: var(--space-lg);
  background: var(--bg-elevated);
  border-radius: 6px;
  text-align: center;
}

.kb-entry__cta p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: var(--space-md);
}

/* --- KB Closing CTA --- */
.kb-closing-cta {
  text-align: center;
  padding: var(--space-xl) 0;
}

.kb-closing-cta p {
  color: var(--text-muted);
  font-size: 1rem;
  margin-bottom: var(--space-md);
}

/* --- Testimonials --- */
.testimonials {
  text-align: center;
  padding: var(--space-xl) 0;
}

.testimonial {
  max-width: 600px;
  margin: var(--space-md) auto 0;
  border-left: none;
  padding: 0;
}

.testimonial p {
  font-size: 1.1rem;
  font-style: italic;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: var(--space-sm);
}

.testimonial cite {
  font-size: 0.85rem;
  font-style: normal;
  color: var(--text-muted);
}

/* --- Consultancy Typical Engagement --- */
.consult-typical__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
  margin-top: var(--space-md);
}

@media (max-width: 639px) {
  .consult-typical__grid { grid-template-columns: 1fr; }
}

.consult-typical__item {
  border-left: 2px solid var(--border);
  padding-left: var(--space-md);
}

.consult-typical__item strong {
  display: block;
  font-size: 0.9rem;
  margin-bottom: 0.25rem;
}

.consult-typical__item p {
  color: var(--text-muted);
  font-size: 0.92rem;
}

/* --- Framework CTA Buttons --- */
.fw-cta__buttons {
  display: flex;
  gap: var(--space-sm);
  justify-content: center;
  flex-wrap: wrap;
}

/* --- Fit Regional Note --- */
.fit__regional {
  margin-top: var(--space-lg);
  font-size: 0.88rem;
  color: var(--text-muted);
  max-width: 680px;
}

/* --- Enroll Alt Link --- */
.enroll__alt {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-top: var(--space-md);
  text-align: center;
}

.enroll__alt a {
  color: var(--text);
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

.enroll__alt a:hover {
  color: var(--accent);
}
