/* ==========================================================================
   Purple Umbrella Foundation — Design System
   Palette: purple + light purple + white + grey only (brand brief §30)
   Type: Poppins throughout (brand brief §31)
   ========================================================================== */

:root {
  /* Brand palette — purple family (anchor) */
  --purple-900: #33124B;
  --purple-800: #44206A;
  --purple-700: #582C82;
  --purple-600: #6E3B9E;
  --purple-500: #8A5CC0;
  --purple-300: #C7A9E4;
  --purple-100: #F1E8FB;
  --purple-50:  #FAF6FE;

  /* Neutral grey family */
  --ink-900: #1C1B1F;
  --ink-700: #48474D;
  --ink-500: #6C6A71;
  --ink-300: #A3A1A8;

  --paper-0: #FFFFFF;
  --paper-50: #FAFAFB;
  --paper-100: #F2F1F4;
  --border-200: #E3E2E7;
  --border-100: #EEEDF1;

  --shadow-sm: 0 1px 2px rgba(51, 18, 75, 0.06), 0 1px 1px rgba(51, 18, 75, 0.04);
  --shadow-md: 0 8px 24px rgba(51, 18, 75, 0.10);
  --shadow-lg: 0 20px 48px rgba(51, 18, 75, 0.16);

  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 26px;
  --radius-pill: 999px;

  --font-head: "Poppins", "Segoe UI", system-ui, -apple-system, sans-serif;
  --font-body: "Poppins", "Segoe UI", system-ui, -apple-system, sans-serif;

  --container: 1180px;
  --nav-h: 80px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body, h1, h2, h3, h4, p, figure, blockquote, ul, ol, dl, dd {
  margin: 0;
}
ul, ol { padding: 0; list-style: none; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
input, textarea, select { font: inherit; }
svg { display: block; }

body {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--ink-900);
  background: var(--paper-0);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: var(--font-head);
  color: var(--purple-900);
  line-height: 1.15;
  font-weight: 700;
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.2rem, 1.6rem + 2.4vw, 3.4rem); font-weight: 800; }
h2 { font-size: clamp(1.7rem, 1.4rem + 1.2vw, 2.4rem); font-weight: 700; }
h3 { font-size: clamp(1.2rem, 1.1rem + 0.4vw, 1.45rem); font-weight: 600; }

p { color: var(--ink-700); }

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 24px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--purple-700);
  background: var(--purple-100);
  padding: 7px 16px;
  border-radius: var(--radius-pill);
  margin-bottom: 18px;
}
.eyebrow.grey { color: var(--ink-700); background: var(--paper-100); }
.eyebrow.on-dark { background: rgba(255,255,255,0.14); color: #fff; }
.eyebrow .dot { width: 6px; height: 6px; border-radius: 50%; background: currentColor; }

.section { padding: 88px 0; }
.section.tight { padding: 56px 0; }
.section-head {
  max-width: 680px;
  margin-bottom: 48px;
}
.section-head.center { margin-inline: auto; text-align: center; }
.section-head p { margin-top: 14px; font-size: 1.08rem; }

.bg-tint { background: var(--paper-100); }
.bg-purple {
  background: linear-gradient(160deg, var(--purple-800), var(--purple-900) 70%);
  color: var(--paper-0);
}
.bg-purple h2, .bg-purple h3 { color: var(--paper-0); }
.bg-purple p { color: rgba(255,255,255,0.82); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 0.96rem;
  border: 1.5px solid transparent;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, color 0.15s ease, border-color .15s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--purple-700);
  color: var(--paper-0);
  box-shadow: var(--shadow-sm);
}
.btn-primary:hover { background: var(--purple-800); box-shadow: var(--shadow-md); transform: translateY(-1px); }

.btn-light {
  background: #fff;
  color: var(--purple-800);
}
.btn-light:hover { background: var(--purple-100); transform: translateY(-1px); box-shadow: var(--shadow-md); }

.btn-outline {
  background: transparent;
  border-color: var(--purple-300);
  color: var(--purple-700);
}
.btn-outline:hover { border-color: var(--purple-700); background: var(--purple-100); }

