/* ===================================
   JROM About Page CSS
   =================================== */

.about-page { background: var(--cream-pale); }

/* Mission Section */
.mission-section {
  padding: 6rem 0;
  background: linear-gradient(160deg, var(--cream-pale) 0%, var(--cream-light) 100%);
}
.mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.mission-text .section-tag { margin-bottom: 1rem; }
.mission-text h2 { margin-bottom: 1.25rem; }
.mission-text p {
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 1rem;
  font-size: 1.05rem;
}

.mission-visual {
  position: relative;
  height: 420px;
}
.mission-blob {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--green-mist) 0%, var(--cream-mid) 100%);
  border-radius: 60% 40% 70% 30% / 50% 60% 40% 50%;
  animation: blobMorph 8s ease-in-out infinite;
}
@keyframes blobMorph {
  0%, 100% { border-radius: 60% 40% 70% 30% / 50% 60% 40% 50%; }
  33% { border-radius: 40% 60% 30% 70% / 60% 40% 70% 30%; }
  66% { border-radius: 70% 30% 50% 50% / 40% 70% 30% 60%; }
}
.mission-stats-floating {
  position: absolute;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}
.mission-stat {
  background: var(--cream-white);
  border: 1.5px solid var(--cream-mid);
  border-radius: var(--radius-lg);
  padding: 1.25rem 2rem;
  box-shadow: var(--shadow-md);
  min-width: 180px;
}
.mission-stat .num {
  font-size: 2rem;
  font-weight: 900;
  color: var(--green-primary);
}
.mission-stat .lbl {
  font-size: 0.82rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* Founders Deep Dive */
.founders-section {
  padding: 6rem 0;
  background: var(--cream-pale);
}
.founders-deep-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}
.founder-deep-card {
  background: var(--cream-white);
  border: 1.5px solid var(--cream-mid);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  gap: 2rem;
  align-items: flex-start;
  transition: all var(--transition-slow);
  cursor: default;
}
.founder-deep-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.founder-deep-avatar {
  width: 90px;
  height: 90px;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--cream-white);
  flex-shrink: 0;
  box-shadow: var(--shadow-md);
}
.fda-j { background: linear-gradient(135deg, #2d4a32, #5a8a62); }
.fda-r { background: linear-gradient(135deg, #3a5a40, #70a078); }
.fda-o { background: linear-gradient(135deg, #4a6a50, #82b48a); }
.fda-m { background: linear-gradient(135deg, #243c28, #4e7a55); }

.founder-deep-info h3 { font-size: 1.3rem; margin-bottom: 0.25rem; }
.founder-deep-role {
  display: inline-block;
  background: var(--green-mist);
  color: var(--green-primary);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
  margin-bottom: 1rem;
}
.founder-deep-bio {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}
.founder-deep-fun {
  margin-top: 1rem;
  font-size: 0.85rem;
  color: var(--text-light);
  font-style: italic;
}

/* Values Section */
.values-section {
  padding: 6rem 0;
  background: var(--green-deep);
}
.values-section .section-tag { background: rgba(255,255,255,0.1); color: var(--green-pale); }
.values-section h2 { color: var(--cream-white); }
.values-section .section-header p { color: var(--green-pale); }

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.value-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 2.2rem 1.75rem;
  backdrop-filter: blur(8px);
  transition: all var(--transition-slow);
}
.value-card:hover {
  background: rgba(255,255,255,0.12);
  transform: translateY(-4px);
}
.value-icon { font-size: 2.5rem; margin-bottom: 1rem; display: block; }
.value-card h3 { color: var(--cream-white); margin-bottom: 0.6rem; }
.value-card p { color: var(--green-pale); font-size: 0.9rem; line-height: 1.6; }

/* Timeline */
.timeline-section {
  padding: 6rem 0;
  background: var(--cream-light);
}
.timeline {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--green-pale), var(--green-primary));
  transform: translateX(-50%);
}
.timeline-item {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  margin-bottom: 2.5rem;
  position: relative;
}
.timeline-item:nth-child(even) { flex-direction: row-reverse; }
.timeline-item:nth-child(even) .timeline-content { text-align: right; }

.timeline-dot {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--green-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
  box-shadow: 0 0 0 4px var(--cream-light), 0 0 0 6px var(--green-pale);
  z-index: 1;
  position: relative;
  left: calc(50% - 24px);
  margin: 0 -24px;
}
.timeline-content {
  flex: 1;
  background: var(--cream-white);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  border: 1.5px solid var(--cream-mid);
  box-shadow: var(--shadow-sm);
}
.timeline-year {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--green-mid);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.35rem;
}
.timeline-content h4 { font-size: 1rem; margin-bottom: 0.35rem; }
.timeline-content p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.55; }

/* Responsive */
@media (max-width: 900px) {
  .mission-grid { grid-template-columns: 1fr; gap: 3rem; }
  .mission-visual { height: 280px; }
  .founders-deep-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .founder-deep-card { flex-direction: column; gap: 1.25rem; }
  .timeline::before { left: 24px; }
  .timeline-item, .timeline-item:nth-child(even) { flex-direction: column; }
  .timeline-item:nth-child(even) .timeline-content { text-align: left; }
  .timeline-dot { left: 0; margin: 0; }
}
