/* ==========================================================================
   HON. BLESSING MADUKA — SENATE CANDIDATE (LAGOS EAST SENATORIAL DISTRICT)
   ACCORD PARTY OFFICIAL CAMPAIGN & GOFUNDME PORTAL
   EXECUTIVE PRESIDENTIAL DESIGN SYSTEM
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Caveat:wght@700&family=Cinzel:wght@600;700;800;900&family=Montserrat:wght@600;700;800;900&family=Playfair+Display:ital,wght@0,500;0,600;0,700;0,800;1,500;1,600;1,700&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

:root {
  /* Accord Party & Presidential Palette */
  --green: #0a542c;
  --green-dark: #06351b;
  --green-deep: #031c0e;
  --green-light: #127840;
  --green-soft: #ebf5ee;
  --green-glow: rgba(18, 120, 64, 0.28);

  --yellow: #fed000;
  --yellow-hover: #e5bb00;
  --yellow-glow: rgba(254, 208, 0, 0.35);

  --gold: #d4a017;
  --gold-light: #ffe066;
  --gold-metallic: linear-gradient(135deg, #ffe066 0%, #fed000 45%, #d4a017 100%);
  --gold-soft: #fcf6e6;
  --gold-border: rgba(212, 160, 23, 0.45);

  --red: #d31224;
  --red-soft: #fee2e2;

  --ink: #0f1a14;
  --ink-body: #24332b;
  --muted: #5c6c64;
  --cream: #faf9f5;
  --paper: #ffffff;
  --line: #e2e8e3;
  --line-dark: rgba(255, 255, 255, 0.14);

  --shadow-sm: 0 4px 14px rgba(10, 36, 22, 0.05);
  --shadow-md: 0 12px 32px rgba(10, 36, 22, 0.09);
  --shadow-lg: 0 24px 60px rgba(0, 0, 0, 0.28);
  --shadow-gold: 0 10px 30px rgba(254, 208, 0, 0.3);

  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --radius-full: 9999px;

  --max: 1220px;
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-cinzel: 'Cinzel', Georgia, serif;
  --font-sans: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  --font-display: 'Montserrat', sans-serif;
  --font-script: 'Caveat', cursive;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background-color: var(--cream);
  color: var(--ink-body);
  font-family: var(--font-sans);
  line-height: 1.68;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  transition: all 0.22s ease;
}

button, input, textarea, select {
  font-family: inherit;
}

.container {
  width: min(var(--max), calc(100% - 44px));
  margin: 0 auto;
}

/* Text Gradients */
.text-gold-gradient {
  background: linear-gradient(135deg, #fff3a8 0%, #fed000 45%, #f5a623 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline;
}

/* ==========================================================================
   TOP TICKER BAR
   ========================================================================== */
.topline {
  background: var(--green-deep);
  color: #f0f7f3;
  font-size: 0.81rem;
  border-bottom: 1px solid rgba(254, 208, 0, 0.28);
  position: relative;
  z-index: 60;
}

.topline .inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 9px 0;
  font-weight: 600;
}

.topline-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
}

.topline-badge .pill {
  background: var(--yellow);
  color: var(--green-deep);
  font-size: 0.7rem;
  font-weight: 900;
  padding: 2.5px 10px;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  box-shadow: 0 2px 8px rgba(254, 208, 0, 0.35);
}

.topline-contacts {
  display: flex;
  align-items: center;
  gap: 22px;
}

.topline-contacts a:hover {
  color: var(--yellow);
}

/* ==========================================================================
   SITE HEADER & NAVIGATION
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(10, 84, 44, 0.12);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
}

.nav {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 15px;
}

.brand-mark {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 4px 14px rgba(10, 84, 44, 0.2);
  flex-shrink: 0;
  transition: transform 0.25s ease;
}

.brand:hover .brand-mark {
  transform: scale(1.05);
}

.brand-info {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1.32rem;
  color: var(--green-dark);
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.brand-sub {
  font-size: 0.74rem;
  color: var(--muted);
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  margin-top: 2px;
}

.brand-sub span {
  color: var(--green);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
  font-size: 0.94rem;
  font-weight: 700;
}

.nav-links a {
  position: relative;
  padding: 10px 0;
  color: var(--ink-body);
}

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

.nav-links a.active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 3px;
  background: var(--green);
  border-radius: var(--radius-full);
}

.nav-cta {
  background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%) !important;
  color: #ffffff !important;
  padding: 12px 24px !important;
  border-radius: var(--radius-full) !important;
  font-weight: 800 !important;
  box-shadow: 0 4px 16px rgba(10, 84, 44, 0.3);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(254, 208, 0, 0.3) !important;
  transition: transform 0.2s ease, box-shadow 0.2s ease !important;
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(10, 84, 44, 0.4);
  color: #ffffff !important;
}

.nav-cta::after {
  display: none !important;
}

.menu-btn {
  display: none;
  background: transparent;
  border: 1px solid var(--line);
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 1.4rem;
  cursor: pointer;
  color: var(--green);
}

/* ==========================================================================
   BUTTONS & BADGES
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: var(--radius-full);
  padding: 15px 28px;
  font-size: 0.98rem;
  font-weight: 800;
  cursor: pointer;
  border: 1.5px solid transparent;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  white-space: nowrap;
}

.btn-yellow {
  background: var(--yellow);
  color: var(--green-deep);
  font-weight: 900;
  box-shadow: 0 8px 24px rgba(254, 208, 0, 0.38);
  border-color: #ffd71a;
  position: relative;
  overflow: hidden;
}

.btn-yellow:hover {
  background: var(--yellow-hover);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(254, 208, 0, 0.5);
  color: var(--green-deep);
}

.btn-primary {
  background: var(--green);
  color: #ffffff;
  box-shadow: 0 6px 20px rgba(10, 84, 44, 0.25);
}

.btn-primary:hover {
  background: var(--green-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(10, 84, 44, 0.35);
  color: #ffffff;
}

.btn-secondary {
  background: #ffffff;
  color: var(--ink);
  border-color: var(--line);
  box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
  border-color: var(--green);
  color: var(--green);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline-white {
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(8px);
}

.btn-outline-white:hover {
  background: #ffffff;
  color: var(--green-deep);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 255, 255, 0.25);
}

.btn-sm {
  padding: 9px 18px;
  font-size: 0.85rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--green);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.eyebrow::before {
  content: "";
  width: 26px;
  height: 3px;
  background: var(--yellow);
  border-radius: var(--radius-full);
}

.eyebrow-light {
  color: var(--yellow);
}

.eyebrow-light::before {
  background: var(--yellow);
}

.badge-tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--green-soft);
  color: var(--green);
  font-size: 0.75rem;
  font-weight: 800;
  padding: 4px 13px;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ==========================================================================
   EXECUTIVE PRESIDENTIAL HERO SECTION
   ========================================================================== */
.hero-executive {
  padding: 95px 0 110px;
  position: relative;
  overflow: hidden;
  background: radial-gradient(circle at 75% 20%, #0d552e 0%, #06351b 45%, #031c0e 100%);
  color: #ffffff;
  border-bottom: 3px solid var(--yellow);
}

.hero-executive .hero-glow-1 {
  position: absolute;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(254, 208, 0, 0.16) 0%, rgba(18, 120, 64, 0.18) 45%, transparent 75%);
  top: -160px;
  right: -100px;
  pointer-events: none;
  z-index: 1;
}

.hero-executive .hero-glow-2 {
  position: absolute;
  width: 550px;
  height: 550px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(10, 84, 44, 0.35) 0%, transparent 70%);
  bottom: -150px;
  left: -120px;
  pointer-events: none;
  z-index: 1;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: 65px;
  position: relative;
  z-index: 2;
}

.hero-pill-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(254, 208, 0, 0.4);
  padding: 6px 16px;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 20px;
  backdrop-filter: blur(8px);
}

.hero-pill-badge span.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--yellow);
  box-shadow: 0 0 10px var(--yellow);
  animation: pulse 1.8s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}

.hero-executive h1 {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: clamp(3rem, 5.4vw, 5rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
  color: #ffffff;
  margin-bottom: 24px;
}

.hero-executive .lead {
  font-size: 1.18rem;
  color: #dbeae2;
  max-width: 620px;
  line-height: 1.72;
}

.hero-credentials-dark {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 26px 0 32px;
}

.hero-credentials-dark span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  padding: 7px 16px;
  border-radius: var(--radius-full);
  font-size: 0.84rem;
  font-weight: 700;
  color: #ffffff;
  backdrop-filter: blur(6px);
}

.hero-credentials-dark span::before {
  content: "✓";
  color: var(--yellow);
  font-weight: 900;
}

.actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}

/* ==========================================================================
   HERO PORTRAIT STYLING (HON. BLESSING MADUKA)
   ========================================================================== */
.hero-photo-wrap {
  position: relative;
}

/* Luxury Presidential Frame */
.hero-frame-luxury {
  position: relative;
  border-radius: 220px 220px 40px 40px;
  background: linear-gradient(145deg, rgba(254, 208, 0, 0.7) 0%, rgba(10, 84, 44, 0.8) 50%, rgba(212, 160, 23, 0.9) 100%);
  padding: 6px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.6), 0 0 50px rgba(254, 208, 0, 0.25);
  animation: frameGlow 4s ease-in-out infinite alternate;
}

@keyframes frameGlow {
  0% { box-shadow: 0 24px 70px rgba(0, 0, 0, 0.6), 0 0 30px rgba(254, 208, 0, 0.2); }
  100% { box-shadow: 0 28px 80px rgba(0, 0, 0, 0.7), 0 0 60px rgba(254, 208, 0, 0.4); }
}

.hero-frame-inner {
  border-radius: 214px 214px 34px 34px;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: #ffffff;
  position: relative;
}

.hero-frame-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 12%;
  display: block;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-frame-luxury:hover img {
  transform: scale(1.035);
}

/* Floating Status Pills */
.hero-badge-top {
  position: absolute;
  top: 35px;
  right: -24px;
  background: var(--yellow);
  color: var(--green-deep);
  padding: 10px 20px;
  border-radius: var(--radius-full);
  font-weight: 900;
  font-size: 0.84rem;
  letter-spacing: 0.08em;
  box-shadow: 0 8px 24px rgba(254, 208, 0, 0.5);
  text-transform: uppercase;
  z-index: 10;
  border: 1.5px solid #ffffff;
}

.hero-badge-bottom {
  position: absolute;
  bottom: 24px;
  left: -28px;
  background: rgba(255, 255, 255, 0.96);
  border: 2px solid var(--gold-border);
  border-radius: 20px;
  padding: 16px 22px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.25);
  display: flex;
  align-items: center;
  gap: 15px;
  max-width: 320px;
  z-index: 10;
  animation: float 4.5s ease-in-out infinite;
}

