/* ===============================================
   GO & SOW | ІДИ ТА СІЙ — Landing Page Styles
   Design: Dark premium, green/gold accent
   =============================================== */

/* ---- CSS VARIABLES ---- */
:root {
  --bg-dark: #080d12;
  --bg-card: #0f1720;
  --bg-card-hover: #141f2e;
  --bg-section: #0b1219;

  --gold: #f4c843;
  --gold-dim: #c9a22a;
  --green: #4ade80;
  --green-dim: #22c55e;
  --green-dark: #166534;

  --text-primary: #f0f4f8;
  --text-secondary: #8ba0b4;
  --text-muted: #4a6278;

  --border: rgba(255, 255, 255, 0.06);
  --border-hover: rgba(74, 222, 128, 0.3);

  --gradient-hero: radial-gradient(ellipse at 50% 0%, rgba(74, 222, 128, 0.08) 0%, transparent 65%),
                   radial-gradient(ellipse at 80% 80%, rgba(244, 200, 67, 0.05) 0%, transparent 50%);
  --gradient-gold: linear-gradient(135deg, #f4c843, #e8a62a);
  --gradient-green: linear-gradient(135deg, #4ade80, #22c55e);
  --gradient-text: linear-gradient(135deg, #f4c843 0%, #4ade80 100%);

  --radius: 16px;
  --radius-sm: 10px;
  --shadow-card: 0 4px 32px rgba(0, 0, 0, 0.4);
  --shadow-glow-green: 0 0 40px rgba(74, 222, 128, 0.15);
  --shadow-glow-gold: 0 0 40px rgba(244, 200, 67, 0.15);

  --font-display: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;

  --nav-height: 72px;
}

/* ---- RESET & BASE ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  font-family: var(--font-body);
  background: var(--bg-dark);
  color: var(--text-primary);
  overflow-x: hidden;
  line-height: 1.6;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; }

/* ---- TYPOGRAPHY ---- */
.section-label {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 16px;
}
.section-label.light { color: var(--gold); }

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--text-primary);
  margin-bottom: 48px;
  text-align: center;
}
.section-title em {
  font-style: normal;
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.section-title.light { color: #ffffff; }

/* ---- LAYOUT ---- */
.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 32px;
}

.section {
  padding: 96px 0;
  position: relative;
}
.section-dark {
  background: var(--bg-section);
}

/* ---- NAVIGATION ---- */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-height);
  background: rgba(8, 13, 18, 0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: all 0.3s ease;
}
#navbar.scrolled {
  background: rgba(8, 13, 18, 0.97);
  box-shadow: 0 4px 32px rgba(0,0,0,0.5);
}
.nav-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 32px;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 48px;
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 800;
  flex-shrink: 0;
  text-decoration: none;
  color: inherit;
}
.logo-go, .title-go { color: var(--gold); }
.logo-amp, .title-amp { color: var(--text-muted); margin: 0 2px; }
.logo-sow, .title-sow { color: var(--green); }
.logo-ua { margin-left: 8px; color: var(--text-primary); }

.mobile-menu-toggle {
  display: none;
}

.nav-menu-wrapper {
  display: flex;
  flex: 1;
  align-items: center;
  justify-content: space-between;
}

.nav-links {
  display: flex;
  gap: 32px;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--text-primary); }

.nav-cta {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.875rem;
  padding: 10px 22px;
  border-radius: 8px;
  background: var(--gradient-gold);
  color: #0a0a0a;
  flex-shrink: 0;
  transition: transform 0.2s, box-shadow 0.2s;
}
.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(244, 200, 67, 0.35);
}

/* ---- LANGUAGE SWITCHER ---- */
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 4px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 4px;
  flex-shrink: 0;
}

.lang-btn {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 6px 13px;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  color: var(--text-muted);
  background: transparent;
  transition: color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease, transform 0.15s ease;
}

.lang-btn:hover:not(.active) {
  color: var(--text-secondary);
  background: rgba(255, 255, 255, 0.07);
}

