/* ============================================
   STORINT.ORG — Shared Stylesheet
   Colours: #1800ad (navy), #006ab6 (blue),
            #02b3e0 (cyan), #9ee8fb (light cyan),
            #d9e4e7 (pale), #fff
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;1,9..40,300&family=DM+Mono:wght@400;500&display=swap');

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

:root {
  --navy:   #1800ad;
  --blue:   #006ab6;
  --cyan:   #02b3e0;
  --light:  #9ee8fb;
  --pale:   #d9e4e7;
  --off:    #f4f6f8;
  --text:   #0f0e1a;
  --muted:  #5a5a72;
  --border: #dde2e8;
  --white:  #ffffff;
  --radius: 10px;
  --radius-lg: 14px;

  /* Foundational toolkit pillar palette */
  --pill-com:       #d97b2b;
  --pill-com-dark:  #894d16;
  --pill-com-pale:  #fae3cf;
  --pill-com-tint:  #fdf3e8;

  --pill-osi:       #2d7db5;
  --pill-osi-dark:  #1a4e74;
  --pill-osi-pale:  #b9d4e7;
  --pill-osi-tint:  #e6eff7;

  --pill-att:       #c74040;
  --pill-att-dark:  #7a2020;
  --pill-att-pale:  #e9bfc0;
  --pill-att-tint:  #fbeded;

  --pill-sto:       #6b4c9b;
  --pill-sto-dark:  #3e2b5e;
  --pill-sto-pale:  #d8cce7;
  --pill-sto-tint:  #f1ecf6;

  --pill-jou:       #578851;
  --pill-jou-dark:  #2f5530;
  --pill-jou-pale:  #cfe2cd;
  --pill-jou-tint:  #eaf3e8;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--white);
}

/* ── NAV ── */
.nav {
  background: var(--navy);
  padding: 0 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 62px;
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-logo {
  text-decoration: none;
  display: flex;
  align-items: center;
}

.nav-logo-img {
  height: 40px;
  width: auto;
  display: block;
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  color: rgba(255,255,255,.75);
  font-size: 14px;
  text-decoration: none;
  padding-bottom: 3px;
  border-bottom: 2px solid transparent;
  transition: color .2s, border-color .2s;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--light);
  border-bottom-color: var(--light);
}

/* ── HERO ── */
.hero {
  background: var(--navy);
  padding: 5.5rem 2.5rem 6rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 120%, #02b3e022 0%, transparent 70%);
  pointer-events: none;
}

.hero-wave {
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 56px;
  background: var(--off);
  clip-path: ellipse(55% 100% at 50% 100%);
}

.eyebrow {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  letter-spacing: .18em;
  color: var(--light);
  text-transform: uppercase;
  margin-bottom: 1.1rem;
}

.hero h1 {
  color: var(--white);
  font-size: 44px;
  font-weight: 300;
  line-height: 1.15;
  max-width: 660px;
  margin: 0 auto 1.25rem;
  letter-spacing: -.01em;
}

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

.hero-sub {
  color: rgba(255,255,255,.72);
  font-size: 17px;
  line-height: 1.7;
  max-width: 490px;
  margin: 0 auto 1.25rem;
}

.hero-toolkit-desc {
  color: rgba(255,255,255,.5);
  font-size: 14px;
  line-height: 1.65;
  max-width: 420px;
  margin: 0 auto 2rem;
  font-style: italic;
}

.hero-feedback-link {
  display: block;
  margin-top: 1.25rem;
  color: rgba(255,255,255,.5);
  font-size: 13px;
  text-decoration: none;
  transition: color .18s;
}
.hero-feedback-link:hover { color: var(--light); }

.hero-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── BUTTONS ── */
.btn {
  display: inline-block;
  padding: 11px 24px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  transition: opacity .18s, transform .12s;
  border: none;
  font-family: inherit;
}
.btn:hover { opacity: .88; transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn-cyan  { background: var(--cyan);  color: var(--white); }
.btn-ghost { background: transparent; color: var(--white); border: 1.5px solid rgba(255,255,255,.4); }
.btn-navy  { background: var(--navy);  color: var(--white); }
.btn-full  { width: 100%; text-align: center; padding: 13px; }

/* ── SECTIONS ── */
.section     { padding: 4rem 2.5rem; background: var(--off); }
.section-alt { padding: 4rem 2.5rem; background: var(--white); }
.inner       { max-width: 840px; margin: 0 auto; }
.inner-sm    { max-width: 640px; margin: 0 auto; }

.section-label {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: .16em;
  color: var(--blue);
  text-transform: uppercase;
  margin-bottom: .5rem;
}

.section-label.center,
.section-title.center { text-align: center; }

.section-title {
  font-size: 26px;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 2rem;
  letter-spacing: -.01em;
}

/* ── PILLARS ── */
.pillar-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 14px;
}