.hero-badge-bottom img {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  flex-shrink: 0;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.hero-badge-bottom strong {
  display: block;
  font-size: 1.05rem;
  color: var(--green-dark);
  font-weight: 800;
  line-height: 1.2;
  font-family: var(--font-serif);
}

.hero-badge-bottom span {
  font-size: 0.78rem;
  color: var(--muted);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* ==========================================================================
   GOFUNDME HERO QUICK-STRIP / CAMPAIGN FUND BANNER
   ========================================================================== */
.gofund-hero-bar {
  background: #ffffff;
  border-bottom: 1px solid var(--line);
  padding: 32px 0;
  box-shadow: 0 8px 30px rgba(10, 36, 22, 0.06);
  position: relative;
  z-index: 10;
}

.gofund-bar-grid {
  display: grid;
  grid-template-columns: 1.4fr 1.6fr;
  align-items: center;
  gap: 40px;
}

.gofund-bar-left h3 {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  color: var(--green-dark);
  margin-bottom: 6px;
  font-weight: 700;
}

.gofund-bar-left p {
  color: var(--muted);
  font-size: 0.94rem;
  margin-bottom: 12px;
}

.gofund-bar-right {
  display: flex;
  justify-content: flex-end;
  width: 100%;
}

.gofund-quick-card {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  width: 100%;
  max-width: 530px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: var(--shadow-sm);
}

.gofund-quick-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
}

.gofund-quick-title {
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--green-dark);
}

.gofund-quick-hint {
  color: var(--muted);
  font-size: 0.76rem;
}

.gofund-bar-chips {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  width: 100%;
}

.gofund-bar-chips .chip-btn {
  padding: 9px 4px;
  font-size: 0.92rem;
  border-radius: 8px;
  text-align: center;
  white-space: nowrap;
}

.gofund-bar-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  width: 100%;
}

.gofund-bar-actions .btn {
  width: 100%;
  justify-content: center;
  padding: 10px 14px;
  font-size: 0.88rem;
  white-space: nowrap;
}

/* ==========================================================================
   GOFUNDME CROWDFUNDING FULL SECTION
   ========================================================================== */
.gofund-section {
  padding: 95px 0;
  background: #ffffff;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.gofund-card {
  background: linear-gradient(145deg, #ffffff 0%, var(--green-soft) 100%);
  border: 1.5px solid rgba(10, 84, 44, 0.18);
  border-radius: var(--radius-lg);
  padding: 48px;
  box-shadow: var(--shadow-md);
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 50px;
  align-items: center;
  transform: none !important;
}

.gofund-info h2 {
  font-family: var(--font-serif);
  font-size: clamp(2.1rem, 3.4vw, 2.9rem);
  font-weight: 700;
  color: var(--green-dark);
  line-height: 1.14;
  margin: 10px 0 16px;
}

.gofund-info p {
  color: var(--muted);
  font-size: 1.04rem;
  margin-bottom: 24px;
}

/* Progress Tracker */
.gofund-tracker {
  background: #ffffff;
  padding: 26px 30px;
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  margin-bottom: 28px;
}

.gofund-stats {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 14px;
}

.gofund-raised {
  font-size: 2.3rem;
  font-weight: 900;
  color: var(--green-dark);
  font-family: var(--font-sans);
  letter-spacing: -0.03em;
}

.gofund-goal {
  color: var(--muted);
  font-size: 0.98rem;
  font-weight: 700;
}

.progress-track {
  width: 100%;
  height: 15px;
  background: #e2ede6;
  border-radius: var(--radius-full);
  overflow: hidden;
  position: relative;
}

.progress-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--green) 0%, #17a356 70%, var(--yellow) 100%);
  border-radius: var(--radius-full);
  transition: width 1.2s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
}

.progress-bar-fill::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.45), transparent);
  animation: shimmer 2s infinite;
}

@keyframes shimmer {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

.gofund-meta {
  display: flex;
  justify-content: space-between;
  margin-top: 12px;
  font-size: 0.88rem;
  color: var(--muted);
  font-weight: 700;
}

.gofund-meta strong {
  color: var(--green-dark);
}

/* Donation Interactive Box */
.donation-box {
  background: #ffffff;
  border-radius: var(--radius-md);
  padding: 34px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
}

.donation-box h3 {
  font-size: 1.35rem;
  color: var(--green-dark);
  margin-bottom: 6px;
  font-weight: 800;
}

.donation-box p.sub {
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 22px;
}

.amount-chips {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 18px;
}

.chip-btn {
  background: var(--cream);
  border: 1.5px solid var(--line);
  border-radius: 12px;
  padding: 11px 8px;
  font-weight: 800;
  font-size: 0.98rem;
  color: var(--ink);
  cursor: pointer;
  transition: all 0.2s ease;
  text-align: center;
}

.chip-btn:hover {
  border-color: var(--green);
  color: var(--green);
  background: #ffffff;
}

.chip-btn.active {
  background: var(--green);
  border-color: var(--green);
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(10, 84, 44, 0.25);
}

.custom-amount-field {
  position: relative;
  margin-bottom: 22px;
}

.custom-amount-field span.currency {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  font-weight: 900;
  color: var(--green-dark);
  font-size: 1.15rem;
}

.custom-amount-field input {
  width: 100%;
  padding: 14px 14px 14px 38px;
  border: 1.5px solid var(--line);
  border-radius: 12px;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--ink);
  outline: none;
  transition: border-color 0.2s;
}

.custom-amount-field input:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(10, 84, 44, 0.1);
}

.donation-btn-full {
  width: 100%;
  padding: 16px;
  font-size: 1.1rem;
}

/* ==========================================================================
   BANK DETAILS COPY CARD
   ========================================================================== */
.bank-transfer-card {
  background: var(--green-dark);
  color: #ffffff;
  border-radius: var(--radius-md);
  padding: 30px;
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(254, 208, 0, 0.25);
}

.bank-transfer-card::after {
  content: "";
  position: absolute;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(254, 208, 0, 0.15) 0%, transparent 70%);
  right: -60px;
  bottom: -60px;
}

.bank-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  padding-bottom: 16px;
  margin-bottom: 20px;
}

.bank-header h4 {
  font-size: 1.18rem;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.bank-verified-tag {
  background: rgba(254, 208, 0, 0.22);
  color: var(--yellow);
  font-size: 0.74rem;
  font-weight: 900;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.bank-row-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 13px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
}

.bank-row-item span.label {
  color: #a7c5b6;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
}

.bank-row-item strong.val {
  font-size: 1.08rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.bank-copy-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn-copy {
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #ffffff;
  padding: 6px 14px;
  border-radius: 8px;
  font-size: 0.8rem;
  font-weight: 800;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  user-select: none;
}

.btn-copy:hover {
  background: var(--yellow);
  color: var(--green-deep);
  border-color: var(--yellow);
  transform: translateY(-1px);
}

.btn-copy.copied-active,
.copyable-wrap .btn-copy.copied-active {
  background: #fed000 !important;
  color: #031c0e !important;
  border-color: #fed000 !important;
  box-shadow: 0 0 16px rgba(254, 208, 0, 0.65) !important;
  transform: scale(1.06);
}

@keyframes copyTargetFlash {
  0% {
    background-color: transparent;
    color: inherit;
  }
  25% {
    background-color: rgba(254, 208, 0, 0.3);
    color: #fed000;
    text-shadow: 0 0 10px rgba(254, 208, 0, 0.6);
    border-radius: 4px;
  }
  100% {
    background-color: transparent;
    color: inherit;
    text-shadow: none;
  }
}

.copy-target-flash {
  animation: copyTargetFlash 1.2s ease-out;
  display: inline-block;
}

/* ==========================================================================
   SECTIONS GENERAL
   ========================================================================== */
.section {
  padding: 95px 0;
}

.section-white {
  background: var(--paper);
}

.section-green {
  background: var(--green);
  color: #ffffff;
}

.section-green-dark {
  background: var(--green-dark);
  color: #ffffff;
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 36px;
  margin-bottom: 48px;
}

.section-head h2 {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 3.8vw, 3.3rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.035em;
  margin-top: 6px;
  color: var(--ink);
}

.section-green .section-head h2,
.section-green-dark .section-head h2 {
  color: #ffffff;
}

.section-head p {
  max-width: 540px;
  color: var(--muted);
  font-size: 1.06rem;
}

.section-green .section-head p {
  color: #c7ded2;
}

/* ==========================================================================
   THREE DIMENSIONS OF LEADERSHIP CARDS
   ========================================================================== */
.cards-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.card-pillar {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 38px 32px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
  position: relative;
  display: flex;
  flex-direction: column;
}

.card-pillar:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: rgba(10, 84, 44, 0.3);
}

.card-pillar-icon {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  background: var(--green-soft);
  color: var(--green);
  display: grid;
  place-items: center;
  font-size: 1.6rem;
  font-weight: 800;
  margin-bottom: 22px;
}

.card-pillar h3 {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.card-pillar p {
  color: var(--muted);
  font-size: 0.98rem;
  margin-bottom: 20px;
  flex-grow: 1;
}

.card-pillar ul {
  list-style: none;
  padding: 0;
  border-top: 1px solid var(--line);
  padding-top: 16px;
  margin-bottom: 20px;
}

.card-pillar ul li {
  font-size: 0.9rem;
  color: var(--ink-body);
  padding: 5px 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.card-pillar ul li::before {
  content: "•";
  color: var(--green);
  font-weight: 900;
  font-size: 1.2rem;
}

/* ==========================================================================
   LAGOS EAST 5 LGAs INTERACTIVE EXPLORER
   ========================================================================== */
.lga-section {
  padding: 95px 0;
  background: #ffffff;
}

.lga-tabs {
  display: flex;
  gap: 12px;
  border-bottom: 2px solid var(--line);
  padding-bottom: 14px;
  margin-bottom: 36px;
  overflow-x: auto;
}

.lga-tab-btn {
  background: transparent;
  border: 1px solid var(--line);
  border-radius: var(--radius-full);
  padding: 11px 24px;
  font-size: 0.98rem;
  font-weight: 800;
  color: var(--muted);
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.lga-tab-btn:hover {
  color: var(--green);
  border-color: var(--green);
}

.lga-tab-btn.active {
  background: var(--green);
  color: #ffffff;
  border-color: var(--green);
  box-shadow: 0 4px 14px rgba(10, 84, 44, 0.25);
}

.lga-content-card {
  display: none;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 44px;
  box-shadow: var(--shadow-sm);
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.lga-content-card.active {
  display: grid;
  animation: fadeIn 0.35s ease;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.lga-text h3 {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  color: var(--green-dark);
  margin-bottom: 12px;
  font-weight: 700;
}

.lga-text p {
  color: var(--muted);
  font-size: 1.04rem;
  margin-bottom: 22px;
}

.lga-priorities {
  list-style: none;
}

.lga-priorities li {
  padding: 9px 0;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.96rem;
  color: var(--ink);
}

.lga-priorities li strong {
  color: var(--green-dark);
}

.lga-priorities li::before {
  content: "➔";
  color: var(--gold);
  font-weight: 900;
}

/* ==========================================================================
   STAT COUNTER GRID
   ========================================================================== */
.stats-banner {
  background: linear-gradient(135deg, var(--green-deep) 0%, var(--green) 100%);
  color: #ffffff;
  padding: 68px 0;
  border-top: 2px solid rgba(254, 208, 0, 0.3);
  border-bottom: 2px solid rgba(254, 208, 0, 0.3);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.stat-item {
  padding: 26px;
  border-left: 3.5px solid var(--yellow);
  background: rgba(255, 255, 255, 0.07);
  border-radius: 0 16px 16px 0;
  backdrop-filter: blur(8px);
}

.stat-item strong {
  display: block;
  font-size: 2.5rem;
  font-weight: 900;
  font-family: var(--font-sans);
  color: #ffffff;
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 8px;
}

.stat-item span {
  color: #cde2d7;
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.4;
  display: block;
}

/* ==========================================================================
   MANIFESTO 7 PILLARS GRID
   ========================================================================== */
.manifesto-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.manifesto-card {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 34px;
  box-shadow: var(--shadow-sm);
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 22px;
  transition: transform 0.22s ease, border-color 0.22s ease;
}

.manifesto-card:hover {
  transform: translateY(-4px);
  border-color: var(--green);
  box-shadow: var(--shadow-md);
}

.manifesto-card .num {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  background: var(--green-soft);
  color: var(--green);
  font-weight: 900;
  font-size: 1.2rem;
  display: grid;
  place-items: center;
}

.manifesto-card h3 {
  font-family: var(--font-serif);
  font-size: 1.45rem;
  color: var(--green-dark);
  margin-bottom: 8px;
  font-weight: 700;
}

.manifesto-card p {
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.62;
}

/* ==========================================================================
   CALLOUT BANNER
   ========================================================================== */
.callout {
  border-radius: var(--radius-lg);
  background: linear-gradient(130deg, var(--green-deep) 0%, var(--green) 100%);
  padding: 56px 52px;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(254, 208, 0, 0.3);
}

.callout::before {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(254, 208, 0, 0.18) 0%, transparent 70%);
  right: -80px;
  top: -100px;
}

.callout h2 {
  font-family: var(--font-serif);
  font-size: clamp(2.1rem, 3.4vw, 2.8rem);
  font-weight: 700;
  margin-bottom: 10px;
  color: #ffffff;
}

.callout p {
  color: #dbeae2;
  font-size: 1.08rem;
  max-width: 600px;
}

.callout .btn {
  background: var(--yellow);
  color: var(--green-deep);
  font-weight: 900;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

.callout .btn:hover {
  background: #ffffff;
  color: var(--green-deep);
}

/* ==========================================================================
   PAGE HERO (SUBPAGES)
   ========================================================================== */
.page-hero {
  padding: 85px 0 75px;
  background: linear-gradient(135deg, var(--green-deep) 0%, var(--green) 100%);
  color: #ffffff;
  position: relative;
  overflow: hidden;
  border-bottom: 3px solid var(--yellow);
}

.page-hero::before {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(254, 208, 0, 0.14) 0%, transparent 70%);
  right: -100px;
  top: -150px;
}

.page-hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, 5vw, 4.4rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.04em;
  margin: 12px 0 16px;
  color: #ffffff;
}

.page-hero p {
  max-width: 680px;
  color: #dbeae2;
  font-size: 1.14rem;
  line-height: 1.7;
}

/* Split content grid */
.split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 65px;
  align-items: start;
}

.portrait-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--line);
}

.portrait-card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center top;
}

.portrait-card .caption {
  padding: 26px;
}

.portrait-card .caption strong {
  font-size: 1.3rem;
  color: var(--green-dark);
  font-family: var(--font-serif);
}

/* ==========================================================================
   STANDOUT SHOWCASE SECTION (ABOUT PAGE FULL-WIDTH)
   ========================================================================== */
.standout-showcase-section {
  background: linear-gradient(180deg, var(--cream) 0%, #f4ede1 100%);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 85px 0;
  position: relative;
}

.standout-showcase-grid {
  display: grid;
  grid-template-columns: 430px 1fr;
  gap: 56px;
  align-items: center;
}

.standout-media-col {
  position: relative;
}

.standout-portrait-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 45px rgba(3, 28, 14, 0.16);
  border: 3px solid rgba(212, 160, 23, 0.45);
  background: var(--green-dark);
}

.standout-portrait-frame img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.standout-portrait-frame:hover img {
  transform: scale(1.03);
}

.standout-portrait-badge {
  position: absolute;
  bottom: 16px;
  left: 16px;
  right: 16px;
  background: rgba(3, 28, 14, 0.94);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: var(--yellow);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 10px 16px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid rgba(254, 208, 0, 0.35);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.35);
}

