
:root {
 --bg: #f7f8fa; --bg-2: #f7f8fa;
 --surface: #ffffff; --surface-2: #f5f6f8; --surface-3: #f5f6f8;
 --line: #e8eaef; --line-strong: #d5d9e2; --line-soft: #e8eaef;
 --text: #272c3a; --text-2: #555f70; --muted: #697386;
 --red: #aa4d60; --red-2: #aa4d60; --red-bg: #fbedef; --red-line: #f1dce1;
 --amber: #956c2d; --amber-2: #956c2d; --amber-bg: #fcf5e7; --amber-line: #f0e4ca;
 --green: #397960; --green-2: #397960; --green-bg: #edf6f0; --green-line: #d9eade;
 --accent: #6857ad; --accent-2: #8c7bc3; --accent-bg: #f0edfa; --accent-line: #e0d9f5;
 --ink-shadow: 39,44,58;
 --shadow-sm: none; --shadow: none; --shadow-lift: 0 5px 18px #34304408;
 --radius: 14px; --radius-sm: 8px;
}

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0; color: var(--text); background: var(--bg);
  background-image:
    radial-gradient(1200px 600px at 10% -10%, rgba(255, 252, 245, .9), transparent 60%),
    radial-gradient(900px 500px at 100% 0%, rgba(214, 196, 168, .45), transparent 60%),
    linear-gradient(180deg, var(--bg-2), var(--bg) 40%);
  background-attachment: fixed;
  font: 14px/1.5 -apple-system, BlinkMacSystemFont, "Segoe UI", Inter, Roboto, sans-serif;
  font-feature-settings: "tnum" 1, "cv11" 1;
}
a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }
code, .mono { font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace; font-size: 12.5px; }
code { background: var(--surface-2); border: 1px solid var(--line); padding: 1px 6px; border-radius: 6px; color: var(--text-2); }
button { font: inherit; }
[hidden] { display: none !important; }


.topbar { display: flex; align-items: center; gap: 18px; padding: 0 28px; height: 60px; position: sticky; top: 0; z-index: 5;
  background: rgba(251, 248, 242, .85); backdrop-filter: saturate(1.2) blur(10px); -webkit-backdrop-filter: saturate(1.2) blur(10px);
  border-bottom: 1px solid var(--line); box-shadow: none; }
.brand { display: flex; align-items: center; gap: 10px; font-weight: 700; font-size: 15px; color: var(--text); letter-spacing: -.01em; }
.brand:hover { text-decoration: none; }
.brand-mark { width: 14px; height: 14px; border-radius: 5px; background: var(--surface); box-shadow: none; }
.crumbs { display: flex; align-items: center; gap: 8px; color: var(--muted); font-size: 13px; }
.crumbs .sep { color: var(--line-strong); }
.crumbs .current { color: var(--text-2); font-weight: 600; }
.spacer { flex: 1; }
.lookup { display: flex; gap: 8px; }
.lookup input { width: 300px; padding: 8px 12px; border: 1px solid var(--line-strong); border-radius: 10px; background: var(--surface); font: inherit; color: var(--text);
  box-shadow: none; }
.lookup input::placeholder { color: var(--muted); }
.lookup input:focus { outline: none; border-color: var(--accent-2); box-shadow: none; }
.lookup button, .btn { padding: 8px 14px; border: 1px solid var(--line-strong); border-radius: 10px; cursor: pointer; color: var(--text);
  background: var(--surface); box-shadow: none; transition: transform .1s ease, box-shadow .1s ease; }
.lookup button:hover, .btn:hover { border-color: var(--accent-2); transform: translateY(-1px); }
.lookup button:active, .btn:active { transform: translateY(0); box-shadow: none; }
.btn.primary { color: #fff; border-color: var(--accent); background: var(--surface); box-shadow: none; }
.btn.primary:hover { filter: brightness(1.06); }
.btn.ghost { border-color: transparent; background: transparent; box-shadow: none; color: var(--accent); }
.btn.ghost:hover { background: var(--accent-bg); transform: none; }

main { padding: 32px 28px 48px; max-width: 1440px; margin: 0 auto; }


.page-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 16px; margin-bottom: 24px; flex-wrap: wrap; }
.page-head h1 { font-size: 26px; letter-spacing: -.025em; margin: 0 0 4px; font-weight: 700; }
.page-head .sub { color: var(--muted); }
.stats { display: flex; gap: 10px; flex-wrap: wrap; }
.stat { display: flex; align-items: baseline; gap: 6px; padding: 8px 14px; border-radius: 999px; font-size: 13px; color: var(--text-2);
  background: var(--surface); border: 1px solid var(--line); box-shadow: none; }
.stat b { font-size: 15px; color: var(--text); }
.stat.red { background: var(--surface); border-color: var(--red-line); color: var(--red); } .stat.red b { color: var(--red); }
.stat.amber { background: var(--surface); border-color: var(--amber-line); color: var(--amber); } .stat.amber b { color: var(--amber); }
.stat.green { background: var(--surface); border-color: var(--green-line); color: var(--green); } .stat.green b { color: var(--green); }


