﻿/* ============================================================
   TalentJam — Shared Design System
   Light theme: warm cream/white backgrounds, lavender primary
   Accent overrides: green (growth sections), orange (performance sections)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;400;500;600;700&display=swap');

/* ── Variables ─────────────────────────────────────────────── */
:root {
  --navy:       #e8e2db;
  --navy-deep:  #0f172a;          /* kept dark — code blocks only     */
  --navy-mid:   #faf7fd;          /* very light tan — tinted section bg */
  --lavender:      #9681c9;       /* brand lavender  150,129,201       */
  --lavender-lt:   #b0a0ff;       /* brand lavender light  176,160,255 */
  --lavender-pale: #dfd3e7;       /* brand lavender extra light  223,211,231 */
  --lavender-vlt:  #cabfff;       /* brand lavender very light   202,191,255 */
  --lavender-dim:  rgba(139,124,213,0.08);
  --accent-growth:     #2e8b58;   /* growth sections — green (tick colour, keep) */
  --accent-growth-lt:  #3daa6e;
  --accent-growth-dim: rgba(46,139,88,0.08);
  --green:     #9bd384;           /* brand green base   155,211,132    */
  --green-lt:  #bddba9;           /* brand green light  189,219,169    */
  --green-vlt: #d9e6ca;           /* brand green very light  217,230,202 */
  --accent-perf:       #f2a05f;   /* brand orange  242,160,95         */
  --accent-perf-lt:    #febb86;   /* brand orange light  254,187,134  */
  --accent-perf-dim:   rgba(242,160,95,0.08);
  --purple:     #4a344f;          /* brand purple — text + footer     */
  --white:      #ffffff;
  --off-white:  #f6f1eb;          /* light tan — page background  246,241,235 */
  --muted:      rgba(74,52,79,0.55);
  --border:     #e7daca;          /* tan base  231,218,202            */
  --border-dark: rgba(74,52,79,0.15);
  --card-bg:    #ffffff;
  --card-hover: #faf7fd;          /* very light tan — hover + tinted  250,247,253 */
  --radius:     12px;
  --radius-lg:  20px;
  --shadow:     0 4px 24px rgba(0,0,0,0.08);
  --shadow-lg:  0 12px 48px rgba(0,0,0,0.12);
  --font-sans:  'Space Grotesk', sans-serif;
  --font-serif: 'Space Grotesk', sans-serif;
  --max-w:      1160px;
  --transition: 0.22s cubic-bezier(0.4,0,0.2,1);
}

/* ── Reset ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.65;
  color: var(--purple);
  background: var(--off-white);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }

/* ── Layout helpers ────────────────────────────────────────── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.section { padding: 88px 0; }
.section--light { background: var(--off-white); color: #4a344f; }
.section--tinted { background: var(--navy-mid); }
.section--dark { background: var(--navy-deep); color: var(--white); }

/* ── Navigation ────────────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: var(--navy-mid);
  border-bottom: 1px solid var(--border);
  min-height: 68px;
  display: flex; align-items: center;
  padding: 8px 0;
}
.nav__inner {
  max-width: var(--max-w); margin: 0 auto; padding: 0 24px;
  width: 100%;
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px;
}
.nav__logo img { height: 40px; width: auto; display: block; flex-shrink: 0; mix-blend-mode: multiply; }
.nav__links {
  display: flex; align-items: center; gap: 2px;
  list-style: none; flex-wrap: nowrap;
}
.nav__links a {
  font-size: 13px; font-weight: 500; letter-spacing: 0.01em;
  padding: 6px 10px; border-radius: 6px;
  color: rgba(74,52,79,0.60);
  text-align: center;
  transition: color var(--transition);
  white-space: normal;
}
.nav__links a:hover {
  color: var(--lavender);
}
.nav__links a.active {
  color: var(--accent-perf);
  border-bottom: 2px solid var(--accent-perf);
}
.nav__cta {
  background: var(--lavender) !important;
  color: var(--white) !important;
  padding: 8px 16px !important;
  border-radius: 8px !important;
  font-weight: 600 !important;
  white-space: nowrap !important;
  border-bottom: none !important;
  transition: background var(--transition), transform var(--transition) !important;
}
.nav__cta:hover { background: var(--purple) !important; color: var(--white) !important; transform: translateY(-1px); }
.nav__cta.active { background: var(--accent-perf) !important; border-bottom: none !important; }
.nav__hamburger { display: none; cursor: pointer; flex-direction: column; gap: 5px; flex-shrink: 0; }
.nav__hamburger span { width: 22px; height: 2px; background: var(--purple); border-radius: 2px; transition: var(--transition); }

/* ── Page top padding (below fixed nav) ───────────────────── */
.page-top { padding-top: 68px; }

