/* ============================================================
   Domiciliation Aix — formulaire de demande
   CSS pur · mobile-first · variables :root
   ============================================================ */

:root {
  /* Palette */
  --accent:        #00B1D9;
  --accent-dark:   #0096B8;
  --accent-soft:   #E6F8FC;
  --accent-text:   #007A96;

  --black:         #000000;
  --ink:           #111111;
  --text:          #717171;
  --text-soft:     #999999;

  --border:        #E8E8E8;
  --border-strong: #D5D5D5;
  --field-bg:      #F7F7F7;
  --off-white:     #FAFAFA;
  --page-bg:       #F5F5F5;
  --white:         #FFFFFF;

  --success-bg:    #F0FAF3;
  --success-text:  #1B7A43;

  --error-bg:      #FEEEEC;
  --error-text:    #D14A3D;

  --info-bg:       #FFF8E6;
  --info-text:     #8A6700;

  --dashed:        #B6B6AD;

  /* Type */
  --font: -apple-system, BlinkMacSystemFont, "Inter", "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  /* Geometry */
  --r-card:   18px;
  --r-field: 10px;
  --r-cta:   14px;
  --r-pill:  999px;

  /* Spacing rhythm */
  --gutter: 16px;
  --gap:    14px;

  /* Motion */
  --t-fast: 120ms ease;
  --t:      180ms ease;
}