.lang-btn.active {
  background: var(--gradient-green);
  color: #0a1a0f;
  box-shadow: 0 2px 12px rgba(74, 222, 128, 0.35);
}

.lang-btn:active { transform: scale(0.95); }

/* ---- NAV APPLY BUTTON ---- */
.nav-apply-btn {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.82rem;
  padding: 9px 16px;
  border-radius: 8px;
  border: 1px solid rgba(74, 222, 128, 0.35);
  color: var(--green);
  flex-shrink: 0;
  white-space: nowrap;
  transition: all 0.22s ease;
  text-decoration: none;
}
.nav-apply-btn:hover {
  background: var(--gradient-green);
  border-color: transparent;
  color: #0a1a0f;
  box-shadow: 0 4px 20px rgba(74, 222, 128, 0.3);
}

.nav-support-btn {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.82rem;
  padding: 9px 16px;
  border-radius: 8px;
  border: 1px solid rgba(244, 200, 67, 0.35);
  color: var(--gold);
  flex-shrink: 0;
  white-space: nowrap;
  transition: all 0.22s ease;
}
.nav-support-btn:hover,
.nav-support-btn.is-active {
  background: var(--gradient-gold);
  border-color: transparent;
  color: #0a0a0a;
  box-shadow: 0 4px 20px rgba(244, 200, 67, 0.3);
}

/* ---- HERO ---- */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background: var(--bg-dark);
}
#particles-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  display: block;
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 24px;
  padding-top: var(--nav-height);
  animation: heroFadeUp 1s ease both;
}
@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(244, 200, 67, 0.1);
  border: 1px solid rgba(244, 200, 67, 0.2);
  padding: 8px 20px;
  border-radius: 100px;
  margin-bottom: 32px;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(4rem, 12vw, 9rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
  white-space: nowrap;
}
.title-go  { color: var(--gold); }
.title-amp  { color: rgba(255,255,255,0.2); margin: 0 4px; }
.title-sow {
  background: var(--gradient-green);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.title-ua {
  display: block;
  font-size: inherit;
  color: var(--text-primary);
  font-weight: inherit;
  margin-top: 10px;
}

.hero-sub {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2.5vw, 1.6rem);
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 12px;
}
.hero-desc {
  font-size: 1rem;
  color: var(--text-secondary);
  margin-bottom: 48px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  animation: scrollBounce 2s ease-in-out infinite;
}
.scroll-arrow {
  width: 20px;
  height: 20px;
  border-right: 2px solid var(--text-muted);
  border-bottom: 2px solid var(--text-muted);
  transform: rotate(45deg);
}
@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ---- BUTTONS ---- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  padding: 14px 32px;
  border-radius: var(--radius-sm);
  background: var(--gradient-green);
  color: #0a1a0e;
  transition: transform 0.2s, box-shadow 0.2s;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow-green);
}
.btn-primary.large { font-size: 1.1rem; padding: 18px 40px; }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  padding: 14px 32px;
  border-radius: var(--radius-sm);
  background: var(--gold);
  color: #0a1a0e;
  transition: transform 0.2s, box-shadow 0.2s;
}
.btn-secondary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 20px rgba(234, 179, 8, 0.4);
}
.btn-secondary.large { font-size: 1.1rem; padding: 18px 40px; }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  padding: 14px 32px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  color: var(--text-secondary);
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.btn-ghost:hover {
  border-color: var(--border-hover);
  color: var(--green);
  background: rgba(74, 222, 128, 0.05);
}
.btn-ghost.large { font-size: 1.1rem; padding: 18px 40px; }

/* ---- PROBLEM CARDS ---- */
.problem-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}
.problem-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
  opacity: 0;
  transform: translateY(20px);
}
.problem-card.visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.6s ease, transform 0.6s ease, border-color 0.3s, box-shadow 0.3s;
}
.problem-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-hover);
  box-shadow: var(--shadow-glow-green);
}
.problem-icon { font-size: 2.5rem; margin-bottom: 16px; }
.problem-card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text-primary);
  min-height: 2.8rem;
}
.problem-card p { color: var(--text-secondary); font-size: 0.9rem; line-height: 1.7; }

