/* prompt-cleaner-normalizer — style.css (RT-AI-014). Tokens only. */
#pcn { display: flex; flex-direction: column; gap: 1rem; }
.pcn-row { display: flex; flex-direction: column; gap: .35rem; }
.pcn-label { font-size: .8rem; font-weight: 600; color: var(--rt-ink-soft, #2A3340); }
.pcn-input {
  width: 100%; min-height: 150px; padding: .75rem; font-size: 16px; line-height: 1.6;
  border: 1px solid var(--rt-border, #d8dce2); border-radius: 10px; resize: vertical;
  background: var(--rt-card, #fff); color: var(--rt-ink, #14213d); font-family: inherit;
}
.pcn-input:focus-visible { outline: 2px solid var(--rt-accent, #e8622a); outline-offset: 2px; }
.pcn-options { display: grid; grid-template-columns: 1fr; gap: .45rem; }
@media (min-width: 560px) { .pcn-options { grid-template-columns: repeat(2, 1fr); } }
.pcn-option {
  display: flex; align-items: center; gap: .5rem; padding: .5rem .65rem;
  border: 1px solid var(--rt-border, #d8dce2); border-radius: 8px;
  background: var(--rt-card, #fff); cursor: pointer;
}
.pcn-option:hover { border-color: var(--rt-accent, #e8622a); }
.pcn-checkbox { width: 18px; height: 18px; accent-color: var(--rt-accent, #e8622a); cursor: pointer; flex: none; }
.pcn-checkbox:focus-visible { outline: 2px solid var(--rt-accent, #e8622a); outline-offset: 2px; }
.pcn-option-text { font-size: .82rem; font-weight: 600; color: var(--rt-ink-soft, #2A3340); }
.pcn-out-head { display: flex; align-items: center; justify-content: space-between; gap: .5rem; }
.pcn-out-title { font-size: .8rem; font-weight: 600; color: var(--rt-ink-soft, #2A3340); }
.pcn-copy {
  min-height: 40px; padding: .4rem .9rem; border: 1px solid var(--rt-border, #d8dce2);
  border-radius: 8px; background: var(--rt-accent, #e8622a); color: #fff; font-weight: 600; cursor: pointer;
}
.pcn-copy:hover { filter: brightness(1.05); }
.pcn-copy:disabled { opacity: .5; cursor: not-allowed; }
.pcn-copy:focus-visible { outline: 2px solid var(--rt-ink, #14213d); outline-offset: 2px; }
.pcn-output {
  width: 100%; min-height: 150px; padding: .75rem; font-size: .9rem; line-height: 1.6;
  font-family: var(--rt-mono, ui-monospace, 'SF Mono', Menlo, Consolas, monospace);
  border: 1px solid var(--rt-border, #d8dce2); border-radius: 10px; resize: vertical;
  background: var(--rt-bg, #f7f6f3); color: var(--rt-ink, #14213d);
}
.pcn-output:focus-visible { outline: 2px solid var(--rt-accent, #e8622a); outline-offset: 2px; }
.pcn-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: .6rem; }
.pcn-stat {
  display: flex; flex-direction: column; gap: .15rem; padding: .65rem .55rem;
  border: 1px solid var(--rt-border, #d8dce2); border-radius: 10px; background: var(--rt-card, #fff); text-align: center;
}
.pcn-stat--hero { background: var(--rt-result-bg, #14213d); border-color: var(--rt-result-bg, #14213d); }
.pcn-stat-val { font-size: 1.35rem; font-weight: 700; color: var(--rt-ink, #14213d); line-height: 1.1; }
.pcn-stat--hero .pcn-stat-val { color: var(--rt-result-ink, #fff); }
.pcn-stat-label { font-size: .72rem; font-weight: 600; color: var(--rt-ink-soft, #2A3340); }
.pcn-stat--hero .pcn-stat-label { color: var(--rt-result-ink, #fff); }
.pcn-sr { position: absolute !important; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; }