/* ========== Reset ============================================ */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
[hidden] { display: none !important; }
body {
  font-family: var(--font);
  font-size: 14px;
  line-height: 1.45;
  color: var(--ink);
  background: var(--page-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
input, select, textarea { font: inherit; color: inherit; }
a { color: var(--accent-text); text-decoration: none; }
a:hover { text-decoration: underline; }

/* ========== Page shell ======================================= */
.page,
.success {
  max-width: 480px;
  margin: 0 auto;
  padding: 24px var(--gutter) 48px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* ========== Hero ============================================= */
.hero {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 4px 4px 8px;
}
.hero__brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 4px;
}
.logo-img {
  height: 28px;
  width: auto;
  display: block;
  mix-blend-mode: multiply;
}
.logo__sep {
  width: 1px;
  height: 18px;
  background: var(--border);
  display: inline-block;
}
.logo {
  width: 32px; height: 32px;
  border-radius: 9px;
  background: var(--black);
  color: var(--white);
  display: grid; place-items: center;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.04em;
}
.logo__type {
  font-size: 12px;
  font-weight: 500;
  color: var(--text);
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.hero__title {
  margin: 4px 0 0;
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.015em;
  line-height: 1.2;
  color: var(--ink);
  text-wrap: pretty;
}
.hero__sub {
  margin: 0;
  font-size: 13px;
  color: var(--text);
  text-wrap: pretty;
}

.trust {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 6px 0 0;
  padding: 0;
}
.trust__pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 10px;
  border-radius: var(--r-pill);
  background: var(--accent-soft);
  color: var(--accent-text);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.01em;
}
.trust__pill .ti { font-size: 14px; }

.hero__lead {
  margin: 6px 0 0;
  font-size: 12px;
  color: var(--text-soft);
  text-wrap: pretty;
}

.price {
  margin-top: 6px;
  background: var(--white);
  border: 0.5px solid var(--border);
  border-radius: var(--r-card);
  padding: 14px 16px;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
}
.price__amount {
  display: flex;
  align-items: baseline;
  gap: 6px;
}
.price__num {
  font-size: 24px;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.price__unit {
  font-size: 12px;
  color: var(--text);
  font-weight: 500;
}
.price__meta {
  font-size: 11px;
  color: var(--text-soft);
  text-align: right;
  max-width: 55%;
}

/* ========== Form layout ====================================== */
.form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* ========== Card ============================================= */
.card {
  background: var(--white);
  border: 0.5px solid var(--border);
  border-radius: var(--r-card);
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.card__head {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 12px;
  border-bottom: 0.5px solid var(--border);
}
.step {
  width: 22px; height: 22px;
  border-radius: 999px;
  background: var(--accent);
  color: var(--white);
  display: grid; place-items: center;
  font-size: 11px;
  font-weight: 500;
  line-height: 1;
}
.card__title {
  margin: 0;
  font-size: 14.5px;
  font-weight: 500;
  letter-spacing: -0.005em;
  color: var(--ink);
}
.card__body {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.card__lead {
  margin: -4px 0 0;
  font-size: 12px;
  color: var(--text-soft);
}

.card--consent {
  padding: 16px 18px;
  flex-direction: row;
}

/* ========== Field ============================================ */
.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
}
.field--full { grid-column: 1 / -1; }
.field__label {
  font-size: 13px;
  font-weight: 500;
  color: var(--ink);
  display: inline-flex;
  align-items: baseline;
  gap: 4px;
}
.req { color: var(--accent); font-weight: 500; }
.muted { color: var(--text-soft); font-weight: 400; }
.field__help {
  margin: 2px 0 0;
  font-size: 12px;
  color: var(--text-soft);
}

.input {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  background: var(--field-bg);
  border: 0.5px solid var(--border);
  border-radius: var(--r-field);
  padding: 12px 12px;
  font-size: 14px;
  color: var(--ink);
  transition: border-color var(--t-fast), background var(--t-fast), box-shadow var(--t-fast);
  min-height: 44px;
}
.input::placeholder { color: var(--text-soft); }
.input:hover { border-color: var(--border-strong); }
.input:focus {
  outline: none;
  border-color: var(--accent);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(0, 177, 217, 0.15);
}
.input:invalid:not(:placeholder-shown) { /* discrete, no red until submit */ }
.input.is-error {
  border-color: var(--error-text);
  background: var(--error-bg);
}
.input.is-error:focus { box-shadow: 0 0 0 3px rgba(209, 74, 61, 0.15); }

/* Select : chevron custom, look identique aux inputs */
.select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  padding-right: 36px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23717171' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'/></svg>");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 16px 16px;
  cursor: pointer;
}
.select:focus {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2300B1D9' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'/></svg>");
}

/* ========== Choices (radio cards) ============================ */
.choices {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.choice { position: relative; display: block; min-width: 0; }
.choice input {
  position: absolute;
  inset: 0;
  opacity: 0;
  width: 100%; height: 100%;
  cursor: pointer;
  margin: 0;
}
.choice__inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  padding: 14px;
  border: 0.5px solid var(--border);
  border-radius: 12px;
  background: var(--white);
  transition: border-color var(--t-fast), background var(--t-fast), box-shadow var(--t-fast);
  min-height: 92px;
}
.choice__icon {
  font-size: 22px;
  color: var(--ink);
  width: 30px; height: 30px;
  display: grid; place-items: center;
  border-radius: 8px;
  background: var(--field-bg);
}
.choice__label {
  font-size: 13px;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.25;
}
.choice__hint {
  font-size: 11px;
  color: var(--text-soft);
}
.choice input:focus-visible + .choice__inner {
  box-shadow: 0 0 0 3px rgba(0, 177, 217, 0.18);
}
.choice input:checked + .choice__inner {
  border-color: var(--accent);
  background: var(--accent-soft);
}
.choice input:checked + .choice__inner .choice__icon {
  background: var(--white);
  color: var(--accent-text);
}

/* ========== Associés ========================================= */
.assocs {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.assoc {
  background: #FCFCFA;
  border: 0.5px solid var(--border);
  border-radius: 14px;
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.assoc__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}
.assoc__tag {
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text);
}
.assoc__remove {
  width: 28px; height: 28px;
  border-radius: 999px;
  display: grid; place-items: center;
  color: var(--text);
  transition: background var(--t-fast), color var(--t-fast);
}
.assoc__remove:hover { background: var(--error-bg); color: var(--error-text); }
.assoc__remove .ti { font-size: 16px; }

.assoc__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.btn-ghost {
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 14px;
  border: 1px dashed var(--dashed);
  border-radius: 12px;
  background: transparent;
  color: var(--text);
  font-size: 13px;
  font-weight: 500;
  min-height: 44px;
  transition: border-color var(--t-fast), color var(--t-fast), background var(--t-fast);
}
.btn-ghost:hover { color: var(--accent-text); border-color: var(--accent); background: var(--accent-soft); }
.btn-ghost .ti { font-size: 16px; }

/* ========== Dropzone ========================================= */
.dropzone {
  position: relative;
  display: block;
  border: 1px dashed var(--dashed);
  border-radius: 14px;
  background: var(--off-white);
  padding: 18px 16px;
  cursor: pointer;
  transition: border-color var(--t-fast), background var(--t-fast);
  min-height: 96px;
}
.dropzone:hover { border-color: var(--accent); background: var(--accent-soft); }
.dropzone.is-dragover {
  border-color: var(--accent);
  background: var(--accent-soft);
}
.dropzone.is-filled {
  border-style: solid;
  border-color: var(--border);
  background: var(--white);
  padding: 12px;
}
.dropzone__input {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}
.dropzone__input:focus-visible + .dropzone__placeholder,
.dropzone:focus-within {
  /* visual handled below */
}
.dropzone:focus-within {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(0, 177, 217, 0.15);
  background: var(--white);
}

.dropzone__placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  text-align: center;
  pointer-events: none;
}
.dropzone__icon {
  font-size: 22px;
  color: var(--accent-text);
  margin-bottom: 2px;
}
.dropzone__title {
  font-size: 13px;
  font-weight: 500;
  color: var(--ink);
}
.dropzone__hint {
  font-size: 11px;
  color: var(--text-soft);
}

.dropzone__filled {
  display: flex;
  align-items: center;
  gap: 12px;
}
.dropzone__thumb {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: var(--accent-soft);
  color: var(--accent-text);
  display: grid; place-items: center;
  overflow: hidden;
  flex: 0 0 auto;
}
.dropzone__thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.dropzone__thumb .ti { font-size: 22px; }
.dropzone__meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
  flex: 1 1 auto;
}
.dropzone__name {
  font-size: 13px;
  font-weight: 500;
  color: var(--ink);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.dropzone__size {
  font-size: 11px;
  color: var(--text-soft);
}
.dropzone__remove {
  width: 32px; height: 32px;
  border-radius: 999px;
  display: grid; place-items: center;
  color: var(--text);
  background: var(--field-bg);
  flex: 0 0 auto;
  position: relative;
  z-index: 2;
}
.dropzone__remove:hover { background: var(--error-bg); color: var(--error-text); }
.dropzone__remove .ti { font-size: 16px; }
.dropzone.is-filled .dropzone__input { pointer-events: none; }

.info {
  display: flex;
  gap: 10px;
  background: var(--info-bg);
  border-radius: 12px;
  padding: 12px 12px;
}
.info__icon {
  color: var(--info-text);
  font-size: 18px;
  flex: 0 0 auto;
  margin-top: 1px;
}
.info__body { display: flex; flex-direction: column; gap: 2px; }
.info__title {
  margin: 0;
  font-size: 12px;
  font-weight: 500;
  color: var(--info-text);
  letter-spacing: 0.02em;
}
.info__text {
  margin: 0;
  font-size: 12px;
  color: var(--info-text);
  opacity: 0.9;
}

/* ========== Consentement ===================================== */
.consent {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  min-height: 44px;
  width: 100%;
}
.consent input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.consent__box {
  flex: 0 0 auto;
  width: 22px; height: 22px;
  border: 1px solid var(--border-strong);
  border-radius: 6px;
  background: var(--white);
  display: grid; place-items: center;
  color: var(--white);
  transition: background var(--t-fast), border-color var(--t-fast);
  margin-top: 1px;
}
.consent__box .ti { font-size: 14px; opacity: 0; transition: opacity var(--t-fast); }
.consent input:checked + .consent__box {
  background: var(--accent);
  border-color: var(--accent);
}
.consent input:checked + .consent__box .ti { opacity: 1; }
.consent input:focus-visible + .consent__box {
  box-shadow: 0 0 0 3px rgba(0, 177, 217, 0.18);
}
.consent__text {
  font-size: 13px;
  color: var(--text);
  line-height: 1.45;
  flex: 1 1 auto;
  text-wrap: pretty;
}

/* ========== Alert ============================================ */
.alert {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 12px;
  font-size: 13px;
  line-height: 1.4;
}
.alert .ti { font-size: 18px; margin-top: 1px; flex: 0 0 auto; }
.alert--error {
  background: var(--error-bg);
  color: var(--error-text);
}

/* ========== CTA ============================================== */
.btn-primary {
  position: relative;
  width: 100%;
  background: var(--accent);
  color: var(--white);
  border-radius: var(--r-cta);
  padding: 16px 18px;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: -0.005em;
  min-height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--t-fast), transform var(--t-fast), box-shadow var(--t-fast);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.04);
}
.btn-primary:hover { background: var(--accent-dark); }
.btn-primary:active { transform: scale(0.97); }
.btn-primary:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(0, 177, 217, 0.25);
}
.btn-primary:disabled {
  background: var(--accent);
  opacity: 0.7;
  cursor: progress;
}
.btn-primary__label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: opacity var(--t-fast);
}
.btn-primary__label .ti { font-size: 18px; }
.btn-primary__spinner {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  opacity: 0;
  pointer-events: none;
}
.btn-primary__spinner .ti {
  font-size: 22px;
  animation: spin 0.9s linear infinite;
}
.btn-primary.is-loading .btn-primary__label { opacity: 0; }
.btn-primary.is-loading .btn-primary__spinner { opacity: 1; }
@keyframes spin { to { transform: rotate(360deg); } }