.standout-portrait-badge .badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--yellow);
  box-shadow: 0 0 8px var(--yellow);
}

.standout-content-col h2 {
  font-family: var(--font-serif);
  font-size: 2.25rem;
  color: var(--green-dark);
  line-height: 1.2;
  margin: 6px 0 12px;
}

.standout-lead {
  font-size: 1.05rem;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 26px;
}

.standout-dimensions {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 26px;
}

.dimension-card {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  background: #ffffff;
  padding: 18px 22px;
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  box-shadow: 0 3px 12px rgba(10, 36, 22, 0.04);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.dimension-card:hover {
  transform: translateX(6px);
  border-color: rgba(10, 84, 44, 0.35);
  box-shadow: 0 8px 22px rgba(10, 36, 22, 0.08);
}

.dimension-num {
  font-family: var(--font-cinzel), Georgia, serif;
  font-weight: 900;
  font-size: 1.05rem;
  color: var(--yellow);
  background: linear-gradient(135deg, var(--green-dark), #031c0e);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1.5px solid var(--yellow);
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.15);
  margin-top: 2px;
}

.dimension-text h4 {
  font-family: var(--font-sans);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--green-dark);
  margin: 0 0 4px;
}

.dimension-text p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.5;
  margin: 0;
}

.standout-mandate-card {
  background: rgba(10, 84, 44, 0.04);
  border-left: 4px solid var(--yellow);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 16px 20px;
  margin-top: 6px;
}

.standout-mandate-card p {
  font-size: 0.94rem;
  color: var(--green-dark);
  line-height: 1.55;
  margin: 0 0 16px;
}

.standout-cta-group {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

@media (max-width: 1024px) {
  .standout-showcase-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .standout-media-col {
    max-width: 440px;
    margin: 0 auto;
  }
}

@media (max-width: 640px) {
  .standout-showcase-section {
    padding: 50px 0;
  }
  .standout-content-col h2 {
    font-size: 1.8rem;
  }
  .dimension-card {
    padding: 14px 16px;
    gap: 14px;
  }
  .dimension-num {
    width: 32px;
    height: 32px;
    font-size: 0.9rem;
  }
}

/* ==========================================================================
   PROSE & EDITORIAL
   ========================================================================== */
.prose h2 {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--green-dark);
  line-height: 1.12;
  margin-bottom: 20px;
}

.prose h3 {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--green-dark);
  margin: 34px 0 14px;
}

.prose p {
  color: var(--ink-body);
  font-size: 1.06rem;
  margin-bottom: 18px;
  line-height: 1.75;
}

.prose ul {
  padding-left: 22px;
  margin-bottom: 24px;
}

.prose ul li {
  margin-bottom: 10px;
  color: var(--ink-body);
  font-size: 1.02rem;
}

.quote-box {
  background: var(--green-soft);
  border-left: 4px solid var(--green);
  border-radius: 0 16px 16px 0;
  padding: 26px 30px;
  margin: 28px 0;
  font-family: var(--font-serif);
  font-size: 1.28rem;
  font-style: italic;
  color: var(--green-dark);
  line-height: 1.6;
}

.quote-box cite {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-style: normal;
  font-weight: 800;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 10px;
}

/* ==========================================================================
   TIMELINE (HISTORY)
   ========================================================================== */
.timeline {
  border-left: 2px solid #cbdad2;
  margin-left: 14px;
  position: relative;
}

.timeline-item {
  position: relative;
  padding: 0 0 42px 34px;
}

.timeline-item::before {
  content: "";
  position: absolute;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--yellow);
  border: 3px solid var(--green);
  left: -8px;
  top: 6px;
  box-shadow: 0 0 0 6px var(--cream);
}

.timeline-item .year {
  display: inline-block;
  background: var(--green-soft);
  color: var(--green);
  font-size: 0.76rem;
  font-weight: 800;
  padding: 3px 10px;
  border-radius: var(--radius-full);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.timeline-item h3 {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: var(--green-dark);
  margin-bottom: 8px;
  font-weight: 700;
}

.timeline-item p {
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.62;
}

/* ==========================================================================
   FORMS & MEMBERSHIP DIGITAL CARD
   ========================================================================== */
.form-wrap {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 36px;
}

.form-card {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 38px;
  box-shadow: var(--shadow-sm);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.field.full {
  grid-column: 1 / -1;
}

label {
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--ink);
}

input, textarea, select {
  border: 1.5px solid #dce2dd;
  border-radius: 12px;
  background: #ffffff;
  padding: 13px 16px;
  font-size: 0.98rem;
  color: var(--ink);
  outline: none;
  transition: all 0.2s ease;
}

input:focus, textarea:focus, select:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3.5px rgba(10, 84, 44, 0.1);
}

textarea {
  min-height: 120px;
  resize: vertical;
}

/* Interactive Supporter ID Card */
.supporter-id-card {
  background: linear-gradient(135deg, var(--green-deep) 0%, var(--green) 100%);
  border: 2px solid var(--yellow);
  border-radius: var(--radius-lg);
  padding: 32px;
  color: #ffffff;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

.supporter-id-card::before {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(254, 208, 0, 0.2) 0%, transparent 70%);
  right: -50px;
  top: -50px;
}

.supporter-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  padding-bottom: 14px;
  margin-bottom: 18px;
}

.supporter-card-header img {
  width: 44px;
  height: 44px;
  border-radius: 8px;
}

.supporter-card-badge {
  background: var(--yellow);
  color: var(--green-deep);
  font-size: 0.72rem;
  font-weight: 900;
  padding: 3px 9px;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.supporter-card-name {
  font-family: var(--font-serif);
  font-size: 1.55rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 4px;
}

.supporter-card-district {
  font-size: 0.82rem;
  color: #cae0d4;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 800;
  margin-bottom: 20px;
}

.supporter-card-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  font-size: 0.82rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 14px;
}

.supporter-card-details span {
  color: #a7c5b6;
  display: block;
  font-size: 0.72rem;
  text-transform: uppercase;
}

.supporter-card-details strong {
  color: #ffffff;
  font-size: 0.94rem;
}

