/* About Us page */

.about-main {
  padding-top: 72px;
}

.about-hero {
  background: linear-gradient(135deg, var(--navy) 0%, #1a3a8f 55%, #1a56db 100%);
  color: var(--white);
  padding: 72px 0 64px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.about-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 0%, black 30%, transparent 100%);
}

.about-hero .container {
  position: relative;
  z-index: 1;
}

.about-hero .label {
  justify-content: center;
  color: rgba(255, 255, 255, 0.9);
}

.about-hero .label::before {
  background: var(--sky-deep);
}

.about-hero h1 {
  font-size: clamp(34px, 4.5vw, 48px);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 12px;
}

.about-hero-lead {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.78);
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.75;
}

.about-body {
  padding: 72px 0 96px;
}

.about-intro {
  max-width: 760px;
  margin: 0 auto 64px;
  text-align: center;
}

.about-intro h2 {
  font-size: clamp(26px, 3vw, 32px);
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 16px;
  line-height: 1.2;
}

.about-intro p {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 14px;
}

.about-intro p:last-child {
  margin-bottom: 0;
}

.founder-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 32px;
  align-items: start;
  max-width: 900px;
  margin: 0 auto 64px;
  padding: 40px;
  background: linear-gradient(160deg, #ffffff 0%, #f8fbff 100%);
  border: 1px solid #c5d8f7;
  border-radius: 20px;
}

.founder-avatar {
  width: 96px;
  height: 96px;
  border-radius: 20px;
  background: linear-gradient(135deg, var(--navy), var(--blue));
  color: var(--white);
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 32px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.founder-content h2 {
  font-size: 24px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 4px;
}

.founder-role {
  font-size: 14px;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 14px;
}

.founder-tagline {
  font-size: 15px;
  color: var(--text-2);
  line-height: 1.7;
  margin-bottom: 16px;
  font-weight: 600;
}

.founder-bio {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 20px;
}

.founder-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.founder-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: var(--sky);
  border: 1px solid var(--sky-deep);
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}

.founder-link:hover {
  background: var(--blue);
  border-color: var(--blue);
  color: var(--white);
}

.about-cta {
  max-width: 720px;
  margin: 64px auto 0;
  padding: 48px 40px;
  background: linear-gradient(135deg, var(--navy), #1a56db);
  border-radius: 20px;
  text-align: center;
  color: var(--white);
}

.about-cta h2 {
  font-size: clamp(22px, 3vw, 28px);
  font-weight: 800;
  margin-bottom: 12px;
  color: var(--white);
}

.about-cta p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.75;
  margin-bottom: 24px;
}

.about-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  background: var(--white);
  color: var(--navy);
  border-radius: 8px;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.15);
}

.about-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
  .about-hero {
    padding: 56px 0 48px;
  }

  .about-body {
    padding: 48px 0 72px;
  }

  .founder-card {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 28px 24px;
  }

  .founder-avatar {
    margin: 0 auto;
  }

  .founder-links {
    justify-content: center;
  }

  .about-cta {
    padding: 36px 24px;
  }
}
