/* ============================================================================
   _shared/station.css
   Shared CSS for all 11 C-suite command stations.
   Accent variables (--stn-hue / --stn-soft / --stn-ring / --stn-ink) are
   set per-station from station-render.jsx.
   ============================================================================ */

:root {
  --stn-hue: #2C5F87;
  --stn-soft: rgba(44,95,135,0.10);
  --stn-ring: rgba(44,95,135,0.30);
  --stn-ink: #1A3D5C;
  --stn-bone: #FBFAF6;
  --stn-paper: #ffffff;
  --stn-line: #E5DFD0;
  --stn-line-soft: #F0EBDD;
  --stn-text: #2A2520;
  --stn-text-soft: #5A5345;
  --stn-text-tert: #847C6A;
  --stn-warn: #B08D3C;
  --stn-coral: #B23A2E;
  --stn-green: #117A4D;
}

body { background: var(--stn-bone); color: var(--stn-text); font-family: var(--font-sans, "Tiempos Text", Georgia, serif); margin: 0; }

.stn-page { max-width: 1280px; margin: 0 auto; padding: 22px 32px 80px; }
.stn-page-with-nav { max-width: 1480px; }
.stn-shell { display: grid; grid-template-columns: 240px 1fr; gap: 32px; align-items: start; }
.stn-content { min-width: 0; }

/* ---- sidebar nav ---- */
.stn-sidenav {
  position: sticky;
  top: 16px;
  align-self: start;
  max-height: calc(100vh - 32px);
  overflow-y: auto;
  padding: 18px 0 22px;
  border-right: 1px solid var(--stn-line);
  font-family: var(--font-mono, ui-monospace, monospace);
}
.stn-sidenav-mark {
  display: flex; align-items: center; gap: 10px; padding: 0 16px 16px;
  border-bottom: 1px solid var(--stn-line);
  margin-bottom: 14px;
}
.stn-sidenav-badge {
  width: 36px; height: 36px; border-radius: 8px; display: grid; place-items: center;
  color: #fff; font-weight: 700; font-size: 11px; letter-spacing: 0.06em;
}
.stn-sidenav-roomtag {
  font-size: 9px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--stn-text-tert); font-weight: 600;
}
.stn-sidenav-group { margin-bottom: 14px; }
.stn-sidenav-grouphd {
  font-size: 9px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--stn-text-tert); font-weight: 700;
  padding: 0 16px 6px;
}
.stn-sidenav-link {
  display: flex; align-items: center; gap: 10px;
  padding: 6px 16px 6px 13px;
  font-size: 11.5px; line-height: 1.4;
  color: var(--stn-text-soft);
  text-decoration: none;
  border-left: 3px solid transparent;
  transition: color 80ms ease, border-color 80ms ease, background 80ms ease;
}
.stn-sidenav-link:hover { color: var(--stn-text); background: var(--stn-soft); }
.stn-sidenav-link.active { font-weight: 700; background: var(--stn-soft); }
.stn-sidenav-dot {
  width: 5px; height: 5px; border-radius: 50%; background: #C7BFA8; flex: 0 0 5px;
}
.stn-sidenav-lbl { flex: 1; }
.stn-sidenav-foot {
  padding: 14px 16px 0;
  margin-top: 14px;
  border-top: 1px solid var(--stn-line);
}
.stn-sidenav-foot-eyebrow {
  font-size: 9px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--stn-text-tert); font-weight: 700; margin-bottom: 8px;
}
.stn-sidenav-officer {
  display: block;
  font-size: 10.5px;
  color: var(--stn-text-soft);
  text-decoration: none;
  padding: 3px 0;
  border-bottom: 1px dotted transparent;
}
.stn-sidenav-officer:hover { color: var(--stn-hue); border-bottom-color: var(--stn-hue); }

/* responsive: stack nav on top under 1100px */
@media (max-width: 1100px) {
  .stn-shell { grid-template-columns: 1fr; gap: 16px; }
  .stn-sidenav {
    position: static;
    max-height: none;
    border-right: none;
    border-bottom: 1px solid var(--stn-line);
    padding: 12px 0 16px;
    display: grid; grid-template-columns: repeat(2, 1fr); gap: 0 24px;
  }
  .stn-sidenav-mark { grid-column: 1 / -1; padding-bottom: 10px; }
  .stn-sidenav-foot { grid-column: 1 / -1; }
}

/* ---- topline ---- */
.stn-topline { display: flex; justify-content: space-between; align-items: center; padding-bottom: 14px; border-bottom: 1px solid var(--stn-line); margin-bottom: 22px; font-family: var(--font-mono, ui-monospace, monospace); font-size: 11px; letter-spacing: 0.06em; color: var(--stn-text-soft); text-transform: uppercase; }
.stn-topline-l { display: flex; gap: 10px; align-items: center; flex-wrap: wrap; }
.stn-topline-back { color: var(--stn-text-soft); text-decoration: none; border-bottom: 1px dotted #C7BFA8; }
.stn-topline-back:hover { color: var(--stn-text); }
.stn-topline-sep { color: #C7BFA8; }
.stn-topline-eyebrow { font-weight: 600; }
.stn-tick { display: inline-flex; align-items: center; gap: 6px; color: var(--stn-text-soft); }
.stn-tick-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--stn-green); display: inline-block; animation: stnPulse 1.4s ease-in-out infinite; }
@keyframes stnPulse { 0%,100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.4; transform: scale(0.7); } }

/* ---- hero ---- */
.stn-hero { display: grid; grid-template-columns: 1fr auto; gap: 32px; align-items: end; padding-bottom: 26px; border-bottom: 1px solid var(--stn-line); margin-bottom: 24px; }
.stn-hero-l { display: grid; grid-template-columns: 72px 1fr; gap: 18px; align-items: start; }
.stn-hero-badge { width: 72px; height: 72px; border-radius: 14px; display: grid; place-items: center; color: #fff; font-family: var(--font-mono); font-weight: 700; font-size: 16px; letter-spacing: 0.04em; box-shadow: 0 4px 12px rgba(54,42,24,0.10); }
.stn-hero-eyebrow { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; font-weight: 600; margin-bottom: 6px; }
.stn-hero-title { font-size: 36px; line-height: 1.14; letter-spacing: -0.014em; margin: 0; font-weight: 700; max-width: 760px; text-wrap: balance; }
.stn-hero-title em { font-style: italic; color: var(--stn-hue); }
.stn-hero-lede { color: var(--stn-text-soft); margin: 12px 0 0; max-width: 720px; font-size: 14px; line-height: 1.55; text-wrap: pretty; }
.stn-hero-r { display: flex; flex-direction: column; gap: 8px; align-items: flex-end; min-width: 220px; }
.stn-vital { font-family: var(--font-mono); font-size: 10.5px; letter-spacing: 0.04em; color: var(--stn-text-tert); text-align: right; }

/* ---- pulse ---- */
.stn-pulse { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1px; background: var(--stn-line); border: 1px solid var(--stn-line); border-radius: 12px; overflow: hidden; margin-bottom: 28px; }
.stn-pulse-card { background: var(--stn-paper); padding: 14px 16px 14px; }
.stn-pulse-card.warn { background: linear-gradient(180deg, rgba(176,141,60,0.08), transparent); }
.stn-pulse-l { display: flex; justify-content: space-between; align-items: center; font-family: var(--font-mono); font-size: 9px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--stn-text-tert); margin-bottom: 6px; }
.stn-pulse-live { font-size: 9px; letter-spacing: 0.06em; }
.stn-pulse-v { font-size: 26px; font-weight: 700; letter-spacing: -0.012em; line-height: 1.1; font-variant-numeric: tabular-nums; }
.stn-pulse-v.up { color: var(--stn-hue); }
.stn-pulse-s { font-family: var(--font-mono); font-size: 10px; color: var(--stn-text-tert); margin-top: 4px; }