/* ==========================================================================
   CONTACT SECTION
   ========================================================================== */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.contact-card {
  padding: 28px;
  border-radius: var(--radius-md);
  background: #ffffff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}

.contact-card span {
  display: block;
  color: var(--muted);
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 800;
  margin-bottom: 6px;
}

.contact-card strong {
  display: block;
  font-size: 1.08rem;
  color: var(--green-dark);
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer {
  background: var(--green-deep);
  color: #cbdad2;
  padding: 75px 0 32px;
  border-top: 3.5px solid var(--yellow);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.9fr 0.9fr 1.1fr;
  gap: 45px;
}

.footer-brand img {
  width: 140px;
  margin-bottom: 16px;
  border-radius: 12px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
}

.footer h3 {
  color: #ffffff;
  font-family: var(--font-serif);
  font-size: 1.35rem;
  margin-bottom: 16px;
  font-weight: 700;
}

.footer p {
  font-size: 0.94rem;
  line-height: 1.65;
  color: #a8beaf;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #cbdad2;
  font-size: 0.94rem;
}

.footer-links a:hover {
  color: var(--yellow);
  padding-left: 4px;
}

.footer-bottom {
  margin-top: 50px;
  padding-top: 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  font-size: 0.84rem;
  color: #8da496;
}

.footer-legal-tag {
  color: var(--yellow);
  font-weight: 800;
}

/* ==========================================================================
   NOTICES, TOAST & MODAL
   ========================================================================== */
.notice {
  padding: 16px 20px;
  background: var(--gold-soft);
  border-left: 4px solid var(--gold);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  color: #5d4b21;
  font-size: 0.94rem;
  line-height: 1.55;
}

.toast {
  position: fixed;
  right: 24px;
  bottom: 24px;
  background: var(--green-dark);
  color: #ffffff;
  padding: 15px 24px;
  border-radius: 14px;
  box-shadow: var(--shadow-lg);
  display: none;
  z-index: 1000;
  font-size: 0.95rem;
  font-weight: 700;
  border-left: 4px solid var(--yellow);
  animation: slideUp 0.3s ease;
}

.toast.show {
  display: block;
}

@keyframes slideUp {
  from { transform: translateY(20px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

/* Donation / Receipt Modal */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(3, 28, 14, 0.82);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 2500;
  display: none;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding: 30px 16px;
}

.modal-backdrop.open {
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.modal-box {
  background: #ffffff;
  border-radius: var(--radius-lg);
  max-width: 520px;
  width: 100%;
  padding: 32px 28px;
  box-shadow: var(--shadow-lg);
  position: relative;
  margin: auto;
  max-height: calc(100vh - 60px);
  overflow-y: auto;
  animation: scaleIn 0.28s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes scaleIn {
  from { transform: scale(0.96); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.modal-close {
  position: absolute;
  right: 20px;
  top: 20px;
  background: var(--cream);
  border: none;
  font-size: 1.2rem;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  cursor: pointer;
  display: grid;
  place-items: center;
}

/* Reveal on scroll */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.hero-executive .reveal,
.page-hero .reveal {
  opacity: 1 !important;
  transform: none !important;
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

/* ==========================================================================
   RESPONSIVE DESIGN (TABLET & MOBILE)
   ========================================================================== */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 48px;
    text-align: center;
  }
  .hero-photo-wrap {
    max-width: 440px;
    margin: 0 auto;
  }
  .hero-pill-badge {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-credentials-dark {
    justify-content: center;
  }
  .actions {
    justify-content: center;
  }
  .gofund-bar-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    text-align: center;
  }
  .gofund-bar-right {
    justify-content: center;
  }
  .cards-3 {
    grid-template-columns: 1fr 1fr;
  }
  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }
  .gofund-card {
    grid-template-columns: 1fr;
    padding: 34px;
  }
  .lga-content-card {
    grid-template-columns: 1fr;
  }
  .split {
    grid-template-columns: 1fr;
  }
  .form-wrap {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .contact-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 820px) {
  .nav {
    min-height: 74px;
  }
  .nav-links {
    display: none;
    position: absolute;
    left: 16px;
    right: 16px;
    top: 78px;
    background: #ffffff;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    padding: 18px;
    box-shadow: var(--shadow-lg);
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    z-index: 150;
  }
  .nav-links.open {
    display: flex;
    animation: fadeIn 0.25s ease;
  }
  .nav-links a {
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 0.95rem;
  }
  .nav-links a:hover {
    background: var(--green-soft);
  }
  .nav-links a.active::after {
    display: none;
  }
  .menu-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    cursor: pointer;
  }
  .topline .inner {
    flex-direction: column;
    text-align: center;
    gap: 6px;
    padding: 8px 0;
  }
  .topline-badge {
    flex-wrap: wrap;
    justify-content: center;
    font-size: 0.76rem;
  }
  .topline-contacts {
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
    font-size: 0.78rem;
  }
  .cards-3 {
    grid-template-columns: 1fr;
  }
  .manifesto-grid {
    grid-template-columns: 1fr;
  }
  .callout {
    flex-direction: column;
    text-align: center;
    padding: 40px 24px;
  }
  .gofund-card {
    grid-template-columns: 1fr !important;
    gap: 32px;
    padding: 32px 20px;
  }
  .gofund-tracker {
    padding: 20px 16px;
  }
  .section-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .hero-badge-bottom {
    left: 10px;
    bottom: 10px;
    padding: 12px 16px;
  }
  .hero-badge-top {
    right: 10px;
    top: 15px;
  }
}

@media (max-width: 600px) {
  .container {
    width: calc(100% - 24px);
  }
  .topline .inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 4px;
    padding: 6px 0;
  }
  .topline-badge {
    font-size: 0.72rem;
    flex-wrap: wrap;
    justify-content: center;
  }
  .topline-contacts {
    font-size: 0.72rem;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
  }
  .nav {
    min-height: 68px;
    gap: 8px;
  }
  .brand {
    gap: 10px;
    min-width: 0;
    flex-shrink: 1;
  }
  .brand-mark {
    width: 38px;
    height: 38px;
    border-radius: 8px;
    flex-shrink: 0;
  }
  .brand-name {
    font-size: 1.02rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .brand-sub {
    font-size: 0.65rem;
    white-space: nowrap;
  }
  .menu-btn {
    display: flex !important;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    font-size: 1.25rem;
    flex-shrink: 0;
    margin-left: auto;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: transparent;
    color: var(--green);
  }
  .hero-executive {
    padding: 42px 0 55px;
  }
  .hero-executive h1 {
    font-size: clamp(1.85rem, 7.2vw, 2.35rem) !important;
    line-height: 1.1;
    overflow-wrap: break-word;
    word-break: normal;
    margin: 12px 0 16px;
  }
  .hero-executive .lead {
    font-size: 0.98rem;
    line-height: 1.6;
  }
  .hero-pill-badge {
    font-size: 0.7rem;
    padding: 5px 12px;
    white-space: normal;
    text-align: center;
    line-height: 1.35;
  }
  .hero-credentials-dark span {
    font-size: 0.76rem;
    padding: 5px 12px;
  }
  .hero-frame-luxury {
    border-radius: 170px 170px 30px 30px;
    max-width: 310px;
    margin: 0 auto;
  }
  .hero-frame-inner {
    border-radius: 164px 164px 26px 26px;
  }
  .hero-badge-top {
    right: 5px;
    top: 10px;
    font-size: 0.72rem;
    padding: 6px 12px;
  }
  .hero-badge-bottom {
    left: 0;
    right: 0;
    margin: 0 auto;
    max-width: calc(100% - 20px);
    bottom: -15px;
    padding: 10px 14px;
  }
  .hero-badge-bottom img {
    width: 38px;
    height: 38px;
  }
  .hero-badge-bottom strong {
    font-size: 0.92rem;
  }
  .hero-badge-bottom span {
    font-size: 0.68rem;
  }
  .actions {
    flex-direction: column;
    width: 100%;
  }
  .actions .btn {
    width: 100%;
  }
  .gofund-bar-right {
    flex-direction: column;
    width: 100%;
    align-items: stretch;
  }
  .gofund-quick-card {
    padding: 14px 12px;
    max-width: 100%;
  }
  .gofund-bar-chips {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }
  .gofund-bar-actions {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .amount-chips {
    grid-template-columns: repeat(2, 1fr);
    width: 100%;
  }
  .section {
    padding: 60px 0;
  }
  .section-head h2 {
    font-size: 2rem;
  }
  .stats-grid {
    grid-template-columns: 1fr;
  }
  .stat-item strong {
    font-size: 2rem;
  }
  .gofund-card {
    padding: 24px 16px;
  }
  .gofund-raised {
    font-size: 1.8rem;
  }
  .form-card {
    padding: 24px 16px;
  }
  .form-grid {
    grid-template-columns: 1fr;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }
  .page-hero {
    padding: 55px 0 45px;
  }
  .page-hero h1 {
    font-size: 2.2rem;
  }
  .lga-content-card {
    padding: 22px 16px;
  }
  .lga-text h3 {
    font-size: 1.65rem;
  }
  .modal-box {
    padding: 24px 16px;
  }
  .hero-executive {
    overflow: hidden !important;
  }
  .lga-tabs {
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
  }
  .lga-tab-btn {
    padding: 8px 14px;
    font-size: 0.82rem;
  }
  .callout {
    padding: 28px 18px !important;
  }
  .callout > div:last-child {
    flex-direction: column !important;
    width: 100% !important;
  }
  .callout .btn {
    white-space: normal !important;
    text-align: center;
    width: 100% !important;
  }
  .bank-transfer-card {
    padding: 16px 14px !important;
  }
  .bank-header {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 6px !important;
  }
  .bank-row-item {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 4px !important;
  }
  .bank-copy-wrap {
    width: 100% !important;
    justify-content: space-between !important;
  }
  .bank-copy-wrap .val {
    word-break: break-all;
  }
  .bank-copy-wrap {
    width: 100%;
    justify-content: space-between;
  }
  .btn {
    white-space: normal;
  }
}

/* ==========================================================================
   HIGH-IMPACT INTERACTIVE JAVASCRIPT EFFECTS & ANIMATION SUITE
   ========================================================================== */

/* 1. Top Reading & Campaign Progress Bar */
#reading-progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 3.5px;
  background: linear-gradient(90deg, var(--green-light) 0%, var(--yellow) 50%, #ffe066 100%);
  z-index: 99999;
  box-shadow: 0 0 10px rgba(254, 208, 0, 0.6);
  transition: width 0.08s ease-out;
  pointer-events: none;
}

/* 2. Hero Ambient Stardust Particle Canvas */
.hero-particles-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

/* 3. Democratic Decision Day Countdown Banner */
.countdown-banner {
  background: linear-gradient(135deg, var(--green-deep) 0%, var(--green-dark) 100%);
  border-bottom: 2px solid rgba(254, 208, 0, 0.35);
  padding: 16px 0;
  position: relative;
  overflow: hidden;
  color: #ffffff;
}

.countdown-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(254, 208, 0, 0.08), transparent);
  animation: shimmerSweep 6s infinite;
  pointer-events: none;
}

@keyframes shimmerSweep {
  0% { left: -100%; }
  50%, 100% { left: 100%; }
}

.countdown-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.countdown-label-group {
  display: flex;
  align-items: center;
  gap: 12px;
}

.countdown-badge {
  background: var(--yellow);
  color: var(--green-deep);
  font-size: 0.72rem;
  font-weight: 900;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.countdown-title {
  font-size: 0.92rem;
  font-weight: 700;
  color: #e6f3eb;
}

.countdown-title strong {
  color: var(--yellow);
}

.countdown-units {
  display: flex;
  align-items: center;
  gap: 10px;
}

.countdown-box {
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(254, 208, 0, 0.3);
  backdrop-filter: blur(10px);
  border-radius: 10px;
  padding: 6px 12px;
  min-width: 58px;
  text-align: center;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.countdown-box:hover {
  transform: translateY(-2px);
  border-color: var(--yellow);
}

.countdown-num {
  font-family: var(--font-cinzel), Georgia, serif;
  font-size: 1.35rem;
  font-weight: 800;
  line-height: 1.1;
  color: #ffffff;
  display: block;
}

.countdown-unit-label {
  font-size: 0.62rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #b8d4c5;
  font-weight: 700;
}

.countdown-sep {
  font-size: 1.2rem;
  font-weight: 900;
  color: var(--yellow);
  margin-top: -6px;
}

/* 4. Interactive 3D Perspective Tilt & Cursor Glare */
.tilt-card {
  perspective: 1000px;
  transform-style: preserve-3d;
  transition: transform 0.12s ease-out, box-shadow 0.2s ease;
  position: relative;
  will-change: transform;
}

.tilt-sheen {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background: radial-gradient(circle at 50% 50%, rgba(254, 208, 0, 0.18) 0%, transparent 65%);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 4;
}

/* 5. Live Grassroots Activity / Momentum Pulse Ticker */
#activity-pulse-ticker {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 8500;
  max-width: 380px;
  background: rgba(3, 28, 14, 0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1.5px solid rgba(254, 208, 0, 0.35);
  border-radius: 16px;
  padding: 12px 16px;
  color: #ffffff;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
  display: flex;
  align-items: center;
  gap: 12px;
  opacity: 0;
  transform: translateY(25px) scale(0.96);
  transition: all 0.45s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
}

#activity-pulse-ticker.active {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.ticker-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green-dark), #031c0e);
  border: 2px solid var(--yellow);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

.ticker-icon img {
  width: 24px;
  height: 24px;
}

.ticker-body {
  flex: 1;
  min-width: 0;
  font-size: 0.82rem;
  line-height: 1.35;
}

.ticker-meta {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 2px;
}

.ticker-live-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #00ff73;
  box-shadow: 0 0 8px #00ff73;
  animation: pulseDot 1.8s infinite;
}

@keyframes pulseDot {
  0% { transform: scale(0.95); opacity: 0.8; }
  50% { transform: scale(1.35); opacity: 1; box-shadow: 0 0 12px #00ff73; }
  100% { transform: scale(0.95); opacity: 0.8; }
}

.ticker-meta span {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #b5e2cb;
}

.ticker-text strong {
  color: var(--yellow);
}

.ticker-time {
  font-size: 0.7rem;
  color: #92b8a3;
  margin-top: 2px;
}

.ticker-close {
  background: transparent;
  border: none;
  color: #b5e2cb;
  font-size: 0.95rem;
  cursor: pointer;
  padding: 4px;
  line-height: 1;
  transition: color 0.2s ease;
  margin-left: 4px;
}

.ticker-close:hover {
  color: var(--yellow);
}

/* 6. Back-to-Top Orb with Circular Progress Indicator */
#back-to-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 8500;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(3, 28, 14, 0.94);
  backdrop-filter: blur(10px);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--yellow);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.3);
  opacity: 0;
  transform: translateY(20px) scale(0.85);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
}

#back-to-top.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

#back-to-top:hover {
  transform: translateY(-4px) scale(1.08);
  box-shadow: 0 14px 34px rgba(254, 208, 0, 0.35);
}

#back-to-top svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}

#back-to-top svg circle.bg {
  stroke: rgba(255, 255, 255, 0.15);
  stroke-width: 3;
  fill: none;
}

#back-to-top svg circle.progress {
  stroke: var(--yellow);
  stroke-width: 3;
  fill: none;
  stroke-linecap: round;
  stroke-dasharray: 144.5;
  stroke-dashoffset: 144.5;
  transition: stroke-dashoffset 0.1s ease-out;
}

#back-to-top .arrow {
  position: relative;
  z-index: 2;
  font-size: 1.15rem;
  font-weight: 900;
  line-height: 1;
}

