/**
 * Appily Fortyseven — Dispatch Console tracker
 * Layout: split masthead | vertical timeline rail + ticket panel | bento shortcuts | footer strip
 */

.page-track-console {
  --dc-plum: #3d2b3f;
  --dc-plum-deep: #2a1830;
  --dc-gold: #c9a86c;
  --dc-gold-light: #e8d5b0;
  --dc-cream: #faf7f4;
  --dc-blush: #f3ebe6;
  --dc-ink: #1e1518;
  --dc-muted: #7a6b72;
  --dc-border: rgba(61, 43, 63, 0.1);
  --dc-ease: cubic-bezier(0.22, 1, 0.36, 1);
  --dc-shadow: 0 20px 50px rgba(42, 24, 48, 0.12);
  background:
    radial-gradient(ellipse 80% 45% at 0% 0%, rgba(201, 168, 108, 0.07) 0%, transparent 55%),
    radial-gradient(ellipse 60% 40% at 100% 80%, rgba(232, 180, 188, 0.05) 0%, transparent 50%),
    var(--dc-cream);
}

.page-track-console .page-main {
  padding-top: 0;
}

.a47-dispatch {
  padding-bottom: 0;
}

/* ── Reveal ── */
.a47-dispatch-reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.65s var(--dc-ease) calc(var(--a47-delay, 0) * 0.07s),
              transform 0.65s var(--dc-ease) calc(var(--a47-delay, 0) * 0.07s);
}
.a47-dispatch-reveal.is-visible {
  opacity: 1;
  transform: none;
}

.a47-dispatch-mile-reveal {
  opacity: 0;
  transform: translateX(-12px);
  transition: opacity 0.5s var(--dc-ease) var(--mile-delay, 0s),
              transform 0.5s var(--dc-ease) var(--mile-delay, 0s);
}
.a47-dispatch-mile-reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* ── Masthead ── */
.a47-dispatch-mast {
  position: relative;
  overflow: hidden;
  padding: clamp(2.25rem, 5vw, 3.5rem) 0 clamp(2rem, 4vw, 2.75rem);
}

.a47-dispatch-mast-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #fff 0%, var(--dc-blush) 45%, var(--dc-cream) 100%);
  clip-path: polygon(0 0, 100% 0, 100% 90%, 0 100%);
  pointer-events: none;
}
.a47-dispatch-mast-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 32px,
      rgba(61, 43, 63, 0.015) 32px,
      rgba(61, 43, 63, 0.015) 33px
    );
}
.a47-dispatch-mast-bg::after {
  content: "";
  position: absolute;
  top: -30%;
  right: -5%;
  width: min(38vw, 380px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 168, 108, 0.2) 0%, transparent 65%);
  animation: dcOrb 18s ease-in-out infinite alternate;
}

@keyframes dcOrb {
  to { transform: translate(-18px, 14px) scale(1.05); }
}

.a47-dispatch-mast-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 380px);
  gap: clamp(1.25rem, 3vw, 2.25rem);
  align-items: end;
}

.a47-dispatch-eyebrow {
  display: inline-block;
  margin-bottom: 0.55rem;
  padding: 0.28rem 0.75rem;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--dc-plum);
  background: rgba(61, 43, 63, 0.06);
  border-left: 3px solid var(--dc-gold);
}

.a47-dispatch-intro h1 {
  margin: 0 0 0.55rem;
  font-family: var(--a47-font-serif);
  font-size: clamp(2rem, 4.5vw, 3rem);
  line-height: 1.05;
  color: var(--dc-plum-deep);
}
.a47-dispatch-intro h1 em {
  font-style: italic;
  color: var(--dc-gold);
}

.a47-dispatch-lede {
  margin: 0 0 1.15rem;
  max-width: 46ch;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--dc-muted);
}

