/*
 * ============================================================
 *  OVP Delivery Dashboard — Global Stylesheet
 *  Office of the Vice President, Federal Republic of Nigeria
 * ============================================================
 *  Import this file into every page:
 *  <link rel="stylesheet" href="styles.css">
 *
 *  Google Fonts (add to every page <head> before this link):
 *  <link href="https://fonts.googleapis.com/css2?family=DM+Sans:wght@300;400;500;600&family=Space+Mono:wght@400;700&display=swap" rel="stylesheet">
 * ============================================================
 *
 *  TABLE OF CONTENTS
 *  -----------------
 *  1.  CSS Variables (Design Tokens)
 *  2.  Reset & Base
 *  3.  Topbar
 *  4.  Navbar
 *  5.  Buttons
 *  6.  Section Utilities (eyebrow, section-head, view-all)
 *  7.  Hero
 *  8.  KPI Strip
 *  9.  Search Section
 *  10. Programs Section (tabs, grid, cards)
 *  11. Featured Programme Card
 *  12. Sectors Strip
 *  13. Blog / Newsroom
 *  14. About VP Section
 *  15. Timeline / Milestones
 *  16. Newsletter CTA
 *  17. Footer
 *  18. Responsive / Media Queries
 * ============================================================
 */

  :root {
    --green-deep: #006B3F;
    --green-mid: #008B52;
    --green-bright: #00A86B;
    --green-light: #00C878;
    --green-pale: #E8F5EF;
    --green-fade: #C6EDD9;
    --white: #FFFFFF;
    --off-white: #F7FAF8;
    --text-dark: #0A1F14;
    --text-mid: #2D5040;
    --text-light: #5A7A68;
    --gold: #D4A017;
    --gold-light: #F0C040;
    --border: rgba(0, 107, 63, 0.15);
    --shadow-sm: 0 2px 12px rgba(0,107,63,0.08);
    --shadow-md: 0 8px 32px rgba(0,107,63,0.12);
    --shadow-lg: 0 24px 64px rgba(0,107,63,0.18);
  }

  * { margin: 0; padding: 0; box-sizing: border-box; }

  html { scroll-behavior: smooth; }

  body {
    font-family: 'DM Sans', sans-serif;
    background: var(--white);
    color: var(--text-dark);
    overflow-x: hidden;
  }

  /* ===== TOPBAR ===== */
  .topbar {
    background: var(--green-deep);
    color: rgba(255,255,255,0.75);
    font-size: 12px;
    font-family: 'Space Mono', monospace;
    letter-spacing: 0.03em;
    padding: 8px 0;
  }
  .topbar-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .topbar a { color: rgba(255,255,255,0.75); text-decoration: none; }
  .topbar a:hover { color: var(--gold-light); }
  .topbar-right { display: flex; gap: 24px; align-items: center; }
  .topbar-tag {
    background: var(--gold);
    color: var(--text-dark);
    font-size: 10px;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 2px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  /* ===== NAVBAR ===== */

  /*
   * Sticky positioning lives on #header-placeholder (the injection wrapper)
   * so that sticky works correctly when the header is loaded via components.js.
   * The .navbar itself does NOT set position:sticky — the parent handles it.
   */
  #header-placeholder {
    position: sticky;
    top: 0;
    z-index: 100;
  }

  .navbar {
    background: var(--white);
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    position: relative;
    z-index: 100;
  }
  .nav-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .nav-logo {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
  }
  .logo-crest {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    flex-shrink: 0;
    overflow: hidden;
    background: transparent;
  }
  .logo-crest img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
  .logo-text { line-height: 1.2; }
  .logo-text .title {
    font-family: Arial, sans-serif;
    font-weight: 700;
    font-size: 15px;
    color: var(--green-deep);
    letter-spacing: 0.01em;
  }
  .logo-text .sub {
    font-size: 10px;
    color: var(--text-light);
    font-family: 'Space Mono', monospace;
    letter-spacing: 0.05em;
    text-transform: uppercase;
  }
  .nav-links { display: flex; align-items: center; gap: 4px; }
  .nav-links a {
    font-size: 13.5px;
    font-weight: 500;
    color: var(--text-mid);
    text-decoration: none;
    padding: 8px 14px;
    border-radius: 6px;
    transition: all 0.2s;
  }
  .nav-links a:hover, .nav-links a.active {
    background: var(--green-pale);
    color: var(--green-deep);
  }
  .nav-links a.active { font-weight: 600; }
  .nav-cta {
    background: var(--green-deep);
    color: var(--white) !important;
    padding: 9px 20px !important;
    border-radius: 6px !important;
    font-weight: 600 !important;
    transition: background 0.2s !important;
  }
  .nav-cta:hover { background: var(--green-mid) !important; }
  .hamburger { display: none; cursor: pointer; flex-direction: column; gap: 5px; }
  .hamburger span { display: block; width: 24px; height: 2px; background: var(--green-deep); border-radius: 2px; }

  /* ===== HERO ===== */
  .hero {
    position: relative;
    min-height: 92vh;
    background: var(--green-deep);
    overflow: hidden;
    display: flex;
    align-items: center;
  }
  .hero-bg-pattern {
    position: absolute;
    inset: 0;
    background-image:
      radial-gradient(circle at 20% 50%, rgba(0,200,120,0.12) 0%, transparent 60%),
      radial-gradient(circle at 80% 20%, rgba(0,168,107,0.1) 0%, transparent 50%),
      radial-gradient(circle at 60% 80%, rgba(212,160,23,0.07) 0%, transparent 40%);
  }
  .hero-grid {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
                      linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 60px 60px;
  }
  .hero-lines {
    position: absolute;
    right: 0;
    top: 0;
    width: 55%;
    height: 100%;
    overflow: hidden;
  }
  .hero-lines svg { width: 100%; height: 100%; opacity: 0.06; }

  .hero-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    position: relative;
    z-index: 1;
  }
  .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(212,160,23,0.15);
    border: 1px solid rgba(212,160,23,0.4);
    color: var(--gold-light);
    font-size: 11px;
    font-family: 'Space Mono', monospace;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 100px;
    margin-bottom: 28px;
  }
  .hero-badge .dot {
    width: 6px; height: 6px; border-radius: 50%;
    background: var(--gold-light);
    animation: pulse 2s infinite;
  }
  @keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.8); }
  }
  .hero h1 {
    font-family: Arial, sans-serif;
    font-size: clamp(36px, 4.5vw, 62px);
    font-weight: 900;
    color: var(--white);
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 24px;
  }
  .hero h1 em {
    font-style: normal;
    color: var(--gold-light);
  }
  .hero p {
    font-size: 16px;
    color: rgba(255,255,255,0.72);
    line-height: 1.7;
    margin-bottom: 40px;
    max-width: 480px;
  }
  .hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }
  .btn-primary {
    background: var(--gold);
    color: var(--text-dark);
    font-weight: 700;
    font-size: 14px;
    padding: 14px 28px;
    border-radius: 8px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.25s;
    letter-spacing: 0.01em;
  }
  .btn-primary:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(212,160,23,0.35);
  }
  .btn-outline {
    background: transparent;
    color: var(--white);
    font-weight: 600;
    font-size: 14px;
    padding: 14px 28px;
    border-radius: 8px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1.5px solid rgba(255,255,255,0.3);
    transition: all 0.25s;
  }
  .btn-outline:hover {
    border-color: rgba(255,255,255,0.7);
    background: rgba(255,255,255,0.08);
  }

  /* Hero stats */
  .hero-stats {
    display: flex;
    gap: 32px;
    margin-top: 52px;
    padding-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.1);
  }
  .hero-stat .num {
    font-family: Arial, sans-serif;
    font-size: 32px;
    font-weight: 900;
    color: var(--white);
    line-height: 1;
    margin-bottom: 4px;
  }
  .hero-stat .num span { color: var(--gold-light); }
  .hero-stat .label { font-size: 12px; color: rgba(255,255,255,0.55); text-transform: uppercase; letter-spacing: 0.06em; }

  /* Hero card panel */
  .hero-panel {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
  .panel-header {
    font-family: 'Space Mono', monospace;
    font-size: 11px;
    color: rgba(255,255,255,0.4);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 4px;
  }
  .prog-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    padding: 18px 20px;
    backdrop-filter: blur(8px);
    transition: all 0.25s;
    cursor: pointer;
  }
  .prog-card:hover {
    background: rgba(255,255,255,0.09);
    border-color: rgba(255,255,255,0.2);
    transform: translateX(4px);
  }
  .prog-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
  }
  .prog-card-title {
    font-weight: 600;
    font-size: 14px;
    color: var(--white);
  }
  .prog-status {
    font-size: 11px;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 100px;
    font-family: 'Space Mono', monospace;
  }
  .status-ongoing { background: rgba(0,200,120,0.2); color: var(--green-light); }
  .status-completed { background: rgba(212,160,23,0.2); color: var(--gold-light); }
  .status-ended { background: rgba(255,255,255,0.1); color: rgba(255,255,255,0.55); }
  .prog-meta { font-size: 12px; color: rgba(255,255,255,0.5); margin-bottom: 12px; }
  .prog-bar-wrap { background: rgba(255,255,255,0.08); border-radius: 4px; height: 5px; overflow: hidden; }
  .prog-bar { height: 100%; border-radius: 4px; background: linear-gradient(90deg, var(--green-bright), var(--green-light)); }
  .prog-bar.gold { background: linear-gradient(90deg, var(--gold), var(--gold-light)); }
  .prog-bar-footer { display: flex; justify-content: space-between; margin-top: 8px; }
  .prog-bar-footer span { font-size: 11px; color: rgba(255,255,255,0.4); font-family: 'Space Mono', monospace; }

  /* ===== SEARCH SECTION ===== */
  .search-section {
    background: var(--off-white);
    padding: 64px 0;
    border-bottom: 1px solid var(--border);
  }
  .section-inner { max-width: 1280px; margin: 0 auto; padding: 0 32px; }
  .search-label {
    text-align: center;
    font-size: 12px;
    font-family: 'Space Mono', monospace;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--green-mid);
    margin-bottom: 12px;
  }
  .search-title {
    text-align: center;
    font-family: Arial, sans-serif;
    font-size: clamp(26px, 3vw, 38px);
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 40px;
  }
  .search-box-wrap {
    max-width: 760px;
    margin: 0 auto;
    display: flex;
    gap: 0;
    background: var(--white);
    border-radius: 12px;
    border: 1.5px solid var(--border);
    box-shadow: var(--shadow-md);
    overflow: hidden;
    transition: border-color 0.2s, box-shadow 0.2s;
  }
  .search-box-wrap:focus-within {
    border-color: var(--green-mid);
    box-shadow: 0 0 0 4px rgba(0,139,82,0.1), var(--shadow-md);
  }
  .search-input {
    flex: 1;
    border: none;
    outline: none;
    padding: 18px 24px;
    font-size: 15px;
    font-family: 'DM Sans', sans-serif;
    color: var(--text-dark);
    background: transparent;
  }
  .search-input::placeholder { color: var(--text-light); }
  .search-select {
    border: none;
    border-left: 1px solid var(--border);
    padding: 18px 20px;
    font-size: 14px;
    font-family: 'DM Sans', sans-serif;
    color: var(--text-mid);
    background: var(--off-white);
    outline: none;
    cursor: pointer;
    min-width: 160px;
  }
  .search-btn {
    background: var(--green-deep);
    color: var(--white);
    border: none;
    padding: 18px 28px;
    font-size: 14px;
    font-weight: 600;
    font-family: 'DM Sans', sans-serif;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: background 0.2s;
  }
  .search-btn:hover { background: var(--green-mid); }
  .search-tags {
    text-align: center;
    margin-top: 24px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
  }
  .search-tags span {
    font-size: 12px;
    color: var(--text-light);
    font-family: 'Space Mono', monospace;
  }
  .search-tags a {
    font-size: 13px;
    color: var(--green-mid);
    text-decoration: none;
    background: var(--green-pale);
    padding: 5px 14px;
    border-radius: 100px;
    font-weight: 500;
    border: 1px solid var(--green-fade);
    transition: all 0.2s;
  }
  .search-tags a:hover { background: var(--green-deep); color: var(--white); }

  /* ===== KPI STRIP ===== */
  .kpi-strip {
    background: var(--green-deep);
    padding: 48px 0;
  }
  .kpi-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1px;
    background: rgba(255,255,255,0.08);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.08);
  }
  .kpi-item {
    background: rgba(255,255,255,0.03);
    padding: 28px 24px;
    text-align: center;
    transition: background 0.2s;
    cursor: default;
  }
  .kpi-item:hover { background: rgba(255,255,255,0.07); }
  .kpi-num {
    font-family: Arial, sans-serif;
    font-size: 36px;
    font-weight: 900;
    color: var(--white);
    line-height: 1;
    margin-bottom: 6px;
  }
  .kpi-num .accent { color: var(--gold-light); }
  .kpi-label {
    font-size: 12px;
    color: rgba(255,255,255,0.55);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-family: 'Space Mono', monospace;
  }
  .kpi-change {
    font-size: 11px;
    margin-top: 6px;
    font-weight: 600;
  }
  .kpi-change.up { color: var(--green-light); }
  .kpi-change.down { color: #FF8080; }

  /* ===== PROGRAMS SECTION ===== */
  .programs-section { padding: 88px 0; background: var(--white); }
  .section-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 48px;
  }
  .section-eyebrow {
    font-size: 11px;
    font-family: 'Space Mono', monospace;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--green-mid);
    margin-bottom: 10px;
  }
  .section-h {
    font-family: Arial, sans-serif;
    font-size: clamp(24px, 2.8vw, 36px);
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1.15;
  }
  .view-all {
    font-size: 13px;
    font-weight: 600;
    color: var(--green-mid);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 18px;
    border: 1.5px solid var(--green-fade);
    border-radius: 100px;
    transition: all 0.2s;
    white-space: nowrap;
  }
  .view-all:hover { background: var(--green-deep); color: var(--white); border-color: var(--green-deep); }

  /* Tabs */
  .prog-tabs {
    display: flex;
    gap: 4px;
    margin-bottom: 32px;
    background: var(--off-white);
    border-radius: 10px;
    padding: 4px;
    width: fit-content;
  }
  .prog-tab {
    font-size: 13px;
    font-weight: 600;
    padding: 9px 20px;
    border-radius: 7px;
    cursor: pointer;
    transition: all 0.2s;
    color: var(--text-light);
    border: none;
    background: transparent;
    font-family: 'DM Sans', sans-serif;
  }
  .prog-tab.active {
    background: var(--green-deep);
    color: var(--white);
    box-shadow: var(--shadow-sm);
  }

  .prog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
  .prog-card-v2 {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 14px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.28s;
    cursor: pointer;
  }
  .prog-card-v2:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--green-fade);
  }
  .prog-card-img {
    height: 8px;
    background: linear-gradient(90deg, var(--green-deep), var(--green-bright));
  }
  .prog-card-img.gold-bar { background: linear-gradient(90deg, var(--gold), var(--gold-light)); }
  .prog-card-img.grey-bar { background: linear-gradient(90deg, #9DB8A8, #BDD4C8); }
  .prog-card-body { padding: 22px; }
  .prog-card-sector {
    font-size: 11px;
    font-family: 'Space Mono', monospace;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--green-mid);
    margin-bottom: 8px;
  }
  .prog-card-name {
    font-family: Arial, sans-serif;
    font-size: 17px;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.3;
    margin-bottom: 10px;
  }
  .prog-card-desc {
    font-size: 13px;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 18px;
  }
  .prog-card-meta { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 18px; }
  .meta-tag {
    font-size: 11px;
    background: var(--green-pale);
    color: var(--green-mid);
    padding: 4px 10px;
    border-radius: 100px;
    font-weight: 500;
    border: 1px solid var(--green-fade);
  }
  .meta-tag.gold { background: rgba(212,160,23,0.1); color: #8B6914; border-color: rgba(212,160,23,0.25); }
  .prog-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 16px;
    border-top: 1px solid var(--border);
  }
  .prog-pct {
    font-family: Arial, sans-serif;
    font-size: 24px;
    font-weight: 900;
    color: var(--green-deep);
  }
  .prog-pct.gold-text { color: var(--gold); }
  .prog-pct-label { font-size: 11px; color: var(--text-light); }
  .prog-view-btn {
    font-size: 12px;
    font-weight: 600;
    color: var(--green-deep);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 6px 14px;
    border-radius: 6px;
    border: 1.5px solid var(--green-fade);
    transition: all 0.2s;
  }
  .prog-view-btn:hover { background: var(--green-deep); color: var(--white); border-color: var(--green-deep); }
  .prog-progress-wrap { margin-bottom: 0; }
  .prog-progress-bar {
    height: 4px;
    background: var(--green-pale);
    border-radius: 4px;
    overflow: hidden;
    margin-top: 6px;
  }
  .prog-progress-fill {
    height: 100%;
    border-radius: 4px;
    background: linear-gradient(90deg, var(--green-mid), var(--green-bright));
  }
  .prog-progress-fill.gold { background: linear-gradient(90deg, var(--gold), var(--gold-light)); }

  /* ===== FEATURED PROGRAM ===== */
  .featured-section { padding: 0 0 88px; background: var(--white); }
  .featured-card {
    background: linear-gradient(135deg, var(--green-deep) 0%, var(--green-mid) 60%, var(--green-bright) 100%);
    border-radius: 20px;
    padding: 56px 64px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    position: relative;
    overflow: hidden;
  }
  .featured-bg {
    position: absolute;
    inset: 0;
    background-image:
      radial-gradient(circle at 80% 20%, rgba(255,255,255,0.05) 0%, transparent 50%),
      radial-gradient(circle at 20% 80%, rgba(212,160,23,0.06) 0%, transparent 50%);
  }
  .featured-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(212,160,23,0.2);
    border: 1px solid rgba(212,160,23,0.5);
    color: var(--gold-light);
    font-size: 11px;
    font-family: 'Space Mono', monospace;
    letter-spacing: 0.1em;
    padding: 5px 12px;
    border-radius: 100px;
    margin-bottom: 20px;
    width: fit-content;
  }
  .featured-h {
    font-family: Arial, sans-serif;
    font-size: clamp(22px, 2.5vw, 34px);
    font-weight: 900;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 16px;
  }
  .featured-desc { font-size: 15px; color: rgba(255,255,255,0.7); line-height: 1.7; margin-bottom: 32px; }
  .featured-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
  .fstat {
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 10px;
    padding: 16px;
  }
  .fstat-num {
    font-family: Arial, sans-serif;
    font-size: 26px;
    font-weight: 900;
    color: var(--gold-light);
    margin-bottom: 4px;
  }
  .fstat-label { font-size: 12px; color: rgba(255,255,255,0.55); text-transform: uppercase; letter-spacing: 0.05em; font-family: 'Space Mono', monospace; }
  .featured-kpi-list { display: flex; flex-direction: column; gap: 14px; position: relative; z-index: 1; }
  .fkpi {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 10px;
    padding: 14px 18px;
    display: flex;
    align-items: center;
    gap: 16px;
  }
  .fkpi-icon {
    width: 36px;
    height: 36px;
    background: rgba(212,160,23,0.2);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
  }
  .fkpi-text .name { font-size: 13px; font-weight: 600; color: var(--white); }
  .fkpi-text .val { font-size: 12px; color: rgba(255,255,255,0.55); margin-top: 2px; }
  .fkpi-pct {
    margin-left: auto;
    font-family: 'Space Mono', monospace;
    font-size: 13px;
    font-weight: 700;
    color: var(--green-light);
  }
  .fkpi-pct.done { color: var(--gold-light); }

  /* ===== BLOG SECTION ===== */
  .blog-section { padding: 88px 0; background: var(--off-white); }
  .blog-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 24px;
  }
  .blog-card {
    background: var(--white);
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    transition: all 0.28s;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
  }
  .blog-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
  }
  .blog-img {
    height: 220px;
    background: linear-gradient(135deg, var(--green-deep), var(--green-bright));
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    padding: 20px;
  }
  .blog-img.featured-img { height: 280px; }
  .blog-img-label {
    font-size: 11px;
    font-family: 'Space Mono', monospace;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    background: rgba(212,160,23,0.9);
    color: var(--text-dark);
    padding: 4px 10px;
    border-radius: 4px;
    font-weight: 700;
  }
  .blog-img-pattern {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 70% 30%, rgba(0,200,120,0.15) 0%, transparent 50%),
                      linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
                      linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
    background-size: 100%, 40px 40px, 40px 40px;
  }
  .blog-body { padding: 22px; flex: 1; display: flex; flex-direction: column; }
  .blog-cat {
    font-size: 11px;
    font-family: 'Space Mono', monospace;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--green-mid);
    margin-bottom: 8px;
  }
  .blog-title {
    font-family: Arial, sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.35;
    margin-bottom: 10px;
  }
  .blog-card-feat .blog-title { font-size: 20px; }
  .blog-excerpt { font-size: 13px; color: var(--text-light); line-height: 1.6; flex: 1; }
  .blog-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 16px;
    margin-top: 16px;
    border-top: 1px solid var(--border);
    font-size: 12px;
    color: var(--text-light);
  }
  .blog-read-more {
    color: var(--green-mid);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 4px;
  }

  /* ===== SECTORS STRIP ===== */
  .sectors-section { padding: 72px 0; background: var(--white); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
  .sectors-label { text-align: center; margin-bottom: 40px; }
  .sectors-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
  }
  .sector-item {
    text-align: center;
    padding: 24px 16px;
    border-radius: 12px;
    border: 1px solid var(--border);
    background: var(--off-white);
    transition: all 0.22s;
    cursor: pointer;
  }
  .sector-item:hover {
    border-color: var(--green-mid);
    background: var(--green-pale);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
  }
  .sector-icon {
    font-size: 28px;
    margin-bottom: 10px;
    display: block;
  }
  .sector-name { font-size: 12px; font-weight: 600; color: var(--text-mid); }
  .sector-count { font-size: 11px; color: var(--text-light); margin-top: 4px; font-family: 'Space Mono', monospace; }

  /* ===== ABOUT VP SECTION ===== */
  .vp-section { padding: 88px 0; background: var(--off-white); }
  .vp-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
  }
  .vp-photo-wrap { position: relative; }
  .vp-photo-box {
    width: 100%;
    aspect-ratio: 4/5;
    max-width: 420px;
    background: linear-gradient(160deg, var(--green-deep) 0%, var(--green-bright) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
  }
  .vp-photo-placeholder {
    font-family: Arial, sans-serif;
    font-size: 80px;
    color: rgba(255,255,255,0.15);
    font-weight: 900;
    letter-spacing: -4px;
  }
  .vp-photo-caption {
    position: absolute;
    bottom: 24px;
    left: 24px;
    right: 24px;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(12px);
    border-radius: 10px;
    padding: 14px 18px;
    color: var(--white);
  }
  .vp-photo-caption .name { font-family: Arial, sans-serif; font-weight: 700; font-size: 16px; }
  .vp-photo-caption .role { font-size: 12px; color: rgba(255,255,255,0.65); margin-top: 2px; }
  .vp-floater {
    position: absolute;
    top: -16px;
    right: -16px;
    background: var(--gold);
    color: var(--text-dark);
    border-radius: 12px;
    padding: 14px 18px;
    box-shadow: var(--shadow-md);
    text-align: center;
  }
  .vp-floater .num { font-family: Arial, sans-serif; font-size: 28px; font-weight: 900; line-height: 1; }
  .vp-floater .lbl { font-size: 11px; font-weight: 600; margin-top: 4px; text-transform: uppercase; letter-spacing: 0.05em; }
  .vp-text-block .eyebrow { font-size: 11px; font-family: 'Space Mono', monospace; letter-spacing: 0.1em; color: var(--green-mid); text-transform: uppercase; margin-bottom: 16px; }
  .vp-text-block h2 { font-family: Arial, sans-serif; font-size: clamp(26px, 3vw, 40px); font-weight: 900; color: var(--text-dark); line-height: 1.15; margin-bottom: 20px; }
  .vp-text-block p { font-size: 15px; color: var(--text-light); line-height: 1.75; margin-bottom: 16px; }
  .mandate-list { display: flex; flex-direction: column; gap: 12px; margin-top: 28px; }
  .mandate-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 14px 16px;
    background: var(--white);
    border-radius: 10px;
    border: 1px solid var(--border);
  }
  .mandate-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--green-bright);
    flex-shrink: 0;
    margin-top: 6px;
  }
  .mandate-item p { font-size: 14px; color: var(--text-mid); margin: 0; line-height: 1.5; }

  /* ===== TIMELINE ===== */
  .timeline-section { padding: 88px 0; background: var(--off-white); }
  .timeline-intro {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 48px;
    flex-wrap: wrap;
    gap: 20px;
  }
  .tl-legend {
    display: flex;
    gap: 20px;
    align-items: center;
    flex-wrap: wrap;
  }
  .tl-legend-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: var(--text-light);
    font-family: 'Space Mono', monospace;
  }
  .tl-legend-dot {
    width: 12px; height: 12px; border-radius: 50%; flex-shrink: 0;
  }
  .timeline-wrap {
    position: relative;
    padding-left: 36px;
  }
  .timeline-spine {
    position: absolute;
    left: 15px;
    top: 8px;
    bottom: 8px;
    width: 2px;
    background: linear-gradient(to bottom, var(--green-deep), var(--green-fade));
    border-radius: 2px;
  }
  .timeline-item {
    position: relative;
    display: grid;
    grid-template-columns: 180px 1fr;
    gap: 24px;
    margin-bottom: 0;
    padding-bottom: 36px;
    align-items: flex-start;
  }
  .timeline-item:last-child { padding-bottom: 0; }
  .tl-dot {
    position: absolute;
    left: -43px;
    top: 2px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--green-deep);
    border: 3px solid var(--white);
    box-shadow: 0 0 0 2px var(--green-deep);
    z-index: 1;
    flex-shrink: 0;
  }
  .tl-dot.completed { background: var(--gold); box-shadow: 0 0 0 2px var(--gold); }
  .tl-dot.ongoing { background: var(--green-bright); box-shadow: 0 0 0 2px var(--green-bright); }
  .tl-dot.ended { background: #9DB8A8; box-shadow: 0 0 0 2px #9DB8A8; }
  .tl-left { padding-top: 2px; }
  .tl-date {
    font-size: 12px;
    font-family: 'Space Mono', monospace;
    color: var(--green-mid);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    line-height: 1.3;
    margin-bottom: 6px;
  }
  .tl-tag {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 10px;
    font-family: 'Space Mono', monospace;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 3px 9px;
    border-radius: 100px;
    font-weight: 700;
  }
  .tl-tag.completed { background: rgba(212,160,23,0.12); color: #8B6914; border: 1px solid rgba(212,160,23,0.3); }
  .tl-tag.ongoing { background: rgba(0,168,107,0.1); color: var(--green-mid); border: 1px solid var(--green-fade); }
  .tl-tag.ended { background: rgba(157,184,168,0.15); color: #5A7A68; border: 1px solid rgba(157,184,168,0.3); }
  .tl-content {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 20px 24px;
    box-shadow: var(--shadow-sm);
    transition: all 0.22s;
  }
  .tl-content:hover {
    border-color: var(--green-fade);
    box-shadow: var(--shadow-md);
    transform: translateX(4px);
  }
  .tl-content-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 10px;
  }
  .tl-title {
    font-family: Arial, sans-serif;
    font-weight: 700;
    font-size: 15px;
    color: var(--text-dark);
    line-height: 1.4;
  }
  .tl-sector {
    font-size: 11px;
    font-family: 'Space Mono', monospace;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    white-space: nowrap;
    flex-shrink: 0;
    margin-top: 2px;
  }
  .tl-desc { font-size: 13px; color: var(--text-light); line-height: 1.6; margin-bottom: 14px; }
  .tl-metrics {
    display: flex;
    gap: 20px;
    padding-top: 12px;
    border-top: 1px solid var(--border);
  }
  .tl-metric .val {
    font-size: 16px;
    font-weight: 800;
    color: var(--green-deep);
    font-family: Arial, sans-serif;
    line-height: 1;
  }
  .tl-metric .val.gold { color: var(--gold); }
  .tl-metric .lbl { font-size: 11px; color: var(--text-light); margin-top: 3px; font-family: 'Space Mono', monospace; text-transform: uppercase; letter-spacing: 0.04em; }

  /* ===== NEWSLETTER / CTA STRIP ===== */
  .cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--green-deep), var(--green-mid));
    position: relative;
    overflow: hidden;
  }
  .cta-bg {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 10% 50%, rgba(255,255,255,0.04) 0%, transparent 50%),
                      radial-gradient(circle at 90% 30%, rgba(212,160,23,0.06) 0%, transparent 50%);
  }
  .cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 48px;
    position: relative;
    z-index: 1;
  }
  .cta-text h2 { font-family: Arial, sans-serif; font-size: clamp(24px, 2.8vw, 36px); font-weight: 800; color: var(--white); margin-bottom: 10px; }
  .cta-text p { font-size: 15px; color: rgba(255,255,255,0.7); }
  .cta-form { display: flex; gap: 0; flex-shrink: 0; background: rgba(255,255,255,0.1); border-radius: 10px; overflow: hidden; border: 1px solid rgba(255,255,255,0.2); }
  .cta-input {
    border: none;
    outline: none;
    background: transparent;
    padding: 14px 20px;
    font-size: 14px;
    color: var(--white);
    font-family: 'DM Sans', sans-serif;
    min-width: 260px;
  }
  .cta-input::placeholder { color: rgba(255,255,255,0.45); }
  .cta-submit {
    background: var(--gold);
    color: var(--text-dark);
    border: none;
    padding: 14px 24px;
    font-size: 14px;
    font-weight: 700;
    font-family: 'DM Sans', sans-serif;
    cursor: pointer;
    transition: background 0.2s;
    white-space: nowrap;
  }
  .cta-submit:hover { background: var(--gold-light); }

  /* ===== FOOTER ===== */
  .footer {
    background: var(--text-dark);
    color: rgba(255,255,255,0.7);
    padding: 72px 0 0;
  }
  .footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 56px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }
  .footer-brand .logo-text .title { color: rgba(255,255,255,0.9); font-size: 14px; }
  .footer-brand .logo-text .sub { color: rgba(255,255,255,0.4); }
  .footer-desc {
    font-size: 13.5px;
    line-height: 1.7;
    color: rgba(255,255,255,0.5);
    margin-top: 16px;
    margin-bottom: 24px;
  }
  .footer-social { display: flex; gap: 10px; }
  .social-btn {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.2s;
  }
  .social-btn:hover { background: var(--green-deep); border-color: var(--green-mid); color: var(--white); }
  .footer-col h4 {
    font-family: Arial, sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: rgba(255,255,255,0.9);
    margin-bottom: 20px;
  }
  .footer-links { display: flex; flex-direction: column; gap: 10px; }
  .footer-links a {
    font-size: 13px;
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    transition: color 0.2s;
    display: flex;
    align-items: center;
    gap: 6px;
  }
  .footer-links a:hover { color: var(--green-light); }
  .footer-links a::before { content: '→'; font-size: 11px; opacity: 0.5; }
  .footer-contact { display: flex; flex-direction: column; gap: 12px; }
  .contact-item { display: flex; gap: 10px; align-items: flex-start; }
  .contact-icon { font-size: 14px; margin-top: 1px; flex-shrink: 0; }
  .contact-text { font-size: 12.5px; color: rgba(255,255,255,0.5); line-height: 1.5; }
  .footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    font-size: 12px;
    color: rgba(255,255,255,0.35);
    flex-wrap: wrap;
    gap: 12px;
  }
  .footer-bottom a { color: rgba(255,255,255,0.35); text-decoration: none; }
  .footer-bottom a:hover { color: var(--green-light); }
  .footer-flag {
    display: flex;
    gap: 4px;
    align-items: center;
  }
  .flag-strip {
    width: 28px;
    height: 18px;
    display: flex;
    overflow: hidden;
    border-radius: 2px;
    flex-shrink: 0;
  }
  .flag-strip .g { flex: 1; background: var(--green-deep); }
  .flag-strip .w { flex: 1; background: var(--white); }

  /* ===== RESPONSIVE ===== */
  @media (max-width: 1024px) {
    .hero-inner { grid-template-columns: 1fr; gap: 48px; }
    .hero-panel { display: none; }
    .kpi-grid { grid-template-columns: repeat(3, 1fr); }
    .kpi-item:nth-child(4), .kpi-item:nth-child(5) { grid-column: span 1; }
    .prog-grid { grid-template-columns: repeat(2, 1fr); }
    .blog-grid { grid-template-columns: 1fr 1fr; }
    .blog-card:first-child { grid-column: span 2; }
    .sectors-grid { grid-template-columns: repeat(3, 1fr); }
    .vp-inner { grid-template-columns: 1fr; gap: 48px; }
    .vp-photo-box { max-width: 100%; aspect-ratio: 16/7; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .featured-card { grid-template-columns: 1fr; gap: 40px; }
  }
  @media (max-width: 768px) {
    .topbar { display: none; }
    .nav-links { display: none; }
    .hamburger { display: flex; }
    .hero { min-height: auto; padding: 60px 0 48px; }
    .hero-stats { gap: 20px; }
    .kpi-grid { grid-template-columns: repeat(2, 1fr); }
    .prog-grid { grid-template-columns: 1fr; }
    .blog-grid { grid-template-columns: 1fr; }
    .blog-card:first-child { grid-column: span 1; }
    .sectors-grid { grid-template-columns: repeat(2, 1fr); }
    .cta-inner { flex-direction: column; }
    .cta-form { flex-direction: column; width: 100%; }
    .cta-input { min-width: auto; }
    .footer-grid { grid-template-columns: 1fr; }
    .timeline-item { grid-template-columns: 100px 1fr; gap: 16px; }
    .timeline-wrap { padding-left: 28px; }
    .timeline-spine { left: 10px; }
    .tl-dot { left: -35px; }
    .tl-metrics { flex-wrap: wrap; gap: 12px; }
    .tl-legend { gap: 12px; }
    .search-box-wrap { flex-direction: column; border-radius: 12px; }
    .search-select { border-left: none; border-top: 1px solid var(--border); }
    .section-head { flex-direction: column; align-items: flex-start; gap: 16px; }
    .featured-card { padding: 32px 24px; }
    .section-inner { padding: 0 20px; }
  }