/* Small additions for app-rendered pages. Core system lives in /css/weiss.css */
.stat .mono { display: block; }
table th { font-weight: 500; }
.filters .filter-btn { cursor: pointer; }
input[type="text"], input[type="email"], input[type="search"] { font-size: 0.95rem; }
.reader-mode .footer { display: none; }
.reader-mode .topbar, .reader-mode .nav { display: none; }

/* Inquiry modal */
.inq-overlay { position: fixed; inset: 0; z-index: 300; background: rgba(16,16,14,0.72); backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px); display: flex; align-items: center; justify-content: center; padding: 20px; }
.inq-overlay[hidden] { display: none; }
.inq-card { position: relative; width: 100%; max-width: 560px; max-height: 92vh; overflow-y: auto; background: var(--graphite); color: var(--d-ink); border: 1px solid var(--d-line); border-radius: 8px; padding: clamp(24px, 4vw, 40px); box-shadow: 0 40px 100px -30px rgba(0,0,0,0.8); }
.inq-card h3 { color: var(--ivory); }
.inq-card .field label { color: var(--d-ink-mute); }
.inq-card .field input, .inq-card .field textarea { color: var(--ivory); border-bottom-color: var(--d-line); }
.inq-card .field input:focus, .inq-card .field textarea:focus { border-bottom-color: var(--gold); }
.inq-close { position: absolute; top: 14px; right: 16px; width: 34px; height: 34px; border: 1px solid var(--d-line); background: transparent; color: var(--d-ink-soft); border-radius: 3px; font-size: 1.3rem; line-height: 1; cursor: pointer; transition: .2s; }
.inq-close:hover { border-color: var(--gold); color: var(--gold); }

/* Industry coverage */
.ind-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.ind-card { background: var(--bg); padding: 26px 24px; transition: background .3s var(--ease); }
.dark .ind-card { background: var(--obsidian); }
.ind-card:hover { background: var(--bg-panel); }
.dark .ind-card:hover { background: var(--graphite); }
.ind-card .kicker { font-family: var(--mono); font-size: 0.6rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold); }
.ind-card h3 { font-size: 1.35rem; margin: 0.5em 0 0.35em; line-height: 1.12; }
.ind-card p { font-size: 0.88rem; color: var(--ink-soft); margin: 0; }
.chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chips .chip { font-family: var(--mono); font-size: 0.62rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--ink-soft); border: 1px solid var(--line-strong); border-radius: 999px; padding: 0.5em 0.85em; }
.q-list { list-style: none; margin: 0; padding: 0; }
.q-list li { font-family: var(--serif); font-style: italic; font-size: 1.15rem; color: var(--ink); padding: 16px 0; border-top: 1px solid var(--line); }
.q-list li:first-child { border-top: 0; }
