:root {
  --bg: #050714;
  --bg-elevated: rgba(7, 11, 30, 0.96);
  --bg-soft: rgba(10, 16, 46, 0.96);
  --accent: #25c3ff;
  --accent-soft: rgba(37, 195, 255, 0.16);
  --accent-strong: #00f0b5;
  --border-subtle: rgba(255, 255, 255, 0.08);
  --text-main: #f7f8ff;
  --text-muted: #a2a7c4;
  --danger: #ff4f6d;
  --radius-lg: 18px;
  --radius-md: 12px;
  --radius-pill: 999px;
  --shadow-soft: 0 22px 60px rgba(0, 0, 0, 0.45);
  --blur: 18px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Inter", "Segoe UI",
    sans-serif;
  color: var(--text-main);
  background:
    radial-gradient(circle at top left, #1c3158 0, transparent 55%),
    radial-gradient(circle at top right, #06223b 0, transparent 55%),
    radial-gradient(circle at bottom, #122242 0, transparent 55%),
    var(--bg);
  background-attachment: fixed;
}

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

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

.container {
  width: min(1120px, 100% - 32px);
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(var(--blur));
  background: linear-gradient(
    to bottom,
    rgba(5, 7, 20, 0.96),
    rgba(5, 7, 20, 0.84),
    transparent
  );
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-block: 14px;
}

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

.logo-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 12px;
  background: radial-gradient(circle at 25% 0, #25c3ff, #016bff);
  color: #020412;
  font-weight: 800;
  font-size: 20px;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.16),
    0 10px 26px rgba(0, 0, 0, 0.7);
}

.logo-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.logo-title {
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 14px;
}

.logo-subtitle {
  font-size: 11px;
  color: var(--text-muted);
}

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

.main-nav a {
  position: relative;
  color: var(--text-muted);
  padding-block: 6px;
  transition: color 0.2s ease;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), var(--accent-strong));
  transition: width 0.2s ease;
}

.main-nav a:hover {
  color: var(--text-main);
}

.main-nav a:hover::after {
  width: 100%;
}

.lang-switch {
  display: flex;
  gap: 6px;
  padding: 3px;
  border-radius: 999px;
  background: rgba(12, 16, 40, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.lang-btn {
  border: none;
  background: transparent;
  color: var(--text-muted);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}

.lang-btn.active {
  background: linear-gradient(90deg, var(--accent), var(--accent-strong));
  color: #020412;
  font-weight: 600;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: transparent;
  border: none;
  padding: 6px;
  cursor: pointer;
}

.nav-toggle span {
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: #fff;
}

.hero {
  padding-block: 40px 60px;
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 2.2fr);
  gap: 28px;
  align-items: center;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--accent);
  margin-bottom: 12px;
}

.hero-kicker::before {
  content: "";
  width: 16px;
  height: 1px;
  background: var(--accent);
}

.hero-title {
  font-size: clamp(32px, 5vw, 40px);
  line-height: 1.1;
  margin: 0 0 14px;
}

.hero-text {
  color: var(--text-muted);
  max-width: 560px;
  font-size: 15px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  border: 1px solid transparent;
  cursor: pointer;
  transition:
    background 0.18s ease,
    color 0.18s ease,
    border-color 0.18s ease,
    transform 0.1s ease,
    box-shadow 0.1s ease;
}

.btn.primary {
  background: linear-gradient(90deg, var(--accent), var(--accent-strong));
  color: #020412;
  box-shadow:
    0 10px 30px rgba(0, 0, 0, 0.6),
    0 0 0 1px rgba(255, 255, 255, 0.16);
}

.btn.ghost {
  background: rgba(8, 13, 40, 0.9);
  border-color: rgba(255, 255, 255, 0.18);
  color: var(--text-main);
}

.btn.full-width {
  width: 100%;
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.6);
}

.btn:active {
  transform: translateY(0);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.7);
}

.hero-metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 28px;
}

.metric {
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(7, 10, 32, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.06);
  min-width: 150px;
}

