/* ==========================================================================
   UI atoms — buttons, arrow links, check dots, badges, chips
   ========================================================================== */

/* ---- Global keyboard focus indicator ----
   Form fields keep their own (higher-specificity) :focus styles. */
:focus-visible {
  outline: 2px solid var(--focus);
  outline-offset: 2px;
  border-radius: 4px;
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px;
  /* Fixed height per tier so icon vs. no-icon (and <a> vs <button>) can never
     change a button's height — only horizontal padding varies. box-sizing:
     border-box (global) keeps outline and solid buttons the exact same height. */
  min-height: 44px;
  padding: 0 32px;
  border-radius: 8px;
  font-size: 12px;
  line-height: 1.2;
  font-weight: 600;
  border: 1px solid transparent;
  white-space: nowrap;
  transition: filter .15s ease, background .15s, color .15s, border-color .15s;
  text-transform: uppercase;
}
.btn--block { width: 100%; }

/* Nudging arrow used inside primary CTAs (Book meeting, etc.) */
.cta-arrow { width: 16px; height: 16px; animation: cta-arrow-nudge 2.5s ease-in-out infinite; }
@keyframes cta-arrow-nudge {
  0%, 100% { transform: translateX(0); }
  50%      { transform: translateX(4px); }
}
@media (prefers-reduced-motion: reduce) {
  .cta-arrow { animation: none; }
}
.btn--primary { background: var(--blue); border-color: var(--blue); color: #fff; }
.btn--primary:hover { background: var(--dark-1a); border-color: var(--dark-1a); }
.btn--outline { background: transparent; border-color: var(--text); color: var(--text); }
.btn--outline:hover { background: var(--blue); border-color: var(--blue); color: #fff; }
.btn--outline-light { background: transparent; border-color: #fff; color: #fff; }
.btn--outline-light:hover { background: #fff; color: var(--dark-1a); }

/* ---- Arrow links ---- */
.link-arrow {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--red); font-weight: 600; font-size: 16px;
  letter-spacing: -.01em;
  transition: gap .15s ease;
}
.link-arrow .arrow { width: 7px; height: 12px; transition: transform .15s ease; }
.link-arrow:hover { gap: 10px; }
.link-arrow--rose { color: var(--rose); }

/* ---- Check dot + list ---- */
.check-dot {
  flex: none; width: 20px; height: 20px;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--red); border-radius: 999px;
}
.check-dot svg { width: 11px; height: 11px; }
.check-list { display: flex; flex-direction: column; gap: 16px; }
.check-list li { display: flex; gap: 16px; align-items: flex-start; }
.check-list li span { font-size: 16px;  color: var(--text-soft); }
.check-list li strong { color: var(--text); font-weight: 600; }
.check-list--tight { gap: 8px; }
.check-list--tight li span { font-weight: 400; }

/* ---- Badges & chips ---- */
.badge {
  display: inline-flex; align-items: center;
  padding: 4px 16px; border-radius: var(--radius);
  font-size: 12px; font-weight: 600; color: #fff;
  letter-spacing: -.02em; 
}
.badge--beginner { background: var(--c-green); }
.badge--advanced { background: var(--c-orange); }
.badge--rose { background: var(--rose); color: var(--gray-f2); }

.chip {
  display: inline-flex; align-items: center;
  padding: 8px 16px; border-radius: var(--radius);
  background: var(--dark-33); border: 1px solid var(--gray-80);
  color: var(--gray-f2); font-size: 12px; font-weight: 600; letter-spacing: -.02em;
}
