:root {
  --bg: #0e1410;
  --panel: #161d18;
  --panel-2: #1d2620;
  --line: #2a352d;
  --text: #e7ece8;
  --muted: #93a098;
  --accent: #6fae3b;
  --accent-dim: #3f6c1f;
  --warn: #d9a23a;
  --danger: #d36a5b;
}
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; background: var(--bg); color: var(--text);
  font: 15px/1.5 -apple-system, "Segoe UI", system-ui, sans-serif; }
a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }
code { background: var(--panel-2); padding: 1px 6px; border-radius: 4px; font-size: 13px; }

/* Login */
.login { min-height: 100vh; display: grid; place-items: center; padding: 60px 20px; }
.login-card { background: var(--panel); border: 1px solid var(--line); border-radius: 12px;
  padding: 32px; width: 100%; max-width: 360px; text-align: center; }
.login-card .mark { font-weight: 800; color: var(--accent); font-size: 28px; letter-spacing: -0.02em; }
.login-card h1 { font-size: 18px; margin: 18px 0 4px; }
.login-card p { color: var(--muted); margin: 0 0 22px; font-size: 13px; }
.login-card input { width: 100%; padding: 12px 14px; background: var(--bg); color: var(--text);
  border: 1px solid var(--line); border-radius: 8px; font-size: 15px; }
.login-card input:focus { outline: none; border-color: var(--accent-dim); }
.login-card button { width: 100%; margin-top: 12px; padding: 12px; background: var(--accent);
  color: #0a0f0a; border: 0; border-radius: 8px; font-weight: 600; font-size: 15px; cursor: pointer; }
.login-card .hint { color: var(--muted); font-size: 12px; margin-top: 18px; }

/* Shell */
.app { max-width: 1100px; margin: 0 auto; padding: 0 24px 80px; }
header.top { display: flex; align-items: center; justify-content: space-between;
  padding: 22px 0; border-bottom: 1px solid var(--line); margin-bottom: 32px; gap: 20px; flex-wrap: wrap; }
.brand { display: flex; align-items: center; gap: 12px; }
.brand .mark { width: 36px; height: 36px; background: var(--accent); border-radius: 8px;
  display: grid; place-items: center; color: #0a0f0a; font-weight: 800; font-size: 16px; }
.brand h1 { font-size: 18px; margin: 0; font-weight: 600; letter-spacing: -0.01em; }
.brand small { color: var(--muted); font-size: 12px; display: block; }
.top nav { display: flex; gap: 18px; font-size: 14px; flex-wrap: wrap; }
.top nav a { color: var(--muted); }
.top nav a.active { color: var(--text); }
.top .logout { color: var(--muted); font-size: 13px; }
.top .admin-badge { background: var(--warn); color: #0a0f0a; padding: 2px 8px; border-radius: 4px;
  font-size: 11px; text-transform: uppercase; letter-spacing: 0.05em; font-weight: 600; }

h2 { font-size: 13px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--muted);
  margin: 36px 0 14px; font-weight: 600; }

/* Flash */
.flash { padding: 10px 14px; border-radius: 6px; margin-bottom: 16px; font-size: 14px; }
.flash.error { background: rgba(211, 106, 91, 0.12); color: var(--danger); border: 1px solid rgba(211, 106, 91, 0.3); }
.flash.success { background: rgba(111, 174, 59, 0.12); color: var(--accent); border: 1px solid rgba(111, 174, 59, 0.3); }

/* Sal-grid */
.salgrid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 14px; }
.sal { background: var(--panel); border: 1px solid var(--line); border-radius: 10px;
  padding: 18px; transition: border-color 0.15s, transform 0.15s; display: block; }
.sal:hover { border-color: var(--accent-dim); text-decoration: none; transform: translateY(-1px); }
.sal .name { font-size: 17px; font-weight: 600; color: var(--text); margin-bottom: 4px; }
.sal .meta { color: var(--muted); font-size: 12px; margin-bottom: 12px; }
.sal .tags { display: flex; flex-wrap: wrap; gap: 6px; }
.sal .tag { background: var(--panel-2); color: var(--muted); font-size: 11px; padding: 3px 8px; border-radius: 4px; }

