/* ============================================================
   OPERATION SETTING SUNBURN — op skin
   Field mission 08 · San Francisco AO · 22–23 AUG 2026

   Pairs with field-missions/field-mission-base.css.
   Structure classes stay .fm-* (per field-missions/README.md).
   Everything bespoke to this op is prefixed .ss-*.

   Visual thesis: an oversight hearing that keeps getting
   interrupted by a disco. Cream committee paper on one side,
   club spectrum on the other. The collision is the joke.
   ============================================================ */

.ss-body {
  /* op palette — deliberately NOT the State Fair cyan/pink pair */
  --ss-gold: #f5b642;
  --ss-brass: #c98f28;
  --ss-mag: #ff3fa4;
  --ss-cy: #35e0e8;
  --ss-violet: #a06cff;
  --ss-lime: #4ade80;
  --ss-red: #ff4d4d;

  --ss-ink: #f0e9dd;
  --ss-dim: #a9a08f;
  --ss-mute: #7c7466;

  --ss-void: #0a0806;
  --ss-panel: #14100c;
  --ss-card: #1c1611;
  --ss-raise: #251d16;
  --ss-line: rgba(245, 182, 66, 0.26);
  --ss-line-soft: rgba(245, 182, 66, 0.13);

  /* committee paper */
  --ss-paper: #efe7d6;
  --ss-paper-ink: #241d13;
  --ss-paper-line: #c9bda3;

  --ss-spectrum: linear-gradient(90deg,
    #2f6bff 0%, #35e0e8 18%, #4ade80 34%,
    #f5b642 52%, #ff8a3d 66%, #ff3fa4 82%, #a06cff 100%);

  background: var(--ss-void);
  color: var(--ss-ink);
  min-height: 100dvh;
  /* NOT `overflow-x: hidden` (which field-mission-base.css sets on .fm-body).
     `hidden` on the body makes the body a scroll container, and Chrome's
     scroll-to-fragment then silently no-ops: every TOC link set the hash and
     moved nothing. `clip` suppresses the same horizontal overflow without
     creating a scroll box. The `hidden` line is the fallback for engines
     without `clip` — they keep the old behaviour rather than losing the
     overflow guard. */
  overflow-x: hidden;
  overflow-x: clip;
}

/* The stage wash is a fixed pseudo-element, NOT `background-attachment: fixed`
   on the body. Three fixed-attachment radial gradients over a 13,000px page
   force a full-page repaint on every scroll frame — it janks on mobile and it
   blanked the page outright in offscreen capture. A single fixed layer behind
   the content (z-index -1) paints once and costs nothing to scroll over. */
.ss-body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(ellipse 120% 60% at 50% -10%, rgba(245, 182, 66, 0.13), transparent 60%),
    radial-gradient(ellipse 90% 50% at 15% 40%, rgba(255, 63, 164, 0.07), transparent 60%),
    radial-gradient(ellipse 90% 50% at 85% 75%, rgba(160, 108, 255, 0.07), transparent 60%),
    var(--ss-void);
}

/* base-template overrides so .fm-* structure reads in op colors */
.ss-body.fm-body {
  --fm-accent: var(--ss-gold);
  --fm-hot: var(--ss-mag);
  --fm-gold: var(--ss-gold);
  --fm-ink: var(--ss-ink);
  --fm-muted: var(--ss-dim);
  --fm-panel: var(--ss-panel);
  --fm-card: var(--ss-card);
  --fm-line: var(--ss-line);
}

.ss-body .site-header {
  background: rgba(10, 8, 6, 0.94);
  border-bottom: 1px solid var(--ss-line);
}

.ss-body .fm-hero,
.ss-body .fm-cover,
.ss-body .fm-section,
.ss-body .fm-footer { max-width: 860px; }

/* Anchor targets must clear the sticky header + TOC, or every in-page jump
   lands with its own heading hidden behind the chrome. --ss-head is published
   by field-setting-sunburn.js; ~55px is the TOC bar. */
.ss-body :target,
.ss-body [id^="exhibit"],
.ss-body section[id],
.ss-body .ss-hero[id] {
  scroll-margin-top: calc(var(--ss-head, 56px) + 62px);
}
/* No `scroll-behavior: smooth` here, deliberately.
   On a ~13,000px briefing the smooth glide was both slow (about two seconds
   to cross the page) and unreliable — short hops were repeatedly cancelled
   mid-flight and left the reader a thousand pixels short of the heading they
   asked for. TOC jumps are handled in field-setting-sunburn.js and land
   instantly, which is faster to read and cannot half-finish. */

/* ------------------------------------------------------ spectrum hairline */

.ss-spectrum-rule {
  height: 3px;
  border: 0;
  margin: 0;
  background: var(--ss-spectrum);
  opacity: 0.85;
}
.ss-spectrum-rule.is-thin { height: 2px; opacity: 0.5; }

/* ================================================================= TOC bar */

/* Sticks directly under the shared site header. The header's height is not a
   constant across breakpoints, so field-setting-sunburn.js measures it and
   publishes --ss-head; the literal here is only the pre-JS fallback. */
