/* ── ABOUT PAGE ── */

/* == HERO == */
.about-hero {
  padding: calc(var(--nav-h) + 80px) 0 72px;
  position: relative;
  overflow: hidden;
  background: #fff;
}
.about-hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% -15%, rgba(109,24,221,0.09) 0%, transparent 65%),
    radial-gradient(circle at 85% 70%, rgba(232,201,31,0.06) 0%, transparent 45%);
}
.about-hero-grid {
  position: absolute; inset: 0; z-index: 0;
  background-image:
    linear-gradient(rgba(109,24,221,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(109,24,221,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}
.about-hero > .container { position: relative; z-index: 1; }
.about-hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.about-hero-category {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--purple);
  margin-bottom: 20px;
  padding: 5px 12px;
  border-radius: var(--r-full);
  background: rgba(109,24,221,0.08);
  border: 1px solid rgba(109,24,221,0.15);
}
.about-hero h1 {
  font-size: clamp(2rem, 3.8vw, 3.4rem);
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}
.about-hero p {
  font-size: 1.1rem;
  color: var(--muted);
  line-height: 1.75;
  max-width: 500px;
  margin-bottom: 36px;
}
.about-stat-row {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  padding-top: 28px;
  border-top: 1px solid var(--border-lg);
}
.about-stat { display: flex; flex-direction: column; gap: 3px; }
.about-stat-num {
  font-size: 1.9rem;
  font-weight: 900;
  letter-spacing: -0.04em;
  color: var(--purple);
  line-height: 1;
}
.about-stat-lbl {
  font-size: 11px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* == MISSION == */
.mission-section {
  padding: 80px 0;
  text-align: center;
  background: #fff;
}
.mission-section h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  max-width: 680px;
  margin: 16px auto 20px;
  letter-spacing: -0.03em;
}
.mission-section p {
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 620px;
  margin: 0 auto;
  line-height: 1.8;
}

/* == TIMELINE == */
.timeline {
  position: relative;
  max-width: 720px;
  margin: 48px auto 0;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 20px;
  top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--purple), rgba(124,58,237,0.1));
}
.timeline-item {
  display: flex;
  gap: 28px;
  margin-bottom: 32px;
  position: relative;
}
.timeline-dot {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--grad);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
  box-shadow: 0 0 0 5px var(--purple-xxl), 0 0 0 6px var(--border);
  position: relative; z-index: 1;
}
.timeline-content { padding-top: 8px; }
.timeline-year {
  font-size: 10px;
  font-weight: 800;
  color: var(--purple);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 5px;
}
.timeline-content h4 { font-size: 1rem; font-weight: 700; margin-bottom: 5px; }
.timeline-content p  { font-size: 0.875rem; color: var(--muted); line-height: 1.65; margin: 0; }

/* == RECOGNITION GRID == */
.recognition-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.recognition-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 36px 24px 28px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow);
  transition: box-shadow 0.25s, transform 0.25s;
  gap: 0;
}
.recognition-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.recognition-img-wrap {
  width: 96px; height: 96px;
  border-radius: var(--r-lg);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
  flex-shrink: 0;
  padding: 10px;
  background: var(--bg-alt2);
  border: 1px solid var(--border-lg);
}
.recognition-img-wrap img {
  width: 100%; height: 100%;
  object-fit: contain;
}
.recognition-card h4 {
  font-size: 15px; font-weight: 800;
  color: var(--text); margin-bottom: 8px; line-height: 1.2;
}
.recognition-card p {
  font-size: 13px; color: var(--muted);
  line-height: 1.6; margin: 0;
}

/* == FOUNDERS == */
.founders-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-top: 48px;
}
.founder-card {
  display: flex;
  gap: 24px;
  padding: 32px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow);
  align-items: flex-start;
  transition: box-shadow 0.25s, transform 0.25s;
}
.founder-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.founder-photo {
  width: 88px; height: 88px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 3px solid var(--border);
  background: var(--bg-alt);
}
.founder-info { flex: 1; }
.founder-name { font-size: 1.1rem; font-weight: 800; margin-bottom: 3px; color: var(--text); }
.founder-role {
  font-size: 11px; font-weight: 700;
  color: var(--purple); text-transform: uppercase;
  letter-spacing: 0.08em; margin-bottom: 12px;
}
.founder-bio { font-size: 0.875rem; color: var(--muted); line-height: 1.7; margin-bottom: 14px; }
.founder-linkedin {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 12px; font-weight: 700; color: var(--purple);
  text-decoration: none;
  padding: 6px 14px; border-radius: var(--r);
  background: var(--purple-xxl); border: 1px solid var(--purple-xl);
  transition: background 0.2s;
}
.founder-linkedin:hover { background: var(--purple-xl); }

/* == INVESTORS == */
.investor-strip {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 40px;
}
.investor-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  width: 460px;
  padding: 40px 36px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-md);
  text-align: center;
  transition: box-shadow 0.2s, transform 0.2s;
}
.investor-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.investor-mark {
  height: 80px;
  width: 100%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.investor-mark img {
  max-height: 80px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
}
.investor-name { font-size: 17px; font-weight: 800; color: var(--text); }
.investor-type { font-size: 12px; color: var(--muted); font-weight: 500; margin-top: -8px; }

/* == PRESS == */
.press-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 40px;
}
.press-card {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 22px 20px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow);
  text-decoration: none;
  color: inherit;
  transition: box-shadow 0.2s, transform 0.2s, border-color 0.2s;
}
.press-card:hover {
  box-shadow: var(--shadow-md);
  border-color: rgba(124,58,237,0.25);
  transform: translateY(-2px);
}
.press-logo-wrap {
  height: 36px;
  display: flex;
  align-items: center;
  margin-bottom: 4px;
}
.press-logo-wrap img {
  max-height: 36px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
}
.press-pub {
  font-size: 10px; font-weight: 800;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--purple);
}
.press-headline {
  font-size: 13.5px; font-weight: 600;
  color: var(--text); line-height: 1.5; flex: 1;
}
.press-read { font-size: 12px; font-weight: 700; color: var(--muted); margin-top: 6px; }
.press-read:hover { color: var(--purple); }

/* == RESPONSIVE == */
@media (max-width: 900px) {
  .about-hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .about-hero-inner > div:last-child { display: none; }
  .founders-grid { grid-template-columns: 1fr; }
  .recognition-grid { grid-template-columns: repeat(2, 1fr); }
  .press-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .about-stat-row { gap: 20px; }
  .founder-card { flex-direction: column; align-items: center; text-align: center; }
  .recognition-grid { grid-template-columns: 1fr; }
  .press-grid { grid-template-columns: 1fr; }
}
