/* ========== SECTION LABEL ========== */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--ink-muted);
  margin-bottom: 24px;
}

.section-label .dot {
  width: 8px;
  height: 8px;
  background: var(--yellow);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--yellow);
}

.section-label .level-tag {
  color: var(--cyan);
  font-family: var(--font-arcade);
  font-size: 12px;
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 40px;
  flex-wrap: wrap;
}

.section-title {
  font-family: var(--font-arcade);
  font-size: clamp(20px, 3vw, 36px);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.25;
  margin: 0;
  color: var(--ink);
}

.section-head-meta {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--ink-muted);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  text-align: right;
}

.section-head-meta-v {
  font-family: var(--font-arcade);
  font-size: 12px;
  color: var(--yellow);
  margin-top: 8px;
  letter-spacing: 0;
}

/* ========== BUTTONS ========== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 8px 16px;
  background: var(--yellow);
  color: #0a0a1a;
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: none;
  border-radius: 999px;
  transition:
    transform 0.15s ease,
    box-shadow 0.2s ease;
  box-shadow: 0 0 0 0 rgba(255, 212, 0, 0);
}

.btn-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  line-height: 1;
  transform: translateY(-0.5px);
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 40px rgba(255, 212, 0, 0.4);
}

.ghost-btn {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line-strong);
}

.ghost-btn:hover {
  border-color: var(--cyan);
  color: var(--cyan);
  box-shadow: 0 0 30px rgba(0, 240, 255, 0.3);
}

.btn-group {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
