/* Generated file. Source: shared/brand/styles/orders/terminal.css. Do not edit directly. Run: node tools/brand/sync-shared-brand.mjs */
/* ── E.1: Holo ID scanline ── */
body[data-orders-surface="home"] .orders-holo-id,
body[data-orders-surface="custom-hub"] .orders-holo-id {
  background-image: repeating-linear-gradient(
    to bottom,
    transparent,
    transparent 2px,
    rgba(255, 255, 255, 0.03) 2px,
    rgba(255, 255, 255, 0.03) 3px
  );
  background-size: 100% 4px;
  animation: holo-scan 4.8s linear infinite;
}

@keyframes holo-scan {
  0% { background-position-y: 0; }
  100% { background-position-y: 8px; }
}

/* ── E.2: Holo ID blinking cursor ── */
body[data-orders-surface="home"] .orders-holo-id::after,
body[data-orders-surface="custom-hub"] .orders-holo-id::after {
  content: "\2588";
  margin-left: 2px;
  font-size: 8px;
  vertical-align: middle;
  animation: cursor-blink 1.2s step-end infinite;
  color: inherit;
}

@keyframes cursor-blink {
  0%, 50% { opacity: 1; }
  51%, 100% { opacity: 0; }
}

/* ── E.3: Status chip >_ prefix ── */
body[data-orders-surface="home"] .orders-status-chip::before,
body[data-orders-surface="custom-hub"] .orders-status-chip::before {
  content: ">_ ";
  font-family: var(--font-mono);
  font-size: 9px;
  color: var(--orders-tone-standard-line);
  opacity: 0.4;
}

/* ── E.4: Scale CRT glow ── */
body[data-orders-surface="home"] .orders-geometry-scale span,
body[data-orders-surface="custom-hub"] .orders-geometry-scale span {
  color: var(--G);
  opacity: 0.5;
  text-shadow: 0 0 3px var(--G), 0 0 6px rgba(67, 163, 22, 0.3);
  font-family: var(--font-mono);
  font-size: 10px;
}

/* ── E.5: Bottom terminal strip ── */
.orders-terminal-strip {
  width: 100%;
  border: 1px solid var(--G);
  border-radius: var(--orders-geom-radius);
  background: transparent;
  padding: 8px 14px;
  font-family: var(--font-mono);
  font-size: 10px;
  line-height: 1.7;
  color: var(--G);
  opacity: 0.7;
  overflow: hidden;
  min-height: 44px;
  box-shadow: 0 0 4px rgba(67, 163, 22, 0.25), 0 0 12px rgba(67, 163, 22, 0.08);
}

.orders-terminal-lines {
  display: flex;
  flex-direction: column;
}

.orders-terminal-line {
  display: flex;
  align-items: baseline;
  white-space: nowrap;
}

.orders-terminal-prompt {
  color: var(--orders-tone-standard-line);
  opacity: 0.5;
  margin-right: 6px;
  flex-shrink: 0;
}

.orders-terminal-text {
  white-space: nowrap;
}

.orders-terminal-cursor {
  color: var(--G);
  opacity: 1;
  animation: cursor-blink 0.8s step-end infinite;
  margin-left: 1px;
}

/* Status tokens inside terminal */
.orders-terminal-ok {
  color: var(--orders-tone-standard-bright);
  opacity: 0.6;
}
.orders-terminal-wait {
  color: var(--orders-tone-custom-bright);
  opacity: 0.6;
}

/* ── Accessibility: disable animations for reduced motion ── */
@media (prefers-reduced-motion: reduce) {
  body[data-orders-surface="home"] .orders-holo-id,
  body[data-orders-surface="custom-hub"] .orders-holo-id {
    animation: none;
    background-image: none;
  }
  body[data-orders-surface="home"] .orders-holo-id::after,
  body[data-orders-surface="custom-hub"] .orders-holo-id::after {
    animation: none;
  }
}
