/* ========================================
   About Page Styles
   ======================================== */

/* ---- Story Section ---- */
.story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: center;
}

.story-text h3 {
  font-size: var(--text-2xl);
  margin-bottom: var(--space-6);
}

.story-text p {
  color: var(--text-secondary);
  margin-bottom: var(--space-4);
}

.story-visual {
  position: relative;
  height: 400px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
}

.story-visual-inner {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(0, 180, 216, 0.05) 0%, transparent 50%),
    linear-gradient(225deg, rgba(124, 58, 237, 0.05) 0%, transparent 50%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.story-logo {
  max-width: 320px;
  height: auto;
  filter: brightness(1.6) contrast(1.1);
}

/* ---- Mission & Vision ---- */
.mv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-8);
}

.mv-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: var(--space-10);
  position: relative;
  overflow: hidden;
}

.mv-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
}

.mv-card--mission::before {
  background: linear-gradient(90deg, #00b4d8, transparent);
}

.mv-card--vision::before {
  background: linear-gradient(90deg, #7c3aed, transparent);
}

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

.mv-card p {
  color: var(--text-secondary);
  line-height: 1.8;
}

/* ---- Values ---- */
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-6);
}

.value-card {
  text-align: center;
  padding: var(--space-8) var(--space-6);
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  transition: all var(--transition-base);
}

.value-card:hover {
  border-color: var(--border-accent);
  transform: translateY(-4px);
}

.value-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto var(--space-6);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-glow);
  border: 1px solid var(--border-accent);
  border-radius: var(--radius-lg);
  color: var(--accent-primary);
}

.value-icon svg {
  width: 28px;
  height: 28px;
}

.value-card h4 {
  font-size: var(--text-lg);
  margin-bottom: var(--space-3);
}

.value-card p {
  font-size: var(--text-sm);
  color: var(--text-muted);
}

/* ---- Founder ---- */
.founder {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--space-10);
  align-items: center;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: var(--space-10);
}

.founder-avatar {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: var(--accent-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: var(--text-4xl);
  font-weight: 700;
  color: #fff;
  overflow: hidden;
  border: 3px solid var(--border-accent);
  flex-shrink: 0;
}

.founder-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.founder-name {
  font-size: var(--text-2xl);
  margin-bottom: var(--space-2);
}

.founder-title {
  font-family: var(--font-mono);
  font-size: var(--text-sm);
  color: var(--accent-primary);
  margin-bottom: var(--space-4);
}

.founder-bio {
  color: var(--text-secondary);
  max-width: 600px;
}

/* ---- Why Choose Us ---- */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-8);
}

.why-item {
  display: flex;
  gap: var(--space-6);
  padding: var(--space-6);
  border-radius: var(--radius-lg);
  transition: background var(--transition-base);
}

.why-item:hover {
  background: var(--bg-card);
}

.why-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-glow);
  border: 1px solid var(--border-accent);
  border-radius: var(--radius-md);
  color: var(--accent-primary);
}

.why-icon svg {
  width: 24px;
  height: 24px;
}

.why-item h4 {
  font-size: var(--text-lg);
  margin-bottom: var(--space-2);
}

.why-item p {
  font-size: var(--text-sm);
  color: var(--text-muted);
}

/* ---- Responsive ---- */
@media (max-width: 768px) {
  .story {
    grid-template-columns: 1fr;
    gap: var(--space-8);
  }

  .story-visual {
    height: 250px;
  }

  .mv-grid {
    grid-template-columns: 1fr;
  }

  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .founder {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .founder-avatar {
    margin: 0 auto;
  }

  .founder-bio {
    margin: 0 auto;
  }

  .why-grid {
    grid-template-columns: 1fr;
  }
}

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