/*
Theme Name: African Renaissance Month 2026
Theme URI: https://a6rg.org
Author: Africa Sixth Region Global (A6RG)
Author URI: https://a6rg.org
Description: Official website theme for African Renaissance Month 2026 — A Pan-Canadian Platform for Africa-Canada Trade, Investment & Strategic Partnership. Convened by A6RG, ECASR, Government of Ghana, and the African Diplomatic Group.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 7.4
License: Proprietary
License URI: https://a6rg.org
Text Domain: arm2026
Tags: custom-logo, custom-menu, full-width-template, one-page, responsive-layout

*/

/* ============================================================
   ARM 2026 — DESIGN SYSTEM
   Brand: A6RG Official Colours (Media Kit)
   Primary Green:   #176B3A
   Deep Green:      #0E4F2A
   Background:      #F4F6F5
   Gold Accent:     #B8962E
   ============================================================ */

:root {
  --pg: #176B3A;
  --dg: #0E4F2A;
  --bg: #F4F6F5;
  --bg2: #EAEDEB;
  --gold: #B8962E;
  --gold-lt: #D4AE4A;
  --white: #ffffff;
  --text: #1a1a1a;
  --muted: #5a6b60;
  --border: rgba(23, 107, 58, 0.13);
  --font-head: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Montserrat', sans-serif;
  --nav-h: 64px;
  --section-pad: 5rem 3rem;
  --max-w: 1200px;
}

/* ===== RESET ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.6;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: var(--font-body); }

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 { font-family: var(--font-head); font-weight: 600; line-height: 1.1; }
p { line-height: 1.85; }

/* ===== UTILITIES ===== */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 1.5rem; }
.section-label {
  display: block;
  font-size: 9px;
  letter-spacing: 3px;
  color: var(--pg);
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 0.6rem;
}
.section-title {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--dg);
  line-height: 1.15;
  margin-bottom: 1rem;
}
.section-body {
  font-size: 0.875rem;
  line-height: 1.9;
  color: var(--muted);
  max-width: 680px;
}
.btn-primary {
  display: inline-block;
  background: var(--gold-lt);
  color: var(--dg);
  font-size: 11px;
  font-weight: 700;
  padding: 13px 28px;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: background 0.2s;
}
.btn-primary:hover { background: #c9a83c; color: var(--dg); }
.btn-outline {
  display: inline-block;
  background: transparent;
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  padding: 12px 28px;
  letter-spacing: 2px;
  text-transform: uppercase;
  border: 1px solid rgba(255,255,255,0.35);
  transition: border-color 0.2s;
}
.btn-outline:hover { border-color: rgba(255,255,255,0.7); color: #fff; }

/* ===== NAV ===== */
.site-header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  height: var(--nav-h);
}
.nav-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: var(--nav-h);
  padding: 0 3rem;
}
/* logos anchor left */
.nav-logos {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}
.nav-logos img {
  height: 46px;
  width: auto;
  object-fit: contain;
  display: block;
  mix-blend-mode: multiply; /* white bg logos sit cleanly on white nav */
}
.nav-logo-divider {
  width: 1px;
  height: 30px;
  background: var(--border);
}
/* nav menu centred */
.nav-menu {
  display: flex;
  gap: 0.4rem;
  align-items: center;
}
.nav-menu a {
  font-size: 9px;
  letter-spacing: 1.2px;
  color: var(--dg);
  text-transform: uppercase;
  font-weight: 700;
  padding: 8px 14px;
  background: var(--white);
  border: 1.5px solid var(--border);
  transition: background 0.15s, color 0.15s, border-color 0.15s, box-shadow 0.15s;
  white-space: nowrap;
  box-shadow: 0 1px 3px rgba(14,79,42,.06);
}
.nav-menu a:hover {
  background: var(--pg);
  color: #fff;
  border-color: var(--pg);
  box-shadow: 0 2px 8px rgba(23,107,58,.25);
}
.nav-menu a.active {
  background: var(--pg);
  color: #fff;
  border-color: var(--pg);
  box-shadow: inset 0 2px 4px rgba(0,0,0,.15);
}
/* right: register only */
.nav-right {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.nav-register {
  display: inline-block;
  background: var(--pg);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  padding: 10px 22px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: background 0.2s;
  white-space: nowrap;
  text-decoration: none;
}
.nav-register:hover { background: var(--dg); color: #fff; }
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--dg);
  transition: all 0.2s;
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  background: var(--dg);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: calc(var(--nav-h) + 4rem) 2rem 5rem;
  position: relative;
  overflow: hidden;
}
.hero-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image: repeating-linear-gradient(45deg, #fff 0, #fff 1px, transparent 0, transparent 50%);
  background-size: 20px 20px;
  pointer-events: none;
}
/* Convener pills replace logos in hero — logos on dark bg with JPEG white bg
   render as solid white rectangles via screen blend; pills are cleaner and
   more diplomatically informative */
.hero-conveners {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 2rem;
  position: relative;
  z-index: 1;
  flex-wrap: wrap;
}
.hero-conv-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.14);
  padding: 5px 14px;
  font-size: 9px;
  letter-spacing: 1.5px;
  color: rgba(255, 255, 255, 0.65);
  text-transform: uppercase;
  font-weight: 600;
}
.hero-conv-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #6ee39a;
  flex-shrink: 0;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  padding: 5px 18px;
  margin-bottom: 1.35rem;
  position: relative;
  z-index: 1;
}
.hero-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #6ee39a;
  flex-shrink: 0;
}
.hero-badge-text {
  font-size: 10px;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, 0.78);
  text-transform: uppercase;
  font-weight: 600;
}
.hero-title {
  font-family: var(--font-head);
  font-size: clamp(3rem, 8vw, 6.5rem);
  line-height: 1.02;
  color: #fff;
  margin-bottom: 0.5rem;
  position: relative;
  z-index: 1;
  font-weight: 600;
  letter-spacing: -0.5px;
}
.hero-title em {
  color: var(--gold-lt);
  font-style: normal;
}
.hero-sub {
  font-size: 10px;
  letter-spacing: 2.5px;
  color: rgba(255, 255, 255, 0.42);
  text-transform: uppercase;
  margin-bottom: 0.75rem;
  position: relative;
  z-index: 1;
}
.hero-theme {
  font-family: var(--font-head);
  font-style: italic;
  color: rgba(255, 255, 255, 0.55);
  font-size: 1.2rem;
  line-height: 1.65;
  margin-bottom: 2.5rem;
  max-width: 640px;
  position: relative;
  z-index: 1;
}
.hero-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 3rem;
  position: relative;
  z-index: 1;
}
.hero-cities {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 12px;
  justify-content: center;
  font-size: 10px;
  letter-spacing: 1.5px;
  color: rgba(255, 255, 255, 0.32);
  text-transform: uppercase;
  position: relative;
  z-index: 1;
}
.hero-cities .city { color: rgba(255, 255, 255, 0.45); }
.hero-cities .dot { color: rgba(212, 174, 74, 0.5); }

