/* =============================================
   ABOUT PAGE STYLES
   ============================================= */

/* ---- ABOUT HERO ---- */
.about-hero {
  padding: 160px 0 100px;
  background: var(--dark);
  position: relative;
  overflow: hidden;
}

.about-hero::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(253,82,244,0.08) 0%, transparent 65%);
  right: -100px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}

.about-hero-inner {
  display: flex;
  align-items: center;
  gap: 80px;
}

.about-hero-copy {
  flex: 1 1 50%;
}

.about-hero-photo {
  flex: 0 0 46%;
  position: relative;
  z-index: 1;
}

.about-hero-photo img {
  width: 100%;
  display: block;
  position: relative;
  z-index: 1;
}

/* Pink glow ring behind the SVG */
.hero-photo-glow {
  position: absolute;
  inset: -20px;
  border-radius: 50%;
  background: radial-gradient(ellipse at center, rgba(253,82,244,0.25) 0%, rgba(253,82,244,0.1) 40%, transparent 70%);
  filter: blur(24px);
  z-index: 0;
  pointer-events: none;
}

/* Slide in from right on scroll */
.slide-in-right {
  opacity: 0;
  transform: translateX(60px);
  transition: opacity 0.8s cubic-bezier(0.4,0,0.2,1), transform 0.8s cubic-bezier(0.4,0,0.2,1);
}

.slide-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.about-hero .eyebrow { color: var(--pink-light); }
.about-hero .eyebrow::before { background: var(--pink-light); }

.about-hero h1 {
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}

.about-hero-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.75;
  max-width: 580px;
}

.mission-hero-text {
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  font-weight: 400;
  color: rgba(255,255,255,0.65);
  line-height: 1.75;
  max-width: 580px;
}

/* ---- MISSION STATEMENT ---- */
.mission-statement {
  padding: 80px 0;
  background: var(--white);
  border-bottom: 1px solid var(--border);
}

.mission-text {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 800;
  color: var(--dark);
  line-height: 1.5;
  letter-spacing: -0.01em;
  max-width: 820px;
}

/* ---- MISSION STRIP ---- */
.mission-strip {
  background: var(--dark-2);
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 48px 0;
}

.mission-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}

.mission-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  flex: 1;
  text-align: center;
  padding: 0 40px;
}

.stat-num {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 900;
  color: var(--white);
  letter-spacing: -0.03em;
  line-height: 1;
}

.stat-label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}

.mission-divider {
  width: 1px;
  height: 48px;
  background: rgba(255,255,255,0.1);
  flex-shrink: 0;
}

/* ---- FOUNDER STORY ---- */
.founder-story {
  padding: var(--section) 0;
  background: var(--off-white);
  border-top: 1px solid var(--border);
}

.founder-story-inner {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 80px;
  align-items: start;
}

.founder-story-text h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 900;
  color: var(--dark);
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 28px;
}

.founder-p {
  font-size: 0.97rem;
  color: var(--text);
  line-height: 1.8;
  margin-bottom: 16px;
}

.founder-proof {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px;
  position: sticky;
  top: 100px;
}

.proof-header {
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 16px;
}

.proof-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--border);
}

.proof-tags span {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--dark);
  background: var(--off-white);
  border: 1px solid var(--border);
  padding: 6px 14px;
  border-radius: 50px;
}

.proof-outcome {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.proof-outcome-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(253,82,244,0.08);
  border: 1px solid rgba(253,82,244,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.proof-outcome-icon svg {
  width: 18px;
  height: 18px;
  color: var(--pink);
}

.proof-outcome p {
  font-size: 0.875rem;
  color: var(--text);
  line-height: 1.75;
}

/* ---- TEAM SECTION ---- */
.team {
  padding: var(--section) 0;
  background: var(--white);
}

.team-header {
  margin-bottom: 72px;
}

.team-grid {
  display: flex;
  flex-direction: column;
  gap: 80px;
}

.team-card {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 72px;
  align-items: start;
}

.team-card--reverse {
  grid-template-columns: 1fr 380px;
}
.team-card--reverse .team-photo-wrap {
  order: 2;
}
.team-card--reverse .team-info {
  order: 1;
}

.team-photo-wrap {
  position: relative;
}

.team-photo-wrap::before {
  content: '';
  position: absolute;
  inset: -8px;
  border-radius: 20px;
  background: var(--grad);
  opacity: 0.15;
  z-index: 0;
}

.team-photo {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center top;
  border-radius: 16px;
  position: relative;
  z-index: 1;
  display: block;
}

.team-info {
  padding-top: 8px;
}

.team-name-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}

.team-name {
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--dark);
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 6px;
}