.a47-dispatch-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.a47-dispatch-stats li {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  padding: 0.55rem 1rem;
  background: #fff;
  border: 1px solid var(--dc-border);
  border-radius: 0 14px 14px 0;
  border-left: 3px solid var(--dc-gold);
  min-width: 76px;
}
.a47-dispatch-stats strong {
  font-family: var(--a47-font-serif);
  font-size: 1.15rem;
  color: var(--dc-plum);
}
.a47-dispatch-stats span {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--dc-muted);
}
.a47-dispatch-stats-state.is-found strong { color: var(--dc-gold); }
.a47-dispatch-stats-state.is-miss strong { color: #c45c5c; }

/* Lookup panel */
.a47-dispatch-lookup {
  padding: 1.5rem 1.6rem;
  border-radius: 4px 24px 24px 4px;
  background: var(--dc-plum-deep);
  color: rgba(255, 255, 255, 0.9);
  box-shadow: var(--dc-shadow);
}

.a47-dispatch-lookup-tag {
  display: inline-block;
  margin-bottom: 0.45rem;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--dc-gold);
}
.a47-dispatch-lookup-head h2 {
  margin: 0 0 0.25rem;
  font-family: var(--a47-font-serif);
  font-size: 1.25rem;
  color: #fff;
}
.a47-dispatch-lookup-head p {
  margin: 0 0 1.1rem;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.5);
}

.a47-dispatch-form {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}
.a47-dispatch-field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.a47-dispatch-field span {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
}
.a47-dispatch-field input {
  padding: 0.78rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 0 12px 12px 0;
  font: inherit;
  font-size: 0.92rem;
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  transition: border-color 0.2s, background 0.2s;
}
.a47-dispatch-field input::placeholder {
  color: rgba(255, 255, 255, 0.35);
}
.a47-dispatch-field input:focus {
  outline: none;
  border-color: var(--dc-gold);
  background: rgba(255, 255, 255, 0.1);
}

.a47-dispatch-form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 0.2rem;
}

.a47-dispatch-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.72rem 1.3rem;
  border-radius: 0 12px 12px 0;
  font: inherit;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, transform 0.2s, border-color 0.2s;
}
.a47-dispatch-btn--primary {
  background: var(--dc-gold);
  color: var(--dc-plum-deep);
}
.a47-dispatch-btn--primary:hover {
  background: var(--dc-gold-light);
  transform: translateY(-2px);
}
.a47-dispatch-btn--ghost {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.85);
}
.a47-dispatch-btn--ghost:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--dc-gold);
}

/* ── Workspace ── */
.a47-dispatch-workspace {
  display: grid;
  grid-template-columns: minmax(260px, 300px) minmax(0, 1fr);
  gap: 1.75rem;
  align-items: start;
  padding-top: 2rem;
  padding-bottom: 2.5rem;
}

/* Timeline rail */
.a47-dispatch-rail {
  position: sticky;
  top: 92px;
  padding: 1.35rem;
  border-radius: 4px 24px 24px 4px;
  background: #fff;
  border: 1px solid var(--dc-border);
  box-shadow: 0 8px 28px rgba(61, 43, 63, 0.06);
}

.a47-dispatch-rail-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}
.a47-dispatch-rail-label {
  margin: 0;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--dc-muted);
}
.a47-dispatch-rail-pill {
  padding: 0.28rem 0.65rem;
  border-radius: 999px;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: var(--dc-blush);
  color: var(--dc-muted);
}
.a47-dispatch-rail-pill.is-found {
  background: var(--dc-plum);
  color: var(--dc-gold);
}
.a47-dispatch-rail-pill.is-miss {
  background: #fff0f0;
  color: #b54a4a;
}

.a47-dispatch-progress {
  margin-bottom: 1.15rem;
}
.a47-dispatch-progress-bar {
  height: 6px;
  border-radius: 3px;
  background: rgba(61, 43, 63, 0.08);
  overflow: hidden;
  margin-bottom: 0.4rem;
}
.a47-dispatch-progress-bar::after {
  content: "";
  display: block;
  height: 100%;
  width: calc(var(--dispatch-pct, 0) * 1%);
  background: linear-gradient(90deg, var(--dc-plum), var(--dc-gold));
  border-radius: 3px;
  transition: width 0.9s var(--dc-ease);
}
.a47-dispatch-progress-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--dc-muted);
}

