/* ==========================================================
   Silakab — About Page
   ========================================================== */

/* ── Company Story ── */

#story .section-header {
  text-align: center;
}

.about-story {
  max-width: var(--max-text-width);
  margin-inline: auto;
  text-align: center;
}

.about-story p {
  color: var(--color-muted-light);
  margin-bottom: var(--space-lg);
  line-height: 1.75;
}

.about-story p:last-child {
  margin-bottom: 0;
}

/* ── Mission / Vision Cards ── */

.mv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
}

.mv-card {
  padding: var(--space-2xl);
  border-radius: var(--radius-lg);
  background: var(--color-dark-surface);
  border: var(--border-card-dark);
  position: relative;
  overflow: hidden;
}

.mv-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.mv-card--mission::before {
  background: var(--color-primary);
}

.mv-card--vision::before {
  background: var(--color-secondary);
}

.mv-card .text-caption {
  display: block;
  margin-bottom: var(--space-md);
}

.mv-card--mission .text-caption {
  color: var(--color-primary);
}

.mv-card--vision .text-caption {
  color: var(--color-secondary);
}

.mv-card h2 {
  font-size: var(--text-h3);
  margin-bottom: var(--space-lg);
}

.mv-card p {
  color: var(--color-muted-light);
  line-height: 1.75;
}

/* ── Why Licensing ── */

.licensing-intro {
  max-width: var(--max-text-width);
  margin-bottom: var(--space-2xl);
}

.licensing-intro p {
  color: var(--color-muted-light);
  margin-bottom: var(--space-lg);
  line-height: 1.75;
}

.licensing-benefits {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  margin-bottom: var(--space-2xl);
}

.licensing-benefit {
  display: flex;
  gap: var(--space-md);
  align-items: flex-start;
}

.licensing-benefit svg {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  color: var(--color-primary);
  margin-top: 2px;
}

.licensing-benefit strong {
  color: var(--color-white);
  display: block;
  margin-bottom: var(--space-xs);
}

.licensing-benefit span {
  color: var(--color-muted-light);
  font-size: var(--text-body-sm);
  line-height: 1.6;
}

.licensing-tagline {
  font-size: var(--text-h4);
  font-weight: 700;
  color: var(--color-white);
  font-style: italic;
}

/* ── Team Section ── */

.team-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  max-width: 640px;
  margin-inline: auto;
}

.team-card {
  text-align: center;
  padding: var(--space-2xl);
  border-radius: var(--radius-lg);
  background: var(--color-dark-surface);
  border: var(--border-card-dark);
}

.team-avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(0, 165, 235, 0.15), rgba(103, 57, 147, 0.15));
  border: 2px solid rgba(0, 165, 235, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-lg);
}

.team-avatar svg {
  width: 48px;
  height: 48px;
  color: var(--color-primary);
  opacity: 0.5;
}

.team-card h3 {
  font-size: var(--text-body);
  margin-bottom: var(--space-xs);
}

.team-card .team-title {
  color: var(--color-primary);
  font-size: var(--text-body-sm);
  font-weight: 600;
  margin-bottom: var(--space-md);
}

.team-card .team-bio {
  color: var(--color-muted-light);
  font-size: var(--text-body-sm);
  font-style: italic;
}

/* ── Responsive ── */

@media (max-width: 1024px) {
  .mv-grid {
    grid-template-columns: 1fr;
  }

  .licensing-benefits {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .team-grid {
    grid-template-columns: 1fr;
    max-width: 320px;
  }
}