/* ---- VISION ---- */
.stats-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
  margin-bottom: 64px;
}

.vision-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
}

.vision-card {
  flex: 0 1 calc(33.333% - 16px);
  min-width: 280px;
  background: var(--bg-card);
  padding: 32px 24px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.vision-card:hover {
  transform: translateY(-8px);
  border-color: var(--green);
  box-shadow: 0 12px 24px rgba(0,0,0,0.2);
}

.v-icon-large {
  font-size: 2.5rem;
  margin-bottom: 20px;
  line-height: 1;
}

.vision-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.vision-card p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.6;
}
.stat-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 20px;
  text-align: center;
  transition: transform 0.3s;
}
.stat-card:hover { transform: translateY(-4px); }
.stat-num {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 900;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat-label { font-size: 0.75rem; color: var(--text-muted); margin-top: 4px; }
.stat-label-top {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--gold);
}
.stat-plus {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--text-muted);
  margin: 4px 0;
}

/* ---- JOURNEY ---- */
.journey-flow {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 48px;
  position: relative;
}
.journey-step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 24px;
  align-items: flex-start;
  position: relative;
}
.step-circle {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.journey-step:hover .step-circle {
  border-color: var(--green);
  box-shadow: 0 0 24px rgba(74, 222, 128, 0.25);
}
.step-circle.last { border-color: var(--gold-dim); }
.step-num {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--green);
}
.step-circle.last .step-num { color: var(--gold); }

.step-connector {
  position: absolute;
  left: 31px;
  top: 64px;
  width: 2px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(74, 222, 128, 0.3), transparent);
}

.step-content {
  padding: 16px 0 48px;
}
.step-content h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--text-primary);
  margin-bottom: 6px;
}
.step-content p { font-size: 0.88rem; color: var(--text-secondary); line-height: 1.7; }

.application-box {
  background: linear-gradient(135deg, rgba(74, 222, 128, 0.05), rgba(244, 200, 67, 0.05));
  border: 1px solid rgba(74, 222, 128, 0.15);
  border-radius: var(--radius);
  padding: 40px;
}
.application-box h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 24px;
}
.app-items {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}
.app-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.5;
}
.app-icon { font-size: 1.1rem; flex-shrink: 0; margin-top: 1px; }

/* ---- TIMELINE ---- */
.timeline {
  position: relative;
  padding: 0;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--green-dim), var(--gold-dim));
  transform: translateX(-50%);
  opacity: 0.3;
}

.tl-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 48px;
  position: relative;
  opacity: 0;
  transform: translateY(20px);
}
.tl-item.visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.tl-left { flex-direction: row; padding-right: calc(50% + 40px); }
.tl-right { flex-direction: row-reverse; padding-left: calc(50% + 40px); }

.tl-dot {
  position: absolute;
  left: 50%;
  top: 20px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--green-dim);
  border: 3px solid var(--bg-section);
  transform: translateX(-50%);
  transition: transform 0.2s;
}
.tl-dot.tl-hot { background: var(--gold); box-shadow: 0 0 16px var(--gold); }
.tl-dot.tl-finish { background: var(--gold-dim); width: 18px; height: 18px; }

.tl-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 28px;
  width: 100%;
  transition: transform 0.3s, border-color 0.3s;
}
.tl-card:hover { transform: translateY(-3px); border-color: rgba(74,222,128,0.2); }
.tl-card-hot { border-color: rgba(244, 200, 67, 0.3); }
.tl-card-hot:hover { border-color: rgba(244, 200, 67, 0.5); box-shadow: 0 0 32px rgba(244,200,67,0.1); }

.tl-date {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--green);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.tl-card-hot .tl-date { color: var(--gold); }
.tl-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-primary);
  margin-bottom: 8px;
}
.tl-card p { font-size: 0.85rem; color: var(--text-secondary); line-height: 1.6; }

