/* ============================================================
   NewCo Executive Command Center - Round 3
   RippleCore console language, distilled from the product's
   rc.css / dataripple-new family: navy shell chrome, paper
   content, white cards, Ubuntu + Ubuntu Mono numbers, red
   primary, tone system, uppercase section voices.
   Light-blue .sys chips tag the captured source systems.
   ============================================================ */

:root {
  /* RippleCore console tokens (product family) */
  --paper: #eef2f6; --card: #ffffff; --card-2: #f6f8fb; --card-3: #eef2f7;
  --rc-ink: #141a21; --rc-ink-2: #47535f; --rc-ink-3: #68737f;
  --line: #dde4eb; --line-2: #eaeef3;
  --navy: #1b2433; --navy-2: #243044; --navy-deep: #0b1220;
  --rc-brand: #cc0c1f; --rc-brand-2: #a50a18; --orange: #e65328;
  --green: #1a8a4d; --green-bg: #e4f5ec; --amber: #b06f14; --amber-bg: #faedda;
  --red: #c62828; --red-bg: #fbe6e6; --blue: #2a63bb; --blue-bg: #e2ecfb;
  --purple: #6b4c9a; --purple-bg: #ece5f6;
  --rc-shadow: 0 1px 2px rgba(20,26,33,.04), 0 10px 26px -12px rgba(20,26,33,.16);
  --rc-shadow-lift: 0 2px 6px rgba(20,26,33,.06), 0 22px 44px -16px rgba(20,26,33,.26);
  /* Heat wall - refined status tones (premium, less traffic-light) */
  --heat-g: #2f9e64; --heat-a: #e0a53f; --heat-r: #d1483e;
  --mono: "Ubuntu Mono", "Cascadia Code", Menlo, Consolas, monospace;
  --rc-sans: "Ubuntu", system-ui, "Segoe UI", Roboto, sans-serif;
  --ease: cubic-bezier(.22, 1, .36, 1);
  --shell-rule: rgba(255,255,255,.08);
  --shell-fg: rgba(255,255,255,.64);
  --shell-dim: rgba(255,255,255,.4);
  --shell-hover: rgba(255,255,255,.08);
  --shell-active: rgba(255,255,255,.13);

  /* Remap the shared drawer/modal/chip tokens (skins.css) to console values
     so drill-downs and the briefing render in the console look too. */
  --font: var(--rc-sans);
  --bg: var(--paper); --surface: var(--card); --surface-2: var(--card-2); --surface-3: var(--card-3);
  --ink: var(--rc-ink); --ink-2: var(--rc-ink-2); --ink-3: var(--rc-ink-3);
  --border: var(--line); --border-strong: #c6d0da;
  --brand: var(--navy); --brand-ink: #fff; --brand-soft: #e7ecf3;
  --accent: var(--blue); --link: var(--blue);
  --cta-bg: var(--rc-brand); --cta-ink: #fff; --cta-hover: var(--rc-brand-2);
  --focus: var(--rc-brand);
  --good-ink: #14683a; --good-bg: var(--green-bg); --good-dot: var(--green);
  --warn-ink: #8a570e; --warn-bg: var(--amber-bg); --warn-dot: #d9932a;
  --serious-ink: #b34a05; --serious-bg: #fdeadd; --serious-dot: var(--orange);
  --crit-ink: #a81e10; --crit-bg: var(--red-bg); --crit-dot: var(--rc-brand);
  --chart-1: #008fd5; --chart-2: #6153cc; --chart-3: #7fae12; --chart-4: #00939b;
  --seq-4: var(--blue);
  --up: var(--green); --down: var(--red);
}

body { background: var(--paper); color: var(--rc-ink); font-family: var(--rc-sans); font-size: 13.5px; }
.num, .mono { font-family: var(--mono); font-variant-numeric: tabular-nums; }

