* { box-sizing: border-box; margin: 0; }
:root {
  --bg: #0e1116;
  --panel: #161b22;
  --border: #2a313c;
  --text: #dbe2ea;
  --dim: #7d8794;
  --accent: #4da3ff;
  --good: #3fb96f;
  --warn: #d9a13c;
}
body {
  background: var(--bg);
  color: var(--text);
  font: 15px/1.5 system-ui, -apple-system, sans-serif;
  min-height: 100vh;
}
a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }

.top {
  display: flex; align-items: center; gap: 18px;
  padding: 12px 22px; border-bottom: 1px solid var(--border);
}
.brand {
  font-size: 20px; font-weight: 800; color: var(--text); letter-spacing: .5px;
  padding-right: 18px; border-right: 1px solid var(--border); line-height: 1.6;
}
.brand:hover { text-decoration: none; }
.brand span { color: var(--accent); }
.sub { color: var(--dim); font-size: 13px; margin-left: auto; }

main { max-width: 1200px; margin: 0 auto; padding: 18px 22px 60px; }

.panel {
  background: var(--panel); border: 1px solid var(--border);
  border-radius: 10px; padding: 16px 18px; margin-top: 18px;
}
.panel h1 { font-size: 20px; margin-bottom: 8px; }
.panel h2 { font-size: 13px; text-transform: uppercase; letter-spacing: 1px; color: var(--dim); margin-bottom: 12px; }

