.about-section {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  background:
    radial-gradient(circle at 14% 24%, rgba(217, 255, 102, 0.1), transparent 27%),
    radial-gradient(circle at 82% 18%, rgba(116, 160, 178, 0.14), transparent 32%),
    linear-gradient(180deg, #090909 0%, #111111 48%, #070707 100%);
  border-top: 1px solid var(--border-soft);
}

.about-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: linear-gradient(to bottom, transparent, #000 16%, #000 84%, transparent);
}

.about-shell {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 48px));
  min-height: 100vh;
  display: grid;
  grid-template-columns: 360px minmax(0, 1fr);
  gap: 54px;
  align-items: center;
  margin: 0 auto;
  padding: 118px 0 104px;
}

.about-profile-card {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.018)),
    #161616;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 6px;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.48);
}

.about-profile-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(135deg, rgba(217, 255, 102, 0.12), transparent 44%),
    radial-gradient(circle at 50% 12%, rgba(255, 255, 255, 0.1), transparent 34%);
}

.about-photo-frame {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #101010;
}

.about-photo-frame img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  filter: saturate(0.9) contrast(1.04);
}

.about-photo-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 52%, rgba(0, 0, 0, 0.72)),
    radial-gradient(circle at center, transparent 38%, rgba(0, 0, 0, 0.22));
  pointer-events: none;
}

.about-profile-content {
  position: relative;
  padding: 22px 22px 18px;
}

.about-role {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  padding: 4px 9px;
  color: #101010;
  background: #d9ff66;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0;
}

.about-profile-content h2 {
  margin-top: 16px;
  color: var(--text-main);
  font-size: 2rem;
  line-height: 1;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.about-profile-content p {
  margin-top: 12px;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.about-stats {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.08);
}

.about-stats div {
  min-width: 0;
  padding: 16px 12px;
  background: rgba(0, 0, 0, 0.25);
}

.about-stats strong {
  display: block;
  color: #d9ff66;
  font-size: 1.55rem;
  line-height: 1;
  font-weight: 900;
}

.about-stats span {
  display: block;
  margin-top: 7px;
  color: var(--text-soft);
  font-size: 0.72rem;
  line-height: 1.25;
  font-weight: 700;
}

.about-content {
  min-width: 0;
}

.about-header {
  max-width: 780px;
}

.about-header h2 {
  color: var(--text-title);
  font-size: 2.65rem;
  line-height: 1.06;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

.about-text p {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.75;
}

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

.about-highlights article {
  min-height: 156px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 6px;
}

.about-highlights h3 {
  color: var(--text-main);
  font-size: 0.96rem;
  line-height: 1.25;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.about-highlights p {
  margin-top: 10px;
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.55;
}

.about-tools {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 28px;
}

.about-tools span {
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  color: #d8d8d8;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0;
}

.about-contact {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 10px;
  margin-top: 30px;
}

.about-link {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 10px 12px;
  color: #d9ff66;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(217, 255, 102, 0.22);
  border-radius: 4px;
  font-size: 0.84rem;
  font-weight: 900;
  letter-spacing: 0;
  text-align: center;
  transition:
    color 0.2s ease,
    background-color 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.about-link .icon {
  width: 21px;
  height: 21px;
  color: #d9ff66;
  opacity: 0.95;
  transition:
    color 0.2s ease,
    transform 0.2s ease;
}

.about-link:not(.is-disabled):hover {
  color: #101010;
  background: #d9ff66;
  border-color: #d9ff66;
  box-shadow: 0 0 0 3px rgba(217, 255, 102, 0.08);
}

.about-link:not(.is-disabled):hover .icon {
  color: #101010;
  transform: translateY(-1px) scale(1.04);
}

.about-link.is-disabled {
  color: #858585;
  border-color: rgba(255, 255, 255, 0.1);
  cursor: default;
}

@media (max-width: 1200px) {
  .about-shell {
    width: min(920px, calc(100% - 44px));
    grid-template-columns: 320px minmax(0, 1fr);
    gap: 34px;
  }

  .about-header h2 {
    font-size: 2.2rem;
  }

  .about-text,
  .about-highlights {
    grid-template-columns: 1fr;
  }

  .about-highlights article {
    min-height: 0;
  }
}

@media (max-width: 900px) {
  .about-shell {
    width: min(680px, calc(100% - 32px));
    min-height: auto;
    grid-template-columns: 1fr;
    padding: 72px 0;
  }

  .about-profile-card {
    max-width: 380px;
  }

  .about-header h2 {
    font-size: 2rem;
  }

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

@media (max-width: 560px) {
  .about-shell {
    width: calc(100% - 28px);
  }

  .about-profile-card {
    max-width: none;
  }

  .about-header h2 {
    font-size: 1.72rem;
  }

  .about-stats,
  .about-contact {
    grid-template-columns: 1fr;
  }

  .about-stats div {
    padding: 14px 16px;
  }
}