/* ================= App shell ================= */
.rc-app { display: grid; grid-template-columns: 248px 1fr; height: 100vh; overflow: hidden; }
.rc-side { background: var(--navy); display: flex; flex-direction: column; overflow-y: auto; border-right: 1px solid var(--shell-rule); }
.rc-brand { display: flex; align-items: center; gap: 9px; padding: 15px 16px 12px; border-bottom: 1px solid var(--shell-rule); flex: none; }
.rc-brand .lockup .wordmark { color: #fff; font-size: 14.5px; }
.rc-brand .lockup .wordsub { color: var(--shell-dim); }
.rc-brand .badge { font-size: 10px; font-weight: 800; letter-spacing: .05em; color: #fff; background: var(--rc-brand); border-radius: 5px; padding: 2px 7px; margin-left: auto; }
.rc-nav { padding: 10px 10px 20px; flex: 1; }
.rc-nav-section { margin-top: 15px; }
.rc-nav-section:first-child { margin-top: 4px; }
.rc-nav-label { font-size: 10px; font-weight: 700; letter-spacing: .09em; text-transform: uppercase; color: var(--shell-dim); padding: 5px 12px 7px; }
.rc-nav-btn {
  width: 100%; display: flex; align-items: center; gap: 10px;
  padding: 9px 12px; border-radius: 8px;
  font-family: var(--rc-sans); font-weight: 500; font-size: 13px; color: var(--shell-fg);
  text-align: left; transition: background .15s var(--ease), color .15s var(--ease);
}
.rc-nav-btn:hover { background: var(--shell-hover); color: #fff; }
.rc-nav-btn.on { background: var(--shell-active); color: #fff; }
.rc-nav-btn .no { font-family: var(--mono); font-size: 11px; color: var(--shell-dim); width: 14px; flex: none; }
.rc-nav-btn.on .no { color: #fff; }
.rc-nav-btn .lbl { flex: 1; min-width: 0; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.rc-nav-btn .cnt { font-family: var(--mono); font-size: 10.5px; font-weight: 700; color: var(--shell-dim); }
.rc-side-foot { padding: 12px 16px 16px; border-top: 1px solid var(--shell-rule); font-size: 10.5px; color: var(--shell-dim); line-height: 1.5; }
.rc-side-foot a { color: var(--shell-fg); }

.rc-main { display: flex; flex-direction: column; min-width: 0; height: 100vh; background: var(--paper); }
.rc-topbar {
  display: flex; align-items: center; gap: 14px; padding: 10px 22px;
  background: var(--navy); border-bottom: 1px solid var(--shell-rule); flex: none; position: relative; z-index: 40;
}
.rc-tb-crumb { font-size: 12.5px; color: var(--shell-fg); white-space: nowrap; }
.rc-tb-crumb b { color: #fff; font-weight: 600; }
.rc-aibar {
  width: min(560px, 40vw); height: 38px; margin: 0 auto;
  display: flex; align-items: center; gap: 9px;
  border: 1px solid rgba(255,255,255,.55); border-radius: 10px; padding: 0 12px;
  background: #fff; color: #141a21; font-size: 13px; font-weight: 600; cursor: pointer;
  font-family: var(--rc-sans); box-shadow: 0 1px 3px rgba(0,0,0,.2); transition: background .18s var(--ease);
}
.rc-aibar:hover { background: #f4f7fa; }
.rc-aibar .spark-ic { width: 18px; height: 18px; flex: none; color: var(--rc-brand); }
.rc-aibar .ph { flex: 1; text-align: left; color: #141a21; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.rc-tb-right { margin-left: auto; display: flex; align-items: center; gap: 8px; }
.rc-countchip {
  display: inline-flex; align-items: baseline; gap: 6px; white-space: nowrap;
  border: 1px solid var(--shell-rule); border-radius: 8px; padding: 6px 12px;
  font-size: 11px; font-weight: 700; color: var(--shell-fg); cursor: pointer;
  transition: background .15s var(--ease);
}
.rc-countchip:hover { background: var(--shell-hover); }
.rc-countchip b { font-family: var(--mono); font-size: 16px; color: #fff; }
.rc-user { height: 34px; display: inline-flex; align-items: center; gap: 8px; padding: 3px 11px 3px 3px; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.12); border-radius: 999px; color: #fff; }
.rc-user .av { width: 27px; height: 27px; border-radius: 50%; background: var(--rc-brand); display: grid; place-items: center; color: #fff; font-weight: 700; font-size: 11px; }
.rc-user .un { font-size: 12px; font-weight: 600; }

#content { flex: 1; overflow-y: auto; padding: 24px 28px 56px; min-width: 0; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { #content { scroll-behavior: auto; } }

/* ================= Ask panel (drops under the topbar) ================= */
.askpanel {
  position: absolute; top: calc(100% + 8px); left: 50%; transform: translateX(-50%);
  width: min(720px, 90vw); background: var(--card); border-radius: 12px;
  box-shadow: var(--rc-shadow-lift); border: 1px solid var(--line);
  padding: 14px 16px; display: none; color: var(--rc-ink);
}
.askpanel.open { display: block; }
.askpanel .askrow { display: flex; gap: 8px; }
.askpanel input {
  flex: 1; font: 600 13.5px var(--rc-sans); color: var(--rc-ink);
  background: var(--card-2); border: 1px solid var(--line); border-radius: 8px; padding: 9px 13px;
}
.askpanel .chips { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 9px; }
.askchip { font-size: 11.5px; font-weight: 600; color: var(--rc-ink-2); border: 1px solid var(--line); border-radius: 999px; padding: 4px 11px; background: var(--card); }
.askchip:hover { background: var(--blue-bg); color: var(--blue); border-color: var(--blue); }
.answer { margin-top: 10px; border-top: 1px solid var(--line); padding-top: 12px; }
.answer[hidden] { display: none; }
.answer .q { font-size: 11px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; color: var(--rc-ink-3); margin-bottom: 5px; }
.answer .a { font-size: 13.5px; line-height: 1.6; color: var(--rc-ink-2); }
.answer .a strong { color: var(--rc-ink); }
.answer .a .drill { color: var(--blue); font-weight: 700; }
.answer .cites { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 9px; }
.answer .cite { font-size: 10.5px; font-weight: 700; color: var(--blue); background: var(--blue-bg); border-radius: 5px; padding: 2px 8px; }
.answer .cite:hover { background: #d3e2f8; }
.answer .followups { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 9px; }

/* ================= Page header + view tabs ================= */
.pg-kicker { font-size: 10.5px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--rc-ink-3); }
.pg-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 16px; flex-wrap: wrap; margin: 2px 0 4px; }
.pg-head h1 { font-size: 22px; font-weight: 700; letter-spacing: -.01em; }
.pg-greet { font-size: 12.5px; color: var(--rc-ink-2); margin-top: 3px; }
.pg-greet b { color: var(--rc-ink); }
.pg-ctl { display: flex; gap: 8px; align-items: center; flex-wrap: wrap; }

.viewtabs { display: flex; align-items: center; gap: 2px; border-bottom: 1px solid var(--line); margin: 10px 0 16px; overflow-x: auto; }
.viewtabs button {
  font-size: 13px; font-weight: 600; color: var(--rc-ink-3);
  padding: 9px 13px 8px; border-bottom: 2.5px solid transparent; white-space: nowrap;
}
.viewtabs button .no { font-family: var(--mono); font-size: 11px; margin-right: 5px; color: var(--rc-ink-3); }
.viewtabs button:hover { color: var(--rc-ink); }
.viewtabs button[aria-current="page"] { color: var(--rc-ink); border-bottom-color: var(--rc-brand); font-weight: 700; }

/* ================= Buttons ================= */
.b { display: inline-flex; align-items: center; justify-content: center; gap: 7px; font: inherit; font-size: 13px; font-weight: 600; height: 34px; padding: 0 14px; border-radius: 8px; border: 1px solid var(--line); background: var(--card); color: var(--rc-ink-2); cursor: pointer; text-decoration: none; white-space: nowrap; transition: border-color .18s var(--ease), background .18s var(--ease), color .18s var(--ease); }
.b:hover { border-color: var(--rc-ink-3); color: var(--rc-ink); }
.b.pri { background: var(--rc-brand); color: #fff; border-color: var(--rc-brand); }
.b.pri:hover { background: var(--rc-brand-2); border-color: var(--rc-brand-2); }
.b.sm { height: 28px; padding: 0 11px; font-size: 12px; border-radius: 7px; }

/* ================= The system tag - light blue, the RFP capture markers ================= */
.sys {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 10.5px; font-weight: 700; color: var(--blue);
  background: var(--blue-bg); border-radius: 5px; padding: 2px 8px;
  white-space: nowrap; cursor: pointer; border: 0; font-family: var(--rc-sans);
  transition: background .15s var(--ease);
}
.sys:hover { background: #d3e2f8; }
.sys.dim { background: transparent; border: 1px dashed #b9cfec; }
.sysrow { display: flex; flex-wrap: wrap; gap: 5px; align-items: center; }
.sysrow .cap { font-size: 10.5px; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; color: var(--rc-ink-3); margin-right: 3px; }

/* ================= Scoreboard (navy strip, big mono numbers) ================= */
.scoreboard {
  display: grid; grid-auto-flow: column; grid-auto-columns: 1fr;
  background: radial-gradient(130% 160% at 0% 0%, var(--navy-2), var(--navy) 60%);
  border-radius: 16px; overflow: hidden; margin-bottom: 16px;
  border: 1px solid rgba(255,255,255,.07);
  box-shadow: 0 1px 2px rgba(20,26,33,.05), 0 18px 40px -18px rgba(20,26,33,.45);
}
.sb { padding: 16px 20px 15px; min-width: 0; text-align: left; border: 0; background: none; font: inherit; color: #fff; position: relative; cursor: pointer; transition: background .18s var(--ease); }
.sb + .sb { border-left: 1px solid rgba(255,255,255,.08); }
.sb:hover { background: rgba(255,255,255,.05); }
.sb .l { font-size: 10px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.5); display: flex; align-items: center; gap: 6px; }
.sb .v { display: block; font-family: var(--mono); font-variant-numeric: tabular-nums; font-size: 27px; font-weight: 700; margin-top: 8px; letter-spacing: -.015em; line-height: 1.08; }
.sb .d { display: block; font-size: 11px; color: rgba(255,255,255,.52); margin-top: 4px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.sb.good .v { color: #56d69a; } .sb.warn .v { color: #f0b657; } .sb.hot .v { color: #ff897c; }
.sb .sys { background: rgba(122,162,232,.18); color: #9cc0f5; }
.sb .sys:hover { background: rgba(122,162,232,.3); }

/* ================= Tiles ================= */
.tiles { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin-bottom: 14px; }
@media (max-width: 1150px) { .tiles { grid-template-columns: repeat(2, 1fr); } }
.tile { background: var(--card); border: 1px solid var(--line); border-radius: 14px; box-shadow: var(--rc-shadow); padding: 15px 17px; text-align: left; font: inherit; color: inherit; cursor: pointer; transition: box-shadow .18s var(--ease), transform .18s var(--ease), border-color .18s var(--ease); }
.tile:hover { box-shadow: var(--rc-shadow-lift); transform: translateY(-2px); }
.tile .tl { display: flex; align-items: center; gap: 7px; font-size: 11.5px; font-weight: 600; color: var(--rc-ink-2); }
.tile .tv { display: block; font-family: var(--mono); font-size: 25px; font-weight: 700; margin-top: 6px; line-height: 1.1; }
.tile .td { display: block; font-size: 11px; color: var(--rc-ink-3); margin-top: 3px; }
.tile .act { display: block; }
.tile.alarm { border: 1.5px solid var(--rc-brand); box-shadow: 0 1px 2px rgba(20,26,33,.04), 0 14px 30px -14px rgba(198,40,40,.30); }
.tile.alarm .tl { color: var(--rc-brand); font-weight: 700; }
.tile.alarm .tv { color: var(--rc-brand); }
.tile .act { margin-top: 9px; }
.tile.good .tv { color: var(--green); } .tile.warn .tv { color: var(--amber); } .tile.hot .tv { color: var(--red); }

/* ================= Section voice + cards ================= */
.voice { font-size: 10.5px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--rc-ink-3); margin: 24px 2px 11px; display: flex; align-items: center; gap: 11px; flex-wrap: wrap; }
.voice .sys { text-transform: none; letter-spacing: 0; }
.voice::after { content: ""; flex: 1; min-width: 24px; height: 1px; background: linear-gradient(90deg, var(--line), transparent); }
.cardgrid { display: grid; gap: 12px; }
.cg-2 { grid-template-columns: 1fr 1fr; }
.cg-2-1 { grid-template-columns: 2fr 1fr; }
.cg-3 { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 1150px) { .cg-2, .cg-2-1, .cg-3 { grid-template-columns: 1fr; } }
.card { background: var(--card); border: 1px solid var(--line); border-radius: 14px; box-shadow: var(--rc-shadow); }
.card-h { display: flex; align-items: center; gap: 9px; padding: 14px 17px 2px; flex-wrap: wrap; }
.card-h h3 { font-size: 14px; font-weight: 700; letter-spacing: -.01em; }
.card-h .spacer { flex: 1; }
.card-b { padding: 8px 17px 15px; }

.row { display: flex; align-items: center; gap: 10px; width: 100%; text-align: left; padding: 9px 5px; border-top: 1px solid var(--line-2); font: inherit; color: inherit; border-radius: 7px; transition: background .14s var(--ease); }
.row:first-child { border-top: 0; }
.row:hover { background: var(--card-2); }
.row .rl { flex: 1; min-width: 0; font-size: 12.5px; font-weight: 600; color: var(--rc-ink-2); }
.row .rl .rs { display: block; font-size: 11px; color: var(--rc-ink-3); font-weight: 500; margin-top: 1px; }
.row .rv { font-family: var(--mono); font-size: 14px; font-weight: 700; white-space: nowrap; }
.row .rd { font-size: 10.5px; font-weight: 700; white-space: nowrap; }
.rd.pos { color: var(--green); } .rd.neg { color: var(--red); } .rd.flat { color: var(--rc-ink-3); }

/* Notes annotation card (mockup convention) */
.notes { background: #fffdf5; border: 1px solid #ecd9a8; border-radius: 12px; padding: 12px 16px; margin-bottom: 14px; }
.notes .nt { font-size: 10.5px; font-weight: 800; letter-spacing: .08em; color: var(--amber); text-transform: uppercase; display: flex; gap: 8px; align-items: center; }
.notes ul { margin: 8px 0 0; padding-left: 18px; font-size: 12.5px; color: var(--rc-ink-2); line-height: 1.6; }
.notes b { color: var(--rc-ink); }

/* War-room bands (7B) */
.fireband { background: linear-gradient(180deg, #2a1410, #200e0b); border-radius: 14px; padding: 14px 16px 16px; margin-bottom: 12px; box-shadow: var(--rc-shadow); }
.fireband .fh { color: #fff; font-size: 14px; font-weight: 700; display: flex; gap: 8px; align-items: baseline; }
.fireband .fs { color: rgba(255,255,255,.6); font-size: 11.5px; margin-top: 2px; }
.firecards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-top: 11px; }
@media (max-width: 1100px) { .firecards { grid-template-columns: 1fr; } }
.firecard { background: var(--card); border-radius: 10px; padding: 11px 13px; text-align: left; font: inherit; color: inherit; cursor: pointer; box-shadow: var(--rc-shadow); transition: box-shadow .18s var(--ease); }
.firecard:hover { box-shadow: var(--rc-shadow-lift); }
.firecard .fr { display: flex; align-items: center; gap: 8px; }
.firecard .rankn { width: 20px; height: 20px; border-radius: 6px; display: grid; place-items: center; color: #fff; font-family: var(--mono); font-size: 11.5px; font-weight: 700; flex: none; }
.firecard .rankn.r1 { background: var(--rc-brand); } .firecard .rankn.r2 { background: var(--blue); } .firecard .rankn.r3 { background: var(--navy-2); }
.firecard .fo { font-size: 12.5px; font-weight: 700; }
.firecard .ft { display: block; font-size: 12.5px; font-weight: 700; margin-top: 6px; }
.firecard .fd { display: block; font-size: 11px; color: var(--rc-ink-3); margin-top: 3px; }
.dontforget { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; background: var(--amber-bg); border: 1px solid #ecd9a8; border-radius: 12px; padding: 9px 14px; margin-bottom: 12px; }
.dontforget .dfl { font-size: 10.5px; font-weight: 800; letter-spacing: .07em; color: var(--amber); }
.dfpill { display: inline-flex; align-items: center; gap: 7px; background: var(--card); border: 1px solid #ecd9a8; border-radius: 999px; padding: 5px 12px; font-size: 12px; font-weight: 600; color: var(--rc-ink-2); cursor: pointer; }
.dfpill:hover { border-color: var(--amber); color: var(--rc-ink); }
.morning { background: var(--navy); border-radius: 14px 14px 0 0; padding: 13px 16px; display: flex; align-items: center; gap: 12px; color: #fff; }
.morning .mt { font-size: 14px; font-weight: 700; }
.morning .ms { font-size: 11.5px; color: rgba(255,255,255,.6); margin-top: 1px; }
.morninglist { background: var(--card); border: 1px solid var(--line); border-top: 0; border-radius: 0 0 14px 14px; margin-bottom: 12px; box-shadow: var(--rc-shadow); }
.mitem { display: flex; align-items: center; gap: 12px; padding: 11px 16px; border-top: 1px solid var(--line-2); }
.mitem:first-child { border-top: 0; }
.mitem .mn { width: 22px; height: 22px; border-radius: 50%; background: var(--navy); color: #fff; display: grid; place-items: center; font-family: var(--mono); font-size: 11px; font-weight: 700; flex: none; }
.mitem .mw { flex: 1; min-width: 0; }
.mitem .mp { font-size: 13px; font-weight: 700; }
.mitem .msd { font-size: 11.5px; color: var(--rc-ink-3); }
.releaseband { background: var(--navy-deep); border-radius: 14px; padding: 16px 20px; margin-bottom: 12px; display: flex; align-items: center; gap: 18px; color: #fff; box-shadow: var(--rc-shadow); }
.releaseband .rb1 { flex: 1; min-width: 0; }
.releaseband .rtag { display: inline-flex; align-items: center; gap: 6px; background: rgba(224,165,74,.15); color: #e0a54a; font-size: 10px; font-weight: 800; letter-spacing: .08em; border-radius: 6px; padding: 3px 9px; text-transform: uppercase; }
.releaseband h2 { font-size: 21px; font-weight: 700; margin-top: 7px; }
.releaseband h2 .hl { color: #e0a54a; }
.releaseband .rsub { font-size: 12px; color: rgba(255,255,255,.6); margin-top: 4px; }
.releaseband .rside { text-align: right; flex: none; border-left: 1px solid rgba(255,255,255,.12); padding-left: 18px; cursor: pointer; }
.releaseband .rside .rl { font-size: 10px; font-weight: 800; letter-spacing: .08em; color: rgba(255,255,255,.5); text-transform: uppercase; }
.releaseband .rside .rv { font-family: var(--mono); font-size: 24px; font-weight: 700; margin-top: 4px; }
.releaseband .rside .rv small { font-size: 13px; color: rgba(255,255,255,.5); }
.releaseband .rside .rg { font-size: 11px; color: #4cc487; font-weight: 700; margin-top: 2px; }

/* jump tab variant */
.jumptabs { position: sticky; top: 0; z-index: 30; background: var(--paper); display: flex; gap: 2px; border-bottom: 1px solid var(--line); margin: 0 0 14px; padding-top: 4px; overflow-x: auto; }
.jumptabs button { font-size: 12.5px; font-weight: 600; color: var(--rc-ink-3); padding: 8px 12px 7px; border-bottom: 2.5px solid transparent; white-space: nowrap; }
.jumptabs button .no { font-family: var(--mono); font-size: 10.5px; margin-right: 4px; }
.jumptabs button:hover { color: var(--rc-ink); }
.jumptabs button[aria-current="page"] { color: var(--rc-ink); border-bottom-color: var(--rc-brand); font-weight: 700; }

/* Capture footer */
.capstrip { margin-top: 26px; background: var(--card); border: 1px solid var(--line); border-radius: 12px; padding: 13px 16px; box-shadow: var(--rc-shadow); }
.capstrip .ct { font-size: 10.5px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; color: var(--rc-ink-3); margin-bottom: 8px; }
.capstrip .ct .in { color: var(--blue); }
.samplenote { font-size: 11px; color: var(--rc-ink-3); padding: 14px 4px 6px; text-align: center; }

/* Heat wall - premium status chips (rounded, subtle depth, refined tones) */
.heatw { border-collapse: separate; border-spacing: 5px; font-size: 11px; width: 100%; }
.heatw thead th { font-size: 10px; font-weight: 600; letter-spacing: .02em; color: var(--rc-ink-3); padding: 0 2px 5px; text-align: center; }
.heatw thead th.now { color: var(--rc-ink); font-weight: 800; }
.heatw tbody th { font-weight: 600; color: var(--rc-ink-2); text-align: right; padding: 0 13px 0 0; white-space: nowrap; font-size: 11.5px; }
.heatw td { padding: 0; }
.heatw .cell {
  display: block; width: 100%; height: 22px; border: 0; padding: 0; border-radius: 6px; cursor: pointer;
  background-color: var(--c, var(--card-3));
  background-image: linear-gradient(180deg, rgba(255,255,255,.30), rgba(255,255,255,0) 46%, rgba(0,0,0,.13));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.38), inset 0 -1px 2px rgba(0,0,0,.13), 0 1px 1.5px rgba(20,26,33,.10);
  transition: transform .16s var(--ease), box-shadow .16s var(--ease), filter .16s var(--ease);
}
.heatw .cell:hover { transform: translateY(-1.5px) scale(1.05); filter: saturate(1.08); box-shadow: inset 0 1px 0 rgba(255,255,255,.42), 0 7px 15px -3px rgba(20,26,33,.30); }
.heatw td.now .cell { box-shadow: inset 0 1px 0 rgba(255,255,255,.42), inset 0 0 0 1.6px rgba(255,255,255,.6), 0 2px 5px rgba(20,26,33,.16); }
.heatleg { display: flex; align-items: center; gap: 18px; margin-top: 13px; padding-top: 12px; border-top: 1px solid var(--line-2); font-size: 11.5px; color: var(--rc-ink-2); flex-wrap: wrap; }
.heatleg .hk { display: inline-flex; align-items: center; gap: 7px; font-weight: 600; }
.heatleg .hk i { width: 12px; height: 12px; border-radius: 4px; box-shadow: inset 0 1px 0 rgba(255,255,255,.4), inset 0 -1px 1px rgba(0,0,0,.13); }
.heatleg .hk-hint { margin-left: auto; color: var(--rc-ink-3); font-weight: 500; }

/* Premium critical-path gate cards (override skins.css .gate) */
.gate { position: relative; overflow: hidden; border: 1px solid var(--line); border-radius: 13px; background: var(--card); box-shadow: var(--rc-shadow); padding: 13px 15px 12px; transition: box-shadow .18s var(--ease), transform .18s var(--ease); }
.gate::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--accent), color-mix(in srgb, var(--accent) 20%, transparent)); }
.gate:hover { box-shadow: var(--rc-shadow-lift); transform: translateY(-2px); }
.gate .gd { display: block; font-family: var(--mono); font-size: 11px; font-weight: 700; letter-spacing: .06em; color: var(--accent); }
.gate .gt { display: block; font-size: 13.5px; font-weight: 700; margin: 3px 0 2px; color: var(--rc-ink); }
.gate .gs { display: block; font-size: 11px; color: var(--rc-ink-3); }

/* Meter (console) */
.meter { height: 7px; border-radius: 999px; background: var(--card-3); overflow: hidden; box-shadow: inset 0 1px 2px rgba(20,26,33,.08); }
.meter > i { display: block; height: 100%; border-radius: 999px; background: linear-gradient(90deg, color-mix(in srgb, var(--blue) 80%, #fff), var(--blue)); }
.meter.warnfill > i { background: linear-gradient(90deg, #e7b45f, #d9932a); }
.meter.critfill > i { background: var(--rc-brand); }
