/* Redaction scan reveal */
.redaction-stage {
  display: grid;
  min-height: 74vh;
  grid-template-columns: minmax(280px, 0.58fr) minmax(320px, 1fr);
  gap: clamp(24px, 6vw, 78px);
  align-items: center;
  overflow: hidden;
  padding: 32px max(16px, calc((100vw - 1180px) / 2));
}

.redaction-paper {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(17, 19, 21, 0.15);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: 0 28px 76px rgba(17, 19, 21, 0.14);
  padding: clamp(20px, 4vw, 36px);
}

.redaction-scan {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(104, 216, 214, 0.26), transparent);
  transform: translateX(-120%);
  pointer-events: none;
  will-change: transform;
}

.redaction-row {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 8px;
  min-height: 94px;
  align-content: center;
  border-bottom: 1px solid rgba(17, 19, 21, 0.1);
}

.redaction-row:last-child {
  border-bottom: 0;
}

.redaction-row small {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.redaction-row strong {
  font-size: clamp(24px, 5vw, 48px);
  line-height: 0.96;
  text-transform: uppercase;
}

.redaction-bar {
  position: absolute;
  left: 0;
  right: clamp(28px, 10vw, 120px);
  bottom: 18px;
  height: 16px;
  border-radius: 999px;
  background: var(--ink);
  transform-origin: left center;
  will-change: transform, opacity;
}

@media (max-width: 840px) {
  .redaction-stage {
    grid-template-columns: 1fr;
  }

  .redaction-row {
    min-height: 82px;
  }
}