.btn-outline-light {
  background: transparent;
  border-color: rgba(255,255,255,0.5);
  color: var(--paper-0);
}
.btn-outline-light:hover { background: rgba(255,255,255,0.12); border-color: var(--paper-0); }

.btn-block { width: 100%; }
.btn-lg { padding: 15px 32px; font-size: 1.02rem; }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.92);
  backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid var(--border-100);
}
.nav {
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.02rem;
  color: var(--purple-900);
  flex-shrink: 0;
}
.brand-mark { width: 40px; height: 40px; flex-shrink: 0; }
.brand small {
  display: block;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.7rem;
  color: var(--ink-500);
  letter-spacing: 0.03em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
}
.nav-links a {
  padding: 10px 12px;
  border-radius: var(--radius-pill);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--ink-700);
  white-space: nowrap;
  transition: background 0.15s ease, color 0.15s ease;
}
.nav-links a:hover { background: var(--purple-100); color: var(--purple-800); }
.nav-links a.active { color: var(--purple-800); background: var(--purple-100); }

.nav-actions { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  padding: 8px;
  color: var(--purple-900);
}
.nav-toggle svg { width: 24px; height: 24px; }
.nav-toggle .icon-close { display: none; }
.nav-toggle[aria-expanded="true"] .icon-menu { display: none; }
.nav-toggle[aria-expanded="true"] .icon-close { display: block; }

@media (max-width: 1080px) {
  .nav-links {
    position: fixed;
    top: var(--nav-h);
    left: 0;
    right: 0;
    height: calc(100vh - var(--nav-h));
    height: calc(100dvh - var(--nav-h));
    z-index: 90;
    background: var(--paper-0);
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 18px;
    transform: translateY(-8px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s;
    overflow-y: auto;
  }
  .nav-links.open { opacity: 1; visibility: visible; transform: translateY(0); }
  .nav-links a { padding: 14px 16px; font-size: 1.05rem; }
  .nav-toggle { display: inline-flex; }
  .nav-actions .btn-primary { padding: 11px 18px; font-size: 0.88rem; }
}

@media (max-width: 480px) {
  /* Prevent the header CTA + hamburger from overflowing narrow phone widths.
     The same action is always reachable via the open mobile menu below. */
  .nav-actions .btn-primary { display: none; }
  .brand small { display: none; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(155deg, var(--purple-50) 0%, var(--paper-0) 55%);
  padding: 72px 0 96px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}
.hero h1 { margin-bottom: 20px; }
.hero-lede { font-size: 1.15rem; max-width: 52ch; margin-bottom: 32px; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 40px; }
.hero-stats { display: flex; gap: 28px; flex-wrap: wrap; }
.hero-stats div strong {
  display: block;
  font-family: var(--font-head);
  font-size: 1.5rem;
  color: var(--purple-800);
}
.hero-stats div span { font-size: 0.85rem; color: var(--ink-500); }

.hero-art { position: relative; }

@media (max-width: 860px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-art { order: -1; max-width: 340px; margin-inline: auto; }
}

/* ---------- Page header (interior pages) ---------- */
.page-hero {
  padding: 56px 0 64px;
  background: linear-gradient(155deg, var(--purple-50), var(--paper-0));
  border-bottom: 1px solid var(--border-100);
}
.page-hero .eyebrow { margin-bottom: 16px; }
.page-hero p { max-width: 62ch; font-size: 1.06rem; margin-top: 16px; }
.breadcrumb {
  font-size: 0.85rem;
  color: var(--ink-500);
  margin-bottom: 18px;
}
.breadcrumb a:hover { color: var(--purple-700); }

/* ---------- Cards ---------- */
.grid { display: grid; gap: 28px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

@media (max-width: 940px) {
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 620px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
}

.card {
  background: var(--paper-0);
  border: 1px solid var(--border-200);
  border-radius: var(--radius-md);
  padding: 30px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }

.icon-badge {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--purple-100);
  color: var(--purple-700);
  margin-bottom: 20px;
}
.icon-badge.alt { background: var(--paper-100); color: var(--ink-900); }
.icon-badge.dark { background: var(--purple-800); color: #fff; }
.icon-badge svg { width: 26px; height: 26px; }

.card h3 { margin-bottom: 10px; }
.card p { font-size: 0.97rem; }
.card .tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--purple-700);
  background: var(--purple-100);
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  margin-bottom: 14px;
}

.program-card { display: flex; flex-direction: column; height: 100%; }
.program-card .card-footer { margin-top: auto; padding-top: 18px; }

/* ---------- Stats strip ---------- */
.stats-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.stats-strip strong {
  display: block;
  font-family: var(--font-head);
  font-size: 2rem;
  color: var(--purple-800);
}
.bg-purple .stats-strip strong { color: var(--paper-0); }
.stats-strip span { font-size: 0.88rem; color: var(--ink-500); }
.bg-purple .stats-strip span { color: rgba(255,255,255,0.75); }
@media (max-width: 700px) { .stats-strip { grid-template-columns: repeat(2, 1fr); } }

/* ---------- Timeline / process ---------- */
.timeline { display: grid; gap: 22px; }
.timeline-item {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 18px;
}
.timeline-num {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--purple-700);
  color: var(--paper-0);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-weight: 700;
  flex-shrink: 0;
}