/* Panels */
.panels { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 720px) { .panels { grid-template-columns: 1fr; } }
.panel { background: var(--panel); border: 1px solid var(--line); border-radius: 10px; padding: 18px; }
.panel h3 { margin: 0 0 12px; font-size: 14px; color: var(--text); font-weight: 600; }
.panel ul { margin: 0; padding: 0; list-style: none; }
.panel li { padding: 6px 0; border-bottom: 1px dashed var(--line); display: flex; justify-content: space-between; font-size: 14px; gap: 12px; }
.panel li:last-child { border-bottom: 0; }
.panel li .label { color: var(--muted); }
.panel li .value { color: var(--text); font-variant-numeric: tabular-nums; }

/* Sal detail */
.sal-detail { background: var(--panel); border: 1px solid var(--line); border-radius: 10px; padding: 28px; }
.sal-detail .hd { display: flex; align-items: baseline; justify-content: space-between;
  margin-bottom: 20px; padding-bottom: 16px; border-bottom: 1px solid var(--line); flex-wrap: wrap; gap: 10px; }
.sal-detail .hd h2 { color: var(--text); text-transform: none; letter-spacing: 0; font-size: 24px; margin: 0; font-weight: 600; }
.sal-detail .hd .sub { color: var(--muted); font-size: 13px; }
.sal-detail .section { margin-bottom: 24px; }
.sal-detail .section h4 { font-size: 12px; text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--accent); margin: 0 0 10px; font-weight: 600; }
.sal-detail .section p { margin: 0 0 8px; color: var(--text); font-size: 14px; }
.sal-detail .gotchas { background: var(--panel-2); border-left: 3px solid var(--warn); padding: 12px 14px; border-radius: 6px; }
.sal-detail .gotchas h4 { color: var(--warn); }
.sal-detail .gotchas ul { margin: 0; padding-left: 18px; }
.sal-detail .gotchas li { padding: 4px 0; font-size: 14px; }
.specs { display: grid; grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 10px; }
.spec { background: var(--panel-2); border-radius: 6px; padding: 10px 12px; }
.spec .k { color: var(--muted); font-size: 11px; text-transform: uppercase; letter-spacing: 0.05em; }
.spec .v { color: var(--text); font-size: 15px; font-weight: 500; margin-top: 2px; }

/* Logins */
.security-banner { background: rgba(217, 162, 58, 0.08); border: 1px solid rgba(217, 162, 58, 0.3);
  border-radius: 8px; padding: 12px 16px; margin-bottom: 20px; color: var(--warn); font-size: 13px; }
.security-banner strong { color: var(--text); }
.logins-table { background: var(--panel); border: 1px solid var(--line); border-radius: 10px; overflow: hidden; }
.logins-row { display: grid; grid-template-columns: 1.4fr 1.5fr 1.5fr auto;
  align-items: center; padding: 14px 18px; border-bottom: 1px solid var(--line); gap: 14px; }
.logins-row:last-child { border-bottom: 0; }
.logins-row.head { background: var(--panel-2); font-size: 11px; text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--muted); padding: 10px 18px; }
.logins-row .sys { font-weight: 600; color: var(--text); }
.logins-row .sys small { display: block; color: var(--muted); font-weight: 400; font-size: 12px; margin-top: 2px; }
.logins-row .user, .logins-row .pass { font-family: ui-monospace, "Cascadia Code", monospace; font-size: 13px; color: var(--text); word-break: break-all; }
.logins-row .pass.hidden { color: var(--muted); letter-spacing: 0.2em; }
.reveal-btn { background: var(--panel-2); border: 1px solid var(--line); color: var(--muted);
  padding: 6px 12px; border-radius: 6px; font-size: 12px; cursor: pointer; }
.reveal-btn:hover { color: var(--accent); border-color: var(--accent-dim); }

/* News */
.news-list { display: flex; flex-direction: column; gap: 12px; }
.news-item { background: var(--panel); border: 1px solid var(--line); border-radius: 10px;
  padding: 18px 20px; display: block; }