/* 7. Button Ripple Effect */
.btn-ripple {
  position: absolute;
  border-radius: 50%;
  transform: scale(0);
  animation: rippleAnimation 0.6s linear;
  background: rgba(255, 255, 255, 0.38);
  pointer-events: none;
}

@keyframes rippleAnimation {
  to {
    transform: scale(4);
    opacity: 0;
  }
}

/* 8. Progress Bar Glowing Shimmer */
.progress-bar-fill {
  position: relative;
  overflow: hidden;
  transition: width 1.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.progress-bar-fill::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transform: translateX(-100%);
  animation: progressShimmer 2.2s infinite;
}

@keyframes progressShimmer {
  100% {
    transform: translateX(100%);
  }
}

/* 9. Header On-Scroll Glassmorphism Elevation */
.header.scrolled {
  background: rgba(255, 255, 255, 0.96) !important;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 10px 30px rgba(10, 36, 22, 0.12) !important;
  border-bottom-color: rgba(212, 160, 23, 0.35) !important;
}

/* 10. Supporter Card Canvas Hidden Element */
#supporter-canvas-holder {
  display: none;
}

/* Mobile Adjustments for Interactive Elements */
@media (max-width: 600px) {
  #activity-pulse-ticker {
    bottom: 16px;
    left: 14px;
    right: 14px;
    max-width: calc(100% - 28px);
    padding: 10px 14px;
  }
  #back-to-top {
    bottom: 84px; /* Stack above ticker on mobile so it doesn't collide */
    right: 16px;
    width: 44px;
    height: 44px;
  }
  .countdown-wrap {
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }
  .countdown-label-group {
    flex-direction: column;
    gap: 6px;
  }
  .countdown-units {
    justify-content: center;
  }
}

/* ==========================================================================
   CAMPAIGN CONTRIBUTION PORTAL (INEC 2026/2027 COMPLIANCE-FIRST SUITE)
   ========================================================================== */
.portal-hero {
  padding: 70px 0 55px;
  text-align: center;
  background: radial-gradient(circle at 50% 15%, #0e4c2a 0%, #061f13 65%, #03140c 100%);
  border-bottom: 2px solid rgba(212, 175, 55, 0.35);
  position: relative;
  overflow: hidden;
}

.portal-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(245, 184, 0, 0.08) 1.2px, transparent 1.2px);
  background-size: 26px 26px;
  pointer-events: none;
  opacity: 0.7;
}

.portal-candidate-meta {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
}

.portal-candidate-meta .candidate-tag {
  background: linear-gradient(135deg, #f5b800 0%, #d4af37 100%);
  color: #061d12;
  font-weight: 800;
  font-size: 0.82rem;
  letter-spacing: 0.09em;
  padding: 5px 14px;
  border-radius: 4px;
  text-transform: uppercase;
  box-shadow: 0 2px 8px rgba(245, 184, 0, 0.3);
}

.portal-candidate-meta .election-tag {
  color: #ffffff;
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 0.06em;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
}

.portal-candidate-meta .party-tag {
  color: var(--yellow);
  font-weight: 800;
  font-size: 0.82rem;
  border: 1px solid rgba(254, 208, 0, 0.45);
  background: rgba(254, 208, 0, 0.08);
  padding: 4px 12px;
  border-radius: 4px;
  letter-spacing: 0.05em;
}

.portal-main-title {
  font-family: var(--font-cinzel), Georgia, serif;
  font-size: 3rem;
  font-weight: 900;
  color: #ffffff;
  letter-spacing: 0.04em;
  margin: 0 0 18px;
  line-height: 1.15;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
  position: relative;
  z-index: 2;
}

.portal-explanation {
  max-width: 840px;
  margin: 0 auto 40px;
  font-size: 1.08rem;
  line-height: 1.65;
  color: #d1e7dc;
  position: relative;
  z-index: 2;
}

/* Portal Mode Selector Buttons */
.portal-channels-nav {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  max-width: 1160px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.portal-nav-btn {
  background: rgba(6, 29, 18, 0.82);
  border: 1.5px solid rgba(212, 175, 55, 0.3);
  border-radius: var(--radius-md);
  padding: 18px 16px;
  color: #ffffff;
  text-align: left;
  display: flex;
  align-items: center;
  gap: 14px;
  cursor: pointer;
  transition: all 0.28s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(12px);
  position: relative;
  overflow: hidden;
}

.portal-nav-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: transparent;
  transition: background 0.25s ease;
}

.portal-nav-btn:hover {
  background: rgba(10, 65, 35, 0.9);
  border-color: rgba(245, 184, 0, 0.7);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

.portal-nav-btn:hover::before {
  background: var(--yellow);
}

.portal-nav-btn.active {
  background: #ffffff;
  border-color: #f5b800;
  color: var(--green-dark);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
  transform: translateY(-2px);
}

.portal-nav-btn.active::before {
  background: linear-gradient(90deg, #f5b800, #0a542c);
}

.portal-nav-btn .nav-icon-wrap {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: rgba(245, 184, 0, 0.15);
  border: 1.5px solid rgba(245, 184, 0, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #f5b800;
  transition: all 0.25s ease;
}

.portal-nav-btn:hover .nav-icon-wrap {
  background: #f5b800;
  color: #061d12;
  transform: scale(1.08);
}

.portal-nav-btn.active .nav-icon-wrap {
  background: linear-gradient(135deg, #0a542c 0%, #061d12 100%);
  color: #f5b800;
  border-color: #0a542c;
  box-shadow: 0 4px 14px rgba(10, 84, 44, 0.35);
}

.portal-nav-btn .flag-icon {
  display: none;
}

.portal-nav-btn .btn-text strong {
  display: block;
  font-size: 0.96rem;
  font-weight: 800;
  line-height: 1.3;
}

.portal-nav-btn .btn-text small {
  display: block;
  font-size: 0.76rem;
  opacity: 0.82;
  margin-top: 3px;
  line-height: 1.35;
}

.portal-nav-btn.active .btn-text strong {
  color: var(--green-dark);
}

.portal-nav-btn.active .btn-text small {
  color: var(--muted);
}

/* Portal Panels */
.portal-tab-panel {
  display: none;
}

.portal-tab-panel.active {
  display: block;
  animation: panelFadeIn 0.35s ease forwards;
}

@keyframes panelFadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.portal-body-section {
  padding: 60px 0 90px;
}

.portal-layout-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: start;
}

.portal-form-container {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-sm);
}

.portal-card-header {
  margin-bottom: 28px;
}

.header-pretitle {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--green);
  margin-bottom: 6px;
}

.header-pretitle .badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
}

.portal-card-header h2 {
  font-family: var(--font-serif);
  font-size: 2rem;
  color: var(--green-dark);
  margin: 0 0 10px;
  line-height: 1.25;
}

.portal-card-header p {
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.55;
  margin: 0;
}

/* Compliance Alert Banners */
.compliance-alert-box {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 16px 18px;
  border-radius: var(--radius-sm);
  margin-bottom: 24px;
}

.compliance-alert-box.error-alert {
  background: #fff3f2;
  border: 1.5px solid #e03131;
  color: #9b1c1c;
}

.compliance-alert-box .alert-icon {
  font-size: 1.3rem;
  flex-shrink: 0;
}

.compliance-alert-box .alert-content strong {
  display: block;
  font-size: 0.94rem;
  margin-bottom: 4px;
  color: #9b1c1c;
}

.compliance-alert-box .alert-content p {
  font-size: 0.86rem;
  margin: 0;
  line-height: 1.45;
  color: #771d1d;
}

/* Stepper & Form Groups */
.form-step-block {
  margin-bottom: 30px;
  padding-bottom: 26px;
  border-bottom: 1px solid var(--line);
}

.form-step-block.compliance-block {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.step-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}

.step-badge .step-num {
  background: var(--green-dark);
  color: var(--yellow);
  font-weight: 800;
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 4px 10px;
  border-radius: 4px;
}

.step-badge .step-title {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--green-dark);
}