/* ===== STATS ===== */
.stats-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: var(--pg);
}
.stat-item {
  padding: 2.25rem 1rem;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-family: var(--font-head);
  font-size: 3.25rem;
  color: #fff;
  display: block;
  font-weight: 300;
  line-height: 1;
  letter-spacing: -1px;
}
.stat-label {
  font-size: 9px;
  letter-spacing: 2.5px;
  color: rgba(255, 255, 255, 0.42);
  text-transform: uppercase;
  display: block;
  margin-top: 4px;
}

/* ===== CONVENERS ===== */
.conveners-bar {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 1rem 3rem;
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.conv-label {
  font-size: 9px;
  letter-spacing: 2px;
  color: var(--muted);
  text-transform: uppercase;
  white-space: nowrap;
}
.conv-list {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  align-items: center;
}
.conv-item {
  font-size: 10px;
  letter-spacing: 1px;
  color: var(--pg);
  text-transform: uppercase;
  font-weight: 700;
}
.conv-div { color: #ccc; }

/* ===== ABOUT ===== */
.about-section {
  padding: var(--section-pad);
  background: var(--white);
}
.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}
.about-cards {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.about-card {
  background: var(--bg);
  border-left: 3px solid var(--pg);
  padding: 1.25rem 1.5rem;
}
.about-card-title {
  font-size: 9px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--pg);
  font-weight: 700;
  margin-bottom: 6px;
  display: block;
}
.about-card-body {
  font-size: 0.78rem;
  line-height: 1.8;
  color: var(--muted);
}

/* ===== ARCHITECTURE ===== */
.arch-section {
  padding: 5rem 0;
  background: var(--bg2);
}
.arch-section .section-header {
  padding: 0 3rem 0;
}
.arch-flow {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  margin-top: 2rem;
}
.arch-col {
  background: var(--white);
  padding: 2.5rem 3rem;
}
.arch-step {
  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 1.25rem;
  display: block;
}
.arch-item {
  font-size: 0.78rem;
  color: var(--muted);
  line-height: 1.7;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 6px;
}
.arch-arrow { color: var(--pg); font-size: 10px; flex-shrink: 0; margin-top: 4px; }

/* ===== PILLARS ===== */
.pillars-section {
  padding: 5rem 0;
  background: var(--white);
}
.pillars-header { text-align: center; margin-bottom: 3rem; padding: 0 3rem; }
.pillars-header .section-body { margin: 0 auto; }
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
}
.pillar-card {
  background: var(--bg);
  padding: 2rem 3rem;
  transition: background 0.2s;
}
.pillar-card:hover { background: var(--bg2); }
.pillar-num {
  font-family: var(--font-head);
  font-size: 3.5rem;
  color: rgba(23, 107, 58, 0.1);
  display: block;
  margin-bottom: 0.75rem;
  line-height: 1;
  font-weight: 600;
}
.pillar-title {
  font-size: 0.82rem;
  color: var(--dg);
  margin-bottom: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2px;
}
.pillar-body {
  font-size: 0.75rem;
  line-height: 1.8;
  color: var(--muted);
}