/* ── Hero ──────────────────────────────────────────────────── */
.hero {
  padding: 100px 0 80px;
  background: var(--navy-mid);
  position: relative; overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; top: -120px; right: -120px;
  width: 560px; height: 560px;
  background: radial-gradient(circle, rgba(139,124,213,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute; bottom: -80px; left: -80px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(74,52,79,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.hero__inner {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center;
}
.hero__eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--lavender); background: var(--lavender-dim);
  padding: 6px 14px; border-radius: 999px;
  border: 1px solid rgba(139,124,213,0.18);
  margin-bottom: 20px;
}
.hero__h1 {
  font-family: var(--font-serif);
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #4a344f;
  margin-bottom: 20px;
}
.hero__h1 em { font-style: normal; color: var(--accent-perf); }
.hero__lead {
  font-size: 18px; font-weight: 400; line-height: 1.7;
  color: rgba(74,52,79,0.65);
  margin-bottom: 36px;
}
.hero__actions { display: flex; gap: 12px; flex-wrap: wrap; }
.hero__image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
}
.hero__image img { width: 100%; object-fit: cover; }

/* ── Hero carousel ──────────────────────────────────────────── */
.hero__carousel { display: flex; flex-direction: column; gap: 14px; }
.carousel__slide { display: none; width: 100%; }
.carousel__slide.active { display: block; animation: carouselFade 0.4s ease; }
@keyframes carouselFade { from { opacity: 0; } to { opacity: 1; } }
.carousel__dots { display: flex; justify-content: center; gap: 8px; }
.carousel__dot {
  width: 9px; height: 9px; border-radius: 50%; padding: 0;
  border: 2px solid rgba(74,52,79,0.30);
  background: transparent; cursor: pointer;
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
}
.carousel__dot.active, .carousel__dot:hover {
  background: var(--lavender);
  border-color: var(--lavender);
  transform: scale(1.3);
}

/* ── Buttons ────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-sans); font-size: 15px; font-weight: 600;
  padding: 13px 26px; border-radius: 10px;
  border: none; cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}
.btn--primary { background: var(--lavender); color: var(--white); }
.btn--primary:hover { background: var(--lavender-lt); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(139,124,213,0.30); }
.btn--outline { background: transparent; color: #4a344f; border: 1.5px solid rgba(74,52,79,0.22); }
.btn--outline:hover { border-color: var(--lavender); color: var(--lavender); transform: translateY(-2px); }
.btn--outline-dark { background: transparent; color: #4a344f; border: 1.5px solid rgba(0,0,0,0.20); }
.btn--outline-dark:hover { border-color: var(--lavender); color: var(--lavender); }
.btn--sm { font-size: 13px; padding: 9px 18px; border-radius: 8px; }

/* ── Section headers ─────────────────────────────────────────── */
.section-header { margin-bottom: 56px; }
.section-header--center { text-align: center; }
.eyebrow {
  display: inline-block;
  font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--lavender); margin-bottom: 12px;
}
.eyebrow--light { color: rgba(74,52,79,0.45); }
.h2 {
  font-family: var(--font-serif);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  line-height: 1.15; letter-spacing: -0.02em;
  color: #4a344f; margin-bottom: 16px;
}
.h2--dark { color: #4a344f; }
.h2 em { font-style: normal; color: var(--accent-perf); }
.lead {
  font-size: 17px; line-height: 1.7;
  color: rgba(74,52,79,0.65);
  max-width: 600px;
}
.lead--dark { color: rgba(74,52,79,0.65); }
.lead--center { margin: 0 auto; }

/* ── Cards ──────────────────────────────────────────────────── */
.card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
}
.card:hover { background: var(--card-hover); border-color: rgba(139,124,213,0.18); transform: translateY(-3px); }
.card--light { background: var(--white); border: 1px solid var(--border-dark); color: #4a344f; }
.card--light:hover { box-shadow: var(--shadow); border-color: rgba(139,124,213,0.30); }
.card--lavender { border-left: 3px solid var(--lavender); }
.card__icon {
  width: 44px; height: 44px; border-radius: 10px;
  background: var(--lavender-dim);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; margin-bottom: 16px;
  flex-shrink: 0;
}
.card__title { font-size: 17px; font-weight: 600; margin-bottom: 8px; }
.card__body { font-size: 14px; line-height: 1.6; color: rgba(74,52,79,0.60); }
.card--light .card__body { color: rgba(74,52,79,0.65); }

/* ── Grid layouts ────────────────────────────────────────────── */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.grid-auto { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }

/* ── Feature row (image + text) ──────────────────────────────── */
.feature-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 72px;
  align-items: center; padding: 72px 0;
  border-bottom: 1px solid var(--border);
}
.feature-row:last-child { border-bottom: none; }
.feature-row--reverse .feature-row__visual { order: 2; }
.feature-row--reverse .feature-row__content { order: 1; }
.feature-row__visual {
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-lg); border: 1px solid var(--border);
}
.feature-row__visual img { width: 100%; }
.feature-row__eyebrow { margin-bottom: 12px; }
.feature-row__h3 {
  font-family: var(--font-serif);
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 700;
  line-height: 1.2; letter-spacing: -0.01em;
  color: #4a344f; margin-bottom: 16px;
}
.feature-row__body { font-size: 15px; color: rgba(74,52,79,0.65); line-height: 1.75; margin-bottom: 20px; }
.feature-row__list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.feature-row__list li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 14px; color: rgba(74,52,79,0.70);
}
.feature-row__list li::before {
  content: '✓'; color: var(--accent-growth); font-weight: 700; flex-shrink: 0; margin-top: 1px;
}