.fields-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.form-group {
  margin-bottom: 16px;
}

.form-group label {
  display: block;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 6px;
}

.form-group label .req {
  color: #d9381e;
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 12px 14px;
  font-size: 0.95rem;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  background: #ffffff;
  color: var(--text);
  font-family: inherit;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(10, 84, 44, 0.12);
}

.form-group input.input-readonly {
  background: #f8faf9;
  color: var(--muted);
  cursor: not-allowed;
}

/* Amount Chips & Custom Input */
.amount-selection-wrap {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.preset-chips-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.amount-chip {
  background: var(--cream);
  border: 1.5px solid var(--line);
  border-radius: 6px;
  padding: 10px 8px;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--green-dark);
  cursor: pointer;
  text-align: center;
  transition: all 0.2s ease;
}

.amount-chip:hover {
  border-color: var(--green);
  background: #ffffff;
}

.amount-chip.active {
  background: var(--green-dark);
  color: var(--yellow);
  border-color: var(--green-dark);
  box-shadow: 0 4px 12px rgba(3, 28, 14, 0.15);
}

.custom-input-wrap {
  position: relative;
  display: flex;
  align-items: center;
}

.custom-input-wrap .currency-symbol {
  position: absolute;
  left: 16px;
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--green-dark);
}

.custom-input-wrap input {
  width: 100%;
  padding: 14px 16px 14px 40px;
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--green-dark);
  border: 2px solid var(--line);
  border-radius: var(--radius-sm);
}

.custom-input-wrap input:focus {
  outline: none;
  border-color: var(--green);
}

/* Compliance Checkboxes */
.compliance-checkboxes {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 24px;
}

.compliance-check-label {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  cursor: pointer;
}

.compliance-check-label input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

.check-box-custom {
  width: 22px;
  height: 22px;
  border: 2px solid var(--green-dark);
  border-radius: 4px;
  flex-shrink: 0;
  margin-top: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  transition: all 0.2s ease;
}

.compliance-check-label input:checked ~ .check-box-custom {
  background: var(--green-dark);
  border-color: var(--green-dark);
}

.compliance-check-label input:checked ~ .check-box-custom::after {
  content: "✓";
  color: var(--yellow);
  font-weight: 900;
  font-size: 0.9rem;
}

.check-text {
  font-size: 0.88rem;
  color: var(--text);
  line-height: 1.45;
}

.btn-submit-step {
  width: 100%;
  padding: 16px;
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-align: center;
}

/* Proof of Payment Upload Dropzone */
.proof-upload-zone {
  border: 2px dashed #cbd5e1;
  background: #f8fafc;
  border-radius: var(--radius-md);
  padding: 24px;
  text-align: center;
  transition: all 0.2s ease;
  position: relative;
  cursor: pointer;
}

.proof-upload-zone:hover,
.proof-upload-zone.dragover {
  border-color: var(--green);
  background: #f0fdf4;
}

.file-input-hidden {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
  width: 100%;
  height: 100%;
  z-index: 5;
}

.upload-zone-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.upload-icon-circle {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #e8f5ee;
  color: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2px;
}

.upload-main-text {
  font-size: 0.95rem;
  color: var(--green-dark);
  display: block;
}

.upload-sub-text {
  font-size: 0.8rem;
  color: var(--muted);
  display: block;
  max-width: 380px;
}

.upload-preview-box {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #ffffff;
  border: 1.5px solid #86efac;
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  text-align: left;
  position: relative;
  z-index: 10;
}

.preview-thumbnail {
  width: 56px;
  height: 56px;
  border-radius: 6px;
  background-color: #f1f5f9;
  background-size: cover;
  background-position: center;
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}

.preview-info {
  flex: 1;
  min-width: 0;
}

.preview-filename {
  display: block;
  font-size: 0.88rem;
  color: var(--green-dark);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.preview-filesize {
  font-size: 0.76rem;
  color: var(--muted);
  display: block;
}

.preview-status-pill {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 800;
  color: #15803d;
  background: #dcfce7;
  padding: 2px 7px;
  border-radius: 4px;
  margin-top: 3px;
}

.btn-remove-file {
  background: #fee2e2;
  border: none;
  color: #dc2626;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  cursor: pointer;
  font-weight: 800;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.btn-remove-file:hover {
  background: #fca5a5;
}

/* Official Account Card in Sidebar */
.official-account-card {
  background: linear-gradient(145deg, #072818 0%, #03170e 100%);
  color: #ffffff;
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: 0 16px 36px rgba(3, 20, 12, 0.35);
  border: 1.5px solid rgba(212, 175, 55, 0.45);
  margin-bottom: 24px;
  position: relative;
  overflow: hidden;
}

.official-account-card::after {
  content: "";
  position: absolute;
  top: -40px;
  right: -40px;
  width: 140px;
  height: 140px;
  background: radial-gradient(circle, rgba(245, 184, 0, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.account-card-header {
  margin-bottom: 18px;
  position: relative;
  z-index: 2;
}

.verified-seal {
  background: rgba(245, 184, 0, 0.15);
  color: #f5b800;
  border: 1px solid rgba(245, 184, 0, 0.45);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  padding: 5px 12px;
  border-radius: 4px;
  display: inline-block;
  margin-bottom: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.compliance-note {
  display: block;
  font-size: 0.78rem;
  color: #a3c9b4;
  line-height: 1.4;
}

.account-title {
  font-family: var(--font-cinzel), Georgia, serif;
  font-size: 1.55rem;
  font-weight: 800;
  color: #ffffff;
  margin: 10px 0 8px;
  letter-spacing: 0.02em;
}

.account-desc {
  font-size: 0.88rem;
  color: #c9e0d4;
  line-height: 1.55;
  margin-bottom: 22px;
}

.bank-details-ledger {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-sm);
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.ledger-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.88rem;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.ledger-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.ledger-row .label {
  color: #a3c4b3;
}

.ledger-row .value {
  color: #ffffff;
  font-weight: 700;
  text-align: right;
}

.ledger-row.highlight .value {
  color: var(--yellow);
  font-size: 1.15rem;
}

.copyable-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
}

.copyable-wrap .btn-copy {
  background: rgba(254, 208, 0, 0.2);
  border: 1px solid var(--yellow);
  color: var(--yellow);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.copyable-wrap .btn-copy:hover {
  background: var(--yellow);
  color: var(--green-dark);
}

.payment-action-buttons {
  margin-top: 20px;
}

.compliance-info-card {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 24px;
}

.compliance-info-card h4 {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: var(--green-dark);
  margin: 0 0 12px;
}

.compliance-info-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 0.86rem;
  color: var(--muted);
  line-height: 1.45;
}

/* International Warning Banner */
.international-warning-banner {
  background: #fbf7ee;
  border: 2px solid var(--yellow);
  border-radius: var(--radius-md);
  padding: 24px;
  color: var(--green-dark);
}

.warning-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.warning-header .warning-icon {
  font-size: 1.6rem;
}

.warning-header h3 {
  font-family: var(--font-cinzel), Georgia, serif;
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--green-dark);
  margin: 0;
  letter-spacing: 0.04em;
}

.international-warning-banner p {
  font-size: 0.95rem;
  line-height: 1.55;
  margin: 0 0 12px;
}

.warning-subnote {
  font-size: 0.84rem;
  background: rgba(10, 84, 44, 0.08);
  padding: 10px 14px;
  border-radius: 4px;
  border-left: 3px solid var(--green);
  line-height: 1.45;
}

/* NGN Conversion Card */
.ngn-conversion-card {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 16px 18px;
  margin-top: 14px;
}

.ngn-conversion-card .calc-label {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  margin-bottom: 4px;
}

.ngn-conversion-card .calc-result {
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--green-dark);
  font-family: var(--font-cinzel), Georgia, serif;
}

.ngn-conversion-card .calc-note {
  font-size: 0.78rem;
  color: var(--muted);
  display: block;
  margin-top: 4px;
}

/* Receipt Lookup & Search */
.receipt-lookup-container {
  max-width: 860px;
  margin: 0 auto;
}

.receipt-search-bar {
  display: flex;
  gap: 12px;
  background: #ffffff;
  padding: 8px;
  border: 2px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.receipt-search-bar input {
  flex: 1;
  border: none;
  padding: 14px 18px;
  font-size: 1rem;
  outline: none;
}

.sample-search-shortcuts {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  font-size: 0.84rem;
  color: var(--muted);
  flex-wrap: wrap;
}

.sample-search-shortcuts .shortcut-tag {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 4px 10px;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--green-dark);
  cursor: pointer;
  transition: all 0.2s ease;
}

.sample-search-shortcuts .shortcut-tag:hover {
  background: var(--green-dark);
  color: var(--yellow);
}

/* Finance Dashboard Grid */
.finance-dashboard-wrapper {
  max-width: 1140px;
  margin: 0 auto;
}

.finance-metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-bottom: 40px;
}

.metric-stat-box {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 22px 20px;
  box-shadow: var(--shadow-sm);
}

.metric-stat-box.highlight-box {
  background: linear-gradient(135deg, #f7faf8 0%, var(--cream) 100%);
  border: 2px solid var(--green);
}

.metric-stat-box .metric-label {
  display: block;
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
  margin-bottom: 6px;
}

.metric-stat-box .metric-val {
  font-family: var(--font-cinzel), Georgia, serif;
  font-size: 1.85rem;
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 6px;
}

.metric-stat-box .metric-sub {
  display: block;
  font-size: 0.78rem;
  color: var(--muted);
}

.text-green { color: var(--green); }
.text-yellow { color: #b8860b; }
.text-red { color: #c0392b; }
.text-dark { color: var(--green-dark); }

/* Transparency Statement & Report Table */
.transparency-statement-card {
  background: var(--cream);
  border-left: 4px solid var(--green);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: 24px 28px;
  margin-bottom: 40px;
}

.statement-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 12px;
}

.statement-header .statement-icon {
  font-size: 1.8rem;
}

.statement-header h3 {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: var(--green-dark);
  margin: 0;
}

.statement-header .statement-meta {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.transparency-statement-card p {
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--text);
  margin: 0 0 10px;
}

.transparency-statement-card p:last-child {
  margin-bottom: 0;
}

.inec-report-preview-card {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 26px;
  box-shadow: var(--shadow-sm);
  margin-bottom: 40px;
}

.report-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  flex-wrap: wrap;
  gap: 12px;
}

.report-header h4 {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  color: var(--green-dark);
  margin: 0 0 4px;
}

.report-header small {
  color: var(--muted);
  font-size: 0.82rem;
}

.report-tag {
  background: var(--cream);
  border: 1px solid var(--yellow);
  color: var(--green-dark);
  font-size: 0.78rem;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 4px;
}

.compliance-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.86rem;
}

.compliance-table th {
  background: #f8faf9;
  text-align: left;
  padding: 12px 14px;
  color: var(--green-dark);
  font-weight: 800;
  border-bottom: 2px solid var(--line);
}

.compliance-table td {
  padding: 12px 14px;
  border-bottom: 1px solid var(--line);
  color: var(--text);
}

.status-badge {
  font-size: 0.75rem;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: 4px;
  text-transform: uppercase;
}

.status-badge.verified {
  background: #e6f4ea;
  color: #137333;
}

.status-badge.escrow {
  background: #fef7e0;
  color: #b06000;
}

.admin-controls-overview {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 30px;
}

.admin-controls-overview h3 {
  font-family: var(--font-serif);
  font-size: 1.45rem;
  color: var(--green-dark);
  margin: 0 0 8px;
}

.roles-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 20px;
}

.role-card {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 16px;
}

.role-card strong {
  display: block;
  font-size: 0.95rem;
  color: var(--green-dark);
  margin-bottom: 6px;
}

.role-card p {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.4;
  margin: 0;
}

/* ==========================================================================
   OFFICIAL CONTRIBUTION RECEIPT (STATUTORY CERTIFICATE DESIGN)
   ========================================================================== */
body.modal-open {
  overflow: hidden !important;
}

.receipt-modal-box {
  max-width: 680px;
  width: 100%;
  padding: 0;
  border-radius: var(--radius-lg);
  background: #fdfcf9;
  margin: 16px auto;
  max-height: calc(100vh - 32px);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(212, 175, 55, 0.4);
  position: relative;
}

.receipt-modal-scroll {
  padding: 24px 24px 16px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  flex: 1 1 auto;
  scrollbar-width: thin;
  scrollbar-color: #d4af37 #f4efe4;
}

.receipt-modal-scroll::-webkit-scrollbar {
  width: 7px;
}

.receipt-modal-scroll::-webkit-scrollbar-track {
  background: #f4efe4;
  border-radius: 4px;
}

.receipt-modal-scroll::-webkit-scrollbar-thumb {
  background: #d4af37;
  border-radius: 4px;
}

.receipt-modal-box .modal-close {
  position: absolute;
  right: 14px;
  top: 14px;
  z-index: 30;
  background: #ffffff;
  border: 1px solid var(--line);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
}

.official-receipt-card {
  background: #ffffff;
  border: 3px double #d4af37;
  border-radius: 6px;
  padding: 20px 18px;
  box-shadow: inset 0 0 20px rgba(212, 175, 55, 0.08);
  position: relative;
}

.receipt-header-banner {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 12px;
}

.receipt-logo {
  width: 58px;
  height: 58px;
  object-fit: contain;
}

.receipt-title-group {
  flex: 1;
}

.receipt-badge-top {
  display: inline-block;
  background: var(--green-dark);
  color: var(--yellow);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  padding: 2px 7px;
  border-radius: 3px;
  text-transform: uppercase;
  margin-bottom: 3px;
}

.receipt-title-group h2 {
  font-family: var(--font-cinzel), Georgia, serif;
  font-size: 1.55rem;
  color: var(--green-dark);
  margin: 0 0 2px;
  letter-spacing: 0.03em;
  line-height: 1.15;
}

.receipt-subtitle {
  display: block;
  font-size: 0.84rem;
  font-weight: 800;
  color: var(--green);
}

.receipt-party {
  display: block;
  font-size: 0.74rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 1px;
}

.receipt-divider {
  height: 2px;
  background: linear-gradient(90deg, transparent, #d4af37, transparent);
  margin: 12px 0;
}

.receipt-serial-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 12px;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 4px;
  margin-bottom: 12px;
}

.r-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
  margin-bottom: 2px;
}

.r-val {
  font-size: 0.92rem;
  color: var(--green-dark);
  font-weight: 800;
}

.r-val.highlight-gold {
  color: #b8860b;
  font-family: var(--font-cinzel), Georgia, serif;
  font-size: 1.1rem;
}

.receipt-data-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 14px;
}