.pillar-card {
  background: var(--white);
  border-radius: var(--radius);
  border: .5px solid var(--border);
  padding: 1.2rem 1.5rem;
}

.pillar-pip {
  width: 8px; height: 8px;
  border-radius: 50%;
  margin-bottom: .7rem;
}

.pillar-card h3 { font-size: 15px; font-weight: 500; margin-bottom: 5px; }
.pillar-card p  { font-size: 13px; color: var(--muted); line-height: 1.6; }

/* ── STATS ── */
.stat-strip {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1rem;
  display: flex;
  margin-top: 2.5rem;
  overflow: hidden;
}

.stat         { flex: 1; text-align: center; padding: .5rem 1rem; }
.stat-n       { font-size: 32px; font-weight: 300; color: var(--light); letter-spacing: -.02em; }
.stat-l       { font-size: 12px; color: rgba(255,255,255,.6); margin-top: 4px; line-height: 1.4; }
.stat-divider { width: 1px; background: rgba(255,255,255,.12); flex-shrink: 0; }

/* ── MISSION BLOCK ── */
.mission-card {
  background: var(--off);
  border-radius: var(--radius);
  border-left: 4px solid var(--cyan);
  padding: 1.5rem 1.75rem;
  margin-bottom: 2rem;
}
.mission-card p { font-size: 16px; line-height: 1.8; color: var(--text); font-weight: 300; }

/* ── TEAM ── */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 12px;
}

.team-card {
  background: var(--white);
  border-radius: var(--radius);
  border: .5px solid var(--border);
  padding: 1.25rem 1rem;
  text-align: center;
}

.avatar {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--light);
  display: flex; align-items: center; justify-content: center;
  font-size: 15px; font-weight: 500;
  margin: 0 auto .75rem;
}

/* ── If you have a photo, replace .avatar with an <img> ── */
.avatar img { width: 100%; height: 100%; border-radius: 50%; object-fit: cover; }

.team-card h4    { font-size: 13px; font-weight: 500; }
.team-role       { font-size: 11px; color: var(--blue); font-weight: 500; margin-top: 3px; letter-spacing: .04em; }
.team-bio        { font-size: 11px; color: var(--muted); margin-top: 6px; line-height: 1.5; font-style: italic; }

.uni-pill {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--off);
  border: .5px solid var(--border);
  border-radius: 8px;
  padding: .65rem 1.1rem;
  margin-top: 1.5rem;
  font-size: 12px;
  color: var(--muted);
}

/* ── TOOLKIT PAGE ── */
.canva-fullpage {
  height: calc(100vh - 62px);
  width: 100%;
}
.canva-fullpage iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}


/* ── FEEDBACK NUDGE ── */
.nudge {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 2.25rem 2rem;
  text-align: center;
}
.nudge h3 { color: var(--white); font-size: 22px; font-weight: 300; margin-bottom: .6rem; }
.nudge p  { color: rgba(255,255,255,.68); font-size: 14px; line-height: 1.65; max-width: 400px; margin: 0 auto 1.5rem; }

/* ── FEEDBACK PAGE ── */
.google-form-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: .5px solid var(--border);
  overflow: hidden;
}

/* ── Replace src below with your Google Form embed URL ── */
.google-form-wrap iframe {
  display: block;
  width: 100%;
  height: 860px;
  border: none;
}

.form-note {
  font-size: 12px;
  color: var(--muted);
  text-align: center;
  margin-top: 1rem;
  line-height: 1.6;
}

