.brand-title,
.site-footer-brand,
.eyebrow {
  letter-spacing: 0;
}

.kiosk-card {
  align-items: stretch;
  justify-content: stretch;
}

.kiosk-grid {
  width: 100%;
  min-height: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 380px);
  gap: 1rem;
}

.kiosk-chip {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  border-radius: 999px;
  padding: 0.25rem 0.75rem;
  background: #ffffff;
  border: 1px solid rgba(15, 26, 31, 0.12);
  font-weight: 700;
}

.kiosk-chip.online {
  background: #dff0e3;
  color: #265736;
}

.scan-stage,
.kiosk-panel {
  border-radius: 8px;
  border: 1px solid rgba(15, 26, 31, 0.12);
  background: rgba(255, 255, 255, 0.78);
}

.scan-stage {
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 1rem;
  padding: 2rem;
  text-align: center;
}

.eyebrow {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
}

.scan-ring {
  width: min(260px, 52vw);
  aspect-ratio: 1;
  border-radius: 999px;
  border: 18px solid color-mix(in srgb, var(--accent) 62%, white);
  display: grid;
  place-items: center;
  background: #ffffff;
  box-shadow: inset 0 0 0 1px rgba(15, 26, 31, 0.08);
}

.scan-ring.received {
  border-color: #3f7a4d;
}

.scan-ring.error {
  border-color: #a54535;
}

.scan-ring span {
  font-size: clamp(2rem, 5vw, 4.6rem);
  font-weight: 700;
  color: var(--accent-ink);
}

.scan-copy {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 700;
}

.kiosk-panel {
  padding: 1rem;
  display: grid;
  align-content: center;
  gap: 0.75rem;
}

.panel-line {
  min-height: 76px;
  border-radius: 8px;
  background: #ffffff;
  padding: 0.8rem;
  display: grid;
  gap: 0.2rem;
}

.panel-line span {
  color: var(--ink-soft);
  font-weight: 700;
  text-transform: uppercase;
}

.panel-line strong {
  font-size: 1.45rem;
}

.route-strip {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.45rem;
}

.route-strip span {
  min-height: 48px;
  border-radius: 8px;
  background: var(--accent);
  color: #ffffff;
  display: grid;
  place-items: center;
  font-weight: 700;
}

body[data-kiosk-mode="accepted"] .scan-stage {
  border-color: rgba(63, 122, 77, 0.4);
}

body[data-kiosk-mode="rejected"] .scan-stage {
  border-color: rgba(165, 69, 53, 0.44);
}

@media (max-width: 820px) {
  .kiosk-grid {
    grid-template-columns: 1fr;
  }

  .scan-stage {
    padding: 1rem;
  }

  .kiosk-panel {
    align-content: start;
  }
}