.cta-meta {
  margin: 4px 0 0;
  text-align: center;
  font-size: 11px;
  color: var(--text-soft);
}
.cta-meta .ti { font-size: 12px; vertical-align: -1px; margin-right: 2px; }

/* ========== Contact ========================================== */
.contact {
  background: var(--white);
  border: 0.5px solid var(--border);
  border-radius: var(--r-card);
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 4px;
}
.contact__head { display: flex; flex-direction: column; gap: 2px; }
.contact__title {
  margin: 0;
  font-size: 14.5px;
  font-weight: 500;
  letter-spacing: -0.005em;
  color: var(--ink);
}
.contact__sub {
  margin: 0;
  font-size: 12px;
  color: var(--text-soft);
}
.contact__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.contact-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  border-radius: 14px;
  background: var(--field-bg);
  text-decoration: none;
  color: var(--ink);
  transition: background var(--t-fast), transform var(--t-fast);
  min-height: 60px;
}
.contact-row:hover { background: #EFEFEF; text-decoration: none; }
.contact-row:active { transform: scale(0.99); }
.contact-row__icon {
  flex: 0 0 auto;
  width: 40px; height: 40px;
  border-radius: 10px;
  background: var(--white);
  border: 0.5px solid var(--border);
  color: var(--ink);
  display: grid; place-items: center;
}
.contact-row__icon .ti { font-size: 20px; }
.contact-row__body {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  gap: 1px;
  min-width: 0;
}
.contact-row__title {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.005em;
}
.contact-row__hint {
  font-size: 12px;
  color: var(--text-soft);
}
.contact-row__chev {
  flex: 0 0 auto;
  font-size: 18px;
  color: var(--text-soft);
}

/* Variante WhatsApp */
.contact-row--wa { background: #ECF7EF; }
.contact-row--wa:hover { background: #E1F1E6; }
.contact-row__icon--wa { color: #25D366; }

/* ========== Timeline (et ensuite) ============================ */
.timeline {
  background: var(--white);
  border: 0.5px solid var(--border);
  border-radius: var(--r-card);
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 4px;
}
.timeline__title {
  margin: 0;
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-soft);
}
.timeline__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.timeline__item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.timeline__dot {
  flex: 0 0 auto;
  width: 22px; height: 22px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent-text);
  display: grid; place-items: center;
  font-size: 11px;
  font-weight: 500;
}
.timeline__body { display: flex; flex-direction: column; gap: 2px; }
.timeline__step {
  margin: 0;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink);
}
.timeline__detail {
  margin: 0;
  font-size: 12px;
  color: var(--text-soft);
}

/* ========== Footer =========================================== */
.footer {
  margin-top: 8px;
  text-align: center;
  color: var(--text-soft);
  font-size: 10.5px;
  letter-spacing: 0.02em;
}
.footer p { margin: 0; display: inline-flex; align-items: center; gap: 6px; }
.footer .ti { font-size: 12px; }

/* ========== Success screen =================================== */
.success {
  min-height: 100dvh;
  justify-content: center;
}
.success__card {
  background: var(--white);
  border: 0.5px solid var(--border);
  border-radius: var(--r-card);
  padding: 28px 22px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
}
.success__check {
  width: 72px; height: 72px;
  border-radius: 999px;
  background: var(--success-bg);
  color: var(--success-text);
  display: grid; place-items: center;
}
.success__check .ti { font-size: 44px; }
.success__title {
  margin: 0;
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.015em;
  color: var(--ink);
}
.success__sub {
  margin: 0;
  font-size: 14px;
  color: var(--text);
  text-wrap: pretty;
  max-width: 36ch;
}
.success__steps {
  list-style: none;
  margin: 6px 0 0;
  padding: 14px 14px;
  width: 100%;
  border: 0.5px solid var(--border);
  border-radius: 14px;
  background: var(--off-white);
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-align: left;
}
.success__steps li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--ink);
}
.success__bullet {
  width: 20px; height: 20px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent-text);
  display: grid; place-items: center;
  font-size: 10.5px;
  font-weight: 500;
  flex: 0 0 auto;
}
.success__eta { color: var(--text-soft); font-size: 12px; }

.success__contact {
  margin-top: 4px;
  width: 100%;
  padding-top: 14px;
  border-top: 0.5px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: center;
}
.success__contact-label {
  margin: 0;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-soft);
  font-weight: 500;
}
.success__contact-line {
  margin: 0;
  font-size: 13px;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.success__contact-line .ti { color: var(--accent-text); font-size: 14px; }

/* ========== Responsive small phone =========================== */
@media (max-width: 360px) {
  .choices { grid-template-columns: 1fr; }
  .assoc__grid { grid-template-columns: 1fr; }
  .hero__title { font-size: 20px; }
  .price__amount { gap: 4px; }
  .price__num { font-size: 22px; }
}

/* ========== Desktop polish (centered, no stretch) ============ */
@media (min-width: 720px) {
  body { background: #EEEEEE; }
  .page, .success { padding-top: 40px; padding-bottom: 64px; }
  .hero__title { font-size: 24px; }
}

/* ========== Focus visible (global) =========================== */
:focus { outline: none; }
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
  border-radius: 6px;
}
.btn-primary:focus-visible,
.btn-ghost:focus-visible,
.input:focus-visible,
.choice input:focus-visible,
.dropzone:focus-within { outline: none; }

/* ========== Reduced motion =================================== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
  }
}
