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

:root {
  --green: #1B5E20;
  --green-light: #2E7D32;
  --green-dark: #0A3D0A;
  --gold: #F9A825;
  --gold-dark: #E65100;
  --black: #0D0D0D;
  --dark: #0D0D0D;
  --dark-card: #141414;
  --dark-card2: #1a1a1a;
  --text-dark: #1a1a1a;
  --text-muted: #6B7280;
  --text-light: #e5e7eb;
  --text-lighter: #9ca3af;
  --surface: #F9FAFB;
  --surface2: #F3F4F6;
  --border: #E5E7EB;
  --radius: 16px;
  --radius-sm: 8px;
  --shadow: 0 4px 24px rgba(0,0,0,0.08);
  --shadow-lg: 0 16px 48px rgba(0,0,0,0.12);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  color: var(--text-dark);
  background: #fff;
  line-height: 1.6;
  overflow-x: hidden;
}

h1,h2,h3,h4 { font-family: 'Space Grotesk', sans-serif; line-height: 1.2; }

.container { max-width: 1120px; margin: 0 auto; padding: 0 24px; }

.section { padding: 96px 0; }
.section-light { background: #fff; }
.section-dark { background: var(--dark); color: var(--text-light); }

.gradient-text {
  background: linear-gradient(135deg, var(--green-light), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ===== NAVBAR ===== */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(10,10,10,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: all 0.3s ease;
}
#navbar.scrolled { box-shadow: 0 4px 24px rgba(0,0,0,0.3); }

.nav-container {
  max-width: 1120px; margin: 0 auto; padding: 0 24px;
  height: 68px; display: flex; align-items: center; justify-content: space-between;
}

/* Logo image in navbar */
.nav-logo { display: flex; align-items: center; text-decoration: none; }
.nav-logo-img { height: 44px; width: auto; display: block; }

.nav-links { display: flex; align-items: center; gap: 8px; list-style: none; }
.nav-links a {
  color: var(--text-lighter); text-decoration: none;
  font-size: 0.9rem; font-weight: 500;
  padding: 8px 12px; border-radius: 8px;
  transition: all 0.2s ease;
}
.nav-links a:hover { color: #fff; background: rgba(255,255,255,0.08); }
.nav-cta {
  background: var(--green) !important;
  color: #fff !important;
  border-radius: 8px !important;
  padding: 8px 18px !important;
}
.nav-cta:hover { background: var(--green-light) !important; }

.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 8px;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: #fff; border-radius: 2px;
  transition: all 0.3s ease;
}

.mobile-menu {
  display: none; flex-direction: column; padding: 16px 24px 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
  background: rgba(10,10,10,0.98);
}
.mobile-menu.open { display: flex; }
.mobile-link {
  color: var(--text-lighter); text-decoration: none;
  font-size: 1rem; font-weight: 500;
  padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: color 0.2s;
}
.mobile-link:last-child { border-bottom: none; }
.mobile-link:hover { color: #fff; }
.mobile-cta {
  margin-top: 12px; background: var(--green);
  color: #fff !important; border-radius: 8px;
  text-align: center; padding: 14px !important;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600; font-size: 1rem;
  padding: 14px 28px; border-radius: 12px;
  cursor: pointer; text-decoration: none;
  transition: all 0.2s ease; border: 2px solid transparent;
  white-space: nowrap;
}
.btn-primary {
  background: var(--green); color: #fff;
  box-shadow: 0 4px 16px rgba(0,107,63,0.35);
}
.btn-primary:hover {
  background: var(--green-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,107,63,0.45);
}
.btn-ghost {
  background: transparent; color: #fff;
  border: 2px solid rgba(255,255,255,0.25);
}
.btn-ghost:hover { border-color: rgba(255,255,255,0.6); background: rgba(255,255,255,0.06); }
.btn-large { padding: 18px 40px; font-size: 1.1rem; border-radius: 14px; }
.btn-full { width: 100%; }
.btn-outline-sm {
  background: transparent; border: 1.5px solid rgba(255,255,255,0.2);
  color: var(--text-lighter); font-size: 0.85rem; padding: 10px 18px; border-radius: 8px;
}
.btn-outline-sm:hover { border-color: var(--gold); color: var(--gold); }

/* ===== SECTION LABELS & HEADINGS ===== */
.section-label {
  display: inline-block;
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--green);
  background: rgba(0,107,63,0.08);
  padding: 6px 14px; border-radius: 100px;
  margin-bottom: 16px;
  border: 1px solid rgba(0,107,63,0.15);
}
.section-label.light {
  color: var(--gold); background: rgba(252,209,22,0.1);
  border-color: rgba(252,209,22,0.2);
}
.section-title {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800; letter-spacing: -0.03em;
  margin-bottom: 20px; color: var(--text-dark);
}
.section-title.light { color: #fff; }
.section-sub { font-size: 1.125rem; color: var(--text-muted); max-width: 600px; margin-bottom: 48px; }

/* ===== REVEAL ANIMATIONS ===== */
.reveal { opacity: 0; transform: translateY(32px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ===== HERO ===== */
#hero {
  min-height: 100vh; background: var(--dark);
  display: flex; flex-direction: column; justify-content: center;
  position: relative; overflow: hidden; padding-top: 68px;
}
.hero-bg-pattern {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 80% 60% at 60% 40%, rgba(0,107,63,0.18) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 20% 80%, rgba(252,209,22,0.08) 0%, transparent 50%);
}
.hero-content { position: relative; z-index: 1; padding: 80px 24px 60px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(252,209,22,0.1); border: 1px solid rgba(252,209,22,0.25);
  color: var(--gold); font-size: 0.85rem; font-weight: 600;
  padding: 8px 16px; border-radius: 100px; margin-bottom: 28px;
  letter-spacing: 0.04em;
}
.hero-title {
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 900; letter-spacing: -0.04em;
  color: #fff; line-height: 1.08; margin-bottom: 24px;
}
.hero-sub {
  font-size: 1.2rem; color: var(--text-lighter);
  max-width: 620px; margin-bottom: 40px; line-height: 1.65;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 64px; }

.hero-stats {
  display: flex; align-items: center; gap: 0;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px; padding: 24px 32px;
  flex-wrap: wrap; gap: 0;
}
.stat { display: flex; flex-direction: column; gap: 4px; padding: 0 24px; }
.stat:first-child { padding-left: 0; }
.stat-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.75rem; font-weight: 800; color: var(--gold); letter-spacing: -0.02em;
}
.stat-label { font-size: 0.8rem; color: var(--text-lighter); max-width: 120px; }
.stat-divider { width: 1px; height: 48px; background: rgba(255,255,255,0.1); }

.hero-scroll-hint {
  position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: var(--text-lighter); font-size: 0.8rem; letter-spacing: 0.08em;
}
.scroll-arrow {
  width: 20px; height: 20px;
  border-right: 2px solid var (--text-lighter);
  border-bottom: 2px solid var (--text-lighter);
  transform: rotate(45deg);
  animation: bounce 2s infinite;
}
@keyframes bounce { 0%,100%{transform:rotate(45deg) translateY(0)} 50%{transform:rotate(45deg) translateY(6px)} }

/* ===== HERO LOGO ===== */
.hero-logo-wrap { margin-bottom: 32px; }
.hero-logo-img { height: 120px; width: auto; display: block; }

/* ===== CARDS ===== */
.cards-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.card {
  padding: 32px; border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: transform 0.2s, box-shadow 0.2s;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.card-icon {
  width: 52px; height: 52px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(0,107,63,0.08); border-radius: 12px;
  color: var(--green); margin-bottom: 20px;
}
.card-problem .card-icon { color: var(--text-muted); background: var(--surface2); }
.card h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: 16px; color: var (--text-dark); }
.card ul { list-style: none; }
.card ul li {
  padding: 8px 0; border-bottom: 1px solid var(--border);
  font-size: 0.95rem; color: var(--text-muted);
}
.card ul li:last-child { border-bottom: none; }
.card-problem { background: var(--surface); }
.card-highlight {
  background: linear-gradient(135deg, #f0fdf4, #fefce8);
  border-color: rgba(0,107,63,0.15);
}
.card-highlight p { color: var(--text-muted); margin-bottom: 16px; }
.card-highlight strong { color: var(--green-dark); }
blockquote {
  border-left: 3px solid var(--green);
  padding-left: 16px;
  font-style: italic; font-size: 0.9rem; color: var(--text-muted);
  margin-top: 16px;
}

/* ===== FLOW STEPS ===== */
.flow-grid {
  display: flex; align-items: flex-start; gap: 0;
  flex-wrap: wrap; margin-bottom: 56px;
}
.flow-step {
  flex: 1; min-width: 180px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius); padding: 28px 24px;
  text-align: center;
}
.flow-num {
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.1em;
  color: var(--gold); margin-bottom: 12px;
}
.flow-icon {
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); margin-bottom: 12px;
}
.flow-step h3 { font-size: 1rem; font-weight: 700; color: #fff; margin-bottom: 8px; }
.flow-step p { font-size: 0.875rem; color: var(--text-lighter); }
.flow-arrow {
  font-size: 1.5rem; color: var(--gold); padding: 0 8px;
  align-self: center; flex-shrink: 0;
}

.why-works {
  background: rgba(252,209,22,0.06);
  border: 1px solid rgba(252,209,22,0.15);
  border-radius: var(--radius); padding: 32px;
}
.why-works h3 { color: var(--gold); font-size: 1rem; font-weight: 700; margin-bottom: 20px; letter-spacing: 0.06em; text-transform: uppercase; }
.why-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 16px; }
.why-item {
  display: flex; align-items: center; gap: 12px;
  background: rgba(255,255,255,0.04); border-radius: 10px;
  padding: 14px 16px; font-size: 0.9rem; color: var(--text-light);
}
.why-item span { font-size: 1.3rem; }

/* ===== WHY NOW STATS ===== */
.stats-showcase {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 20px; margin-bottom: 56px;
}
.showcase-stat {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius); padding: 28px 20px;
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
}
.showcase-stat:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.showcase-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2rem; font-weight: 800; color: var(--green); margin-bottom: 8px; letter-spacing: -0.02em;
}
.showcase-desc { font-size: 0.85rem; color: var(--text-muted); }
.highlight-stat { border-color: var(--gold); background: #fffdf0; }
.highlight-stat .showcase-num { color: #b8860b; }

.readiness-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 20px; }
.readiness-item {
  padding: 24px; border-radius: var(--radius);
  border: 1px solid var(--border); background: var(--surface);
}
.readiness-icon {
  width: 52px; height: 52px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(0,107,63,0.08); border-radius: 12px;
  color: var(--green); margin-bottom: 16px;
}
.readiness-item h4 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; color: var(--text-dark); }
.readiness-item p { font-size: 0.875rem; color: var (--text-muted); }