.metric-value {
  font-size: 20px;
  font-weight: 700;
}

.metric-label {
  margin-top: 4px;
  font-size: 12px;
  color: var(--text-muted);
}

.hero-card {
  position: relative;
  border-radius: 22px;
  padding: 22px 20px 20px;
  background:
    radial-gradient(circle at top left, rgba(0, 240, 181, 0.18), transparent),
    radial-gradient(circle at bottom right, rgba(37, 195, 255, 0.16), transparent),
    rgba(6, 9, 32, 0.98);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 0 0, rgba(255, 255, 255, 0.1), transparent 55%);
  mix-blend-mode: soft-light;
  opacity: 0.4;
  pointer-events: none;
}

.hero-card h2 {
  margin: 0 0 14px;
  font-size: 18px;
}

.hero-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
  z-index: 1;
}

.hero-list li {
  position: relative;
  padding: 9px 10px 9px 26px;
  border-radius: 12px;
  background: rgba(3, 7, 24, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 13px;
  color: var(--text-muted);
}

.hero-list li::before {
  content: "";
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: radial-gradient(circle, var(--accent-strong), var(--accent));
  box-shadow: 0 0 0 3px rgba(37, 195, 255, 0.25);
}

.section {
  padding-block: 40px;
}

.section-alt {
  position: relative;
}

.section-alt::before {
  content: "";
  position: absolute;
  inset-inline: 0;
  inset-block: 0;
  background: linear-gradient(
    135deg,
    rgba(9, 16, 48, 0.96),
    rgba(6, 11, 32, 0.96)
  );
  opacity: 0.98;
  z-index: -1;
}

.section-center {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.simple-card {
  max-width: 520px;
  width: 100%;
  margin-inline: auto;
  padding: 20px 18px 18px;
  border-radius: var(--radius-lg);
  background: var(--bg-elevated);
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-soft);
}

.simple-card .section-title {
  margin-bottom: 8px;
}

.simple-card .section-lead {
  margin-bottom: 6px;
}

.section-title {
  font-size: 24px;
  margin: 0 0 10px;
}

.section-lead {
  margin: 0 0 18px;
  font-size: 15px;
  color: var(--text-muted);
}

.section-lead.center {
  text-align: center;
  max-width: 620px;
  margin-inline: auto;
}

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 2.2fr);
  gap: 28px;
  align-items: flex-start;
}

.pillars {
  display: grid;
  gap: 12px;
}

.pillar-card {
  padding: 14px 14px 12px;
  border-radius: var(--radius-md);
  background: var(--bg-elevated);
  border: 1px solid var(--border-subtle);
}

.pillar-card h3 {
  margin: 0 0 6px;
  font-size: 15px;
}

.pillar-card p {
  margin: 0;
  font-size: 13px;
  color: var(--text-muted);
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 24px;
}

/* Reports: center cards and avoid empty column */
#reports .cards-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

#reports .card {
  text-align: center;
}

#reports .card p {
  margin-inline: auto;
}

.card {
  padding: 16px 16px 14px;
  border-radius: var(--radius-lg);
  background: var(--bg-elevated);
  border: 1px solid var(--border-subtle);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.6);
}

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

.card p {
  margin: 0;
  font-size: 13px;
  color: var(--text-muted);
}

.timeline {
  display: grid;
  gap: 16px;
  margin-top: 24px;
}

.timeline-item {
  position: relative;
  padding: 14px 16px 12px 18px;
  border-radius: var(--radius-md);
  background: var(--bg-elevated);
  border: 1px solid var(--border-subtle);
}