.news-item:hover { border-color: var(--accent-dim); text-decoration: none; }
.news-item .meta { display: flex; gap: 12px; align-items: center; font-size: 12px; color: var(--muted); margin-bottom: 6px; flex-wrap: wrap; }
.news-item .date { font-variant-numeric: tabular-nums; }
.news-item .pill { background: var(--panel-2); padding: 2px 8px; border-radius: 4px; font-size: 11px;
  text-transform: uppercase; letter-spacing: 0.05em; }
.news-item .pill.alert { color: var(--warn); background: rgba(217, 162, 58, 0.1); }
.news-item .pill.update { color: var(--accent); background: rgba(111, 174, 59, 0.1); }
.news-item h3 { margin: 0 0 6px; font-size: 16px; color: var(--text); font-weight: 600; }
.news-item p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.5; }
.news-item .author { color: var(--muted); font-size: 12px; }
.news-detail { background: var(--panel); border: 1px solid var(--line); border-radius: 10px; padding: 32px; }
.news-detail .meta { color: var(--muted); font-size: 13px; margin-bottom: 8px; display: flex; gap: 12px; align-items: center; flex-wrap: wrap; }
.news-detail h2 { font-size: 26px; text-transform: none; letter-spacing: -0.01em;
  color: var(--text); margin: 0 0 20px; font-weight: 600; }
.news-detail .body { color: var(--text); font-size: 15px; line-height: 1.65; }
.news-detail .body p { margin: 0 0 14px; }
.news-detail .body code { font-size: 13px; }
.news-detail .body h3 { margin: 22px 0 8px; }
.news-detail .body ul, .news-detail .body ol { padding-left: 22px; }

/* Feedback form */
.feedback-form { background: var(--panel); border: 1px solid var(--line); border-radius: 10px; padding: 24px; }
.type-toggle { display: flex; gap: 0; margin-bottom: 18px; }
.type-toggle label { flex: 1; padding: 10px 16px; background: var(--panel-2); color: var(--muted);
  border: 1px solid var(--line); cursor: pointer; font-size: 14px; font-weight: 500; text-align: center; }
.type-toggle label:first-of-type { border-radius: 8px 0 0 8px; border-right: 0; }
.type-toggle label:last-of-type { border-radius: 0 8px 8px 0; }
.type-toggle input[type="radio"] { display: none; }
.type-toggle input[type="radio"]:checked + label,
.type-toggle label:has(input:checked) { background: var(--accent); color: #0a0f0a; border-color: var(--accent); }
.field { margin-bottom: 14px; }
.field label { display: block; font-size: 12px; color: var(--muted); text-transform: uppercase;
  letter-spacing: 0.06em; margin-bottom: 6px; }
.field input, .field select, .field textarea {
  width: 100%; background: var(--bg); border: 1px solid var(--line); color: var(--text);
  padding: 10px 12px; border-radius: 6px; font: inherit; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--accent-dim); }
.field textarea { resize: vertical; min-height: 120px; font-family: inherit; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 600px) { .field-row { grid-template-columns: 1fr; } }
.severity { display: flex; gap: 6px; }
.severity label { flex: 1; padding: 8px; background: var(--panel-2); color: var(--muted);
  border: 1px solid var(--line); border-radius: 6px; cursor: pointer; font-size: 13px; text-align: center; }
.severity input[type="radio"] { display: none; }
.severity label:has(input:checked).low { color: var(--accent); border-color: var(--accent-dim); }
.severity label:has(input:checked).med { color: var(--warn); border-color: rgba(217, 162, 58, 0.5); }
.severity label:has(input:checked).high { color: var(--danger); border-color: rgba(211, 106, 91, 0.5); }
.submit-btn, .btn-primary { background: var(--accent); color: #0a0f0a; border: 0;
  padding: 12px 24px; border-radius: 8px; font-weight: 600; font-size: 14px; cursor: pointer; display: inline-block; text-decoration: none; }
.btn-primary:hover { text-decoration: none; opacity: 0.92; }
.btn-secondary { background: var(--panel-2); color: var(--text); border: 1px solid var(--line);
  padding: 10px 18px; border-radius: 8px; font-size: 13px; cursor: pointer; display: inline-block; text-decoration: none; }