/* ===== PRODUCT ===== */
.product-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.product-card {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius); padding: 32px;
  transition: transform 0.2s, border-color 0.2s;
}
.product-card:hover { transform: translateY(-4px); border-color: rgba(255,255,255,0.2); }
.product-card-trust { border-color: rgba(0,166,90,0.3); background: rgba(0,107,63,0.08); }
.product-tag {
  display: inline-block; font-size: 0.75rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 5px 12px; border-radius: 100px; margin-bottom: 20px;
}
.product-tag.sender { background: rgba(252,209,22,0.15); color: var(--gold); }
.product-tag.runner { background: rgba(0,166,90,0.15); color: var(--green-light); }
.product-tag.trust { background: rgba(99,102,241,0.15); color: #a5b4fc; }
.product-list { list-style: none; }
.product-list li {
  padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,0.07);
  font-size: 0.925rem; color: var(--text-light); line-height: 1.5;
}
.product-list li:last-child { border-bottom: none; }

/* ===== BUSINESS MODEL ===== */
.model-flow {
  display: flex; flex-direction: column; gap: 0;
  max-width: 640px; margin: 0 auto 56px;
}
.model-step {
  display: flex; align-items: center; gap: 20px;
  padding: 20px 0;
}
.model-dot {
  width: 16px; height: 16px; border-radius: 50%;
  flex-shrink: 0; position: relative; z-index: 1;
}
.sender-dot { background: var(--gold); box-shadow: 0 0 0 4px rgba(252,209,22,0.2); }
.runner-dot { background: var(--green-light); box-shadow: 0 0 0 4px rgba(0,166,90,0.2); }
.platform-dot { background: #a5b4fc; box-shadow: 0 0 0 4px rgba(165,180,252,0.2); }
.release-dot { background: var(--green); box-shadow: 0 0 0 4px rgba(0,107,63,0.2); }
.model-content { display: flex; flex-direction: column; gap: 4px; }
.model-content strong { font-size: 1rem; font-weight: 700; color: var(--text-dark); }
.model-content span { font-size: 0.875rem; color: var(--text-muted); }
.model-line {
  width: 2px; height: 28px; background: var(--border);
  margin-left: 7px;
}
.highlight-step .model-content strong { color: var(--green-dark); }

.revenue-streams { }
.revenue-streams h3 {
  font-size: 1.2rem; font-weight: 700; margin-bottom: 24px;
  color: var(--text-dark);
}
.streams-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 20px; }
.stream {
  padding: 24px; border-radius: var(--radius);
  border: 1px solid var(--border); background: var(--surface);
  transition: transform 0.2s;
}
.stream:hover { transform: translateY(-4px); }
.stream-badge {
  display: inline-block; font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 4px 10px; border-radius: 100px; margin-bottom: 12px;
}
.stream.now .stream-badge { background: rgba(0,107,63,0.1); color: var(--green); }
.stream.future .stream-badge { background: rgba(99,102,241,0.1); color: #6366f1; }
.stream h4 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; color: var(--text-dark); }
.stream p { font-size: 0.875rem; color: var(--text-muted); }

