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

.about-hero {
  position: relative;
  min-height: 40vh;
  display: flex;
  align-items: center;
  padding: 160px 0 80px;
  overflow: hidden;
}

.about-hero .hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.about-hero .hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
}

.about-hero .hero-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
          rgba(10, 22, 40, 0.55) 0%,
          rgba(10, 22, 40, 0.85) 100%);
}

.about-hero .hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
}

.about-hero-inner {
  max-width: 900px;
  text-align: center;
  margin: 0 auto;
}

.about-hero-inner h1 {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 20px;
  color: var(--text-primary);
}

.about-hero-inner .hero-sub {
  font-size: var(--font-size-lg);
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 860px;
  margin: 0 auto;
}

/* Mission section */
#mission .section-header p {
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
}

.mission-second-para {
  margin-top: 20px;
}

/* Problem split */
.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.about-text h2 {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.3;
  margin-bottom: 16px;
}

.about-text p {
  font-size: 15px;
  color: #5a6577;
  line-height: 1.7;
}

.problem-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.problem-card {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: var(--radius);
  padding: 20px;
  transition: all 0.3s ease;
}

.problem-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.problem-card .material-symbols-outlined {
  font-size: 22px;
  color: var(--blue);
  margin-bottom: 8px;
}

.problem-card strong {
  display: block;
  font-size: 14px;
  color: var(--navy);
  margin-bottom: 4px;
}

.problem-card p {
  font-size: 12px;
  color: #6b7a8d;
  line-height: 1.5;
}

/* Lifecycle steps */
.lifecycle-steps {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-top: 48px;
  flex-wrap: wrap;
}

.lifecycle-step {
  text-align: center;
  flex: 1;
  min-width: 150px;
  max-width: 200px;
}

.lifecycle-number {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--teal));
  color: #fff;
  font-weight: 800;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
}

.lifecycle-step h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 6px;
}

.lifecycle-step p {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* Leadership section */
.leadership-section {
  padding: 0 !important;
}

.leadership-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  max-width: var(--container-max);
  margin: 0 auto;
}

.leadership-photo {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0 24px 120px 48px;
}

.leadership-photo > img:first-child {
  width: 320px;
  height: auto;
  display: block;
  -webkit-mask-image: linear-gradient(to bottom, black 60%, transparent 100%);
  mask-image: linear-gradient(to bottom, black 60%, transparent 100%);
}

.founder-signature {
  height: 100px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.8;
  margin-top: -100px;
}

.leadership-attr-name {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin-top: 8px;
}

.leadership-attr-title {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.45);
  font-weight: 500;
  margin-bottom: 10px;
}

.leadership-content {
  padding: 24px 56px 100px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.leadership-heading {
  font-size: var(--font-size-4xl);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 28px;
}

/* Quote block */
.leadership-quote-block {
  position: relative;
  margin-bottom: 24px;
  padding-top: 8px;
}

.quote-watermark {
  position: absolute;
  top: -20px;
  left: -10px;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 140px;
  line-height: 1;
  color: rgba(30, 144, 255, 0.1);
  font-weight: 700;
  user-select: none;
  pointer-events: none;
  z-index: 0;
}

.leadership-quote-line {
  position: relative;
  z-index: 1;
  font-size: clamp(17px, 1.8vw, 21px);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  margin-bottom: 4px;
}

.leadership-quote-line strong {
  font-weight: 700;
}

.leadership-closer {
  position: relative;
  z-index: 1;
  font-size: clamp(20px, 2.2vw, 26px);
  font-weight: 700;
  margin-top: 12px;
  letter-spacing: -0.01em;
  background: linear-gradient(135deg, var(--blue), #5BB5FF);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Bio */
.leadership-bio {
  font-size: 18px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.7;
  margin-bottom: 0;
}

.founder-icons {
  display: flex;
  align-items: center;
  gap: 12px;
}

.founder-icon {
  color: var(--blue);
  text-decoration: none;
  display: flex;
  align-items: center;
  transition: opacity 0.2s ease;
}

.founder-icon .material-symbols-outlined {
  font-size: 24px;
}

.founder-icon:hover {
  opacity: 0.7;
}

/* Hero link */
.about-hero-inner .hero-sub a {
  color: var(--blue);
  text-decoration: none;
  font-weight: 500;
}

.about-hero-inner .hero-sub a:hover {
  text-decoration: underline;
}

/* Lifecycle heading */
.lifecycle-heading {
  text-align: center;
  font-size: 20px;
  font-weight: 700;
  color: var(--text-secondary);
  margin-top: 48px;
  margin-bottom: 0;
  letter-spacing: 0.02em;
}

/* Our Approach */
.approach-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  max-width: 900px;
  margin: 40px auto 0;
}

.approach-card {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all 0.3s ease;
}

.approach-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  border-color: rgba(30, 144, 255, 0.15);
}

.approach-card .material-symbols-outlined {
  font-size: 28px;
  color: var(--blue);
  margin-bottom: 12px;
}

.approach-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}

.approach-card p {
  font-size: 14px;
  color: #5a6577;
  line-height: 1.7;
}

.approach-card a {
  color: var(--blue);
  text-decoration: none;
}

.approach-card a:hover {
  text-decoration: underline;
}

/* About text secondary paragraph */
.about-text p + p {
  margin-top: 12px;
}

.about-text a {
  color: var(--blue);
  text-decoration: none;
  font-weight: 500;
}

.about-text a:hover {
  text-decoration: underline;
}

/* CTA links */
.final-cta p a {
  color: var(--blue);
  text-decoration: none;
  font-weight: 500;
}

.final-cta p a:hover {
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
  .about-hero {
    padding: 120px 0 60px;
  }
  .about-split {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .problem-cards {
    grid-template-columns: 1fr;
  }
  .lifecycle-steps {
    flex-direction: column;
    align-items: center;
  }
  .approach-grid {
    grid-template-columns: 1fr;
  }
  .approach-card {
    padding: 24px;
  }
  .leadership-grid {
    grid-template-columns: 1fr;
  }
  .leadership-photo {
    max-height: 400px;
  }
  .leadership-content {
    padding: 32px 24px;
  }
  .leadership-heading {
    font-size: clamp(1.4rem, 5vw, 2rem);
  }
  .quote-watermark {
    font-size: 100px;
  }
}