/* Vertical journey timeline (Our Journey page) */
.journey { position: relative; max-width: 760px; margin: 0 auto; }
.journey::before {
  content: "";
  position: absolute;
  left: 21px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: var(--border-200);
}
.journey-item { position: relative; padding-left: 62px; margin-bottom: 40px; }
.journey-item:last-child { margin-bottom: 0; }
.journey-dot {
  position: absolute; left: 0; top: 0;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--purple-700);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.82rem;
  z-index: 1;
}
.journey-item.milestone .journey-dot { background: var(--purple-900); }
.journey-year {
  display: inline-block;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.8rem;
  color: var(--purple-700);
  background: var(--purple-100);
  padding: 3px 12px;
  border-radius: var(--radius-pill);
  margin-bottom: 8px;
}

/* ---------- Forms ---------- */
.form-grid { display: grid; gap: 18px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
@media (max-width: 620px) { .form-row { grid-template-columns: 1fr; } }

label {
  display: block;
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--ink-700);
  margin-bottom: 7px;
}
.field input,
.field textarea,
.field select {
  width: 100%;
  border: 1.5px solid var(--border-200);
  background: var(--paper-50);
  border-radius: var(--radius-sm);
  padding: 13px 15px;
  color: var(--ink-900);
  transition: border-color 0.15s ease, background 0.15s ease;
}
.field input:focus,
.field textarea:focus,
.field select:focus {
  outline: none;
  border-color: var(--purple-500);
  background: var(--paper-0);
}
.field textarea { resize: vertical; min-height: 130px; }
.field-check { display: flex; align-items: flex-start; gap: 10px; }
.field-check input { width: 18px; height: 18px; margin-top: 3px; accent-color: var(--purple-700); }
.field-check label { margin-bottom: 0; font-weight: 500; }
.form-note {
  font-size: 0.82rem;
  color: var(--ink-500);
  background: var(--purple-50);
  border: 1px dashed var(--purple-300);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  margin-top: 8px;
}

/* ---------- Pathway cards (Get Involved) ---------- */
.pathway-card { text-align: left; }
.pathway-card .tag { background: var(--purple-900); color: #fff; }

/* ---------- Blog / Stories ---------- */
.post-card img, .post-thumb {
  border-radius: var(--radius-md);
  margin-bottom: 20px;
  aspect-ratio: 16/10;
  overflow: hidden;
}
.post-meta { font-size: 0.82rem; color: var(--ink-500); margin-bottom: 10px; display: flex; gap: 10px; align-items: center; }
.post-meta .dot { width: 4px; height: 4px; border-radius: 50%; background: var(--ink-300); }

/* ---------- Quote / testimonial ---------- */
.quote-block {
  border-left: 4px solid var(--purple-500);
  padding-left: 24px;
  font-family: var(--font-head);
  font-size: 1.25rem;
  color: var(--purple-900);
  font-weight: 600;
}

/* ---------- CTA banner ---------- */
.cta-banner {
  border-radius: var(--radius-lg);
  padding: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
@media (max-width: 700px) { .cta-banner { padding: 36px 28px; text-align: center; justify-content: center; } }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--purple-900);
  color: rgba(255,255,255,0.78);
  padding: 64px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr 1.1fr;
  gap: 32px;
  padding-bottom: 44px;
  border-bottom: 1px solid rgba(255,255,255,0.14);
}
@media (max-width: 1000px) { .footer-grid { grid-template-columns: 1fr 1fr 1fr; } }
@media (max-width: 660px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 460px) { .footer-grid { grid-template-columns: 1fr; } }