/* ===== MARKET ===== */
.market-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.market-card {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius); padding: 32px;
}
.market-card h3 { color: var(--gold); font-size: 1.1rem; font-weight: 700; margin-bottom: 16px; }
.market-desc { color: var(--text-lighter); font-size: 0.9rem; margin-bottom: 20px; }
.errand-tags { display: flex; flex-wrap: wrap; gap: 10px; }
.errand-tags span {
  background: rgba(252,209,22,0.1); border: 1px solid rgba(252,209,22,0.2);
  color: var(--gold); font-size: 0.82rem; font-weight: 500;
  padding: 6px 12px; border-radius: 100px;
}
.city-list { display: flex; flex-direction: column; gap: 8px; }
.city {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.07);
  border-radius: 8px; padding: 12px 16px;
  font-size: 0.9rem; color: var(--text-light);
}
.tam-card { border-color: rgba(0,166,90,0.25); background: rgba(0,107,63,0.08); }
.tam-item { display: flex; gap: 16px; align-items: flex-start; margin-bottom: 20px; }
.tam-item:last-child { margin-bottom: 0; }
.tam-label {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.75rem; font-weight: 800; letter-spacing: 0.1em;
  background: rgba(0,166,90,0.2); color: var(--green-light);
  padding: 4px 10px; border-radius: 6px; flex-shrink: 0; margin-top: 2px;
}
.tam-desc { font-size: 0.875rem; color: var(--text-lighter); }