/* ===== PROGRAMME ===== */
.programme-section {
  padding: 5rem 0;
  background: var(--bg2);
}
.programme-section .section-header {
  padding: 0 3rem 0;
}
.timeline { display: flex; flex-direction: column; margin-top: 2rem; }
.tl-item {
  display: grid;
  grid-template-columns: 130px 1fr;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  transition: background 0.15s;
}
.tl-item:hover { background: #fafcfb; }
.tl-item.flagship { background: #EDF5F0; }
.tl-item.flagship:hover { background: #e5f2ea; }
.tl-date {
  padding: 1.75rem 1.5rem 1.75rem 3rem;
  border-right: 2px solid var(--border);
}
.tl-city {
  font-size: 8px;
  letter-spacing: 1.5px;
  color: var(--pg);
  text-transform: uppercase;
  display: block;
  font-weight: 700;
  margin-bottom: 3px;
}
.tl-day {
  font-family: var(--font-head);
  font-size: 2rem;
  color: var(--dg);
  display: block;
  line-height: 1.1;
}
.tl-month {
  font-size: 8px;
  color: #aaa;
  text-transform: uppercase;
  display: block;
  letter-spacing: 1px;
}
.tl-content {
  padding: 1.75rem 3rem;
}
.tl-title {
  font-size: 0.875rem;
  color: var(--dg);
  margin-bottom: 6px;
  font-weight: 700;
}
.tl-desc {
  font-size: 0.75rem;
  line-height: 1.75;
  color: var(--muted);
}
.event-tag {
  display: inline-block;
  background: rgba(23, 107, 58, 0.08);
  border: 1px solid rgba(23, 107, 58, 0.15);
  padding: 2px 8px;
  font-size: 8px;
  letter-spacing: 1px;
  color: var(--pg);
  text-transform: uppercase;
  margin-top: 8px;
  font-weight: 700;
}
.event-tag.gold {
  background: rgba(184, 150, 46, 0.08);
  border-color: rgba(184, 150, 46, 0.2);
  color: var(--gold);
}

/* ===== PARTNERSHIP ===== */
.partnership-section {
  padding: 5rem 0;
  background: var(--white);
}
.partnership-section .section-header {
  padding: 0 3rem 0;
}
.tiers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  margin-top: 2.5rem;
}
.tier-card {
  background: var(--bg);
  padding: 2rem 3rem;
}
.tier-price {
  font-family: var(--font-head);
  font-size: 2rem;
  color: var(--pg);
  display: block;
  margin-bottom: 3px;
  font-weight: 600;
}
.tier-name {
  font-size: 9px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--dg);
  font-weight: 700;
  display: block;
  margin-bottom: 1.25rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}
.tier-benefit {
  font-size: 0.75rem;
  color: var(--muted);
  line-height: 1.85;
  display: flex;
  gap: 6px;
  align-items: flex-start;
  margin-bottom: 5px;
  text-align: left;
}
.tier-dot { color: var(--pg); flex-shrink: 0; }

/* Additional tiers card */
.tier-card--additional {
  background: #F0F7F3;
  border-top: 2px solid var(--pg) !important;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.tier-contact-btn {
  margin-top: 1.25rem;
  font-size: 10px;
  padding: 10px 20px;
  letter-spacing: 1px;
  display: inline-block;
}

/* ===== CTA ===== */
.cta-section {
  background: var(--pg);
  text-align: center;
  padding: 7rem 2rem;
}
.cta-label {
  font-size: 9px;
  letter-spacing: 3px;
  color: rgba(255, 255, 255, 0.45);
  text-transform: uppercase;
  display: block;
  margin-bottom: 1rem;
}
.cta-title {
  font-family: var(--font-head);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  color: #fff;
  margin-bottom: 1rem;
  line-height: 1.1;
  font-weight: 600;
}
.cta-body {
  font-size: 0.875rem;
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 2.25rem;
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}
.cta-url {
  font-size: 11px;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.3);
  margin-top: 1.25rem;
  display: block;
}

/* ===== FOOTER ===== */
.site-footer {
  background: var(--dg);
  padding: 3.5rem 3rem;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 2rem;
  margin-bottom: 2.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.footer-brand-logos {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 0.75rem;
}
.footer-brand-logos img {
  height: 38px;
  width: auto;
  mix-blend-mode: screen;
  opacity: 0.6;
}
.footer-logo-div {
  width: 1px;
  height: 24px;
  background: rgba(255, 255, 255, 0.15);
}
.footer-addr {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.35);
  line-height: 1.85;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-end;
}
.footer-nav a {
  font-size: 10px;
  letter-spacing: 1.5px;
  color: rgba(255, 255, 255, 0.35);
  text-transform: uppercase;
  transition: color 0.2s;
}
.footer-nav a:hover { color: rgba(255, 255, 255, 0.7); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-copy {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.2);
}

/* ===== WORDPRESS CORE COMPATIBILITY ===== */
.wp-block-image { margin: 1.5rem 0; }
.aligncenter { margin-left: auto; margin-right: auto; }
.alignleft { float: left; margin-right: 1.5rem; }
.alignright { float: right; margin-left: 1.5rem; }
.screen-reader-text {
  border: 0; clip: rect(1px,1px,1px,1px); clip-path: inset(50%);
  height: 1px; margin: -1px; overflow: hidden; padding: 0;
  position: absolute; width: 1px; word-wrap: normal !important;
}
.wp-caption { max-width: 100%; }
.wp-caption-text { font-size: 0.75rem; color: var(--muted); margin-top: 0.5rem; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
  .about-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .pillars-grid { grid-template-columns: 1fr 1fr; }
  .arch-flow { grid-template-columns: 1fr; }
  .tiers-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 900px) {
  :root { --section-pad: 3.5rem 1.5rem; }
  /* full-bleed sections: reduce section-header padding on tablet/mobile */
  .arch-section,
  .pillars-section,
  .programme-section,
  .partnership-section { padding: 3.5rem 0; }
  .arch-section .section-header,
  .pillars-section .pillars-header,
  .programme-section .section-header,
  .partnership-section .section-header { padding: 0 1.5rem 0; }
  .arch-col,
  .pillar-card,
  .tier-card { padding: 1.75rem 1.5rem; }
  /* mobile nav: switch grid to flex so toggle works */
  .nav-inner {
    display: flex;
    justify-content: space-between;
    padding: 0 1.5rem;
  }
  .nav-menu { display: none; }
  .nav-toggle { display: flex; }
  .nav-menu.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: var(--nav-h);
    left: 0; right: 0;
    background: var(--white);
    padding: 1rem 1.5rem 1.5rem;
    border-bottom: 1px solid var(--border);
    gap: 0.35rem;
    align-items: stretch;
    box-shadow: 0 8px 24px rgba(14,79,42,.1);
    z-index: 99;
  }
  .nav-menu.open a {
    display: block;
    text-align: left;
    padding: 10px 14px;
    background: var(--white);
    border: 1.5px solid var(--border);
    color: var(--dg);
    font-weight: 700;
    box-shadow: 0 1px 3px rgba(14,79,42,.06);
  }
  .nav-menu.open a:hover,
  .nav-menu.open a.active {
    background: var(--pg);
    color: #fff;
    border-color: var(--pg);
  }
  }
  .hero { padding: calc(var(--nav-h) + 2rem) 1.5rem 3rem; }
  .hero-title { font-size: 2.5rem; }
  .hero-logo-chip { padding: 6px 12px; }
  .hero-logos img { height: 34px; }
  .conveners-bar { padding: 1rem 1.5rem; }
  .tl-item { grid-template-columns: 90px 1fr; }
  .tl-date { padding: 1.25rem 1rem 1.25rem 1.5rem; }
  .tl-content { padding: 1.25rem 1.5rem; }
}
@media (max-width: 640px) {
  .pillars-grid { grid-template-columns: 1fr; }
  .tiers-grid { grid-template-columns: 1fr; }
  .stats-strip { grid-template-columns: 1fr 1fr 1fr; }
  .stat-num { font-size: 2rem; }
  .footer-inner { flex-direction: column; }
  .footer-nav { align-items: flex-start; flex-direction: row; flex-wrap: wrap; gap: 0.75rem; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

/* ============================================================
   DYNAMIC ELEMENTS — Marquee, Countdown, Counters, Animations
   ============================================================ */

/* ===== MARQUEE TICKER ===== */
.ticker-wrap {
  background: #071810;
  border-top: 1px solid rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.04);
  display: flex;
  align-items: center;
  height: 42px;
  overflow: hidden;
  position: relative;
}
.ticker-label {
  flex-shrink: 0;
  background: var(--gold-lt);
  color: var(--dg);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 0 16px;
  height: 100%;
  display: flex;
  align-items: center;
  z-index: 2;
  white-space: nowrap;
}
.ticker-track {
  flex: 1;
  overflow: hidden;
  position: relative;
}
.ticker-track::before,
.ticker-track::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 40px;
  z-index: 2;
  pointer-events: none;
}
.ticker-track::before {
  left: 0;
  background: linear-gradient(to right, var(--dg), transparent);
}
.ticker-track::after {
  right: 0;
  background: linear-gradient(to left, var(--dg), transparent);
}
.ticker-inner {
  display: flex;
  align-items: center;
  white-space: nowrap;
  animation: ticker-scroll 60s linear infinite;
  will-change: transform;
}
.ticker-inner:hover {
  animation-play-state: paused;
}
.ticker-item {
  font-size: 10px;
  letter-spacing: 1.2px;
  color: rgba(255,255,255,0.75);
  text-transform: uppercase;
  padding: 0 8px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.ticker-dot {
  color: var(--gold-lt);
  font-size: 5px;
}
@keyframes ticker-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ===== COUNTDOWN BAR ===== */
.countdown-bar {
  background: var(--pg);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  padding: 1.25rem 2rem;
  flex-wrap: wrap;
  border-bottom: 2px solid rgba(212,174,74,0.3);
}
.countdown-label {
  font-size: 9px;
  letter-spacing: 2.5px;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  font-weight: 700;
}
.countdown-units {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.countdown-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 52px;
}
.countdown-num {
  font-family: var(--font-head);
  font-size: 2rem;
  color: #fff;
  font-weight: 600;
  line-height: 1;
  display: block;
  transition: transform 0.2s ease;
}
.countdown-num.flip {
  transform: scaleY(0.8);
}
.countdown-unit-label {
  font-size: 7px;
  letter-spacing: 2px;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
  margin-top: 3px;
}
.countdown-sep {
  font-family: var(--font-head);
  font-size: 1.5rem;
  color: var(--gold-lt);
  line-height: 1;
  margin-bottom: 12px;
}
.countdown-cta {
  background: var(--gold-lt);
  color: var(--dg);
  font-size: 10px;
  font-weight: 700;
  padding: 9px 20px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: background 0.2s;
  white-space: nowrap;
}
.countdown-cta:hover { background: #c9a83c; }

/* ===== STAT COUNTER ANIMATION ===== */
.stat-num {
  transition: color 0.3s;
}
.stat-num.counted {
  color: #fff;
}

/* ===== HERO ENTRANCE ANIMATIONS ===== */
.hero-badge {
  animation: fadeUp 0.6s ease both;
  animation-delay: 0.1s;
}
.hero-logos {
  animation: fadeUp 0.6s ease both;
}
.hero-title {
  animation: fadeUp 0.7s ease both;
  animation-delay: 0.2s;
}
.hero-sub {
  animation: fadeUp 0.6s ease both;
  animation-delay: 0.3s;
}
.hero-theme {
  animation: fadeUp 0.6s ease both;
  animation-delay: 0.4s;
}
.hero-btns {
  animation: fadeUp 0.6s ease both;
  animation-delay: 0.5s;
}
.hero-cities {
  animation: fadeUp 0.6s ease both;
  animation-delay: 0.6s;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ===== SECTION REVEAL ON SCROLL ===== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ===== PILLAR CARD HOVER LIFT ===== */
.pillar-card {
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}
.pillar-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(14,79,42,0.1);
  background: var(--white);
}

/* ===== TIMELINE ITEM HOVER ===== */
.tl-item {
  transition: background 0.15s, border-left 0.15s;
  border-left: 3px solid transparent;
}
.tl-item:hover {
  border-left-color: var(--pg);
}
.tl-item.flagship:hover {
  border-left-color: var(--gold);
}

/* ===== ABOUT CARD HOVER ===== */
.about-card {
  transition: transform 0.2s, box-shadow 0.2s;
}
.about-card:hover {
  transform: translateX(4px);
  box-shadow: -3px 0 0 var(--gold), 4px 0 16px rgba(14,79,42,0.07);
}

/* ===== TIER CARD HOVER ===== */
.tier-card {
  transition: transform 0.2s, box-shadow 0.2s;
}
.tier-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 24px rgba(14,79,42,0.1);
}

/* ===== SCROLL PROGRESS BAR ===== */
#scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: var(--gold-lt);
  z-index: 9999;
  width: 0%;
  transition: width 0.1s linear;
}

