/* ═══════════════════════════════════════════════════════════════
   SKILLS.CSS — Skills Page · Grey Studio
   Editorial — kategori kiri, nama skill tipografis kanan
   Tanpa angka, tanpa level — nama skill jadi fokus utama
═══════════════════════════════════════════════════════════════ */

.skills-wrapper, .skills-stats { padding-left: 72px; padding-right: 72px; }
.skills-wrapper { padding-bottom: 96px; }

/* ── STATS — inline meta, tanpa kotak ───────────────────────── */
.skills-stats {
  display: flex; align-items: baseline; gap: 40px; flex-wrap: wrap;
  padding-top: 32px; padding-bottom: 36px;
  opacity: 0; transform: translateY(12px);
  animation: fadeUp 0.6s ease 0.2s forwards;
}
.skill-stat { display: flex; align-items: baseline; gap: 10px; }
.skill-stat-num {
  font-family: var(--font-display); font-size: 26px;
  font-weight: 700; color: var(--text-1); line-height: 1;
  letter-spacing: -0.5px;
}
.skill-stat-lbl {
  font-family: var(--font-body); font-size: 10.5px; font-weight: 500;
  color: var(--text-3); text-transform: uppercase; letter-spacing: 1.5px;
}

/* ── SECTION — kategori kiri / nama skill kanan ─────────────── */
.skill-section {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 40px;
  padding: 48px 0;
  border-top: 1px solid var(--border);
  opacity: 0; transform: translateY(14px);
}
.skill-section-label {
  font-family: var(--font-body);
  font-size: 10.5px; font-weight: 500;
  color: var(--text-3);
  text-transform: uppercase; letter-spacing: 2px;
  line-height: 1.9; padding-top: 8px;
}
.skill-section-label em {
  font-style: normal; color: var(--text-3);
  font-size: 9.5px; margin-left: 8px; opacity: 0.7;
}

/* ── SKILL ITEMS — nama besar tipografis ────────────────────── */
.skill-section-body {
  min-width: 0;
  display: flex; flex-wrap: wrap;
  align-items: baseline;
  column-gap: 14px; row-gap: 10px;
}
.skill-item {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.3vw, 32px);
  font-weight: 700; letter-spacing: -0.6px; line-height: 1.3;
  color: var(--text-1);
  cursor: default;
  transition: color 0.2s;
  opacity: 0; transform: translateY(10px);
  animation: fadeUp 0.5s cubic-bezier(0.22,1,0.36,1) forwards;
}
/* Separator titik antar skill */
.skill-item:not(:last-child)::after {
  content: '·';
  color: var(--text-3);
  font-weight: 400;
  margin-left: 14px;
}
/* Hover: skill yang disorot tetap gelap, sisanya memudar */
.skill-section-body:hover .skill-item { color: var(--text-3); }
.skill-section-body:hover .skill-item:hover { color: var(--text-1); }

/* ── RESPONSIVE ─────────────────────────────────────────────── */
@media (max-width: 768px) {
  .skills-wrapper, .skills-stats { padding-left: 20px; padding-right: 20px; }
  .skills-wrapper { padding-bottom: 64px; }

  .skills-stats { gap: 24px; padding-top: 24px; padding-bottom: 28px; }
  .skill-stat-num { font-size: 21px; }
  .skill-stat-lbl { font-size: 9.5px; }

  .skill-section { grid-template-columns: 1fr; gap: 16px; padding: 30px 0; }
  .skill-section-label { padding-top: 0; }

  .skill-item { font-size: 19px; letter-spacing: -0.4px; }
  .skill-item:not(:last-child)::after { margin-left: 10px; }
  .skill-section-body { column-gap: 10px; row-gap: 6px; }
}