.r-cell {
  background: #fbfbf9;
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 8px 12px;
}

.r-cell.highlight-cell {
  background: #f4f8f5;
  border-color: rgba(10, 84, 44, 0.25);
}

.receipt-legal-affirmation {
  background: #fcf9f2;
  border-left: 3px solid #d4af37;
  padding: 10px 14px;
  border-radius: 0 4px 4px 0;
  margin-bottom: 14px;
}

.receipt-legal-affirmation p {
  font-size: 0.82rem;
  font-style: italic;
  color: var(--green-dark);
  line-height: 1.4;
  margin: 0;
}

.receipt-footer-security {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.7rem;
  color: var(--muted);
  border-top: 1px solid var(--line);
  padding-top: 8px;
  font-family: monospace;
}

.receipt-actions-bar {
  flex-shrink: 0;
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  padding: 14px 24px;
  background: #f4efe4;
  border-top: 1.5px solid rgba(212, 175, 55, 0.35);
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.04);
  z-index: 10;
}

/* Print Styles for Official Receipt */
@media print {
  body * {
    visibility: hidden;
  }
  #printable-official-receipt, #printable-official-receipt * {
    visibility: visible;
  }
  #printable-official-receipt {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    border: 2px solid #000;
    padding: 30px;
  }
}

/* Responsive Portal Layout */
@media (max-width: 1024px) {
  .portal-channels-nav {
    grid-template-columns: repeat(2, 1fr);
  }
  .portal-layout-grid {
    grid-template-columns: 1fr;
  }
  .finance-metrics-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .roles-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .portal-channels-nav {
    grid-template-columns: 1fr;
  }
  .portal-main-title {
    font-size: 2rem;
  }
  .portal-form-container {
    padding: 22px 18px;
  }
  .fields-row {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .preset-chips-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .receipt-search-bar {
    flex-direction: column;
  }
  .receipt-data-grid {
    grid-template-columns: 1fr;
  }
  .finance-metrics-grid {
    grid-template-columns: 1fr;
  }
  .roles-grid {
    grid-template-columns: 1fr;
  }
  .receipt-header-banner {
    flex-direction: column;
    text-align: center;
  }
  .receipt-serial-row {
    flex-direction: column;
    gap: 8px;
    text-align: left;
  }
  .receipt-serial-row div {
    text-align: left !important;
  }
}

/* ==========================================================================
   CAMPAIGN FINANCE ADMINISTRATOR DASHBOARD (INEC COMPLIANCE DESK)
   ========================================================================== */
.admin-body {
  background-color: #f1f5f9;
  color: #1e293b;
  font-family: var(--font-sans);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.admin-header {
  background: linear-gradient(135deg, #071f13 0%, #0a351d 100%);
  border-bottom: 2px solid #d4af37;
  padding: 14px 0;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
  position: sticky;
  top: 0;
  z-index: 100;
}

.admin-nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.admin-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.admin-logo {
  width: 44px;
  height: 44px;
  object-fit: contain;
}

.admin-portal-title {
  font-family: var(--font-cinzel), Georgia, serif;
  font-size: 1.22rem;
  color: #ffffff;
  margin: 0 0 2px;
  letter-spacing: 0.02em;
}

.admin-portal-sub {
  font-size: 0.74rem;
  font-weight: 700;
  color: #f5b800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: block;
}

.admin-controls-bar {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.role-selector-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.84rem;
  font-weight: 600;
}

.role-select {
  background: #04140b;
  color: #f5b800;
  border: 1px solid rgba(212, 175, 55, 0.6);
  border-radius: 6px;
  padding: 6px 12px;
  font-size: 0.82rem;
  font-weight: 700;
  cursor: pointer;
  outline: none;
}

.admin-status-banner {
  background: #04140b;
  color: #94a3b8;
  font-size: 0.8rem;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.status-banner-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}

.status-left {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #cbd5e1;
}

.pulse-indicator {
  display: inline-block;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 8px #22c55e;
  animation: pulseGreen 1.8s infinite;
}

@keyframes pulseGreen {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7); }
  70% { transform: scale(1.05); box-shadow: 0 0 0 6px rgba(34, 197, 94, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
}

.banner-divider {
  opacity: 0.35;
}

.admin-main {
  flex: 1;
  padding: 26px 0 60px;
}

/* Executive Metrics Row */
.admin-metrics-row {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
  margin-bottom: 24px;
}

.admin-metric-card {
  background: #ffffff;
  border-radius: 8px;
  border: 1px solid #e2e8f0;
  padding: 16px 14px;
  box-shadow: 0 2px 6px rgba(15, 23, 42, 0.04);
  transition: transform 0.2s, box-shadow 0.2s;
}

.admin-metric-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(15, 23, 42, 0.08);
}

.admin-metric-card.highlight-card {
  background: #f0fdf4;
  border-color: #86efac;
}

.m-label {
  display: block;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: #64748b;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.m-val {
  font-family: var(--font-cinzel), Georgia, serif;
  font-size: 1.45rem;
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 3px;
}

.m-sub {
  display: block;
  font-size: 0.72rem;
  color: #94a3b8;
}

/* Navigation Tabs */
.admin-tabs-nav {
  display: flex;
  gap: 6px;
  border-bottom: 2px solid #e2e8f0;
  margin-bottom: 22px;
  overflow-x: auto;
  white-space: nowrap;
}

.admin-tab-btn {
  background: none;
  border: none;
  padding: 12px 18px;
  font-size: 0.92rem;
  font-weight: 700;
  color: #64748b;
  cursor: pointer;
  border-bottom: 3px solid transparent;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  gap: 8px;
}

.admin-tab-btn:hover {
  color: #0a351d;
  background: rgba(255, 255, 255, 0.6);
}

.admin-tab-btn.active {
  color: #0a351d;
  border-bottom-color: #f5b800;
  background: #ffffff;
  border-radius: 6px 6px 0 0;
}

.admin-tab-content {
  display: none;
}

.admin-tab-content.active {
  display: block;
}

/* Admin Cards & Headers */
.admin-card {
  background: #ffffff;
  border-radius: 10px;
  border: 1px solid #e2e8f0;
  padding: 24px;
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.04);
}

.admin-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 18px;
  flex-wrap: wrap;
  gap: 14px;
}

