@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("./fonts/manrope-latin-400-normal.woff2") format("woff2");
}

@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("./fonts/manrope-latin-600-normal.woff2") format("woff2");
}

@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("./fonts/manrope-latin-700-normal.woff2") format("woff2");
}

:root {
  --ink: #0f172a;
  --charcoal: #111827;
  --mint: #0ea5e9;
  --gold: #fbbf24;
  --sand: #e9edf5;
  --card: rgba(17, 24, 39, 0.72);
  --line: rgba(255, 255, 255, 0.12);
  --radius: 18px;
  --shadow: 0 15px 35px rgba(0, 0, 0, 0.18);
  --shadow-soft: 0 15px 35px rgba(0, 0, 0, 0.08);
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", system-ui, -apple-system, sans-serif;
  color: #e5e7eb;
  background: radial-gradient(150% 120% at 20% 20%, rgba(14, 165, 233, 0.2), transparent),
    radial-gradient(140% 100% at 80% 0%, rgba(251, 191, 36, 0.18), transparent),
    #0b1020;
  min-height: 100vh;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover,
a:focus-visible {
  color: var(--gold);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(18px);
  background: rgba(11, 16, 32, 0.9);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 4vw;
}

.blink-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  display: inline-block;
  background: #ef4444;
  box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.45);
  animation: blink 1.1s infinite;
}

@keyframes blink {
  0%, 50%, 100% { opacity: 1; }
  25%, 75% { opacity: 0; }
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #fff;
}

.brand--logo {
  background: transparent;
  border: 0;
  padding: 0;
  color: rgba(233, 241, 255, 0.95);
}

.brand__logo {
  display: block;
  height: 40px;
  width: auto;
}

.brand--logo:hover {
  opacity: 0.9;
}

.brand__mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #0ea5e9, #fbbf24);
  color: #0b1020;
  border-radius: 12px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.brand__name {
  font-weight: 700;
  letter-spacing: -0.01em;
}

.brand__tag {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.75);
}

.nav {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 20px;
}

.nav a {
  font-weight: 700;
  line-height: 1.3;
  padding: 8px 12px;
  border-radius: 10px;
  transition: all 0.2s ease;
}

.nav a:hover {
  background: rgba(255, 255, 255, 0.08);
}

.nav-dropdown {
  position: relative;
}

.nav-drop-btn {
  display: inline-flex;
  align-items: center;
  background: transparent;
  border: none;
  color: #e5e7eb;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.3;
  padding: 8px 12px;
  border-radius: 10px;
  cursor: pointer;
  transition: background 0.2s ease;
}

.nav-drop-btn:hover,
.nav-dropdown.open .nav-drop-btn {
  background: rgba(255, 255, 255, 0.08);
}

.nav-drop-menu {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  min-width: 260px;
  background: rgba(11, 16, 32, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  box-shadow: 0 18px 30px rgba(0,0,0,0.3);
  padding: 8px;
  display: none;
  z-index: 20;
}

.nav-dropdown.open .nav-drop-menu {
  display: grid;
  gap: 4px;
}
.nav-dropdown-live {
  position: relative;
}
.nav-dropdown-live .nav-drop-menu {
  pointer-events: auto;
}
.nav-dropdown-live:hover .nav-drop-menu,
.nav-dropdown-live.open .nav-drop-menu {
  display: grid;
}

.nav-drop-menu a {
  padding: 8px 10px;
  border-radius: 8px;
  color: #e5e7eb;
  font-weight: 600;
}

.nav-drop-menu a:hover {
  background: rgba(255, 255, 255, 0.08);
}

.nav-drop-divider {
  padding: 8px 10px 4px;
  color: #94a3b8;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.nav-mega {
  min-width: 680px;
  padding: 14px;
}

.mega-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 12px;
}

.mega-sections {
  display: grid;
  gap: 8px;
}

.mega-accordion {
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  background: rgba(255,255,255,0.02);
  overflow: hidden;
}

.mega-head {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  background: transparent;
  border: none;
  color: #e5e7eb;
  font-weight: 800;
  cursor: pointer;
}

.mega-icon {
  width: 24px;
  height: 24px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  background: #0f172a;
  border: 1px solid rgba(255,255,255,0.12);
  font-size: 14px;
}

.mega-body {
  display: none;
  padding: 6px 12px 12px;
  background: rgba(255,255,255,0.03);
  border-top: 1px solid rgba(255,255,255,0.06);
}

.mega-body a {
  display: block;
  padding: 8px;
  border-radius: 10px;
  color: #e5e7eb;
  font-weight: 600;
}

.mega-body a:hover {
  background: rgba(255,255,255,0.08);
}

.mega-accordion.open .mega-body {
  display: block;
}

.mega-accordion.open .mega-icon {
  background: #10b981;
  border-color: rgba(16,185,129,0.5);
}

