/* about.css — styles specific to about.html */

/* Active nav link */
.nav-active {
  color: var(--brand) !important;
  font-weight: 600;
}

/* ── Page Hero ─────────────────────────────────────── */
.about-hero {
  padding: 80px 0 72px;
  background: linear-gradient(160deg, #f0f4ff 0%, #fff 55%);
  border-bottom: 3px solid var(--brand);
}
.about-hero-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: center;
}
.about-eyebrow {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--brand);
  margin: 0 0 10px;
}
.about-hero h1 {
  font-size: 48px;
  line-height: 1.1;
  margin: 0 0 16px;
  color: var(--ink);
}
.about-hero .lead {
  font-size: 17px;
  color: #374151;
  max-width: 540px;
  margin: 0;
}
.about-hero-stat-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
  min-width: 200px;
}
.about-stat {
  display: flex;
  flex-direction: column;
  border-left: 4px solid var(--accent-green);
  padding-left: 14px;
}
.about-stat-num {
  font-size: 28px;
  font-weight: 700;
  color: var(--brand);
  line-height: 1;
}
.about-stat-label {
  font-size: 13px;
  color: var(--muted);
  margin-top: 2px;
}

/* ── Our Story ─────────────────────────────────────── */
.about-story {
  padding: 96px 0;
  background: #fff;
  border-bottom: 1px solid var(--line);
}
.story-inner {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 64px;
  align-items: start;
}
.story-text h2 {
  font-size: 34px;
  margin: 0 0 20px;
  background: linear-gradient(90deg, var(--brand) 0%, var(--accent-violet) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.story-text p {
  color: #374151;
  font-size: 15px;
  line-height: 1.75;
  margin: 0 0 16px;
}
.story-quote {
  margin: 28px 0 0;
  padding: 20px 24px;
  border-left: 4px solid var(--accent-violet);
  background: #f5f0ff;
  border-radius: 0 10px 10px 0;
  font-size: 15px;
  font-style: italic;
  color: #1a1a2e;
  line-height: 1.65;
}
.story-quote cite {
  display: block;
  margin-top: 10px;
  font-style: normal;
  font-size: 13px;
  font-weight: 600;
  color: var(--brand);
}

.story-values {
  background: var(--surface);
  border: 2px solid var(--line);
  border-radius: 14px;
  padding: 28px;
  position: sticky;
  top: 96px;
}
.story-values h3 {
  font-size: 18px;
  margin: 0 0 20px;
  color: var(--brand);
}
.values-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.values-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.val-icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  stroke: var(--brand);
  margin-top: 1px;
}
.values-list strong {
  display: block;
  font-size: 14px;
  color: var(--ink);
  margin-bottom: 3px;
}
.values-list p {
  margin: 0;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
}

/* ── Team ──────────────────────────────────────────── */
.about-team {
  padding: 96px 0;
  background: var(--surface);
  border-top: 1px solid var(--line);
}
.about-team h2 {
  font-size: 34px;
  margin: 0 0 8px;
  background: linear-gradient(90deg, var(--brand) 0%, var(--accent-violet) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.team-sub {
  font-size: 15px;
  color: #4b5563;
  max-width: 640px;
  margin: 0 0 40px;
}
.team-group-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--muted);
  font-weight: 600;
  margin: 0 0 16px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 8px;
}
.team-grid {
  display: grid;
  gap: 20px;
  margin-bottom: 48px;
}
.leadership-grid {
  grid-template-columns: repeat(2, 1fr);
}
.ops-grid {
  grid-template-columns: repeat(4, 1fr);
}

/* Team card */
.team-card {
  background: #fff;
  border: 2px solid var(--line);
  border-radius: 14px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: all .25s ease;
}
.team-card:hover {
  border-color: var(--brand);
  box-shadow: 0 8px 28px rgba(25,38,255,.1);
  transform: translateY(-2px);
}
.team-card.featured {
  flex-direction: row;
  gap: 24px;
  align-items: flex-start;
}

/* Photo placeholder */
.team-photo.placeholder {
  width: 100%;
  aspect-ratio: 1/1;
  background: #eef1ff;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.team-photo.placeholder svg {
  width: 70%;
  height: 70%;
}
.team-card.featured .team-photo.placeholder {
  width: 120px;
  height: 120px;
  flex-shrink: 0;
  border-radius: 12px;
}
.team-photo.placeholder.small {
  width: 100%;
  aspect-ratio: 1/1;
  max-height: 140px;
}

/* Team info */
.team-info h4 {
  font-size: 18px;
  margin: 0 0 2px;
  color: var(--ink);
}
.team-title {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--brand);
  display: block;
  margin-bottom: 10px;
}
.team-info p {
  font-size: 13px;
  color: #4b5563;
  line-height: 1.6;
  margin: 0;
}

/* ── Responsive ────────────────────────────────────── */
@media (max-width: 980px) {
  .about-hero-inner {
    grid-template-columns: 1fr;
  }
  .about-hero-stat-col {
    flex-direction: row;
    flex-wrap: wrap;
  }
  .story-inner {
    grid-template-columns: 1fr;
  }
  .story-values {
    position: static;
  }
  .leadership-grid {
    grid-template-columns: 1fr;
  }
  .ops-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .team-card.featured {
    flex-direction: column;
  }
  .team-card.featured .team-photo.placeholder {
    width: 100px;
    height: 100px;
  }
}
@media (max-width: 640px) {
  .about-hero h1 {
    font-size: 32px;
  }
  .ops-grid {
    grid-template-columns: 1fr 1fr;
  }
}