.ss-toc {
  position: sticky;
  top: var(--ss-head, 56px);
  z-index: 92;
  background: rgba(10, 8, 6, 0.96);
  border-bottom: 1px solid var(--ss-line);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
.ss-toc-inner {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 0.35rem;
  overflow-x: auto;
  padding: 0.45rem 0.75rem;
  scrollbar-width: none;
}
.ss-toc-inner::-webkit-scrollbar { display: none; }
.ss-toc a {
  flex: 0 0 auto;
  font-family: var(--mono, monospace);
  font-size: 0.62rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  text-decoration: none !important;
  color: var(--ss-dim);
  border: 1px solid var(--ss-line-soft);
  border-radius: 999px;
  padding: 0.4rem 0.72rem;
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  transition: color 0.18s, border-color 0.18s, background 0.18s;
}
.ss-toc a:hover { color: var(--ss-gold); border-color: var(--ss-gold); }
.ss-toc a.is-current {
  color: var(--ss-void);
  background: var(--ss-gold);
  border-color: var(--ss-gold);
  font-weight: 700;
}

/* reading-progress hairline under the TOC */
.ss-progress {
  height: 2px;
  background: rgba(245, 182, 66, 0.14);
}
.ss-progress-bar {
  height: 100%;
  width: 0%;
  background: var(--ss-spectrum);
  background-size: 100vw 100%;
  transition: width 0.12s linear;
}

/* ====================================================== clearance selector */

/* Deliberately NOT sticky. Three stacked sticky bars (header + session +
   TOC) ate 199px of a phone viewport and overlapped each other. The session
   level is a set-once control, and any redaction bar raises it in place, so
   it scrolls away with the masthead and the TOC keeps the sticky slot. */
.ss-clearance {
  position: relative;
  z-index: 93;
  background: rgba(20, 16, 12, 0.97);
  border-bottom: 1px solid var(--ss-line-soft);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
.ss-clearance-inner {
  max-width: 860px;
  margin: 0 auto;
  padding: 0.5rem 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.55rem;
  flex-wrap: wrap;
}
.ss-clearance-label {
  font-family: var(--mono, monospace);
  font-size: 0.58rem;
  letter-spacing: 0.14em;
  color: var(--ss-mute);
  text-transform: uppercase;
  flex: 0 0 auto;
}
.ss-clearance-set {
  display: flex;
  gap: 0.3rem;
  flex: 1 1 auto;
  min-width: 0;
}
.ss-clr-btn {
  flex: 1 1 0;
  min-width: 0;
  font-family: var(--mono, monospace);
  font-size: 0.58rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.5rem 0.35rem;
  min-height: 40px;
  background: transparent;
  color: var(--ss-dim);
  border: 1px solid var(--ss-line-soft);
  border-radius: 3px;
  cursor: pointer;
  font-weight: 700;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: all 0.18s;
}
.ss-clr-btn:hover { color: var(--ss-gold); border-color: var(--ss-gold); }
.ss-clr-btn[aria-pressed="true"] {
  background: var(--ss-gold);
  border-color: var(--ss-gold);
  color: var(--ss-void);
}
.ss-clr-btn[data-clr="closed"][aria-pressed="true"] {
  background: var(--ss-mag);
  border-color: var(--ss-mag);
  color: #fff;
}

/* redaction bars — three-tier reveal */
.ss-redact {
  display: inline;
  background: var(--ss-paper-ink);
  color: transparent;
  border-radius: 2px;
  padding: 0.05em 0.3em;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.5);
  cursor: help;
  user-select: none;
  transition: background 0.25s, color 0.25s;
}
.ss-redact.is-open {
  background: rgba(245, 182, 66, 0.16);
  color: var(--ss-gold);
  user-select: auto;
  cursor: auto;
}
.ss-paper .ss-redact { background: #171208; }
.ss-paper .ss-redact.is-open {
  background: rgba(201, 143, 40, 0.2);
  color: #6b4a05;
}

/* blocks that only exist above a clearance tier */
.ss-gated { display: none; }
.ss-gated.is-open { display: block; }

/* ==================================================================== hero */

.ss-hero {
  position: relative;
  max-width: 860px;
  margin: 0 auto;
  padding: 1.4rem 1rem 1rem;
}
.ss-seal-row {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 0.85rem;
}
.ss-seal {
  width: 54px;
  height: 54px;
  flex: 0 0 auto;
  border-radius: 50%;
  border: 2px solid var(--ss-gold);
  display: grid;
  place-items: center;
  font-family: var(--mono, monospace);
  font-size: 0.5rem;
  line-height: 1.1;
  text-align: center;
  color: var(--ss-gold);
  letter-spacing: 0.04em;
  background: radial-gradient(circle, rgba(245, 182, 66, 0.12), transparent 70%);
}
.ss-seal-text {
  font-family: var(--mono, monospace);
  font-size: 0.58rem;
  line-height: 1.5;
  color: var(--ss-dim);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.ss-seal-text b { color: var(--ss-gold); display: block; font-size: 0.62rem; }

.ss-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-bottom: 0.7rem;
}
.ss-stamp {
  font-family: var(--mono, monospace);
  font-size: 0.55rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  padding: 0.3rem 0.5rem;
  border: 1px solid currentColor;
  font-weight: 700;
  border-radius: 2px;
}
.ss-stamp.s-gold { color: var(--ss-gold); }
.ss-stamp.s-mag { color: var(--ss-mag); }
.ss-stamp.s-cy { color: var(--ss-cy); }
.ss-stamp.s-red { color: var(--ss-red); }
.ss-stamp.s-violet { color: var(--ss-violet); }
.ss-stamp.s-lime { color: var(--ss-lime); }
.ss-stamp.is-solid {
  background: currentColor;
  border-color: currentColor;
}
.ss-stamp.is-solid span { color: var(--ss-void); }

.ss-hero h1 {
  font-family: var(--sans, sans-serif);
  font-size: clamp(2rem, 10vw, 3.9rem);
  line-height: 0.92;
  margin: 0.3rem 0 0.5rem;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: -0.01em;
}
.ss-hero h1 span {
  display: block;
  background: var(--ss-spectrum);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}
.ss-kicker {
  font-family: var(--mono, monospace);
  font-size: 0.64rem;
  letter-spacing: 0.16em;
  color: var(--ss-gold);
  text-transform: uppercase;
  margin: 0;
}
.ss-sub {
  font-family: var(--mono, monospace);
  font-size: 0.72rem;
  color: var(--ss-dim);
  letter-spacing: 0.05em;
  margin: 0 0 0.7rem;
}
.ss-lede { font-size: 0.98rem; line-height: 1.6; color: var(--ss-ink); }
.ss-lede strong { color: var(--ss-gold); }

/* live hearing ticker */
.ss-ticker {
  margin: 0.9rem 0 0;
  border: 1px solid var(--ss-line);
  border-radius: 5px;
  background: linear-gradient(180deg, rgba(245, 182, 66, 0.07), transparent);
  overflow: hidden;
}
.ss-ticker-head {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.45rem 0.7rem;
  border-bottom: 1px solid var(--ss-line-soft);
  font-family: var(--mono, monospace);
  font-size: 0.55rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--ss-mute);
}
.ss-live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--ss-red);
  box-shadow: 0 0 0 0 rgba(255, 77, 77, 0.7);
  animation: ss-pulse 1.9s infinite;
  flex: 0 0 auto;
}
@keyframes ss-pulse {
  0% { box-shadow: 0 0 0 0 rgba(255, 77, 77, 0.65); }
  70% { box-shadow: 0 0 0 9px rgba(255, 77, 77, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 77, 77, 0); }
}
.ss-ticker-body {
  padding: 0.7rem;
  min-height: 3.4rem;
  font-family: var(--mono, monospace);
  font-size: 0.74rem;
  line-height: 1.55;
  color: var(--ss-ink);
}
.ss-ticker-body b { color: var(--ss-cy); }
.ss-caret {
  display: inline-block;
  width: 0.5em;
  background: var(--ss-gold);
  color: transparent;
  animation: ss-blink 1s steps(2, start) infinite;
}
@keyframes ss-blink { to { visibility: hidden; } }

