.button { min-height: 48px; padding: .78rem 1.25rem; display: inline-flex; align-items: center; justify-content: center; gap: .5rem; border: 2px solid var(--orange); border-radius: 999px; color: var(--white); background: var(--orange); font-weight: 800; text-decoration: none; transition: transform .18s ease, background .18s ease, box-shadow .18s ease; }
.button:hover { background: var(--orange-dark); border-color: var(--orange-dark); box-shadow: var(--shadow-sm); transform: translateY(-1px); }
.button:disabled { cursor: not-allowed; opacity: .5; transform: none; box-shadow: none; }
.button--secondary { color: var(--charcoal); background: var(--white); border-color: var(--mist); }
.button--secondary:hover { color: var(--orange-dark); background: var(--peach-light); border-color: var(--orange); }
.button--quiet { min-height: 42px; padding: .55rem .9rem; color: var(--grey); background: transparent; border-color: transparent; font-size: .82rem; }
.button--quiet:hover { color: var(--charcoal); background: var(--white); border-color: var(--mist); }
.button--danger { color: var(--danger); }
.icon-button { width: 42px; height: 42px; padding: 0; border: 2px solid var(--mist); border-radius: 50%; color: var(--charcoal); background: var(--white); font-weight: 900; }
.icon-button:hover:not(:disabled) { border-color: var(--orange); color: var(--orange-dark); }
.icon-button:disabled { cursor: not-allowed; opacity: .35; }
.eyebrow { display: block; margin-bottom: .55rem; color: var(--orange-dark); font-size: .73rem; font-weight: 900; letter-spacing: .16em; }
.lead { max-width: 46rem; color: var(--grey); font-size: clamp(1rem, 2vw, 1.18rem); }
.helper { color: var(--grey); font-size: .84rem; }
.badge { width: fit-content; padding: .35rem .7rem; display: inline-flex; align-items: center; gap: .35rem; border-radius: 999px; color: var(--success); background: var(--success-light); font-size: .75rem; font-weight: 800; }
.badge--featured { color: #8b350d; background: var(--peach-light); }
.field { display: grid; gap: .4rem; }
.field label, .field-label { color: var(--charcoal); font-size: .82rem; font-weight: 800; }
.field input, .field select, .field textarea { width: 100%; min-height: 48px; padding: .7rem .85rem; border: 2px solid var(--mist); border-radius: var(--radius-sm); color: var(--ink); background: var(--white); }
.field textarea { resize: vertical; line-height: 1.5; }
.field input:hover, .field select:hover, .field textarea:hover { border-color: var(--mid-grey); }
.field input[aria-invalid="true"], .field select[aria-invalid="true"], .field textarea[aria-invalid="true"] { border-color: var(--danger); }
.validation { margin: .65rem 0 0; color: var(--danger); font-size: .86rem; font-weight: 700; }
.screen-actions { margin-top: 1.5rem; display: flex; align-items: center; justify-content: space-between; gap: .75rem; }
.screen-actions__end { margin-left: auto; display: flex; gap: .75rem; }
.choice-card { position: relative; min-height: 100%; border: 2px solid var(--mist); border-radius: var(--radius); background: var(--white); box-shadow: var(--shadow-sm); transition: border-color .18s ease, transform .18s ease, box-shadow .18s ease; }
.choice-card:hover { border-color: var(--peach); transform: translateY(-2px); }
.choice-card:has(input:checked) { border-color: var(--orange); box-shadow: 0 0 0 4px rgba(243, 107, 42, .12), var(--shadow-sm); }
.choice-card input { position: absolute; width: 1px; height: 1px; opacity: 0; }
.choice-card label { min-height: 100%; padding: 1rem; display: block; cursor: pointer; }
.choice-card input:focus-visible + label { outline: 4px solid rgba(243, 107, 42, .3); outline-offset: 3px; border-radius: calc(var(--radius) - 3px); }
.empty-state { padding: 1.5rem; border: 2px dashed var(--mist); border-radius: var(--radius); color: var(--grey); text-align: center; background: rgba(255,255,255,.6); }
.toast { position: fixed; right: 1rem; bottom: 1rem; z-index: 50; max-width: min(24rem, calc(100% - 2rem)); padding: .85rem 1rem; border-radius: var(--radius-sm); color: var(--white); background: var(--charcoal); box-shadow: var(--shadow-lg); font-weight: 700; opacity: 0; transform: translateY(1rem); pointer-events: none; transition: opacity .2s ease, transform .2s ease; }
.toast.is-visible { opacity: 1; transform: none; }
.loading-card, .error-card { max-width: 34rem; margin: 4rem auto; padding: 2rem; border-radius: var(--radius); background: var(--white); box-shadow: var(--shadow-sm); text-align: center; }
.loading-dot { width: .8rem; height: .8rem; margin-right: .5rem; display: inline-block; border-radius: 50%; background: var(--orange); animation: pulse 1s ease-in-out infinite alternate; }
@keyframes pulse { to { transform: scale(.6); opacity: .45; } }
@media (max-width: 560px) { .screen-actions { align-items: stretch; flex-direction: column-reverse; } .screen-actions .button, .screen-actions__end, .screen-actions__end .button { width: 100%; } .screen-actions__end { display: grid; } }
