/* Disrupter — System Readout */
:root {
  --canvas: #c9c9c5;
  --surface: #ebebe8;
  --ink: #000;
  --blue: #2563eb;
  --muted: #555;
}
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  background: var(--canvas);
  font-family: 'Relative Mono Pro', 'IBM Plex Mono', ui-monospace, monospace;
  color: var(--ink);
}
::selection { background: var(--blue); color: #e5e7eb; }
a { color: inherit; text-decoration: none; }

.frame {
  max-width: 1440px;
  margin: 0 auto;
  background: var(--surface);
  border: 1px solid var(--ink);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* status bar */
.statusbar {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 14px 24px;
  border-bottom: 1px solid var(--ink);
  font-weight: 300;
  font-size: 11px;
  letter-spacing: 0.08em;
}
.statusbar .brand { font-weight: 500; }
.statusbar nav { display: flex; gap: 24px; }
.statusbar nav .current { color: var(--blue); }

/* headline block */
.head-block { padding: 48px 24px 40px; border-bottom: 1px solid var(--ink); }
.eyebrow {
  font-weight: 300;
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--muted);
  margin-bottom: 18px;
}
.headline {
  font-weight: 400;
  font-size: 54px;
  line-height: 1.12;
  letter-spacing: -0.02em;
  max-width: 1180px;
  margin: 0;
}
.lede {
  font-weight: 300;
  font-size: 16px;
  line-height: 1.7;
  max-width: 820px;
  margin: 28px 0 0;
  text-wrap: pretty;
}

/* record rows */
.rows { display: flex; flex-direction: column; }
.row {
  display: grid;
  grid-template-columns: 56px minmax(150px, 0.9fr) minmax(0, 1.5fr) minmax(120px, max-content);
  gap: 16px;
  align-items: baseline;
  padding: 22px 24px;
  border-bottom: 1px solid var(--ink);
}
.rows .row:last-child { border-bottom: none; }
a.row:hover { background: rgba(0, 0, 0, 0.04); cursor: pointer; }
.idx { font-weight: 300; font-size: 12px; color: var(--muted); }
.name { font-weight: 500; font-size: 20px; }
.desc { font-weight: 300; font-size: 14px; }
.ref { font-weight: 300; font-size: 12px; color: var(--blue); text-align: right; }

/* team rows */
.row-team {
  grid-template-columns: 56px 96px minmax(150px, 0.9fr) minmax(0, 1.5fr);
  gap: 24px;
  align-items: center;
  padding: 18px 24px;
}
.headshot { width: 96px; height: 96px; object-fit: cover; display: block; }

/* telemetry */
.telemetry {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--ink);
}
.panel { padding: 28px 24px; }
.panel + .panel { border-left: 1px solid var(--ink); }
.label {
  font-weight: 300;
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--muted);
}
.figrow { display: flex; align-items: baseline; gap: 24px; margin-top: 14px; }
.fig { font-weight: 400; font-size: 44px; }
.meta { font-weight: 300; font-size: 12px; line-height: 1.6; }
.bars { display: flex; align-items: flex-end; gap: 3px; height: 34px; margin-top: 16px; }
.bars div { width: 10px; background: var(--ink); }
.bars .hi { background: var(--blue); }

/* NSC badge strip */
.badges {
  margin-top: auto;
  border-top: 1px solid var(--ink);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 28px;
}
.badges .label { flex-shrink: 0; font-size: 11px; }
.badge-set { display: flex; align-items: center; gap: 36px; flex-wrap: wrap; }
.badge {
  width: 120px;
  height: 56px;
  background: rgba(0, 0, 0, 0.04);
  border: 1.5px dashed rgba(0, 0, 0, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  letter-spacing: 0.08em;
  color: #777;
}
.strip-right {
  margin-left: auto;
  display: flex;
  gap: 28px;
  font-weight: 300;
  font-size: 11px;
  letter-spacing: 0.08em;
  flex-shrink: 0;
}
.strip-right .dim { color: var(--muted); }

/* responsive */
@media (max-width: 760px) {
  .statusbar { flex-wrap: wrap; gap: 10px 24px; }
  .headline { font-size: 34px; }
  .row { grid-template-columns: 56px 1fr; gap: 8px 16px; }
  .row .desc { grid-column: 2; }
  .row .ref { grid-column: 2; text-align: left; }
  .row-team { grid-template-columns: 56px 96px 1fr; gap: 8px 24px; }
  .row-team .idx { grid-row: 1; }
  .row-team .headshot { grid-row: 1 / 3; }
  .row-team .name { grid-column: 3; }
  .row-team .desc { grid-column: 3; }
  .telemetry { grid-template-columns: 1fr; }
  .panel + .panel { border-left: none; border-top: 1px solid var(--ink); }
  .badges { flex-wrap: wrap; }
  .strip-right { margin-left: 0; flex-wrap: wrap; gap: 10px 28px; }
}