/* ── FOOTER ── */
footer {
  background: var(--navy);
  padding: 1.75rem 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-logo {
  text-decoration: none;
  display: flex;
  align-items: center;
}

.footer-logo-img {
  height: 32px;
  width: auto;
  display: block;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.footer-link {
  display: flex; align-items: center; gap: 7px;
  color: rgba(255,255,255,.65);
  font-size: 13px;
  text-decoration: none;
  transition: color .18s;
}
.footer-link:hover { color: var(--light); }

.footer-copy { color: rgba(255,255,255,.35); font-size: 12px; }

/* ── SECTION BODY (prose blocks) ── */
.section-body {
  font-size: 16px;
  line-height: 1.75;
  color: var(--text);
  max-width: 720px;
  margin-bottom: 1.1rem;
  font-weight: 300;
}
.section-body strong { font-weight: 500; }

.section h2.section-title,
.section-alt h2.section-title {
  font-size: 30px;
  font-weight: 400;
  letter-spacing: -.015em;
  margin-bottom: 1.25rem;
  line-height: 1.2;
}

/* ── CALLOUT ── */
.callout {
  background: var(--white);
  border-left: 4px solid var(--cyan);
  border-radius: var(--radius);
  padding: 1.4rem 1.6rem;
  margin: 1.8rem 0 .5rem;
  box-shadow: 0 1px 3px rgba(15,14,26,.04);
}
.callout p { font-size: 16px; line-height: 1.7; color: var(--text); }
.callout strong { font-weight: 500; color: var(--navy); }

/* ── AUDIENCE FUNNEL ── */
.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 18px;
  margin: 2rem 0 2.5rem;
}

.audience-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem 1.7rem 1.5rem;
  text-decoration: none;
  color: var(--text);
  transition: transform .2s, box-shadow .2s, border-color .2s;
  position: relative;
  overflow: hidden;
}
.audience-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 10px;
  background: currentColor;
}
.audience-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(15,14,26,.10);
}

/* Humanitarian — orange (community pillar) */
.audience-card-com {
  color: var(--pill-com);
  background: var(--pill-com-pale);
  border-color: var(--pill-com);
}
.audience-card-com:hover { box-shadow: 0 12px 32px rgba(217,123,43,.22); }
.audience-card-com .audience-tag { color: var(--pill-com-dark); }
.audience-card-com h3 { color: var(--pill-com-dark); }
.audience-card-com p { color: var(--pill-com-dark); }
.audience-card-com .audience-cta { color: var(--pill-com-dark); }

/* OSINT — blue (osint pillar) */
.audience-card-osi {
  color: var(--pill-osi);
  background: var(--pill-osi-pale);
  border-color: var(--pill-osi);
}
.audience-card-osi:hover { box-shadow: 0 12px 32px rgba(45,125,181,.24); }
.audience-card-osi .audience-tag { color: var(--pill-osi-dark); }
.audience-card-osi h3 { color: var(--pill-osi-dark); }
.audience-card-osi p { color: var(--pill-osi-dark); }
.audience-card-osi .audience-cta { color: var(--pill-osi-dark); }

/* Journalism — soft green */
.audience-card-jou {
  color: var(--pill-jou);
  background: var(--pill-jou-pale);
  border-color: var(--pill-jou);
}
.audience-card-jou:hover { box-shadow: 0 12px 32px rgba(87,136,81,.24); }
.audience-card-jou .audience-tag { color: var(--pill-jou-dark); }
.audience-card-jou h3 { color: var(--pill-jou-dark); }
.audience-card-jou p { color: var(--pill-jou-dark); }
.audience-card-jou .audience-cta { color: var(--pill-jou-dark); }

.audience-tag {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: .16em;
  text-transform: uppercase;
  margin-bottom: .7rem;
  display: block;
  font-weight: 500;
}

.audience-card h3 {
  font-size: 19px;
  font-weight: 500;
  letter-spacing: -.005em;
  margin-bottom: .55rem;
  line-height: 1.25;
}

.audience-card p {
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--text);
  margin-bottom: 1.2rem;
  flex: 1;
  font-weight: 300;
}

.audience-cta {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .01em;
}

/* ── FOUNDATIONAL STRIP ── */
.foundational-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  background: var(--white);
  border: 1px dashed var(--border);
  border-radius: var(--radius-lg);
  padding: 1.4rem 1.75rem;
  flex-wrap: wrap;
}
.foundational-text { flex: 1; min-width: 280px; }
.foundational-label {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: .16em;
  color: var(--blue);
  text-transform: uppercase;
  margin-bottom: 4px;
}
.foundational-title {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 4px;
  letter-spacing: -.005em;
}
.foundational-desc {
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.55;
}
.foundational-actions {
  display: flex;
  gap: .65rem;
  flex-wrap: wrap;
}

