.about-layout {
  display: flex;
  align-items: flex-start;
  gap: 64px;
  margin-top: 48px;
}

.about-content {
  flex: 3;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.about-text-main {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.75;
}

.about-text-sub {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.35);
  line-height: 1.75;
}

.about-text-detail {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.25);
  line-height: 1.75;
  margin-bottom: 8px;
}

.about-text-detail strong {
  color: rgba(255, 255, 255, 0.5);
  font-weight: 600;
}

/* Capabilities grid */
.about-capabilities {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 16px 0 12px;
}

.capability-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 14px 16px;
  border: 1px solid rgba(139, 149, 165, 0.06);
  border-radius: 6px;
  background: rgba(16, 16, 24, 0.4);
  transition: border-color 0.3s, background 0.3s, transform 0.3s;
}

.capability-item:hover {
  border-color: rgba(139, 149, 165, 0.15);
  background: rgba(16, 16, 24, 0.7);
  transform: translateX(4px);
}

.capability-icon {
  font-size: 18px;
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: rgba(139, 149, 165, 0.05);
  border: 1px solid rgba(139, 149, 165, 0.08);
}

.capability-item strong {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.75);
  font-weight: 600;
  display: block;
  margin-bottom: 2px;
}

.capability-item p {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.3);
  line-height: 1.6;
}

/* Skills */
.about-skills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.skill-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 10px;
  border-radius: 4px;
  cursor: default;
  transition: border-color 0.3s, background-color 0.3s, transform 0.3s;
}

.skill-tag:hover {
  transform: translateY(-1px);
}

.skill-tag .skill-dot { width: 5px; height: 5px; border-radius: 50%; flex-shrink: 0; }
.skill-tag .skill-label { font-size: 11px; font-weight: 500; color: rgba(255,255,255,0.6); transition: color 0.2s; }

/* Photo section */
.about-photo-wrap {
  flex: 1;
  display: flex;
  justify-content: center;
}

.about-photo-container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 16px;
  padding-top: 40px;
}

.about-photo-ring {
  position: absolute;
  width: 244px; height: 244px;
  border-radius: 50%;
  border: 1px solid rgba(139, 149, 165, 0.12);
  animation: orbitSpin 40s linear infinite;
}

.about-photo-ring-2 {
  width: 270px; height: 270px;
  border-style: dashed;
  border-color: rgba(139, 149, 165, 0.08);
  animation: orbitSpinReverse 50s linear infinite;
}

.about-photo {
  width: 200px; height: 200px;
  object-fit: cover;
  position: relative; z-index: 1;
  border-radius: 50%;
}

/* Country tags */
.about-countries {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: center;
  margin-top: 8px;
  position: relative;
  z-index: 2;
}

.country-tag {
  font-size: 10px;
  padding: 3px 8px;
  border: 1px solid rgba(139, 149, 165, 0.08);
  border-radius: 12px;
  color: rgba(255, 255, 255, 0.35);
  background: rgba(16, 16, 24, 0.5);
  letter-spacing: 0.3px;
  transition: border-color 0.3s, color 0.3s;
  white-space: nowrap;
}

.country-tag:hover {
  border-color: rgba(139, 149, 165, 0.25);
  color: rgba(255, 255, 255, 0.6);
}

/* Tablet */
@media (min-width: 600px) and (max-width: 1099px) {
  .about-text-main { font-size: 16px; }
  .about-text-sub { font-size: 13px; }
  .about-photo-ring { width: 214px; height: 214px; }
  .about-photo-ring-2 { width: 240px; height: 240px; }
  .about-photo { width: 170px; height: 170px; }
}

/* Mobile */
@media (max-width: 599px) {
  .about-layout { flex-direction: column; gap: 36px; align-items: center; }
  .about-content { text-align: center; align-items: center; }
  .about-skills { justify-content: center; }
  .about-text-main { font-size: 14px; }
  .about-text-sub { font-size: 12px; }
  .about-text-detail { font-size: 11px; text-align: center; }
  .capability-item { padding: 12px; }
  .capability-item strong { font-size: 12px; }
  .capability-item p { font-size: 11px; }
  .about-photo-ring { width: 184px; height: 184px; }
  .about-photo-ring-2 { width: 210px; height: 210px; }
  .about-photo { width: 140px; height: 140px; }
  .about-countries { max-width: 200px; }
}