/* ============================================================ cover figure */

.ss-cover { max-width: 860px; margin: 0 auto; padding: 0.5rem 1rem 1rem; }
.ss-figure {
  margin: 0;
  border: 1px solid var(--ss-line);
  border-radius: 6px;
  overflow: hidden;
  background: #000;
}
.ss-figure img { display: block; width: 100%; height: auto; }
.ss-figure figcaption {
  font-family: var(--mono, monospace);
  font-size: 0.63rem;
  line-height: 1.6;
  color: var(--ss-dim);
  padding: 0.7rem 0.8rem;
  background: var(--ss-panel);
  border-top: 1px solid var(--ss-line-soft);
}
.ss-figure figcaption strong { color: var(--ss-gold); }

.ss-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem;
  margin: 0.9rem 0;
}
@media (min-width: 560px) { .ss-stats { grid-template-columns: repeat(4, 1fr); } }
.ss-stat {
  background: var(--ss-card);
  border: 1px solid var(--ss-line-soft);
  border-top: 2px solid var(--ss-gold);
  border-radius: 4px;
  padding: 0.7rem 0.5rem;
  text-align: center;
}
.ss-stat-n {
  display: block;
  font-family: var(--mono, monospace);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--ss-gold);
  line-height: 1;
}
.ss-stat-l {
  display: block;
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--ss-mute);
  margin-top: 0.3rem;
}

.ss-actions {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
@media (min-width: 560px) { .ss-actions { flex-direction: row; flex-wrap: wrap; } }
.ss-actions .btn { min-height: 48px; width: 100%; justify-content: center; }
@media (min-width: 560px) { .ss-actions .btn { width: auto; } }

/* ================================================================ sections */

.ss-section { max-width: 860px; margin: 0 auto; padding: 1.6rem 1rem; }
.ss-section-dark {
  background: linear-gradient(180deg, rgba(20, 16, 12, 0.75), rgba(10, 8, 6, 0.45));
  border-top: 1px solid var(--ss-line-soft);
  border-bottom: 1px solid var(--ss-line-soft);
  max-width: none;
  padding-left: 0;
  padding-right: 0;
}
.ss-inner { max-width: 860px; margin: 0 auto; padding: 0 1rem; }
.ss-label {
  font-family: var(--mono, monospace);
  font-size: 0.63rem;
  letter-spacing: 0.16em;
  color: var(--ss-gold);
  text-transform: uppercase;
  margin: 0 0 0.3rem;
}
.ss-section h2 {
  font-family: var(--sans, sans-serif);
  font-size: clamp(1.5rem, 6vw, 2.15rem);
  color: #fff;
  margin: 0 0 0.6rem;
  text-transform: uppercase;
  line-height: 1.05;
}
.ss-section p { line-height: 1.65; }

/* ======================================================= committee "paper" */

.ss-paper {
  background: var(--ss-paper);
  color: var(--ss-paper-ink);
  border-radius: 3px;
  padding: 1.1rem 1rem 1.2rem;
  box-shadow: 0 10px 34px rgba(0, 0, 0, 0.55);
  position: relative;
  font-family: var(--mono, monospace);
  font-size: 0.79rem;
  line-height: 1.72;
  border-left: 4px solid var(--ss-brass);
}
.ss-paper::after {
  /* punch-hole margin, so it reads as a filed exhibit */
  content: "";
  position: absolute;
  left: 0.65rem;
  top: 0;
  bottom: 0;
  width: 1px;
  background: repeating-linear-gradient(180deg, transparent 0 10px, rgba(201, 143, 40, 0.35) 10px 11px);
  pointer-events: none;
}
.ss-paper > * { position: relative; padding-left: 0.55rem; }
.ss-paper-head {
  display: flex;
  justify-content: space-between;
  gap: 0.6rem;
  flex-wrap: wrap;
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #6b5a3a;
  border-bottom: 1px solid var(--ss-paper-line);
  padding-bottom: 0.5rem;
  margin-bottom: 0.8rem;
}
.ss-paper h3 {
  font-family: var(--mono, monospace);
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin: 0 0 0.6rem;
  color: #1a1409;
}
.ss-paper p { margin: 0 0 0.7rem; }
.ss-paper p:last-child { margin-bottom: 0; }
.ss-paper .ss-sig {
  margin-top: 1rem;
  padding-top: 0.7rem;
  border-top: 1px dashed var(--ss-paper-line);
  font-size: 0.66rem;
  color: #6b5a3a;
  line-height: 1.6;
}
.ss-paper-stamp {
  position: absolute;
  right: 0.7rem;
  bottom: 0.7rem;
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  font-weight: 700;
  color: rgba(155, 28, 28, 0.75);
  border: 2px solid rgba(155, 28, 28, 0.6);
  padding: 0.25rem 0.45rem;
  transform: rotate(-9deg);
  pointer-events: none;
  border-radius: 2px;
}

/* ==================================================== EXHIBIT A — disguise */

.ss-audit {
  display: grid;
  gap: 0.9rem;
  margin-top: 1rem;
}
@media (min-width: 760px) {
  .ss-audit { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); align-items: start; }
}

