/* Selr — no dot on any button (2026-08-20).
 *
 * WHY: Alexandra's standing rule — a call-to-action button carries its label and
 * nothing else. No dot, no arrow, no chevron, no glyph. The Framer template puts a
 * 10px circle inside every pill button (scale(0) at rest, popping in on hover);
 * the hand-built contact form puts a 9px accent dot beside its submit label.
 * Both are killed here.
 *
 * WHAT: the two button-dot components only.
 *   .framer-ahp0i7 / .framer-1h7eeol  = 10px dot inside the pill CTA components.
 *   .selr-contact-form .btn .dot      = the contact form submit dot.
 * NOT touched: .framer-aiklkn (7px footer nav-link marker, not a button) and any
 * pagination dot, where the dot IS the control rather than an ornament on a label.
 */
.framer-ahp0i7[data-framer-name="Dot"],
.framer-1h7eeol[data-framer-name="Dot"],
.selr-contact-form .btn .dot {
  display: none !important;
}
