﻿/* =========================================
   MINDIESM — About Page (LIGHT THEME)
   ========================================= */

/* === ABOUT HERO === */
.about-hero {
  position: relative;
  background: var(--bg-white);
  padding: calc(var(--header-height) + 3rem) clamp(1.25rem, 5vw, 4rem) clamp(3rem, 7vw, 5rem);
  text-align: center;
  overflow: hidden;
}

.about-hero-ambient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 70% at 30% 30%, rgba(123,156,226,0.2) 0%, transparent 55%),
    radial-gradient(ellipse 60% 60% at 80% 80%, rgba(149,176,236,0.15) 0%, transparent 55%),
    radial-gradient(ellipse 50% 50% at 60% 60%, rgba(195,211,247,0.1) 0%, transparent 55%);
  pointer-events: none;
}

.about-hero-content {
  position: relative;
  z-index: 1;
  max-width: 680px;
  margin-inline: auto;
}

.about-hero-content .label   { margin-bottom: var(--sp-4); display: block; }
.about-hero-content .heading-xl { margin-bottom: var(--sp-6); }
.about-hero-content .body-xl  { color: var(--text-tertiary); max-width: 580px; margin-inline: auto; }

/* === ABOUT VISUAL === */
.about-visual-section {
  background: var(--bg-white);
  padding-block: clamp(3.5rem, 7vw, 5rem);
  position: relative;
  overflow: hidden;
}

.about-visual-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 7vw, 6rem);
  align-items: center;
}

.about-visual-img {
  position: relative;
  border-radius: var(--r-2xl);
  overflow: hidden;
  box-shadow: var(--shadow-2xl);
  aspect-ratio: 4/3;
}

.about-visual-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  border-radius: inherit;
}

.about-visual-img::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(255,255,255,0.15) 100%);
  z-index: 1;
  border-radius: inherit;
}

/* Floating mini stats on visual */
.about-stat-float {
  position: absolute;
  z-index: 2;
  background: var(--glass-white-strong);
  backdrop-filter: var(--blur-md);
  border: 1px solid rgba(255,255,255,0.9);
  border-radius: var(--r-xl);
  padding: var(--sp-4) var(--sp-5);
  box-shadow: var(--shadow-xl);
  display: flex;
  align-items: center;
  gap: var(--sp-3);
}

.about-stat-float--tl {
  top: var(--sp-6);
  left: var(--sp-6);
  animation: float-card 6s ease-in-out infinite;
}

.about-stat-float--br {
  bottom: var(--sp-6);
  right: var(--sp-6);
  animation: float-card 8s ease-in-out -2s infinite;
}

.asf-icon {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: var(--accent-violet-mist);
  display: flex;
  align-items: center;
  justify-content: center;
}
.asf-icon svg { width: 20px; height: 20px; fill: var(--accent-violet); }

.asf-text { display: flex; flex-direction: column; gap: 1px; }
.asf-num  { font-family: var(--font-primary); font-size: var(--text-xl); font-weight: var(--fw-bold); color: var(--text-primary); }
.asf-label { font-size: var(--text-xs); color: var(--text-muted); }

/* About text */
.about-text { display: flex; flex-direction: column; gap: var(--sp-6); }
.about-text .heading-md { color: var(--text-primary); }
.about-text .body-lg    { color: var(--text-tertiary); }

/* === MISSION SECTION === */
.about-mission {
  padding-block: clamp(3.5rem, 7vw, 5rem);
  background: var(--bg-base);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.mission-ambient {
  position: absolute;
  width: 700px; height: 500px;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(123,156,226,0.16) 0%, transparent 65%);
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
}

.mission-content {
  position: relative;
  z-index: 1;
  max-width: 650px;
  margin-inline: auto;
}

.mission-quote {
  font-family: var(--font-primary);
  font-size: clamp(1.3rem, 2.5vw, 2rem);
  line-height: var(--lh-snug);
  letter-spacing: var(--ls-tight);
  color: var(--text-primary);
  margin-bottom: var(--sp-6);
  font-style: italic;
}

.mission-quote .highlight {
  background: linear-gradient(135deg, var(--accent-dark) 0%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* === VALUES SECTION === */
.about-values {
  padding-block: clamp(3.5rem, 7vw, 6rem);
  background: var(--bg-white);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-5);
  margin-top: var(--sp-12);
}

.value-card {
  padding: clamp(1.75rem, 3vw, 2.5rem);
  background: var(--bg-base);
  border: 1px solid var(--border-light);
  border-radius: var(--r-xl);
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
  transition: all 0.4s var(--ease-out-expo);
  box-shadow: var(--shadow-xs);
  position: relative;
  overflow: hidden;
}

.value-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  border-radius: 0 0 var(--r-xl) var(--r-xl);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.value-card:hover {
  background: var(--bg-white);
  border-color: var(--border-medium);
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
}

.value-card:hover::after { opacity: 1; }

.vc--violet::after { background: linear-gradient(90deg, var(--accent-dark), var(--accent)); }
.vc--blue::after   { background: linear-gradient(90deg, var(--accent), var(--accent-light)); }
.vc--rose::after   { background: linear-gradient(90deg, var(--accent-deeper), var(--accent-dark)); }
.vc--sage::after   { background: linear-gradient(90deg, var(--accent-light), var(--accent-lighter)); }
.vc--sky::after    { background: linear-gradient(90deg, var(--accent-pale), var(--accent-light)); }
.vc--amber::after  { background: linear-gradient(90deg, var(--accent-dark), var(--accent)); }

.value-icon {
  width: 48px; height: 48px;
  border-radius: var(--r-lg);
  display: flex;
  align-items: center;
  justify-content: center;
}
.value-icon svg { width: 24px; height: 24px; }

.value-title { font-size: var(--text-lg); font-weight: var(--fw-bold); color: var(--text-primary); }
.value-desc  { font-size: var(--text-sm); color: var(--text-muted); line-height: var(--lh-relaxed); }

/* === RESPONSIVE === */
@media (max-width: 1024px) {
  .about-visual-grid { grid-template-columns: 1fr; }
  .about-visual-img { max-width: 600px; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .values-grid { grid-template-columns: 1fr; }
  .about-stat-float { display: none; }
}