/* ---- FUNDING ---- */
.funding-grid {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 40px;
  margin-bottom: 48px;
}
.funding-main {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.funding-amount {
  background: linear-gradient(135deg, rgba(244, 200, 67, 0.08), rgba(74, 222, 128, 0.04));
  border: 1px solid rgba(244, 200, 67, 0.2);
  border-radius: var(--radius);
  padding: 40px;
  text-align: center;
}
.amount-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}
.amount-value {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 900;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 12px;
}
.amount-value span { font-size: 1.5rem; }
.amount-note { font-size: 0.8rem; color: var(--text-muted); line-height: 1.5; }

.winners-scheme {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.winner-dept {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 24px;
  text-align: center;
  transition: border-color 0.3s;
}
.winner-dept:hover { border-color: var(--border-hover); }
.dept-name {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 16px;
}
.dept-slots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 10px;
}
.slot {
  width: 36px; height: 36px;
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.9rem;
}
.slot.filled { background: rgba(74, 222, 128, 0.15); color: var(--green); border: 1px solid rgba(74,222,128,0.3); }
.slot.extra { background: rgba(244,200,67,0.1); color: var(--gold); border: 1px dashed rgba(244,200,67,0.3); }
.dept-note { font-size: 0.75rem; color: var(--text-muted); }

.conditions-list {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
}
.conditions-list h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  margin-bottom: 24px;
}
.condition-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.6;
}
.condition-item:last-child { border-bottom: none; padding-bottom: 0; }
.cond-icon { font-size: 1.1rem; flex-shrink: 0; margin-top: 1px; }
.condition-item strong { color: var(--text-primary); }

.channels-block {
  text-align: center;
  padding: 40px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.channels-block h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 20px;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.8rem;
}
.channels-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}
.channel-tag {
  background: rgba(74, 222, 128, 0.07);
  border: 1px solid rgba(74, 222, 128, 0.15);
  color: var(--green);
  padding: 8px 18px;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 500;
}

/* ---- TEAM ---- */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}
.team-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 28px;
  text-align: center;
  transition: transform 0.3s, border-color 0.3s;
}
.team-card:hover { transform: translateY(-6px); border-color: var(--border-hover); }
.team-card-center {
  border-color: rgba(244, 200, 67, 0.2);
  background: linear-gradient(135deg, rgba(244,200,67,0.05), rgba(74,222,128,0.05));
}
.team-avatar {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green-dark), #0d2218);
  border: 2px solid rgba(74, 222, 128, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--green);
  margin: 0 auto 20px;
}
.team-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  margin-bottom: 6px;
}
.team-role {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}
.team-card p { font-size: 0.85rem; color: var(--text-secondary); line-height: 1.6; }

.orgs-block {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
}
.org-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text-primary);
  padding: 10px 20px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--bg-card);
}
.org-logos-block {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 32px;
}
.org-logo-container {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 60px;
  width: auto;
  padding: 10px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
}
.org-logo-img {
  height: 100%;
  max-width: 140px;
  object-fit: contain;
}
.org-plus { color: var(--text-muted); font-size: 1.2rem; }

/* ---- CTA ---- */
.section-cta {
  position: relative;
  background: var(--bg-dark);
  overflow: hidden;
  text-align: center;
  padding: 120px 0;
}
#cta-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.cta-content {
  position: relative;
  z-index: 2;
}
.cta-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 900;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 20px;
}
.cta-title em {
  font-style: normal;
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.cta-desc {
  font-size: 1rem;
  color: var(--text-secondary);
  margin-bottom: 36px;
  line-height: 1.8;
}
.cta-verse {
  display: inline-block;
  border-left: 3px solid var(--gold);
  padding: 12px 24px;
  margin: 0 auto 48px;
  color: var(--gold);
  font-style: italic;
  font-size: 1rem;
  text-align: left;
}
.cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ---- FOOTER ---- */
#footer {
  background: var(--bg-section);
  border-top: 1px solid var(--border);
  padding: 40px 0;
  text-align: center;
}
.footer-inner { display: flex; flex-direction: column; align-items: center; gap: 10px; }
.footer-logo { font-family: var(--font-display); font-size: 1.2rem; font-weight: 800; }
.footer-tagline { font-size: 0.82rem; color: var(--text-muted); }
.footer-orgs { font-size: 0.78rem; color: var(--text-muted); }

