/* Tickets page (/tickets). Same plum surfaces, pink accent and radii as the buy box.
   Radius rule: cards 16px, fields and buttons 10px, pills 6px. */

.sa-tickets {
  --tk-bg: #110d12;
  --tk-card: #1d171d;
  --tk-raised: #241d24;
  --tk-line: #3f333f;
  --tk-line-strong: #594756;
  --tk-hover: #2c222c;
  --tk-active: #352439;
  --tk-text: #f4eef5;
  --tk-muted: #afa4b0;
  --tk-faint: #8d808f;
  --tk-ok: #5de49c;
  --tk-warn: #f5b454;
  --tk-err: #ff7a8a;
  --tk-accent: rgb(var(--cl-accent));
  --tk-ease: cubic-bezier(.22, 1, .36, 1);
  color: var(--tk-text);
}

.sa-tickets [x-cloak] { display: none !important; }

.sa-tk-head { max-width: 640px; margin-bottom: 28px; }
.sa-tk-head h1 { margin: 0; font-size: clamp(2rem, 4vw, 2.75rem); font-weight: 800; letter-spacing: -.025em; line-height: 1.05; }
.sa-tk-head p { margin: 10px 0 0; color: var(--tk-muted); font-size: 1rem; }

.sa-tk-card {
  border: 1px solid var(--tk-line);
  border-radius: 16px;
  background: var(--tk-card);
  box-shadow: 0 24px 60px rgba(6, 3, 7, .35);
}
.sa-tk-card h2 { margin: 0; font-size: 1.35rem; font-weight: 800; letter-spacing: -.01em; }
.sa-tk-sub { margin: 6px 0 20px; color: var(--tk-muted); font-size: .9rem; }
.sa-tk-sub strong { color: var(--tk-text); font-weight: 650; }

.sa-tk-label { display: block; margin: 0 0 8px; color: var(--tk-text); font-size: .82rem; font-weight: 700; }
.sa-tk-label em { margin-left: 6px; color: var(--tk-faint); font-style: normal; font-weight: 500; }
.sa-tk-input {
  width: 100%;
  min-height: 46px;
  padding: 11px 14px;
  border: 1px solid var(--tk-line-strong);
  border-radius: 10px;
  background: #151015;
  color: var(--tk-text);
  font: inherit;
  font-size: .95rem;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}
.sa-tk-input::placeholder { color: #8a7d8c; }
.sa-tk-input:focus { outline: none; border-color: var(--tk-accent); box-shadow: 0 0 0 3px rgba(var(--cl-accent), .22); }
.sa-tk-textarea { min-height: 150px; resize: vertical; line-height: 1.55; }

.sa-tk-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 46px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 10px;
  font: inherit;
  font-size: .95rem;
  font-weight: 750;
  white-space: nowrap;
  cursor: pointer;
  transition: filter 180ms ease, background-color 180ms ease, border-color 180ms ease, transform 120ms ease;
}
.sa-tk-btn:active:not(:disabled) { transform: translateY(1px); }
.sa-tk-btn:disabled { cursor: not-allowed; opacity: .5; }
.sa-tk-btn--primary { background: var(--tk-accent); color: rgb(var(--cl-on-accent)); }
.sa-tk-btn--primary:hover:not(:disabled) { filter: brightness(1.08); }
.sa-tk-btn--ghost { border-color: var(--tk-line-strong); background: transparent; color: var(--tk-text); }
.sa-tk-btn--ghost:hover { background: rgba(var(--cl-accent), .1); }
.sa-tk-btn--block { width: 100%; margin-top: 16px; }