/* ===== ADVANTAGE ===== */
.positioning-banner {
  background: linear-gradient(135deg, rgba(0,107,63,0.08), rgba(252,209,22,0.08));
  border: 1px solid rgba(0,107,63,0.15);
  border-radius: var(--radius); padding: 32px;
  text-align: center; margin-bottom: 48px;
}
.positioning-banner p { font-size: 1.2rem; color: var(--text-dark); line-height: 1.6; }
.positioning-banner strong { color: var(--green); }
.advantage-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 20px; }
.advantage-item {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 24px; border-radius: var(--radius);
  border: 1px solid var(--border); background: var(--surface);
  transition: transform 0.2s, box-shadow 0.2s;
}
.advantage-item:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.adv-icon {
  display: flex; align-items: center; justify-content: center;
  width: 48px; height: 48px; flex-shrink: 0;
  background: rgba(0,107,63,0.08); border-radius: 12px;
  color: var(--green); margin-top: 2px;
}
.advantage-item h4 { font-size: 1rem; font-weight: 700; margin-bottom: 6px; color: var(--text-dark); }
.advantage-item p { font-size: 0.875rem; color: var(--text-muted); }

/* ===== PHASES ===== */
.phases-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.phase {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius); padding: 32px;
  transition: transform 0.2s, border-color 0.2s;
}
.phase:hover { transform: translateY(-4px); border-color: rgba(0,166,90,0.4); }
.phase-num {
  font-size: 0.75rem; font-weight: 800; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 12px;
}
.phase h3 { color: #fff; font-size: 1.2rem; font-weight: 700; margin-bottom: 20px; }
.phase ul { list-style: none; }
.phase ul li {
  padding: 8px 0; border-bottom: 1px solid rgba(255,255,255,0.06);
  font-size: 0.9rem; color: var(--text-lighter);
  padding-left: 16px; position: relative;
}
.phase ul li::before {
  content: '→'; position: absolute; left: 0;
  color: var(--green-light); font-size: 0.75rem; top: 9px;
}
.phase ul li:last-child { border-bottom: none; }

/* ===== IMPACT ===== */
.impact-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; margin-bottom: 40px; }
.impact-card {
  position: relative; padding: 36px 28px;
  border-radius: var(--radius); border: 1px solid var(--border);
  background: var(--surface);
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
}
.impact-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.impact-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--green), var(--gold));
}
.impact-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 3.5rem; font-weight: 900; color: rgba(0,107,63,0.08);
  position: absolute; top: 12px; right: 20px; line-height: 1;
}
.impact-icon {
  display: flex; align-items: center; justify-content: center;
  width: 52px; height: 52px;
  background: rgba(0,166,90,0.12); border-radius: 12px;
  color: var(--green-light); margin-bottom: 16px;
}
.impact-card h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: 12px; color: var(--text-dark); }
.impact-card p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.65; }
.impact-quote {
  background: linear-gradient(135deg, rgba(0,107,63,0.06), rgba(252,209,22,0.06));
  border-left: 4px solid var(--green);
  border-radius: 0 12px 12px 0;
  padding: 24px 32px;
}
.impact-quote p { font-size: 1.05rem; font-style: italic; color: var(--text-dark); line-height: 1.7; }