/* ---- RESPONSIVE ---- */
@media (max-width: 900px) {
  .timeline::before { left: 20px; }
  .tl-left, .tl-right { flex-direction: column; padding: 0 0 0 52px; }
  .tl-dot { left: 20px; transform: none; }
  .team-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto 48px; }
  .funding-grid { grid-template-columns: 1fr; }

  .nav-inner {
    justify-content: space-between;
    gap: 16px;
  }
  .mobile-menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1001;
    padding: 8px;
  }
  .mobile-menu-toggle span {
    width: 28px;
    height: 2px;
    background: var(--text-primary);
    transition: 0.3s;
    border-radius: 2px;
  }
  .mobile-menu-toggle.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
  .mobile-menu-toggle.active span:nth-child(2) { opacity: 0; }
  .mobile-menu-toggle.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

  .nav-menu-wrapper {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: rgba(8, 13, 18, 0.98);
    backdrop-filter: blur(20px);
    border-left: 1px solid var(--border);
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 100px 24px 24px;
    transition: right 0.3s ease;
    gap: 32px;
    z-index: 1000;
  }
  .nav-menu-wrapper.active {
    right: 0;
    box-shadow: -10px 0 40px rgba(0,0,0,0.5);
  }
  .nav-actions {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    gap: 16px;
  }
  .nav-links {
    flex-direction: column;
    width: 100%;
    gap: 24px;
  }
  .nav-links a {
    font-size: 1.1rem;
    display: block;
  }
  .nav-apply-btn, .nav-support-btn {
    text-align: center;
    margin: 0;
  }
  .nav-logo .uk-name-suffix {
    display: none !important;
  }
}

@media (max-width: 640px) {
  .container { padding: 0 20px; }
  .section { padding: 64px 0; }
  .winners-scheme { grid-template-columns: 1fr; }
  .problem-grid { grid-template-columns: 1fr; }
}

/* ================================================
   DONATE PAGE
   ================================================ */

/* ---- Donate Grid ---- */
.donate-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.donate-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.donate-card:hover {
  border-color: rgba(74, 222, 128, 0.18);
  box-shadow: 0 8px 40px rgba(0,0,0,0.3);
}

.donate-card-bank { grid-column: 1 / -1; }

.donate-card-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.donate-card-icon { font-size: 2.2rem; line-height: 1; flex-shrink: 0; }

.donate-card-header h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 2px;
}