/* ── Tier cards ──────────────────────────────────────────────── */
.tier-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.tier-card {
  background: var(--card-bg); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 36px;
  display: flex; flex-direction: column;
  transition: all var(--transition);
}
.tier-card:hover { background: var(--card-hover); transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.tier-card--featured {
  border-color: var(--green-lt);
  background: var(--lavender-dim);
  position: relative;
}
.tier-card--featured::before {
  content: 'Most popular';
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--green-lt); color: var(--white);
  font-size: 11px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 4px 14px; border-radius: 999px;
}
.tier-card__name { font-size: 13px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--lavender); margin-bottom: 8px; }
.tier-card__title { font-family: var(--font-serif); font-size: 26px; font-weight: 700; color: #4a344f; margin-bottom: 12px; }
.tier-card__price { font-size: 13px; font-weight: 400; color: var(--muted); margin-bottom: 4px; }
.tier-card__price-note { font-size: 13px; color: var(--muted); margin-bottom: 24px; }
.tier-card__desc { font-size: 14px; color: rgba(74,52,79,0.65); line-height: 1.65; margin-bottom: 24px; }
.tier-card__features { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 32px; flex: 1; }
.tier-card__features li { display: flex; align-items: flex-start; gap: 10px; font-size: 13px; color: rgba(74,52,79,0.72); }
.tier-card__features li::before { content: '✓'; color: var(--accent-growth); font-weight: 700; flex-shrink: 0; }

/* ── Stats bar ────────────────────────────────────────────────── */
.stats-bar {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1px; background: var(--border);
  border: 1px solid var(--border); border-radius: var(--radius);
  overflow: hidden;
}
.stat { background: var(--navy-mid); padding: 32px 24px; text-align: center; }
.stat__num {
  font-family: var(--font-serif); font-size: 40px; font-weight: 700;
  color: var(--green-lt); line-height: 1; margin-bottom: 6px;
}
.stat__label { font-size: 13px; color: rgba(74,52,79,0.60); line-height: 1.4; }

/* ── Callout / CTA band ──────────────────────────────────────── */
.cta-band {
  background: var(--purple);
  border-radius: var(--radius-lg); padding: 64px;
  text-align: center; position: relative; overflow: hidden;
}
.cta-band::before {
  content: ''; position: absolute; top: -40%; right: -10%;
  width: 400px; height: 400px;
  background: rgba(255,255,255,0.06); border-radius: 50%;
  pointer-events: none;
}
.cta-band__h2 { font-family: var(--font-serif); font-size: clamp(26px, 4vw, 38px); font-weight: 700; color: var(--white); margin-bottom: 16px; }
.cta-band__body { font-size: 17px; color: rgba(255,255,255,0.82); margin-bottom: 32px; max-width: 560px; margin-left: auto; margin-right: auto; }
.cta-band__actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.btn--white { background: var(--white); color: var(--lavender); }
.btn--white:hover { background: var(--off-white); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.15); }
.btn--ghost-white { background: transparent; color: var(--white); border: 1.5px solid rgba(255,255,255,0.4); }
.btn--ghost-white:hover { border-color: var(--white); background: rgba(255,255,255,0.1); }

