/* ═══════════════════════════════════════════════════════════════
   lucidact-about.css — Styles for the About Us page
   ═══════════════════════════════════════════════════════════════ */

/* ─── HERO ───────────────────────────────────────── */
.about-hero {
  background: linear-gradient(135deg, #edfaf9 0%, #e0f7f6 50%, #edfaf4 100%);
  padding: 88px 0 96px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.about-hero::before {
  content: '';
  position: absolute;
  width: 700px; height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(10,175,170,.07) 0%, transparent 70%);
  top: -300px; left: 50%; transform: translateX(-50%);
  pointer-events: none;
}
.about-hero-inner {
  position: relative;
  max-width: 720px;
  margin: 0 auto;
}
.about-hero-eyebrow { margin-bottom: 18px; }
.about-hero h1 { color: var(--navy); margin-bottom: 22px; }
.about-hero p.lead {
  font-size: clamp(16px, 1.4vw, 19px);
  color: var(--slate);
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ─── MISSION & VISION ───────────────────────────── */
.about-mission { background: white; padding: 96px 0; }
.about-mission-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.about-mission-card {
  border-radius: var(--radius);
  padding: 48px 40px;
  position: relative;
  overflow: hidden;
}
.about-mission-card::before {
  content: '';
  position: absolute;
  width: 300px; height: 300px;
  border-radius: 50%;
  opacity: .07;
  top: -80px; right: -80px;
  pointer-events: none;
}
.about-mission-card--teal {
  background: linear-gradient(135deg, var(--blue-pale) 0%, #d4f5f3 100%);
  border: 1px solid rgba(10,175,170,.2);
}
.about-mission-card--teal::before { background: var(--blue); }
.about-mission-card--navy {
  background: var(--navy);
}
.about-mission-card--navy::before { background: var(--blue); }

.about-mission-icon {
  font-size: 36px;
  margin-bottom: 18px;
  display: block;
  line-height: 1;
}
.about-mission-card h2 {
  font-size: clamp(20px, 2vw, 26px);
  font-weight: 700;
  margin-bottom: 14px;
}
.about-mission-card--teal h2 { color: var(--navy); }
.about-mission-card--navy h2 { color: white; }
.about-mission-card p {
  font-size: 15.5px;
  line-height: 1.75;
  margin: 0;
}
.about-mission-card--teal p { color: var(--slate); }
.about-mission-card--navy p { color: var(--slate-light); }

/* ─── PROBLEM SECTION ────────────────────────────── */
.about-problem { background: var(--gray-50); padding: 96px 0; }
.about-problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}
.about-problem-card {
  background: white;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 36px 28px;
  transition: transform .2s, box-shadow .2s, border-color .2s;
}
.about-problem-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-sm);
  border-color: rgba(10,175,170,.3);
}
.about-problem-icon {
  font-size: 32px;
  margin-bottom: 16px;
  display: block;
}
.about-problem-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}
.about-problem-card p {
  font-size: 14.5px;
  color: var(--text-soft);
  line-height: 1.7;
  margin: 0;
}

/* ─── VALUES SECTION ─────────────────────────────── */
.about-values {
  background: var(--navy);
  padding: 96px 0;
}
.about-values .section-label { color: #4dd9d4; }
.about-values .section-intro h2 { color: white; }
.about-values .section-intro p { color: var(--slate-light); }

.about-values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 56px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius);
  overflow: hidden;
}
.about-value-item {
  padding: 40px 32px;
  border-right: 1px solid rgba(255,255,255,.1);
  transition: background .2s;
}
.about-value-item:last-child { border-right: none; }
.about-value-item:hover { background: rgba(10,175,170,.08); }

.about-value-num {
  font-size: 13px;
  font-weight: 800;
  color: var(--blue);
  letter-spacing: 1.5px;
  margin-bottom: 14px;
  display: block;
}
.about-value-item h3 {
  font-size: 17px;
  font-weight: 700;
  color: white;
  margin-bottom: 10px;
}
.about-value-item p {
  font-size: 14.5px;
  color: var(--slate-light);
  line-height: 1.7;
  margin: 0;
}

/* ─── RESPONSIVE ─────────────────────────────────── */
@media (max-width: 900px) {
  .about-stats-grid { grid-template-columns: repeat(2, 1fr); }
  .about-stat { border-right: none; border-bottom: 1px solid rgba(255,255,255,.1); }
  .about-stat:nth-child(odd) { border-right: 1px solid rgba(255,255,255,.1); }
  .about-stat:nth-last-child(-n+2) { border-bottom: none; }
  .about-mission-layout { grid-template-columns: 1fr; }
  .about-problem-grid { grid-template-columns: 1fr; }
  .about-values-grid { grid-template-columns: 1fr; }
  .about-value-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,.1); }
  .about-value-item:last-child { border-bottom: none; }
}

