/* ============================================================
   About Us — supplemental styles (light theme v2)
   ============================================================ */

/* ── Background blobs (decorative, no dark overlay needed) ── */
.bg-blobs {
  position: fixed;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}

.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
}

.blob-1 {
  width: 500px;
  height: 500px;
  background: rgba(109, 40, 217, 0.07);
  top: -160px;
  left: -140px;
  animation: orbFloat 20s ease-in-out infinite alternate;
}

.blob-2 {
  width: 400px;
  height: 400px;
  background: rgba(14, 165, 233, 0.06);
  top: 30%;
  right: -120px;
  animation: orbFloat 16s ease-in-out infinite alternate;
  animation-delay: -7s;
}

.blob-3 {
  width: 320px;
  height: 320px;
  background: rgba(236, 72, 153, 0.055);
  bottom: 10%;
  left: 30%;
  animation: orbFloat 24s ease-in-out infinite alternate;
  animation-delay: -13s;
}

/* ── About page nav ── */
.nav-wrap {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(109, 40, 217, 0.08);
  box-shadow: 0 1px 0 rgba(109, 40, 217, 0.05);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
  gap: 2rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--text);
  text-decoration: none;
}

.brand-icon {
  width: 34px;
  height: 34px;
  background: var(--grad-primary);
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1rem;
  box-shadow: 0 4px 14px rgba(109, 40, 217, 0.38);
}

.nav .nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav .nav-links a {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
  position: relative;
}

.nav .nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--grad-primary);
  border-radius: 999px;
  transform: scaleX(0);
  transition: transform 0.25s ease;
}

.nav .nav-links a:hover { color: var(--primary); }
.nav .nav-links a:hover::after { transform: scaleX(1); }

.nav-cta {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1.2rem;
  background: var(--grad-primary);
  color: white !important;
  border-radius: 999px;
  font-size: 0.85rem !important;
  font-weight: 700 !important;
  box-shadow: 0 4px 16px rgba(109, 40, 217, 0.35);
  transition: box-shadow 0.3s ease, transform 0.3s ease !important;
}

.nav-cta::after { display: none !important; }
.nav-cta:hover {
  box-shadow: 0 8px 28px rgba(109, 40, 217, 0.5) !important;
  transform: translateY(-2px) !important;
}

/* ── Active nav link ── */
.nav-active {
  color: var(--primary) !important;
}

.nav-active::after { transform: scaleX(1) !important; }

/* ── Badge ── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.4rem 1rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  background: rgba(109, 40, 217, 0.08);
  border: 1px solid rgba(109, 40, 217, 0.2);
  color: var(--primary);
  margin-bottom: 1rem;
}

.badge-light {
  background: rgba(109, 40, 217, 0.06);
  border-color: rgba(109, 40, 217, 0.14);
  color: var(--primary);
}

.badge-purple {
  background: rgba(139, 92, 246, 0.08);
  border-color: rgba(139, 92, 246, 0.22);
  color: #7c3aed;
}

/* ── Section headings ── */
.section-heading {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 3.5rem;
}

.section-heading h2 { margin: 0.75rem 0 0.75rem; }
.section-heading p  { color: var(--text-muted); font-size: 1.02rem; line-height: 1.75; }

/* ── Page layout: ensure main is above blobs ── */
main { position: relative; z-index: 1; }

/* ── About page hero ── */
.about-hero {
  position: relative;
  z-index: 1;
  padding: 7rem 0 4.5rem;
  text-align: center;
}

.about-hero-inner {
  max-width: 760px;
  margin: 0 auto;
}

.about-hero h1 {
  margin: 0.75rem 0 1.2rem;
}

.about-hero .lead {
  font-size: 1.05rem;
  line-height: 1.78;
  color: var(--text-muted);
}

/* ── Mission / Vision / Values ── */
.mvv-section {
  padding-top: 2rem;
  background: var(--bg);
}

.mvv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1.4rem;
  align-items: start;
}

.mvv-card {
  background: white;
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 2rem 1.8rem;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

.mvv-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  border-radius: var(--radius) var(--radius) 0 0;
}