.btn-ghost-dark {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid var(--border);
}
.btn-ghost-dark:hover { border-color: var(--navy); }

/* ── TOOLKIT PAGES ── */
.toolkit-header {
  background: var(--off);
  padding: 2.5rem 2.5rem 0;
  position: relative;
}
.toolkit-header-inner {
  max-width: 980px;
  margin: 0 auto;
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 3rem 3rem 3.25rem;
  position: relative;
  overflow: hidden;
}
.toolkit-header-inner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 60% at 90% 100%, #02b3e022 0%, transparent 70%);
  pointer-events: none;
}
.toolkit-header-inner > * { position: relative; z-index: 1; }
.toolkit-tag {
  display: inline-block;
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  letter-spacing: .18em;
  color: var(--light);
  text-transform: uppercase;
  padding: 5px 12px;
  border: 1px solid rgba(158,232,251,.4);
  border-radius: 100px;
  margin-bottom: 1.25rem;
}
.toolkit-header h1 {
  font-size: 42px;
  font-weight: 300;
  line-height: 1.15;
  letter-spacing: -.015em;
  margin-bottom: 1rem;
  max-width: 720px;
}
.toolkit-header h1 em {
  font-style: normal;
  font-weight: 500;
  color: var(--light);
}
.toolkit-header-sub {
  color: rgba(255,255,255,.72);
  font-size: 17px;
  line-height: 1.65;
  max-width: 620px;
}
.toolkit-meta {
  display: flex;
  gap: 1.5rem;
  margin-top: 1.75rem;
  flex-wrap: wrap;
}
.toolkit-meta-item {
  font-size: 12px;
  color: rgba(255,255,255,.55);
  font-family: 'DM Mono', monospace;
  letter-spacing: .04em;
}
.toolkit-meta-item strong {
  color: var(--light);
  font-weight: 400;
}

/* Toolkit body layout */
.toolkit-body {
  background: var(--off);
  padding: 2rem 2.5rem 5rem;
}
.toolkit-layout {
  max-width: 980px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 2.5rem;
  align-items: flex-start;
}

.toolkit-sidebar {
  position: sticky;
  top: 80px;
  align-self: flex-start;
}
.toolkit-sidebar-label {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: .16em;
  color: var(--blue);
  text-transform: uppercase;
  margin-bottom: .8rem;
}
.toolkit-sidebar ol {
  list-style: none;
  padding: 0;
  counter-reset: tk;
}
.toolkit-sidebar li {
  counter-increment: tk;
  margin-bottom: .55rem;
  font-size: 13.5px;
  line-height: 1.4;
}
.toolkit-sidebar li a {
  display: flex;
  gap: .55rem;
  color: var(--text);
  text-decoration: none;
  padding: 6px 0;
  border-left: 2px solid transparent;
  padding-left: .7rem;
  margin-left: -.7rem;
  transition: color .15s, border-color .15s;
}
.toolkit-sidebar li a::before {
  content: counter(tk, decimal-leading-zero);
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  color: var(--muted);
  font-weight: 400;
  flex-shrink: 0;
}
.toolkit-sidebar li a:hover {
  color: var(--navy);
  border-left-color: var(--cyan);
}

.toolkit-content {
  min-width: 0;
}

.toolkit-section {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.25rem 2.5rem;
  margin-bottom: 1.5rem;
  border: .5px solid var(--border);
}
.toolkit-section-eyebrow {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: .16em;
  color: var(--blue);
  text-transform: uppercase;
  margin-bottom: .6rem;
}
.toolkit-section h2 {
  font-size: 26px;
  font-weight: 400;
  letter-spacing: -.01em;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: var(--navy);
}
.toolkit-section h3 {
  font-size: 17px;
  font-weight: 500;
  margin: 1.6rem 0 .6rem;
  color: var(--text);
  letter-spacing: -.005em;
}
.toolkit-section p {
  font-size: 15px;
  line-height: 1.75;
  color: var(--text);
  margin-bottom: 1rem;
  font-weight: 300;
}
.toolkit-section p strong { font-weight: 500; }
.toolkit-section ul {
  margin: .5rem 0 1rem 1.2rem;
}
.toolkit-section li {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text);
  margin-bottom: .35rem;
  font-weight: 300;
}

