/* Inherits tokens from IndexStyle.css */

/* Hero tone for About */
.about-hero .hero-media { opacity: 0.22; }

/* Lede paragraph block */
.about-lede {
  margin: 0 auto 2rem;
  max-width: 70ch;
  color: var(--text);
  font-size: 1.05rem;
  line-height: 1.8;
}

/* Story cards */
.story-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.2rem;
  margin-top: 1.5rem;
}
.story-card {
  padding: 1.5rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 0.9px solid rgba(255, 255, 255, 0.06);
}

/* Principles */
.principles {
  background: var(--gradient-1);
}
.principles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.2rem;
}
.p-card {
  padding: 1.5rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.03);
  border: 0.9px solid rgba(255, 255, 255, 0.06);
  transition: transform .25s ease, border-color .25s ease, background .25s ease;
}
.p-card:hover { transform: translateY(-4px); background: rgba(255,255,255,.06); border-color: var(--accent); }
.p-icon {
  width: 42px; height: 42px; border-radius: 10px; display: grid; place-items: center;
  background: var(--gradient-2); color: var(--accent); margin-bottom: .75rem;
}
.p-card h3 { margin-bottom: .35rem; }

/* Process */
.process {
  background: var(--gradient-2);
}
.process-grid {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.2rem;
  counter-reset: step;
  padding-left: 0;
}
.proc-card {
  position: relative;
  padding: 1.4rem 1.2rem 1.2rem 3.2rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 0.9px solid rgba(255, 255, 255, 0.06);
}
.proc-card::before {
  counter-increment: step;
  content: counter(step);
  position: absolute; left: 1rem; top: 1rem;
  width: 28px; height: 28px; border-radius: 8px;
  display: grid; place-items: center;
  background: var(--gradient-1); color: var(--accent); font-weight: 700;
}

/* Team */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.2rem;
}
.team-card {
  padding: 1.5rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 0.9px solid rgba(255, 255, 255, 0.06);
  text-align: center;
}
.avatar {
  width: 64px; height: 64px; border-radius: 16px;
  margin: 0 auto .75rem; display: grid; place-items: center;
  background: var(--gradient-1); color: var(--accent); font-weight: 800;
  letter-spacing: .02em;
}

/* FAQ */
.faq details {
  padding: 1rem 1.2rem;
  border-radius: 14px;
  background: rgba(255,255,255,.03);
  border: 0.9px solid rgba(255,255,255,.06);
  margin-bottom: .75rem;
}
.faq summary {
  cursor: pointer;
  font-weight: 600;
}
.faq p { color: var(--text-muted); margin-top: .5rem; }

/* Responsive */
@media (max-width: 871.2px) {
  .about-lede { padding: 0 0.2rem; }
}