.a47-dispatch-timeline {
  position: relative;
  list-style: none;
  margin: 0;
  padding: 0 0 0 0.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.a47-dispatch-timeline::before {
  content: "";
  position: absolute;
  left: 1.35rem;
  top: 1.5rem;
  bottom: 1.5rem;
  width: 2px;
  background: rgba(61, 43, 63, 0.1);
  border-radius: 2px;
}
.a47-dispatch-timeline.is-found::before {
  background: linear-gradient(180deg, var(--dc-gold), rgba(61, 43, 63, 0.1));
  background-size: 100% calc(var(--dispatch-step, 0) * 25%);
  background-repeat: no-repeat;
}

.a47-dispatch-mile {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  padding: 0.65rem 0.75rem 0.65rem 0;
  border-radius: 12px;
  transition: background 0.25s;
}
.a47-dispatch-mile:hover {
  background: var(--dc-blush);
}

.a47-dispatch-mile-marker {
  position: relative;
  z-index: 1;
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 0 10px 10px 0;
  background: var(--dc-blush);
  border: 2px solid var(--dc-border);
  transition: border-color 0.35s, background 0.35s, box-shadow 0.35s, transform 0.35s;
}
.a47-dispatch-mile-num {
  font-size: 0.55rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: var(--dc-muted);
  line-height: 1;
}
.a47-dispatch-mile-icon {
  font-size: 0.95rem;
  line-height: 1;
  opacity: 0.45;
  transition: opacity 0.35s;
}

.a47-dispatch-mile.is-done .a47-dispatch-mile-marker {
  border-color: var(--dc-gold);
  background: #fff;
}
.a47-dispatch-mile.is-done .a47-dispatch-mile-icon { opacity: 1; }

.a47-dispatch-mile.is-current .a47-dispatch-mile-marker {
  border-color: var(--dc-plum);
  background: var(--dc-plum);
  box-shadow: 0 0 0 3px rgba(61, 43, 63, 0.1);
  transform: scale(1.06);
  animation: dcPulse 2.2s ease-in-out infinite;
}
.a47-dispatch-mile.is-current .a47-dispatch-mile-num { color: var(--dc-gold); }
.a47-dispatch-mile.is-current .a47-dispatch-mile-icon {
  opacity: 1;
  filter: brightness(2);
}

@keyframes dcPulse {
  50% { box-shadow: 0 0 0 6px rgba(61, 43, 63, 0.06); }
}

.a47-dispatch-mile.is-muted .a47-dispatch-mile-marker {
  opacity: 0.55;
}

.a47-dispatch-mile-body {
  display: flex;
  flex-direction: column;
  gap: 0.12rem;
  min-width: 0;
  padding-top: 0.15rem;
}
.a47-dispatch-mile-body strong {
  font-size: 0.82rem;
  color: var(--dc-plum);
  line-height: 1.25;
}
.a47-dispatch-mile-place {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--dc-gold);
}
.a47-dispatch-mile-body small {
  font-size: 0.68rem;
  color: var(--dc-muted);
  line-height: 1.35;
}

/* ── Main panel ── */
.a47-dispatch-main {
  min-height: 280px;
}

/* Ticket (found state) */
.a47-dispatch-ticket {
  border-radius: 4px 28px 28px 4px;
  background: #fff;
  border: 1px solid var(--dc-border);
  box-shadow: var(--dc-shadow);
  overflow: hidden;
  position: relative;
}
.a47-dispatch-ticket::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, var(--dc-gold), var(--dc-plum));
}

.a47-dispatch-ticket-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.25rem;
  padding: 1.75rem 1.75rem 1.25rem 2rem;
  border-bottom: 1px dashed var(--dc-border);
  background: linear-gradient(135deg, var(--dc-blush) 0%, #fff 60%);
}

.a47-dispatch-ticket-tag {
  display: inline-block;
  margin-bottom: 0.45rem;
  padding: 0.22rem 0.6rem;
  border-radius: 0 8px 8px 0;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--dc-plum);
  color: var(--dc-gold);
}
.a47-dispatch-ticket-head h2 {
  margin: 0 0 0.3rem;
  font-family: var(--a47-font-serif);
  font-size: clamp(1.3rem, 3vw, 1.65rem);
  color: var(--dc-plum-deep);
  word-break: break-all;
}
.a47-dispatch-ticket-status {
  margin: 0;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--dc-gold);
  text-transform: capitalize;
}