/* Pillar-themed sections — each maps onto a foundational toolkit pillar.
   Colour-blocked: tinted background, full-strength top border, white inner cards. */
.toolkit-section.pillar-com {
  background: var(--pill-com-tint);
  border: 1px solid var(--pill-com-pale);
  border-top: 6px solid var(--pill-com);
}
.toolkit-section.pillar-com .toolkit-section-eyebrow,
.toolkit-section.pillar-com h2,
.toolkit-section.pillar-com h3 { color: var(--pill-com-dark); }

.toolkit-section.pillar-osi {
  background: var(--pill-osi-tint);
  border: 1px solid var(--pill-osi-pale);
  border-top: 6px solid var(--pill-osi);
}
.toolkit-section.pillar-osi .toolkit-section-eyebrow,
.toolkit-section.pillar-osi h2,
.toolkit-section.pillar-osi h3 { color: var(--pill-osi-dark); }

.toolkit-section.pillar-att {
  background: var(--pill-att-tint);
  border: 1px solid var(--pill-att-pale);
  border-top: 6px solid var(--pill-att);
}
.toolkit-section.pillar-att .toolkit-section-eyebrow,
.toolkit-section.pillar-att h2,
.toolkit-section.pillar-att h3 { color: var(--pill-att-dark); }

.toolkit-section.pillar-sto {
  background: var(--pill-sto-tint);
  border: 1px solid var(--pill-sto-pale);
  border-top: 6px solid var(--pill-sto);
}
.toolkit-section.pillar-sto .toolkit-section-eyebrow,
.toolkit-section.pillar-sto h2,
.toolkit-section.pillar-sto h3 { color: var(--pill-sto-dark); }

/* Inner cards inside pillar sections invert: white on tint */
.toolkit-section[class*="pillar-"] .tk-two-card,
.toolkit-section[class*="pillar-"] .tk-three-card,
.toolkit-section[class*="pillar-"] .tk-stat,
.toolkit-section[class*="pillar-"] .tk-pipeline,
.toolkit-section[class*="pillar-"] .tk-checklist,
.toolkit-section[class*="pillar-"] .tk-format {
  background: var(--white);
  border: 1px solid rgba(15,14,26,.06);
}

/* Pillar-coloured tk-stat top border replaces the default cyan */
.toolkit-section.pillar-com .tk-stat { border-top: 3px solid var(--pill-com); }
.toolkit-section.pillar-osi .tk-stat { border-top: 3px solid var(--pill-osi); }
.toolkit-section.pillar-att .tk-stat { border-top: 3px solid var(--pill-att); }
.toolkit-section.pillar-sto .tk-stat { border-top: 3px solid var(--pill-sto); }
.toolkit-section.pillar-com .tk-stat .tk-stat-n { color: var(--pill-com-dark); }
.toolkit-section.pillar-osi .tk-stat .tk-stat-n { color: var(--pill-osi-dark); }
.toolkit-section.pillar-att .tk-stat .tk-stat-n { color: var(--pill-att-dark); }
.toolkit-section.pillar-sto .tk-stat .tk-stat-n { color: var(--pill-sto-dark); }

/* Pillar-coloured tk-three-card top border */
.toolkit-section.pillar-com .tk-three-card { border-top: 3px solid var(--pill-com); }
.toolkit-section.pillar-osi .tk-three-card { border-top: 3px solid var(--pill-osi); }
.toolkit-section.pillar-att .tk-three-card { border-top: 3px solid var(--pill-att); }
.toolkit-section.pillar-sto .tk-three-card { border-top: 3px solid var(--pill-sto); }

/* Pillar-coloured tk-two-card heading */
.toolkit-section.pillar-com .tk-two-card h4 { color: var(--pill-com-dark); }
.toolkit-section.pillar-osi .tk-two-card h4 { color: var(--pill-osi-dark); }
.toolkit-section.pillar-att .tk-two-card h4 { color: var(--pill-att-dark); }
.toolkit-section.pillar-sto .tk-two-card h4 { color: var(--pill-sto-dark); }
.toolkit-section.pillar-com .tk-three-card h4 { color: var(--pill-com-dark); }
.toolkit-section.pillar-osi .tk-three-card h4 { color: var(--pill-osi-dark); }
.toolkit-section.pillar-att .tk-three-card h4 { color: var(--pill-att-dark); }
.toolkit-section.pillar-sto .tk-three-card h4 { color: var(--pill-sto-dark); }