.ss-audit-stage {
  position: relative;
  border: 1px solid var(--ss-line);
  border-radius: 6px;
  overflow: hidden;
  background: #000;
  line-height: 0;
}
.ss-audit-stage img { width: 100%; height: auto; display: block; }
.ss-audit-scan {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, transparent 0%, rgba(53, 224, 232, 0.16) 50%, transparent 100%);
  height: 26%;
  animation: ss-scan 4.5s ease-in-out infinite;
}
@keyframes ss-scan {
  0%, 100% { transform: translateY(-30%); opacity: 0.35; }
  50% { transform: translateY(310%); opacity: 0.8; }
}

.ss-hot {
  position: absolute;
  width: 34px;
  height: 34px;
  margin: -17px 0 0 -17px;
  border-radius: 50%;
  border: 2px solid var(--ss-cy);
  background: rgba(10, 8, 6, 0.35);
  color: var(--ss-cy);
  font-family: var(--mono, monospace);
  font-size: 0.68rem;
  font-weight: 700;
  cursor: pointer;
  display: grid;
  place-items: center;
  padding: 0;
  line-height: 1;
  transition: transform 0.18s, background 0.18s, border-color 0.18s, color 0.18s;
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
}
.ss-hot::before {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 1px solid var(--ss-cy);
  opacity: 0.55;
  animation: ss-ping 2.4s ease-out infinite;
}
@keyframes ss-ping {
  0% { transform: scale(0.75); opacity: 0.7; }
  100% { transform: scale(1.5); opacity: 0; }
}
.ss-hot:hover, .ss-hot:focus-visible { transform: scale(1.15); }
.ss-hot[aria-pressed="true"] {
  background: var(--ss-mag);
  border-color: var(--ss-mag);
  color: #fff;
}
.ss-hot[aria-pressed="true"]::before { animation: none; opacity: 0; }

.ss-audit-panel {
  border: 1px solid var(--ss-line);
  border-radius: 6px;
  background: var(--ss-card);
  padding: 0.9rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.ss-audit-title {
  font-family: var(--mono, monospace);
  font-size: 0.62rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--ss-mute);
  margin: 0;
}
.ss-audit-readout { min-height: 8.5rem; }
.ss-audit-readout h3 {
  font-family: var(--mono, monospace);
  font-size: 0.95rem;
  color: var(--ss-mag);
  margin: 0 0 0.35rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.ss-audit-readout p { margin: 0 0 0.5rem; font-size: 0.86rem; line-height: 1.6; }
.ss-audit-verdict {
  font-family: var(--mono, monospace);
  font-size: 0.68rem;
  letter-spacing: 0.06em;
  color: var(--ss-gold);
  border-left: 2px solid var(--ss-gold);
  background: rgba(245, 182, 66, 0.08);
  padding: 0.45rem 0.6rem;
  margin: 0;
}
.ss-audit-empty {
  font-family: var(--mono, monospace);
  font-size: 0.78rem;
  color: var(--ss-mute);
  line-height: 1.7;
}

.ss-meter { margin-top: auto; }
.ss-meter-top {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-family: var(--mono, monospace);
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ss-mute);
  margin-bottom: 0.3rem;
}
.ss-meter-top b { color: var(--ss-cy); font-size: 0.95rem; }
.ss-meter-track {
  height: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  overflow: hidden;
  border: 1px solid var(--ss-line-soft);
}
.ss-meter-fill {
  height: 100%;
  width: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--ss-red), var(--ss-gold), var(--ss-lime));
  background-size: 300% 100%;
  background-position: 100% 0;
  transition: width 0.7s cubic-bezier(0.2, 0.8, 0.2, 1), background-position 0.7s;
}
.ss-meter-note {
  font-family: var(--mono, monospace);
  font-size: 0.62rem;
  color: var(--ss-mute);
  margin: 0.4rem 0 0;
  min-height: 1.4em;
}
.ss-audit-reset {
  align-self: flex-start;
  font-family: var(--mono, monospace);
  font-size: 0.6rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  background: none;
  border: 1px solid var(--ss-line-soft);
  color: var(--ss-dim);
  border-radius: 3px;
  padding: 0.45rem 0.7rem;
  min-height: 38px;
  cursor: pointer;
}
.ss-audit-reset:hover { color: var(--ss-gold); border-color: var(--ss-gold); }

/* ================================================ EXHIBIT B — spectral booth */