.footer-brand { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.footer-brand span { font-family: var(--font-head); font-weight: 700; color: var(--paper-0); font-size: 1.05rem; }
.footer-brand + p { color: rgba(255,255,255,0.72); font-size: 0.92rem; }
.footer-col h4 {
  color: var(--paper-0);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-bottom: 18px;
}
.footer-col ul { display: grid; gap: 11px; }
.footer-col a:hover { color: var(--paper-0); }
.footer-social { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 18px; }
.footer-social a {
  padding: 9px 16px;
  border-radius: var(--radius-pill);
  background: rgba(255,255,255,0.08);
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  display: inline-flex; align-items: center; justify-content: center;
  transition: background 0.15s ease, color 0.15s ease;
}
.footer-social a:hover { background: var(--purple-600); color: #fff; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 24px;
  font-size: 0.82rem;
}
.footer-bottom a:hover { color: var(--paper-0); }
.footer-bottom-links { display: flex; gap: 6px; flex-wrap: wrap; align-items: center; }

/* ---------- Misc ---------- */
.divider { height: 1px; background: var(--border-200); border: none; margin: 0; }
.text-center { text-align: center; }
.muted { color: var(--ink-500); }
.mt-0 { margin-top: 0 !important; }
.skip-link {
  position: absolute; left: -9999px; top: 0;
  background: var(--purple-800); color: #fff; padding: 12px 18px; z-index: 200;
  border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

.chip-row { display: flex; flex-wrap: wrap; gap: 10px; }
.chip {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 9px 16px;
  border-radius: var(--radius-pill);
  background: var(--paper-100);
  border: 1px solid var(--border-200);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--ink-700);
}
.chip svg { width: 16px; height: 16px; color: var(--purple-600); }

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
@media (max-width: 860px) { .two-col { grid-template-columns: 1fr; gap: 32px; } }
.two-col.reverse .two-col-media { order: 2; }

.blob-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: linear-gradient(150deg, var(--purple-100), var(--paper-100));
  aspect-ratio: 4/3.2;
  display: flex;
  align-items: center;
  justify-content: center;
}
.blob-frame svg, .blob-frame img { width: 62%; height: 62%; object-fit: contain; }

.list-check { display: grid; gap: 14px; margin-top: 22px; }
.list-check li { display: flex; gap: 12px; align-items: flex-start; font-size: 1rem; color: var(--ink-700); }
.list-check svg { flex-shrink: 0; margin-top: 4px; width: 20px; height: 20px; color: var(--purple-600); }

.accordion-item { border-bottom: 1px solid var(--border-200); padding: 22px 0; }
.accordion-item h3 { font-size: 1.05rem; }

.helpline-card {
  border-left: 4px solid var(--ink-500);
  background: var(--paper-100);
  border-radius: var(--radius-sm);
  padding: 22px 24px;
}
.helpline-card.purple { border-left-color: var(--purple-600); background: var(--purple-100); }