/* SVG embeds inside pillar sections sit on white panels for breathing room */
.toolkit-section[class*="pillar-"] .tk-svg-embed {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.4rem 1.5rem 1.2rem;
  border: 1px solid rgba(15,14,26,.06);
}

/* Format grid SVGs need extra room and shouldn't have the white panel since each SVG IS its own visual block */
.toolkit-section[class*="pillar-"] .tk-format-grid .tk-svg-embed {
  background: transparent;
  border: none;
  padding: 0;
}

/* Pillar tag - small chip identifying which foundational pillar */
.pillar-chip {
  display: inline-block;
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 100px;
  margin-bottom: 1rem;
  font-weight: 500;
}
.pillar-com .pillar-chip { background: var(--pill-com-pale); color: var(--pill-com-dark); }
.pillar-osi .pillar-chip { background: var(--pill-osi-pale); color: var(--pill-osi-dark); }
.pillar-att .pillar-chip { background: var(--pill-att-pale); color: var(--pill-att-dark); }
.pillar-sto .pillar-chip { background: var(--pill-sto-pale); color: var(--pill-sto-dark); }

/* SVG embed - centred, responsive, with a subtle frame */
.tk-svg-embed {
  margin: 1.4rem 0 1rem;
  text-align: center;
}
.tk-svg-embed img,
.tk-svg-embed object {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}
.tk-svg-embed-caption {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: .12em;
  color: var(--muted);
  text-transform: uppercase;
  margin-top: .65rem;
}

/* Three-format grid: side-by-side storytelling format SVGs */
.tk-format-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin: 1.4rem 0;
}
.tk-format-grid .tk-svg-embed { margin: 0; }
.tk-format-grid .tk-svg-embed img { width: 100%; height: auto; border-radius: 8px; }

/* Pillar mini-callout with pillar-themed border */
.pillar-com .tk-callout { border-left-color: var(--pill-com); background: var(--pill-com-tint); }
.pillar-osi .tk-callout { border-left-color: var(--pill-osi); background: var(--pill-osi-tint); }
.pillar-att .tk-callout { border-left-color: var(--pill-att); background: var(--pill-att-tint); }
.pillar-sto .tk-callout { border-left-color: var(--pill-sto); background: var(--pill-sto-tint); }

/* Pillar-themed quote */
.pillar-com .tk-quote { border-left-color: var(--pill-com); }
.pillar-osi .tk-quote { border-left-color: var(--pill-osi); }
.pillar-att .tk-quote { border-left-color: var(--pill-att); }
.pillar-sto .tk-quote { border-left-color: var(--pill-sto); }

/* Toolkit callouts and quotes */
.tk-callout {
  background: var(--off);
  border-left: 3px solid var(--cyan);
  border-radius: 8px;
  padding: 1rem 1.25rem;
  margin: 1.3rem 0;
}
.tk-callout p { font-size: 14.5px; line-height: 1.65; margin-bottom: 0; }

.tk-callout-navy {
  background: var(--navy);
  border: none;
  border-radius: var(--radius);
  padding: 1.4rem 1.65rem;
  margin: 1.5rem 0;
}
.tk-callout-navy p { color: var(--white); font-weight: 300; margin-bottom: 0; }
.tk-callout-navy strong { color: var(--light); font-weight: 500; }

.tk-quote {
  border-left: 3px solid var(--blue);
  padding: .25rem 0 .25rem 1.2rem;
  margin: 1.4rem 0;
}
.tk-quote p {
  font-size: 16px;
  font-style: italic;
  font-weight: 300;
  color: var(--text);
  line-height: 1.65;
  margin-bottom: .55rem;
}
.tk-quote cite {
  font-family: 'DM Mono', monospace;
  font-style: normal;
  font-size: 11px;
  letter-spacing: .06em;
  color: var(--muted);
  text-transform: uppercase;
}

