:root {
  --bg: #0a0a0a;
  --ink: #fff;
  --muted: #9aa0a6;
  --orange: #f5a623;
  --tile: #111;
  --live: #3dd68c;
  --down: #8b9098;
}
* { box-sizing: border-box; }
html, body { margin: 0; min-height: 100%; background: var(--bg); color: var(--ink); }
body {
  font-family: -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}
.accent {
  position: fixed; top: 0; left: 0; bottom: 0; width: 8px;
  background: var(--orange); z-index: 2;
}
.pad { padding: 28px 48px 24px 40px; max-width: 1280px; margin: 0 auto; }
.top { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.brand {
  font-size: 13px; font-weight: 800; letter-spacing: 2.4px; color: #fff;
}
h1 {
  margin: 18px 0 28px; font-size: 56px; font-weight: 700; letter-spacing: -1.2px;
}
.grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px 48px;
}
.tile {
  display: grid;
  grid-template-columns: 168px 1fr;
  gap: 18px;
  align-items: center;
  background: transparent;
  border: 0;
  padding: 0;
  text-align: left;
  color: inherit;
  cursor: pointer;
  font: inherit;
  text-decoration: none;
}
.tile:focus-visible { outline: 2px solid var(--orange); outline-offset: 6px; }
.shot {
  width: 168px; height: 96px;
  border-radius: 4px;
  background: #111;
  box-shadow: 0 8px 24px rgba(0,0,0,.45);
  position: relative;
  overflow: hidden;
}
.shot img {
  display: block; width: 100%; height: 100%;
  object-fit: cover; object-position: top left;
}
.shot.deck,
.shot.doc,
.shot.html {
  display: flex; align-items: flex-end; padding: 10px 12px;
}
.shot.deck { background: #12324e; }
.shot.doc { background: #1a2a22; }
.shot.html { background: #1c1c24; }
.shot.deck span,
.shot.doc span,
.shot.html span {
  color: #fff; font-size: 18px; font-weight: 700; letter-spacing: -0.3px;
}
.shot.html span { font-size: 13px; line-height: 1.25; }
.shot.deck::before,
.shot.doc::before,
.shot.html::before {
  content: "";
  position: absolute; left: 0; top: 0; bottom: 0; width: 6px;
  background: var(--orange);
}
.other-section {
  margin-top: 56px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,.08);
}
.section-title {
  margin: 0 0 28px;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.3px;
  color: #cfcfcf;
}
.shot::after {
  content: "";
  position: absolute; inset: 0;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 4px;
  pointer-events: none;
}
.copy .n {
  font-size: 15px; font-weight: 700; color: #cfcfcf; margin-bottom: 2px;
}
.copy h2 {
  margin: 0; font-size: 28px; font-weight: 700; letter-spacing: -0.4px;
}
.copy p {
  margin: 6px 0 0; font-size: 15px; color: var(--muted); line-height: 1.35;
}
.status {
  display: inline-block; margin-top: 8px;
  font-size: 11px; font-weight: 700; letter-spacing: .3px;
  color: var(--down);
}
.status.on { color: var(--live); }
.tile.wide { grid-column: 1; }
footer {
  display: flex; justify-content: space-between;
  margin-top: 48px; font-size: 13px; color: #7a7a7a;
}
.page-zoom {
  display: flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 600; color: #9aa0a6; white-space: nowrap;
}
.page-zoom input[type="range"] { width: 90px; accent-color: var(--orange); }
.zoom-btn {
  width: 24px; height: 24px; padding: 0;
  border: 1px solid #444; border-radius: 999px;
  background: transparent; color: #fff;
  font: inherit; font-weight: 700; line-height: 1; cursor: pointer;
}
.zoom-btn:hover { background: rgba(255,255,255,.08); }
#pageZoomPct { color: #fff; min-width: 2.6rem; }
.toast {
  position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%);
  background: #222; color: #fff; padding: 10px 16px; border-radius: 8px;
  font-size: 13px; z-index: 20;
}
@media (max-width: 860px) {
  h1 { font-size: 40px; }
  .grid { grid-template-columns: 1fr; }
  .pad { padding: 20px 20px 20px 24px; }
}