.admin-card-header h2 {
  font-family: var(--font-cinzel), Georgia, serif;
  font-size: 1.35rem;
  color: #0a351d;
  margin: 0 0 4px;
}

.admin-search-input {
  padding: 8px 14px;
  border: 1.5px solid #cbd5e1;
  border-radius: 6px;
  font-size: 0.86rem;
  width: 320px;
  max-width: 100%;
}

.admin-search-input:focus {
  outline: none;
  border-color: #0a351d;
  box-shadow: 0 0 0 3px rgba(10, 53, 29, 0.12);
}

/* Filter Pills */
.filter-pills-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  font-size: 0.82rem;
  font-weight: 700;
  color: #64748b;
  flex-wrap: wrap;
}

.filter-pill {
  background: #f1f5f9;
  border: 1px solid #cbd5e1;
  border-radius: 20px;
  padding: 4px 14px;
  font-size: 0.78rem;
  font-weight: 700;
  cursor: pointer;
  color: #475569;
  transition: all 0.15s;
}

.filter-pill:hover {
  background: #e2e8f0;
}

.filter-pill.active {
  background: #0a351d;
  color: #ffffff;
  border-color: #0a351d;
}

/* Statutory Tables */
.admin-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.85rem;
}

.admin-table th {
  background: #f8fafc;
  padding: 10px 14px;
  text-align: left;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #64748b;
  border-bottom: 2px solid #e2e8f0;
  white-space: nowrap;
}

.admin-table td {
  padding: 11px 14px;
  border-bottom: 1px solid #e2e8f0;
  vertical-align: middle;
}

.admin-table tr:hover td {
  background: #f8fbf9;
}

.receipt-code-pill {
  font-family: monospace;
  font-weight: 700;
  background: #f1f5f9;
  padding: 3px 6px;
  border-radius: 4px;
  font-size: 0.78rem;
  color: #0f172a;
}

.status-pill {
  display: inline-block;
  padding: 3px 8px;
  border-radius: 12px;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.badge-verified {
  background: #dcfce7;
  color: #15803d;
}

.badge-pending {
  background: #fef3c7;
  color: #b45309;
}

.badge-escrow {
  background: #ede9fe;
  color: #6d28d9;
}

.cat-pill {
  display: inline-block;
  padding: 2px 7px;
  background: #e0f2fe;
  color: #0369a1;
  border-radius: 4px;
  font-size: 0.74rem;
  font-weight: 700;
}

.action-cell {
  white-space: nowrap;
  display: flex;
  gap: 6px;
}

.btn-action {
  background: #f8fafc;
  border: 1px solid #cbd5e1;
  border-radius: 4px;
  padding: 4px 8px;
  font-size: 0.75rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.15s;
}

.btn-action:hover {
  background: #e2e8f0;
}

.btn-verify {
  background: #dcfce7;
  border-color: #86efac;
  color: #15803d;
}

.btn-verify:hover {
  background: #bbf7d0;
}

.btn-view-receipt {
  background: #fef3c7;
  border-color: #fde68a;
  color: #92400e;
}

.btn-view-receipt:hover {
  background: #fde68a;
}

.btn-view-kyc {
  background: #f1f5f9;
  border-color: #cbd5e1;
  color: #334155;
}

.btn-view-kyc:hover {
  background: #e2e8f0;
}

/* Reports Grid */
.reports-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.report-export-box {
  border: 1.5px solid #e2e8f0;
  border-radius: 8px;
  padding: 20px;
  background: #fafafa;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.report-export-box.highlight-box {
  background: #f0fdf4;
  border-color: #86efac;
}

.report-icon {
  font-size: 1.8rem;
}

.report-export-box h4 {
  font-family: var(--font-cinzel), Georgia, serif;
  font-size: 1.05rem;
  color: #0a351d;
  margin: 0;
}

.report-export-box p {
  font-size: 0.84rem;
  color: #64748b;
  margin: 0 0 10px;
  flex: 1;
}

/* Audit Trail */
.audit-log-container {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.audit-log-item {
  background: #f8fafc;
  border-left: 3.5px solid #0a351d;
  border-radius: 0 6px 6px 0;
  padding: 12px 16px;
  border: 1px solid #e2e8f0;
  border-left-width: 3.5px;
}

.audit-top {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 5px;
  flex-wrap: wrap;
}

.audit-actor {
  font-weight: 700;
  font-size: 0.82rem;
  color: #0f172a;
}

.audit-badge {
  background: #e2e8f0;
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 0.7rem;
  font-weight: 800;
  font-family: monospace;
  color: #334155;
}

.audit-time {
  font-size: 0.74rem;
  color: #64748b;
  margin-left: auto;
}

.audit-detail {
  font-size: 0.84rem;
  color: #334155;
  margin: 0 0 4px;
}

.audit-hash {
  font-size: 0.7rem;
  font-family: monospace;
  color: #94a3b8;
}

/* KYC Grid */
.kyc-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.kyc-item {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 6px;
  padding: 8px 12px;
}

.kyc-label {
  font-size: 0.66rem;
  font-weight: 800;
  text-transform: uppercase;
  color: #64748b;
  display: block;
  margin-bottom: 2px;
}

.kyc-val {
  font-size: 0.88rem;
  color: #0f172a;
}

/* Responsive Breakpoints for Admin */
@media (max-width: 1200px) {
  .admin-metrics-row {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .admin-metrics-row {
    grid-template-columns: repeat(2, 1fr);
  }
  .reports-grid {
    grid-template-columns: 1fr;
  }
  .kyc-grid {
    grid-template-columns: 1fr;
  }
  .admin-search-input {
    width: 100%;
  }
  .status-banner-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 480px) {
  .admin-metrics-row {
    grid-template-columns: 1fr;
  }
  .admin-portal-title {
    font-size: 1.05rem;
  }
}

/* ==========================================================================
   MEMBERSHIP & SUPPORTER PORTAL DYNAMIC UI
   ========================================================================== */

/* Metrics Strip */
.member-metrics-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 36px;
}

.member-metric-card {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(254, 208, 0, 0.25);
  border-radius: var(--radius-md);
  padding: 20px;
  text-align: left;
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.member-metric-card:hover {
  transform: translateY(-2px);
  border-color: var(--yellow);
}

.member-metric-num {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 800;
  color: var(--yellow);
  line-height: 1.1;
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.member-metric-label {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #cae0d4;
  margin-top: 4px;
}

.member-metric-sub {
  font-size: 0.74rem;
  color: #a3c2b1;
  margin-top: 3px;
}

/* Tab Switcher */
.member-tabs {
  display: flex;
  background: var(--cream);
  border: 1px solid var(--line);
  padding: 5px;
  border-radius: var(--radius-md);
  margin-bottom: 24px;
  gap: 6px;
}

.member-tab-btn {
  flex: 1;
  padding: 12px 18px;
  font-family: var(--font-sans);
  font-size: 0.92rem;
  font-weight: 700;
  border: none;
  background: transparent;
  color: var(--muted);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.member-tab-btn:hover {
  color: var(--green-dark);
}

.member-tab-btn.active {
  background: var(--green);
  color: #ffffff;
  box-shadow: var(--shadow-sm);
}

/* Card Lookup Box */
.lookup-card-wrap {
  display: none;
}

.lookup-card-wrap.active {
  display: block;
}

.lookup-box {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-md);
}

/* Alert Banners */
.member-alert {
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  margin-bottom: 20px;
  display: none;
  align-items: center;
  gap: 10px;
  line-height: 1.4;
}

.member-alert.show {
  display: flex;
}

.member-alert-error {
  background: #fff5f5;
  border: 1px solid #feb2b2;
  color: #c53030;
}

.member-alert-success {
  background: #f0fff4;
  border: 1px solid #9ae6b4;
  color: #22543d;
}

.member-alert-info {
  background: #ebf8ff;
  border: 1px solid #90cdf4;
  color: #2b6cb0;
}

/* LGA Breakdown Section */
.lga-mobilisation-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-top: 24px;
}

.lga-card {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 20px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.lga-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.lga-card-name {
  font-weight: 800;
  font-size: 1rem;
  color: var(--green-dark);
  margin-bottom: 4px;
}

.lga-card-count {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--green);
  font-family: var(--font-serif);
}

.lga-progress-track {
  width: 100%;
  height: 6px;
  background: #e2e8f0;
  border-radius: 999px;
  overflow: hidden;
  margin: 10px 0 6px 0;
}

.lga-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--green) 0%, var(--yellow) 100%);
  border-radius: 999px;
  transition: width 0.6s ease;
}

/* Modal Popup */
.member-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(3, 28, 14, 0.75);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.member-modal-backdrop.show {
  display: flex;
  opacity: 1;
}

.member-modal {
  background: #ffffff;
  border-radius: var(--radius-lg);
  max-width: 560px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.45);
  border: 2px solid var(--yellow);
  padding: 36px;
  position: relative;
  transform: translateY(20px) scale(0.96);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.member-modal-backdrop.show .member-modal {
  transform: translateY(0) scale(1);
}

.member-modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  background: #f1f5f9;
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 1.2rem;
  line-height: 1;
  color: var(--muted);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, color 0.2s ease;
}

.member-modal-close:hover {
  background: #e2e8f0;
  color: #0f172a;
}

.member-modal-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(10, 84, 44, 0.08);
  color: var(--green);
  border: 1px solid rgba(10, 84, 44, 0.2);
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 12px;
}

.member-modal-title {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  color: var(--green-dark);
  margin-bottom: 8px;
}

.member-modal-reg-id {
  background: #f8fafc;
  border: 1.5px dashed var(--green);
  border-radius: var(--radius-md);
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 18px 0;
}

.member-modal-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 20px;
}

/* Recent Supporter Feed */
.recent-feed-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 18px;
}

.recent-feed-item {
  background: #f8fafc;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 14px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.recent-feed-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--green);
  color: var(--yellow);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.85rem;
  flex-shrink: 0;
}

/* Media Queries */
@media (max-width: 992px) {
  .member-metrics-strip {
    grid-template-columns: repeat(2, 1fr);
  }
  .lga-mobilisation-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .recent-feed-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .member-metrics-strip {
    grid-template-columns: 1fr;
  }
  .lga-mobilisation-grid {
    grid-template-columns: 1fr;
  }
  .recent-feed-grid {
    grid-template-columns: 1fr;
  }
  .member-tabs {
    flex-direction: column;
  }
  .member-modal {
    padding: 24px;
  }
}