.mvv-card:nth-child(1)::before { background: linear-gradient(90deg, #8b5cf6, #6366f1); }
.mvv-card:nth-child(2)::before { background: linear-gradient(90deg, #0ea5e9, #22d3ee); }
.mvv-card:nth-child(3)::before { background: linear-gradient(90deg, #ec4899, #f9a8d4); }

.mvv-card:hover {
  transform: translateY(-6px);
  border-color: rgba(124, 58, 237, 0.25);
  box-shadow: 0 20px 48px rgba(124, 58, 237, 0.12);
}

.mvv-icon {
  font-size: 2rem;
  margin-bottom: 0.9rem;
  display: block;
}

.mvv-card h3 {
  font-size: 1.2rem;
  color: var(--text);
  margin-bottom: 0.75rem;
}

.mvv-card > p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* Values list inside the card */
.values-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 0.25rem;
}

.values-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.values-icon {
  font-size: 1.15rem;
  flex-shrink: 0;
  margin-top: 0.05rem;
}

.values-list strong {
  display: block;
  font-size: 0.9rem;
  color: var(--text);
  margin-bottom: 0.15rem;
  font-weight: 700;
}

.values-list p {
  font-size: 0.83rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ── Platform banner ── */
.section-dark {
  background: var(--bg-soft);
}

.platform-banner {
  background: linear-gradient(160deg, #faf8ff 0%, #f0ebff 50%, #e8f6ff 100%);
  position: relative;
  overflow: hidden;
}

.platform-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(109, 40, 217, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(109, 40, 217, 0.035) 1px, transparent 1px);
  background-size: 44px 44px;
  pointer-events: none;
}

.platform-banner .section-heading p {
  max-width: 680px;
  font-size: 1rem;
  line-height: 1.75;
}

/* ── Features grid ── */
.features-section {
  background: var(--bg);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}

.feature-card {
  background: white;
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 1.8rem 1.5rem;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  border-radius: 0 0 var(--radius) var(--radius);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.feature-card:nth-child(1)::before { background: linear-gradient(90deg, #0ea5e9, #38bdf8); }
.feature-card:nth-child(2)::before { background: linear-gradient(90deg, #10b981, #34d399); }
.feature-card:nth-child(3)::before { background: linear-gradient(90deg, #f97316, #fb923c); }
.feature-card:nth-child(4)::before { background: linear-gradient(90deg, #ec4899, #f9a8d4); }
.feature-card:nth-child(5)::before { background: linear-gradient(90deg, #8b5cf6, #a78bfa); }
.feature-card:nth-child(6)::before { background: linear-gradient(90deg, #10b981, #34d399); }
.feature-card:nth-child(7)::before { background: linear-gradient(90deg, #6366f1, #818cf8); }

.feature-card:hover {
  transform: translateY(-6px);
  border-color: rgba(124, 58, 237, 0.22);
  box-shadow: 0 20px 48px rgba(124, 58, 237, 0.12);
}

.feature-card:hover::before { opacity: 1; }

.feature-card-wide {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto;
  column-gap: 1.2rem;
}

.feature-card-wide .feature-icon {
  grid-row: 1 / 3;
  align-self: start;
  margin-bottom: 0;
}

.feature-card-wide h3 {
  align-self: end;
}

.feature-icon {
  width: 50px;
  height: 50px;
  border-radius: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 1.1rem;
}

.icon-blue   { background: linear-gradient(135deg, rgba(14,165,233,0.1), rgba(56,189,248,0.07)); border: 1px solid rgba(14,165,233,0.18); }
.icon-green  { background: linear-gradient(135deg, rgba(16,185,129,0.1), rgba(52,211,153,0.07)); border: 1px solid rgba(16,185,129,0.18); }
.icon-orange { background: linear-gradient(135deg, rgba(249,115,22,0.1), rgba(251,146,60,0.07)); border: 1px solid rgba(249,115,22,0.18); }
.icon-pink   { background: linear-gradient(135deg, rgba(236,72,153,0.1), rgba(249,168,212,0.07)); border: 1px solid rgba(236,72,153,0.18); }
.icon-purple { background: linear-gradient(135deg, rgba(139,92,246,0.1), rgba(167,139,250,0.07)); border: 1px solid rgba(139,92,246,0.18); }
.icon-violet { background: linear-gradient(135deg, rgba(109,40,217,0.1), rgba(168,85,247,0.07)); border: 1px solid rgba(109,40,217,0.16); }

.feature-card h3 {
  font-size: 1.05rem;
  color: var(--text);
  margin-bottom: 0.5rem;
}

.feature-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.68;
}

/* ── Empower section ── */
.empower-section {
  background: linear-gradient(160deg, #faf8ff 0%, #f0ebff 50%, #e8f6ff 100%);
}

.empower-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.empower-text h2 {
  margin: 0.75rem 0 1rem;
}

.empower-text > p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.75;
  margin-bottom: 1.6rem;
}

.empower-active,
.empower-upcoming {
  margin-top: 1.2rem;
}

.active-countries {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.6rem;
}

.country-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: rgba(109, 40, 217, 0.07);
  border: 1px solid rgba(109, 40, 217, 0.18);
  color: var(--primary);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 0.3rem 0.75rem;
  border-radius: 999px;
}

.country-chip-muted {
  background: rgba(107, 114, 128, 0.06);
  border-color: rgba(107, 114, 128, 0.16);
  color: var(--text-muted);
}

.empower-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.empower-stat-card {
  background: white;
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 1.5rem 1.2rem;
  text-align: center;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

.empower-stat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  border-radius: var(--radius) var(--radius) 0 0;
}

.empower-stat-card:nth-child(1)::before { background: linear-gradient(90deg, #8b5cf6, #6366f1); }
.empower-stat-card:nth-child(2)::before { background: linear-gradient(90deg, #0ea5e9, #22d3ee); }
.empower-stat-card:nth-child(3)::before { background: linear-gradient(90deg, #10b981, #34d399); }
.empower-stat-card:nth-child(4)::before { background: linear-gradient(90deg, #f59e0b, #fbbf24); }

.empower-stat-card:hover {
  transform: translateY(-5px);
  border-color: rgba(124, 58, 237, 0.24);
  box-shadow: 0 12px 32px rgba(124, 58, 237, 0.1);
}

.empower-stat-num {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  background: var(--grad-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.03em;
}

.empower-stat-label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 0.3rem;
}

/* ── Countries ticker ── */
.countries-section {
  overflow: hidden;
  background: var(--bg);
}

.ticker-wrap {
  position: relative;
  overflow: hidden;
  margin-top: 2rem;
  padding: 1rem 0;
  border-top: 1px solid rgba(109, 40, 217, 0.08);
  border-bottom: 1px solid rgba(109, 40, 217, 0.08);
  background: var(--bg-soft);
}

.ticker-wrap::before,
.ticker-wrap::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}

.ticker-wrap::before {
  left: 0;
  background: linear-gradient(90deg, var(--bg-soft), transparent);
}

.ticker-wrap::after {
  right: 0;
  background: linear-gradient(-90deg, var(--bg-soft), transparent);
}

.ticker {
  display: flex;
  gap: 0;
  width: max-content;
  animation: tickerScroll 120s linear infinite;
}

.ticker span {
  white-space: nowrap;
  padding: 0.35rem 1.2rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-muted);
  border-right: 1px solid rgba(109, 40, 217, 0.1);
  transition: color 0.2s;
}

.ticker span:hover {
  color: var(--primary);
}

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

/* ── About page footer ── */
.about-footer {
  background: #0d0820;
  position: relative;
  overflow: hidden;
}

.about-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(139,92,246,0.5), rgba(14,165,233,0.5), transparent);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  padding: 2rem 0;
}

.footer-links {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.footer-links a {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links a:hover { color: rgba(255, 255, 255, 0.9); }

.footer-copy {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.32);
}

/* ── Responsive ── */
@media (max-width: 1000px) {
  .mvv-grid {
    grid-template-columns: 1fr 1fr;
  }

  .mvv-grid .mvv-card:last-child {
    grid-column: 1 / -1;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .feature-card-wide {
    grid-column: 1 / -1;
    display: block;
  }

  .feature-card-wide .feature-icon {
    margin-bottom: 1.1rem;
  }

  .empower-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

@media (max-width: 700px) {
  .mvv-grid {
    grid-template-columns: 1fr;
  }

  .mvv-grid .mvv-card:last-child {
    grid-column: auto;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .feature-card-wide {
    grid-column: auto;
  }

  .empower-stats {
    grid-template-columns: 1fr 1fr;
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
  }

  .footer-links {
    justify-content: center;
  }

  .nav .nav-links {
    display: none;
  }
}

@media (max-width: 480px) {
  .empower-stats {
    grid-template-columns: 1fr 1fr;
  }

  .about-hero {
    padding: 5rem 0 2.5rem;
  }
}

/* ── About page CTA box ── */
.cta-box {
  background: var(--grad-hero);
  border-radius: 2rem;
  padding: 4rem 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  max-width: 780px;
  margin: 0 auto;
}

.cta-glow {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 30% 50%, rgba(255,255,255,0.1) 0%, transparent 60%),
    radial-gradient(circle at 70% 50%, rgba(255,255,255,0.08) 0%, transparent 60%);
  pointer-events: none;
}

.cta-box .badge {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.38);
  color: white;
}

.cta-box h2 {
  color: white;
  margin: 0.75rem 0 1rem;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  text-shadow: 0 2px 12px rgba(0,0,0,0.15);
  position: relative;
}

.cta-box p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 2rem;
  position: relative;
}

.cta-box .btn-primary {
  background: white;
  color: var(--primary);
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
  position: relative;
}

.cta-box .btn-primary:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,0.22);
}

/* ── About footer brand ── */
.brand-footer {
  color: white;
}