/* ---- sections ---- */
.stn-sect { margin-bottom: 36px; }
.stn-sect-hd { display: flex; justify-content: space-between; align-items: end; margin-bottom: 14px; padding-bottom: 8px; border-bottom: 1px solid var(--stn-line-soft); }
.stn-sect-eyebrow { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; font-weight: 600; margin-bottom: 4px; }
.stn-sect-title { font-size: 22px; line-height: 1.22; letter-spacing: -0.008em; margin: 0; font-weight: 700; max-width: 880px; text-wrap: balance; }
.stn-sect-title em { font-style: italic; color: var(--stn-hue); }

/* ---- generic table ---- */
.stn-table-wrap { overflow-x: auto; border: 1px solid var(--stn-line); border-radius: 10px; background: var(--stn-paper); }
.stn-table { width: 100%; border-collapse: collapse; font-size: 13px; background: var(--stn-paper); }
.stn-table th { text-align: left; padding: 10px 14px; font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.10em; text-transform: uppercase; color: var(--stn-text-tert); font-weight: 600; background: #FAF8F2; border-bottom: 1px solid var(--stn-line); }
.stn-table td { padding: 10px 14px; border-bottom: 1px solid var(--stn-line-soft); vertical-align: top; }
.stn-table tr:last-child td { border-bottom: none; }
.stn-table tr:hover td { background: rgba(176,141,60,0.04); }
.stn-table-status { font-weight: 600; color: var(--stn-hue); font-family: var(--font-mono); font-size: 11px; }
.stn-row-warn td { background: rgba(176,141,60,0.06); }

/* ---- rollup3 (CIO) ---- */
.stn-rollup { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.stn-rollup-card { display: flex; flex-direction: column; gap: 12px; padding: 18px 20px; background: var(--stn-paper); border: 1px solid var(--stn-line); border-left: 3px solid; border-radius: 10px; text-decoration: none; color: var(--stn-text); transition: transform 120ms ease, border-color 120ms ease; }
.stn-rollup-card:hover { transform: translateY(-1px); border-color: var(--stn-hue); }
.stn-rollup-hd { display: flex; justify-content: space-between; align-items: start; }
.stn-rollup-name { font-size: 15px; font-weight: 700; letter-spacing: -0.005em; }
.stn-rollup-lead { font-family: var(--font-mono); font-size: 10.5px; color: var(--stn-text-tert); margin-top: 2px; }
.stn-rollup-arrow { font-size: 18px; }
.stn-rollup-metrics { display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px 16px; padding-top: 8px; border-top: 1px dashed var(--stn-line); }
.stn-rollup-mk { font-family: var(--font-mono); font-size: 9px; letter-spacing: 0.10em; text-transform: uppercase; color: var(--stn-text-tert); }
.stn-rollup-mv { font-size: 16px; font-weight: 700; font-variant-numeric: tabular-nums; }
.stn-rollup-headline { font-size: 12.5px; color: var(--stn-text-soft); padding-top: 8px; border-top: 1px dashed var(--stn-line); line-height: 1.5; text-wrap: pretty; }

/* ---- vendors ---- */
.stn-vendors { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
.stn-vendor { background: var(--stn-paper); border: 1px solid var(--stn-line); border-radius: 10px; padding: 14px 16px; }
.stn-vendor-hd { display: flex; justify-content: space-between; align-items: center; margin-bottom: 8px; }
.stn-vendor-name { font-size: 14px; font-weight: 600; }
.stn-vendor-cat { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.10em; text-transform: uppercase; font-weight: 600; }
.stn-vendor-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; padding-top: 8px; border-top: 1px dashed var(--stn-line); }
.stn-vendor-l { display: block; font-family: var(--font-mono); font-size: 9px; letter-spacing: 0.10em; text-transform: uppercase; color: var(--stn-text-tert); margin-bottom: 2px; }
.stn-vendor-v { font-size: 12px; font-weight: 600; font-variant-numeric: tabular-nums; }
.stn-vendor-v.risk-low { color: var(--stn-green); }
.stn-vendor-v.risk-med { color: var(--stn-warn); }
.stn-vendor-v.risk-high { color: var(--stn-coral); }

/* ---- risk register ---- */
.stn-risk { display: flex; flex-direction: column; gap: 8px; }
.stn-risk-row { display: grid; grid-template-columns: 64px 1fr auto; gap: 14px; padding: 12px 14px; background: var(--stn-paper); border: 1px solid var(--stn-line); border-radius: 8px; align-items: center; }
.stn-risk-row.lev-high { border-left: 4px solid var(--stn-coral); }
.stn-risk-row.lev-med  { border-left: 4px solid var(--stn-warn); }
.stn-risk-row.lev-low  { border-left: 4px solid var(--stn-green); }
.stn-risk-id { font-family: var(--font-mono); font-size: 11px; font-weight: 600; color: var(--stn-text-tert); letter-spacing: 0.04em; }
.stn-risk-t { font-size: 13.5px; font-weight: 600; margin-bottom: 2px; }
.stn-risk-n { font-size: 12px; color: var(--stn-text-soft); }
.stn-risk-meta { display: flex; gap: 10px; align-items: center; }
.stn-risk-own { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.06em; color: var(--stn-text-tert); }
.stn-risk-lev { font-family: var(--font-mono); font-size: 9px; letter-spacing: 0.10em; text-transform: uppercase; padding: 2px 7px; border-radius: 999px; font-weight: 600; }
.stn-risk-lev.lev-high { background: rgba(178,58,46,0.10); color: var(--stn-coral); }
.stn-risk-lev.lev-med  { background: rgba(176,141,60,0.10); color: var(--stn-warn); }
.stn-risk-lev.lev-low  { background: rgba(17,122,77,0.10);  color: var(--stn-green); }
.stn-risk-trend { font-size: 14px; color: var(--stn-text-tert); }

/* ---- today ---- */
.stn-today { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.stn-today-row { display: grid; grid-template-columns: 60px 1fr; gap: 14px; padding: 10px 14px; background: var(--stn-paper); border: 1px solid var(--stn-line); border-radius: 8px; }
.stn-today-t { font-family: var(--font-mono); font-size: 11px; font-weight: 600; letter-spacing: 0.04em; padding-top: 1px; }
.stn-today-h { font-size: 13.5px; font-weight: 600; }
.stn-today-s { font-family: var(--font-mono); font-size: 10.5px; color: var(--stn-text-tert); margin-top: 2px; }

/* ---- SRE services ---- */
.stn-svc { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.stn-svc-group { background: var(--stn-paper); border: 1px solid var(--stn-line); border-radius: 10px; padding: 14px 16px; }
.stn-svc-grouphd { display: flex; justify-content: space-between; padding-bottom: 8px; margin-bottom: 8px; border-bottom: 1px dashed var(--stn-line); }
.stn-svc-grouptitle { font-size: 13.5px; font-weight: 700; }
.stn-svc-groupstate { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.10em; text-transform: uppercase; font-weight: 600; }
.stn-svc-list { display: flex; flex-direction: column; gap: 4px; }
.stn-svc-row { display: grid; grid-template-columns: 12px 1fr auto auto; gap: 10px; padding: 4px 0; align-items: center; font-size: 12px; }
.stn-svc-row.warn { color: var(--stn-warn); }
.stn-svc-dot { width: 8px; height: 8px; border-radius: 50%; }
.stn-svc-dot.ok { background: var(--stn-green); }
.stn-svc-dot.warn { background: var(--stn-warn); }
.stn-svc-n { font-family: var(--font-mono); font-size: 11px; }
.stn-svc-sla { font-family: var(--font-mono); font-size: 10px; color: var(--stn-text-tert); }
.stn-svc-live { font-family: var(--font-mono); font-size: 11px; font-weight: 700; color: var(--stn-green); font-variant-numeric: tabular-nums; }
.stn-svc-row.warn .stn-svc-live { color: var(--stn-warn); }

/* ---- SRE patches ---- */
.stn-patches { display: flex; flex-direction: column; gap: 8px; }
.stn-patch { display: grid; grid-template-columns: 80px 1fr auto; gap: 14px; padding: 12px 14px; background: var(--stn-paper); border: 1px solid var(--stn-line); border-radius: 8px; align-items: center; }
.stn-patch.sev-crit { border-left: 4px solid var(--stn-coral); }
.stn-patch.sev-high { border-left: 4px solid var(--stn-warn); }
.stn-patch.sev-med  { border-left: 4px solid #C7BFA8; }
.stn-patch.sev-low  { border-left: 4px solid #E5DFD0; }
.stn-patch-id { font-family: var(--font-mono); font-size: 11px; font-weight: 600; color: var(--stn-text-tert); }
.stn-patch-svc { font-size: 13px; font-weight: 600; }
.stn-patch-note { font-size: 12px; color: var(--stn-text-soft); margin-top: 2px; }
.stn-patch-meta { display: flex; gap: 8px; align-items: center; }
.stn-patch-sev { font-family: var(--font-mono); font-size: 9px; letter-spacing: 0.10em; text-transform: uppercase; padding: 2px 7px; border-radius: 999px; font-weight: 600; }
.stn-patch-sev.sev-crit { background: rgba(178,58,46,0.10); color: var(--stn-coral); }
.stn-patch-sev.sev-high { background: rgba(176,141,60,0.10); color: var(--stn-warn); }
.stn-patch-sev.sev-med  { background: #F4F1EA; color: var(--stn-text-tert); }
.stn-patch-sev.sev-low  { background: #F4F1EA; color: var(--stn-text-tert); }
.stn-patch-win { font-family: var(--font-mono); font-size: 10px; color: var(--stn-text-tert); }

/* ---- SRE infra ---- */
.stn-infra { display: flex; flex-direction: column; gap: 8px; }
.stn-infra-row { display: grid; grid-template-columns: 1fr 1.4fr 1.4fr; gap: 14px; padding: 12px 14px; background: var(--stn-paper); border: 1px solid var(--stn-line); border-radius: 8px; }
.stn-infra-row.state-warn { border-left: 4px solid var(--stn-warn); }
.stn-infra-row.state-green { border-left: 4px solid var(--stn-green); }
.stn-infra-reg { display: flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 600; }
.stn-infra-dot { width: 8px; height: 8px; border-radius: 50%; }
.stn-infra-dot.state-green { background: var(--stn-green); }
.stn-infra-dot.state-warn  { background: var(--stn-warn); }
.stn-infra-env { font-family: var(--font-mono); font-size: 9px; letter-spacing: 0.10em; text-transform: uppercase; color: var(--stn-text-tert); padding: 2px 6px; background: #F4F1EA; border-radius: 4px; margin-left: 4px; }
.stn-infra-cells { display: flex; gap: 14px; flex-wrap: wrap; font-family: var(--font-mono); font-size: 11px; color: var(--stn-text); }
.stn-infra-cells em { color: var(--stn-text-tert); font-style: normal; font-size: 9px; letter-spacing: 0.10em; text-transform: uppercase; margin-right: 4px; }
.stn-infra-note { font-size: 12px; color: var(--stn-text-soft); }

/* ---- SRE incidents ---- */
.stn-incidents { display: flex; flex-direction: column; gap: 8px; }
.stn-inc { padding: 12px 14px; background: var(--stn-paper); border: 1px solid var(--stn-line); border-radius: 8px; }
.stn-inc.state-investigating { border-left: 4px solid var(--stn-warn); }
.stn-inc.state-closed { border-left: 4px solid var(--stn-green); }
.stn-inc-hd { display: flex; gap: 10px; align-items: center; flex-wrap: wrap; margin-bottom: 4px; }
.stn-inc-sev { font-family: var(--font-mono); font-size: 10px; font-weight: 700; padding: 2px 7px; border-radius: 4px; }
.stn-inc-sev.sev-p1, .stn-inc-sev.sev-p2 { background: rgba(178,58,46,0.10); color: var(--stn-coral); }
.stn-inc-sev.sev-p3 { background: rgba(176,141,60,0.10); color: var(--stn-warn); }
.stn-inc-sev.sev-p4 { background: #F4F1EA; color: var(--stn-text-tert); }
.stn-inc-id  { font-family: var(--font-mono); font-size: 11px; color: var(--stn-text-tert); font-weight: 600; }
.stn-inc-svc { font-size: 13px; font-weight: 600; }
.stn-inc-state { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.06em; color: var(--stn-text-tert); margin-left: auto; }
.stn-inc-meta { font-family: var(--font-mono); font-size: 10.5px; color: var(--stn-text-tert); display: flex; gap: 14px; margin-bottom: 4px; }
.stn-inc-note { font-size: 12.5px; color: var(--stn-text-soft); }

/* ---- Security SOC ---- */
.stn-soc { background: #1a1815; color: #e5dfd0; border-radius: 10px; padding: 14px 16px; font-family: var(--font-mono); font-size: 11.5px; }
.stn-soc-hd { display: flex; gap: 14px; padding-bottom: 8px; border-bottom: 1px solid #3a342a; margin-bottom: 8px; align-items: center; }
.stn-soc-tick { font-weight: 700; }
.stn-soc-rate { color: #847C6A; margin-left: auto; }
.stn-soc-feed { display: flex; flex-direction: column; gap: 2px; }
.stn-soc-row { display: grid; grid-template-columns: 80px 50px 200px 1fr; gap: 12px; padding: 4px 0; line-height: 1.4; }
.stn-soc-row.sev-warn .stn-soc-msg { color: var(--stn-warn); }
.stn-soc-t { color: #847C6A; }
.stn-soc-sev { font-weight: 700; }
.stn-soc-sev.sev-info { color: #6B9080; }
.stn-soc-sev.sev-warn { color: var(--stn-warn); }
.stn-soc-src { color: #C7BFA8; }
.stn-soc-msg { color: #e5dfd0; }

/* ---- Security CVEs ---- */
.stn-cves { display: flex; flex-direction: column; gap: 8px; }
.stn-cve { display: grid; grid-template-columns: 140px 1fr auto; gap: 14px; padding: 12px 14px; background: var(--stn-paper); border: 1px solid var(--stn-line); border-radius: 8px; align-items: center; }
.stn-cve.sev-crit { border-left: 4px solid var(--stn-coral); }
.stn-cve.sev-high { border-left: 4px solid var(--stn-warn); }
.stn-cve.sev-med  { border-left: 4px solid #C7BFA8; }
.stn-cve-id { font-family: var(--font-mono); font-size: 11.5px; font-weight: 700; display: flex; flex-direction: column; gap: 2px; }
.stn-cve-score { font-size: 14px; color: var(--stn-coral); font-weight: 700; }
.stn-cve.sev-high .stn-cve-score { color: var(--stn-warn); }
.stn-cve.sev-med .stn-cve-score { color: var(--stn-text-tert); }
.stn-cve-svc { font-size: 13px; font-weight: 600; }
.stn-cve-note { font-size: 12px; color: var(--stn-text-soft); margin-top: 2px; }
.stn-cve-meta { display: flex; flex-direction: column; gap: 3px; align-items: flex-end; font-family: var(--font-mono); font-size: 10px; }
.stn-cve-due { color: var(--stn-text); font-weight: 600; }
.stn-cve-own { color: var(--stn-text-tert); }
.stn-cve-state { padding: 2px 7px; border-radius: 4px; background: var(--stn-soft); color: var(--stn-hue); font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; }

/* ---- Security access reviews ---- */
.stn-access { display: flex; flex-direction: column; gap: 8px; }
.stn-access-row { display: grid; grid-template-columns: 1.2fr 2fr auto; gap: 14px; padding: 12px 14px; background: var(--stn-paper); border: 1px solid var(--stn-line); border-radius: 8px; align-items: center; }
.stn-access-row.state-due { border-left: 4px solid var(--stn-warn); }
.stn-access-row.state-queued { border-left: 4px solid #C7BFA8; }
.stn-access-who { font-size: 13px; font-weight: 600; }
.stn-access-cells { display: flex; gap: 16px; flex-wrap: wrap; font-family: var(--font-mono); font-size: 11px; color: var(--stn-text); }
.stn-access-cells em { color: var(--stn-text-tert); font-style: normal; font-size: 9px; letter-spacing: 0.10em; text-transform: uppercase; margin-right: 4px; }
.stn-access-due { font-family: var(--font-mono); font-size: 11px; color: var(--stn-text); }
.stn-access-state { padding: 2px 7px; border-radius: 4px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; font-size: 9px; margin-left: 4px; }
.stn-access-state.state-due { background: rgba(176,141,60,0.10); color: var(--stn-warn); }
.stn-access-state.state-queued { background: #F4F1EA; color: var(--stn-text-tert); }

/* ---- Compliance ---- */
.stn-compliance { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.stn-comp { padding: 14px 16px; background: var(--stn-paper); border: 1px solid var(--stn-line); border-left: 3px solid var(--stn-green); border-radius: 8px; }
.stn-comp.state-in-flight { border-left-color: var(--stn-warn); }
.stn-comp.state-current   { border-left-color: var(--stn-green); }
.stn-comp-name { font-size: 13.5px; font-weight: 700; margin-bottom: 4px; }
.stn-comp-state { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.10em; text-transform: uppercase; color: var(--stn-hue); font-weight: 600; margin-bottom: 8px; }
.stn-comp-dates { display: flex; gap: 14px; font-family: var(--font-mono); font-size: 10.5px; color: var(--stn-text-tert); margin-bottom: 6px; }
.stn-comp-note { font-size: 12px; color: var(--stn-text-soft); }

/* ---- Phish table — uses stn-table ---- */

/* ---- CTO pods ---- */
.stn-pods { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.stn-pod { padding: 16px 18px; background: var(--stn-paper); border: 1px solid var(--stn-line); border-radius: 10px; }
.stn-pod-hd { display: flex; justify-content: space-between; align-items: start; margin-bottom: 8px; }
.stn-pod-name { font-size: 14px; font-weight: 700; }
.stn-pod-lead { font-family: var(--font-mono); font-size: 10.5px; color: var(--stn-text-tert); margin-top: 2px; }
.stn-pod-pts { font-size: 24px; font-weight: 700; font-variant-numeric: tabular-nums; line-height: 1; }
.stn-pod-pts span { font-size: 11px; color: var(--stn-text-tert); font-family: var(--font-mono); }
.stn-pod-row { display: flex; gap: 16px; padding-top: 8px; border-top: 1px dashed var(--stn-line); font-family: var(--font-mono); font-size: 11px; }
.stn-pod-row em { color: var(--stn-text-tert); font-style: normal; font-size: 9px; letter-spacing: 0.10em; text-transform: uppercase; margin-right: 4px; }
.stn-pod-focus { font-size: 12.5px; color: var(--stn-text-soft); margin-top: 8px; padding-top: 8px; border-top: 1px dashed var(--stn-line); line-height: 1.5; }

/* ---- CTO evals ---- */
.stn-evals { display: flex; flex-direction: column; gap: 8px; }
.stn-eval { display: grid; grid-template-columns: 1.4fr 1fr 1fr 40px; gap: 14px; padding: 12px 14px; background: var(--stn-paper); border: 1px solid var(--stn-line); border-radius: 8px; align-items: center; }
.stn-eval.state-warn { border-left: 4px solid var(--stn-warn); }
.stn-eval.state-ok   { border-left: 4px solid var(--stn-green); }
.stn-eval-rail { font-size: 13px; font-weight: 600; }
.stn-eval-model { font-family: var(--font-mono); font-size: 11px; color: var(--stn-text-tert); }
.stn-eval-score { font-family: var(--font-mono); font-size: 14px; font-weight: 700; color: var(--stn-hue); }
.stn-eval-thr { font-size: 10px; color: var(--stn-text-tert); font-weight: 400; }
.stn-eval-trend { text-align: center; font-size: 14px; }

/* ---- CTO arch ---- */
.stn-arch { display: flex; flex-direction: column; gap: 8px; }
.stn-arch-row { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 14px; padding: 12px 14px; background: var(--stn-paper); border: 1px solid var(--stn-line); border-radius: 8px; align-items: center; }
.stn-arch-row.state-shipped  { border-left: 4px solid var(--stn-green); }
.stn-arch-row.state-in-flight { border-left: 4px solid var(--stn-warn); }
.stn-arch-row.state-blocked  { border-left: 4px solid var(--stn-coral); }
.stn-arch-row.state-scheduled { border-left: 4px solid #C7BFA8; }
.stn-arch-area { font-size: 13px; font-weight: 600; }
.stn-arch-cells { display: flex; gap: 14px; flex-wrap: wrap; font-family: var(--font-mono); font-size: 11px; align-items: center; }
.stn-arch-cells em { color: var(--stn-text-tert); font-style: normal; font-size: 9px; letter-spacing: 0.10em; text-transform: uppercase; margin-right: 4px; }
.stn-arch-state { padding: 2px 7px; border-radius: 4px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; font-size: 9px; }
.stn-arch-state.state-shipped { background: rgba(17,122,77,0.10); color: var(--stn-green); }
.stn-arch-state.state-in-flight { background: rgba(176,141,60,0.10); color: var(--stn-warn); }
.stn-arch-state.state-blocked { background: rgba(178,58,46,0.10); color: var(--stn-coral); }
.stn-arch-state.state-scheduled { background: #F4F1EA; color: var(--stn-text-tert); }
.stn-arch-note { font-size: 12px; color: var(--stn-text-soft); }

/* ---- CFO P&L total rows ---- */
.stn-pl-total td { font-weight: 700; background: rgba(176,141,60,0.05); border-top: 1px solid var(--stn-line); }

/* ---- CFO runway ---- */
.stn-runway { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.stn-runway-card { padding: 18px 20px; background: var(--stn-paper); border: 1px solid var(--stn-line); border-radius: 10px; }
.stn-runway-card.risk-low  { border-left: 4px solid var(--stn-green); }
.stn-runway-card.risk-med  { border-left: 4px solid var(--stn-warn); }
.stn-runway-sc { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--stn-text-tert); margin-bottom: 4px; font-weight: 600; }
.stn-runway-num { font-size: 32px; font-weight: 700; letter-spacing: -0.014em; color: var(--stn-hue); font-variant-numeric: tabular-nums; line-height: 1.05; margin-bottom: 6px; }
.stn-runway-det { font-size: 12.5px; color: var(--stn-text-soft); line-height: 1.5; }

/* ---- CFO treasury ---- */
.stn-treasury { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.stn-tres { padding: 14px 16px; background: var(--stn-paper); border: 1px solid var(--stn-line); border-radius: 8px; }
.stn-tres-name { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.10em; text-transform: uppercase; color: var(--stn-text-tert); font-weight: 600; margin-bottom: 6px; }
.stn-tres-bal { font-size: 22px; font-weight: 700; letter-spacing: -0.01em; font-variant-numeric: tabular-nums; margin-bottom: 4px; }
.stn-tres-loc { font-family: var(--font-mono); font-size: 11px; color: var(--stn-text); margin-bottom: 4px; }
.stn-tres-note { font-size: 12px; color: var(--stn-text-soft); }

/* ---- CFO/CCO audits ---- */
.stn-audits { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
.stn-audit { padding: 14px 16px; background: var(--stn-paper); border: 1px solid var(--stn-line); border-left: 3px solid var(--stn-green); border-radius: 8px; }
.stn-audit.state-in-flight { border-left-color: var(--stn-warn); }
.stn-audit.state-closed-clean { border-left-color: var(--stn-green); }
.stn-audit.state-active { border-left-color: var(--stn-green); }
.stn-audit.state-filed { border-left-color: var(--stn-green); }
.stn-audit-name { font-size: 13.5px; font-weight: 700; margin-bottom: 4px; }
.stn-audit-state { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.10em; text-transform: uppercase; color: var(--stn-hue); font-weight: 600; }
.stn-audit-date { font-family: var(--font-mono); font-size: 11px; color: var(--stn-text-tert); margin: 4px 0; }
.stn-audit-note { font-size: 12px; color: var(--stn-text-soft); }

/* ---- COO onboarding ---- */
.stn-onboard { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.stn-onb { padding: 16px 18px; background: var(--stn-paper); border: 1px solid var(--stn-line); border-radius: 10px; }
.stn-onb.risk-med  { border-left: 4px solid var(--stn-warn); }
.stn-onb.risk-low  { border-left: 4px solid var(--stn-green); }
.stn-onb-hd { display: flex; justify-content: space-between; margin-bottom: 8px; }
.stn-onb-name { font-size: 14px; font-weight: 700; }
.stn-onb-phase { font-family: var(--font-mono); font-size: 10.5px; color: var(--stn-text-tert); margin-top: 2px; }
.stn-onb-pct { font-size: 22px; font-weight: 700; font-variant-numeric: tabular-nums; }
.stn-onb-bar { height: 6px; background: #F4F1EA; border-radius: 999px; overflow: hidden; margin-bottom: 8px; }
.stn-onb-fill { height: 100%; border-radius: 999px; }
.stn-onb-meta { display: flex; gap: 14px; font-family: var(--font-mono); font-size: 10.5px; color: var(--stn-text-tert); margin-bottom: 6px; }
.stn-onb-meta .risk-low  { color: var(--stn-green); }
.stn-onb-meta .risk-med  { color: var(--stn-warn); }
.stn-onb-note { font-size: 12.5px; color: var(--stn-text-soft); }

/* ---- COO supply ---- */
.stn-supply { display: flex; flex-direction: column; gap: 8px; }
.stn-supply-row { display: grid; grid-template-columns: 1.4fr 100px 100px 1.4fr; gap: 14px; padding: 12px 14px; background: var(--stn-paper); border: 1px solid var(--stn-line); border-radius: 8px; align-items: center; }
.stn-supply-row.state-amber { border-left: 4px solid var(--stn-warn); }
.stn-supply-row.state-green { border-left: 4px solid var(--stn-green); }
.stn-supply-cat { font-size: 13px; font-weight: 600; }
.stn-supply-days { font-family: var(--font-mono); font-size: 12px; }
.stn-supply-state { font-family: var(--font-mono); font-size: 9px; letter-spacing: 0.10em; text-transform: uppercase; padding: 2px 7px; border-radius: 4px; font-weight: 600; text-align: center; }
.stn-supply-state.state-amber { background: rgba(176,141,60,0.10); color: var(--stn-warn); }
.stn-supply-state.state-green { background: rgba(17,122,77,0.10); color: var(--stn-green); }
.stn-supply-note { font-size: 12px; color: var(--stn-text-soft); }

/* ---- CRO pipe ---- */
.stn-pipe { display: flex; flex-direction: column; gap: 10px; }
.stn-pipe-row { padding: 14px 16px; background: var(--stn-paper); border: 1px solid var(--stn-line); border-radius: 8px; }
.stn-pipe-hd { display: flex; justify-content: space-between; align-items: center; margin-bottom: 6px; }
.stn-pipe-d { font-size: 14px; font-weight: 700; }
.stn-pipe-size { font-size: 16px; font-weight: 700; color: var(--stn-hue); font-variant-numeric: tabular-nums; }
.stn-pipe-meta { display: flex; gap: 14px; font-family: var(--font-mono); font-size: 11px; flex-wrap: wrap; margin-bottom: 6px; }
.stn-pipe-meta em { color: var(--stn-text-tert); font-style: normal; font-size: 9px; letter-spacing: 0.10em; text-transform: uppercase; margin-right: 4px; }
.stn-pipe-bar { height: 4px; background: #F4F1EA; border-radius: 999px; overflow: hidden; margin-bottom: 6px; }
.stn-pipe-fill { height: 100%; background: var(--stn-hue); border-radius: 999px; }
.stn-pipe-note { font-size: 12px; color: var(--stn-text-soft); }

/* ---- CCO regs ---- */
.stn-regs { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
.stn-reg { padding: 14px 16px; background: var(--stn-paper); border: 1px solid var(--stn-line); border-left: 3px solid var(--stn-green); border-radius: 8px; }
.stn-reg.state-in-flight { border-left-color: var(--stn-warn); }
.stn-reg-name { font-size: 13.5px; font-weight: 700; margin-bottom: 4px; }
.stn-reg-state { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.10em; text-transform: uppercase; color: var(--stn-hue); font-weight: 600; margin-bottom: 8px; }
.stn-reg-row { display: flex; gap: 14px; font-family: var(--font-mono); font-size: 10.5px; color: var(--stn-text-tert); margin-bottom: 4px; flex-wrap: wrap; }
.stn-reg-note { font-size: 12px; color: var(--stn-text-soft); }

/* ---- CCO attestations ---- */
.stn-attest { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
.stn-att { padding: 14px 16px; background: var(--stn-paper); border: 1px solid var(--stn-line); border-radius: 8px; }
.stn-att-name { font-size: 13px; font-weight: 700; margin-bottom: 4px; }
.stn-att-due  { font-family: var(--font-mono); font-size: 11px; font-weight: 600; color: var(--stn-warn); margin-bottom: 4px; }
.stn-att-own  { font-family: var(--font-mono); font-size: 10.5px; color: var(--stn-text-tert); margin-bottom: 4px; }
.stn-att-note { font-size: 12px; color: var(--stn-text-soft); }

/* ---- CCO audit log ---- */
.stn-audit-log { background: #FAF8F2; border: 1px solid var(--stn-line); border-radius: 8px; padding: 12px 14px; font-family: var(--font-mono); font-size: 11.5px; }
.stn-aud { display: grid; grid-template-columns: 60px 1fr 2fr 1fr 70px; gap: 12px; padding: 4px 0; align-items: center; }
.stn-aud + .stn-aud { border-top: 1px dashed var(--stn-line-soft); }
.stn-aud-t { color: var(--stn-text-tert); }
.stn-aud-who { font-weight: 600; color: var(--stn-text); }
.stn-aud-act { color: var(--stn-text); }
.stn-aud-scope { color: var(--stn-text-tert); }
.stn-aud-state { padding: 2px 6px; border-radius: 4px; text-align: center; font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; font-size: 9px; }
.stn-aud-state.state-ok { background: rgba(17,122,77,0.10); color: var(--stn-green); }
.stn-aud-state.state-flagged { background: rgba(176,141,60,0.10); color: var(--stn-warn); }

/* ---- CLO matters ---- */
.stn-matters { display: flex; flex-direction: column; gap: 8px; }
.stn-matter { display: grid; grid-template-columns: 80px 1fr auto; gap: 14px; padding: 12px 14px; background: var(--stn-paper); border: 1px solid var(--stn-line); border-left: 3px solid #C7BFA8; border-radius: 8px; }
.stn-matter.cat-litigation { border-left-color: var(--stn-coral); }
.stn-matter.cat-contract   { border-left-color: var(--stn-hue); }
.stn-matter.cat-ip         { border-left-color: var(--stn-warn); }
.stn-matter.cat-securities { border-left-color: var(--stn-green); }
.stn-matter.cat-employment { border-left-color: #6B9080; }
.stn-matter-id { font-family: var(--font-mono); font-size: 11px; color: var(--stn-text-tert); font-weight: 600; }
.stn-matter-cat { font-family: var(--font-mono); font-size: 9px; letter-spacing: 0.10em; text-transform: uppercase; color: var(--stn-hue); font-weight: 600; margin-bottom: 2px; }
.stn-matter-t { font-size: 13.5px; font-weight: 600; }
.stn-matter-note { font-size: 12px; color: var(--stn-text-soft); margin-top: 2px; }
.stn-matter-meta { display: flex; flex-direction: column; align-items: flex-end; gap: 2px; font-family: var(--font-mono); font-size: 10px; }
.stn-matter-state { color: var(--stn-text); font-weight: 600; }
.stn-matter-clk { color: var(--stn-text-tert); }
.stn-matter-own { color: var(--stn-text-tert); }

/* ---- CLO IP ---- */
.stn-ip { display: flex; flex-direction: column; gap: 6px; background: var(--stn-paper); border: 1px solid var(--stn-line); border-radius: 8px; padding: 4px 0; }
.stn-ip-row { display: grid; grid-template-columns: 1.6fr 1fr 0.8fr 1fr 1.2fr; gap: 14px; padding: 10px 14px; align-items: center; }
.stn-ip-row + .stn-ip-row { border-top: 1px solid var(--stn-line-soft); }
.stn-ip-name { font-size: 13px; font-weight: 600; }
.stn-ip-type { font-family: var(--font-mono); font-size: 10.5px; color: var(--stn-text-tert); }
.stn-ip-state { font-family: var(--font-mono); font-size: 9px; letter-spacing: 0.10em; text-transform: uppercase; color: var(--stn-hue); font-weight: 600; }
.stn-ip-reg { font-family: var(--font-mono); font-size: 11px; }
.stn-ip-note { font-size: 12px; color: var(--stn-text-soft); }

/* ---- CHRO headcount ---- */
.stn-hc { display: flex; flex-direction: column; gap: 6px; }
.stn-hc-row { display: grid; grid-template-columns: 1.4fr 80px 1fr 1.4fr; gap: 14px; padding: 10px 14px; background: var(--stn-paper); border: 1px solid var(--stn-line); border-radius: 6px; align-items: center; }
.stn-hc-fn { font-size: 13px; font-weight: 600; }
.stn-hc-num { font-family: var(--font-mono); font-size: 12px; font-variant-numeric: tabular-nums; }
.stn-hc-bar { height: 6px; background: #F4F1EA; border-radius: 999px; overflow: hidden; }
.stn-hc-fill { height: 100%; border-radius: 999px; }
.stn-hc-note { font-size: 12px; color: var(--stn-text-soft); }

/* ---- CHRO funnel ---- */
.stn-funnel { display: flex; flex-direction: column; gap: 6px; padding: 14px; background: var(--stn-paper); border: 1px solid var(--stn-line); border-radius: 8px; }
.stn-fn-row { display: grid; grid-template-columns: 130px 1fr 80px 60px; gap: 14px; align-items: center; padding: 6px 0; }
.stn-fn-stage { font-family: var(--font-mono); font-size: 11px; font-weight: 600; }
.stn-fn-bar { height: 14px; border-radius: 4px; }
.stn-fn-count { font-family: var(--font-mono); font-size: 13px; font-weight: 700; font-variant-numeric: tabular-nums; text-align: right; }
.stn-fn-conv { font-family: var(--font-mono); font-size: 10.5px; color: var(--stn-text-tert); text-align: right; }

/* ---- CHRO pulse ---- */
.stn-cult { display: flex; flex-direction: column; gap: 6px; }
.stn-cult-row { display: grid; grid-template-columns: 1fr 80px 30px; gap: 14px; padding: 10px 14px; background: var(--stn-paper); border: 1px solid var(--stn-line); border-radius: 6px; align-items: center; }
.stn-cult-q { font-size: 13px; }
.stn-cult-score { font-family: var(--font-mono); font-size: 14px; font-weight: 700; text-align: right; }
.stn-cult-trend { text-align: center; font-size: 14px; }
.stn-cult-trend.up { color: var(--stn-green); }
.stn-cult-trend.down { color: var(--stn-coral); }
.stn-cult-trend.flat { color: var(--stn-text-tert); }

/* ---- BRAND press ---- */
.stn-press { display: flex; flex-direction: column; gap: 6px; background: var(--stn-paper); border: 1px solid var(--stn-line); border-radius: 8px; padding: 4px 0; }
.stn-press-row { display: grid; grid-template-columns: 100px 2fr 1fr 1fr 1.4fr; gap: 14px; padding: 10px 14px; align-items: center; }
.stn-press-row + .stn-press-row { border-top: 1px solid var(--stn-line-soft); }
.stn-press-d { font-family: var(--font-mono); font-size: 10.5px; color: var(--stn-hue); font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; }
.stn-press-t { font-size: 13px; font-weight: 600; }
.stn-press-own { font-family: var(--font-mono); font-size: 10.5px; color: var(--stn-text-tert); }
.stn-press-st { font-family: var(--font-mono); font-size: 10.5px; color: var(--stn-text); }
.stn-press-note { font-size: 12px; color: var(--stn-text-soft); }

/* ---- pride wall ---- */
.stn-pride { margin: 36px 0; padding: 22px 24px; background: linear-gradient(180deg, var(--stn-soft) 0%, transparent 100%); border-radius: 14px; border: 1px solid var(--stn-line-soft); }
.stn-pride-hd { margin-bottom: 14px; }
.stn-pride-eyebrow { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; font-weight: 600; margin-bottom: 4px; }
.stn-pride-title { font-size: 22px; line-height: 1.2; letter-spacing: -0.008em; margin: 0; font-weight: 700; }
.stn-pride-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.stn-pride-card { padding: 14px 16px; background: var(--stn-paper); border: 1px solid var(--stn-line); border-left: 3px solid; border-radius: 8px; }
.stn-pride-who { font-family: var(--font-mono); font-size: 9px; letter-spacing: 0.16em; text-transform: uppercase; font-weight: 700; margin-bottom: 6px; }
.stn-pride-what { font-size: 13px; line-height: 1.55; color: var(--stn-text); margin-bottom: 8px; text-wrap: pretty; }
.stn-pride-impact { font-family: var(--font-mono); font-size: 11px; font-weight: 700; color: var(--stn-text); padding-top: 8px; border-top: 1px dashed var(--stn-line); }

/* ---- handoff ---- */
.stn-handoff-btn { font-family: var(--font-sans); font-size: 13px; font-weight: 500; padding: 9px 18px; border-radius: 8px; color: #fff; border: none; cursor: pointer; box-shadow: 0 2px 6px rgba(54,42,24,0.10); margin-top: 6px; }
.stn-handoff-btn:hover { filter: brightness(1.08); }
.stn-handoff-bg { position: fixed; inset: 0; background: rgba(42,37,32,0.32); display: flex; justify-content: flex-end; z-index: 100; }
.stn-handoff { width: 460px; max-width: 100%; height: 100%; background: var(--stn-paper); padding: 28px 32px; overflow-y: auto; box-shadow: -4px 0 24px rgba(54,42,24,0.16); animation: stnSlideIn 220ms ease; }
@keyframes stnSlideIn { from { transform: translateX(100%); } to { transform: translateX(0); } }
.stn-handoff-hd { display: flex; justify-content: space-between; padding-bottom: 14px; border-bottom: 1px solid var(--stn-line); margin-bottom: 16px; }
.stn-handoff-eyebrow { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; font-weight: 600; margin-bottom: 4px; }
.stn-handoff-t { font-size: 18px; font-weight: 700; margin: 0; }
.stn-handoff-x { font-family: var(--font-mono); background: none; border: none; color: var(--stn-text-tert); font-size: 16px; cursor: pointer; }
.stn-handoff-list { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.stn-handoff-row { display: flex; justify-content: space-between; align-items: center; padding: 12px 14px; background: var(--stn-paper); border: 1px solid var(--stn-line); border-radius: 8px; cursor: pointer; font-family: var(--font-sans); font-size: 13px; text-align: left; }
.stn-handoff-row:hover, .stn-handoff-row.chosen { border-color: var(--stn-hue); background: var(--stn-soft); }
.stn-handoff-row-name { font-weight: 600; }
.stn-handoff-row-arrow { font-size: 16px; }
.stn-handoff-hint { font-family: var(--font-mono); font-size: 11px; color: var(--stn-text-tert); padding: 14px; background: #FAF8F2; border-radius: 8px; }
.stn-handoff-form { padding-top: 16px; border-top: 1px dashed var(--stn-line); }
.stn-handoff-ta { width: 100%; min-height: 100px; padding: 10px 12px; border: 1px solid var(--stn-line); border-radius: 8px; font-family: var(--font-sans); font-size: 13px; resize: vertical; background: #FAF8F2; outline: none; box-sizing: border-box; }
.stn-handoff-ta:focus { border-color: var(--stn-hue); background: var(--stn-paper); }
.stn-handoff-actions { display: flex; gap: 10px; margin-top: 10px; }
.stn-handoff-go { padding: 10px 16px; color: #fff; border-radius: 8px; text-decoration: none; font-size: 13px; font-weight: 500; flex: 1; text-align: center; }
.stn-handoff-cancel { padding: 10px 16px; background: var(--stn-paper); border: 1px solid var(--stn-line); border-radius: 8px; font-size: 13px; cursor: pointer; }

/* ---- quote ---- */
.stn-quote { padding: 22px 24px; margin-top: 36px; border-left: 3px solid; border-radius: 0 10px 10px 0; background: linear-gradient(180deg, var(--stn-soft) 0%, transparent 100%); }
.stn-quote q { font-style: italic; font-size: 17px; line-height: 1.5; color: var(--stn-text); quotes: "\201C" "\201D"; text-wrap: pretty; }
.stn-quote q::before { content: open-quote; }
.stn-quote q::after  { content: close-quote; }
.stn-quote-src { font-family: var(--font-mono); font-size: 9.5px; letter-spacing: 0.16em; text-transform: uppercase; font-weight: 600; margin-top: 12px; }

/* ---- footer ---- */
.stn-footer { display: flex; justify-content: space-between; padding-top: 22px; margin-top: 28px; border-top: 1px solid var(--stn-line); font-family: var(--font-mono); font-size: 10.5px; letter-spacing: 0.04em; color: var(--stn-text-tert); }


/* ============================================================================
   BRIEF — section-scoped morning brief block
   3-column layout: today's three / autopilot tape / on-the-wire watch
   ============================================================================ */
.stn-brief { display: grid; gap: 22px; }
.stn-brief-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 22px;
  align-items: stretch;
}
.stn-brief-col {
  background: var(--stn-paper);
  border: 1px solid var(--stn-line);
  border-radius: 12px;
  padding: 18px 20px;
  display: flex; flex-direction: column;
}
.stn-brief-collab {
  font-family: var(--font-mono);
  font-size: 9.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 14px;
}
/* LEFT — priorities */
.stn-brief-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 12px; }
.stn-brief-item {
  display: grid;
  grid-template-columns: 32px 1fr auto;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px dashed var(--stn-line);
  align-items: flex-start;
}
.stn-brief-item:last-child { border-bottom: 0; padding-bottom: 0; }
.stn-brief-num {
  font-family: var(--font-mono);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding-top: 2px;
}
.stn-brief-t {
  font-family: var(--font-sans);
  font-size: 14.5px;
  font-weight: 600;
  color: var(--stn-text);
  line-height: 1.32;
  margin-bottom: 4px;
  letter-spacing: -0.005em;
}
.stn-brief-d {
  font-size: 12.5px;
  line-height: 1.55;
  color: var(--stn-text-sec);
  text-wrap: pretty;
}
.stn-brief-meta {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.04em;
  color: var(--stn-text-tert);
  margin-top: 4px;
}
.stn-brief-tag {
  font-family: var(--font-mono);
  font-size: 9.5px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 4px;
  white-space: nowrap;
  align-self: flex-start;
}
.stn-brief-tag.tag-neutral { background: var(--stn-bg-2, #F4F1EA); color: var(--stn-text-sec); }
.stn-brief-tag.tag-amber   { background: rgba(212,140,38,0.12); color: #B36F0E; }
.stn-brief-tag.tag-green   { background: rgba(74,124,89,0.12); color: #4A7C59; }
.stn-brief-tag.tag-coral   { background: rgba(178,58,46,0.12); color: #B23A2E; }
.stn-brief-tag.tag-violet  { background: rgba(94,75,140,0.12); color: #5E4B8C; }
.stn-brief-tag.tag-sky     { background: rgba(44,95,135,0.10); color: #2C5F87; }

/* MIDDLE — tape */
.stn-brief-tape { display: flex; flex-direction: column; }
.stn-brief-tape-big {
  font-family: var(--font-serif, Georgia, serif);
  font-size: 56px;
  font-weight: 500;
  line-height: 1;
  color: var(--stn-text);
  letter-spacing: -0.02em;
  margin-bottom: 4px;
}
.stn-brief-tape-sub {
  font-size: 12.5px;
  color: var(--stn-text-sec);
  margin-bottom: 14px;
  line-height: 1.4;
  text-wrap: pretty;
}
.stn-brief-tape-list { list-style: none; margin: 0; padding: 12px 0 0; border-top: 1px dashed var(--stn-line); display: grid; gap: 8px; }
.stn-brief-tape-list li {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 10px;
  align-items: baseline;
  font-size: 12px;
  color: var(--stn-text-sec);
  line-height: 1.45;
}
.stn-brief-tape-n {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.stn-brief-tape-w { color: var(--stn-text-sec); }

/* RIGHT — watch */
.stn-brief-watch { list-style: none; margin: 0; padding: 0; display: grid; gap: 14px; }
.stn-brief-watch li {
  padding: 10px 0;
  border-bottom: 1px dashed var(--stn-line);
}
.stn-brief-watch li:last-child { border-bottom: 0; padding-bottom: 0; }
.stn-brief-watch-t {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--stn-text);
  margin-bottom: 3px;
  letter-spacing: -0.005em;
}
.stn-brief-watch-d {
  font-size: 12px;
  color: var(--stn-text-sec);
  line-height: 1.5;
  margin-bottom: 6px;
}
.stn-brief-watch-meta {
  display: flex; gap: 8px; align-items: center; flex-wrap: wrap;
}
.stn-brief-watch-chip {
  font-family: var(--font-mono);
  font-size: 9.5px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 4px;
}
.stn-brief-watch-chip.tag-neutral { background: var(--stn-bg-2, #F4F1EA); color: var(--stn-text-sec); }
.stn-brief-watch-chip.tag-amber   { background: rgba(212,140,38,0.12); color: #B36F0E; }
.stn-brief-watch-chip.tag-green   { background: rgba(74,124,89,0.12); color: #4A7C59; }
.stn-brief-watch-chip.tag-coral   { background: rgba(178,58,46,0.12); color: #B23A2E; }
.stn-brief-watch-chip.tag-violet  { background: rgba(94,75,140,0.12); color: #5E4B8C; }
.stn-brief-watch-chip.tag-sky     { background: rgba(44,95,135,0.10); color: #2C5F87; }
.stn-brief-watch-note {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--stn-text-tert);
  letter-spacing: 0.02em;
}

/* pull line */
.stn-brief-line {
  margin-top: 4px;
}
.stn-brief-line-q {
  display: block;
  border-left: 3px solid var(--stn-hue);
  padding: 12px 18px;
  font-family: var(--font-serif, Georgia, serif);
  font-style: italic;
  font-size: 16px;
  line-height: 1.5;
  color: var(--stn-text);
  background: var(--stn-paper);
  border-radius: 0 10px 10px 0;
}

@media (max-width: 1180px) {
  .stn-brief-grid { grid-template-columns: 1fr; }
}