.ss-booth {
  margin-top: 1rem;
  border: 1px solid var(--ss-line);
  border-radius: 8px;
  overflow: hidden;
  background: var(--ss-panel);
  --booth: var(--ss-cy);
}
.ss-booth-stage {
  position: relative;
  background: #000;
  display: grid;
  place-items: center;
  min-height: 260px;
  line-height: 0;
  transition: box-shadow 0.5s;
  box-shadow: inset 0 0 90px -10px var(--booth);
}
.ss-booth-stage img {
  width: 100%;
  max-width: 420px;
  height: auto;
  display: block;
  transition: opacity 0.28s;
}
.ss-booth-stage.is-swapping img { opacity: 0.15; }
.ss-booth-frame {
  position: absolute;
  inset: 0;
  pointer-events: none;
  border: 2px solid var(--booth);
  box-shadow: inset 0 0 40px -8px var(--booth);
  opacity: 0.55;
  transition: border-color 0.5s, box-shadow 0.5s;
}
.ss-booth-tag {
  position: absolute;
  top: 0.6rem;
  left: 0.6rem;
  font-family: var(--mono, monospace);
  font-size: 0.56rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--booth);
  border: 1px solid var(--booth);
  background: rgba(0, 0, 0, 0.6);
  padding: 0.25rem 0.45rem;
  border-radius: 2px;
  line-height: 1.2;
  transition: color 0.5s, border-color 0.5s;
}
.ss-booth-ctl { padding: 0.85rem; }
.ss-booth-swatches {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 0.3rem;
  margin-bottom: 0.75rem;
}
.ss-sw {
  aspect-ratio: 1 / 1;
  min-height: 34px;
  border-radius: 3px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: var(--c);
  cursor: pointer;
  padding: 0;
  position: relative;
  transition: transform 0.16s, box-shadow 0.16s;
}
.ss-sw:hover { transform: translateY(-2px); }
.ss-sw[aria-pressed="true"] {
  box-shadow: 0 0 0 2px var(--ss-ink), 0 0 14px 2px var(--c);
  transform: translateY(-2px);
}
.ss-booth-readout {
  font-family: var(--mono, monospace);
  font-size: 0.72rem;
  line-height: 1.6;
  color: var(--ss-dim);
  min-height: 4.2rem;
  border-left: 2px solid var(--booth);
  padding-left: 0.6rem;
  transition: border-color 0.5s;
}
.ss-booth-readout b { color: var(--booth); display: block; margin-bottom: 0.15rem; transition: color 0.5s; }
.ss-booth-actions { display: flex; gap: 0.5rem; margin-top: 0.75rem; flex-wrap: wrap; }
.ss-mini-btn {
  font-family: var(--mono, monospace);
  font-size: 0.6rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  background: none;
  border: 1px solid var(--ss-line-soft);
  color: var(--ss-dim);
  border-radius: 3px;
  padding: 0.5rem 0.75rem;
  min-height: 40px;
  cursor: pointer;
  font-weight: 700;
  transition: all 0.18s;
}
.ss-mini-btn:hover { color: var(--ss-gold); border-color: var(--ss-gold); }
.ss-mini-btn.is-on { background: var(--ss-gold); border-color: var(--ss-gold); color: var(--ss-void); }

/* ================================================================ timeline */

.ss-timeline { list-style: none; margin: 1rem 0 0; padding: 0; display: grid; gap: 0.6rem; }
.ss-beat {
  border: 1px solid var(--ss-line-soft);
  border-radius: 6px;
  background: var(--ss-card);
  overflow: hidden;
  transition: border-color 0.25s, box-shadow 0.25s;
}
.ss-beat.is-open { border-color: var(--ss-gold); box-shadow: 0 0 0 1px rgba(245, 182, 66, 0.2); }
.ss-beat.is-cued { border-color: var(--ss-mag); }
.ss-beat-btn {
  width: 100%;
  background: none;
  border: 0;
  text-align: left;
  padding: 0.8rem 0.85rem;
  cursor: pointer;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 0.7rem;
  align-items: center;
  color: inherit;
  font: inherit;
  min-height: 56px;
}
.ss-beat-time {
  font-family: var(--mono, monospace);
  font-size: 0.66rem;
  color: var(--ss-gold);
  letter-spacing: 0.05em;
  font-weight: 700;
  white-space: nowrap;
}
.ss-beat-name {
  font-family: var(--sans, sans-serif);
  font-size: 1.02rem;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  line-height: 1.2;
}
.ss-beat-tag {
  font-family: var(--mono, monospace);
  font-size: 0.5rem;
  letter-spacing: 0.1em;
  padding: 0.22rem 0.4rem;
  border: 1px solid currentColor;
  border-radius: 2px;
  white-space: nowrap;
}
.ss-beat-body {
  padding: 0 0.85rem 0.95rem;
  border-top: 1px solid var(--ss-line-soft);
  padding-top: 0.85rem;
}
.ss-beat-body[hidden] { display: none; }
.ss-beat-media {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 4px;
  border: 1px solid var(--ss-line-soft);
  margin-bottom: 0.75rem;
  background: #000;
}
@media (min-width: 700px) {
  .ss-beat-grid { display: grid; grid-template-columns: 300px minmax(0, 1fr); gap: 0.95rem; align-items: start; }
  .ss-beat-grid .ss-beat-media { margin-bottom: 0; }
}
.ss-beat-body h4 {
  font-family: var(--mono, monospace);
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ss-mute);
  margin: 0 0 0.4rem;
}
.ss-beat-body p { margin: 0 0 0.6rem; font-size: 0.9rem; line-height: 1.65; }
.ss-aar {
  font-family: var(--mono, monospace);
  font-size: 0.72rem;
  line-height: 1.6;
  color: var(--ss-gold);
  border-left: 2px solid var(--ss-gold);
  background: rgba(245, 182, 66, 0.07);
  padding: 0.5rem 0.6rem;
  margin: 0;
}
.ss-play-row { display: flex; gap: 0.5rem; flex-wrap: wrap; margin-top: 0.9rem; align-items: center; }
.ss-play-note {
  font-family: var(--mono, monospace);
  font-size: 0.62rem;
  color: var(--ss-mute);
}

/* ================================================= sea lion witness testimony */

