/*
Theme Name: Zyra Institute
Theme URI: https://zyrainstitute.com
Author: Zyra Institute
Author URI: https://zyrainstitute.com
Description: Editorial WordPress theme for Zyra Institute — Africa's communications training, certification & placement. Converted from the Lovable preview. Flat, minimal, editorial design system with scoped styles to avoid plugin/theme collisions.
Version: 1.3.3
Requires at least: 6.0
Requires PHP: 7.4
License: GPL-2.0-or-later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: zyra
Tags: education, business, custom-colors, custom-menu, editor-style, featured-images, full-width-template, responsive
*/

/* =========================================================
   Zyra — scoped design system
   All app styles live under .exported-site to prevent any
   collisions with WP core, the admin bar, or other plugins.
   ========================================================= */

.exported-site {
  /* Brand tokens (duplicated outside :root so they always apply inside WP). */
  --teal: #3B2B6B;
  --teal-hover: #2D2152;
  --purple: #534AB7;
  --purple-hover: #443D9A;
  --amber: #BA7517;
  --amber-hover: #9C6213;
  --surface: #F5F5F5;
  --ink: #1A1A1A;
  --ink-2: #444444;
  --ink-3: #888888;
  --hair: #DDDDDD;
  --background: #FFFFFF;
  --foreground: #1A1A1A;

  --font-sans: "Inter", ui-sans-serif, system-ui, sans-serif;
  --font-serif: "Source Serif 4", "Source Serif Pro", Georgia, serif;
  --font-display: "Fraunces", "Source Serif 4", Georgia, serif;
  --font-mono: "JetBrains Mono", ui-monospace, monospace;

  --shadow-soft: 0 1px 2px rgba(26,26,26,0.04), 0 8px 24px -12px rgba(26,26,26,0.08);
  --shadow-lift: 0 2px 4px rgba(26,26,26,0.04), 0 18px 40px -16px rgba(59,43,107,0.18);
  --shadow-deep: 0 30px 80px -30px rgba(59,43,107,0.45);
  --grad-royal: linear-gradient(135deg, #2A1E52 0%, #3B2B6B 45%, #534AB7 100%);
  --grad-amber: linear-gradient(135deg, #8A560F 0%, #BA7517 50%, #E29A35 100%);
  --grad-cream: linear-gradient(180deg, #FBFAF7 0%, #F5F2EC 100%);

  color: var(--foreground);
  background: var(--background);
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 15px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-feature-settings: "ss01", "cv11";
}

.exported-site *,
.exported-site *::before,
.exported-site *::after { box-sizing: border-box; }

.exported-site img { max-width: 100%; height: auto; display: block; }

/* Typography */
.exported-site h1, .exported-site h2 {
  font-family: var(--font-display);
  font-weight: 380;
  font-variation-settings: "opsz" 96, "SOFT" 50;
  letter-spacing: -0.025em;
  line-height: 1.05;
  color: var(--ink);
  margin: 0;
}
.exported-site h3, .exported-site h4, .exported-site h5, .exported-site h6 {
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.25;
  color: var(--ink);
  margin: 0;
}
.exported-site h1 { font-size: clamp(36px, 5.2vw, 64px); }
.exported-site h2 { font-size: clamp(28px, 3.4vw, 44px); }
.exported-site h3 { font-size: 20px; }
.exported-site h4 { font-size: 17px; }
.exported-site p  { margin: 0; }
.exported-site small { font-size: 12px; }
.exported-site ::selection { background: var(--teal); color: #fff; }

.exported-site a { color: inherit; text-decoration: none; }
.exported-site button { font: inherit; }

.exported-site :focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 2px;
}

/* Layout helpers */
.exported-site .container-zyra { max-width: 1240px; margin-inline: auto; padding-inline: 24px; }
.exported-site .section { padding: 64px 0; }
@media (min-width: 768px) { .exported-site .section { padding: 96px 0; } }
.exported-site .section--surface { background: var(--surface); }
.exported-site .section--ink { background: var(--ink); color: #fff; }

.exported-site .border-hair { border: 0.5px solid var(--hair); }
.exported-site .border-b-hair { border-bottom: 0.5px solid var(--hair); }
.exported-site .border-t-hair { border-top: 0.5px solid var(--hair); }
.exported-site .rounded-xl { border-radius: 12px; }
.exported-site .rounded-2xl { border-radius: 16px; }
.exported-site .rounded-full { border-radius: 999px; }
.exported-site .text-center { text-align: center; }
.exported-site .text-sm { font-size: 14px; }
.exported-site .text-xs { font-size: 12px; }
.exported-site .text-lg { font-size: 18px; }
.exported-site .mt-1 { margin-top: 4px; }
.exported-site .mt-2 { margin-top: 8px; }
.exported-site .mt-3 { margin-top: 12px; }
.exported-site .mt-4 { margin-top: 16px; }
.exported-site .mt-5 { margin-top: 20px; }
.exported-site .mt-6 { margin-top: 24px; }
.exported-site .mt-7 { margin-top: 28px; }
.exported-site .mt-8 { margin-top: 32px; }
.exported-site .mt-9 { margin-top: 36px; }
.exported-site .mt-10 { margin-top: 40px; }
.exported-site .mt-12 { margin-top: 48px; }
.exported-site .max-w-2xl { max-width: 42rem; }
.exported-site .max-w-3xl { max-width: 48rem; }
.exported-site .max-w-4xl { max-width: 56rem; }
.exported-site .max-w-5xl { max-width: 64rem; }

/* Buttons */
.exported-site .btn {
  position: relative; display: inline-flex; align-items: center; justify-content: center;
  gap: 0.5rem; padding: 0.75rem 1.25rem; border-radius: 999px;
  font-weight: 500; font-size: 14px; letter-spacing: 0.01em;
  transition: background-color .2s ease, color .2s ease, border-color .2s ease, box-shadow .25s ease, transform .25s ease;
  cursor: pointer; line-height: 1; border: 0; text-decoration: none;
}
.exported-site .btn:hover { transform: translateY(-1px); }
.exported-site .btn-primary { background: var(--teal); color: #fff; box-shadow: var(--shadow-soft); }
.exported-site .btn-primary:hover { background: var(--teal-hover); box-shadow: var(--shadow-lift); color: #fff; }
.exported-site .btn-secondary { background: transparent; color: var(--teal); border: 1px solid var(--teal); }
.exported-site .btn-secondary:hover { background: var(--teal); color: #fff; }
.exported-site .btn-ghost { background: transparent; color: var(--teal); padding-left: 0; padding-right: 0; border-radius: 0; }
.exported-site .btn-ghost:hover { transform: none; color: var(--teal-hover); }
.exported-site .btn-on-teal { background: transparent; color: #fff; border: 1px solid #fff; }
.exported-site .btn-on-teal:hover { background: #fff; color: var(--teal); }
.exported-site .btn-amber { background: var(--amber); color: #fff; box-shadow: var(--shadow-soft); }
.exported-site .btn-amber:hover { background: var(--amber-hover); box-shadow: var(--shadow-lift); color: #fff; }
.exported-site .btn-amber-outline { background: transparent; color: var(--amber); border: 1px solid var(--amber); }
.exported-site .btn-amber-outline:hover { background: var(--amber); color: #fff; }
.exported-site .btn-on-amber { background: transparent; color: #fff; border: 1px solid #fff; }
.exported-site .btn-on-amber:hover { background: #fff; color: var(--amber); }

.exported-site .arrow-nudge { display: inline-block; transition: transform .25s ease; }
.exported-site .btn:hover .arrow-nudge,
.exported-site a:hover .arrow-nudge { transform: translateX(3px); }

/* Pills */
.exported-site .pill { display: inline-flex; align-items: center; padding: 4px 10px; border-radius: 20px; font-size: 12px; font-weight: 500; line-height: 1; }
.exported-site .pill-teal { background: #ECEAF4; color: var(--teal); }
.exported-site .pill-purple { background: #EAE8F6; color: var(--purple); }
.exported-site .pill-amber { background: #F6EBD9; color: var(--amber); }
.exported-site .pill-neutral { background: var(--surface); color: var(--ink-2); }
.exported-site .pill-hireable { background: #E8F1EE; color: #137554; }

/* Cards */
.exported-site .zcard {
  background: #fff; border: 0.5px solid var(--hair); border-radius: 16px;
  padding: 24px;
  transition: transform .35s cubic-bezier(.2,.7,.2,1), box-shadow .35s ease, border-color .25s ease;
  display: block;
}
.exported-site .zcard:hover { transform: translateY(-4px); box-shadow: var(--shadow-lift); }
.exported-site .zcard.accent-teal   { border-top: 4px solid var(--teal); }
.exported-site .zcard.accent-purple { border-top: 4px solid var(--purple); }
.exported-site .zcard.accent-amber  { border-top: 4px solid var(--amber); }

.exported-site .z-card-hover { transition: border-color 200ms ease; }
.exported-site .z-card-hover:hover { border-color: var(--teal) !important; }

/* Inputs */
.exported-site .input-zyra { width: 100%; padding: 10px 14px; border: 0.5px solid var(--hair); border-radius: 8px; background: #fff; font: inherit; color: var(--ink); }
.exported-site .input-zyra:focus { outline: none; border-color: var(--teal); box-shadow: 0 0 0 2px rgba(59,43,107,.18); }

/* Editorial helpers */
.exported-site .display-serif {
  font-family: var(--font-display);
  font-weight: 360;
  font-variation-settings: "opsz" 144, "SOFT" 30;
  letter-spacing: -0.03em;
  line-height: 1.02;
}
.exported-site .display-serif em {
  font-style: italic;
  font-variation-settings: "opsz" 144, "SOFT" 100;
  color: var(--teal);
  font-weight: 380;
}
.exported-site .pull-quote { font-family: var(--font-serif); font-size: 20px; line-height: 1.5; color: var(--ink); font-weight: 400; }

.exported-site .eyebrow-rule {
  display: inline-flex; align-items: center; gap: 12px;
  text-transform: uppercase; font-size: 11px; font-weight: 500;
  letter-spacing: 0.18em; color: var(--teal);
  font-family: var(--font-mono);
}
.exported-site .eyebrow-rule::before {
  content: ""; display: inline-block; width: 28px; height: 1px; background: currentColor;
}
.exported-site .mono-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.exported-site .section-num { font-family: var(--font-mono); font-size: 11px; color: var(--ink-3); letter-spacing: 0.12em; }

.exported-site .link-underline { position: relative; }
.exported-site .link-underline::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -4px; height: 1px;
  background: currentColor; transform-origin: right center; transform: scaleX(0);
  transition: transform .35s cubic-bezier(.2,.7,.2,1);
}
.exported-site .link-underline:hover::after { transform-origin: left center; transform: scaleX(1); }

/* Decorative dot grid */
.exported-site .dot-grid {
  background-image: radial-gradient(currentColor 1px, transparent 1px);
  background-size: 14px 14px;
  opacity: 0.18;
}

.exported-site .surface-cream { background: var(--grad-cream); }
.exported-site .surface-royal { background: var(--grad-royal); color: #fff; }
.exported-site .surface-amber { background: var(--grad-amber); color: #fff; }
.exported-site .shadow-soft { box-shadow: var(--shadow-soft); }
.exported-site .shadow-lift { box-shadow: var(--shadow-lift); }
.exported-site .shadow-deep { box-shadow: var(--shadow-deep); }

/* Grain overlay — pure CSS, scoped */
.exported-site .grain { position: relative; }
.exported-site .grain::after {
  content: ""; position: absolute; inset: 0; pointer-events: none; opacity: .055;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0  0 0 0 0 0  0 0 0 0 0  0 0 0 0.6 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
}

/* ==============================
   NAV BAR + TICKER
   ============================== */
.exported-site .z-ticker {
  background: var(--surface);
  border-bottom: 0.5px solid var(--hair);
  overflow: hidden;
  height: 32px;
  display: flex;
  align-items: center;
}
.exported-site .z-ticker-track {
  display: flex; gap: 48px; white-space: nowrap; will-change: transform;
  animation: zMarqueeLeft 40s linear infinite;
}
.exported-site .z-ticker:hover .z-ticker-track { animation-play-state: paused; }
.exported-site .z-ticker-item { font-size: 13px; color: var(--ink-2); display: inline-flex; align-items: center; gap: 16px; }
@media (max-width: 768px) { .exported-site .z-ticker-item { font-size: 12px; } }
.exported-site .z-ticker-item .dot { color: var(--ink-3); }

.exported-site .z-nav {
  position: sticky; top: var(--wp-admin--admin-bar--height, 0); z-index: 40;
  background: #fff; border-bottom: 0.5px solid var(--hair);
  transition: all .3s ease;
}
.exported-site .z-nav.is-scrolled {
  background: rgba(255,255,255,0.72);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
}
.exported-site .z-nav__inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 80px; transition: height .3s ease;
}
.exported-site .z-nav.is-scrolled .z-nav__inner { height: 56px; }
.exported-site .z-logo { display: inline-flex; align-items: center; }
.exported-site .z-logo__word { font-family: var(--font-display); font-size: 26px; font-weight: 400; font-variation-settings: "opsz" 144, "SOFT" 30; color: var(--ink); letter-spacing: -0.04em; }
.exported-site .z-logo__dot { display: inline-block; width: 6px; height: 6px; border-radius: 999px; background: var(--amber); margin-left: 6px; margin-top: 10px; }
.exported-site .z-nav__primary { display: none; align-items: center; gap: 36px; }
@media (min-width: 768px) {
  .exported-site .z-nav__primary { display: flex; }
  .exported-site .z-nav__apply  { display: inline-flex; }
  .exported-site .z-nav__toggle { display: none; }
}
.exported-site .z-nav__primary a { font-size: 14px; color: var(--ink-2); }
.exported-site .z-nav__primary a.is-active { color: var(--ink); font-weight: 500; }
.exported-site .z-nav__apply { display: none; }
.exported-site .z-nav__toggle {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; background: transparent; border: 0; cursor: pointer; color: var(--ink);
}
.exported-site .z-nav__panel { display: none; border-top: 0.5px solid var(--hair); background: #fff; }
.exported-site .z-nav__panel.is-open { display: block; }
.exported-site .z-nav__panel-inner { padding: 24px; display: flex; flex-direction: column; gap: 16px; }
.exported-site .z-nav__panel a { font-size: 16px; color: var(--ink); padding: 8px 0; }

/* ==============================
   FOOTER
   ============================== */
.exported-site .z-footer { position: relative; overflow: hidden; background: #0F0A24; color: #E6E2F1; }
.exported-site .z-footer__grid {
  display: grid; grid-template-columns: 1fr; gap: 48px;
  padding: 80px 0 48px;
}
@media (min-width: 768px) { .exported-site .z-footer__grid { grid-template-columns: repeat(3, 1fr); } }
.exported-site .z-footer__brand .word { font-family: var(--font-display); font-size: 38px; font-weight: 380; color: #fff; letter-spacing: -0.04em; font-variation-settings: '"opsz" 144, "SOFT" 30'; }
.exported-site .z-footer__brand .dot { display: inline-block; width: 7px; height: 7px; border-radius: 999px; background: var(--amber); margin-left: 6px; }
.exported-site .z-footer__brand .tag { color: #E29A35; font-family: var(--font-mono); letter-spacing: 0.08em; text-transform: uppercase; font-size: 11px; margin-top: 8px; }
.exported-site .z-footer__brand p { margin-top: 20px; font-size: 14px; color: #B7B0CC; max-width: 360px; }
.exported-site .z-footer__brand .credits { margin-top: 20px; font-family: var(--font-mono); font-size: 11px; color: #7E7699; letter-spacing: 0.02em; }
.exported-site .z-footer__brand .credits a { color: #E6E2F1; }
.exported-site .z-footer h3 { color: #7E7699; font-weight: 500; font-family: var(--font-mono); letter-spacing: 0.12em; text-transform: uppercase; font-size: 11px; }
.exported-site .z-footer ul { list-style: none; padding: 0; margin: 20px 0 0; display: flex; flex-direction: column; gap: 12px; font-size: 14px; }
.exported-site .z-footer ul a { color: #fff; }
.exported-site .z-footer__bottom { border-top: 0.5px solid rgba(255,255,255,0.08); }
.exported-site .z-footer__bottom-inner { display: flex; flex-direction: column; gap: 16px; padding: 24px 0; font-size: 12px; color: #7E7699; }
@media (min-width: 768px) { .exported-site .z-footer__bottom-inner { flex-direction: row; align-items: center; justify-content: space-between; } }
.exported-site .z-footer__bottom a { color: #E6E2F1; }
.exported-site .z-socials { display: inline-flex; align-items: center; gap: 20px; color: #E6E2F1; }
.exported-site .z-socials svg { width: 16px; height: 16px; }

/* ==============================
   HERO
   ============================== */
.exported-site .z-hero-grid {
  display: grid; grid-template-columns: 1fr; gap: 48px; align-items: center;
}
@media (min-width: 1024px) {
  .exported-site .z-hero-grid { grid-template-columns: 1.1fr 1fr; gap: 80px; }
}
.exported-site .z-hero-image-wrap { position: relative; }
.exported-site .z-hero-image-wrap .accent-block {
  position: absolute; inset: -12px; border-radius: 20px; z-index: -1;
  background: var(--grad-royal);
  transform: translate(14px, 18px);
  opacity: 0.95;
}
.exported-site .z-hero-image-wrap .dot-accent {
  position: absolute; top: -24px; left: -24px; width: 96px; height: 96px;
  z-index: -1; color: var(--amber);
}
.exported-site .z-hero-image {
  position: relative; overflow: hidden; border-radius: 18px;
  border: 0.5px solid var(--hair); box-shadow: var(--shadow-lift);
  aspect-ratio: 4 / 5;
}
.exported-site .z-hero-image img {
  position: absolute; inset: 0; height: 100%; width: 100%;
  object-fit: cover; animation: zKenburns 14s ease-out both;
}
.exported-site .z-hero-image::after {
  content: ""; position: absolute; inset-inline: 0; bottom: 0; height: 33%; pointer-events: none;
  background: linear-gradient(180deg, transparent, rgba(26,26,26,0.18));
}

/* ==============================
   GRID UTILITIES
   ============================== */
.exported-site .grid { display: grid; gap: 24px; }
.exported-site .grid-cols-2 { grid-template-columns: repeat(2, 1fr); }
.exported-site .grid-cols-3 { grid-template-columns: 1fr; }
.exported-site .grid-cols-4 { grid-template-columns: 1fr; }
.exported-site .grid-2col-md { grid-template-columns: 1fr; }
.exported-site .grid-3col-md { grid-template-columns: 1fr; }
@media (min-width: 640px) {
  .exported-site .grid-2col-md { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 768px) {
  .exported-site .grid-cols-3 { grid-template-columns: repeat(3, 1fr); }
  .exported-site .grid-cols-4 { grid-template-columns: repeat(4, 1fr); }
  .exported-site .grid-3col-md { grid-template-columns: repeat(3, 1fr); }
}
.exported-site .gap-px { gap: 1px; background: var(--hair); }
.exported-site .gap-px > * { background: var(--background); }

.exported-site .flex { display: flex; }
.exported-site .flex-col { flex-direction: column; }
.exported-site .flex-wrap { flex-wrap: wrap; }
.exported-site .items-center { align-items: center; }
.exported-site .items-start { align-items: flex-start; }
.exported-site .items-end { align-items: flex-end; }
.exported-site .justify-between { justify-content: space-between; }
.exported-site .justify-center { justify-content: center; }
.exported-site .gap-2 { gap: 8px; }
.exported-site .gap-3 { gap: 12px; }
.exported-site .gap-4 { gap: 16px; }
.exported-site .gap-6 { gap: 24px; }
.exported-site .gap-10 { gap: 40px; }

/* ==============================
   MARQUEE
   ============================== */
.exported-site .z-marquee { overflow: hidden; display: flex; align-items: center; width: 100%; position: relative; }
.exported-site .z-marquee-track { display: flex; gap: 48px; white-space: nowrap; will-change: transform; }
.exported-site .z-marquee-track .group { display: flex; gap: 48px; align-items: center; }
.exported-site .z-marquee--left .z-marquee-track  { animation: zMarqueeLeft 60s linear infinite; }
.exported-site .z-marquee--right .z-marquee-track { animation: zMarqueeRight 60s linear infinite; }
.exported-site .z-marquee:hover .z-marquee-track { animation-play-state: paused; }
.exported-site .z-marquee-edge {
  position: absolute; top: 0; bottom: 0; width: 120px; z-index: 10; pointer-events: none;
}
.exported-site .z-marquee-edge--left  { left: 0;  background: linear-gradient(90deg, var(--surface), transparent); }
.exported-site .z-marquee-edge--right { right: 0; background: linear-gradient(-90deg, var(--surface), transparent); }
.exported-site .z-marquee-badge {
  position: absolute; left: 24px; top: 50%; transform: translateY(-50%);
  z-index: 20; padding: 4px 12px; border-radius: 999px;
  background: var(--ink); color: #fff;
  font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase;
}
@media (min-width: 768px) { .exported-site .z-marquee-badge { left: 40px; } }

@keyframes zMarqueeLeft  { from { transform: translateX(0); }    to { transform: translateX(-50%); } }
@keyframes zMarqueeRight { from { transform: translateX(-50%); } to { transform: translateX(0); } }
@keyframes zKenburns     { from { transform: scale(1); }         to { transform: scale(1.06); } }
@keyframes zFadeUp       { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: translateY(0); } }
@keyframes zFadeIn       { from { opacity: 0; }                  to { opacity: 1; } }

.exported-site .z-fade-up { animation: zFadeUp .6s ease-out both; }
.exported-site .z-fade-in { animation: zFadeIn .8s ease-out both; }
.exported-site .z-reveal { opacity: 0; transform: translateY(16px); transition: opacity .7s ease-out, transform .7s ease-out; }
.exported-site .z-reveal.is-visible { opacity: 1; transform: translateY(0); }

/* ==============================
   STAT BAR (home)
   ============================== */
.exported-site .z-stat-bar {
  display: grid; grid-template-columns: 1fr; overflow: hidden; border-radius: 18px;
  border: 0.5px solid var(--hair);
}
@media (min-width: 1024px) { .exported-site .z-stat-bar { grid-template-columns: 1fr 1.1fr; } }
.exported-site .z-stat-bar .feature {
  position: relative; min-height: 280px; background: var(--grad-royal); overflow: hidden;
}
@media (min-width: 1024px) { .exported-site .z-stat-bar .feature { min-height: 360px; } }
.exported-site .z-stat-bar .feature img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0.6; mix-blend-mode: luminosity; }
.exported-site .z-stat-bar .feature::after { content: ""; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(42,30,82,.85), rgba(83,74,183,.55)); }
.exported-site .z-stat-bar .feature .inner { position: relative; z-index: 2; height: 100%; padding: 32px; display: flex; flex-direction: column; justify-content: flex-end; color: #fff; }
.exported-site .z-stat-bar .feature .inner h3 { color: #fff; font-family: var(--font-display); font-weight: 380; font-size: clamp(28px, 3.4vw, 40px); line-height: 1.1; margin-top: 16px; }
.exported-site .z-stat-bar .grid4 { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--hair); }
.exported-site .z-stat-bar .grid4 > div { background: var(--background); padding: 32px; display: flex; flex-direction: column; justify-content: center; }
.exported-site .z-stat-bar .num { font-family: var(--font-display); font-weight: 380; font-size: clamp(48px, 6vw, 84px); line-height: 1; }
.exported-site .z-stat-bar .num .unit { font-size: .4em; color: var(--ink-3); margin-left: 6px; }
.exported-site .z-stat-bar .label { margin-top: 12px; font-size: 14px; color: var(--ink-2); }

/* ==============================
   STAT BAR generic
   ============================== */
.exported-site .stat-bar-row { display: grid; grid-template-columns: 1fr; gap: 1px; background: var(--hair); }
@media (min-width: 768px) { .exported-site .stat-bar-row { grid-template-columns: repeat(3, 1fr); } }
.exported-site .stat-bar-row > div { background: var(--background); padding: 32px; text-align: center; }
.exported-site .stat-bar-row .v { font-size: 32px; font-weight: 500; color: var(--teal); }
.exported-site .stat-bar-row .l { margin-top: 8px; font-size: 14px; color: var(--ink-2); }

/* ==============================
   CTA BANNER
   ============================== */
.exported-site .z-cta {
  position: relative; overflow: hidden;
}
.exported-site .z-cta--teal  { background: var(--grad-royal); color: #fff; }
.exported-site .z-cta--amber { background: var(--grad-amber); color: #fff; }
.exported-site .z-cta .inner { position: relative; padding: 80px 0; text-align: center; }
@media (min-width: 768px) { .exported-site .z-cta .inner { padding: 128px 0; } }
.exported-site .z-cta h2 { color: #fff; font-family: var(--font-display); font-weight: 380; font-size: clamp(32px, 4.6vw, 56px); max-width: 880px; margin: 0 auto; }
.exported-site .z-cta .actions { margin-top: 40px; display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; }
.exported-site .z-cta .dot-grid {
  position: absolute; width: 256px; height: 256px; color: #fff;
}
.exported-site .z-cta .dot-grid.tl { top: -40px; right: -40px; }
.exported-site .z-cta .dot-grid.bl { bottom: -40px; left: -40px; }

/* ==============================
   PROGRAMS PAGE
   ============================== */
.exported-site .offering-card {
  background: var(--background);
  border: 0.5px solid #DDDDDD;
  border-radius: 12px;
  padding: 24px;
  transition: border-color 160ms ease;
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.exported-site .offering-card:hover { border-color: var(--purple); }
.exported-site .offering-card.flagship { border-top: 2px solid var(--purple); }
.exported-site .offering-card.level2   { border-left: 2px solid var(--amber); }
.exported-site .offering-card .flagship-tag {
  position: absolute; top: 16px; right: 20px;
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--purple);
}
.exported-site .offering-card .body { margin-top: 12px; color: var(--ink-2); }
.exported-site .offering-card ul { margin: 16px 0 0; padding: 0; list-style: none; }
.exported-site .offering-card ul li { display: flex; gap: 10px; color: var(--ink-2); font-size: 14px; padding: 4px 0; }
.exported-site .offering-card ul li::before { content: "·"; color: var(--purple); font-weight: 600; }
.exported-site .offering-card .price { margin-top: 20px; font-size: 14px; color: var(--ink-3); }
.exported-site .offering-card .cta { margin-top: 12px; }
.exported-site .offering-card .cta a { color: var(--purple); font-weight: 500; font-size: 15px; }

.exported-site .programs-table {
  width: 100%; border-collapse: collapse; font-size: 14px; background: var(--background);
}
.exported-site .programs-table th, .exported-site .programs-table td {
  text-align: left; padding: 16px; border-bottom: 0.5px solid var(--hair); vertical-align: top;
}
.exported-site .programs-table th { font-weight: 500; color: var(--ink); }
.exported-site .programs-table th.flagship-col { background: color-mix(in oklab, var(--purple) 8%, transparent); color: var(--purple); }
.exported-site .programs-table td.flagship-col { background: color-mix(in oklab, var(--purple) 5%, transparent); }
.exported-site .programs-table td.label-col { color: var(--ink); font-weight: 500; }
.exported-site .programs-table-wrap { border: 0.5px solid var(--hair); border-radius: 12px; overflow-x: auto; }
.exported-site .programs-mobile-card { display: block; background: var(--background); }
.exported-site .programs-mobile-card details summary { color: var(--purple); font-weight: 500; cursor: pointer; font-size: 14px; }
.exported-site .programs-mobile-card dl { display: grid; grid-template-columns: 90px 1fr; gap: 4px 16px; font-size: 14px; margin-top: 8px; }
.exported-site .programs-mobile-card dt { color: var(--ink-3); }
.exported-site .programs-mobile-card dd { color: var(--ink-2); margin: 0; }
.exported-site .desktop-only { display: none; }
.exported-site .mobile-only { display: block; }
@media (min-width: 768px) {
  .exported-site .desktop-only { display: block; }
  .exported-site .mobile-only  { display: none; }
}

.exported-site .acpm-card {
  background: var(--background);
  border: 1px solid var(--purple);
  border-top: 4px solid var(--purple);
  border-radius: 16px;
  padding: 40px clamp(24px, 4vw, 56px);
  position: relative;
  box-shadow: 0 20px 60px -30px rgba(59,43,107,0.35);
}
.exported-site .acpm-card .flagship-tag {
  position: absolute; top: 20px; right: 24px; color: var(--purple); font-weight: 600;
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase;
}

/* ==============================
   COURSES PAGE
   ============================== */
.exported-site .filter-bar { display: flex; flex-wrap: wrap; gap: 8px; padding-bottom: 24px; border-bottom: 0.5px solid var(--hair); }
.exported-site .filter-bar button {
  background: var(--surface); color: var(--ink-2); border: 0; cursor: pointer;
  padding: 4px 10px; border-radius: 20px; font-size: 12px; font-weight: 500;
}
.exported-site .filter-bar button[aria-pressed="true"] { background: var(--ink); color: #fff; }

.exported-site .course-card { display: none; }
.exported-site .course-card.is-visible { display: block; }

/* ==============================
   PROFILE CARDS
   ============================== */
.exported-site .profile-card { display: flex; flex-direction: column; gap: 16px; }
.exported-site .profile-card .row { display: flex; align-items: center; gap: 16px; }
.exported-site .profile-card .avatar {
  display: inline-flex; align-items: center; justify-content: center;
  width: 48px; height: 48px; border-radius: 999px;
  background: #F6EBD9; color: var(--amber); font-weight: 500; font-size: 16px;
  border: 0.5px solid var(--hair); flex: 0 0 auto;
}
.exported-site .profile-card .meta { flex: 1; min-width: 0; }
.exported-site .profile-card .name { font-weight: 500; color: var(--ink); }
.exported-site .profile-card .loc  { font-size: 12px; color: var(--ink-3); }
.exported-site .profile-card .skills { display: flex; flex-wrap: wrap; gap: 8px; }
.exported-site .profile-card .foot { display: flex; align-items: center; justify-content: space-between; padding-top: 12px; border-top: 0.5px solid var(--hair); font-size: 14px; }
.exported-site .profile-card .dot { display: inline-block; width: 8px; height: 8px; border-radius: 999px; background: var(--teal); margin-right: 6px; vertical-align: middle; }

/* ==============================
   LOGO GALLERY
   ============================== */
.exported-site .logo-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px;
}
@media (min-width: 768px) { .exported-site .logo-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .exported-site .logo-grid { grid-template-columns: repeat(4, 1fr); } }
.exported-site .logo-tile {
  border: 0.5px solid var(--hair); border-radius: 12px;
  display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center;
  aspect-ratio: 16 / 9; padding: 16px; background: var(--background);
  transition: border-color .3s ease;
}
.exported-site .logo-tile:hover { border-color: var(--amber); }
.exported-site .logo-tile .name { font-size: 18px; font-weight: 500; color: var(--ink); letter-spacing: -0.01em; }
.exported-site .logo-tile .label { margin-top: 4px; font-size: 12px; color: var(--ink-3); text-transform: uppercase; letter-spacing: 0.08em; }

/* ==============================
   AFRICA MAP (simplified, vanilla SVG)
   ============================== */
.exported-site .africa-map {
  border: 0.5px solid var(--hair); border-radius: 12px; overflow: hidden;
  background: var(--surface); position: relative;
}
.exported-site .africa-map svg { width: 100%; height: auto; display: block; }
.exported-site .africa-map .country { fill: #FFFFFF; stroke: var(--hair); stroke-width: 0.4; }
.exported-site .africa-map .country.active { fill: var(--teal); fill-opacity: 0.18; cursor: pointer; }
.exported-site .africa-map .pin-pulse { fill: var(--teal); fill-opacity: 0.25; }
.exported-site .africa-map .pin-core  { fill: var(--teal); stroke: #fff; stroke-width: 1.2; }
.exported-site .africa-map .pin-label { font-family: var(--font-mono); font-size: 7px; font-weight: 600; fill: var(--ink); paint-order: stroke; stroke: #fff; stroke-width: 2.5; }
.exported-site .africa-map .panel { padding: 16px 20px; border-top: 0.5px solid var(--hair); display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.exported-site .africa-map .panel .label { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.08em; color: var(--ink-2); text-transform: uppercase; }
.exported-site .africa-map .panel .country-name { font-family: var(--font-display); font-size: 22px; line-height: 1.1; color: var(--ink); }
.exported-site .africa-map .panel .note { color: var(--ink-2); font-size: 13px; margin-top: 2px; }
.exported-site .africa-map .panel .chips { display: flex; flex-wrap: wrap; gap: 6px; }
.exported-site .africa-map .panel .chips button {
  padding: 4px 10px; border-radius: 999px; border: 0.5px solid var(--hair); background: transparent;
  font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--ink-2); cursor: pointer;
}
.exported-site .africa-map .panel .chips button.is-active { background: var(--teal); color: #fff; }
.exported-site .africa-map .pin-pulse { animation: zPulse 2.2s ease-out infinite; transform-origin: center; transform-box: fill-box; }
@keyframes zPulse {
  0%   { r: 6;  fill-opacity: 0.25; }
  50%  { r: 10; fill-opacity: 0; }
  100% { r: 6;  fill-opacity: 0.25; }
}

/* ==============================
   FORM (contact)
   ============================== */
.exported-site label.block { display: block; font-size: 14px; margin-bottom: 4px; }
.exported-site form .form-row { display: grid; grid-template-columns: 1fr; gap: 16px; }
@media (min-width: 640px) { .exported-site form .form-row { grid-template-columns: 1fr 1fr; } }

/* ==============================
   REDUCED MOTION
   ============================== */
@media (prefers-reduced-motion: reduce) {
  .exported-site .z-marquee-track,
  .exported-site .z-ticker-track,
  .exported-site .pin-pulse,
  .exported-site .z-hero-image img { animation: none !important; }
  .exported-site .z-fade-up, .exported-site .z-fade-in { animation: none !important; opacity: 1 !important; transform: none !important; }
  .exported-site .z-reveal { opacity: 1; transform: none; transition: none; }
  .exported-site .btn:hover, .exported-site .zcard:hover { transform: none; }
  .exported-site .link-underline::after { transition: none; }
}

/* ==============================
   RESPONSIVE FALLBACKS
   ============================== */
@media (max-width: 430px) {
  .exported-site .acpm-card { padding: 24px; }
  .exported-site .z-cta .inner { padding: 56px 0; }
}

/* WordPress dynamic header support */
.exported-site .z-logo { min-width: max-content; text-decoration: none; }
.exported-site .z-logo__image { display: block; width: auto; max-width: 220px; max-height: 48px; }
.exported-site .z-nav.is-scrolled .z-logo__image { max-height: 40px; }
.exported-site .z-nav__primary .z-nav__menu,
.exported-site .z-nav__panel .z-nav__mobile-menu {
  list-style: none;
  margin: 0;
  padding: 0;
}
.exported-site .z-nav__primary .z-nav__menu {
  display: flex;
  align-items: center;
  gap: 36px;
}
.exported-site .z-nav__primary .menu-item { margin: 0; padding: 0; }
.exported-site .z-nav__primary .current-menu-item > a,
.exported-site .z-nav__primary .current_page_item > a,
.exported-site .z-nav__primary .current-menu-ancestor > a,
.exported-site .z-nav__primary .is-active > a {
  color: var(--ink);
  font-weight: 500;
}
.exported-site .z-nav__panel .z-nav__mobile-menu {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.exported-site .z-nav__panel .menu-item { margin: 0; padding: 0; }
.exported-site .z-nav__panel .current-menu-item > a,
.exported-site .z-nav__panel .current_page_item > a,
.exported-site .z-nav__panel .current-menu-ancestor > a,
.exported-site .z-nav__panel .is-active > a {
  color: var(--teal);
  font-weight: 600;
}
@media (min-width: 768px) {
  .exported-site .z-nav__primary { display: flex; }
  .exported-site .z-nav__apply { display: inline-flex; }
  .exported-site .z-nav__toggle { display: none; }
}
@media (max-width: 767px) {
  .exported-site .z-nav__primary,
  .exported-site .z-nav__apply { display: none; }
  .exported-site .z-logo__image { max-width: 170px; max-height: 42px; }
}


/* ==============================
   WHERE WE WORK — premium presence panel
   Replaces the old oversized placeholder Africa SVG with an editorial,
   responsive presence map + country cards.
   ============================== */
.exported-site .z-where-premium { overflow: hidden; }
.exported-site .z-where-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(32px, 6vw, 72px);
  align-items: start;
}
@media (min-width: 1024px) {
  .exported-site .z-where-layout { grid-template-columns: minmax(0, .82fr) minmax(0, 1.18fr); }
}
.exported-site .z-where-copy h2 { max-width: 720px; }
.exported-site .z-where-copy > p { max-width: 680px; }
.exported-site .z-mission-vision {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 720px) {
  .exported-site .z-mission-vision { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
.exported-site .z-presence-shell {
  position: relative;
  overflow: hidden;
  border: .5px solid var(--hair);
  border-radius: 22px;
  background:
    radial-gradient(circle at 15% 18%, rgba(186,117,23,.18), transparent 28%),
    radial-gradient(circle at 80% 12%, rgba(83,74,183,.16), transparent 30%),
    linear-gradient(135deg, #fff 0%, #F7F6F2 100%);
  box-shadow: var(--shadow-lift);
}
.exported-site .z-presence-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: radial-gradient(rgba(59,43,107,.16) 1px, transparent 1px);
  background-size: 16px 16px;
  opacity: .18;
  mask-image: linear-gradient(90deg, transparent 0%, #000 15%, #000 85%, transparent 100%);
}
.exported-site .z-presence-map {
  position: relative;
  min-height: clamp(300px, 46vw, 480px);
  margin: clamp(18px, 4vw, 32px);
  border-radius: 20px;
  background:
    radial-gradient(circle at 50% 52%, rgba(59,43,107,.12), transparent 0 28%, rgba(59,43,107,.07) 29% 30%, transparent 31%),
    radial-gradient(circle at 50% 52%, transparent 0 44%, rgba(186,117,23,.15) 45% 45.5%, transparent 46%),
    linear-gradient(180deg, rgba(255,255,255,.78), rgba(255,255,255,.42));
  border: .5px solid rgba(221,221,221,.9);
  isolation: isolate;
}
.exported-site .z-presence-orbit,
.exported-site .z-presence-orbit::before,
.exported-site .z-presence-orbit::after {
  position: absolute;
  content: "";
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  border-radius: 999px;
  pointer-events: none;
}
.exported-site .z-presence-orbit {
  width: min(72%, 380px);
  aspect-ratio: 1;
  border: .5px solid rgba(59,43,107,.20);
  box-shadow: inset 0 0 0 40px rgba(255,255,255,.18);
}
.exported-site .z-presence-orbit::before {
  width: 68%; aspect-ratio: 1;
  border: .5px dashed rgba(59,43,107,.22);
}
.exported-site .z-presence-orbit::after {
  width: 35%; aspect-ratio: 1;
  background: var(--grad-royal);
  opacity: .08;
  filter: blur(12px);
}
.exported-site .z-presence-pin {
  position: absolute;
  left: var(--x);
  top: var(--y);
  transform: translate(-50%, -50%);
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 10px 7px 7px;
  border: .5px solid rgba(59,43,107,.18);
  border-radius: 999px;
  background: rgba(255,255,255,.92);
  color: var(--ink);
  box-shadow: 0 12px 30px -18px rgba(59,43,107,.55);
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease, background .25s ease;
}
.exported-site .z-presence-pin .dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--teal);
  box-shadow: 0 0 0 5px rgba(59,43,107,.12);
  flex: 0 0 auto;
}
.exported-site .z-presence-pin.is-primary .dot { background: var(--amber); box-shadow: 0 0 0 5px rgba(186,117,23,.16); }
.exported-site .z-presence-pin:hover,
.exported-site .z-presence-pin:focus-visible,
.exported-site .z-presence-pin.is-active {
  transform: translate(-50%, -50%) translateY(-3px);
  border-color: rgba(59,43,107,.42);
  background: #fff;
  box-shadow: 0 20px 40px -22px rgba(59,43,107,.75);
  outline: none;
}
.exported-site .z-presence-pin.is-active .dot { animation: zPresencePulse 1.8s ease-out infinite; }
@keyframes zPresencePulse {
  0% { box-shadow: 0 0 0 0 rgba(59,43,107,.22); }
  70% { box-shadow: 0 0 0 12px rgba(59,43,107,0); }
  100% { box-shadow: 0 0 0 0 rgba(59,43,107,0); }
}
.exported-site .z-presence-panel {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 18px;
  flex-wrap: wrap;
  padding: 22px clamp(20px, 4vw, 32px);
  border-top: .5px solid var(--hair);
  background: rgba(255,255,255,.76);
  backdrop-filter: blur(10px);
}
.exported-site .z-presence-panel .label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.exported-site .z-presence-panel .country-name {
  margin-top: 3px;
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1;
  color: var(--ink);
}
.exported-site .z-presence-panel .note { margin-top: 6px; color: var(--ink-2); font-size: 14px; }
.exported-site .z-presence-panel .chips { display: flex; flex-wrap: wrap; gap: 8px; max-width: 440px; justify-content: flex-start; }
.exported-site .z-presence-panel .chips button {
  padding: 7px 12px;
  border-radius: 999px;
  border: .5px solid var(--hair);
  background: rgba(255,255,255,.7);
  color: var(--ink-2);
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .06em;
  cursor: pointer;
  transition: background .2s ease, color .2s ease, border-color .2s ease;
}
.exported-site .z-presence-panel .chips button:hover,
.exported-site .z-presence-panel .chips button.is-active {
  background: var(--teal);
  border-color: var(--teal);
  color: #fff;
}
.exported-site .z-country-list {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  padding: 0 clamp(20px, 4vw, 32px) clamp(20px, 4vw, 32px);
}
@media (min-width: 720px) {
  .exported-site .z-country-list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
.exported-site .z-country-card {
  display: flex;
  flex-direction: column;
  gap: 3px;
  border: .5px solid var(--hair);
  border-radius: 14px;
  background: rgba(255,255,255,.66);
  padding: 14px 16px;
}
.exported-site .z-country-card span { font-weight: 600; color: var(--ink); }
.exported-site .z-country-card small { color: var(--ink-3); font-size: 12px; line-height: 1.45; }
@media (max-width: 680px) {
  .exported-site .z-presence-map { min-height: 380px; margin: 16px; }
  .exported-site .z-presence-pin { font-size: 9px; padding: 6px 8px 6px 6px; }
  .exported-site .z-presence-pin .pin-text { max-width: 78px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
  .exported-site .z-presence-pin[data-name="Sierra Leone"] { --x: 27% !important; --y: 60% !important; }
  .exported-site .z-presence-pin[data-name="The Gambia"] { --x: 25% !important; --y: 49% !important; }
}

/* ==============================
   WHERE WE WORK — real Africa SVG map upgrade
   v1.2.2: replaces abstract orbit map with a branded, interactive SVG map.
   ============================== */
.exported-site .z-africa-map-widget {
  min-height: unset;
  padding: clamp(18px, 3vw, 28px);
  background:
    radial-gradient(circle at 18% 18%, rgba(186,117,23,.13), transparent 24%),
    radial-gradient(circle at 78% 14%, rgba(83,74,183,.12), transparent 28%),
    linear-gradient(180deg, rgba(255,255,255,.90), rgba(250,249,245,.66));
  overflow: hidden;
}
.exported-site .z-africa-svg {
  position: relative;
  display: block;
  width: 100%;
  max-width: 660px;
  height: auto;
  margin: 0 auto;
  overflow: visible;
}
.exported-site .z-africa-shadow {
  fill: rgba(59,43,107,.08);
  filter: url(#zyraMapShadow);
}
.exported-site .z-africa-land {
  fill: url(#zyraMapLand);
  stroke: rgba(59,43,107,.20);
  stroke-width: 1.2;
  vector-effect: non-scaling-stroke;
}
.exported-site .z-africa-detail {
  fill: none;
  stroke: rgba(59,43,107,.13);
  stroke-width: 1;
  stroke-dasharray: 6 10;
  vector-effect: non-scaling-stroke;
}
.exported-site .z-map-country {
  fill: rgba(59,43,107,.13);
  stroke: rgba(255,255,255,.92);
  stroke-width: 4;
  vector-effect: non-scaling-stroke;
  cursor: pointer;
  transition: fill .22s ease, opacity .22s ease, transform .22s ease, filter .22s ease;
  transform-box: fill-box;
  transform-origin: center;
}
.exported-site .z-map-country.is-primary {
  fill: rgba(186,117,23,.32);
}
.exported-site .z-map-country:hover,
.exported-site .z-map-country:focus-visible,
.exported-site .z-map-country.is-active {
  fill: var(--teal);
  opacity: .96;
  transform: scale(1.05);
  outline: none;
  filter: drop-shadow(0 8px 12px rgba(59,43,107,.18));
}
.exported-site .z-map-pin {
  cursor: pointer;
  transition: opacity .22s ease, transform .22s ease;
}
.exported-site .z-map-pin .pin-ring {
  fill: rgba(255,255,255,.72);
  stroke: rgba(59,43,107,.24);
  stroke-width: 1;
}
.exported-site .z-map-pin .pin-dot {
  fill: var(--teal);
  stroke: #fff;
  stroke-width: 2;
}
.exported-site .z-map-pin .pin-line {
  fill: none;
  stroke: rgba(59,43,107,.22);
  stroke-width: 1.2;
  stroke-linecap: round;
}
.exported-site .z-map-pin .pin-label-bg {
  fill: rgba(255,255,255,.92);
  stroke: rgba(59,43,107,.18);
  stroke-width: 1;
}
.exported-site .z-map-pin text {
  fill: var(--ink);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  pointer-events: none;
}
.exported-site .z-map-pin:hover,
.exported-site .z-map-pin.is-active {
  transform: translateY(-3px);
}
.exported-site .z-map-pin.is-active .pin-ring {
  stroke: var(--teal);
  fill: rgba(59,43,107,.08);
}
.exported-site .z-map-pin.is-active .pin-dot {
  fill: var(--amber);
  animation: zPresencePulse 1.8s ease-out infinite;
}
.exported-site .z-map-pin.is-active .pin-label-bg {
  stroke: rgba(59,43,107,.42);
  filter: drop-shadow(0 12px 16px rgba(59,43,107,.12));
}
.exported-site .z-country-card {
  cursor: default;
}
@media (max-width: 900px) {
  .exported-site .z-africa-map-widget { padding: 12px; }
  .exported-site .z-africa-svg { max-width: 540px; }
  .exported-site .z-map-pin text { font-size: 10px; }
  .exported-site .z-map-pin .pin-label-bg { opacity: .96; }
}
@media (max-width: 600px) {
  .exported-site .z-africa-svg { min-width: 520px; transform: translateX(-7%); }
  .exported-site .z-africa-map-widget { overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .exported-site .z-map-pin text { font-size: 9px; }
}

/* ==============================
   WHERE WE WORK — 3D Africa map v1.2.3
   Uses a premium 3D map image as the base, with pulsing interactive location labels.
   ============================== */
.exported-site .z-map3d-shell {
  padding: clamp(14px, 2vw, 22px);
  background:
    radial-gradient(circle at 18% 12%, rgba(255,255,255,.68), transparent 28%),
    radial-gradient(circle at 84% 22%, rgba(83,74,183,.13), transparent 30%),
    linear-gradient(145deg, #F4F3EE 0%, #FFFFFF 58%, #ECEAE5 100%);
}
.exported-site .z-map3d-stage {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  min-height: unset;
  overflow: hidden;
  border-radius: 22px;
  background: #C7C7C4;
  border: .5px solid rgba(59,43,107,.16);
  isolation: isolate;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.75);
}
.exported-site .z-map3d-stage::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 50% 48%, transparent 0 42%, rgba(255,255,255,.16) 43%, transparent 56%),
    linear-gradient(180deg, rgba(255,255,255,.22), rgba(0,0,0,.04));
  mix-blend-mode: soft-light;
  z-index: 2;
}
.exported-site .z-map3d-canvas {
  position: absolute;
  inset: 0;
  transform: scale(1.025);
  transform-origin: center;
  transition: transform .55s cubic-bezier(.2,.8,.2,1), filter .55s ease;
  z-index: 1;
}
.exported-site .z-map3d-stage:hover .z-map3d-canvas,
.exported-site .z-map3d-stage:focus-within .z-map3d-canvas,
.exported-site .z-map3d-stage.is-zoomed .z-map3d-canvas {
  transform: scale(.975);
  filter: contrast(1.02) saturate(.96);
}
.exported-site .z-map3d-bg {
  position: absolute;
  inset: 0;
  display: block;
  background-image: url("assets/images/africa-3d-map.jpg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% 100%;
  filter: grayscale(1) contrast(1.04) brightness(1.03);
}
.exported-site .z-map3d-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 52%, rgba(59,43,107,.06), transparent 38%);
}
.exported-site .z-map3d-pin {
  position: absolute;
  left: var(--x);
  top: var(--y);
  transform: translate(-50%, -50%);
  z-index: 4;
  width: 22px;
  height: 22px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  outline: none;
}
.exported-site .z-map3d-pin .marker {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 12px;
  height: 12px;
  transform: translate(-50%, -50%);
  border-radius: 999px;
  background: var(--purple);
  border: 2px solid #fff;
  box-shadow: 0 8px 18px rgba(20,16,35,.32), 0 0 0 5px rgba(83,74,183,.14);
}
.exported-site .z-map3d-pin.is-primary .marker { background: var(--amber); box-shadow: 0 8px 18px rgba(20,16,35,.30), 0 0 0 5px rgba(186,117,23,.16); }
.exported-site .z-map3d-pin .marker::before {
  content: "";
  position: absolute;
  inset: -9px;
  border-radius: inherit;
  border: 1px solid rgba(83,74,183,.34);
  animation: zMap3dPulse 2.15s ease-out infinite;
}
.exported-site .z-map3d-pin.is-primary .marker::before { border-color: rgba(186,117,23,.38); }
.exported-site .z-map3d-pin .label {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(var(--label-x), var(--label-y));
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 7px 11px 6px;
  border-radius: 999px;
  border: .5px solid rgba(59,43,107,.18);
  background: rgba(255,255,255,.88);
  box-shadow: 0 12px 26px -20px rgba(20,16,35,.7);
  color: var(--ink);
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .065em;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
  backdrop-filter: blur(10px);
  opacity: .92;
  transition: transform .24s ease, opacity .24s ease, background .24s ease, border-color .24s ease, box-shadow .24s ease;
  pointer-events: none;
}
.exported-site .z-map3d-pin:hover .label,
.exported-site .z-map3d-pin:focus-visible .label,
.exported-site .z-map3d-pin.is-active .label {
  opacity: 1;
  background: #fff;
  border-color: rgba(59,43,107,.42);
  box-shadow: 0 18px 34px -20px rgba(20,16,35,.85);
}
.exported-site .z-map3d-pin:hover .marker,
.exported-site .z-map3d-pin:focus-visible .marker,
.exported-site .z-map3d-pin.is-active .marker {
  transform: translate(-50%, -50%) scale(1.18);
}
.exported-site .z-map3d-pin.is-active .marker { background: var(--teal); }
.exported-site .z-map3d-pin:focus-visible .marker { outline: 2px solid rgba(59,43,107,.35); outline-offset: 5px; }
@keyframes zMap3dPulse {
  0% { transform: scale(.72); opacity: .72; }
  70% { transform: scale(1.85); opacity: 0; }
  100% { transform: scale(1.85); opacity: 0; }
}
.exported-site .z-map3d-panel {
  align-items: center;
  padding-top: 20px;
  padding-bottom: 20px;
}
.exported-site .z-map3d-hint {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .075em;
  text-transform: uppercase;
  color: var(--ink-3);
  border: .5px solid var(--hair);
  border-radius: 999px;
  padding: 8px 12px;
  background: rgba(255,255,255,.72);
}
.exported-site .z-map3d-shell .z-country-list { display: none !important; }
@media (min-width: 1200px) {
  .exported-site .z-where-layout { grid-template-columns: minmax(0, .78fr) minmax(0, 1.22fr); }
}
@media (max-width: 900px) {
  .exported-site .z-map3d-shell { padding: 12px; }
  .exported-site .z-map3d-pin .label { font-size: 9px; padding: 6px 9px; }
}
@media (max-width: 680px) {
  .exported-site .z-map3d-stage {
    min-width: 520px;
    width: 520px;
  }
  .exported-site .z-map3d-shell {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .exported-site .z-map3d-panel { min-width: 520px; }
}
@media (prefers-reduced-motion: reduce) {
  .exported-site .z-map3d-canvas,
  .exported-site .z-map3d-pin .marker,
  .exported-site .z-map3d-pin .label { transition: none !important; }
  .exported-site .z-map3d-pin .marker::before { animation: none !important; opacity: .24; }
}
.exported-site .screen-reader-text {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

/* =========================================================
   v1.2.4 — Lovable-style Africa map port
   Native SVG + vanilla JS version of the Lovable AfricaMap.tsx
   component. No React, no map API, no external map dependency.
   ========================================================= */
.exported-site .z-where-lovable-section .z-where-layout {
  align-items: center;
}
.exported-site .z-lovable-map-shell {
  position: relative;
  overflow: hidden;
  border: .5px solid var(--hair);
  border-radius: 22px;
  background: var(--surface);
  box-shadow: var(--shadow-lift);
}
.exported-site .z-lovable-map-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 18% 20%, rgba(186,117,23,.13), transparent 28%),
    radial-gradient(circle at 82% 12%, rgba(83,74,183,.14), transparent 32%),
    radial-gradient(rgba(59,43,107,.12) 1px, transparent 1px);
  background-size: auto, auto, 16px 16px;
  opacity: .75;
}
.exported-site .z-lovable-map-canvas {
  position: relative;
  aspect-ratio: 4 / 3.2;
  padding: clamp(12px, 2.4vw, 24px);
  z-index: 1;
}
.exported-site .z-lovable-africa-svg {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 360px;
  border-radius: 18px;
  overflow: visible;
}
.exported-site .z-lovable-map-bg {
  fill: url(#zyra-map-glow);
  stroke: rgba(20,16,35,.08);
  stroke-width: .8;
}
.exported-site .z-lovable-country {
  fill: #FFFFFF;
  stroke: var(--hair);
  stroke-width: .75;
  outline: none;
  transition: fill .2s ease, opacity .2s ease, transform .2s ease;
}
.exported-site .z-lovable-country.is-active {
  fill: var(--teal);
  fill-opacity: .18;
  cursor: pointer;
}
.exported-site .z-lovable-country.is-primary,
.exported-site .z-lovable-country[data-country="Nigeria"],
.exported-site .z-lovable-country[data-country="Kenya"] {
  fill: var(--amber);
  fill-opacity: .20;
}
.exported-site .z-lovable-country.is-active:hover,
.exported-site .z-lovable-country.is-active:focus-visible,
.exported-site .z-lovable-country.is-selected {
  fill-opacity: .34;
  stroke: var(--teal);
  stroke-width: 1.1;
}
.exported-site .z-lovable-marker {
  cursor: pointer;
  outline: none;
}
.exported-site .z-lovable-marker .marker-pulse {
  fill: var(--teal);
  fill-opacity: .24;
  transform-origin: center;
  transform-box: fill-box;
  animation: zyraLovablePulse 2.2s ease-out infinite;
}
.exported-site .z-lovable-marker.is-primary .marker-pulse {
  fill: var(--amber);
}
.exported-site .z-lovable-marker .marker-core {
  fill: var(--teal);
  stroke: #FFFFFF;
  stroke-width: 1.6;
  filter: drop-shadow(0 4px 7px rgba(20,16,35,.20));
  transition: r .18s ease, fill .18s ease;
}
.exported-site .z-lovable-marker.is-primary .marker-core {
  fill: var(--amber);
}
.exported-site .z-lovable-marker .marker-label {
  font-family: var(--font-mono, monospace);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: .07em;
  fill: var(--ink);
  paint-order: stroke;
  stroke: #FFFFFF;
  stroke-width: 4px;
  stroke-linejoin: round;
  text-transform: uppercase;
  pointer-events: none;
  transition: transform .18s ease, fill .18s ease;
}
.exported-site .z-lovable-marker:hover .marker-core,
.exported-site .z-lovable-marker:focus-visible .marker-core,
.exported-site .z-lovable-marker.is-active .marker-core {
  r: 5.2;
  fill: var(--teal);
}
.exported-site .z-lovable-marker:hover .marker-label,
.exported-site .z-lovable-marker:focus-visible .marker-label,
.exported-site .z-lovable-marker.is-active .marker-label {
  fill: var(--purple);
  transform: translateY(-2px);
}
.exported-site .z-lovable-marker:focus-visible .marker-core {
  outline: 2px solid rgba(59,43,107,.35);
  outline-offset: 5px;
}
.exported-site .z-lovable-map-panel {
  position: relative;
  z-index: 2;
  border-top: .5px solid var(--hair);
  background: var(--bg);
  padding: clamp(18px, 2.4vw, 24px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.exported-site .z-lovable-map-copy { min-width: 0; }
.exported-site .z-lovable-map-copy .label {
  font-family: var(--font-mono, monospace);
  font-size: 11px;
  letter-spacing: .08em;
  color: var(--ink-2);
  text-transform: uppercase;
}
.exported-site .z-lovable-map-copy .country-name {
  font-family: var(--font-display);
  font-size: clamp(24px, 2.1vw, 34px);
  line-height: 1.05;
  color: var(--ink);
  margin-top: 4px;
}
.exported-site .z-lovable-map-copy .note {
  color: var(--ink-2);
  font-size: 13px;
  margin-top: 5px;
}
.exported-site .z-lovable-map-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  justify-content: flex-end;
  max-width: 54%;
}
.exported-site .z-lovable-map-chips button {
  appearance: none;
  border: .5px solid var(--hair);
  border-radius: 999px;
  background: transparent;
  color: var(--ink-2);
  cursor: pointer;
  font-family: var(--font-mono, monospace);
  font-size: 10px;
  letter-spacing: .06em;
  line-height: 1;
  padding: 8px 10px;
  text-transform: uppercase;
  transition: background .18s ease, color .18s ease, border-color .18s ease, transform .18s ease;
}
.exported-site .z-lovable-map-chips button:hover,
.exported-site .z-lovable-map-chips button:focus-visible,
.exported-site .z-lovable-map-chips button.is-active {
  background: var(--teal);
  border-color: var(--teal);
  color: #FFFFFF;
  transform: translateY(-1px);
}
@keyframes zyraLovablePulse {
  0% { r: 7; fill-opacity: .24; }
  62% { r: 15; fill-opacity: 0; }
  100% { r: 7; fill-opacity: .24; }
}
@media (max-width: 900px) {
  .exported-site .z-lovable-map-panel {
    align-items: flex-start;
    flex-direction: column;
  }
  .exported-site .z-lovable-map-chips {
    justify-content: flex-start;
    max-width: none;
  }
}
@media (max-width: 640px) {
  .exported-site .z-lovable-map-canvas {
    overflow-x: auto;
    padding: 10px;
  }
  .exported-site .z-lovable-africa-svg {
    min-width: 560px;
    min-height: 390px;
  }
  .exported-site .z-lovable-marker .marker-label { font-size: 7px; stroke-width: 3px; }
}
@media (prefers-reduced-motion: reduce) {
  .exported-site .z-lovable-marker .marker-pulse { animation: none !important; opacity: .25; }
  .exported-site .z-lovable-country,
  .exported-site .z-lovable-marker .marker-core,
  .exported-site .z-lovable-marker .marker-label,
  .exported-site .z-lovable-map-chips button { transition: none !important; }
}


/* =========================================================
   v1.3.1 — Map polish: preserve natural SVG ratio and stop stretching
   ========================================================= */
.exported-site .z-where-lovable-section .z-where-layout {
  align-items: center;
}
@media (min-width: 1024px) {
  .exported-site .z-where-lovable-section .z-where-layout {
    grid-template-columns: minmax(0, .92fr) minmax(420px, 1.08fr);
  }
}
.exported-site .z-lovable-map-shell {
  max-width: 760px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
.exported-site .z-lovable-map-canvas {
  aspect-ratio: auto;
  min-height: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(18px, 2.6vw, 30px);
}
.exported-site .z-lovable-africa-svg {
  width: min(100%, 620px);
  height: auto;
  min-height: 0;
  max-height: 470px;
  aspect-ratio: 640 / 480;
  flex: 0 1 auto;
}
.exported-site .z-lovable-marker .marker-label {
  font-size: 7.4px;
  stroke-width: 3.4px;
}
@media (max-width: 640px) {
  .exported-site .z-lovable-map-canvas {
    justify-content: flex-start;
    overflow-x: auto;
  }
  .exported-site .z-lovable-africa-svg {
    width: 560px;
    min-width: 560px;
    height: auto;
    max-height: none;
  }
}


/* Elementor live editor preview: keep Zyra sections visible while Elementor re-renders widgets. */
body.exported-site.zyra-elementor-live-preview .z-reveal,
body.exported-site.zyra-elementor-live-preview .z-fade-up,
body.exported-site.zyra-elementor-live-preview .z-fade-in,
html.elementor-html body.exported-site .z-reveal,
html.elementor-html body.exported-site .z-fade-up,
html.elementor-html body.exported-site .z-fade-in {
  opacity: 1 !important;
  transform: none !important;
  animation: none !important;
  transition: none !important;
  visibility: visible !important;
}


/* ==============================
   v1.3.3 — Image ratio and crop fidelity fix
   Keeps imported Elementor/Lovable images cropped instead of stretched.
   ============================== */
.exported-site .z-hero-image {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  border: 0.5px solid var(--hair);
  box-shadow: var(--shadow-lift);
  aspect-ratio: 4 / 5;
  background: var(--surface);
}
.exported-site .z-hero-image > img,
.exported-site img.z-hero-image {
  width: 100% !important;
  height: 100% !important;
  max-width: none !important;
  object-fit: cover !important;
  object-position: center !important;
  display: block !important;
}
.exported-site img.z-hero-image {
  aspect-ratio: 4 / 5;
}
.exported-site .zyra-image-frame {
  position: relative;
  overflow: hidden;
  background: var(--surface);
}
.exported-site .zyra-image-frame--wide { aspect-ratio: 16 / 10; }
.exported-site .zyra-image-frame--standard { aspect-ratio: 4 / 3; }
.exported-site .zyra-image-frame--portrait { aspect-ratio: 4 / 5; }
.exported-site .zyra-image-frame > img {
  width: 100% !important;
  height: 100% !important;
  max-width: none !important;
  object-fit: cover !important;
  object-position: center !important;
  display: block !important;
}
.exported-site .zcard img:not(.custom-logo):not([class*="logo"]),
.exported-site .program-card img:not(.custom-logo):not([class*="logo"]),
.exported-site .story-card img:not(.custom-logo):not([class*="logo"]) {
  object-fit: cover;
  object-position: center;
}
@media (max-width: 767px) {
  .exported-site .z-hero-image,
  .exported-site img.z-hero-image {
    aspect-ratio: 4 / 4.6;
  }
}