/* Stat row */
.tk-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 1.4rem 0;
}
.tk-stat {
  background: var(--off);
  border-radius: var(--radius);
  padding: 1.1rem 1.25rem;
  border-top: 3px solid var(--cyan);
}
.tk-stat-n {
  font-size: 28px;
  font-weight: 400;
  color: var(--navy);
  letter-spacing: -.02em;
  line-height: 1;
  margin-bottom: .35rem;
}
.tk-stat-l {
  font-size: 12.5px;
  color: var(--muted);
  line-height: 1.45;
}
.tk-stat-src {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  color: var(--muted);
  letter-spacing: .04em;
  margin-top: .55rem;
  text-transform: uppercase;
}

/* Two-column blocks */
.tk-two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin: 1.2rem 0;
}
.tk-two-card {
  background: var(--off);
  border-radius: var(--radius);
  padding: 1.1rem 1.25rem;
}
.tk-two-card h4 {
  font-size: 13px;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: .4rem;
  font-family: 'DM Mono', monospace;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.tk-two-card p { font-size: 13.5px; line-height: 1.6; margin-bottom: 0; color: var(--muted); }

/* Three-column */
.tk-three {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 1.2rem 0;
}
.tk-three-card {
  background: var(--off);
  border-radius: var(--radius);
  padding: 1.1rem 1.2rem;
  border-top: 3px solid var(--cyan);
}
.tk-three-card h4 {
  font-size: 14px;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: .4rem;
}
.tk-three-card p { font-size: 13px; line-height: 1.6; margin-bottom: 0; color: var(--muted); }

/* Do/Don't grid */
.tk-do-dont {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin: 1.2rem 0;
}
.tk-do, .tk-dont {
  background: var(--off);
  border-radius: var(--radius);
  padding: 1.2rem 1.4rem;
}
.tk-do { border-top: 3px solid #1aa179; }
.tk-dont { border-top: 3px solid #c44a55; }
.tk-do h4, .tk-dont h4 {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-bottom: .8rem;
  color: var(--text);
}
.tk-do h4 { color: #14735a; }
.tk-dont h4 { color: #a13441; }
.tk-do ul, .tk-dont ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.tk-do li, .tk-dont li {
  position: relative;
  padding-left: 1.4rem;
  font-size: 13.5px;
  line-height: 1.55;
  margin-bottom: .55rem;
  color: var(--text);
  font-weight: 300;
}
.tk-do li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #14735a;
  font-weight: 500;
}
.tk-dont li::before {
  content: '✕';
  position: absolute;
  left: 0;
  color: #a13441;
  font-weight: 500;
}

/* Pipeline (4-step horizontal) */
.tk-pipeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin: 1.4rem 0;
  background: var(--off);
  border-radius: var(--radius);
  overflow: hidden;
  border: .5px solid var(--border);
}
.tk-step {
  padding: 1.2rem 1rem 1.1rem;
  position: relative;
  border-right: 1px dashed var(--border);
}
.tk-step:last-child { border-right: none; }
.tk-step-n {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  color: var(--blue);
  letter-spacing: .08em;
  margin-bottom: .35rem;
}
.tk-step h4 {
  font-size: 13.5px;
  font-weight: 500;
  margin-bottom: .35rem;
  color: var(--navy);
  letter-spacing: -.005em;
}
.tk-step p { font-size: 12.5px; line-height: 1.5; color: var(--muted); margin-bottom: 0; }

/* Format card (for video formats) */
.tk-format {
  background: var(--off);
  border-radius: var(--radius);
  padding: 1.4rem 1.5rem;
  margin-bottom: 1rem;
  border-left: 3px solid var(--cyan);
}
.tk-format-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  flex-wrap: wrap;
  gap: .5rem;
  margin-bottom: .55rem;
}
.tk-format-head h3 {
  font-size: 18px;
  font-weight: 500;
  color: var(--navy);
  margin: 0;
}
.tk-format-tag {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: .14em;
  color: var(--blue);
  text-transform: uppercase;
}
.tk-format p { margin-bottom: .8rem; }
.tk-format-flow {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: .8rem;
}
.tk-format-flow span {
  background: var(--white);
  border: .5px solid var(--border);
  border-radius: 100px;
  padding: 4px 11px;
  font-size: 11.5px;
  font-family: 'DM Mono', monospace;
  letter-spacing: .04em;
  color: var(--text);
}
.tk-format-flow span.tk-flow-arrow {
  border: none;
  padding: 4px 2px;
  background: transparent;
  color: var(--muted);
}

/* Checklist */
.tk-checklist {
  background: var(--off);
  border-radius: var(--radius);
  padding: 1.4rem 1.6rem;
  margin: 1.2rem 0;
}
.tk-checklist h4 {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: .8rem;
}
.tk-checklist ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.tk-checklist li {
  position: relative;
  padding-left: 1.7rem;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: .65rem;
  color: var(--text);
  font-weight: 300;
}
.tk-checklist li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 6px;
  width: 14px;
  height: 14px;
  border: 1.5px solid var(--cyan);
  border-radius: 3px;
}

/* Toolkit foot CTA */
.tk-foot {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 2rem 2.25rem;
  color: var(--white);
  margin-top: 2rem;
}
.tk-foot h3 { color: var(--white); font-size: 22px; font-weight: 300; margin-bottom: .55rem; }
.tk-foot p { color: rgba(255,255,255,.72); font-size: 14.5px; line-height: 1.65; margin-bottom: 1.2rem; }
.tk-foot .btn { margin-right: .55rem; }

/* ── STUB PAGES (humanitarian / journalism placeholder) ── */
.stub-body {
  background: var(--off);
  padding: 4rem 2.5rem 5rem;
  min-height: calc(100vh - 62px - 200px);
}
.stub-inner {
  max-width: 720px;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: .5px solid var(--border);
  padding: 2.5rem 2.75rem;
  text-align: center;
}
.stub-icon {
  width: 56px; height: 56px;
  background: var(--off);
  border: 1px dashed var(--cyan);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.2rem;
  font-family: 'DM Mono', monospace;
  font-size: 22px;
  color: var(--cyan);
}
.stub-inner h1 {
  font-size: 28px;
  font-weight: 400;
  letter-spacing: -.01em;
  margin-bottom: .8rem;
  color: var(--navy);
}
.stub-inner p {
  font-size: 15.5px;
  line-height: 1.7;
  color: var(--text);
  font-weight: 300;
  margin-bottom: 1rem;
}
.stub-inner .stub-eyebrow {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: .18em;
  color: var(--blue);
  text-transform: uppercase;
  margin-bottom: .85rem;
}
.stub-actions {
  display: flex;
  gap: .65rem;
  justify-content: center;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

/* ── RESPONSIVE ── */
@media (max-width: 880px) {
  .toolkit-layout { grid-template-columns: 1fr; gap: 1.5rem; }
  .toolkit-sidebar { position: relative; top: 0; background: var(--white); border-radius: var(--radius); padding: 1.2rem 1.4rem; border: .5px solid var(--border); }
  .audience-grid { grid-template-columns: 1fr; }
  .tk-two, .tk-do-dont { grid-template-columns: 1fr; }
  .tk-three { grid-template-columns: 1fr; }
  .tk-pipeline { grid-template-columns: 1fr 1fr; }
  .tk-step { border-right: 1px dashed var(--border); border-bottom: 1px dashed var(--border); }
  .tk-step:nth-child(2n) { border-right: none; }
  .tk-step:nth-last-child(-n+2) { border-bottom: none; }
}

@media (max-width: 640px) {
  .hero h1       { font-size: 30px; }
  .pillar-grid   { grid-template-columns: 1fr; }
  .team-grid     { grid-template-columns: repeat(2, 1fr); }
  .stat-strip    { flex-direction: column; }
  .stat-divider  { width: auto; height: 1px; }
  .nav           { padding: 0 1.25rem; }
  .hero          { padding: 3.5rem 1.25rem 4.5rem; }
  .section,
  .section-alt   { padding: 3rem 1.25rem; }
  footer         { flex-direction: column; align-items: flex-start; }
  .toolkit-header { padding: 2.5rem 1.25rem 3rem; }
  .toolkit-header h1 { font-size: 30px; }
  .toolkit-body { padding: 2rem 1.25rem 3rem; }
  .toolkit-section { padding: 1.5rem 1.4rem; }
  .tk-stats { grid-template-columns: 1fr; }
  .foundational-strip { flex-direction: column; align-items: flex-start; }
}