.ss-witness {
  margin-top: 1rem;
  border: 1px solid var(--ss-line);
  border-radius: 6px;
  overflow: hidden;
  background: var(--ss-panel);
}
@media (min-width: 700px) {
  .ss-witness { display: grid; grid-template-columns: 40% minmax(0, 1fr); }
}
.ss-witness-photo { line-height: 0; background: #000; }
.ss-witness-photo img { width: 100%; height: 100%; object-fit: cover; display: block; min-height: 200px; }
.ss-witness-body { padding: 0.95rem; display: flex; flex-direction: column; gap: 0.7rem; }
.ss-witness-head {
  font-family: var(--mono, monospace);
  font-size: 0.58rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ss-mute);
  margin: 0;
}
.ss-witness-head b { color: var(--ss-lime); }
.ss-witness-raw {
  font-family: var(--mono, monospace);
  font-size: 0.82rem;
  color: var(--ss-dim);
  letter-spacing: 0.06em;
  margin: 0;
  word-break: break-word;
}
.ss-witness-out {
  font-family: var(--mono, monospace);
  font-size: 0.84rem;
  line-height: 1.7;
  color: var(--ss-ink);
  min-height: 5.5rem;
  border-left: 2px solid var(--ss-lime);
  padding-left: 0.65rem;
  margin: 0;
}
.ss-witness-foot { font-family: var(--mono, monospace); font-size: 0.62rem; color: var(--ss-mute); margin: 0; }

/* ============================================================= committee Q&A */

.ss-qa { display: grid; gap: 0.5rem; margin-top: 1rem; }
.ss-q {
  border: 1px solid var(--ss-line-soft);
  border-radius: 6px;
  background: var(--ss-card);
  overflow: hidden;
}
.ss-q.is-open { border-color: var(--ss-violet); }
.ss-q-btn {
  width: 100%;
  background: none;
  border: 0;
  color: inherit;
  font: inherit;
  text-align: left;
  padding: 0.8rem 0.85rem;
  cursor: pointer;
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
  min-height: 52px;
}
.ss-q-mark {
  font-family: var(--mono, monospace);
  font-size: 0.62rem;
  color: var(--ss-violet);
  border: 1px solid var(--ss-violet);
  border-radius: 2px;
  padding: 0.15rem 0.32rem;
  flex: 0 0 auto;
  margin-top: 0.1rem;
  font-weight: 700;
}
.ss-q-text { font-size: 0.92rem; line-height: 1.5; }
.ss-q-who {
  display: block;
  font-family: var(--mono, monospace);
  font-size: 0.58rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--ss-mute);
  margin-top: 0.28rem;
}
.ss-a { padding: 0 0.85rem 0.9rem; border-top: 1px solid var(--ss-line-soft); padding-top: 0.8rem; }
.ss-a[hidden] { display: none; }
.ss-a-line {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 0.6rem;
  margin-bottom: 0.7rem;
}
.ss-a-src {
  font-family: var(--mono, monospace);
  font-size: 0.55rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--ss-gold);
  border-right: 1px solid var(--ss-line-soft);
  padding-right: 0.6rem;
  text-align: right;
  min-width: 84px;
  padding-top: 0.15rem;
}
.ss-a-body { font-size: 0.89rem; line-height: 1.65; }
.ss-press {
  font-family: var(--mono, monospace);
  font-size: 0.6rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  background: none;
  border: 1px dashed var(--ss-mag);
  color: var(--ss-mag);
  border-radius: 3px;
  padding: 0.5rem 0.75rem;
  min-height: 40px;
  cursor: pointer;
  font-weight: 700;
}
.ss-press:hover { background: rgba(255, 63, 164, 0.12); }
.ss-press[disabled] { opacity: 0.45; cursor: default; }

/* ========================================================== evidence locker */

.ss-filters {
  display: flex;
  gap: 0.35rem;
  flex-wrap: wrap;
  margin: 1rem 0 0.85rem;
}
.ss-filter {
  font-family: var(--mono, monospace);
  font-size: 0.6rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  background: none;
  border: 1px solid var(--ss-line-soft);
  color: var(--ss-dim);
  border-radius: 999px;
  padding: 0.45rem 0.75rem;
  min-height: 38px;
  cursor: pointer;
  font-weight: 700;
  transition: all 0.18s;
}
.ss-filter:hover { color: var(--ss-gold); border-color: var(--ss-gold); }
.ss-filter[aria-pressed="true"] { background: var(--ss-gold); border-color: var(--ss-gold); color: var(--ss-void); }
.ss-filter i { font-style: normal; opacity: 0.65; margin-left: 0.3rem; }

.ss-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(118px, 1fr));
  gap: 0.4rem;
}
@media (min-width: 560px) {
  .ss-grid { grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); }
}
.ss-cell {
  position: relative;
  padding: 0;
  border: 1px solid var(--ss-line-soft);
  border-radius: 4px;
  overflow: hidden;
  background: #000;
  cursor: pointer;
  aspect-ratio: 3 / 4;
  line-height: 0;
  transition: border-color 0.18s, transform 0.18s;
}
.ss-cell:hover, .ss-cell:focus-visible { border-color: var(--ss-gold); transform: translateY(-2px); z-index: 2; }
.ss-cell img { width: 100%; height: 100%; object-fit: cover; display: block; }
.ss-cell-id {
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  font-family: var(--mono, monospace);
  font-size: 0.52rem;
  letter-spacing: 0.06em;
  color: var(--ss-ink);
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.88), transparent);
  padding: 0.9rem 0.35rem 0.28rem;
  text-align: left;
  line-height: 1.2;
}
.ss-cell[hidden] { display: none; }
.ss-grid-count {
  font-family: var(--mono, monospace);
  font-size: 0.62rem;
  color: var(--ss-mute);
  margin: 0.75rem 0 0;
}

