/* ══════════════════════════════════════
   BUTTONS
══════════════════════════════════════ */
.btn-primary {
  background: var(--cyan);
  color: var(--navy);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 14px;
  padding: 14px 28px;
  border-radius: 8px;
  text-decoration: none;
  box-shadow: 0 0 28px rgba(0,194,255,0.38);
  transition: transform 0.2s, box-shadow 0.2s;
  white-space: nowrap;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 36px rgba(0,194,255,0.52);
}

.btn-ghost {
  background: transparent;
  color: rgba(255,255,255,0.7);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 600;
  font-size: 14px;
  padding: 14px 26px;
  border-radius: 8px;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.16);
  transition: border-color 0.2s, color 0.2s;
  white-space: nowrap;
}
.btn-ghost:hover { border-color: var(--cyan); color: var(--cyan); }

@media (max-width: 480px) {
  .btn-primary, .btn-ghost { text-align: center; }
  .btn-ghost[style] { border-color: rgba(255,255,255,0.2) !important; }
}