.mega-feature {
  background: linear-gradient(160deg, rgba(14,165,233,0.14), rgba(255,255,255,0.04));
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 14px;
  display: grid;
  gap: 8px;
}

.mega-title {
  margin: 0;
  color: #e5e7eb;
  font-weight: 800;
  font-size: 16px;
}

.mega-copy {
  margin: 0;
  color: #cbd5e1;
  font-size: 14px;
  line-height: 1.4;
}

.nav-toggle {
  display: none;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  padding: 10px 14px;
  font-weight: 600;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 32px;
  padding: 72px 4vw 40px;
  align-items: center;
}

.hero__content h1 {
  font-size: clamp(38px, 5vw, 56px);
  letter-spacing: -0.02em;
  margin: 8px 0 12px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 12px;
  color: var(--gold);
  font-weight: 700;
}

.lead,
.section__lead {
  color: #cbd5e1;
  max-width: 720px;
}

.hero__actions {
  display: flex;
  gap: 12px;
  margin: 24px 0 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 18px;
  border-radius: 12px;
  font-weight: 700;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.btn--primary {
  background: linear-gradient(135deg, #0ea5e9, #22d3ee);
  color: #0b1020;
  box-shadow: var(--shadow-soft);
}

.btn--primary:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow);
}

.btn--ghost {
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #e5e7eb;
  background: rgba(255, 255, 255, 0.04);
}

.trust-grid {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 8px 12px;
  padding: 0;
  margin: 28px 0 0;
  color: #94a3b8;
  font-weight: 600;
}

.hero__panel {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 24px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.hero__panel::before {
  content: "";
  position: absolute;
  inset: -30% 10% auto auto;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(34, 211, 238, 0.35), transparent 60%);
  filter: blur(10px);
}

.panel__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(34, 211, 238, 0.1);
  color: #67e8f9;
  border: 1px solid rgba(103, 232, 249, 0.4);
  padding: 10px 14px;
  border-radius: 12px;
  font-weight: 700;
}

.panel__stat {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.panel__stat .label {
  color: #94a3b8;
  font-size: 13px;
  display: block;
}

.panel__stat .value {
  font-weight: 700;
  color: #e2e8f0;
}

.panel__cta {
  display: inline-flex;
  margin-top: 20px;
  color: #0b1020;
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
  padding: 12px 16px;
  border-radius: 12px;
  font-weight: 700;
  box-shadow: var(--shadow-soft);
}

.fund-panel {
  display: grid;
  gap: 12px;
}

.fund-tabs {
  display: grid;
  grid-auto-flow: column;
  gap: 8px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 6px;
}

.fund-tab {
  background: transparent;
  color: #e2e8f0;
  border: none;
  border-radius: 10px;
  padding: 10px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease;
}

.fund-tab.active {
  background: rgba(34, 211, 238, 0.16);
  color: #67e8f9;
}

.fund-table {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  overflow: hidden;
}

.fund-row {
  display: grid;
  grid-template-columns: 1.4fr 0.6fr 1fr;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
}

.fund-head {
  background: rgba(255, 255, 255, 0.03);
  color: #cbd5e1;
  font-weight: 700;
}

.fund-body .fund-row:nth-child(odd) {
  background: rgba(255, 255, 255, 0.02);
}

.fund-body .fund-row:nth-child(even) {
  background: rgba(255, 255, 255, 0.01);
}

.fund-name {
  display: grid;
  gap: 2px;
}

.fund-name small {
  color: #94a3b8;
  font-size: 12px;
}

.fund-cagr {
  font-weight: 700;
}

.fund-cagr.positive {
  color: #67e8f9;
}

.fund-cagr.negative {
  color: #f87171;
}

.spark {
  width: 100%;
  height: 44px;
}

.panel__fineprint {
  color: #94a3b8;
  font-size: 12px;
}

.poverty-banner {
  margin-top: 14px;
  padding: 12px 14px;
  background: rgba(248, 113, 113, 0.08);
  border: 1px solid rgba(248, 113, 113, 0.4);
  border-radius: 12px;
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
  overflow: visible;
}

.poverty-number {
  font-weight: 800;
  color: #f87171;
  font-size: 28px;
  letter-spacing: 0.03em;
  line-height: 1.1;
  transform-origin: left center;
  white-space: nowrap;
}

.poverty-text {
  color: #fca5a5;
  font-weight: 700;
  font-size: 26px;
  line-height: 1.3;
  white-space: normal;
}

.poverty-link {
  color: #fef2f2;
  font-weight: 800;
  text-decoration: underline;
}

@media (max-width: 640px) {
  .fund-row {
    grid-template-columns: 1fr;
    gap: 6px;
  }
  .fund-head {
    display: none;
  }
  .spark {
    height: 32px;
  }
}

.skeleton {
  display: inline-block;
  height: 12px;
  background: linear-gradient(90deg, rgba(255,255,255,0.08), rgba(255,255,255,0.14), rgba(255,255,255,0.08));
  background-size: 200% 100%;
  border-radius: 999px;
  animation: shimmer 1.4s ease infinite;
}

.skeleton.w-60 { width: 60%; }
.skeleton.w-30 { width: 30%; }
.skeleton.w-80 { width: 80%; }

@keyframes shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

.section {
  padding: 70px 4vw;
}

.section__heading h2 {
  margin: 6px 0 8px;
  font-size: clamp(28px, 3vw, 40px);
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
  margin-top: 28px;
}

.card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow-soft);
  transition: transform 0.18s ease, border-color 0.18s ease;
}

