/* ============================================================
   ABOUT PAGE STYLES
   ============================================================ */
/* --- Story Section --- */
.story-section {
  position: relative;
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}

.story-content .overline {
  margin-bottom: 16px;
}

.story-content h2 {
  margin-bottom: 24px;
}

.story-content p {
  margin-bottom: 20px;
  font-size: 1rem;
  line-height: 1.8;
}

.story-content p:last-of-type {
  margin-bottom: 0;
}

.story-visual {
  position: relative;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.story-blob {
  width: 320px;
  height: 320px;
  background: var(--accent-gradient);
  border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  opacity: 0.12;
  animation: blob-morph 12s ease-in-out infinite;
  position: absolute;
}

@keyframes blob-morph {

  0%,
  100% {
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  }

  33% {
    border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%;
  }

  66% {
    border-radius: 50% 60% 30% 50% / 40% 30% 60% 70%;
  }
}

.story-blob-inner {
  width: 240px;
  height: 240px;
  background: rgba(6, 182, 212, 0.08);
  border: 1px solid rgba(6, 182, 212, 0.15);
  border-radius: var(--radius-xl);
  backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.story-year {
  font-family: var(--font-heading);
  font-size: 4rem;
  font-weight: 800;
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.story-year-label {
  font-size: 0.875rem;
  color: var(--text-muted);
  text-align: center;
  margin-top: 4px;
}

@media (min-width: 1024px) {
  .story-grid {
    grid-template-columns: 1fr 1fr;
    gap: 80px;
  }

  .story-visual {
    height: 500px;
  }

  .story-blob {
    width: 420px;
    height: 420px;
  }
}

/* --- Team Section --- */
.team-section {
  background: var(--bg-secondary);
}

.team-card {
  text-align: center;
  padding: 40px 28px;
}

.team-card-img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  margin: 0 auto 20px;
  overflow: hidden;
  border: 2px solid var(--glass-border);
  transition: border-color var(--transition-base), box-shadow var(--transition-base);
}

.glass-card:hover .team-card-img {
  border-color: rgba(6, 182, 212, 0.3);
  box-shadow: var(--glow-cyan);
}

.team-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-card h3 {
  font-size: 1.125rem;
  margin-bottom: 4px;
}

.team-card .team-role {
  font-size: 0.8125rem;
  color: var(--accent-cyan);
  font-weight: 500;
  margin-bottom: 16px;
}

.team-card .team-socials {
  display: flex;
  justify-content: center;
  gap: 8px;
}

.team-card .team-socials a {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  color: var(--text-muted);
  transition: color var(--transition-fast), background var(--transition-fast);
}

.team-card .team-socials a:hover {
  color: var(--accent-cyan);
  background: rgba(6, 182, 212, 0.1);
}

/* --- Timeline Section --- */
.timeline-section {
  position: relative;
}

.timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  padding-left: 40px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--glass-border);
}

.timeline-item {
  position: relative;
  margin-bottom: 48px;
  padding-left: 32px;
}

.timeline-item:last-child {
  margin-bottom: 0;
}

.timeline-dot {
  position: absolute;
  left: -40px;
  top: 4px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--accent-gradient);
  border: 3px solid var(--bg-primary);
  box-shadow: var(--glow-cyan);
  transform: translateX(-50%);
  left: -8px;
}

.timeline-year {
  display: inline-block;
  padding: 4px 14px;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--accent-cyan);
  background: rgba(6, 182, 212, 0.1);
  border: 1px solid rgba(6, 182, 212, 0.2);
  border-radius: var(--radius-full);
  margin-bottom: 12px;
}

.timeline-item h3 {
  font-size: 1.125rem;
  margin-bottom: 8px;
}

.timeline-item p {
  font-size: 0.9375rem;
  line-height: 1.7;
}

@media (min-width: 768px) {
  .timeline {
    padding-left: 0;
  }

  .timeline::before {
    left: 50%;
    transform: translateX(-50%);
  }

  .timeline-item {
    width: 50%;
    padding-left: 48px;
    padding-right: 0;
  }

  .timeline-item:nth-child(odd) {
    margin-left: 0;
  }

  .timeline-item:nth-child(even) {
    margin-left: auto;
  }

  .timeline-item:nth-child(odd) {
    padding-left: 0;
    padding-right: 48px;
    text-align: right;
  }

  .timeline-item:nth-child(even) {
    padding-left: 48px;
  }

  .timeline-dot {
    left: auto;
  }

  .timeline-item:nth-child(odd) .timeline-dot {
    right: -8px;
    left: auto;
  }

  .timeline-item:nth-child(even) .timeline-dot {
    left: -8px;
  }
}