/* ============================================================
   ABOUT PAGE — Minimal & Premium
   Cohesive with main site: dark bg, neon-yellow accent
   ============================================================ */

.about-page {
  color: #fff;
}

.about-main {
  position: relative;
  z-index: 1;
}

.about-hero {
  align-items: center;
  display: flex;
  justify-content: center;
  max-width: var(--size-100);
  padding: 240px 0 100px;
  position: relative;
  text-align: center;
  overflow: visible;
}

.about-section {
  padding-bottom: 120px;
}

.about-block-text {
  font-size: clamp(16px, 1.2vw, 18px);
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.6;
  margin-bottom: 20px;
}

.about-block-text:last-of-type {
  margin-bottom: 0;
}

.about-features {
  display: grid;
  gap: 30px;
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.about-feature {
  display: flex;
  gap: 20px;
  text-align: left;
}

.about-feature-num {
  color: #DDFF00;
  font-family: var(--font-section-header);
  font-weight: 700;
  font-size: 20px;
  line-height: 1.2;
}

.about-feature-title {
  font-size: 18px;
  color: #fff;
  margin-bottom: 8px;
  text-transform: uppercase;
  font-family: var(--font-section-header);
  font-weight: 700;
  letter-spacing: 0.03em;
}

.about-feature-desc {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.5;
  font-family: var(--font-clean-body);
}

.about-profile {
  display: flex;
  align-items: center;
  gap: clamp(30px, 4vw, 50px);
  text-align: left;
}

.about-profile-img {
  width: clamp(100px, 15vw, 140px);
  height: clamp(100px, 15vw, 140px);
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid rgba(221, 255, 0, 0.3);
  flex-shrink: 0;
}

.about-profile-name {
  font-size: clamp(20px, 2.5vw, 26px);
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 10px;
  font-family: var(--font-section-header);
  font-weight: 700;
  letter-spacing: 0.02em;
}

.about-profile-bio {
  font-size: clamp(15px, 1.2vw, 16px);
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.6;
  margin-bottom: 16px;
  font-family: var(--font-clean-body);
}

.about-profile-tag {
  font-size: 12px;
  color: rgba(221, 255, 0, 0.9);
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.15em;
  font-family: var(--font-clean-body);
}

@media (max-width: 768px) {
  .about-hero {
    padding: 180px 0 80px;
  }
  
  .about-profile {
    flex-direction: column;
    text-align: center;
    gap: 24px;
  }
}