/* ---------- Stepper (process flows: Approach, Journey, Climate Promise) ---------- */
.stepper {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
.stepper-item {
  position: relative;
  text-align: center;
  padding: 26px 16px;
  background: var(--paper-0);
  border: 1px solid var(--border-200);
  border-radius: var(--radius-md);
}
.stepper-item .num {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--purple-700);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 14px;
  font-family: var(--font-head);
  font-weight: 700;
}
.stepper-item h3 { font-size: 1.02rem; margin-bottom: 6px; }
.stepper-item p { font-size: 0.88rem; }
@media (min-width: 941px) {
  .stepper-item:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 44px; right: -18px;
    width: 20px; height: 2px;
    background: var(--border-200);
  }
}
@media (max-width: 940px) { .stepper { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 620px) { .stepper { grid-template-columns: 1fr 1fr; } }

/* ---------- Numbered badges (pillars, mission points) ---------- */
.num-badge {
  width: 54px; height: 54px;
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  background: var(--purple-100);
  color: var(--purple-700);
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.25rem;
  margin-bottom: 20px;
}

/* ---------- SDG chips ---------- */
.sdg-row { display: flex; flex-wrap: wrap; gap: 14px; }
.sdg-chip {
  display: flex; align-items: center; gap: 14px;
  padding: 14px 18px;
  border-radius: var(--radius-md);
  background: var(--paper-0);
  border: 1px solid var(--border-200);
  flex: 1 1 220px;
}
.sdg-chip .sdg-num {
  width: 42px; height: 42px;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head);
  font-weight: 800;
  color: #fff;
  flex-shrink: 0;
  font-size: 0.95rem;
}
.sdg-chip span { font-size: 0.86rem; color: var(--ink-700); font-weight: 600; line-height: 1.3; }

/* ---------- Anchor sub-nav (long pages) ---------- */
.subnav {
  position: sticky;
  top: var(--nav-h);
  z-index: 40;
  background: rgba(250, 250, 251, 0.94);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border-200);
}
.subnav-inner {
  display: flex;
  gap: 6px;
  overflow-x: auto;
  padding: 12px 0;
  scrollbar-width: none;
}
.subnav-inner::-webkit-scrollbar { display: none; }
.subnav a {
  white-space: nowrap;
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--ink-500);
  padding: 8px 14px;
  border-radius: var(--radius-pill);
}
.subnav a:hover { background: var(--purple-100); color: var(--purple-800); }

/* ---------- Theme banner (festival edition) ---------- */
.theme-banner {
  border-radius: var(--radius-lg);
  padding: 40px 44px;
  background: linear-gradient(135deg, var(--purple-600), var(--purple-900));
  color: #fff;
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
  justify-content: space-between;
}
.theme-banner h3 { color: #fff; margin-bottom: 8px; }
.theme-banner p { color: rgba(255,255,255,0.85); margin: 0; max-width: 60ch; }
.theme-banner .edition-tag {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  background: rgba(255,255,255,0.18);
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  display: inline-block;
  margin-bottom: 12px;
}

/* ---------- Reach vs Change panels (Impact page) ---------- */
.impact-panel {
  border-radius: var(--radius-md);
  padding: 32px;
  border: 1px solid var(--border-200);
  background: var(--paper-0);
}
.impact-panel.filled { background: var(--purple-900); color: #fff; border-color: transparent; }
.impact-panel.filled h3 { color: #fff; }
.impact-panel.filled p { color: rgba(255,255,255,0.8); }
.impact-panel ul { margin-top: 18px; display: grid; gap: 10px; }
.impact-panel ul li {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.94rem;
  padding: 10px 14px;
  background: var(--paper-100);
  border-radius: var(--radius-sm);
}
.impact-panel.filled ul li { background: rgba(255,255,255,0.1); color: #fff; }

/* ---------- Long-form / legal pages ---------- */
.prose { max-width: 760px; margin: 0 auto; }
.prose h2 { margin-top: 40px; margin-bottom: 14px; }
.prose h2:first-child { margin-top: 0; }
.prose p { margin-bottom: 14px; }
.prose ul { margin: 0 0 14px; display: grid; gap: 8px; }
.prose ul li { padding-left: 20px; position: relative; color: var(--ink-700); }
.prose ul li::before {
  content: "";
  position: absolute; left: 4px; top: 10px;
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--purple-500);
}
.prose .updated { font-size: 0.85rem; color: var(--ink-500); margin-bottom: 30px; }

/* ---------- Placeholder tag (content rule §35) ---------- */
.placeholder-tag {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--purple-700);
  background: var(--purple-100);
  border: 1px dashed var(--purple-300);
  padding: 2px 9px;
  border-radius: 6px;
}