.btn-secondary:hover { border-color: var(--accent-dim); text-decoration: none; }
.btn-danger { background: transparent; color: var(--danger); border: 1px solid rgba(211, 106, 91, 0.4);
  padding: 8px 14px; border-radius: 6px; font-size: 13px; cursor: pointer; }

/* Reports */
.reports-list { display: flex; flex-direction: column; gap: 10px; }
.report { background: var(--panel); border: 1px solid var(--line); border-radius: 10px; padding: 14px 18px; }
.report .row1 { display: flex; gap: 10px; align-items: center; margin-bottom: 6px; flex-wrap: wrap; }
.report .type-pill { font-size: 11px; text-transform: uppercase; letter-spacing: 0.05em; padding: 2px 8px; border-radius: 4px; }
.report .type-pill.feil { background: rgba(211, 106, 91, 0.12); color: var(--danger); }
.report .type-pill.forslag { background: rgba(111, 174, 59, 0.12); color: var(--accent); }
.report .status-pill { font-size: 11px; text-transform: uppercase; letter-spacing: 0.05em;
  padding: 2px 8px; border-radius: 4px; background: var(--panel-2); color: var(--muted); }
.report .status-pill.sett { color: var(--warn); }
.report .status-pill.fikset { color: var(--accent); }
.report .sal-tag { font-size: 12px; color: var(--muted); margin-left: auto; }
.report .title { color: var(--text); font-weight: 500; font-size: 15px; margin-bottom: 4px; }
.report .body { color: var(--muted); font-size: 13px; margin-bottom: 8px; white-space: pre-wrap; }
.report .meta { color: var(--muted); font-size: 12px; }
.report .actions { display: flex; gap: 6px; margin-top: 10px; flex-wrap: wrap; }
.report .actions form { display: inline; }

/* Admin */
.admin-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 14px; margin-bottom: 24px; }
.admin-card { background: var(--panel); border: 1px solid var(--line); border-radius: 10px; padding: 20px; }
.admin-card .big { font-size: 32px; font-weight: 700; color: var(--text); }
.admin-card .lbl { color: var(--muted); font-size: 13px; }
.admin-card a { font-size: 13px; }

.filter-bar { display: flex; gap: 8px; margin-bottom: 16px; flex-wrap: wrap; }
.filter-bar a { padding: 6px 12px; background: var(--panel-2); border-radius: 6px; font-size: 13px; color: var(--muted); }
.filter-bar a.active { background: var(--accent); color: #0a0f0a; }

/* ===== v2 forside ===== */
.section-h {
  font-size: 12px; text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--muted); margin: 28px 0 12px; font-weight: 600;
}
.section-h:first-child { margin-top: 0; }

.room-grid {
  display: grid; gap: 12px;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
}
.room-btn {
  background: var(--panel); border: 1px solid var(--line); border-radius: 12px;
  padding: 18px 16px; text-align: left; display: block;
  transition: border-color 0.15s, transform 0.15s;
}
.room-btn:hover { border-color: var(--accent-dim); text-decoration: none; transform: translateY(-1px); }
.room-btn .name { font-size: 18px; font-weight: 700; color: var(--text); letter-spacing: -0.01em; }
.room-btn .meta { color: var(--muted); font-size: 11px; margin-top: 4px; }
.room-btn .badges { margin-top: 8px; display: flex; gap: 4px; flex-wrap: wrap; }
.room-btn .badge {
  display: inline-block; background: var(--panel-2); color: var(--muted);
  font-size: 10px; padding: 2px 6px; border-radius: 3px;
}

