* { margin: 0; padding: 0; box-sizing: border-box; }
  html, body { height: 100%; }
  body {
    background: #efe6d6;
    overflow: hidden;
    font-family: "Avenir Next", "Helvetica Neue", system-ui, sans-serif;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  #cv { display: block; touch-action: none; -webkit-tap-highlight-color: transparent; }
  #themeBtn {
    position: fixed;
    top: 14px;
    right: 16px;
    z-index: 30;
    font: inherit;
    font-size: 12px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 9px 14px;
    border-radius: 999px;
    border: 2px solid currentColor;
    background: transparent;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
  }
  .overlay {
    position: fixed;
    inset: 0;
    z-index: 50;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 22px;
  }
  .overlay.open { display: flex; }
  .plaque {
    border-radius: 22px;
    padding: 34px 40px 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    text-align: center;
    max-width: 340px;
  }
  /* the plaque lands with a little overshoot instead of just appearing */
  .overlay.open .plaque { animation: plaqueLand 0.42s cubic-bezier(0.2, 1.5, 0.4, 1) both; }
  @keyframes plaqueLand {
    0%   { opacity: 0; transform: scale(0.82) translateY(14px); }
    60%  { opacity: 1; transform: scale(1.035) translateY(-3px); }
    100% { opacity: 1; transform: scale(1) translateY(0); }
  }
  @media (prefers-reduced-motion: reduce) {
    .overlay.open .plaque { animation: none; }
  }
  .plaque h1, .plaque .bigTitle { font-size: 44px; letter-spacing: -0.02em; margin: 0; }
  .plaque .tag { font-size: 14px; font-weight: 600; opacity: 0.72; }
  .plaque .stat { font-size: 15px; font-weight: 600; }
  .btn {
    font: inherit;
    font-size: 17px;
    letter-spacing: 0.06em;
    padding: 13px 40px;
    border: none;
    border-radius: 999px;
    margin-top: 6px;
    cursor: pointer;
    min-height: 44px;
    -webkit-tap-highlight-color: transparent;
  }
  .btn:active { transform: translateY(2px); }
  .hint { font-size: 12px; font-weight: 600; opacity: 0.55; }

/* --- anul.space site chrome (added by build-site.mjs) --- */
.hub-back {
  position: fixed;
  left: 14px;
  bottom: 12px;
  z-index: 60; /* above the menu overlays: the way home is always visible */
  font-family: "Courier New", Courier, monospace;
  font-weight: bold;
  font-size: 13px;
  letter-spacing: 0.04em;
  color: #5c5140;
  background: rgba(253, 247, 234, 0.9);
  border: 2px solid #5c5140;
  padding: 9px 13px;
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
}
.hub-back:hover, .hub-back:focus-visible { background: #5c5140; color: #fdf7ea; }
