:root {
  --bg-dark: #0a0a0c;
  --bg-section: #111114;
  --bg-card: #1a1a1f;
  --fg-primary: #f0ede8;
  --fg-secondary: #a09d96;
  --fg-muted: #6b6860;
  --accent: #d4915e;
  --accent-glow: rgba(212, 145, 94, 0.15);
  --accent-warm: #e8a96e;
  --border: rgba(240, 237, 232, 0.08);
  --font-display: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

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

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 6rem 2rem 4rem;
  background:
    radial-gradient(ellipse 60% 50% at 20% 80%, rgba(212, 145, 94, 0.06) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 80% 20%, rgba(212, 145, 94, 0.04) 0%, transparent 60%),
    var(--bg-dark);
}

.hero-inner {
  max-width: 820px;
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid rgba(212, 145, 94, 0.3);
  padding: 0.4rem 1rem;
  margin-bottom: 2.5rem;
}

.hero h1 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.2rem, 5.5vw, 4rem);
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--fg-primary);
  margin-bottom: 2rem;
}

.hero-sub {
  font-size: 1.15rem;
  line-height: 1.7;
  color: var(--fg-secondary);
  max-width: 600px;
}

.hero-accent {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0.3;
}

/* ===== MISSION ===== */
.mission {
  padding: 6rem 2rem;
  background: var(--bg-section);
}

.mission-inner {
  max-width: 960px;
  margin: 0 auto;
}

.mission-label {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 3rem;
}

.mission-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--border);
}

.mission-stat {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.stat-number {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--accent-warm);
  line-height: 1;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--fg-secondary);
  line-height: 1.5;
}

.mission-text {
  font-size: 1.15rem;
  line-height: 1.8;
  color: var(--fg-secondary);
  max-width: 680px;
}

/* ===== FEATURES ===== */
.features {
  padding: 6rem 2rem;
  background: var(--bg-dark);
}

.features-inner {
  max-width: 1080px;
  margin: 0 auto;
}

.features-label {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 3rem;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

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

.feature-card:hover {
  border-color: rgba(212, 145, 94, 0.25);
  box-shadow: 0 0 30px var(--accent-glow);
}

.feature-icon {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--accent);
}

.feature-card h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
  color: var(--fg-primary);
}

.feature-card p {
  font-size: 0.9rem;
  line-height: 1.65;
  color: var(--fg-secondary);
}

/* ===== FOUNDERS / BOARD ===== */
.founders {
  padding: 5rem 2rem;
  background: var(--bg-section);
}

.founders-inner {
  max-width: 960px;
  margin: 0 auto;
}

.founders-label {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 2.5rem;
  text-align: center;
}

.founders-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.founder-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 2rem;
  text-align: center;
}

.founder-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--fg-primary);
  margin-bottom: 0.4rem;
}

.founder-title {
  font-size: 0.85rem;
  color: var(--accent);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.founder-bio {
  font-size: 0.9rem;
  line-height: 1.65;
  color: var(--fg-secondary);
}

/* ===== IMPACT QUOTE ===== */
.impact {
  padding: 5rem 2rem;
  background: var(--bg-section);
  text-align: center;
}

.impact-inner {
  max-width: 700px;
  margin: 0 auto;
}

.impact-quote {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.3rem, 3vw, 1.8rem);
  line-height: 1.5;
  color: var(--fg-primary);
  border: none;
  padding: 0;
  margin: 0 0 1.5rem;
  font-style: normal;
}

.impact-attribution {
  font-size: 0.85rem;
  color: var(--fg-muted);
  letter-spacing: 0.05em;
}

/* ===== CLOSING ===== */
.closing {
  padding: 7rem 2rem;
  background:
    radial-gradient(ellipse 50% 60% at 50% 100%, rgba(212, 145, 94, 0.06) 0%, transparent 70%),
    var(--bg-dark);
  text-align: center;
}

.closing-inner {
  max-width: 700px;
  margin: 0 auto;
}

.closing h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--fg-primary);
}

.closing-text {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--fg-secondary);
}

/* ===== FOOTER ===== */
.site-footer {
  padding: 3rem 2rem;
  border-top: 1px solid var(--border);
  background: var(--bg-dark);
}

.footer-inner {
  max-width: 1080px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-brand {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--fg-primary);
  letter-spacing: 0.05em;
}

.footer-note {
  font-size: 0.8rem;
  color: var(--fg-muted);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .hero {
    padding: 4rem 1.5rem 3rem;
    min-height: 80vh;
  }

  .mission-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .feature-card {
    padding: 1.5rem;
  }

  .footer-inner {
    flex-direction: column;
    gap: 0.75rem;
    text-align: center;
  }

  .mission,
  .features,
  .founders,
  .impact,
  .closing {
    padding: 4rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 1.8rem;
  }

  .stat-number {
    font-size: 2rem;
  }
}