.a47-dispatch-ticket-ring {
  position: relative;
  flex-shrink: 0;
  width: 88px;
  height: 88px;
}
.a47-dispatch-ticket-ring svg {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}
.a47-dispatch-ring-bg {
  stroke: rgba(61, 43, 63, 0.1);
}
.a47-dispatch-ring-fill {
  stroke: var(--dc-gold);
  stroke-linecap: round;
  transition: stroke-dashoffset 0.9s var(--dc-ease);
}
.a47-dispatch-ring-text {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.a47-dispatch-ring-text strong {
  font-family: var(--a47-font-serif);
  font-size: 1.1rem;
  color: var(--dc-plum);
}

.a47-dispatch-ticket-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  padding: 1.25rem 1.75rem 1.25rem 2rem;
}
.a47-dispatch-ticket-stat {
  padding: 0.85rem 1rem;
  border-radius: 0 14px 14px 0;
  background: var(--dc-cream);
  border: 1px solid var(--dc-border);
  border-left: 3px solid var(--dc-gold);
}
.a47-dispatch-ticket-stat--wide {
  grid-column: 1 / -1;
}
.a47-dispatch-ticket-stat span {
  display: block;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--dc-muted);
  margin-bottom: 0.2rem;
}
.a47-dispatch-ticket-stat strong {
  font-size: 0.95rem;
  color: var(--dc-plum);
  word-break: break-word;
}

.a47-dispatch-ticket-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  padding: 0 1.75rem 1.75rem 2rem;
}
.a47-dispatch-ticket-actions .a47-dispatch-btn--primary {
  background: var(--dc-plum);
  color: #fff;
}
.a47-dispatch-ticket-actions .a47-dispatch-btn--primary:hover {
  background: var(--dc-gold);
  color: var(--dc-plum-deep);
}
.a47-dispatch-ticket-actions .a47-dispatch-btn--ghost {
  background: var(--dc-blush);
  border-color: var(--dc-border);
  color: var(--dc-plum);
}
.a47-dispatch-ticket-actions .a47-dispatch-btn--ghost:hover {
  border-color: var(--dc-gold);
  background: #fff;
}

/* Empty / idle states */
.a47-dispatch-state {
  padding: 2.5rem 2rem;
  border-radius: 4px 28px 28px 4px;
  background: #fff;
  border: 2px dashed var(--dc-border);
  text-align: center;
}
.a47-dispatch-state--miss {
  border-color: rgba(181, 74, 74, 0.25);
  background: linear-gradient(135deg, #fff 0%, #fff8f8 100%);
}
.a47-dispatch-state-icon {
  display: block;
  font-size: 2.75rem;
  margin-bottom: 0.75rem;
}
.a47-dispatch-state-pulse {
  animation: dcBob 3s ease-in-out infinite;
}
@keyframes dcBob {
  50% { transform: translateY(-8px); }
}
.a47-dispatch-state h2 {
  margin: 0 0 0.45rem;
  font-family: var(--a47-font-serif);
  font-size: 1.4rem;
  color: var(--dc-plum);
}
.a47-dispatch-state p {
  margin: 0 auto 1.25rem;
  max-width: 44ch;
  font-size: 0.92rem;
  color: var(--dc-muted);
  line-height: 1.55;
}

.a47-dispatch-hints {
  list-style: none;
  margin: 0 auto 1.35rem;
  padding: 0;
  max-width: 380px;
  text-align: left;
}
.a47-dispatch-hints li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.6rem 0;
  border-bottom: 1px dashed var(--dc-border);
  font-size: 0.85rem;
  color: var(--dc-muted);
}
.a47-dispatch-hints li span {
  flex-shrink: 0;
  font-size: 0.68rem;
  font-weight: 800;
  color: var(--dc-gold);
}

.a47-dispatch-state-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.6rem;
}
.a47-dispatch-state-actions .a47-dispatch-btn--primary {
  background: var(--dc-plum);
  color: #fff;
}
.a47-dispatch-state-actions .a47-dispatch-btn--ghost {
  background: var(--dc-blush);
  border-color: var(--dc-border);
  color: var(--dc-plum);
}

