
.skip-link {
  position: absolute;
  left: 1rem;
  top: 1rem;
  transform: translateY(-160%);
  background: var(--white);
  color: var(--bg);
  padding: 0.75rem 1rem;
  border-radius: 999px;
  font-weight: 800;
  text-decoration: none;
  z-index: 1000;
}
.skip-link:focus {
  transform: translateY(0);
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.95rem 1.35rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  transition:
    transform 0.2s ease,
    background 0.2s ease,
    border-color 0.2s ease;
}
.btn-primary {
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  color: var(--white);
  box-shadow: 0 0 30px rgba(43, 108, 196, 0.32);
}
.btn-primary:hover {
  transform: translateY(-2px);
}
.btn-secondary {
  border: 1px solid var(--border);
  color: var(--white);
  background: rgba(255, 255, 255, 0.04);
}
.btn-secondary:hover {
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.08);
}
a:focus-visible,
.btn:focus-visible {
  outline: 3px solid var(--secondary);
  outline-offset: 4px;
}
.badge {
  display: inline-flex;
  width: fit-content;
  padding: 0.5rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 999px;
  margin-bottom: 1.5rem;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.05);
  font-weight: 800;
  font-size: 0.92rem;
}