.card:hover {
  transform: translateY(-4px);
  border-color: rgba(251, 191, 36, 0.4);
}

.card__icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  background: rgba(251, 191, 36, 0.15);
  border-radius: 12px;
  font-size: 20px;
}

.card h3 {
  margin: 12px 0 8px;
  font-size: 20px;
}

.card ul {
  list-style: none;
  padding: 0;
  margin: 10px 0 0;
  color: #cbd5e1;
}

.card ul li {
  padding: 4px 0;
}

.chip {
  display: inline-flex;
  align-items: center;
  margin-top: 10px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(14, 165, 233, 0.16);
  color: #7dd3fc;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.card__cta {
  display: inline-flex;
  margin-top: 10px;
  color: #0b1020;
  background: linear-gradient(135deg, #0ea5e9, #22d3ee);
  padding: 10px 12px;
  border-radius: 10px;
  font-weight: 700;
  box-shadow: var(--shadow-soft);
  text-decoration: none;
}

.split {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  align-items: stretch;
}

.list {
  list-style: none;
  padding: 0;
  margin: 16px 0 0;
  color: #cbd5e1;
}

.list li {
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.feature-card {
  background: linear-gradient(160deg, rgba(14, 165, 233, 0.12), rgba(15, 23, 42, 0.95));
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.feature-card__header,
.feature-card__footer {
  padding: 16px 18px;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.04);
}

.feature-card__body {
  padding: 6px 18px 18px;
}

.feature-row {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.tag {
  background: rgba(251, 191, 36, 0.14);
  color: #fbbf24;
  padding: 6px 10px;
  border-radius: 10px;
  font-weight: 700;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
  margin-top: 24px;
}

.timeline__item {
  position: relative;
  padding: 18px 16px 16px 22px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--radius);
}

.timeline__item .dot {
  position: absolute;
  left: 12px;
  top: 18px;
  width: 10px;
  height: 10px;
  background: linear-gradient(135deg, #0ea5e9, #fbbf24);
  border-radius: 50%;
  box-shadow: 0 0 0 6px rgba(14, 165, 233, 0.15);
}

.accent {
  background: radial-gradient(120% 120% at 15% 20%, rgba(251, 191, 36, 0.1), transparent),
    rgba(17, 24, 39, 0.75);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.insight-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 16px;
  margin-top: 22px;
}

.insight {
  padding: 18px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.contact-wrap {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 22px;
  margin-top: 22px;
}

.contact-form {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 18px;
  padding: 18px;
  display: grid;
  gap: 12px;
}

.contact-form label {
  display: grid;
  gap: 6px;
  font-weight: 600;
  color: #e2e8f0;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
  color: #e5e7eb;
  font-size: 15px;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: 1px solid rgba(14, 165, 233, 0.6);
  border-color: rgba(14, 165, 233, 0.5);
}

.form-hint {
  color: #94a3b8;
  margin: 4px 0 0;
  font-size: 14px;
}

.form-status {
  min-height: 24px;
  font-weight: 700;
  color: #67e8f9;
}

.contact-card {
  background: linear-gradient(160deg, rgba(14, 165, 233, 0.12), rgba(255, 255, 255, 0.04));
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 18px;
  box-shadow: var(--shadow-soft);
  display: grid;
  gap: 14px;
}

.contact-card__item {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 12px;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.contact-card .label {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #cbd5e1;
}

.footer {
  padding: 30px 4vw 34px;
  background: #0a0f1f;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  align-items: center;
}

.footer__links {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.footer__meta {
  color: #94a3b8;
  font-size: 14px;
}

.section__lead {
  margin-top: 6px;
}

@media (max-width: 920px) {
  .hero,
  .contact-wrap {
    grid-template-columns: 1fr;
  }

  .nav {
    position: absolute;
    top: 64px;
    right: 4vw;
    background: rgba(11, 16, 32, 0.96);
    padding: 14px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.07);
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    min-width: 220px;
    transform: scale(0.98);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.18s ease, transform 0.18s ease;
  }

  body.nav-open #nav {
    opacity: 1;
    pointer-events: auto;
    transform: scale(1);
  }

  .nav-toggle {
    display: inline-flex;
  }
}

@media (max-width: 540px) {
  .site-header {
    flex-wrap: wrap;
    gap: 12px;
  }

  .brand__logo {
    height: 34px;
  }

  .hero__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    width: 100%;
  }
}