/* ── Tag / badge ─────────────────────────────────────────────── */
.tag {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 11px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase;
  background: var(--lavender-dim); color: var(--lavender);
  padding: 4px 10px; border-radius: 999px;
  border: 1px solid rgba(139,124,213,0.18);
}
.tag--purple { background: rgba(74,52,79,0.08); color: #4a344f; border-color: rgba(74,52,79,0.20); }
.tag--amber { background: rgba(180,100,20,0.08); color: #b46414; border-color: rgba(180,100,20,0.20); }

/* ── Table ─────────────────────────────────────────────────────── */
.tj-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.tj-table th { background: var(--navy-mid); padding: 14px 20px; text-align: left; font-weight: 600; font-size: 12px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--muted); border-bottom: 1px solid var(--border); }
.tj-table td { padding: 16px 20px; border-bottom: 1px solid var(--border); color: rgba(74,52,79,0.80); vertical-align: top; }
.tj-table tr:last-child td { border-bottom: none; }
.tj-table tr:hover td { background: var(--card-hover); }

/* ── Divider ─────────────────────────────────────────────────── */
.divider { border: none; border-top: 1px solid var(--border); margin: 0; }

/* ── Footer ──────────────────────────────────────────────────── */
.footer {
  background: var(--purple);
  border-top: 1px solid rgba(255,255,255,0.10);
  padding: 64px 0 32px;
}
.footer__grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer__brand img { height: 38px; margin-bottom: 16px; }
.footer__tagline { font-size: 13px; color: rgba(255,255,255,0.55); line-height: 1.7; max-width: 260px; }
.footer__heading { font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.40); margin-bottom: 16px; }
.footer__links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer__links a { font-size: 13px; color: rgba(255,255,255,0.60); transition: color var(--transition); }
.footer__links a:hover { color: var(--white); }
.footer__bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.10); font-size: 12px; color: rgba(255,255,255,0.35); }
.footer__bottom a { color: rgba(255,255,255,0.45); }
.footer__bottom a:hover { color: var(--white); }

