/* css/about.css */
#about {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 88px;
  align-items: start;
}

/* Photo side */
.about-visual {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: var(--bg-3);
  border: 1px solid var(--border);
}

.about-photo-wrap {
  width: 100%;
  height: 100%;
  position: relative;
}

.about-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.about-photo-fallback {
  display: none;
  position: absolute;
  inset: 0;
  align-items: center;
  justify-content: center;
  background: linear-gradient(160deg, #120824 0%, #1e0e3a 40%, #0d0d1a 100%);
}
.about-photo-fallback::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 60% 30%, rgba(139, 92, 246, 0.25) 0%, transparent 60%);
}
.about-initials {
  font-family: var(--font-display);
  font-size: 7rem;
  font-weight: 800;
  color: rgba(139, 92, 246, 0.2);
  letter-spacing: -0.04em;
  position: relative;
  z-index: 1;
  user-select: none;
}

.about-badge {
  position: absolute;
  bottom: 24px; left: 24px;
  background: rgba(8, 8, 8, 0.82);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  padding: 10px 18px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.badge-dot {
  display: block;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--green);
  animation: blink 2.5s ease-in-out infinite;
  flex-shrink: 0;
}
.badge-text {
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  color: var(--text-muted);
}

/* Content side */
.about-content { padding-top: 12px; }

.about-bio {
  font-size: 0.97rem;
  line-height: 1.9;
  color: rgba(240, 240, 240, 0.6);
  margin-bottom: 44px;
}
.about-bio strong {
  color: var(--white);
  font-weight: 500;
}

/* Skills */
.skills-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 20px;
}

.skill-tag {
  padding: 12px 16px;
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.78rem;
  color: var(--text-muted);
  letter-spacing: 0.04em;
  display: flex;
  align-items: center;
  gap: 10px;
  transition:
    border-color var(--transition-base),
    color var(--transition-base),
    background var(--transition-base);
  cursor: default;
}
.skill-tag:hover {
  border-color: rgba(139, 92, 246, 0.3);
  color: var(--text);
  background: var(--purple-glow-sm);
}
.skill-icon {
  font-size: 0.9rem;
  flex-shrink: 0;
}