.sa-tk-link { padding: 0; border: 0; background: none; color: color-mix(in srgb, var(--tk-accent) 70%, #fff); font: inherit; font-weight: 650; cursor: pointer; text-decoration: underline; text-decoration-color: transparent; text-underline-offset: 3px; transition: text-decoration-color 160ms ease; }
.sa-tk-link:hover { text-decoration-color: currentColor; }

.sa-tk-notice { margin: 16px 0 0; padding: 11px 14px; border: 1px solid var(--tk-line); border-radius: 10px; font-size: .86rem; line-height: 1.45; }
.sa-tk-notice.is-success { border-color: rgba(93, 228, 156, .3); background: rgba(93, 228, 156, .08); color: #c6f5dc; }
.sa-tk-notice.is-error { border-color: rgba(255, 122, 138, .35); background: rgba(255, 122, 138, .08); color: #ffd1d7; }
.sa-tk-field-error { margin: 8px 0 0; color: var(--tk-err); font-size: .82rem; }

.sa-tk-spinner { display: inline-block; width: 16px; height: 16px; border: 2px solid currentColor; border-right-color: transparent; border-radius: 50%; animation: sa-tk-spin .7s linear infinite; }
@keyframes sa-tk-spin { to { transform: rotate(360deg); } }
.sa-tk-loading { display: flex; align-items: center; gap: 10px; padding: 32px 0; color: var(--tk-muted); }

/* Verify ------------------------------------------------------------------ */
.sa-tk-verify { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 440px); gap: clamp(24px, 5vw, 72px); align-items: start; }
.sa-tk-how h2 { margin: 0 0 22px; font-size: 1.25rem; font-weight: 800; }
.sa-tk-how ol { display: grid; gap: 4px; margin: 0; padding: 0; list-style: none; }
.sa-tk-how li { display: flex; gap: 14px; padding: 14px 16px; border-radius: 12px; transition: background-color 250ms ease; }
.sa-tk-how li.is-current { background: var(--tk-raised); }
.sa-tk-how li > span { display: grid; flex: none; place-items: center; width: 30px; height: 30px; border: 1px solid var(--tk-line-strong); border-radius: 50%; color: var(--tk-muted); font-size: .8rem; font-weight: 800; transition: background-color 250ms ease, color 250ms ease, border-color 250ms ease; }
.sa-tk-how li.is-current > span { border-color: var(--tk-accent); background: var(--tk-accent); color: #fff; }
.sa-tk-how strong { display: block; font-size: .95rem; }
.sa-tk-how p { margin: 3px 0 0; color: var(--tk-muted); font-size: .86rem; }
.sa-tk-discord { display: flex; align-items: center; gap: 14px; margin-top: 22px; padding: 14px 16px; border: 1px solid var(--tk-line); border-radius: 12px; color: var(--tk-text); text-decoration: none; transition: border-color 180ms ease, background-color 180ms ease; }
.sa-tk-discord:hover { border-color: var(--tk-line-strong); background: var(--tk-raised); }
.sa-tk-discord > i:first-child { color: #9aa4ff; font-size: 1.25rem; }
.sa-tk-discord span { flex: 1; font-weight: 700; font-size: .92rem; }
.sa-tk-discord small { display: block; color: var(--tk-muted); font-weight: 500; font-size: .82rem; }
.sa-tk-discord > i:last-child { color: var(--tk-faint); font-size: .8rem; }

.sa-tk-verify-card { padding: clamp(22px, 3vw, 32px); }
.sa-tk-digits { display: grid; grid-template-columns: repeat(6, minmax(0, 1fr)); gap: 8px; }
.sa-tk-digit {
  width: 100%;
  height: 56px;
  border: 1px solid var(--tk-line-strong);
  border-radius: 10px;
  background: #151015;
  color: var(--tk-text);
  font: inherit;
  font-size: 1.4rem;
  font-weight: 800;
  text-align: center;
  font-variant-numeric: tabular-nums;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}
.sa-tk-digit:focus { outline: none; border-color: var(--tk-accent); box-shadow: 0 0 0 3px rgba(var(--cl-accent), .22); }
.sa-tk-resend { display: block; margin: 14px auto 0; font-size: .86rem; }

/* Hub --------------------------------------------------------------------- */
.sa-tk-hub { display: grid; grid-template-columns: 320px minmax(0, 1fr); gap: 20px; align-items: start; }
.sa-tk-rail { position: sticky; top: 100px; display: flex; flex-direction: column; gap: 12px; min-width: 0; }
.sa-tk-account { display: flex; align-items: center; gap: 11px; padding: 12px 14px; border: 1px solid var(--tk-line); border-radius: 12px; background: var(--tk-card); }
.sa-tk-avatar { display: grid; flex: none; place-items: center; width: 34px; height: 34px; border-radius: 50%; background: rgba(var(--cl-accent), .14); color: color-mix(in srgb, var(--tk-accent) 70%, #fff); }
.sa-tk-account-text { flex: 1; min-width: 0; line-height: 1.25; }
.sa-tk-account-text strong { display: block; font-size: .86rem; font-weight: 700; }
.sa-tk-account-text small { display: block; margin-top: 2px; overflow: hidden; color: var(--tk-faint); font-size: .78rem; text-overflow: ellipsis; white-space: nowrap; }
.sa-tk-account .sa-tk-link { font-size: .8rem; }
.sa-tk-new { margin-top: 0; }
.sa-tk-rail-label { margin: 8px 2px 0; color: var(--tk-faint); font-size: .78rem; font-weight: 700; }
.sa-tk-rail-empty { margin: 4px 2px; color: var(--tk-muted); font-size: .86rem; }
.sa-tk-list { display: grid; gap: 6px; max-height: calc(100vh - 300px); margin: 0; padding: 0; overflow-y: auto; list-style: none; scrollbar-width: thin; }
.sa-tk-item {
  display: grid;
  gap: 8px;
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--tk-line);
  border-radius: 12px;
  background: var(--tk-card);
  color: inherit;
  font: inherit;
  text-align: left;
  cursor: pointer;
  transition: background-color 220ms ease, border-color 220ms ease;
}
.sa-tk-item:hover { background: var(--tk-hover); }
.sa-tk-item.is-active { border-color: var(--tk-line-strong); background: var(--tk-active); box-shadow: inset 3px 0 0 var(--tk-accent); }
.sa-tk-item-top, .sa-tk-item-bottom { display: flex; align-items: center; justify-content: space-between; gap: 10px; min-width: 0; }
.sa-tk-item-subject { overflow: hidden; font-size: .9rem; font-weight: 700; text-overflow: ellipsis; white-space: nowrap; }
.sa-tk-item-time { flex: none; color: var(--tk-faint); font-size: .74rem; }
.sa-tk-item-order { overflow: hidden; color: var(--tk-muted); font-size: .76rem; text-overflow: ellipsis; white-space: nowrap; }

.sa-tk-status {
  display: inline-flex;
  flex: none;
  align-items: center;
  gap: 6px;
  height: 22px;
  padding: 0 8px;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 6px;
  background: rgba(34, 28, 36, .85);
  color: rgba(255, 255, 255, .78);
  font-size: .7rem;
  font-weight: 600;
  white-space: nowrap;
}
.sa-tk-status::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--tk-faint); }
.sa-tk-status.is-open::before { background: var(--tk-ok); box-shadow: 0 0 0 3px rgba(93, 228, 156, .18); }
.sa-tk-status.is-pending { color: #fff; }
.sa-tk-status.is-pending::before { background: var(--tk-accent); box-shadow: 0 0 0 3px rgba(var(--cl-accent), .22); }
.sa-tk-status.is-closed { color: var(--tk-faint); }

.sa-tk-pane { min-width: 0; }
.sa-tk-back { display: none; align-items: center; gap: 8px; margin: 0 0 14px; padding: 0; border: 0; background: none; color: var(--tk-muted); font: inherit; font-size: .88rem; font-weight: 650; cursor: pointer; }

/* Compose */
.sa-tk-compose { padding: clamp(20px, 3vw, 32px); }
.sa-tk-field { margin: 0 0 22px; padding: 0; border: 0; min-width: 0; }
.sa-tk-field legend { padding: 0; }
.sa-tk-topics { display: grid; grid-template-columns: repeat(auto-fit, minmax(142px, 1fr)); gap: 8px; }
.sa-tk-topic {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 62px;
  padding: 12px 14px;
  border: 1px solid var(--tk-line);
  border-radius: 12px;
  background: var(--tk-raised);
  color: inherit;
  font: inherit;
  text-align: left;
  cursor: pointer;
  transition: border-color 220ms ease, background-color 220ms ease, transform 220ms var(--tk-ease);
}
.sa-tk-topic:hover { background: var(--tk-hover); }
.sa-tk-topic i { display: grid; flex: none; place-items: center; width: 34px; height: 34px; border-radius: 9px; background: #1a141a; color: var(--tk-muted); font-size: .9rem; transition: background-color 220ms ease, color 220ms ease; }
.sa-tk-topic strong { display: block; font-size: .88rem; }
.sa-tk-topic small { display: block; margin-top: 2px; color: var(--tk-faint); font-size: .74rem; }
.sa-tk-topic.is-active { border-color: var(--tk-accent); background: var(--tk-active); }
.sa-tk-topic.is-active i { background: var(--tk-accent); color: #fff; }

.sa-tk-orders { display: grid; gap: 8px; }
.sa-tk-order {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border: 1px solid var(--tk-line);
  border-radius: 12px;
  background: var(--tk-raised);
  color: inherit;
  font: inherit;
  text-align: left;
  cursor: pointer;
  transition: border-color 220ms ease, background-color 220ms ease;
}
.sa-tk-order:hover { background: var(--tk-hover); }
.sa-tk-order-dot { position: relative; flex: none; width: 18px; height: 18px; border: 1.5px solid rgba(255, 255, 255, .25); border-radius: 50%; transition: border-color 200ms ease; }
.sa-tk-order-dot::after { content: ''; position: absolute; inset: 3px; border-radius: 50%; background: var(--tk-accent); opacity: 0; transform: scale(.4); transition: transform 260ms cubic-bezier(.34, 1.56, .64, 1), opacity 180ms ease; }
.sa-tk-order.is-active { border-color: var(--tk-accent); background: var(--tk-active); }
.sa-tk-order.is-active .sa-tk-order-dot { border-color: var(--tk-accent); }
.sa-tk-order.is-active .sa-tk-order-dot::after { opacity: 1; transform: scale(1); }
.sa-tk-order-text { min-width: 0; }
.sa-tk-order-text strong { display: block; overflow: hidden; font-size: .9rem; text-overflow: ellipsis; white-space: nowrap; }
.sa-tk-order-text small { display: block; margin-top: 2px; color: var(--tk-faint); font-size: .76rem; font-variant-numeric: tabular-nums; }

.sa-tk-noorders { display: flex; gap: 14px; margin: 6px 0 4px; padding: 16px; border: 1px dashed var(--tk-line-strong); border-radius: 12px; }
.sa-tk-noorders > i { color: var(--tk-muted); font-size: 1.3rem; margin-top: 2px; }
.sa-tk-noorders p { margin: 4px 0 0; color: var(--tk-muted); font-size: .88rem; }

.sa-tk-drop {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  border: 1.5px dashed var(--tk-line-strong);
  border-radius: 12px;
  color: var(--tk-muted);
  font-size: .88rem;
  cursor: pointer;
  transition: border-color 200ms ease, background-color 200ms ease;
}
.sa-tk-drop:hover, .sa-tk-drop.is-dragging, .sa-tk-drop:focus-within { border-color: var(--tk-accent); background: rgba(var(--cl-accent), .06); }
.sa-tk-drop i { color: color-mix(in srgb, var(--tk-accent) 70%, #fff); font-size: 1.3rem; }
.sa-tk-drop strong { color: var(--tk-text); margin-right: 4px; }

.sa-tk-thumbs { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 10px; }
.sa-tk-thumb { position: relative; width: 84px; height: 64px; overflow: hidden; border: 1px solid var(--tk-line); border-radius: 10px; background: #151015; }
.sa-tk-thumb img { width: 100%; height: 100%; object-fit: cover; }
.sa-tk-thumb button { position: absolute; top: 4px; right: 4px; display: grid; place-items: center; width: 22px; height: 22px; border: 0; border-radius: 50%; background: rgba(12, 8, 13, .8); color: #fff; font-size: .7rem; cursor: pointer; }
.sa-tk-thumbs--small { margin: 0 0 10px; }
.sa-tk-thumbs--small .sa-tk-thumb { width: 64px; height: 48px; }

.sa-tk-compose-foot { display: flex; align-items: center; justify-content: flex-end; gap: 16px; padding-top: 18px; border-top: 1px solid var(--tk-line); }
.sa-tk-foot-hint { margin: 0 auto 0 0; color: var(--tk-faint); font-size: .84rem; }

/* Thread */
.sa-tk-thread { display: flex; flex-direction: column; height: min(760px, calc(100vh - 150px)); min-height: 520px; overflow: hidden; }
.sa-tk-thread-head { padding: 18px 22px; border-bottom: 1px solid var(--tk-line); }
.sa-tk-thread-title h2 { overflow: hidden; font-size: 1.15rem; text-overflow: ellipsis; white-space: nowrap; }
.sa-tk-thread-title p { display: flex; flex-wrap: wrap; align-items: center; gap: 6px 14px; margin: 8px 0 0; color: var(--tk-muted); font-size: .8rem; }
.sa-tk-messages { flex: 1; min-height: 0; padding: 22px; overflow-y: auto; scroll-behavior: smooth; scrollbar-width: thin; }
.sa-tk-msgs { display: flex; flex-direction: column; gap: 14px; }
.sa-tk-msg { display: flex; align-items: flex-end; gap: 10px; max-width: 78%; }
.sa-tk-msg.is-grouped { margin-top: -8px; padding-left: 42px; }
.sa-tk-msg.is-mine { flex-direction: row-reverse; margin-left: auto; }
.sa-tk-msg.is-mine.is-grouped { padding-left: 0; padding-right: 42px; }
.sa-tk-msg-avatar { display: grid; flex: none; place-items: center; width: 32px; height: 32px; overflow: hidden; border: 1px solid var(--tk-line); border-radius: 50%; background: var(--tk-raised); color: var(--tk-muted); font-size: .8rem; }
.sa-tk-msg-avatar img { width: 100%; height: 100%; object-fit: cover; }
.sa-tk-msg.is-mine .sa-tk-msg-avatar { border-color: transparent; background: rgba(var(--cl-accent), .16); color: color-mix(in srgb, var(--tk-accent) 70%, #fff); }
.sa-tk-bubble { min-width: 0; padding: 11px 14px; border: 1px solid var(--tk-line); border-radius: 14px 14px 14px 4px; background: var(--tk-raised); }
.sa-tk-msg.is-mine .sa-tk-bubble { border-color: rgba(var(--cl-accent), .35); border-radius: 14px 14px 4px 14px; background: color-mix(in srgb, rgb(var(--cl-accent)) 16%, #1d171d); }
.sa-tk-msg-meta { display: flex; align-items: baseline; gap: 8px; margin: 0 0 4px; font-size: .74rem; }
.sa-tk-msg-meta strong { font-weight: 700; }
.sa-tk-msg-meta span { color: var(--tk-faint); }
.sa-tk-msg-text { margin: 0; font-size: .92rem; line-height: 1.55; white-space: pre-wrap; overflow-wrap: anywhere; }
.sa-tk-msg-files { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 8px; }
.sa-tk-msg-files img { display: block; width: 140px; height: 96px; border-radius: 8px; object-fit: cover; }
.sa-tk-waiting, .sa-tk-sent { display: flex; align-items: center; gap: 8px; margin: 4px 0 0; color: var(--tk-faint); font-size: .8rem; }
.sa-tk-sent { margin: 0 0 16px; padding: 10px 14px; border: 1px solid rgba(93, 228, 156, .28); border-radius: 10px; background: rgba(93, 228, 156, .07); color: #c6f5dc; }
.sa-tk-waiting { justify-content: flex-end; }

.sa-tk-reply { padding: 14px 16px; border-top: 1px solid var(--tk-line); background: #1a141a; }
.sa-tk-reply-row { display: flex; align-items: flex-end; gap: 8px; }
.sa-tk-reply-input { min-height: 46px; max-height: 160px; resize: none; field-sizing: content; line-height: 1.45; }
.sa-tk-icon-btn, .sa-tk-send { display: grid; flex: none; place-items: center; width: 46px; height: 46px; border-radius: 10px; cursor: pointer; transition: background-color 180ms ease, filter 180ms ease, transform 120ms ease; }
.sa-tk-icon-btn { border: 1px solid var(--tk-line-strong); color: var(--tk-muted); }
.sa-tk-icon-btn:hover, .sa-tk-icon-btn:focus-within { background: var(--tk-hover); color: var(--tk-text); }
.sa-tk-send { border: 0; background: var(--tk-accent); color: #fff; }
.sa-tk-send:hover:not(:disabled) { filter: brightness(1.08); }
.sa-tk-send:active:not(:disabled) { transform: translateY(1px); }
.sa-tk-send:disabled { cursor: not-allowed; opacity: .45; }
.sa-tk-reply-hint { margin: 8px 0 0 54px; color: var(--tk-faint); font-size: .74rem; }
.sa-tk-closed { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 14px 18px; border-top: 1px solid var(--tk-line); color: var(--tk-muted); font-size: .9rem; }

.sa-tickets :is(button, a, input, textarea, label):focus-visible { outline: 2px solid var(--tk-accent); outline-offset: 2px; }
.sa-tickets .sa-tk-input:focus-visible, .sa-tickets .sa-tk-digit:focus-visible { outline: none; }

/* Customer portal (/customer/tickets): same hub, sized for the space beside the account sidebar. */
.sa-tickets--embedded .sa-tk-head { margin-bottom: 20px; }
.sa-tickets--embedded .sa-tk-account { display: none; }
.sa-tickets--embedded .sa-tk-head h1 { font-size: clamp(1.7rem, 3vw, 2.2rem); }
.sa-tickets--embedded .sa-tk-head p { font-size: .92rem; }
.sa-tickets--embedded .sa-tk-hub { grid-template-columns: 270px minmax(0, 1fr); gap: 16px; }
@media (min-width: 900px) and (max-width: 1023px) {
  .sa-tickets--embedded .sa-tk-hub { grid-template-columns: 240px minmax(0, 1fr); }
}

/* Tablet and phone --------------------------------------------------------- */
@media (max-width: 899px) {
  .sa-tk-verify { grid-template-columns: 1fr; }
  .sa-tk-verify-card { order: -1; }
  .sa-tk-hub, .sa-tickets--embedded .sa-tk-hub { grid-template-columns: 1fr; }
  .sa-tk-rail { position: static; }
  .sa-tk-list { max-height: none; }
  .sa-tk-hub.is-pane .sa-tk-rail { display: none; }
  .sa-tk-hub:not(.is-pane) .sa-tk-pane { display: none; }
  .sa-tk-back { display: inline-flex; }
  /* Inside a conversation the big page heading steps aside so the chat and its
     reply box fit on screen above the phone's bottom navigation. */
  .sa-tickets:has(.sa-tk-hub.is-pane) .sa-tk-head { display: none; }
  .sa-tk-pane { scroll-margin-top: 96px; }
  .sa-tk-thread { height: calc(100dvh - 230px); min-height: 380px; }
  .sa-tk-msg { max-width: 88%; }
  .sa-tk-reply-hint { display: none; }
}

@media (max-width: 520px) {
  .sa-tk-head { margin-bottom: 20px; }
  .sa-tk-topics { grid-template-columns: 1fr 1fr; }
  .sa-tk-topic { flex-direction: column; align-items: flex-start; gap: 8px; min-height: 0; }
  .sa-tk-topic small { display: none; }
  .sa-tk-topics > .sa-tk-topic:last-of-type:nth-of-type(odd) { grid-column: 1 / -1; flex-direction: row; align-items: center; }
  .sa-tk-digit { height: 50px; font-size: 1.2rem; }
  .sa-tk-digits { gap: 6px; }
  .sa-tk-compose-foot { flex-direction: column-reverse; align-items: stretch; }
  .sa-tk-compose-foot .sa-tk-btn { width: 100%; }
  .sa-tk-foot-hint { margin: 0; text-align: center; }
  .sa-tk-messages { padding: 16px; }
  .sa-tk-thread-head { padding: 14px 16px; }
  .sa-tk-drop span { font-size: .82rem; }
}

@media (prefers-reduced-motion: reduce) {
  .sa-tk-spinner { animation-duration: 1.4s !important; animation-iteration-count: infinite !important; }
  .sa-tk-messages { scroll-behavior: auto; }
}