/* ===== TECH ===== */
.tech-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px; margin-bottom: 40px;
}
.tech-item {
  display: flex; align-items: center; gap: 14px;
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px; padding: 18px 20px;
  font-size: 0.9rem; color: var(--text-light);
  transition: border-color 0.2s, background 0.2s;
}
.tech-item:hover { border-color: rgba(0,166,90,0.35); background: rgba(0,107,63,0.08); }
.tech-icon { 
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; color: var(--green);
}

.ops-badges { display: flex; flex-wrap: wrap; gap: 10px; }
.badge {
  background: rgba(0,107,63,0.1); border: 1px solid rgba(0,107,63,0.2);
  color: var(--green-light); font-size: 0.82rem; font-weight: 600;
  padding: 8px 16px; border-radius: 100px;
}

/* ===== TEAM ===== */
.team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 24px; }
.team-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 36px 28px; text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
}
.team-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.team-avatar { margin-bottom: 20px; display: flex; justify-content: center; }
.avatar-placeholder {
  width: 80px; height: 80px; border-radius: 50%;
  background: linear-gradient(135deg, var(--green), var(--gold));
  display: flex; align-items: center; justify-content: center;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2rem; font-weight: 800; color: #fff;
}
.team-card h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: 8px; color: var(--text-dark); }
.team-role { font-size: 0.82rem; color: var(--green); font-weight: 600; margin-bottom: 12px; letter-spacing: 0.04em; }
.team-bio { font-size: 0.875rem; color: var(--text-muted); line-height: 1.6; }

/* ===== ASK ===== */
.section-ask { background: var(--dark); }
.ask-sub { font-size: 1.15rem; color: var(--text-lighter); max-width: 700px; margin-bottom: 48px; line-height: 1.7; }
.use-of-funds { margin-bottom: 56px; }
.use-of-funds h3 { color: var(--gold); font-size: 1rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 24px; }
.funds-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 16px; }
.fund-item {
  display: flex; align-items: center; gap: 14px;
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px; padding: 18px 20px;
  font-size: 0.9rem; color: var(--text-light);
}
.fund-icon { flex-shrink: 0; color: var(--gold); }
.ask-cta { text-align: center; }
.ask-close { font-size: 1.2rem; color: var(--text-light); margin-bottom: 28px; }
.ask-email { display: block; margin-top: 16px; font-size: 0.9rem; color: var(--text-lighter); text-decoration: none; }
.ask-email:hover { color: var(--gold); }

