/* ─── PAGE HERO ──────────────────────────────────────── */
.about-hero {
  margin-top: 72px;
  background: linear-gradient(135deg, var(--gl-navy) 0%, var(--gl-navy-mid) 60%, #1a4a8a 100%);
  padding: 80px 0 96px;
  position: relative;
  overflow: hidden;
}
.about-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%233B9EFF' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.about-hero__inner {
  position: relative; z-index: 1;
  display: flex; flex-direction: column; align-items: center;
  text-align: center; gap: 20px;
}
.about-hero__tag {
  display: inline-block;
  background: rgba(59,158,255,0.2);
  color: var(--gl-blue-light);
  font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 5px 16px; border-radius: 100px;
  border: 1px solid rgba(59,158,255,0.3);
}
.about-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800; color: white; line-height: 1.15;
  max-width: 720px;
}
.about-hero h1 span { color: var(--gl-blue-light); }
.about-hero p {
  color: rgba(255,255,255,0.72);
  font-size: 1.05rem; max-width: 580px; line-height: 1.75;
}
.about-hero__bread {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.82rem; color: rgba(255,255,255,0.45);
  margin-top: 8px;
}
.about-hero__bread a { color: rgba(255,255,255,0.55); text-decoration: none; transition: color 0.15s; }
.about-hero__bread a:hover { color: var(--gl-blue-light); }
.about-hero__bread span { color: rgba(255,255,255,0.3); }

/* ─── CEO MESSAGE ────────────────────────────────────── */
.about-ceo {
  padding: 96px 0;
  background: white;
}
.about-ceo__inner {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 72px;
  align-items: start;
}
.about-ceo__photo-wrap {
  position: relative;
}
.about-ceo__photo {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 3/4;
  box-shadow: 0 20px 60px rgba(13,110,253,0.15), 0 4px 16px rgba(0,0,0,0.08);
}
.about-ceo__photo img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: top;
  display: block;
}
.about-ceo__photo-badge {
  position: absolute;
  bottom: -16px; left: 50%;
  transform: translateX(-50%);
  background: var(--gl-blue);
  color: white;
  font-size: 0.82rem; font-weight: 700;
  padding: 8px 22px;
  border-radius: 100px;
  white-space: nowrap;
  box-shadow: 0 4px 16px rgba(13,110,253,0.35);
}

.about-label {
  display: inline-block;
  background: var(--gl-blue-pale);
  color: var(--gl-blue);
  font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 5px 14px; border-radius: 100px;
  margin-bottom: 18px;
}
.about-ceo__text h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 800; color: var(--gl-navy);
  line-height: 1.2; margin-bottom: 24px;
}
.about-ceo__text h2 em {
  font-style: normal;
  color: var(--gl-blue);
}
.about-ceo__text p {
  font-size: 0.97rem; color: var(--gl-muted);
  line-height: 1.8; margin-bottom: 16px;
}

/* ─── MISSION / VISION / VALUES ─────────────────────── */
.about-pillars {
  padding: 88px 0;
  background: var(--gl-off-white);
}
.about-pillars__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 52px;
}
.about-pillar {
  background: white;
  border: 1px solid var(--gl-border);
  border-radius: var(--radius-md);
  padding: 36px 28px;
  transition: box-shadow 0.25s, transform 0.25s;
  position: relative; overflow: hidden;
}
.about-pillar::after {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--gl-blue);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.25s ease;
}
.about-pillar:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
}
.about-pillar:hover::after { transform: scaleX(1); }
.about-pillar__icon {
  width: 56px; height: 56px;
  background: var(--gl-blue-pale);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  color: var(--gl-blue);
  margin-bottom: 20px;
  transition: all 0.25s;
}
.about-pillar__icon svg { width: 28px; height: 28px; }
.about-pillar:hover .about-pillar__icon { background: var(--gl-blue); color: white; }
.about-pillar h3 {
  font-family: var(--font-display);
  font-size: 1.1rem; font-weight: 700;
  color: var(--gl-navy); margin-bottom: 12px;
}
.about-pillar p {
  font-size: 0.9rem; color: var(--gl-muted); line-height: 1.7;
}

/* ─── TEAM ───────────────────────────────────────────── */
.about-team {
  padding: 88px 0 100px;
  background: white;
}
.about-team__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 52px;
}
.about-team__empty {
  grid-column: 1 / -1;
  text-align: center;
  color: var(--gl-muted);
  font-size: 0.95rem;
  padding: 48px 0;
}

.team-card {
  background: white;
  border: 1px solid var(--gl-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  display: flex; flex-direction: column;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.5s ease, transform 0.5s ease, box-shadow 0.25s ease;
}
.team-card.is-visible { opacity: 1; transform: translateY(0); }
.team-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
}

.team-card__photo {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #e8eef5;
}
.team-card__photo img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: top;
  display: block;
  transition: transform 0.4s ease;
}
.team-card:hover .team-card__photo img { transform: scale(1.04); }

.team-card__placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  background: #dde5ef;
  color: #a0aec0;
}
.team-card__placeholder svg { width: 56px; height: 56px; }

.team-card__body {
  padding: 18px 20px 20px;
  border-top: 1px solid var(--gl-border);
  text-align: center;
}
.team-card__title {
  font-family: var(--font-display);
  font-size: 0.88rem; font-weight: 700;
  color: var(--gl-navy);
  line-height: 1.4; margin-bottom: 6px;
}
.team-card__name {
  font-size: 0.8rem; font-weight: 600;
  color: var(--gl-blue);
  text-transform: uppercase; letter-spacing: 0.06em;
}

/* ── Teaser row — blurred peek ── */
.team-card--teaser {
  position: relative;
  pointer-events: none;
  user-select: none;
  max-height: 120px;
  overflow: hidden;
  filter: blur(4px);
}
.team-card--teaser .team-card__body {
  display: none;
}
.team-card--teaser::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.85) 60%, white 100%);
  border-radius: var(--radius-md);
  z-index: 2;
}

/* ── Hidden cards (beyond teaser row) ── */
.team-card--hidden {
  display: none;
}

/* Show More button area */
.about-team__show-more {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

.about-team__show-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 32px;
  background: var(--gl-blue);
  color: white;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
.about-team__show-btn:hover {
  background: var(--gl-blue-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(13,110,253,0.35);
}
.about-team__show-btn svg {
  width: 18px;
  height: 18px;
  transition: transform 0.2s ease;
}
.about-team__show-btn:hover svg {
  transform: translateY(2px);
}

/* ─── Responsive ─────────────────────────────────────── */
@media (max-width: 960px) {
  .about-ceo__inner { grid-template-columns: 1fr; gap: 48px; }
  .about-ceo__photo-wrap { max-width: 320px; margin: 0 auto; }
  .about-pillars__grid { grid-template-columns: 1fr 1fr; }
  .about-team__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 580px) {
  .about-pillars__grid { grid-template-columns: 1fr; }
  .about-team__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 400px) {
  .about-team__grid { grid-template-columns: 1fr; }
}