/* ABOUT CSS */

.gradient-text {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.about-hero {
  padding: 6rem 0 4rem;
  position: relative;
  overflow: hidden;
}

.orb-about-1 {
  width: 550px; height: 550px;
  background: rgba(91,60,245,0.09);
  top: -200px; right: -100px;
}
.orb-about-2 {
  width: 300px; height: 300px;
  background: rgba(37,99,235,0.07);
  bottom: -100px; left: -80px;
}

.about-hero-inner {
  position: relative; z-index: 1;
  max-width: 700px;
}

.about-hero h1 {
  font-size: clamp(2.5rem, 5.5vw, 4.5rem);
  margin: 0.75rem 0 1.25rem;
  line-height: 1.08;
}

.about-hero p {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 540px;
}

/* SPLIT LAYOUT */
.about-section { background: var(--bg); }
.about-section:nth-child(even) { background: white; }

.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-split-text h2 {
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  margin-bottom: 1.25rem;
}

.about-split-text p {
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 1rem;
  font-size: 1rem;
}

/* MISSION CARD */
.mission-card {
  background: var(--gradient);
  border-radius: var(--radius-lg);
  padding: 3rem 2.5rem;
  color: white;
}

.mission-quote {
  font-family: Georgia, serif;
  font-size: 5rem;
  line-height: 0.7;
  color: rgba(255,255,255,0.25);
  margin-bottom: 1rem;
}

blockquote {
  font-size: 1.15rem;
  line-height: 1.7;
  font-style: italic;
  color: rgba(255,255,255,0.9);
  margin-bottom: 1.5rem;
}

.mission-attr {
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.04em;
}

/* APPROACH */
.approach-section { background: white; }

.approach-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.approach-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  transition: transform 0.25s, box-shadow 0.25s;
}

.approach-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.approach-num {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1.8rem;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.75rem;
  line-height: 1;
}

.approach-card h3 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.approach-card p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* VALUES STRIP */
.values-strip {
  background: var(--text);
  padding: 2.5rem 0;
}

.values-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
  gap: 1rem;
}

.value-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255,255,255,0.7);
  padding: 0 1rem;
}

.value-icon { font-size: 1.1rem; }

.value-divider {
  width: 1px; height: 20px;
  background: rgba(255,255,255,0.15);
}

/* VISION */
.vision-section { background: var(--bg); }

.vision-split {
  direction: rtl;
}

.vision-split > * { direction: ltr; }

.vision-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
}

.vision-ring {
  width: 100px; height: 100px;
  border-radius: 50%;
  background: var(--gradient-soft);
  border: 2px solid rgba(91,60,245,0.15);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 2rem;
}

.vision-ring-inner {
  width: 70px; height: 70px;
  border-radius: 50%;
  background: var(--gradient);
  display: flex; align-items: center; justify-content: center;
}

.vision-stats {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.vs-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.9rem;
}

.vs-row:last-child { border: none; }
.vs-row span { color: var(--text-muted); }
.vs-row strong {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .about-split, .vision-split { grid-template-columns: 1fr; gap: 2.5rem; }
  .vision-split { direction: ltr; }
  .approach-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  .approach-grid { grid-template-columns: 1fr; }
  .values-row { flex-direction: column; }
  .value-divider { display: none; }
}