.donate-card-sub {
  font-size: 0.78rem;
  color: var(--text-muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 600;
}

.donate-card-desc {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.75;
  margin-bottom: 24px;
}

/* ---- Currency Tabs ---- */
.currency-tabs {
  display: flex;
  gap: 6px;
  margin-bottom: 20px;
  background: rgba(255,255,255,0.04);
  border-radius: var(--radius-sm);
  padding: 5px;
  width: fit-content;
}

.currency-tab {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  padding: 8px 22px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  background: transparent;
  color: var(--text-muted);
  transition: all 0.22s ease;
}

.currency-tab:hover:not(.active) {
  color: var(--text-secondary);
  background: rgba(255,255,255,0.06);
}

.currency-tab.active {
  background: var(--gradient-gold);
  color: #0a0a0a;
  box-shadow: 0 2px 14px rgba(244, 200, 67, 0.28);
}

.currency-panel { display: none; }
.currency-panel.active {
  display: block;
  animation: panelFadeIn 0.22s ease;
}

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

/* ---- Bank Fields ---- */
.bank-field {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 13px 18px;
  background: rgba(255,255,255,0.025);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  margin-bottom: 8px;
  transition: border-color 0.2s;
}

.bank-field:hover { border-color: rgba(255,255,255,0.09); }

.bank-field-inner { flex: 1; min-width: 0; }

.bank-field-label {
  font-size: 0.67rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 3px;
}

.bank-field-value {
  font-family: var(--font-display);
  font-size: 0.93rem;
  font-weight: 500;
  color: var(--text-primary);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.bank-field-value.pending {
  color: var(--text-muted);
  font-style: italic;
  font-size: 0.83rem;
  font-weight: 400;
}

.copy-btn {
  position: relative;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 7px 11px;
  cursor: pointer;
  font-size: 0.95rem;
  color: var(--text-secondary);
  flex-shrink: 0;
  transition: all 0.2s ease;
  line-height: 1;
}

.copy-btn::after {
  content: "Копіювати";
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(4px);
  background: rgba(15, 23, 32, 0.95);
  color: var(--text-primary);
  padding: 6px 10px;
  border-radius: 6px;
  font-size: 0.75rem;
  font-family: var(--font-body);
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s ease;
  pointer-events: none;
  box-shadow: 0 4px 12px rgba(0,0,0,0.5);
  border: 1px solid var(--border);
  z-index: 10;
}

.copy-btn:hover:not(:disabled)::after {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(-8px);
}

.copy-btn:hover:not(:disabled) {
  background: rgba(74, 222, 128, 0.1);
  border-color: rgba(74, 222, 128, 0.35);
  color: var(--green);
}

.copy-btn:disabled { opacity: 0.3; cursor: not-allowed; }

.copy-btn.copied {
  background: rgba(74, 222, 128, 0.15);
  border-color: rgba(74, 222, 128, 0.45);
  color: var(--green);
}

.copy-btn.copied::after {
  content: "Скопійовано!";
  color: var(--green);
  border-color: rgba(74, 222, 128, 0.3);
}

.coming-soon-note {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-align: center;
  margin-top: 18px;
  font-style: italic;
}

/* ---- QR Placeholder ---- */
.qr-placeholder {
  display: flex;
  justify-content: center;
  margin: 20px 0 24px;
}

.qr-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  padding: 28px 32px;
  border: 2px dashed rgba(74, 222, 128, 0.15);
  border-radius: var(--radius);
  transition: border-color 0.3s;
}

.qr-box:hover { border-color: rgba(74, 222, 128, 0.28); }

.qr-coming {
  font-size: 0.78rem;
  color: var(--text-muted);
  text-align: center;
  max-width: 180px;
  line-height: 1.5;
}

/* ---- PayPal Card ---- */
.amount-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-bottom: 18px;
}

.amount-btn {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  padding: 11px 6px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: transparent;
  color: var(--text-secondary);
  cursor: pointer;
  transition: all 0.2s ease;
  text-align: center;
}

.amount-btn:hover,
.amount-btn.active {
  border-color: rgba(74, 222, 128, 0.45);
  background: rgba(74, 222, 128, 0.08);
  color: var(--green);
  box-shadow: 0 0 16px rgba(74,222,128,0.1);
}

.btn-paypal {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 14px 20px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, #003087 0%, #009cde 100%);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.25s ease;
  box-shadow: 0 4px 20px rgba(0, 80, 180, 0.25);
}

.btn-paypal:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 100, 220, 0.4);
  filter: brightness(1.1);
}

.paypal-email-note {
  text-align: center;
  font-size: 0.76rem;
  color: var(--text-muted);
  margin-top: 10px;
  font-style: italic;
}

/* ---- Responsive Donate ---- */
@media (max-width: 900px) {
  .donate-grid { grid-template-columns: 1fr; }
  .donate-card-bank { grid-column: 1; }
}

@media (max-width: 640px) {
  .donate-card { padding: 24px 18px; }
  .bank-field { padding: 11px 14px; }
  .bank-field-value { font-size: 0.82rem; }
  .amount-grid { grid-template-columns: repeat(2, 1fr); }
}