.timeline-badge {
  position: absolute;
  left: -10px;
  top: 14px;
  padding: 3px 9px;
  border-radius: 999px;
  background: var(--accent-soft);
  border: 1px solid rgba(37, 195, 255, 0.7);
  color: var(--accent);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.timeline-item h3 {
  margin: 0 0 6px;
  font-size: 15px;
}

.timeline-item p {
  margin: 0;
  font-size: 13px;
  color: var(--text-muted);
}

.cta-panel {
  margin-top: 22px;
  padding: 16px 16px 14px;
  border-radius: var(--radius-md);
  background: var(--bg-soft);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.cta-panel h3 {
  margin: 0 0 6px;
}

.cta-panel p {
  margin: 0 0 12px;
  color: var(--text-muted);
  font-size: 13px;
}

.support-list {
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
  display: grid;
  gap: 12px;
}

.support-list li {
  padding: 10px 0;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.1);
  font-size: 13px;
  color: var(--text-muted);
}

.support-label {
  display: block;
  font-size: 14px;
  color: var(--text-main);
  margin-bottom: 3px;
}

.donate-card {
  padding: 16px 16px 14px;
  border-radius: var(--radius-lg);
  background: var(--bg-elevated);
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-soft);
}

.donate-card h3 {
  margin: 0 0 8px;
}

.donate-note {
  margin: 0 0 12px;
  font-size: 12px;
  color: var(--text-muted);
}

.donate-grid {
  display: grid;
  gap: 10px;
}

.donate-block {
  padding: 9px 10px;
  border-radius: var(--radius-md);
  background: rgba(11, 16, 40, 0.98);
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 13px;
}

.donate-label {
  display: block;
  margin-bottom: 4px;
  font-size: 13px;
  color: var(--text-muted);
}

.donate-value {
  font-family: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, Monaco,
    Consolas, "Liberation Mono", "Courier New", monospace;
  font-size: 12px;
}

.contact-list {
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
  display: grid;
  gap: 12px;
}

.contact-label {
  display: block;
  font-size: 13px;
  color: var(--text-muted);
}

.contact-value {
  font-size: 14px;
}

.contact-form {
  padding: 16px 16px 14px;
  border-radius: var(--radius-lg);
  background: var(--bg-elevated);
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-soft);
}

.contact-form h3 {
  margin: 0 0 10px;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 10px;
}

.form-row label {
  font-size: 13px;
}

.form-row input,
.form-row select,
.form-row textarea {
  padding: 8px 10px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(9, 13, 34, 0.95);
  color: var(--text-main);
  font: inherit;
  font-size: 13px;
  resize: vertical;
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 1px rgba(37, 195, 255, 0.7);
}

.form-note {
  margin: 8px 0 0;
  font-size: 11px;
  color: var(--text-muted);
}

.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-block: 18px;
  background: radial-gradient(circle at top, rgba(0, 0, 0, 0.74), #02030b);
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 12px;
  color: var(--text-muted);
}

.footer-main {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.footer-logo .logo-mark {
  width: 26px;
  height: 26px;
  font-size: 16px;
}

.footer-logo .logo-title {
  font-size: 12px;
}

.footer-text {
  margin: 4px 0 0;
}

.footer-meta {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
}

@media (max-width: 960px) {
  .hero-inner,
  .two-column {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-card {
    order: -1;
  }

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

  #reports .cards-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .main-nav {
    position: absolute;
    inset-inline: 0;
    top: 100%;
    padding: 10px 16px 14px;
    background: rgba(5, 7, 20, 0.98);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    flex-direction: column;
    gap: 8px;
    transform-origin: top;
    transform: scaleY(0.7);
    opacity: 0;
    pointer-events: none;
    transition:
      opacity 0.16s ease,
      transform 0.16s ease;
  }

  .main-nav.open {
    opacity: 1;
    transform: scaleY(1);
    pointer-events: auto;
  }

  .nav-toggle {
    display: flex;
  }

  .header-inner {
    padding-block: 10px;
  }

  .hero {
    padding-top: 20px;
  }

  .hero-inner {
    gap: 20px;
  }

  .hero-metrics {
    gap: 10px;
  }

  .metric {
    flex: 1 1 100px;
  }

  .section {
    padding-block: 30px;
  }

  .cards-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  #reports .cards-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .footer-main {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 520px) {
  .container {
    width: min(100% - 24px, 480px);
  }

  .hero-title {
    font-size: 28px;
  }

  .hero-metrics {
    flex-direction: column;
  }
}