/* lightbox */
.ss-lb {
  position: fixed;
  inset: 0;
  z-index: 500;
  background: rgba(4, 3, 2, 0.96);
  display: none;
  flex-direction: column;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.ss-lb.is-open { display: flex; }
.ss-lb-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.6rem;
  padding: 0.6rem 0.75rem;
  border-bottom: 1px solid var(--ss-line-soft);
  font-family: var(--mono, monospace);
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ss-gold);
  padding-top: max(0.6rem, env(safe-area-inset-top));
}
.ss-lb-close {
  background: none;
  border: 1px solid var(--ss-line);
  color: var(--ss-ink);
  border-radius: 3px;
  font-family: var(--mono, monospace);
  font-size: 0.62rem;
  letter-spacing: 0.09em;
  padding: 0.45rem 0.7rem;
  min-height: 40px;
  min-width: 44px;
  cursor: pointer;
}
.ss-lb-close:hover { border-color: var(--ss-mag); color: var(--ss-mag); }
.ss-lb-stage {
  flex: 1 1 auto;
  min-height: 0;
  display: grid;
  /* Both tracks must be minmax(0, 1fr), not `auto`. With auto tracks the grid
     row grows to the image's intrinsic height, `max-height: 100%` then
     resolves against that grown row, and a portrait frame overflows the
     viewport and pushes the caption off-screen. */
  grid-template-rows: minmax(0, 1fr);
  grid-template-columns: minmax(0, 1fr);
  place-items: center;
  overflow: hidden;
  padding: 0.6rem;
  position: relative;
}
.ss-lb-stage img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 4px;
  grid-area: 1 / 1;
}
.ss-lb-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 74px;
  background: rgba(10, 8, 6, 0.72);
  border: 1px solid var(--ss-line);
  color: var(--ss-gold);
  font-size: 1.3rem;
  cursor: pointer;
  border-radius: 4px;
  display: grid;
  place-items: center;
  line-height: 1;
}
.ss-lb-nav:hover { background: var(--ss-gold); color: var(--ss-void); }
.ss-lb-prev { left: 0.4rem; }
.ss-lb-next { right: 0.4rem; }
.ss-lb-cap {
  padding: 0.75rem 0.85rem;
  padding-bottom: max(0.75rem, env(safe-area-inset-bottom));
  border-top: 1px solid var(--ss-line-soft);
  background: var(--ss-panel);
  font-family: var(--mono, monospace);
  font-size: 0.7rem;
  line-height: 1.6;
  color: var(--ss-dim);
  max-height: 30vh;
  overflow-y: auto;
}
.ss-lb-cap b { color: var(--ss-gold); display: block; margin-bottom: 0.2rem; letter-spacing: 0.05em; }
body.ss-lb-open { overflow: hidden; }

/* =============================================================== scorecard */