.quick-actions { display: grid; gap: 10px; grid-template-columns: 1fr; }
@media (min-width: 640px) { .quick-actions { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 960px) { .quick-actions { grid-template-columns: repeat(4, 1fr); } }
.qa {
  background: var(--panel); border: 1px solid var(--line); border-radius: 10px;
  padding: 14px 18px; display: flex; align-items: center; gap: 14px;
}
.qa:hover { border-color: var(--accent-dim); text-decoration: none; }
.qa .icon {
  width: 36px; height: 36px; background: var(--panel-2); border-radius: 8px;
  display: grid; place-items: center; font-size: 18px; flex-shrink: 0;
}
.qa .label { color: var(--text); font-weight: 500; font-size: 15px; }
.qa .sub { color: var(--muted); font-size: 12px; margin-top: 2px; }
.qa .chev { margin-left: auto; color: var(--muted); }

.onboarding-card {
  background: linear-gradient(135deg, var(--panel) 0%, var(--panel-2) 100%);
  border: 1px solid var(--accent-dim); border-radius: 12px; padding: 18px;
  display: flex; align-items: center; gap: 14px;
}
.onboarding-card:hover { text-decoration: none; border-color: var(--accent); }
.onboarding-card .icon {
  width: 40px; height: 40px; background: var(--accent); border-radius: 10px;
  display: grid; place-items: center; color: #0a0f0a; font-weight: 800; font-size: 18px; flex-shrink: 0;
}
.onboarding-card .title { font-weight: 600; color: var(--text); font-size: 15px; }
.onboarding-card .sub { color: var(--muted); font-size: 12px; margin-top: 2px; }
.onboarding-card .chev { margin-left: auto; color: var(--accent); font-size: 18px; }

/* ===== Sticky akutt-footer ===== */
.akutt-footer {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 50;
  background: rgba(14, 20, 16, 0.96); backdrop-filter: blur(8px);
  border-top: 1px solid var(--line); padding: 10px 18px;
  display: flex; gap: 12px; align-items: center; justify-content: space-between;
  font-size: 13px;
}
.akutt-footer .group { display: flex; gap: 14px; align-items: center; flex-wrap: wrap; }
.akutt-footer .label { color: var(--danger); font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; font-size: 10px; }
.akutt-footer .num { color: var(--text); font-variant-numeric: tabular-nums; }
.akutt-footer .num small { color: var(--muted); margin-left: 4px; }
.akutt-footer .heisstans-link { color: var(--warn); font-weight: 600; font-size: 13px; white-space: nowrap; }
.akutt-footer .extra { display: none; }
@media (min-width: 640px) { .akutt-footer .extra { display: inline; } }
body { padding-bottom: 56px; }   /* gjør plass til footer */

/* ===== v2 sal-side ===== */
.sal-v2 .hd { display: flex; align-items: baseline; justify-content: space-between; margin-bottom: 14px; gap: 12px; flex-wrap: wrap; }
.sal-v2 .hd h2 { font-size: 24px; margin: 0; font-weight: 700; letter-spacing: -0.01em; color: var(--text); text-transform: none; }
.sal-v2 .hd .meta { color: var(--muted); font-size: 13px; }
.sal-v2 .hd .edit-link { color: var(--accent); font-size: 13px; }

.akutt-box {
  background: rgba(217, 162, 58, 0.1); border: 1px solid rgba(217, 162, 58, 0.3);
  border-left: 4px solid var(--warn); border-radius: 8px; padding: 14px 16px; margin-bottom: 18px;
}
.akutt-box .lbl { color: var(--warn); font-size: 10px; text-transform: uppercase; letter-spacing: 0.08em; font-weight: 700; margin-bottom: 8px; }
.akutt-box .lbl::before { content: "⚠ "; }
.akutt-box ul { margin: 0; padding-left: 18px; }
.akutt-box li { font-size: 14px; color: var(--text); padding: 2px 0; line-height: 1.5; }
.akutt-box p { margin: 0 0 6px; font-size: 14px; }

.action-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-bottom: 18px; }
.action-btn {
  background: var(--panel); border: 1px solid var(--line); border-radius: 10px;
  padding: 16px 8px; text-align: center; display: block;
}
.action-btn:hover { border-color: var(--accent-dim); text-decoration: none; }
.action-btn .icon { font-size: 22px; margin-bottom: 6px; }
.action-btn .label { font-size: 12px; color: var(--text); font-weight: 500; line-height: 1.2; }