/* ===== RESPONSIVE COUNTDOWN ===== */
@media (max-width: 640px) {
  .countdown-bar { gap: 1.25rem; padding: 1rem; }
  .countdown-num { font-size: 1.5rem; }
  .countdown-unit { min-width: 38px; }
}

/* ============================================================
   COLOUR VARIATIONS — Architecture, Pillars, Programme
   ============================================================ */

/* ===== ARCHITECTURE LEVELS ===== */
.arch-col-1 { border-top: 4px solid #176B3A; }
.arch-col-1 .arch-step { color: #176B3A; }
.arch-col-1 .arch-arrow { color: #176B3A; }
.arch-col-1:hover { background: #f0f7f3; }

.arch-col-2 { border-top: 4px solid #B8962E; }
.arch-col-2 .arch-step { color: #B8962E; }
.arch-col-2 .arch-arrow { color: #B8962E; }
.arch-col-2:hover { background: #fdf8ee; }

.arch-col-3 { border-top: 4px solid #0E4F2A; }
.arch-col-3 .arch-step { color: #0E4F2A; }
.arch-col-3 .arch-arrow { color: #0E4F2A; }
.arch-col-3:hover { background: #eaf2ee; }

/* ===== PILLAR COLOUR VARIANTS ===== */
.pillar-1 { border-top: 4px solid #176B3A; }
.pillar-1 .pillar-num { color: rgba(23,107,58,0.13); }
.pillar-1 .pillar-title { color: #176B3A; }
.pillar-1:hover { background: #f0f7f3; box-shadow: 0 8px 32px rgba(23,107,58,0.1); }

.pillar-2 { border-top: 4px solid #B8962E; }
.pillar-2 .pillar-num { color: rgba(184,150,46,0.18); }
.pillar-2 .pillar-title { color: #8a6e1e; }
.pillar-2:hover { background: #fdf8ee; box-shadow: 0 8px 32px rgba(184,150,46,0.1); }

.pillar-3 { border-top: 4px solid #1a5c8a; }
.pillar-3 .pillar-num { color: rgba(26,92,138,0.13); }
.pillar-3 .pillar-title { color: #1a5c8a; }
.pillar-3:hover { background: #f0f5fa; box-shadow: 0 8px 32px rgba(26,92,138,0.1); }

.pillar-4 { border-top: 4px solid #7a3b8a; }
.pillar-4 .pillar-num { color: rgba(122,59,138,0.13); }
.pillar-4 .pillar-title { color: #7a3b8a; }
.pillar-4:hover { background: #f7f0fa; box-shadow: 0 8px 32px rgba(122,59,138,0.1); }

/* ===== PROGRAMME TIMELINE COLOUR VARIANTS ===== */
.tl-opening   { border-left: 4px solid #176B3A !important; }
.tl-opening   .tl-city { color: #176B3A; }
.tl-opening   .tl-day  { color: #176B3A; }
.tl-opening   .event-tag { background: rgba(23,107,58,0.08); border-color: rgba(23,107,58,0.2); color: #176B3A; }

.tl-ceremonial { border-left: 4px solid #B8962E !important; }
.tl-ceremonial .tl-city { color: #8a6e1e; }
.tl-ceremonial .tl-day  { color: #8a6e1e; }
.tl-ceremonial .event-tag { background: rgba(184,150,46,0.08); border-color: rgba(184,150,46,0.2); color: #8a6e1e; }

.tl-faith     { border-left: 4px solid #1a5c8a !important; }
.tl-faith     .tl-city { color: #1a5c8a; }
.tl-faith     .tl-day  { color: #1a5c8a; }
.tl-faith     .event-tag { background: rgba(26,92,138,0.08); border-color: rgba(26,92,138,0.2); color: #1a5c8a; }

.tl-culture   { border-left: 4px solid #7a3b8a !important; }
.tl-culture   .tl-city { color: #7a3b8a; }
.tl-culture   .tl-day  { color: #7a3b8a; }
.tl-culture   .event-tag { background: rgba(122,59,138,0.08); border-color: rgba(122,59,138,0.2); color: #7a3b8a; }

.tl-spiritual { border-left: 4px solid #2e7d9a !important; }
.tl-spiritual .tl-city { color: #2e7d9a; }
.tl-spiritual .tl-day  { color: #2e7d9a; }
.tl-spiritual .event-tag { background: rgba(46,125,154,0.08); border-color: rgba(46,125,154,0.2); color: #2e7d9a; }

.tl-flagship-s { border-left: 4px solid #B8962E !important; background: #fdf8ee; }
.tl-flagship-s .tl-city { color: #8a6e1e; }
.tl-flagship-s .tl-day  { color: #8a6e1e; }
.tl-flagship-s .event-tag { background: rgba(184,150,46,0.1); border-color: rgba(184,150,46,0.25); color: #8a6e1e; }

.tl-deal      { border-left: 4px solid #0E4F2A !important; background: #EDF5F0; }
.tl-deal      .tl-city { color: #0E4F2A; }
.tl-deal      .tl-day  { color: #0E4F2A; }
.tl-deal      .event-tag { background: rgba(14,79,42,0.08); border-color: rgba(14,79,42,0.2); color: #0E4F2A; }

.tl-heritage  { border-left: 4px solid #8a3a2e !important; }
.tl-heritage  .tl-city { color: #8a3a2e; }
.tl-heritage  .tl-day  { color: #8a3a2e; }
.tl-heritage  .event-tag { background: rgba(138,58,46,0.08); border-color: rgba(138,58,46,0.2); color: #8a3a2e; }

.tl-community { border-left: 4px solid #4a7a3a !important; }
.tl-community .tl-city { color: #4a7a3a; }
.tl-community .tl-day  { color: #4a7a3a; }
.tl-community .event-tag { background: rgba(74,122,58,0.08); border-color: rgba(74,122,58,0.2); color: #4a7a3a; }

.tl-innovation { border-left: 4px solid #1a5c8a !important; }
.tl-innovation .tl-city { color: #1a5c8a; }
.tl-innovation .tl-day  { color: #1a5c8a; }
.tl-innovation .event-tag { background: rgba(26,92,138,0.08); border-color: rgba(26,92,138,0.2); color: #1a5c8a; }

.tl-closing   { border-left: 4px solid #7a3b8a !important; }
.tl-closing   .tl-city { color: #7a3b8a; }
.tl-closing   .tl-day  { color: #7a3b8a; }
.tl-closing   .event-tag { background: rgba(122,59,138,0.08); border-color: rgba(122,59,138,0.2); color: #7a3b8a; }

/* ===== PILLAR CARD TAG BADGE ===== */
.pillar-tag {
  display: inline-block;
  font-size: 8px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 700;
  padding: 3px 8px;
  margin-bottom: 0.75rem;
}

/* ============================================================
   ARM 2026 v2.0 — MULTI-PAGE & NEW SECTION STYLES
   ============================================================ */

/* ── PAGE HERO ─────────────────────────────────────────────── */
.page-hero {
  background: var(--dg);
  padding: calc(var(--nav-h) + 4rem) 3rem 4rem;
  position: relative;
  overflow: hidden;
}
.page-hero--dark { background: #071810; }
.page-hero--gold { background: #3a2800; }
.page-hero-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image: repeating-linear-gradient(45deg,#fff 0,#fff 1px,transparent 0,transparent 50%);
  background-size: 20px 20px;
  pointer-events: none;
}
.page-hero-inner { position: relative; z-index: 1; max-width: 800px; }
.page-hero-label {
  display: block;
  font-size: 9px;
  letter-spacing: 3px;
  color: var(--gold-lt);
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 1rem;
}
.page-hero-title {
  font-family: var(--font-head);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  color: #fff;
  line-height: 1.06;
  margin-bottom: 1.25rem;
  font-weight: 600;
  letter-spacing: -0.5px;
}
.page-hero-sub {
  font-size: 1rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.75;
  max-width: 600px;
}

/* ── OPPORTUNITY BAR ───────────────────────────────────────── */
.opp-bar {
  background: var(--dg);
  display: flex;
  align-items: stretch;
  justify-content: center;
  flex-wrap: wrap;
}
.opp-item {
  padding: 2rem 2.5rem;
  text-align: center;
  flex: 1;
  min-width: 180px;
}
.opp-num {
  font-family: var(--font-head);
  font-size: 2.8rem;
  color: var(--gold-lt);
  display: block;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -1px;
}
.opp-label {
  font-size: 9px;
  letter-spacing: 2px;
  color: #fff;
  text-transform: uppercase;
  font-weight: 700;
  display: block;
  margin-top: 6px;
}
.opp-sub {
  font-size: 10px;
  color: rgba(255,255,255,0.4);
  display: block;
  margin-top: 4px;
  line-height: 1.4;
}
.opp-div {
  width: 1px;
  background: rgba(255,255,255,0.1);
  align-self: stretch;
}

/* ── TEASER GRID (homepage) ────────────────────────────────── */
.teasers-section {
  padding: 5rem 0;
  background: var(--bg2);
}
.teasers-header {
  padding: 0 3rem;
  margin-bottom: 2.5rem;
}
.teasers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
}
.teaser-card {
  background: var(--bg);
  padding: 2.25rem 2rem;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  transition: background 0.2s;
}
.teaser-card:hover { background: var(--white); }
.teaser-card--accent { background: var(--white); border-top: 3px solid var(--pg); }
.teaser-card--gold { background: var(--white); border-top: 3px solid var(--gold-lt); }
.teaser-card--register { background: var(--white); border-top: 3px solid #1a5c8a; }
.teaser-num {
  font-family: var(--font-head);
  font-size: 3rem;
  color: rgba(23,107,58,0.1);
  display: block;
  line-height: 1;
  margin-bottom: 0.5rem;
  font-weight: 600;
}
.teaser-title {
  font-size: 1.1rem;
  color: var(--dg);
  margin-bottom: 0.75rem;
  font-family: var(--font-head);
  font-weight: 600;
}
.teaser-body {
  font-size: 0.78rem;
  color: var(--muted);
  line-height: 1.8;
  flex: 1;
}
.teaser-link {
  display: inline-block;
  margin-top: 1.25rem;
  font-size: 9px;
  letter-spacing: 1.5px;
  color: var(--pg);
  text-transform: uppercase;
  font-weight: 700;
}

/* ── PROBLEM SECTION (why underleveraged) ──────────────────── */
.problem-section {
  padding: 5rem 0;
  background: var(--dg);
}
.problem-section .section-header {
  padding: 0 3rem;
  margin-bottom: 3rem;
}
.problem-section .section-label { color: var(--gold-lt); }
.problem-section .section-title { color: #fff; }
.problem-section .section-body { color: rgba(255,255,255,0.6); }
.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.08);
}
.problem-card {
  background: rgba(255,255,255,0.04);
  padding: 2.5rem 2rem;
}
.problem-card:hover { background: rgba(255,255,255,0.07); }
.problem-icon {
  font-family: var(--font-head);
  font-size: 3.5rem;
  color: rgba(212,174,74,0.2);
  display: block;
  line-height: 1;
  margin-bottom: 1rem;
  font-weight: 600;
}
.problem-title {
  font-size: 1rem;
  color: var(--gold-lt);
  margin-bottom: 0.75rem;
  font-family: var(--font-head);
  font-weight: 600;
}
.problem-body {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.85;
}

/* ── BRIDGE SECTION (diaspora) ─────────────────────────────── */
.bridge-section {
  padding: 5rem 3rem;
  background: var(--white);
}
.bridge-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}
.bridge-card {
  background: var(--bg2);
  padding: 2rem;
  border-top: 4px solid var(--pg);
}
.bridge-label {
  display: block;
  font-size: 9px;
  letter-spacing: 2px;
  color: var(--pg);
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 0.75rem;
}
.bridge-body {
  font-size: 0.78rem;
  color: var(--muted);
  line-height: 1.85;
}
.corridor-diagram {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  padding: 2rem;
  background: var(--bg2);
  margin-top: 2rem;
}
.corr-node {
  padding: 1.25rem 2rem;
  text-align: center;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.corr-node--canada { background: var(--pg); color: #fff; }
.corr-node--diaspora { background: var(--gold-lt); color: var(--dg); }
.corr-node--africa { background: var(--dg); color: #fff; }
.corr-node small { display: block; font-weight: 400; font-size: 9px; letter-spacing: 1.5px; opacity: 0.8; margin-top: 3px; }
.corr-arrow { font-size: 1.5rem; color: var(--border); }

/* ── ROOM SECTION (who is in the room) ─────────────────────── */
.room-section {
  padding: 5rem 3rem;
  background: var(--bg2);
}
.room-header { margin-bottom: 3rem; }
.room-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
}
.room-card {
  background: var(--white);
  padding: 2rem 1.75rem;
}
.room-card-title {
  font-size: 9px;
  letter-spacing: 2px;
  color: var(--pg);
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border);
  display: block;
}
.room-list {
  list-style: none;
}
.room-list li {
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.75;
  padding: 0.3rem 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.room-list li::before {
  content: '·';
  color: var(--pg);
  flex-shrink: 0;
  font-size: 1rem;
  line-height: 1.5;
}

/* ── SDG SECTION ────────────────────────────────────────────── */
.sdg-section {
  padding: 5rem 3rem;
  background: var(--white);
}
.sdg-section .section-header { margin-bottom: 3rem; }
.sdg-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 8px;
}
.sdg-card {
  padding: 1.5rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  min-height: 100px;
}
.sdg-num {
  font-size: 8px;
  letter-spacing: 1.5px;
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
  font-weight: 700;
}
.sdg-name {
  font-size: 0.8rem;
  color: #fff;
  font-weight: 700;
  line-height: 1.3;
}

/* ── FLAGSHIP CARDS (programme page) ───────────────────────── */
.flagship-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 2.5rem;
}
.flagship-card {
  background: var(--bg2);
  padding: 2.5rem;
  border-top: 4px solid var(--pg);
}
.flagship-card--gold { border-top-color: var(--gold-lt); background: #fdf8ee; }
.flagship-date {
  font-size: 9px;
  letter-spacing: 2px;
  color: var(--pg);
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 0.75rem;
  display: block;
}
.flagship-card--gold .flagship-date { color: #8a6e1e; }
.flagship-title {
  font-family: var(--font-head);
  font-size: 1.75rem;
  color: var(--dg);
  margin-bottom: 1.5rem;
  line-height: 1.1;
}
.flagship-body p {
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.85;
}
.flagship-body strong { color: var(--dg); }

/* ── ARCH LEVEL TAG ────────────────────────────────────────── */
.arch-level-tag {
  display: block;
  font-size: 8px;
  letter-spacing: 2px;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.arch-col { background: var(--white); padding: 2.5rem 3rem; }

/* ── MAY 26 SESSIONS ───────────────────────────────────────── */
.may26-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border);
  margin-top: 2.5rem;
}
.may26-session {
  background: var(--bg);
  padding: 2rem;
}
.may26-session--gold { background: #fdf8ee; }
.may26-tag {
  display: inline-block;
  font-size: 8px;
  letter-spacing: 1.5px;
  color: var(--pg);
  text-transform: uppercase;
  font-weight: 700;
  background: rgba(23,107,58,0.08);
  padding: 3px 8px;
  margin-bottom: 0.75rem;
}
.may26-tag--gold { color: #8a6e1e; background: rgba(184,150,46,0.1); }
.may26-session-title {
  font-size: 1rem;
  color: var(--dg);
  margin-bottom: 0.6rem;
  font-family: var(--font-head);
  font-weight: 600;
}
.may26-session-body { font-size: 0.78rem; color: var(--muted); line-height: 1.8; }

/* ── PILLAR PAGES ───────────────────────────────────────────── */
.pillar-page-section { padding: 5rem 3rem; }
.pillar-page-section--1 { background: var(--white); border-top: 6px solid var(--pg); }
.pillar-page-section--2 { background: var(--bg2); border-top: 6px solid var(--gold-lt); }
.pillar-page-section--3 { background: var(--white); border-top: 6px solid #1a5c8a; }
.pillar-page-section--4 { background: var(--bg2); border-top: 6px solid #7a3b8a; }
.pillar-page-inner {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 4rem;
  align-items: start;
}
.pillar-page-num {
  font-family: var(--font-head);
  font-size: 8rem;
  color: rgba(23,107,58,0.1);
  display: block;
  line-height: 1;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.pillar-page-tag {
  display: block;
  font-size: 8px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 0.75rem;
}
.pillar-page-title {
  font-family: var(--font-head);
  font-size: 2.25rem;
  color: var(--dg);
  line-height: 1.1;
  font-weight: 600;
}
.pillar-sub-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 2rem;
}
.pillar-sub {
  border-left: 3px solid var(--border);
  padding-left: 1.5rem;
}
.pillar-sub-title {
  font-size: 0.9rem;
  color: var(--dg);
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.pillar-sub-body { font-size: 0.78rem; color: var(--muted); line-height: 1.85; }

/* ── VALUE GRID (for Finance, Corps, etc.) ──────────────────── */
.value-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
}
.value-card {
  background: var(--bg);
  padding: 2.25rem 1.75rem;
}
.value-tag {
  display: block;
  font-size: 8px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 0.75rem;
}
.value-title {
  font-family: var(--font-head);
  font-size: 1.3rem;
  color: var(--dg);
  margin-bottom: 0.75rem;
  font-weight: 600;
}
.value-body {
  font-size: 0.78rem;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 1.25rem;
}
.value-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.value-list li {
  font-size: 0.75rem;
  color: var(--muted);
  line-height: 1.6;
  display: flex;
  gap: 6px;
  align-items: flex-start;
}
.value-list li::before { content: '·'; color: var(--pg); flex-shrink: 0; font-size: 1rem; line-height: 1.4; }

/* ── EXCLUSIVITY GRID ───────────────────────────────────────── */
.excl-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}
.excl-card {
  background: var(--bg2);
  padding: 2rem;
  border-top: 4px solid var(--pg);
}
.excl-tag {
  display: inline-block;
  font-size: 8px;
  letter-spacing: 2px;
  color: var(--pg);
  text-transform: uppercase;
  font-weight: 700;
  background: rgba(23,107,58,0.08);
  padding: 3px 8px;
  margin-bottom: 0.75rem;
}
.excl-title {
  font-family: var(--font-head);
  font-size: 1.25rem;
  color: var(--dg);
  margin-bottom: 0.6rem;
  font-weight: 600;
}
.excl-body { font-size: 0.78rem; color: var(--muted); line-height: 1.85; margin-bottom: 1.25rem; }
.excl-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 1rem;
}
.excl-tags span {
  font-size: 8px;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 700;
  padding: 3px 8px;
  border: 1px solid var(--border);
  color: var(--muted);
}

/* ── OUTCOMES GRID ──────────────────────────────────────────── */
.outcomes-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  margin-top: 3rem;
}
.outcome-card {
  background: var(--white);
  padding: 2rem 1.75rem;
}
.outcome-card--wide {
  grid-column: span 4;
  background: #EDF5F0;
  border-top: 4px solid var(--pg);
}
.outcome-icon { color: var(--pg); display: block; margin-bottom: 0.75rem; }
.outcome-title {
  font-size: 0.9rem;
  color: var(--dg);
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.outcome-body { font-size: 0.78rem; color: var(--muted); line-height: 1.8; }

/* ── STEPS GRID ─────────────────────────────────────────────── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.step-card {
  background: var(--bg2);
  padding: 2rem;
}
.step-card--lined { border-top: 4px solid var(--pg); }
.step-num {
  font-family: var(--font-head);
  font-size: 3rem;
  color: rgba(23,107,58,0.15);
  display: block;
  line-height: 1;
  margin-bottom: 0.5rem;
  font-weight: 600;
}
.step-title {
  font-size: 1rem;
  color: var(--dg);
  font-weight: 700;
  margin-bottom: 0.6rem;
  font-family: var(--font-head);
}
.step-body { font-size: 0.78rem; color: var(--muted); line-height: 1.85; }
.step-tag {
  display: inline-block;
  margin-top: 1.25rem;
  font-size: 8px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--pg);
}

/* ── PILLARS GRID 3-COL VARIANT ─────────────────────────────── */
.pillars-grid--3 {
  grid-template-columns: repeat(3, 1fr);
}

/* ── RESPONSIVE: NEW SECTIONS ───────────────────────────────── */
@media (max-width: 1100px) {
  .teasers-grid { grid-template-columns: 1fr 1fr; }
  .room-grid { grid-template-columns: 1fr 1fr; }
  .value-grid { grid-template-columns: 1fr 1fr; }
  .sdg-grid { grid-template-columns: repeat(3, 1fr); }
  .outcomes-grid { grid-template-columns: 1fr 1fr; }
  .outcome-card--wide { grid-column: span 2; }
  .pillar-page-inner { grid-template-columns: 1fr; gap: 2rem; }
  .pillar-page-num { font-size: 5rem; }
}
@media (max-width: 900px) {
  .opp-bar { flex-direction: column; }
  .opp-div { width: 100%; height: 1px; }
  .problem-grid { grid-template-columns: 1fr; }
  .bridge-grid { grid-template-columns: 1fr; }
  .flagship-grid { grid-template-columns: 1fr; }
  .may26-grid { grid-template-columns: 1fr; }
  .excl-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .corridor-diagram { flex-direction: column; }
  .teasers-grid { grid-template-columns: 1fr; }
  .sdg-grid { grid-template-columns: 1fr 1fr; }
  .value-grid { grid-template-columns: 1fr; }
  .outcomes-grid { grid-template-columns: 1fr; }
  .outcome-card--wide { grid-column: span 1; }
  .pillars-grid--3 { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .room-grid { grid-template-columns: 1fr; }
  .sdg-grid { grid-template-columns: 1fr 1fr; }
  .page-hero-title { font-size: 2.25rem; }
}

/* ═══ SUMMIT HOME PAGE ══════════════════════════════════════════ */

/* Hero */
.hero-conv { display:flex;justify-content:center;gap:10px;margin-bottom:2rem;position:relative;flex-wrap:wrap; }
.conv-pill { display:inline-flex;align-items:center;gap:7px;background:rgba(255,255,255,.07);border:1px solid rgba(255,255,255,.14);padding:5px 14px;font-size:9px;letter-spacing:1.5px;color:rgba(255,255,255,.65);text-transform:uppercase;font-weight:600; }
.conv-pill--gold { border-color:rgba(212,174,74,.3);color:rgba(212,174,74,.9); }
.conv-dot { width:4px;height:4px;border-radius:50%;background:#6ee39a;flex-shrink:0;display:inline-block; }
.conv-dot--gold { background:#D4AE4A; }
.hero-badge { display:inline-flex;align-items:center;gap:8px;background:rgba(255,255,255,.08);border:1px solid rgba(255,255,255,.16);padding:6px 20px;margin-bottom:1.5rem;position:relative; }
.hero-badge-dot { width:6px;height:6px;border-radius:50%;background:#6ee39a;display:inline-block;flex-shrink:0; }
.hero-badge span:last-child { font-size:10px;letter-spacing:2px;color:rgba(255,255,255,.78);text-transform:uppercase;font-weight:600; }
.hero-title { font-family:var(--font-head);font-size:clamp(2.5rem,5vw,4rem);color:#fff;line-height:1.06;margin-bottom:.5rem;position:relative;letter-spacing:-.5px;font-weight:700;max-width:900px;margin-left:auto;margin-right:auto; }
.hero-title em { color:var(--gold-lt);font-style:normal; }
.hero-sub { font-size:10px;letter-spacing:2.5px;color:rgba(255,255,255,.42);text-transform:uppercase;margin-bottom:.75rem;position:relative; }
.hero-quote { font-style:italic;color:rgba(255,255,255,.52);font-size:1.05rem;margin-bottom:2rem;position:relative;max-width:680px;margin-left:auto;margin-right:auto;line-height:1.65;font-family:var(--font-head); }
.hero-tags { display:flex;gap:10px;justify-content:center;margin-top:1.75rem;font-size:9px;letter-spacing:1.2px;color:rgba(255,255,255,.28);text-transform:uppercase;position:relative;flex-wrap:wrap; }
.tag-dot { color:rgba(212,174,74,.4); }
.hero-logos-panel { display:flex;justify-content:center;margin-top:2rem;position:relative; }
.hero-logo-cell { display:flex;align-items:center;background:#fff;padding:10px 22px; }
.hero-logo-div { width:1px;height:52px;background:rgba(0,0,0,.1);flex-shrink:0; }

/* Stats bar */
.summit-stats { display:grid;grid-template-columns:repeat(5,1fr);background:var(--pg); }
.summit-stat { padding:1.75rem 1rem;text-align:center;border-right:1px solid rgba(255,255,255,.08); }
.summit-stat:last-child { border-right:none; }
.summit-stat-num { font-family:var(--font-head);font-size:1.6rem;color:#fff;display:block;font-weight:300;letter-spacing:-.5px;line-height:1.1; }
.summit-stat-lbl { font-size:7px;letter-spacing:2px;color:rgba(255,255,255,.42);text-transform:uppercase;display:block;margin-top:4px; }

/* Context strip */
.context-strip { padding:5rem 0;background:var(--white); }
.context-inner { padding:0 3rem;display:grid;grid-template-columns:1fr 1fr;gap:4rem;align-items:start; }
.context-cards { display:flex;flex-direction:column;gap:1rem; }
.context-card { padding:1.25rem 1.5rem;border-left:3px solid var(--pg);background:var(--bg); }
.context-card p { font-size:.78rem;line-height:1.85;color:var(--muted); }

/* Pillar grid 5 */
.pillars-grid--5 { display:grid;grid-template-columns:repeat(5,1fr);gap:1px;background:var(--border); }

/* Responsive */
@media (max-width: 768px) {
  .summit-stats { grid-template-columns:repeat(3,1fr); }
  .context-inner { grid-template-columns:1fr; }
  .pillars-grid--5 { grid-template-columns:1fr; }
  .hero-title { font-size:2.2rem; }
  .hero-btns { flex-direction:column;align-items:center; }
  .hero-btns a { width:100%;text-align:center; }
}
