/* Word Counter — tool-specific styles */
.wc-stats { display: grid; grid-template-columns: repeat(6, 1fr); gap: 10px; margin-bottom: 16px; }
.wc-stat { background: var(--bg-soft); border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 14px 8px; text-align: center; }
.wc-stat span { display: block; font-size: 1.5rem; font-weight: 800; font-variant-numeric: tabular-nums; }
.wc-stat small { display: block; color: var(--muted-2); font-size: .72rem; margin-top: 3px; text-transform: uppercase; letter-spacing: .03em; }
.wc-stat.hi { border-color: rgba(108,139,255,.5); background: rgba(108,139,255,.08); }
.wc-stat.hi span { background: var(--accent-grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.wc-input { width: 100%; min-height: 44vh; resize: vertical; background: var(--bg-soft); color: var(--text);
  border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 16px; font-size: 1rem; line-height: 1.7; font-family: inherit; }
.wc-input:focus { outline: none; border-color: var(--accent); }
.wc-bar { display: flex; align-items: center; gap: 12px; margin-top: 12px; }
.wc-bar .spacer { flex: 1; }
.wc-extra { color: var(--muted-2); font-size: .85rem; }
@media (max-width: 640px) { .wc-stats { grid-template-columns: repeat(3, 1fr); } }