.freq-card {
  background: var(--panel); border: 1px solid var(--line); border-radius: 10px;
  padding: 14px 16px; margin-bottom: 12px;
}
.freq-card .ttl { font-size: 11px; text-transform: uppercase; color: var(--muted); letter-spacing: 0.08em; margin-bottom: 8px; font-weight: 600; }
.freq-card .freq-list { font-family: ui-monospace, "Cascadia Code", monospace; font-size: 13px; color: var(--text); }
.freq-card .freq-list span { margin-right: 12px; display: inline-block; padding: 2px 0; }

details.collapse {
  background: var(--panel); border: 1px solid var(--line); border-radius: 10px;
  margin-bottom: 10px; overflow: hidden;
}
details.collapse > summary {
  padding: 14px 16px; cursor: pointer; user-select: none;
  display: flex; justify-content: space-between; align-items: center;
  font-weight: 500; color: var(--text); font-size: 14px;
  list-style: none;
}
details.collapse > summary::-webkit-details-marker { display: none; }
details.collapse > summary::after { content: "+"; color: var(--muted); font-size: 18px; }
details.collapse[open] > summary::after { content: "−"; }
details.collapse > summary small { color: var(--muted); font-weight: 400; font-size: 12px; }
details.collapse .body { padding: 14px 16px 16px; color: var(--text); font-size: 14px; line-height: 1.65; border-top: 1px solid var(--line); }
details.collapse .body h1, details.collapse .body h2, details.collapse .body h3, details.collapse .body h4 {
  color: var(--accent); font-size: 11px; text-transform: uppercase; letter-spacing: 0.08em; margin: 14px 0 6px;
}
details.collapse .body h1:first-child, details.collapse .body h2:first-child,
details.collapse .body h3:first-child, details.collapse .body h4:first-child { margin-top: 0; }
details.collapse .body ul { margin: 4px 0; padding-left: 20px; }
details.collapse .body p { margin: 0 0 8px; }

.link-list { display: flex; flex-direction: column; background: var(--panel); border: 1px solid var(--line); border-radius: 10px; overflow: hidden; }
.link-list a {
  padding: 12px 16px; color: var(--text); border-bottom: 1px solid var(--line);
  display: flex; justify-content: space-between; align-items: center; font-size: 14px;
}
.link-list a:last-child { border-bottom: 0; }
.link-list a:hover { background: var(--panel-2); text-decoration: none; }
.link-list a .chev { color: var(--muted); }

/* ===== Onboarding ===== */
.ob-intro {
  background: var(--panel); border: 1px solid var(--line); border-radius: 12px; padding: 22px; margin-bottom: 20px;
}
.ob-intro h2 { font-size: 22px; margin: 0 0 8px; font-weight: 700; text-transform: none; letter-spacing: -0.01em; color: var(--text); }
.ob-intro p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.6; }

.ob-progress { display: flex; gap: 6px; margin-bottom: 20px; }
.ob-progress span { flex: 1; height: 4px; background: var(--line); border-radius: 2px; }

.ob-step {
  background: var(--panel); border: 1px solid var(--line); border-radius: 10px;
  padding: 16px 18px; margin-bottom: 10px; display: flex; gap: 14px; align-items: flex-start;
}
.ob-step .num {
  width: 32px; height: 32px; border-radius: 50%; background: var(--panel-2);
  color: var(--text); display: grid; place-items: center; font-weight: 700; flex-shrink: 0;
  border: 1px solid var(--line);
}
.ob-step .content { flex: 1; }
.ob-step .title { font-weight: 600; color: var(--text); font-size: 15px; margin-bottom: 2px; }
.ob-step .desc { color: var(--muted); font-size: 13px; line-height: 1.5; }
.ob-step .actions { display: flex; gap: 8px; margin-top: 10px; flex-wrap: wrap; }
.ob-step .btn-read {
  background: var(--panel-2); border: 1px solid var(--accent-dim); color: var(--accent);
  padding: 6px 12px; border-radius: 6px; font-size: 12px; text-decoration: none;
}
.ob-step .btn-read:hover { background: var(--accent-dim); color: var(--text); text-decoration: none; }
