.about-page {
  background:
    radial-gradient(circle at top right, rgba(255, 183, 77, 0.08), transparent 32%),
    linear-gradient(180deg, #0b2b49 0%, #08213a 100%);
}

.about-layout {
  z-index: 2;
  position: relative;
}

.about-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) 340px;
  gap: 28px;
  align-items: stretch;
}

.about-page .about-title {
  max-width: 12ch;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.08;
  letter-spacing: normal;
}

.about-lead {
  max-width: 18ch;
}

.founder-card {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.04);
}

.founder-image {
  width: 100%;
  min-height: 360px;
  object-fit: cover;
  object-position: center top;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.2);
}

.founder-meta {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.founder-name {
  font-size: 24px;
  font-weight: 800;
}

.founder-role,
.founder-location {
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.5;
}

.about-copy-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.about-stat-grid {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.about-stat-card {
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.04);
}

.about-stat-number {
  margin-bottom: 10px;
  font-size: 24px;
  font-weight: 800;
  color: #ffffff;
}

.about-stat-copy {
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.55;
}

@media screen and (max-width: 980px) {
  .about-hero {
    grid-template-columns: 1fr;
  }

  .founder-card {
    max-width: 420px;
  }

  .about-stat-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media screen and (max-width: 720px) {
  .about-copy-grid,
  .about-stat-grid {
    grid-template-columns: 1fr;
  }

  .founder-image {
    min-height: 280px;
  }
}