.team-title {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--pink);
  letter-spacing: 0.02em;
}

.social-btns {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.linkedin-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--off-white);
  border: 1px solid var(--border);
  color: #0a66c2;
  flex-shrink: 0;
  transition: all 0.2s var(--ease);
}
.linkedin-btn:hover {
  background: #0a66c2;
  color: var(--white);
  border-color: #0a66c2;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(10,102,194,0.3);
}
.linkedin-btn svg,
.email-btn svg {
  width: 20px;
  height: 20px;
}

.email-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--off-white);
  border: 1px solid var(--border);
  color: var(--pink);
  flex-shrink: 0;
  transition: all 0.2s var(--ease);
}
.email-btn:hover {
  background: var(--pink);
  color: var(--white);
  border-color: var(--pink);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(253,82,244,0.3);
}

.team-bio {
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.8;
  margin-bottom: 16px;
}

.team-specialties {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

.team-specialties span {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--pink);
  background: rgba(253,82,244,0.08);
  border: 1px solid rgba(253,82,244,0.2);
  padding: 6px 14px;
  border-radius: 50px;
}

/* ---- VALUES ---- */
.values {
  padding: var(--section) 0;
  background: var(--off-white);
  border-top: 1px solid var(--border);
}

.values-header {
  margin-bottom: 64px;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.value-item {
  background: var(--white);
  padding: 40px 32px;
  transition: background 0.2s var(--ease);
}
.value-item:hover { background: #fdf5ff; }

.value-num {
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  color: var(--pink);
  margin-bottom: 16px;
}

.value-item h3 {
  font-size: 1rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 12px;
  line-height: 1.3;
}

.value-item p {
  font-size: 0.88rem;
  color: var(--text);
  line-height: 1.7;
}

/* ---- ABOUT CTA ---- */
.about-cta {
  padding: var(--section) 0;
  background: var(--grad);
  position: relative;
  overflow: hidden;
}

.about-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(255,255,255,0.07) 0%, transparent 60%);
  pointer-events: none;
}

.about-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  position: relative;
  z-index: 1;
}

.about-cta .eyebrow { color: var(--pink-light); }
.about-cta .eyebrow::before { background: var(--pink-light); }

.about-cta h2 {
  color: var(--white);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin-bottom: 12px;
}

.about-cta > div > p {
  font-size: 1rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
  max-width: 480px;
}

/* ---- NAV ACTIVE STATE on about page ---- */
.nav-links a.active {
  color: var(--pink) !important;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 960px) {
  .about-hero-inner { flex-direction: column; gap: 48px; }
  .about-hero-photo { flex: none; width: 100%; max-width: 500px; margin: 0 auto; }

  .founder-story-inner { grid-template-columns: 1fr; gap: 48px; }
  .founder-proof { position: static; }

  .team-card,
  .team-card--reverse {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .team-card--reverse .team-photo-wrap,
  .team-card--reverse .team-info { order: unset; }

  .team-photo {
    aspect-ratio: 16 / 9;
    object-position: center 20%;
  }

  .values-grid { grid-template-columns: 1fr 1fr; }

  .about-cta-inner { flex-direction: column; align-items: flex-start; gap: 36px; }

  .mission-inner { flex-wrap: wrap; gap: 32px; }
  .mission-divider { display: none; }
  .mission-stat { flex: 0 0 calc(50% - 16px); }
}

@media (max-width: 640px) {
  .about-hero { padding: 120px 0 72px; }

  .team-photo { aspect-ratio: 1 / 1; }

  .values-grid { grid-template-columns: 1fr; }

  .mission-stat { flex: 0 0 100%; }
}
