/* token-counter — style.css (RT-AI-001). Tokens only. */
#tkc { display: flex; flex-direction: column; gap: 1rem; }
.tkc-row { display: flex; flex-direction: column; gap: .35rem; }
.tkc-toplabel { font-size: .8rem; font-weight: 600; color: var(--rt-ink-soft, #2A3340); }
.tkc-select {
  width: 100%; min-height: 44px; padding: .5rem .65rem; font-size: 16px;
  border: 1px solid var(--rt-border, #d8dce2); border-radius: 8px;
  background: var(--rt-card, #fff); color: var(--rt-ink, #14213d); font-family: inherit;
}
.tkc-select:focus-visible { outline: 2px solid var(--rt-accent, #e8622a); outline-offset: 2px; }
.tkc-input {
  width: 100%; min-height: 170px; 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;
}
.tkc-input:focus-visible { outline: 2px solid var(--rt-accent, #e8622a); outline-offset: 2px; }
.tkc-toolbar { display: flex; justify-content: flex-end; }
.tkc-clear {
  min-height: 34px; padding: .3rem .8rem; border: 1px solid var(--rt-border, #d8dce2);
  border-radius: 999px; background: var(--rt-card, #fff); color: var(--rt-ink-soft, #2A3340);
  font-weight: 600; font-size: .82rem; cursor: pointer;
}
.tkc-clear:hover { border-color: var(--rt-accent, #e8622a); color: var(--rt-accent, #e8622a); }
.tkc-clear:focus-visible { outline: 2px solid var(--rt-accent, #e8622a); outline-offset: 2px; }
.tkc-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: .6rem; }
@media (min-width: 560px) { .tkc-grid { grid-template-columns: repeat(5, 1fr); } }
.tkc-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;
}
.tkc-stat--hero { background: var(--rt-result-bg, #14213d); border-color: var(--rt-result-bg, #14213d); }
.tkc-stat-val { font-size: 1.35rem; font-weight: 700; color: var(--rt-ink, #14213d); line-height: 1.1; }
.tkc-stat--hero .tkc-stat-val { color: var(--rt-result-ink, #fff); }
.tkc-stat-label { font-size: .72rem; font-weight: 600; color: var(--rt-ink-soft, #2A3340); }
.tkc-stat--hero .tkc-stat-label { color: var(--rt-result-ink, #fff); }
.tkc-stat-note { font-size: .64rem; color: var(--rt-ink-mute, #6b6760); min-height: .9em; }
.tkc-stat--hero .tkc-stat-note { color: var(--rt-result-muted, #b7c0cc); }
.tkc-status { font-size: .75rem; color: var(--rt-ink-mute, #6b6760); min-height: 1.1em; }
.tkc-fineprint { font-size: .74rem; color: var(--rt-ink-mute, #6b6760); margin: 0; }