.dim { color: var(--dim); font-size: 13px; }
.bad { color: #e5726a; }
.note { color: var(--dim); font-size: 13px; margin-top: 4px; }

.pill {
  display: inline-block; padding: 1px 9px; border-radius: 999px;
  font-size: 12px; border: 1px solid var(--border); color: var(--dim);
}
.pill.result { color: var(--good); border-color: var(--good); }
.pill.guidance { color: var(--warn); border-color: var(--warn); }

input, select, textarea, button {
  background: var(--bg); color: var(--text);
  border: 1px solid var(--border); border-radius: 6px;
  padding: 8px 10px; font: inherit;
}
input::placeholder, textarea::placeholder { color: var(--dim); }
input:focus, textarea:focus, select:focus { outline: 1px solid var(--accent); }
button {
  background: var(--accent); color: #08121f; border: none;
  font-weight: 600; cursor: pointer; padding: 8px 16px;
}
button:hover { filter: brightness(1.1); }
form { margin-top: 4px; }
form textarea { width: 100%; margin: 8px 0; }

.card-meta { display: flex; flex-wrap: wrap; gap: 10px; font-size: 12.5px; color: var(--dim); margin-top: 4px; align-items: center; }

pre {
  white-space: pre-wrap; word-break: break-word;
  background: var(--bg); border: 1px solid var(--border);
  border-radius: 8px; padding: 10px 12px; margin: 8px 0;
  font: 13px/1.5 ui-monospace, monospace;
}
.brief { margin-top: 12px; }
.result { border-top: 1px solid var(--border); padding: 12px 0; }
.result:first-of-type { border-top: none; }
.result-head { display: flex; gap: 10px; align-items: center; }
.result-title { font-weight: 600; margin-top: 6px; }

.login-box {
  max-width: 360px; margin: 12vh auto; text-align: center;
  background: var(--panel); border: 1px solid var(--border);
  border-radius: 12px; padding: 32px;
}
.login-box h1 { margin-bottom: 6px; }
.login-box p { color: var(--dim); margin-bottom: 16px; }
.login-box input { width: 100%; margin-bottom: 10px; }
.login-box button { width: 100%; }

/* ---- home page ---- */
.home-intro { margin: 26px 2px 4px; }
.home-intro h1 { font-size: 22px; font-weight: 700; letter-spacing: -.2px; }
.home-intro p { margin-top: 2px; font-size: 14px; }

.linkgrid {
  display: grid; gap: 12px; margin-top: 18px;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
}
.linkcard {
  display: flex; align-items: center; gap: 13px;
  background: var(--panel); border: 1px solid var(--border);
  border-radius: 12px; padding: 15px 17px; color: var(--text);
  transition: border-color .12s, transform .12s, box-shadow .12s;
}
.linkcard:hover {
  border-color: var(--accent); text-decoration: none;
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, .35);
}
.linkcard-icon {
  flex-shrink: 0; width: 40px; height: 40px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(77, 163, 255, .12); color: var(--accent);
}
.linkcard-icon svg { width: 21px; height: 21px; }
.linkcard-body { flex: 1; min-width: 0; display: block; }
.linkcard-title { display: block; font-weight: 600; font-size: 15px; }
.linkcard-sub {
  display: block; color: var(--dim); font-size: 12.5px;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.linkcard-num {
  flex-shrink: 0; text-align: right;
  font-size: 21px; font-weight: 700; line-height: 1.1;
}
.linkcard-num em {
  display: block; font-style: normal; font-weight: 400;
  font-size: 10.5px; color: var(--dim);
  text-transform: uppercase; letter-spacing: .8px;
}

.panel-head {
  display: flex; align-items: baseline; justify-content: space-between;
  margin-bottom: 14px;
}
.panel-head h2 { margin-bottom: 0; }
.more { font-size: 13px; }

.screen-grid { display: flex; gap: 40px; flex-wrap: wrap; margin-bottom: 18px; }
.hero-num { font-size: 42px; font-weight: 650; line-height: 1.1; letter-spacing: -.5px; }
.hero-num span { font-size: 20px; font-weight: 400; color: var(--dim); }
.hero-num.sub { font-size: 42px; }
.stat-label { color: var(--dim); font-size: 12px; text-transform: uppercase; letter-spacing: .8px; margin-top: 3px; }

.meter {
  display: flex; gap: 2px; height: 14px; border-radius: 7px;
  overflow: hidden; background: var(--bg);
}
.meter .seg { display: block; min-width: 6px; }
.seg-keep { background: #45c777; }
.seg-maybe { background: #f6d64a; }
.seg-reject { background: #ed5a6d; }
.seg-pending { background: #909aa8; }

.legend { display: flex; flex-wrap: wrap; gap: 8px 22px; margin-top: 12px; }
.legend-item {
  display: inline-flex; align-items: center; gap: 7px;
  color: var(--dim); font-size: 13.5px;
}
.legend-item strong { color: var(--text); font-weight: 600; }
.legend-item:hover { color: var(--text); text-decoration: none; }
.legend-item.is-zero { opacity: .45; }
.swatch {
  width: 10px; height: 10px; border-radius: 3px; display: inline-block;
}

@media (max-width: 700px) {
  .top .sub { display: none; }
  .top { flex-wrap: wrap; gap: 8px 18px; }
  .brand { border-right: none; padding-right: 0; }
  .screen-grid { gap: 26px; }
}

.nav { display: flex; gap: 4px; }
.nav a {
  color: var(--dim); font-size: 13.5px; font-weight: 500;
  padding: 5px 12px; border-radius: 999px;
}
.nav a:hover { color: var(--text); background: rgba(255, 255, 255, .06); text-decoration: none; }
.nav a.on { color: var(--accent); background: rgba(77, 163, 255, .12); }

.chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chip {
  border: 1px solid var(--border); border-radius: 999px;
  padding: 3px 12px; font-size: 13px; color: var(--dim);
}
.chip:hover { border-color: var(--accent); text-decoration: none; }
.chip.on { border-color: var(--accent); color: var(--accent); }

.filters { margin-bottom: 12px; }
.filters input { flex: 1; min-width: 180px; }

.tablewrap { overflow-x: auto; }
table { width: 100%; border-collapse: collapse; font-size: 13.5px; }
th {
  text-align: left; color: var(--dim); font-size: 11.5px;
  text-transform: uppercase; letter-spacing: .8px;
  padding: 6px 10px; border-bottom: 1px solid var(--border);
}
td { padding: 6px 10px; border-bottom: 1px solid var(--border); }
tr:hover td { background: rgba(77, 163, 255, .05); }

.kv { margin-top: 10px; display: grid; gap: 5px; }
.kv .dim { display: inline-block; min-width: 105px; }

.defgrid { display: grid; gap: 10px; }
.defrow { display: grid; grid-template-columns: 110px 1fr 36px; gap: 10px; align-items: center; }
.defrow .note { grid-column: 2 / 4; margin-top: 0; }
.deflabel { font-size: 13px; color: var(--dim); }
.defbar {
  height: 8px; background: var(--bg); border: 1px solid var(--border);
  border-radius: 999px; overflow: hidden; display: block;
}
.defbar span { display: block; height: 100%; background: linear-gradient(90deg, var(--good), var(--warn) 60%, #e5726a); }
.defval { font-size: 12.5px; color: var(--dim); text-align: right; }

details summary { cursor: pointer; margin-bottom: 8px; }

.target-name { font-size: 16px; margin-right: 8px; }
.target-head { margin-bottom: 12px; }
.whychips { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 8px; }
.chip.small { font-size: 12px; padding: 2px 10px; }
.pill.warn { color: var(--warn); border-color: var(--warn); }
.pill.v-keep { color: var(--good); border-color: var(--good); }
.pill.v-maybe { color: var(--warn); border-color: var(--warn); }
.pill.v-reject { color: #e5726a; border-color: #e5726a; }

.shotrow { display: flex; gap: 12px; align-items: flex-start; overflow-x: auto; }
.shot { position: relative; display: block; flex-shrink: 0; }
.shot img {
  display: block; border: 1px solid var(--border); border-radius: 8px;
  background: #fff;
}
.shot-d img { width: min(640px, 62vw); height: auto; }
.shot-m img { width: min(173px, 17vw); height: auto; }
.shot:hover img { border-color: var(--accent); }
.shotlabel {
  position: absolute; bottom: 6px; left: 6px;
  background: rgba(0, 0, 0, .65); color: #fff; font-size: 11px;
  padding: 1px 8px; border-radius: 999px;
}

.screenform { margin-top: 12px; }
.screenform button { padding: 6px 20px; }
.btn-keep { background: var(--good); }
.btn-maybe { background: var(--warn); }
.btn-reject { background: #e5726a; }
.btn-clear { background: var(--bg); color: var(--dim); border: 1px solid var(--border); }

.noteform { display: flex; gap: 8px; align-items: flex-start; margin-top: 10px; }
.noteform textarea { flex: 1; margin: 0; font-size: 13.5px; }
.btn-note { background: var(--bg); color: var(--accent); border: 1px solid var(--border); white-space: nowrap; }
.btn-note:hover { border-color: var(--accent); filter: none; }

/* ---- pipeline ---- */
.funnel { display: grid; gap: 10px; }
.frow { display: grid; grid-template-columns: 150px 1fr; gap: 14px; align-items: center; }
.flabel { font-size: 13px; color: var(--dim); text-align: right; }
.ftrack { background: var(--bg); border: 1px solid var(--border); border-radius: 999px;
          overflow: hidden; height: 30px; }
.fbar { height: 100%; display: flex; align-items: center; justify-content: flex-end;
        padding: 0 12px; min-width: 44px; border-radius: 999px;
        transition: width .6s cubic-bezier(.16,1,.3,1); }
.fbar span { font-size: 13px; font-weight: 700; color: #08120b; }
.fbar.f0 { background: #2e4a37; } .fbar.f0 span { color: #cfe3d3; }
.fbar.f1 { background: #3d6b4c; } .fbar.f1 span { color: #eaf4ec; }
.fbar.f2 { background: #4f8a5f; }
.fbar.f3 { background: #6db97c; }
.fbar.f4 { background: #9fe0a8; }

.pboard { display: grid; gap: 14px; grid-template-columns: 1fr; }
@media (min-width: 900px) { .pboard { grid-template-columns: repeat(4, 1fr); } }
.pcol h3 { font-size: 12px; text-transform: uppercase; letter-spacing: 1px;
           color: var(--dim); margin-bottom: 10px; }
.pcard { background: var(--bg); border: 1px solid var(--border); border-radius: 10px;
         padding: 12px 14px; margin-bottom: 10px; }
.pname { font-weight: 600; font-size: 14.5px; color: var(--text); }
.pname:hover { color: var(--accent); }
.pmeta { display: flex; flex-wrap: wrap; gap: 10px; font-size: 12px;
         color: var(--dim); margin-top: 4px; }
.pnote { font-size: 12.5px; color: var(--warn); margin-top: 6px; }
.plinks { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 9px; }

/* ------------------------------------------------------------- luna page */
.tabs { display: flex; flex-wrap: wrap; gap: 8px; margin: 12px 0 18px; }
.tabs a { border: 1px solid var(--border); border-radius: 999px; padding: 4px 14px;
          font-size: 13px; color: var(--dim); }
.tabs a:hover { border-color: var(--accent); text-decoration: none; }
.tabs a.on { border-color: var(--accent); color: var(--accent); }
.tabs .count { opacity: .7; font-size: 11.5px; margin-left: 4px; }

.lgrid { display: grid; gap: 14px; grid-template-columns: 1fr; }
@media (min-width: 760px) { .lgrid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1200px) { .lgrid { grid-template-columns: repeat(3, 1fr); } }
.lcard { background: var(--bg); border: 1px solid var(--border); border-radius: 10px;
         overflow: hidden; display: flex; flex-direction: column; }
.lshot { display: block; width: 100%; aspect-ratio: 1440 / 900; object-fit: cover;
         background: #0d0f12; border-bottom: 1px solid var(--border); }
.lbody { padding: 12px 14px 14px; }
.lhead { display: flex; justify-content: space-between; gap: 10px; align-items: baseline; }
.lv { font-size: 11px; font-weight: 700; letter-spacing: .5px; border-radius: 999px;
      padding: 2px 9px; white-space: nowrap; }
.lv-dated { background: rgba(109, 185, 124, .16); color: #8fdc9e; }
.lv-modern { background: rgba(255, 255, 255, .08); color: var(--dim); }
.lv-borderline { background: rgba(230, 180, 80, .16); color: #e6c675; }
.lv-capture_issue { background: rgba(224, 106, 106, .16); color: #e69a9a; }
.lv-error { background: rgba(224, 106, 106, .25); color: #ff9d9d; }
.lsum { font-size: 12.5px; color: var(--dim); margin-top: 7px; line-height: 1.45; }
.flag { color: #e6c675; }
.flag.me { color: var(--accent); font-weight: 600; }

.lshot { cursor: zoom-in; }
.lightbox {
  position: fixed; inset: 0; z-index: 100;
  background: rgba(8, 10, 13, .88);
  display: flex; align-items: center; justify-content: center;
  padding: 4vh 4vw;
}
.lightbox[hidden] { display: none; }
.lightbox img {
  max-width: 100%; max-height: 100%;
  border: 1px solid var(--border); border-radius: 8px;
  box-shadow: 0 12px 48px rgba(0, 0, 0, .6);
  cursor: default;
}

/* ------------------------------------------------------- review + flags */
.flag.haram { color: #e69ab8; }
.vform { display: flex; gap: 8px; margin-top: 12px; }
.vbtn {
  flex: 1; padding: 7px 0; font-size: 13px; font-weight: 600;
  background: var(--bg); color: var(--dim);
  border: 1px solid var(--border); border-radius: 8px; cursor: pointer;
}
.vbtn:hover { border-color: var(--accent); color: var(--text); }
.vkeep.sel  { background: rgba(109,185,124,.18); color: #8fdc9e; border-color: #4a8a58; }
.vmaybe.sel { background: rgba(230,180,80,.18); color: #e6c675; border-color: #9a7c3a; }
.vreject.sel{ background: rgba(224,106,106,.18); color: #e69a9a; border-color: #9a4a4a; }

/* step 4: pre-build */
.gaps { margin: 6px 0 0; padding-left: 18px; font-size: 12.5px; color: #d9a441; }
.gaps li { margin: 2px 0; }
.mediagrid { display: grid; grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); gap: 8px; margin: 8px 0 18px; }
.mediagrid figure { margin: 0; background: #161a22; border-radius: 6px; padding: 6px; }
.mediagrid img { width: 100%; height: 90px; object-fit: contain; background: #0d0f14; border-radius: 4px; cursor: zoom-in; }
.mediagrid figcaption { font-size: 11px; color: #8b93a7; margin-top: 4px; overflow: hidden; white-space: nowrap; text-overflow: ellipsis; }
.mediagrid figure.logo, .mediagrid figure.hero { outline: 1px solid #6ea8fe; }
.brief { white-space: pre-wrap; font: 12.5px/1.5 ui-monospace, monospace; background: #0d0f14; padding: 14px; border-radius: 6px; max-width: 100%; overflow-x: auto; }
.vform input[type=text] { background: #0d0f14; border: 1px solid #2a2f3a; color: inherit; padding: 6px 8px; border-radius: 4px; font-size: 12.5px; }
.vform .vbtn { white-space: nowrap; }
.gaps.conflicts { color: #e69ab8; }

.pagecopy { border-top: 1px solid var(--line, #333); padding: 6px 0; }
.pagecopy summary { cursor: pointer; }
.pagecopy .pill { font-size: 11px; padding: 1px 6px; border-radius: 8px; background: var(--line, #333); margin-right: 6px; }

.btier { display:inline-block; font-weight:700; font-size:13px; padding:1px 9px; border-radius:10px; color:#111; }
.btier-A { background:#7ee0a0; } .btier-B { background:#f5d76e; } .btier-C { background:#c9c9c9; }
.pnote.manual { border-left:3px solid #e06c8c; padding-left:8px; }
.aform { margin:6px 0; } .aform summary { cursor:pointer; font-size:12px; }
.vform select { background:#222; color:#ddd; border:1px solid #444; border-radius:4px; padding:4px; }

.plinks.big .chip { font-size: 13px; padding: 6px 12px; }
.lcard .vform { flex-wrap: wrap; gap: 6px; }
.lcard .vform .vbtn { flex: 0 0 auto; }

/* build step */
.flag.built{background:#1d4a33;color:#8fe6b4;border-color:#2c6a49}
.chip.built{background:#1d4a33;color:#a9eec6;border-color:#2c6a49;font-weight:700}

/* ---- one card for steps 4, 5, 6 (2026-08-29) ---- */
.plogo { height: 22px; vertical-align: middle; margin-right: 6px; background: #fff; border-radius: 3px; }
.plogo.big { height: 44px; padding: 4px; }
.btier-none { background: #3a3f4a; color: #aaa; }
.stages { display: grid; grid-template-columns: repeat(8, minmax(0, 1fr)); gap: 3px; list-style: none; padding: 0; margin: 10px 0 0; }
.st { font-size: 10.5px; text-align: center; padding: 4px 2px; border-radius: 5px; color: var(--dim);
      background: rgba(255, 255, 255, .03); border: 1px solid var(--border);
      white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.st a { color: inherit; display: block; }
.st a:hover { text-decoration: none; }
.st.on { background: #1d4a33; color: #a9eec6; border-color: #2c6a49; }
.st.warn { background: rgba(224, 106, 106, .18); color: #e69a9a; border-color: #9a4a4a; }
.stages.big .st { font-size: 12.5px; padding: 8px 4px; }
.lsum.fixed { min-height: 2.9em; }
.dim.tight { margin: 2px 0 0; }
.notes:empty { display: none; }
.chip.off { opacity: .35; cursor: default; }
.chip.off:hover { border-color: var(--border); }
.wait { color: var(--dim); font-size: 12.5px; margin-top: 12px; padding: 7px 0; border-top: 1px dashed var(--border); }
.lcard .vform input[type=text] { flex: 1 1 100%; margin-bottom: 6px; }

/* ---- site profile ---- */
.profile-head { display: flex; gap: 16px; align-items: flex-start; }
.profile-title h1 { font-size: 24px; letter-spacing: -.2px; display: flex; gap: 10px; align-items: center; flex-wrap: wrap; }
.profile-top .pmeta { margin-top: 6px; font-size: 13px; }
.profile-grid { display: grid; grid-template-columns: minmax(0, 1fr) 340px; gap: 18px; }
@media (max-width: 960px) { .profile-grid { grid-template-columns: 1fr; } }
.profile-grid .panel { margin-top: 18px; }
.side { align-self: start; position: sticky; top: 12px; }
.side textarea { width: 100%; min-height: 150px; margin: 8px 0; font-size: 13.5px; }
.side .row { display: flex; gap: 10px; align-items: center; }
.side .vform { flex-wrap: wrap; gap: 6px; margin-top: 8px; }
.side .vform input[type=text] { flex: 1 1 100%; }
.side .vform .vbtn { flex: 1 1 auto; }
.ptabs { display: flex; gap: 2px; flex-wrap: wrap; border-bottom: 1px solid var(--border); margin: 0 0 16px; }
.ptabs button { background: none; color: var(--dim); border: none; border-bottom: 2px solid transparent; border-radius: 0;
                padding: 8px 12px; font-weight: 600; font-size: 14px; margin-bottom: -1px; }
.ptabs button:hover { color: var(--text); filter: none; }
.ptabs button.on { color: var(--accent); border-bottom-color: var(--accent); }
.ptabs .count { opacity: .6; font-size: 11.5px; margin-left: 4px; font-weight: 400; }
.tabpane h3 { font-size: 14px; margin: 0 0 4px; }
.facts { margin: 0; }
.facts dt { color: var(--dim); font-size: 11.5px; text-transform: uppercase; letter-spacing: .6px; margin-top: 10px; }
.facts dd { margin: 2px 0 0; font-size: 13.5px; overflow-wrap: anywhere; }
.two { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 22px; }
.md { font-size: 14px; line-height: 1.55; }
.md h2 { font-size: 16px; margin: 18px 0 6px; text-transform: none; letter-spacing: 0; color: var(--text); }
.md h3 { font-size: 14.5px; margin: 14px 0 4px; }
.md h4, .md h5 { font-size: 13.5px; margin: 12px 0 4px; color: var(--dim); }
.md p { margin: 6px 0; }
.md ul, .md ol { margin: 6px 0 6px 22px; }
.md li { margin: 3px 0; }
.md code { font: 12.5px ui-monospace, monospace; background: var(--bg); padding: 1px 5px; border-radius: 4px; }
.md.sam { border-left: 3px solid var(--warn); padding-left: 12px; color: #e6c675; }
.review { border-top: 1px solid var(--border); padding: 10px 0; font-size: 13.5px; }
.review:first-of-type { border-top: none; }
.review .who { font-weight: 600; }
.review .stars { color: #f5d76e; letter-spacing: 1px; }
.review p { margin-top: 4px; white-space: pre-line; }
.picgroup h4 { font-size: 12px; text-transform: uppercase; letter-spacing: .8px; color: var(--dim); margin: 16px 0 8px; }
.picgroup .count { opacity: .7; margin-left: 4px; }
.shotgrid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 10px; }
.shotgrid figure { margin: 0; }
.shotgrid img { width: 100%; aspect-ratio: 1440 / 900; object-fit: cover; object-position: top;
                border: 1px solid var(--border); border-radius: 6px; cursor: zoom-in; background: #fff; }
.shotgrid figcaption { font-size: 11.5px; color: var(--dim); margin-top: 3px; overflow: hidden; white-space: nowrap; text-overflow: ellipsis; }
.pageshot { width: 220px; max-width: 100%; border: 1px solid var(--border); border-radius: 6px; cursor: zoom-in; background: #fff; margin: 4px 0; display: block; }
.defrow .note { font-size: 12px; }
/* 2026-08-29 QA: cards use a 4x2 stage grid so labels stay readable, profile strip is 8 wide on desktop */
.stages { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.st { font-size: 11.5px; padding: 5px 2px; }
.stages.big { grid-template-columns: repeat(8, minmax(0, 1fr)); }
@media (max-width: 700px) { .stages.big { grid-template-columns: repeat(4, minmax(0, 1fr)); } }
.lcard .vform .vbtn { flex: 1 1 auto; }
.profile-head { flex-wrap: wrap; }
.profile-title { min-width: 0; flex: 1 1 240px; }
.profile-top .pmeta span { overflow-wrap: anywhere; min-width: 0; }
.plinks .chip { overflow-wrap: anywhere; }
main { overflow-x: hidden; }
@media (max-width: 700px) { .nav { flex-wrap: wrap; } }

/* Domains page (not a pipeline step) */
.nav a.aside { margin-left: 14px; border-left: 1px solid var(--border); padding-left: 14px; color: var(--dim); }
.nav a.aside.on { color: var(--accent); }
table.domains td { vertical-align: top; }
table.domains td:first-child { white-space: nowrap; }
table.domains .tight { margin-top: 3px; font-size: 12px; overflow-wrap: anywhere; }
table.domains .bad.tight { color: #e5726a; }