.cards { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 20px; }
@media (max-width: 1200px) { .cards { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
@media (max-width: 880px) { .cards { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 560px) { .cards { grid-template-columns: 1fr; } main { padding: 16px; } .topbar { padding: 0 16px; } .lookup input { width: 160px; } }
.card { position: relative; display: block; color: inherit; padding: 20px 20px 16px; border-radius: var(--radius); isolation: isolate;
  background: var(--surface);
  border: 1px solid var(--line-soft);
  box-shadow: none;
  transition: transform .16s cubic-bezier(.2,.7,.2,1), box-shadow .16s ease, border-color .16s ease; }

.card { --ring: var(--green-line); --ring-strong: var(--green-2); border-color: var(--ring); }
.card.warning { --ring: var(--amber-line); --ring-strong: var(--amber-2); }
.card.attention { --ring: var(--red-line); --ring-strong: var(--red-2); }
.card::before {
  content: ""; position: absolute; inset: 0; border-radius: inherit; pointer-events: none; z-index: 1;
  box-shadow: none; opacity: .95; }
.card::after {
  content: ""; position: absolute; inset: 0; border-radius: inherit; pointer-events: none; z-index: -1;
  background: radial-gradient(420px 160px at 20% -20%, rgba(255,255,255,.75), transparent 70%); }
.card:hover { text-decoration: none; transform: translateY(-4px); border-color: var(--ring-strong); box-shadow: none; }
.card.attention { box-shadow: none; }
.card.attention:hover { box-shadow: none; }
.card.warning { box-shadow: none; }
.card-top { display: flex; align-items: flex-start; justify-content: space-between; gap: 10px; margin-bottom: 16px; }
.card h3 { margin: 0; font-size: 16px; font-weight: 700; letter-spacing: -.015em; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.card .since { color: var(--muted); font-size: 12px; margin-top: 3px; }
.mark { display: inline-flex; align-items: center; gap: 6px; padding: 4px 10px; border-radius: 999px; font-size: 11.5px; font-weight: 700; letter-spacing: .01em; white-space: nowrap;
  box-shadow: none; }
.mark::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: currentColor; box-shadow: none; }
.mark.attention { color: var(--red); background: var(--surface); border: 1px solid var(--red-line); }
.mark.attention::before { animation: pulse 1.6s ease-out infinite; }
.mark.warning { color: var(--amber); background: var(--surface); border: 1px solid var(--amber-line); }
.mark.healthy { color: var(--green); background: var(--surface); border: 1px solid var(--green-line); }
@keyframes pulse { 0% { box-shadow: none; } 100% { box-shadow: none; } }
.card-metrics { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.metric { padding: 12px 10px 10px; border-radius: var(--radius-sm); background: var(--surface);
  box-shadow: none; border: 1px solid rgba(var(--ink-shadow), .05); }
.metric .v { font-size: 20px; font-weight: 700; letter-spacing: -.02em; line-height: 1.1; }
.metric .v.red { color: var(--red); } .metric .v.amber { color: var(--amber); }
.metric .k { font-size: 10.5px; color: var(--muted); margin-top: 4px; text-transform: uppercase; letter-spacing: .06em; font-weight: 600; }
.card-foot { display: flex; justify-content: space-between; align-items: center; margin-top: 14px; padding-top: 12px; border-top: 1px dashed var(--line); font-size: 12.5px; color: var(--muted); }
.card-foot .open-link { color: var(--accent); font-weight: 700; }


.service-head { display: flex; align-items: center; gap: 14px; margin-bottom: 22px; flex-wrap: wrap; }
.service-head h1 { margin: 0; font-size: 26px; letter-spacing: -.025em; font-weight: 700; }
.layout { display: grid; grid-template-columns: minmax(440px, 1.35fr) minmax(360px, 1fr); gap: 20px; align-items: start; }
@media (max-width: 980px) { .layout { grid-template-columns: 1fr; } }
.panel { border-radius: var(--radius); overflow: hidden; background: var(--surface); border: 1px solid var(--line-soft);
  box-shadow: none; }
.panel-head { display: flex; align-items: center; gap: 12px; padding: 14px 18px; border-bottom: 1px solid var(--line);
  background: var(--surface); }
.panel-head h2 { font-size: 12px; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); margin: 0; font-weight: 700; }
.panel-head .spacer { flex: 1; }
.seg { display: inline-flex; border: 1px solid var(--line-strong); border-radius: 10px; overflow: hidden; background: var(--surface-2); box-shadow: none; padding: 2px; gap: 2px; }
.seg button { padding: 5px 11px; border: 0; border-radius: 8px; background: transparent; color: var(--text-2); cursor: pointer; font-size: 12.5px; }
.seg button.on { background: var(--surface); color: var(--accent); font-weight: 700; box-shadow: none; }
.scroll { overflow-x: auto; }
table { width: 100%; border-collapse: collapse; }
th, td { text-align: left; padding: 11px 14px; border-bottom: 1px solid var(--line); vertical-align: top; }
th { font-weight: 700; color: var(--muted); font-size: 11px; text-transform: uppercase; letter-spacing: .06em; white-space: nowrap; background: var(--surface-2); }
tbody tr:last-child td { border-bottom: 0; }
tr.row { cursor: pointer; transition: background .1s ease; }
tr.row td { white-space: nowrap; }
tr.row:hover { background: var(--surface-2); }
tr.row.selected { background: var(--accent-bg); box-shadow: none; }
.lvl { display: inline-block; min-width: 52px; text-align: center; font-size: 10.5px; font-weight: 800; padding: 3px 8px; border-radius: 999px; text-transform: uppercase; letter-spacing: .05em;
  box-shadow: none; }
.lvl.error { color: var(--red); background: var(--red-bg); border: 1px solid var(--red-line); }
.lvl.warn { color: var(--amber); background: var(--amber-bg); border: 1px solid var(--amber-line); }
.lvl.info { color: var(--green); background: var(--green-bg); border: 1px solid var(--green-line); }
.state-pill { font-size: 11.5px; color: var(--text-2); background: var(--surface-2); border: 1px solid var(--line); padding: 2px 9px; border-radius: 999px; }
.state-pill.acknowledged { color: var(--accent); background: var(--accent-bg); border-color: var(--accent-line); }
.state-pill.resolved { color: var(--green); background: var(--green-bg); border-color: var(--green-line); }
.empty { padding: 36px; text-align: center; color: var(--muted); }
.error-text { color: var(--red); }
.muted { color: var(--muted); }


.detail { padding: 18px; }
.detail .title { font-size: 16px; font-weight: 700; margin: 0 0 14px; letter-spacing: -.015em; word-break: break-word; }
.detail dl { display: grid; grid-template-columns: max-content 1fr; gap: 7px 18px; margin: 0 0 14px; }
.detail dt { color: var(--muted); } .detail dd { margin: 0; word-break: break-word; }
.actions { display: flex; gap: 8px; margin: 14px 0 18px; flex-wrap: wrap; }
.summary { position: relative; border-radius: 12px; padding: 14px 16px 14px 18px; margin: 0 0 18px; white-space: pre-wrap; line-height: 1.6; color: var(--text);
  background: var(--surface); border: 1px solid var(--amber-line);
  box-shadow: none; }
.summary::before { content: ""; position: absolute; left: 0; top: 12px; bottom: 12px; width: 3px; border-radius: 3px; background: var(--surface); }
.summary .label { display: block; font-size: 10.5px; text-transform: uppercase; letter-spacing: .08em; color: var(--amber); font-weight: 800; margin-bottom: 6px; }
.detail h3 { font-size: 11px; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); margin: 18px 0 8px; font-weight: 700; }
pre { background: var(--surface-2); border: 1px solid var(--line); border-radius: 12px; padding: 14px; overflow: auto; font-size: 12px; margin: 0; line-height: 1.5; box-shadow: none; }
.timeline td:first-child, .detail td:first-child { white-space: nowrap; }
/* Workspace and navigation */
body { background: var(--bg); background-image: none; }
:focus-visible { outline: 3px solid #a898da; outline-offset: 3px; }
.topbar { min-height: 78px; height: auto; padding: 16px 40px; gap: 30px; background: white; backdrop-filter: none; position: static; }
.brand { font-size: 25px; font-weight: 750; letter-spacing: -1.2px; }
.brand-dot { color: #9a88c9; }
.brand-mark { display: grid; place-items: center; width: 32px; height: 34px; border-radius: 10px; color: var(--accent); background: #eae5f7; font-size: 27px; line-height: 1; font-weight: 600; }
.crumbs { border-left: 1px solid var(--line); padding-left: 28px; flex-wrap: wrap; overflow-wrap: anywhere; }
.lookup input { width: 250px; background: var(--surface-2); border-color: var(--line); }
.lookup button, .btn { background: white; font-weight: 500; }
.lookup button:hover, .btn:hover { transform: none; background: var(--surface-2); }
.btn.primary { background: var(--accent); }
.btn.primary:hover { background: #584794; }
main { padding: 48px 48px 64px; }
.page-head h1 { font-size: 30px; font-weight: 600; letter-spacing: -1px; overflow-wrap: anywhere; }
.eyebrow { font-size: 10px; letter-spacing: 1.8px; color: var(--muted); font-weight: 600; margin-bottom: 12px; }
.period { font-size: 12px; color: var(--muted); }
.overview-stats { display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); gap: 16px; margin: 30px 0 42px; }
.overview-stat { padding: 21px 24px; background: white; border: 1px solid var(--line); border-radius: var(--radius); }
.overview-stat > span { font-size: 12px; font-weight: 500; color: var(--text-2); }
.overview-stat b { display: block; font-size: 34px; letter-spacing: -1px; font-weight: 550; margin: 8px 0; line-height: 1.2; }
.overview-stat small { font-size: 11px; color: var(--muted); }
.overview-stat.red { background: #fcf1f3; border-color: #f2e4e7; }
.overview-stat.red b { color: var(--red); }
.overview-stat.amber { background: #fcf7ed; border-color: #f1eadd; }
.overview-stat.amber b { color: var(--amber); }
.overview-stat.lavender { background: #f1eef9; border-color: #e8e3f4; }
.overview-stat.lavender b { color: var(--accent); }
.section-heading h2 { margin: 0; font-size: 18px; font-weight: 600; letter-spacing: -.4px; }
.section-heading p { margin: 4px 0 20px; color: var(--muted); font-size: 13px; }
.service-tools { display: flex; justify-content: space-between; align-items: center; gap: 16px; margin-bottom: 22px; }
.service-search { width: 250px; border: 1px solid var(--line); background: white; border-radius: 8px; padding: 9px 12px; color: var(--text); font: inherit; }
.service-search::placeholder { color: var(--muted); }
.seg { border: 0; padding: 4px; gap: 3px; background: #edeff3; max-width: 100%; overflow-x: auto; }
.seg button { padding: 7px 12px; white-space: nowrap; font-size: 12px; }
.seg button.on { background: white; color: var(--text); font-weight: 600; }
.cards { grid-template-columns: repeat(3,minmax(0,1fr)); gap: 18px; }
.card { padding: 22px 22px 16px; background: white; border-color: var(--line); min-width: 0; transition: border-color .15s, box-shadow .15s; }
.card::before, .card::after { display: none; }
.card:hover, .card.attention:hover { transform: none; border-color: #c6bddf; box-shadow: var(--shadow-lift); }
.card-top { flex-wrap: wrap; gap: 12px; margin-bottom: 24px; }
.card h3 { font-size: 15px; font-weight: 600; }
.card .since { font-size: 11px; margin-top: 5px; }
.mark { border: 0 !important; border-radius: 6px; font-size: 10px; font-weight: 500; padding: 4px 8px; }
.mark::before { width: 5px; height: 5px; animation: none !important; }
.mark.attention, .stat.red { background: var(--red-bg); }
.mark.warning, .stat.amber { background: var(--amber-bg); }
.mark.healthy, .stat.green { background: var(--green-bg); }
.metric { background: transparent; border: 0; border-radius: 0; padding: 0; }
.metric + .metric { border-left: 1px solid var(--line); padding-left: 14px; }
.metric .v { font-size: 23px; font-weight: 550; letter-spacing: -.6px; line-height: 1.3; }
.metric .k { font-size: 10px; font-weight: 400; text-transform: none; letter-spacing: 0; margin-top: 5px; }
.card-foot { border-top-style: solid; font-size: 11px; margin-top: 24px; padding-top: 14px; }
.card-foot .open-link { font-weight: 500; }
.stat { border-radius: 7px; font-size: 12px; }
.layout { grid-template-columns: minmax(0,1.2fr) minmax(0,1fr); }
.panel { min-width: 0; }
.panel-head { background: white; flex-wrap: wrap; }
.panel-head h2 { text-transform: none; letter-spacing: 0; font-size: 13px; font-weight: 600; }
.detail { padding: 22px; }
.detail dl { grid-template-columns: max-content minmax(0,1fr); gap: 10px 20px; font-size: 12px; }
.detail p, .service-head h1 { overflow-wrap: anywhere; }
.summary { background: var(--accent-bg); border-color: var(--accent-line); font-size: 13px; }
.summary::before { display: none; }
.summary .label { color: var(--accent); }
th { font-weight: 500; text-transform: none; letter-spacing: 0; background: #fafbfc; }
.lvl { border: 0 !important; border-radius: 5px; font-weight: 500; }
@media (max-width:1150px) { .cards { grid-template-columns:repeat(2,minmax(0,1fr)); } main { padding:36px 28px; } .layout { grid-template-columns:1fr; } }
@media (max-width:760px) { .topbar { flex-wrap:wrap; padding:16px 20px; gap:18px; } .lookup { width:100%; } .lookup input { flex:1; min-width:0; } main { padding:28px 20px; } .overview-stats { grid-template-columns:repeat(2,minmax(0,1fr)); gap:12px; margin-bottom:30px; } .overview-stat { padding:18px; } .service-tools { align-items:stretch; flex-direction:column; } .service-search { width:100%; } .seg { align-self:flex-start; } .cards { grid-template-columns:1fr; } .page-head h1 { font-size:27px; } .crumbs { padding-left:18px; flex:1; } .topbar > .spacer { display:none; } }
@media (prefers-reduced-motion:reduce) { * { transition:none !important; animation:none !important; } }
/* Soren: precise surfaces, quiet instrumentation, and compact section labels. */
:root { --radius: 9px; --line: #e1e5ed; --line-soft: #e1e5ed; }
.brand { letter-spacing: -1px; font-weight: 600; }
.brand-mark { border-radius: 7px; font-family: ui-monospace, Consolas, monospace; border: 1px solid #dcd4ef; }
.overview-head { align-items: center; margin-bottom: 18px; }
.overview-head h1.console-label { margin: 0; font: 500 11px/1.5 ui-monospace, Consolas, monospace; text-transform: uppercase; letter-spacing: 1.5px; display: flex; align-items: center; gap: 10px; }
.console-label::before { content: ''; width: 8px; height: 8px; border: 1px solid var(--accent); background: var(--accent-bg); border-radius: 2px; }
.period, .section-count { font: 11px/1.5 ui-monospace, Consolas, monospace; color: var(--muted); }
.overview-stats { margin-top: 0; gap: 12px; }
.overview-stat { position: relative; overflow: hidden; padding: 22px 24px 18px; }
.overview-stat::after { content: ''; position: absolute; top: 15px; right: 15px; width: 7px; height: 7px; border-top: 1px solid currentColor; border-right: 1px solid currentColor; opacity: .25; }
.overview-stat > span { font: 10px/1.5 ui-monospace, Consolas, monospace; text-transform: uppercase; letter-spacing: .65px; }
.overview-stat b { font-family: ui-monospace, Consolas, monospace; font-weight: 400; font-size: 36px; margin: 14px 0 12px; }
.overview-stat small { display: block; padding-top: 12px; border-top: 1px solid #3430440c; }
.section-heading { display: flex; align-items: center; gap: 14px; margin-bottom: 18px; }
.section-heading::after { content: ''; height: 1px; flex: 1; background: var(--line); }
.section-heading h2 { font: 500 11px/1.5 ui-monospace, Consolas, monospace; text-transform: uppercase; letter-spacing: 1.4px; }
.section-count { font-size: 10px; }
.card { padding: 0; overflow: hidden; }
.card-top { padding: 20px 20px 18px; margin: 0; border-bottom: 1px solid var(--line); background: #fcfcfe; }
.card h3 { font-size: 14px; letter-spacing: -.15px; }
.card .since { font: 10px/1.5 ui-monospace, Consolas, monospace; margin-top: 7px; }
.card-metrics { padding: 22px 20px; gap: 8px; }
.metric .v { font: 400 23px/1.3 ui-monospace, Consolas, monospace; letter-spacing: -1px; }
.metric .k { font-size: 9px; text-transform: uppercase; letter-spacing: .6px; margin-top: 8px; }
.card-foot { padding: 12px 20px; margin: 0; background: #fcfcfe; font: 10px/1.5 ui-monospace, Consolas, monospace; }
.mark { border-radius: 4px; }
.mark::before { border-radius: 1px; }
.seg { border-radius: 6px; border: 1px solid var(--line); background: #f0f2f6; }
.seg button { border-radius: 4px; }
.panel-head { background: #fafbfe; }
.panel-head h2, .detail h3 { font: 500 10px/1.5 ui-monospace, Consolas, monospace; text-transform: uppercase; letter-spacing: 1px; }
.panel-head h2::before { content: ''; display: inline-block; width: 5px; height: 5px; margin-right: 9px; vertical-align: 1px; background: #b0a2d1; }
.summary { border-radius: 6px; }
tr.row.selected { box-shadow: inset 2px 0 var(--accent); }
@media (max-width:760px) { .overview-head { gap: 10px; } .period { font-size: 10px; } .overview-stat { padding: 18px 15px 14px; } .overview-stat > span { font-size: 9px; } .overview-stat small { font-size: 10px; } }
/* Brand typography and neutral surfaces informed by soren-ai.com. */
:root { --bg: #fafaf9; --text: #171719; --text-2: #555552; --muted: #71716d; --line: #e5e5e1; --line-soft: #e5e5e1; --line-strong: #cececa; --accent: #354f5a; --accent-2: #617e88; --accent-bg: #edf2f3; --accent-line: #d7e2e5; --radius: 8px; }
body { font-family: Switzer, -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Arial, sans-serif; }
.topbar { min-height: 76px; padding: 18px 40px; }
.brand { font-family: Figtree, Arial, sans-serif; font-size: 24px; font-weight: 400; letter-spacing: 4.5px; }
.crumbs { padding-left: 30px; }
main { padding-top: 40px; }
.lookup button, .btn { border-radius: 999px; padding: 9px 18px; }
.lookup button, .btn.primary { background: #171719; border-color: #171719; color: white; }
.lookup button:hover, .btn.primary:hover { background: #353537; color: white; }
.lookup input, .service-search { border-radius: 7px; background: white; }
:focus-visible { outline-color: #7395a2; }
.overview-head { margin-bottom: 22px; align-items: center; }
.overview-head h1.console-label { font: 500 12px/1.5 Switzer, Arial, sans-serif; letter-spacing: 1.44px; text-transform: uppercase; margin: 0; }
.console-label::before { display: none; }
.period, .section-count { font: 400 12px/1.5 Switzer, Arial, sans-serif; color: var(--muted); }
.overview-stats { margin: 0 0 42px; gap: 16px; }
.overview-stat { padding: 24px; border-radius: 8px; }
.overview-stat::after { display: none; }
.overview-stat > span { font: 500 11px/1.5 Switzer, Arial, sans-serif; text-transform: uppercase; letter-spacing: 1px; }
.overview-stat b { font-family: Figtree, Arial, sans-serif; font-size: 44px; font-weight: 300; letter-spacing: -2px; margin: 12px 0; }
.overview-stat small { font-size: 12px; }
.overview-stat.lavender { background: #edf2f3; border-color: #dfe8ea; }
.overview-stat.lavender b { color: #354f5a; }
.overview-stat.red { background: #faf0f0; }
.overview-stat.amber { background: #faf6ed; }
.section-heading { display: flex; align-items: center; gap: 18px; margin: 0 0 24px; }
.section-heading h2 { font: 300 30px/1.15 Figtree, Arial, sans-serif; letter-spacing: -1px; text-transform: none; }
.section-heading::after { content: ''; height: 1px; background: var(--line); flex: 1; }
.section-count { font-size: 11px; }
.service-tools { margin-bottom: 24px; }
.seg { background: transparent; border: 0; border-radius: 0; padding: 0; gap: 6px; }
.seg button { padding: 9px 14px; border-radius: 999px; font-size: 12px; }
.seg button.on { background: #171719; color: white; font-weight: 400; }
.seg button:hover:not(.on) { background: #eeefec; color: var(--text); }
.card { padding: 0; border-radius: 8px; overflow: hidden; }
.card-top { padding: 24px 22px 18px; background: white; margin: 0; border: 0; }
.card h3 { font-family: Figtree, Arial, sans-serif; font-size: 18px; font-weight: 400; letter-spacing: -.5px; }
.card .since { font: 400 11px/1.5 Switzer, Arial, sans-serif; margin-top: 7px; }
.card-metrics { padding: 16px 22px 24px; }
.metric .v { font-family: Figtree, Arial, sans-serif; font-size: 29px; font-weight: 300; letter-spacing: -1px; }
.metric .k { font-size: 10px; text-transform: none; letter-spacing: 0; margin-top: 6px; }
.card-foot { padding: 15px 22px; margin: 0; background: white; font: 400 11px/1.5 Switzer, Arial, sans-serif; }
.card-foot .open-link { color: var(--text); border-bottom: 1px solid #aabcc3; padding-bottom: 2px; min-width: 48px; }
.card:hover, .card.attention:hover { border-color: #aabcc3; box-shadow: 0 4px 16px #17171905; }
.mark { border-radius: 999px; padding: 4px 9px; }
.mark::before { border-radius: 50%; }
.panel-head { background: #fafaf9; }
.panel-head h2, .detail h3 { font-family: Switzer, Arial, sans-serif; font-weight: 500; letter-spacing: 1px; }
.panel-head h2::before { display: none; }
.service-head h1, .page-head h1, .detail .title { font-family: Figtree, Arial, sans-serif; font-weight: 400; }
.summary { border-radius: 8px; }
@media (max-width:760px) { .topbar { padding:18px 20px; } main { padding-top:28px; } .overview-stat { padding:18px 15px; } .overview-stat > span { font-size:10px; letter-spacing:.6px; } .overview-stat small { font-size:11px; } .overview-stat b { font-size:38px; } .seg { gap:2px; } .seg button { padding:9px 10px; font-size:11px; } .section-heading h2 { font-size:27px; } }
/* Filterable report feed */
.report-feed { margin: 0 0 44px; background: white; border: 1px solid var(--line); border-radius: 8px; overflow: hidden; min-width: 0; }
.report-heading { display:flex; align-items:center; justify-content:space-between; gap:18px; padding:24px; flex-wrap:wrap; }
.report-heading h2 { font:300 28px/1.2 Figtree,Arial,sans-serif; letter-spacing:-.8px; margin:0; }
.report-heading p { color:var(--muted); font-size:11px; margin:6px 0 0; }
.report-live { display:flex; align-items:center; gap:10px; flex-wrap:wrap; }
.report-live [data-sync] { color:var(--text-2); font-size:11px; }
.report-live .btn { font-size:11px; padding:7px 12px; }
.report-filters { padding:18px 24px; display:flex; align-items:flex-end; flex-wrap:wrap; gap:14px; border-top:1px solid var(--line); border-bottom:1px solid var(--line); background:#fafaf9; }
.report-filters label { display:flex; flex-direction:column; gap:6px; font-size:10px; color:var(--muted); flex:1 1 120px; min-width:0; }
.report-filters select, .report-filters input { width:100%; min-width:0; color:var(--text); font:12px Switzer,Arial,sans-serif; border:1px solid var(--line-strong); border-radius:6px; padding:9px 10px; background:white; height:37px; }
.report-filters .report-search { flex-basis:180px; }
.report-filters .btn { font-size:11px; padding:8px 10px; }
.custom-range { display:flex; gap:14px; flex:1 1 400px; }
.report-meta { display:flex; align-items:center; justify-content:space-between; flex-wrap:wrap; gap:10px; padding:14px 24px; font-size:11px; color:var(--muted); }
.legend-dot { display:inline-block; width:6px; height:6px; margin:0 5px 1px 12px; border-radius:50%; }
.legend-dot.server { background:var(--red); }.legend-dot.client { background:var(--amber); }
.http-badge { display:inline-block; padding:4px 7px; border-radius:4px; font:11px/1.3 ui-monospace,Consolas,monospace; white-space:nowrap; }
.http-badge.server { background:var(--red-bg); color:var(--red); border:1px solid var(--red-line); }
.http-badge.client { background:var(--amber-bg); color:var(--amber); border:1px solid var(--amber-line); }
.http-statuses { display:flex; flex-wrap:wrap; gap:5px; min-width:110px; }
.report-table td { font-size:12px; padding:16px 18px; vertical-align:middle; }
.report-table th { padding:12px 18px; }
.report-table td small { display:block; font-size:11px; color:var(--muted); margin-top:5px; }
.report-table a { color:var(--text); font-weight:500; }
.report-time { white-space:nowrap; font-size:11px !important; color:var(--text-2); }
.report-table tr.selected { background:var(--accent-bg); box-shadow:inset 2px 0 var(--accent); }
.report-table tbody tr:hover { background:#fafaf9; }
.report-footer { padding:14px 24px; border-top:1px solid var(--line); display:flex; justify-content:space-between; align-items:center; flex-wrap:wrap; gap:12px; font-size:10px; color:var(--muted); }
.report-footer > div { display:flex; align-items:center; gap:12px; }
.report-footer .btn { font-size:11px; padding:6px 10px; }
button:disabled { opacity:.4; cursor:default; }
.report-error { padding:14px 24px; background:var(--red-bg); color:var(--red); font-size:12px; }
.report-service-layout { display:grid; grid-template-columns:minmax(0,1fr); gap:24px; }
.report-service-layout .report-feed { margin:0; }
@media(max-width:760px) { .report-heading,.report-filters { padding:18px; } .report-filters label { flex-basis:130px; } .report-meta,.report-footer { padding:14px 18px; } .report-live { gap:8px; } .report-live [data-sync] { flex-basis:100%; } .custom-range { flex-wrap:wrap; } }
.report-table { max-height:540px; overflow:auto; }
.report-table thead { position:sticky; top:0; z-index:1; }
@media(min-width:1000px) { .report-service-layout { grid-template-columns:minmax(0,1.6fr) minmax(360px,1fr); align-items:start; } }
.detail-label { display:block; font-size:10px; text-transform:uppercase; letter-spacing:1px; color:var(--muted); margin-bottom:8px; }
.detail .title { font-size:23px; margin-bottom:6px; font-weight:400; }
.detail-operation { color:var(--muted); font-size:12px; margin:0 0 24px; }
.detail-status { display:flex; flex-wrap:wrap; gap:24px; margin-bottom:24px; padding-bottom:22px; border-bottom:1px solid var(--line); }
.detail .summary { line-height:1.8; font-size:14px; padding:20px; }
.technical-details { border-top:1px solid var(--line); margin-top:24px; padding-top:18px; }
.technical-details > summary { color:var(--text-2); font-size:12px; cursor:pointer; margin-bottom:18px; }
@media(min-width:1000px) { .report-service-layout > .panel { position:sticky; top:24px; max-height:calc(100vh - 48px); overflow:auto; } }
.http-badge.application { color:var(--accent); background:var(--accent-bg); border:1px solid var(--accent-line); }
[data-arrivals] { color:var(--accent); font-weight:500; }
.report-arrival { animation:report-arrival 5s ease-out; }
@keyframes report-arrival { from { background:#e2edf0; } to { background:transparent; } }
@media(prefers-reduced-motion:reduce) { .report-arrival { animation:none; } }
.report-table tr[data-id] { cursor:pointer; }
.report-table tr[data-id]:focus-visible { outline:2px solid var(--accent); outline-offset:-2px; }
.full-report-dialog { width:min(960px,calc(100vw - 40px)); max-height:calc(100dvh - 48px); padding:0; border:1px solid var(--line); border-radius:12px; color:var(--text); background:white; box-shadow:0 24px 90px #17171930; }
.full-report-dialog::backdrop { background:#17171966; backdrop-filter:blur(3px); }
.full-report-head { display:flex; justify-content:space-between; align-items:flex-start; gap:20px; padding:24px 28px; border-bottom:1px solid var(--line); position:sticky; top:0; background:white; z-index:1; }
.full-report-head h2 { font:400 28px/1.2 Figtree,Arial,sans-serif; margin:0; overflow-wrap:anywhere; }
.full-report-head p { font-size:12px; color:var(--muted); margin:8px 0 0; overflow-wrap:anywhere; }
.full-report-body { padding:24px 28px; }
.full-report-meta { display:grid; grid-template-columns:max-content minmax(0,1fr); gap:10px 22px; font-size:12px; margin:22px 0; }
.full-report-meta dt { color:var(--muted); }.full-report-meta dd { margin:0; overflow-wrap:anywhere; }
.full-report-body h3 { font-size:13px; font-weight:500; margin:26px 0 10px; }
.full-report-body > p { font-size:12px; }
.full-report-samples { display:flex; flex-wrap:wrap; gap:8px; }.full-report-samples .btn { font-size:11px; overflow-wrap:anywhere; }
.full-report-body pre { white-space:pre-wrap; overflow-wrap:anywhere; font-size:12px; }
@media(max-width:600px) { .full-report-dialog { width:calc(100vw - 20px); max-height:calc(100dvh - 24px); }.full-report-head,.full-report-body { padding:20px; }.full-report-head h2 { font-size:23px; } }
.collective-scope { color:var(--muted); font-size:12px; margin-bottom:18px; }
.collective-totals { display:flex; gap:32px; margin-bottom:24px; }
.collective-totals b { display:block; font:300 32px Figtree,Arial,sans-serif; }
.collective-totals span { color:var(--muted); font-size:10px; }
.collective-narrative p { margin:0; white-space:pre-wrap; }
.collective-narrative small { display:block; font-size:10px; color:var(--muted); margin-top:14px; line-height:1.5; }
.priority-explanation { font-size:11px; color:var(--muted); }
.priority-item { display:flex; align-items:flex-start; gap:14px; padding:18px 0; border-bottom:1px solid var(--line); }
.priority-number { font:12px ui-monospace,Consolas,monospace; color:var(--accent); padding-top:3px; }
.priority-item > div { min-width:0; }
.priority-link { display:block; padding:0; border:0; border-bottom:1px solid var(--line-strong); background:none; color:var(--text); text-align:left; cursor:pointer; font-size:14px; overflow-wrap:anywhere; }
.priority-item small { display:block; font-size:10px; color:var(--muted); margin-top:5px; }
.priority-item p { font-size:12px; line-height:1.65; margin:10px 0 0; }
.priority-check { color:var(--accent); }
.shared-dependency { margin:12px 0; font-size:12px; }.shared-dependency b { font-weight:500; }.shared-dependency span { display:block; color:var(--muted); font-size:11px; margin-top:3px; }
.report-list { display:flex; flex-direction:column; gap:12px; padding:20px; max-height:660px; overflow:auto; background:#fafaf9; }
.report-list:empty { display:none; }
.report-item { display:block; width:100%; text-align:left; background:white; border:1px solid var(--line); border-left:3px solid var(--accent-line); border-radius:8px; padding:18px 20px; color:var(--text); cursor:pointer; font-family:Switzer,Arial,sans-serif; transition:border-color .15s,box-shadow .15s; }
.report-item.server { border-left-color:#c87988; }.report-item.client { border-left-color:#c6a46a; }.report-item.application { border-left-color:#799aaa; }
.report-item:hover,.report-item.selected { border-top-color:#b7c7cd; border-right-color:#b7c7cd; border-bottom-color:#b7c7cd; box-shadow:0 2px 10px #17171906; }
.report-item-top { display:flex; align-items:center; justify-content:space-between; gap:10px; margin-bottom:10px; }
.report-category { font-size:9px; text-transform:uppercase; letter-spacing:1px; color:var(--text-2); }.server .report-category { color:var(--red); }.client .report-category { color:var(--amber); }
.report-item time { font-size:10px; color:var(--muted); }
.report-item-title { display:block; font:400 20px/1.3 Figtree,Arial,sans-serif; letter-spacing:-.4px; overflow-wrap:anywhere; }
.report-item-title::first-letter { text-transform:uppercase; }
.report-item-operation { display:block; color:var(--muted); font:11px/1.5 ui-monospace,Consolas,monospace; margin-top:6px; overflow-wrap:anywhere; }
.report-item-bottom { display:flex; align-items:center; flex-wrap:wrap; gap:12px; border-top:1px solid var(--line); margin-top:16px; padding-top:12px; }
.report-item-bottom .http-statuses { min-width:0; }.report-repeats { font-size:11px; color:var(--muted); }.report-open { margin-left:auto; font-size:11px; color:var(--accent); }
.report-live [data-arrivals] { font-size:10px; }
@media(max-width:760px) { .report-list { padding:12px; }.report-item { padding:16px; }.report-item-top { flex-wrap:wrap; }.report-item-title { font-size:19px; } }
.lvl.neutral { color:var(--text-2); background:var(--surface-2); border-color:var(--line); }
.prominent-errors { padding-bottom:22px; margin-bottom:22px; border-bottom:1px solid var(--line); }
.prominent-errors h3:first-child { margin-top:0; }
.prominent-statuses { display:flex; flex-wrap:wrap; gap:10px; }
.prominent-status { display:flex; flex-direction:column; gap:5px; padding:9px; background:#fafaf9; border:1px solid var(--line); border-radius:7px; }
.prominent-status small { font-size:10px; color:var(--muted); }
.prominent-bug-types { display:flex; flex-direction:column; gap:9px; }
.prominent-bug-types > div { display:flex; align-items:center; justify-content:space-between; gap:12px; }
.prominent-bug-types code { font-size:11px; overflow-wrap:anywhere; min-width:0; }
.prominent-bug-types > div > span { font-size:10px; color:var(--muted); white-space:nowrap; }
/* Compact, structured collective analysis. */
.analysis-context { display:flex; justify-content:space-between; flex-wrap:wrap; gap:8px; padding-bottom:18px; font-size:11px; color:var(--muted); }
.analysis-context i { padding:0 7px; font-style:normal; color:#c6c8c7; }
.status-breakdown { padding:0 0 20px; margin-bottom:22px; border-bottom:1px solid var(--line); }
.breakdown-heading { display:flex; align-items:center; justify-content:space-between; margin-bottom:8px; }
.detail .breakdown-heading h3 { margin:0; text-transform:none; letter-spacing:0; font:500 13px Switzer,Arial,sans-serif; color:var(--text); }
.breakdown-heading > span { font-size:10px; color:var(--muted); }
.status-line { display:grid; grid-template-columns:minmax(0,1fr) 54px 16px; align-items:center; gap:12px; padding:9px 0; }
.status-line-label { display:flex; align-items:center; gap:12px; font-size:12px; min-width:0; }
.status-line-label > span:last-child { overflow-wrap:anywhere; }
.status-code { font:11px ui-monospace,Consolas,monospace; min-width:35px; padding:4px 0; }
.status-code.server { color:var(--red); }.status-code.client { color:var(--amber); }
.status-line-label small { display:block; font-size:9px; color:var(--muted); margin-top:2px; }
.status-line b { text-align:right; font-size:11px; font-weight:500; }
.status-meter { display:block; height:4px; border-radius:3px; background:#f0f0ee; overflow:hidden; }
.status-meter > span { display:block; height:100%; border-radius:3px; }.status-meter .server { background:#ddb2bd; }.status-meter .client { background:#ddc79f; }
.detail .collective-narrative { padding:0 0 22px; border:0; border-bottom:1px solid var(--line); border-radius:0; background:transparent; font-size:13px; line-height:1.75; margin:0 0 22px; }
.collective-narrative .label { text-transform:none; font:500 13px Switzer,Arial,sans-serif; letter-spacing:0; color:var(--text); margin-bottom:10px; }
.detail .investigate-heading { font:500 13px Switzer,Arial,sans-serif; text-transform:none; letter-spacing:0; color:var(--text); margin:0 0 4px; }
.analysis-priority { border-bottom:1px solid var(--line); padding:14px 0; }
.analysis-priority > summary { cursor:pointer; display:flex; align-items:flex-start; gap:12px; list-style:none; }
.analysis-priority > summary::-webkit-details-marker { display:none; }
.analysis-priority > summary::after { content:'+'; margin-left:auto; color:var(--muted); font-size:16px; line-height:1; }
.analysis-priority[open] > summary::after { content:'-'; }
.analysis-rank { color:var(--muted); font:10px/1.8 ui-monospace,Consolas,monospace; }
.analysis-issue { font:400 15px/1.3 Figtree,Arial,sans-serif; overflow-wrap:anywhere; }
.analysis-issue small { display:block; font:10px/1.5 Switzer,Arial,sans-serif; color:var(--muted); margin-top:5px; }
.analysis-reason { margin-left:26px; font-size:12px; line-height:1.7; }
.analysis-reason p { margin:12px 0; }
.analysis-reason .priority-link { font-size:11px; margin-top:14px; color:var(--accent); }
.analysis-dependencies { padding-top:18px; }.analysis-dependencies > summary { cursor:pointer; color:var(--text-2); font-size:11px; }.analysis-dependencies > summary > span { color:var(--muted); margin-left:8px; }
@media(max-width:1100px) { .status-line { grid-template-columns:minmax(0,1fr) 35px 14px; gap:8px; } }
.problem-statuses { display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:12px; margin:20px 0 26px; }
.problem-status { display:flex; flex-direction:column; gap:6px; padding:14px 10px; border-radius:8px; background:#fff6f3; }
.problem-status strong { font-size:36px; line-height:1; font-weight:600; color:#ad4635; }
.problem-status.client { background:#fff9ec; }
.problem-status.client strong { color:#946b23; }
.problem-status span { font-size:12px; line-height:1.35; }
.problem-status small { font-size:10px; color:var(--muted); }
@media(max-width:420px) { .problem-statuses { gap:6px; } .problem-status { padding:12px 8px; } .problem-status strong { font-size:30px; } }
.service-chat { position:fixed; bottom:22px; left:22px; z-index:90; font-size:13px; }
.chat-launcher { display:flex; align-items:center; gap:24px; padding:15px 19px; color:white; background:#273e48; border:0; border-radius:28px; box-shadow:0 6px 24px #172e4930; cursor:pointer; font:inherit; }
.chat-launcher span { font-size:18px; }
.chat-panel { position:absolute; bottom:62px; left:0; width:390px; height:min(590px,calc(100dvh - 120px)); background:white; border:1px solid var(--line); border-radius:16px; box-shadow:0 15px 70px #1c354c25; display:flex; flex-direction:column; overflow:hidden; }
.chat-panel[hidden] { display:none; }
.chat-panel header { display:flex; align-items:center; justify-content:space-between; padding:18px; border-bottom:1px solid var(--line); }
.chat-panel header strong,.chat-panel header small { display:block; }.chat-panel header strong { font-size:15px; }.chat-panel header small { color:var(--muted); margin-top:5px; overflow-wrap:anywhere; }
.chat-panel button { font:inherit; cursor:pointer; }.chat-panel button:disabled { opacity:.5; cursor:wait; }
.chat-panel header button { border:0; background:none; font-size:24px; color:var(--muted); }
.chat-scope { display:flex; align-items:center; gap:8px; justify-content:space-between; padding:10px 18px; background:#f5f7f7; font-size:11px; color:var(--muted); }
.chat-scope span { overflow:hidden; text-overflow:ellipsis; white-space:nowrap; }.chat-scope button { border:0; background:none; white-space:nowrap; color:var(--accent); }
.chat-messages { flex:1; overflow-y:auto; padding:16px; min-height:100px; }
.chat-message { padding:12px 14px; margin-bottom:12px; border-radius:12px; background:#f4f6f6; line-height:1.6; white-space:pre-wrap; overflow-wrap:anywhere; }
.chat-message.user { margin-left:28px; background:#e9f0f3; }.chat-message.error { color:#a33f3f; background:#fff1ef; }
.chat-suggestions { display:flex; flex-wrap:wrap; gap:6px; padding:0 16px 12px; }.chat-suggestions button,.chat-sources button { border:1px solid var(--line); border-radius:12px; background:white; padding:6px 9px; color:var(--text); font-size:11px; text-align:left; }
.chat-sources { display:flex; gap:5px; flex-wrap:wrap; margin:-5px 0 14px; }
.chat-panel form { border-top:1px solid var(--line); padding:14px 16px; }.chat-panel label { position:absolute; width:1px; height:1px; overflow:hidden; clip-path:inset(50%); }
.chat-panel textarea { width:100%; resize:none; border:1px solid var(--line); border-radius:8px; padding:10px; font:inherit; box-sizing:border-box; }
.chat-panel form > div { display:flex; align-items:center; justify-content:space-between; gap:12px; margin-top:8px; }.chat-panel [data-status] { font-size:10px; color:var(--muted); }.chat-panel [type=submit] { background:#273e48; color:white; border:0; border-radius:7px; padding:8px 13px; white-space:nowrap; }
@media(max-width:500px) { .service-chat { left:12px; bottom:12px; }.chat-panel { width:calc(100vw - 24px); height:min(590px,calc(100dvh - 100px)); }.chat-launcher { padding:12px 16px; } }