.a47-dispatch-idle-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  max-width: 520px;
  margin: 0 auto;
  text-align: left;
}
.a47-dispatch-idle-card {
  padding: 0.85rem 1rem;
  border-radius: 0 14px 14px 0;
  background: var(--dc-cream);
  border: 1px solid var(--dc-border);
  border-left: 3px solid var(--dc-gold);
}
.a47-dispatch-idle-card strong {
  display: block;
  font-family: var(--a47-font-serif);
  font-size: 1.1rem;
  color: var(--dc-plum);
  margin-bottom: 0.25rem;
}
.a47-dispatch-idle-card span {
  font-size: 0.78rem;
  color: var(--dc-muted);
  line-height: 1.4;
}

/* ── Bento shortcuts ── */
.a47-dispatch-bento {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.85rem;
  padding-bottom: 2rem;
}

.a47-dispatch-tile {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.1rem;
  border-radius: 0 16px 16px 0;
  background: #fff;
  border: 1px solid var(--dc-border);
  border-left: 3px solid transparent;
  transition: transform 0.3s var(--dc-ease), box-shadow 0.3s, border-color 0.3s;
}
.a47-dispatch-tile:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(61, 43, 63, 0.1);
  border-left-color: var(--dc-gold);
}
.a47-dispatch-tile--wide {
  grid-column: span 2;
}
.a47-dispatch-tile--tall {
  grid-row: span 2;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}
.a47-dispatch-tile--email {
  grid-column: span 2;
}
.a47-dispatch-tile-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0 10px 10px 0;
  font-size: 1.1rem;
  background: var(--dc-blush);
}
.a47-dispatch-tile-body {
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.a47-dispatch-tile-body strong {
  font-size: 0.85rem;
  color: var(--dc-plum);
}
.a47-dispatch-tile-body small {
  font-size: 0.72rem;
  color: var(--dc-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.a47-dispatch-tile-arrow {
  margin-left: auto;
  font-size: 1rem;
  color: var(--dc-gold);
  opacity: 0;
  transform: translateX(-4px);
  transition: opacity 0.25s, transform 0.25s;
}
.a47-dispatch-tile:hover .a47-dispatch-tile-arrow {
  opacity: 1;
  transform: none;
}

/* ── Footer strip ── */
.a47-dispatch-strip {
  padding: 1.5rem 0 2.5rem;
  border-top: 1px solid var(--dc-border);
  background: linear-gradient(180deg, transparent, rgba(201, 168, 108, 0.06));
}
.a47-dispatch-strip-inner {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.25rem 2rem;
}
.a47-dispatch-strip-block {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}
.a47-dispatch-strip-block strong {
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--dc-muted);
}
.a47-dispatch-strip-block span,
.a47-dispatch-strip-block a {
  font-size: 0.85rem;
  color: var(--dc-plum);
}
.a47-dispatch-strip-cta {
  margin-left: auto;
  padding: 0.65rem 1.25rem;
  border-radius: 0 12px 12px 0;
  background: var(--dc-plum);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: background 0.2s;
}
.a47-dispatch-strip-cta:hover {
  background: var(--dc-gold);
  color: var(--dc-plum-deep);
}

/* ── Responsive ── */
@media (max-width: 960px) {
  .a47-dispatch-mast-grid { grid-template-columns: 1fr; }
  .a47-dispatch-workspace { grid-template-columns: 1fr; }
  .a47-dispatch-rail { position: static; }
  .a47-dispatch-bento { grid-template-columns: repeat(2, 1fr); }
  .a47-dispatch-tile--wide,
  .a47-dispatch-tile--email { grid-column: span 1; }
  .a47-dispatch-tile--tall { grid-row: span 1; flex-direction: row; }
  .a47-dispatch-strip-cta { margin-left: 0; width: 100%; text-align: center; }
}

@media (max-width: 600px) {
  .a47-dispatch-ticket-head { flex-direction: column; }
  .a47-dispatch-ticket-grid { grid-template-columns: 1fr 1fr; }
  .a47-dispatch-idle-cards { grid-template-columns: 1fr; }
  .a47-dispatch-bento { grid-template-columns: 1fr; }
  .a47-dispatch-timeline::before { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  .a47-dispatch-mast-bg::after,
  .a47-dispatch-mile.is-current .a47-dispatch-mile-marker,
  .a47-dispatch-state-pulse { animation: none; }
  .a47-dispatch-reveal,
  .a47-dispatch-mile-reveal { opacity: 1; transform: none; transition: none; }
  .a47-dispatch-tile:hover { transform: none; }
}
