/* ============================================================================
   cv-download.css — the "CV ↓" glass button that downloads the static PDF.
   ========================================================================== */

/* ---- Download CV button (glass token set, matches nav/burger chrome) ---- */
.cv-download-btn {
  position: fixed;
  top: 20px;
  right: 32px;
  z-index: 60;

  font-family: "Neue Haas Grotesk", ui-sans-serif, system-ui, sans-serif;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: .02em;
  color: #fff;

  padding: 8.8px 18px;
  border: 0;
  border-radius: 6px;
  cursor: pointer;

  background: #000000bf;
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  /* brighter border + soft glow so it reads as the primary action */
  box-shadow: 0 0 0 1px #ffffff55 inset, 0 0 12px #ffffff1a;
  transition: box-shadow .3s cubic-bezier(.25, .46, .45, .94);
}
.cv-download-btn:hover,
.cv-download-btn:focus-visible { box-shadow: 0 0 13px #b2b2b2 inset, 0 0 12px #ffffff1a; }
.cv-download-btn:focus-visible { outline: 2px solid #fff; outline-offset: 2px; }
.cv-download-btn:focus { outline: none; }

/* Small screens: stay top-right, flush with the tighter 16px header inset. */
@media (max-width: 640px) {
  .cv-download-btn { top: 16px; right: 16px; padding: 8px 14px; font-size: 11px; }
}