@media (max-width: 640px) {
  .about-mission-card { padding: 32px 24px; }
  .about-stats-grid { grid-template-columns: repeat(2, 1fr); }
  .about-stat:nth-child(odd) { border-right: 1px solid rgba(255,255,255,.1); }
}

/* ─── TEAM SECTION ───────────────────────────────── */
.about-team {
  background: var(--gray-50);
  padding: 96px 0 104px;
}

/* Three-column grid, collapses gracefully */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 64px;
}

/* ── Card shell ── */
.team-card {
  background: #f8fdfc;
  border: 1.5px solid rgba(10,175,170,.12);
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .25s cubic-bezier(.34,1.56,.64,1),
              box-shadow .25s ease,
              border-color .25s ease;
}
.team-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(10,175,170,.12), 0 4px 12px rgba(7,36,36,.06);
  border-color: rgba(10,175,170,.3);
}

/* ── Photo block ── */
.team-photo-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: linear-gradient(135deg, #e0f7f6 0%, #d4f0ee 100%);
  flex-shrink: 0;
}

/* Real photo (Sridhar) */
.team-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform .4s ease;
}
.team-card:hover .team-photo { transform: scale(1.04); }

/* Avatar placeholder (Grace, Del Priore) */
.team-avatar {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.team-avatar span {
  font-size: clamp(52px, 8vw, 80px);
  font-weight: 800;
  letter-spacing: -2px;
  opacity: .25;
  color: var(--navy);
  line-height: 1;
  user-select: none;
}
.team-avatar--grace {
  background: linear-gradient(140deg, #c8f0ee 0%, #a3e4e1 100%);
}
.team-avatar--delpriore {
  background: linear-gradient(140deg, #c5d9ee 0%, #a3c4e1 100%);
}

/* Role badge over photo */
.team-photo-badge {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(7,36,36,.82);
  backdrop-filter: blur(8px);
  color: #4dd9d4;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 100px;
  white-space: nowrap;
  border: 1px solid rgba(10,175,170,.3);
}

/* ── Card body ── */
.team-card-body {
  padding: 28px 28px 30px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}

.team-card-header { display: flex; flex-direction: column; gap: 4px; }

.team-card-body h3 {
  font-size: clamp(18px, 1.6vw, 21px);
  font-weight: 800;
  color: var(--navy);
  margin: 0;
  letter-spacing: -.3px;
}

.team-title {
  font-size: 12.5px;
  font-weight: 700;
  color: var(--blue);
  letter-spacing: .4px;
  text-transform: uppercase;
}

.team-bio {
  font-size: 14px;
  line-height: 1.75;
  color: var(--slate);
  margin: 0;
}

/* ── Skill tags ── */
.team-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 4px;
}
.team-tags span {
  font-size: 11.5px;
  font-weight: 600;
  background: rgba(10,175,170,.08);
  color: #0a8f8c;
  border: 1px solid rgba(10,175,170,.18);
  border-radius: 100px;
  padding: 4px 11px;
  white-space: nowrap;
  transition: background .15s, color .15s;
}
.team-card:hover .team-tags span {
  background: rgba(10,175,170,.13);
}

/* Engineering card: navy accent stripe */
.team-card--engineering {
  border-color: rgba(10,175,170,.2);
  position: relative;
}
.team-card--engineering::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), #4dd9d4);
  border-radius: 20px 20px 0 0;
  z-index: 1;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .team-grid .team-card:last-child {
    grid-column: 1 / -1;
    max-width: 560px;
    margin: 0 auto;
    width: 100%;
  }
  .team-grid .team-card:last-child .team-photo-wrap {
    aspect-ratio: 16 / 7;
  }
  .team-grid .team-card:last-child .team-photo {
    object-position: center 20%;
  }
}

@media (max-width: 640px) {
  .team-grid { grid-template-columns: 1fr; }
  .team-grid .team-card:last-child { grid-column: auto; max-width: 100%; }
  .team-grid .team-card:last-child .team-photo-wrap { aspect-ratio: 1 / 1; }
  .team-card-body { padding: 22px 20px 24px; }
}

/* ─── ABOUT HERO ACTIONS ─────────────────────────── */
.about-hero .hero-actions,
.hero-actions--center {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 8px;
}