/* ── Accordion ────────────────────────────────────────────────── */
.accordion { border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.accordion__item { border-bottom: 1px solid var(--border); }
.accordion__item:last-child { border-bottom: none; }
.accordion__trigger {
  width: 100%; display: flex; justify-content: space-between; align-items: center;
  padding: 20px 24px; background: none; border: none; cursor: pointer; text-align: left;
  font-family: var(--font-sans); font-size: 15px; font-weight: 600; color: #4a344f;
  transition: background var(--transition);
}
.accordion__trigger:hover { background: var(--card-hover); }
.accordion__chevron { font-size: 18px; color: var(--lavender); transition: transform var(--transition); flex-shrink: 0; }
.accordion__item.open .accordion__chevron { transform: rotate(180deg); }
.accordion .accordion__body { display: none; padding: 0 24px 20px; font-size: 14px; color: rgba(74,52,79,0.65); line-height: 1.7; }
.accordion .accordion__item.open .accordion__body { display: block; }

/* ── Glossary <details> accordion — light theme overrides ────── */
/* These override the per-page inline styles (higher specificity)  */
.section--tinted summary.accordion__trigger,
.section summary.accordion__trigger { color: rgba(74,52,79,0.90); }
.section--tinted details[open] > summary.accordion__trigger,
.section details[open] > summary.accordion__trigger { color: var(--lavender); }
.section--tinted .accordion__body p,
.section .accordion__body p { color: rgba(74,52,79,0.72); }

/* ── Pill nav (sub-nav) ───────────────────────────────────────── */
.pill-nav { display: flex; gap: 8px; flex-wrap: wrap; }
.pill-nav__item {
  font-size: 13px; font-weight: 500; padding: 7px 16px; border-radius: 999px;
  background: var(--white); border: 1px solid var(--border);
  color: rgba(74,52,79,0.65); cursor: pointer;
  transition: all var(--transition);
}
.pill-nav__item:hover, .pill-nav__item.active { background: var(--lavender-dim); border-color: rgba(139,124,213,0.30); color: var(--lavender); }

/* ── Breadcrumb ───────────────────────────────────────────────── */
.breadcrumb { display: flex; gap: 6px; align-items: center; font-size: 12px; color: rgba(74,52,79,0.45); margin-bottom: 20px; }
.breadcrumb a { color: rgba(74,52,79,0.50); }
.breadcrumb a:hover { color: var(--lavender); }
.breadcrumb__sep { opacity: 0.4; }

/* ── Page hero (interior pages) ──────────────────────────────── */
.page-hero {
  padding: 80px 0 64px;
  background: var(--navy-mid);
  border-bottom: 1px solid var(--border);
}
.page-hero__h1 {
  font-family: var(--font-serif);
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 700;
  line-height: 1.12; letter-spacing: -0.02em;
  color: #4a344f; margin-bottom: 16px;
}
.page-hero__lead { font-size: 17px; color: rgba(74,52,79,0.65); max-width: 600px; line-height: 1.7; }

/* ── Code / API ────────────────────────────────────────────────── */
.code-block {
  background: var(--navy-deep); border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius); padding: 20px 24px;
  font-family: 'JetBrains Mono', 'Fira Code', monospace; font-size: 13px;
  color: #a8d8c0; overflow-x: auto; line-height: 1.6;
}
.code-block .comment { color: #8899aa; }
.code-block .key { color: #80b4f8; }
.code-block .val { color: #ffd080; }
.code-block .str { color: #a8d8c0; }

/* ── Responsive ──────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero__inner { gap: 40px; }
  .feature-row { gap: 48px; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .tier-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .section { padding: 64px 0; }
  .hero { padding: 72px 0 56px; }
  .hero__inner { grid-template-columns: 1fr; }
  .hero__image { display: none; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .feature-row { grid-template-columns: 1fr; gap: 32px; }
  .feature-row--reverse .feature-row__visual { order: -1; }
  .feature-row--reverse .feature-row__content { order: 0; }
  .stats-bar { grid-template-columns: 1fr 1fr; }
  .cta-band { padding: 48px 28px; }
  .footer__grid { grid-template-columns: 1fr; gap: 32px; }
  .footer__bottom { flex-direction: column; gap: 8px; text-align: center; }
  .nav__links { display: none; }
  .nav__hamburger { display: flex; }
  .nav__links.open {
    display: flex; flex-direction: column; align-items: flex-start;
    position: absolute; top: 68px; left: 0; right: 0;
    background: var(--white); padding: 16px 24px 24px;
    border-bottom: 1px solid var(--border); gap: 4px;
  }
}

/* ── Utility ─────────────────────────────────────────────────── */
.text-teal { color: var(--lavender); }
.text-muted { color: rgba(74,52,79,0.55); }
.text-center { text-align: center; }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.mb-8 { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-48 { margin-bottom: 48px; }
.gap-8 { gap: 8px; }
.flex { display: flex; }
.flex-center { display: flex; align-items: center; }
.flex-between { display: flex; justify-content: space-between; align-items: center; }
.col-gap-16 { column-gap: 16px; }

/* ── Animations ─────────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-up { animation: fadeUp 0.5s ease forwards; }
.fade-up-1 { animation-delay: 0.05s; opacity: 0; }
.fade-up-2 { animation-delay: 0.15s; opacity: 0; }
.fade-up-3 { animation-delay: 0.25s; opacity: 0; }
.fade-up-4 { animation-delay: 0.35s; opacity: 0; }

/* ── Accent overrides: growth sections (green) ───────────────── */
/* Applied to sections about career development, pathways, L&D    */
.section--growth {
  --lavender:       var(--accent-growth);
  --lavender-lt: var(--accent-growth-lt);
  --lavender-dim:   var(--accent-growth-dim);
  --lavender-pale:  rgba(46,139,88,0.05);
}

/* ── Accent overrides: performance sections (orange) ─────────── */
/* Applied to sections about performance, engagement, assessment  */
#engage, .section--perf {
  --lavender:       var(--accent-perf);
  --lavender-lt: var(--accent-perf-lt);
  --lavender-dim:   var(--accent-perf-dim);
  --lavender-pale:  rgba(196,124,30,0.05);
}
