/* =========================
   1. RESET / BASE
========================= */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  min-height: 100%;
}

body {
  min-height: 100vh;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  color: #ffffff;
  background: #000;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}

/* =========================
   2. BACKGROUND
========================= */

#particles {
  position: fixed;
  inset: 0;
  z-index: -1;
  background: #000;
}

.particle {
  position: absolute;
  width: 3px;
  height: 3px;
  background: rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  transition: transform 0.3s linear;
}

main {
  flex: 1;
}

.eyebrow {
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
}

/* =========================
   6. ABOUT HERO
========================= */

.about-hero {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 5rem 2rem 6rem;
}

.about-hero h1 {
  max-width: 1000px;
  margin-bottom: 2rem;
  font-size: clamp(3.5rem, 8vw, 7rem);
  line-height: 0.95;
  letter-spacing: -0.08em;
}

.about-hero p:last-child {
  max-width: 720px;
  font-size: 1.2rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.65);
}

/* =========================
   7. MISSION
========================= */

.mission-section {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 5rem 2rem;
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: 4rem;
  align-items: start;
}

.mission-section h2 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  line-height: 0.95;
  letter-spacing: -0.06em;
}

.mission-section > p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.65);
}

/* =========================
   8. VALUES
========================= */

.values-section {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 2rem 6rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.value-card {
  padding: 2rem;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.value-card h3 {
  margin-bottom: 1rem;
  font-size: 1.25rem;
}

.value-card p {
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
}

/* =========================
   9. FOUNDER
========================= */

.founder-section {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto 5rem;
  padding: 2rem;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 3rem;
  align-items: center;
}

.founder-photo img {
  width: 100%;
  max-width: 360px;
  border-radius: 32px;
  object-fit: cover;
}

.founder-text h2 {
  margin-bottom: 1.5rem;
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 0.95;
  letter-spacing: -0.06em;
}

.founder-text p {
  max-width: 650px;
  margin-bottom: 1rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.8;
}

/* =========================
   10. FOOTER
========================= */

.footer {
  margin-top: auto;
  width: 100%;
  padding: 1.5rem 2rem;
  text-align: center;
  color: rgba(255, 255, 255, 0.35);
  font-size: 0.9rem;
}

/* =========================
   11. TABLET
========================= */

@media (max-width: 900px) {
  .mission-section,
  .founder-section {
    grid-template-columns: 1fr;
  }

  .values-section {
    grid-template-columns: 1fr;
  }
}

/* =========================
   12. MOBILE
========================= */

@media (max-width: 768px) {
  .about-hero {
    padding: 4rem 1.5rem;
  }

  .about-hero h1 {
    font-size: clamp(3rem, 15vw, 5rem);
    letter-spacing: -0.06em;
  }

  .mission-section,
  .values-section,
  .founder-section {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .founder-photo img {
    max-width: 100%;
  }

  .footer {
    padding: 1.25rem;
    font-size: 0.8rem;
  }
}