.ss-score { display: grid; gap: 0.55rem; margin-top: 1rem; }
.ss-score-row {
  border: 1px solid var(--ss-line-soft);
  border-radius: 5px;
  background: var(--ss-card);
  padding: 0.65rem 0.8rem;
}
.ss-score-top {
  display: flex;
  justify-content: space-between;
  gap: 0.6rem;
  align-items: baseline;
  margin-bottom: 0.4rem;
}
.ss-score-name { font-size: 0.88rem; color: var(--ss-ink); }
.ss-score-val {
  font-family: var(--mono, monospace);
  font-size: 0.63rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
  font-weight: 700;
}
.ss-score-track { height: 7px; border-radius: 999px; background: rgba(255, 255, 255, 0.07); overflow: hidden; }
.ss-score-fill {
  height: 100%;
  width: 0;
  border-radius: 999px;
  transition: width 1.1s cubic-bezier(0.2, 0.85, 0.2, 1);
}
.ss-score-row.is-win .ss-score-val { color: var(--ss-lime); }
.ss-score-row.is-win .ss-score-fill { background: linear-gradient(90deg, #16794a, var(--ss-lime)); }
.ss-score-row.is-fail .ss-score-val { color: var(--ss-red); }
.ss-score-row.is-fail .ss-score-fill { background: linear-gradient(90deg, #7a1f1f, var(--ss-red)); }
.ss-score-row.is-mid .ss-score-val { color: var(--ss-gold); }
.ss-score-row.is-mid .ss-score-fill { background: linear-gradient(90deg, var(--ss-brass), var(--ss-gold)); }

.ss-verdict {
  margin: 1.1rem 0 0;
  border: 1px solid var(--ss-gold);
  border-radius: 6px;
  background: linear-gradient(135deg, rgba(245, 182, 66, 0.13), rgba(255, 63, 164, 0.08));
  padding: 1rem;
  text-align: center;
}
.ss-verdict-l {
  font-family: var(--mono, monospace);
  font-size: 0.58rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ss-mute);
  margin: 0 0 0.35rem;
}
.ss-verdict-v {
  font-family: var(--sans, sans-serif);
  font-size: clamp(1.15rem, 5.5vw, 1.75rem);
  text-transform: uppercase;
  color: #fff;
  margin: 0;
  line-height: 1.15;
}
.ss-verdict-v em { font-style: normal; color: var(--ss-mag); }

/* ==================================================== public comment / vote */

.ss-vote {
  margin-top: 1rem;
  border: 1px solid var(--ss-line);
  border-radius: 6px;
  background: var(--ss-card);
  padding: 1rem;
}
.ss-vote h3 {
  font-family: var(--sans, sans-serif);
  font-size: 1.15rem;
  text-transform: uppercase;
  color: #fff;
  margin: 0 0 0.3rem;
  line-height: 1.2;
}
.ss-vote-note { font-family: var(--mono, monospace); font-size: 0.63rem; color: var(--ss-mute); margin: 0 0 0.85rem; }
.ss-vote-opts { display: grid; gap: 0.5rem; }
.ss-vote-btn {
  text-align: left;
  background: var(--ss-raise);
  border: 1px solid var(--ss-line-soft);
  border-radius: 5px;
  color: var(--ss-ink);
  font: inherit;
  padding: 0.7rem 0.8rem;
  cursor: pointer;
  min-height: 52px;
  display: block;
  transition: border-color 0.18s, background 0.18s;
}
.ss-vote-btn:hover { border-color: var(--ss-gold); }
.ss-vote-btn[aria-pressed="true"] { border-color: var(--ss-mag); background: rgba(255, 63, 164, 0.1); }
.ss-vote-label { display: flex; justify-content: space-between; gap: 0.6rem; align-items: baseline; }
.ss-vote-t { font-size: 0.9rem; line-height: 1.35; }
.ss-vote-pct {
  font-family: var(--mono, monospace);
  font-size: 0.72rem;
  color: var(--ss-gold);
  font-weight: 700;
  white-space: nowrap;
  opacity: 0;
  transition: opacity 0.35s;
}
.ss-vote.has-voted .ss-vote-pct { opacity: 1; }
.ss-vote-track { height: 6px; border-radius: 999px; background: rgba(255, 255, 255, 0.07); margin-top: 0.5rem; overflow: hidden; }
.ss-vote-fill {
  height: 100%;
  width: 0;
  border-radius: 999px;
  background: var(--ss-spectrum);
  transition: width 0.8s cubic-bezier(0.2, 0.85, 0.2, 1);
}
.ss-vote-result {
  font-family: var(--mono, monospace);
  font-size: 0.7rem;
  line-height: 1.65;
  color: var(--ss-cy);
  margin: 0.85rem 0 0;
  min-height: 2.6em;
  border-left: 2px solid var(--ss-cy);
  padding-left: 0.6rem;
}

/* ====================================================== cover generator */

.ss-gen {
  margin-top: 1rem;
  border: 1px dashed var(--ss-violet);
  border-radius: 6px;
  background: rgba(160, 108, 255, 0.06);
  padding: 1rem;
}
.ss-gen h3 {
  font-family: var(--sans, sans-serif);
  font-size: 1.1rem;
  text-transform: uppercase;
  color: #fff;
  margin: 0 0 0.25rem;
}
.ss-gen-note { font-family: var(--mono, monospace); font-size: 0.63rem; color: var(--ss-mute); margin: 0 0 0.85rem; }
.ss-gen-card {
  border: 1px solid var(--ss-line-soft);
  border-radius: 5px;
  background: var(--ss-void);
  padding: 0.85rem;
  font-family: var(--mono, monospace);
  font-size: 0.78rem;
  line-height: 1.9;
  min-height: 9.5rem;
}
.ss-gen-row { display: grid; grid-template-columns: 92px minmax(0, 1fr); gap: 0.5rem; }
.ss-gen-k { color: var(--ss-mute); letter-spacing: 0.08em; text-transform: uppercase; font-size: 0.6rem; padding-top: 0.35em; }
.ss-gen-v { color: var(--ss-ink); }
.ss-gen-v.is-rating { color: var(--ss-mag); font-weight: 700; }
.ss-gen-v.is-name { color: var(--ss-gold); font-weight: 700; letter-spacing: 0.04em; }
.ss-gen-empty { color: var(--ss-mute); }

/* ==================================================================== misc */

.ss-quote {
  border-left: 3px solid var(--ss-mag);
  background: rgba(255, 63, 164, 0.06);
  padding: 0.8rem 0.9rem;
  margin: 1rem 0;
  font-size: 0.95rem;
  line-height: 1.65;
  font-style: italic;
}
.ss-quote cite {
  display: block;
  font-family: var(--mono, monospace);
  font-size: 0.62rem;
  font-style: normal;
  letter-spacing: 0.08em;
  color: var(--ss-mute);
  margin-top: 0.5rem;
  text-transform: uppercase;
}
.ss-quote.cmd { border-left-color: var(--ss-gold); background: rgba(245, 182, 66, 0.06); }
.ss-quote.paws { border-left-color: var(--ss-lime); background: rgba(74, 222, 128, 0.06); }

.ss-callout {
  border: 1px solid var(--ss-line-soft);
  border-left: 3px solid var(--ss-cy);
  border-radius: 4px;
  background: rgba(53, 224, 232, 0.05);
  padding: 0.75rem 0.85rem;
  margin: 1rem 0;
  font-family: var(--mono, monospace);
  font-size: 0.74rem;
  line-height: 1.7;
  color: var(--ss-dim);
}
.ss-callout b { color: var(--ss-cy); }

.ss-pair {
  display: grid;
  gap: 0.7rem;
  margin-top: 1rem;
}
@media (min-width: 620px) { .ss-pair { grid-template-columns: 1fr 1fr; } }
.ss-id-card {
  border: 1px solid var(--ss-line-soft);
  border-radius: 6px;
  overflow: hidden;
  background: var(--ss-card);
}
.ss-id-card img { width: 100%; height: auto; display: block; background: #000; }
.ss-id-body { padding: 0.8rem 0.85rem 0.95rem; }
.ss-id-role {
  font-family: var(--mono, monospace);
  font-size: 0.58rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--ss-cy);
  margin: 0 0 0.2rem;
}
.ss-id-name {
  font-family: var(--sans, sans-serif);
  font-size: 1.2rem;
  color: #fff;
  margin: 0 0 0.45rem;
  text-transform: uppercase;
}
.ss-id-body p { font-size: 0.85rem; line-height: 1.6; margin: 0 0 0.5rem; }
.ss-id-rating {
  font-family: var(--mono, monospace);
  font-size: 0.66rem;
  color: var(--ss-mag);
  margin: 0;
  letter-spacing: 0.03em;
}

.ss-footer {
  max-width: 860px;
  margin: 0 auto;
  padding: 1.6rem 1rem 3rem;
  font-size: 0.78rem;
  line-height: 1.7;
  color: var(--ss-mute);
  border-top: 1px solid var(--ss-line-soft);
}
.ss-footer a { color: var(--ss-gold); }
.ss-footer p { margin: 0 0 0.6rem; }

@supports (padding: max(0px)) {
  .ss-hero, .ss-cover, .ss-section, .ss-inner, .ss-footer {
    padding-left: max(1rem, env(safe-area-inset-left));
    padding-right: max(1rem, env(safe-area-inset-right));
  }
}

/* Motion is decorative here; every animated element is legible when static. */
@media (prefers-reduced-motion: reduce) {
  .ss-audit-scan,
  .ss-hot::before,
  .ss-live-dot,
  .ss-caret { animation: none !important; }
  .ss-audit-scan { opacity: 0.2; }
  * { scroll-behavior: auto !important; }
}
