/* =========================================================
   Ancelade — Overrides on top of Private Heberg design tokens
   Single accent: #00AEFF (hover #0095DB)
   Navy stays #142149 — matches Ancelade's --text-primary
   ========================================================= */
:root {
  /* Override accent palette to Ancelade cyan */
  --ph-blue:        #00AEFF;
  --ph-blue-500:    #00AEFF;
  --ph-blue-600:    #0095DB;
  --ph-blue-700:    #007BB8;
  --ph-blue-400:    #33BFFF;
  --ph-blue-300:    #66CFFF;
  --ph-blue-200:    #B8E5FF;
  --ph-blue-100:    #E5F5FF;
  --ph-blue-50:     #F4FAFF;

  /* Focus ring + shadow glow tinted with Ancelade cyan */
  --focus-ring:     0 0 0 4px rgba(0,174,255,0.18);
  --shadow-glow:    0 8px 28px rgba(0, 174, 255, 0.25);
  --shadow-glow-strong: 0 12px 40px rgba(0, 174, 255, 0.40);

  --fg-link:        var(--ph-blue);
  --fg-link-hover:  var(--ph-blue-600);
}

::selection { background: var(--ph-blue-200); color: var(--ph-navy); }

/* ---- Ancelade wordmark (inline) -------------------------- */
.anc-wordmark {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -0.02em;
  color: var(--ph-navy);
  text-decoration: none;
  line-height: 1;
}
.anc-wordmark__dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--ph-blue);
  box-shadow: 0 0 0 4px rgba(0, 174, 255, 0.18);
}
.anc-wordmark--dark { color: #fff; }
.anc-wordmark--sm { font-size: 18px; }
.anc-wordmark--sm .anc-wordmark__dot { width: 8px; height: 8px; }
