.badge-row {
  display: flex;
  gap: 4px;
  min-height: 16px;
  flex-wrap: wrap;
  justify-content: center;
}
.eye-badge {
  font-size: clamp(8.5px, 2.2vw, 9.5px);
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  padding: 2px 6px;
  border-radius: 999px;
  background: var(--surface-sunken);
  color: var(--text-faint);
  border: 1px solid var(--border-soft);
  white-space: nowrap;
}
.eye-badge[data-tone="warn"] { background: var(--warn-tint); color: var(--warn-strong); border-color: transparent; }

.shine-btn {
  font-family: inherit;
  font-size: clamp(10px, 2.7vw, 11.5px);
  font-weight: 600;
  letter-spacing: 0.01em;
  color: var(--accent-strong);
  background: var(--accent-tint);
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 6px clamp(8px, 2.2vw, 14px);
  cursor: pointer;
  transition: transform 120ms ease, background 150ms ease;
  white-space: nowrap;
  touch-action: manipulation;
  min-height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  user-select: none;
}
.shine-btn:hover { transform: translateY(-1px); }
.shine-btn:focus-visible { outline: 2px solid var(--focus-ring); outline-offset: 2px; }
.eye-zone[data-lit="true"] .shine-btn {
  background: var(--accent);
  color: white;
}