/* ===== FOOTER ===== */
#footer { background: #060c14; border-top: 1px solid rgba(255,255,255,0.06); padding: 64px 0 0; }
.footer-inner {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px; padding-bottom: 48px;
}
.footer-logo-wrap { margin-bottom: 12px; }
.footer-logo-img { height: 56px; width: auto; display: block; }
.footer-brand p { font-size: 0.9rem; color: var(--text-lighter); margin-bottom: 6px; line-height: 1.6; }
.footer-tagline { font-style: italic; }
.footer-links, .footer-contact { display: flex; flex-direction: column; gap: 10px; }
.footer-links h4, .footer-contact h4 { color: #fff; font-size: 0.9rem; font-weight: 700; margin-bottom: 6px; letter-spacing: 0.06em; text-transform: uppercase; }
.footer-links a, .footer-contact a {
  color: var(--text-lighter); text-decoration: none; font-size: 0.875rem;
  transition: color 0.2s;
}
.footer-links a:hover, .footer-contact a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 20px 24px; text-align: center;
}
.footer-bottom p { font-size: 0.82rem; color: var(--text-lighter); }

/* ===== CONTACT MODAL ===== */
.modal-overlay {
  position: fixed; inset: 0; z-index: 2000;
  background: rgba(0,0,0,0.75); backdrop-filter: blur(6px);
  display: flex; align-items: center; justify-content: center;
  padding: 24px; opacity: 0; pointer-events: none;
  transition: opacity 0.3s ease;
}
.modal-overlay.open { opacity: 1; pointer-events: all; }
.modal {
  background: #fff; border-radius: 20px;
  width: 100%; max-width: 520px; max-height: 90vh;
  overflow-y: auto; padding: 40px 36px;
  position: relative;
  transform: translateY(24px) scale(0.97);
  transition: transform 0.3s ease;
  box-shadow: 0 32px 80px rgba(0,0,0,0.35);
}
.modal-overlay.open .modal { transform: translateY(0) scale(1); }
.modal-close {
  position: absolute; top: 16px; right: 20px;
  background: var(--surface2); border: none; cursor: pointer;
  width: 36px; height: 36px; border-radius: 50%;
  font-size: 1.3rem; color: var(--text-muted);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s, color 0.2s;
}
.modal-close:hover { background: var(--border); color: var(--text-dark); }
.modal-header { text-align: center; margin-bottom: 32px; }
.modal-logo-wrap { display: flex; justify-content: center; margin-bottom: 16px; }
.modal-logo-img { height: 64px; width: auto; display: block; }
.modal-header h2 { font-size: 1.6rem; font-weight: 800; margin-bottom: 8px; color: var(--text-dark); }
.modal-header p { font-size: 0.9rem; color: var(--text-muted); }

.modal-form { display: flex; flex-direction: column; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 0.85rem; font-weight: 600; color: var(--text-dark); }
.form-group input, .form-group textarea {
  width: 100%; padding: 13px 16px;
  border: 1.5px solid var(--border); border-radius: 10px;
  font-family: 'Inter', sans-serif; font-size: 0.95rem;
  color: var(--text-dark); background: var(--surface);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  -webkit-appearance: none;
}
.form-group input:focus, .form-group textarea:focus {
  border-color: var(--green); box-shadow: 0 0 0 3px rgba(0,107,63,0.1);
  background: #fff;
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-note { text-align: center; font-size: 0.8rem; color: var(--text-muted); margin-top: 4px; }

.form-success { display: flex; flex-direction: column; align-items: center; text-align: center; padding: 24px 0; gap: 12px; }
.success-icon {
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 8px;
}
.form-success h3 { font-size: 1.4rem; font-weight: 800; color: var(--text-dark); }
.form-success p { font-size: 0.95rem; color: var(--text-muted); }
.hidden { display: none !important; }

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }

  .hero-title { font-size: clamp(2.2rem, 8vw, 3.5rem); }
  .hero-stats { flex-direction: column; gap: 16px; }
  .stat { padding: 0; }
  .stat-divider { width: 100%; height: 1px; }

  .flow-grid { flex-direction: column; }
  .flow-arrow { display: none; }

  .footer-inner { grid-template-columns: 1fr; gap: 32px; }

  .modal { padding: 32px 24px; }

  .section { padding: 64px 0; }
  .hero-scroll-hint { display: none; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; }
  .btn { width: 100%; }
}
