* {
  box-sizing: border-box;
}

:root {
  --bg: #081411;
  --bg-soft: #0f201b;
  --surface: rgba(255, 255, 255, 0.06);
  --surface-strong: rgba(255, 255, 255, 0.1);
  --text: #edf7f2;
  --muted: #bfd3cb;
  --line: rgba(255, 255, 255, 0.12);
  --green: #79d12d;
  --green-deep: #3f8f1f;
  --gold: #f2cb28;
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(121, 209, 45, 0.16), transparent 28%),
    radial-gradient(circle at 90% 20%, rgba(242, 203, 40, 0.10), transparent 22%),
    linear-gradient(180deg, #07110f 0%, #0b1915 55%, #0d1614 100%);
  line-height: 1.65;
}

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

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

.container {
  width: min(1140px, calc(100% - 2rem));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  background: rgba(7, 17, 15, 0.75);
  border-bottom: 1px solid var(--line);
}

.nav {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand img {
  height: 114px;
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.15rem;
  font-size: 0.96rem;
}

.nav-links a {
  color: var(--muted);
}

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

.menu-btn {
  display: none;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--text);
  border-radius: 12px;
  padding: 0.6rem 0.8rem;
  font-size: 1.1rem;
}

.mobile-menu {
  display: none;
  padding: 0 1rem 1rem;
}

.mobile-menu.open {
  display: grid;
  gap: 0.75rem;
}

.mobile-menu a {
  padding: 0.85rem 1rem;
  border-radius: 12px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--line);
}

.hero {
  padding: 5rem 0 3.5rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr;
  gap: 2rem;
  align-items: center;
}

.eyebrow,
.section-tag {
  display: inline-block;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 0.9rem;
  font-weight: 700;
}

.hero h1,
.section h2 {
  margin: 0 0 1rem;
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.hero h1 {
  font-size: clamp(2.5rem, 5vw, 4.8rem);
  max-width: 12ch;
}

.lead {
  font-size: 1.08rem;
  color: var(--muted);
  max-width: 62ch;
}

.hero-actions,
.btn-nav {
  display: flex;
  gap: 0.95rem;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.9rem 1.2rem;
  border-radius: 999px;
  font-weight: 700;
  border: 1px solid transparent;
  transition: 0.22s ease;
  cursor: pointer;
}

.btn-primary {
  color: #10210e;
  background: linear-gradient(135deg, var(--gold), var(--green));
  box-shadow: var(--shadow);
}

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

.btn-secondary,
.btn-nav {
  color: var(--text);
  border-color: var(--line);
  background: rgba(255,255,255,0.04);
}

.hero-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.9rem;
  margin-top: 2rem;
}

.hero-points div,
.card,
.feature,
.contact-card,
.donate-card,
.impact-item,
.founder-panel {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: var(--shadow);
}

.hero-points div {
  padding: 1rem;
}

.hero-points strong {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--gold);
}

.hero-points span {
  display: block;
  color: var(--muted);
  font-size: 0.94rem;
}

.hero-card {
  padding: 2rem;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(121, 209, 45, 0.09), rgba(255,255,255,0.04));
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.hero-logo {
  width: 100%;
  max-width: 540px;
  margin: 0 auto;
}

.hero-quote {
  margin-top: 1rem;
  text-align: center;
  color: var(--muted);
  font-weight: 600;
}

.section {
  padding: 4.8rem 0;
}

.section.alt {
  background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01));
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.two-col,
.contact-grid,
.founder-wrap,
.donate-wrap {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr 1fr;
  align-items: start;
}

.cards,
.feature-grid,
.impact-grid {
  display: grid;
  gap: 1.25rem;
}

.cards {
  grid-template-columns: repeat(3, 1fr);
  margin-top: 1.2rem;
}

.card,
.feature,
.contact-card,
.donate-card,
.impact-item,
.founder-panel,
.contact-form {
  padding: 1.4rem;
}

.card h3,
.feature h4,
.impact-item h4,
.founder-panel h3 {
  margin-top: 0;
  margin-bottom: 0.65rem;
}

.feature-grid {
  margin-top: 1.4rem;
  grid-template-columns: repeat(4, 1fr);
}

.feature p,
.card p,
.contact-card p,
.donate-card p,
.impact-item p,
.contact-form,
.two-col p,
.founder-copy p {
  color: var(--muted);
}

.founder-signoff {
  color: var(--gold) !important;
  font-weight: 700;
}

.founder-panel ul {
  margin: 0;
  padding-left: 1.15rem;
  color: var(--muted);
}

.impact-grid {
  margin-top: 1.4rem;
  grid-template-columns: repeat(3, 1fr);
}

.impact-item span {
  display: inline-flex;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  background: rgba(121, 209, 45, 0.16);
  color: var(--green);
  margin-bottom: 0.9rem;
}

.contact-form {
  display: grid;
  gap: 0.95rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 22px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.04);
  border-radius: 16px;
  padding: 0.95rem 1rem;
  color: var(--text);
  font: inherit;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #8da59b;
}

.donate-section {
  padding-bottom: 5.6rem;
}

.donate-line {
  margin-top: 0;
}

.donate-card small {
  display: block;
  margin-top: 0.85rem;
  color: #9ab1a8;
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 1.4rem 0 2rem;
  color: #a9beb5;
}

.footer-wrap {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.toast {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  background: #153224;
  color: #eaf6ee;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 16px;
  padding: 0.9rem 1rem;
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: 0.25s ease;
  max-width: 360px;
}

.toast.show {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 960px) {
  .hero-grid,
  .two-col,
  .contact-grid,
  .founder-wrap,
  .donate-wrap,
  .cards,
  .feature-grid,
  .impact-grid,
  .hero-points {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    max-width: 14ch;
  }

  .nav-links {
    display: none;
  }

  .menu-btn {
    display: inline-flex;
  }
}

@media (max-width: 640px) {
  .hero {
    padding-top: 4rem;
  }

  .hero-card {
    padding: 1rem;
  }

  .section {
    padding: 4rem 0;
  }

  .footer-wrap {
    flex-direction: column;
  }
}
.founder-photo img{
  width: 200px;
  height: 200px;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid #79d12d;
}
.mobile-menu{
backdrop-filter: blur(6px);
}