* { box-sizing: border-box; }
body {
  font-family: 'Archivo', ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  margin: 0; padding: 0;
  background: var(--bg);
  color: var(--ink);
  font-size: 14px;
  line-height: 1.45;
  -webkit-font-smoothing: antialiased;
}
.value, .num, .tnum { font-feature-settings: "tnum"; font-weight: 700; }
code, .mono { font-family: 'JetBrains Mono', ui-monospace, Menlo, monospace; font-size: 13px; }
.brandbar {
  background: linear-gradient(180deg, #131313 0%, #0051f9 100%);
  color: #fff;
  padding: 14px 0;
}
.brandbar-inner, .receipts-inner {
  max-width: 1100px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.brand-left { display: flex; align-items: center; gap: 16px; }
.brand-logo svg { display: block; height: 56px; width: auto; }
.brand-meta {
  font-size: 11px; color: rgba(255,255,255,0.85);
  font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
  font-family: 'JetBrains Mono', ui-monospace, Menlo, monospace;
  border-left: 1px solid rgba(255,255,255,0.25);
  padding-left: 16px;
  line-height: 1.35;
}
.brand-meta strong { color: #fff; font-weight: 800; }
.brand-right {
  font-size: 10.5px; color: rgba(255,255,255,0.7);
  font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
  font-family: 'JetBrains Mono', ui-monospace, Menlo, monospace;
}
.receipts-bar {
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-blue-light) 100%);
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.1px;
  text-shadow: 0 1px 2px rgba(0,0,0,0.12);
  box-shadow: 0 4px 14px rgba(4, 83, 251, 0.25);
  padding: 6px 0;
}
.receipts-bar .right { font-weight: 500; font-size: 11px; opacity: 0.92; }
.wrap { max-width: 1100px; margin: 0 auto; padding: 12px 24px 48px; }
header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 4px; flex-wrap: wrap; gap: 8px; }
header h1 { font-size: 22px; margin: 0; font-weight: 800; letter-spacing: -0.01em; color: var(--ink); }
.subtitle { color: var(--ink-50); font-size: 12px; margin-bottom: 12px; }
.weekof-wrap { position: relative; display: inline-block; }
button.weekof {
  font-family: inherit;
  font-weight: 700; font-size: 12px;
  background: var(--brand); color: #fff;
  padding: 5px 13px; border-radius: 999px; letter-spacing: 0.01em;
  border: none; cursor: pointer;
  display: inline-flex; align-items: center; gap: 6px;
  box-shadow: 0 3px 10px rgba(4, 83, 251, 0.22);
  transition: box-shadow 0.15s, transform 0.1s;
}
button.weekof:hover { box-shadow: 0 6px 18px rgba(4, 83, 251, 0.35); }
button.weekof .chevron {
  font-size: 11px;
  transition: transform 0.15s;
  display: inline-block;
  line-height: 1;
}
.weekof-flag {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 9.5px; font-weight: 800; letter-spacing: 0.08em;
  text-transform: uppercase;
  background: #fff7e0; color: var(--shifted);
  border: 1px solid rgba(255,255,255,0.4);
  padding: 2px 8px 2px 6px; border-radius: 999px;
  margin-left: 2px;
}
.weekof-flag::before {
  content: "🚀"; font-size: 11px;
  animation: rocket-bob 2.4s ease-in-out infinite;
  display: inline-block;
  filter: drop-shadow(0 1px 1px rgba(0,0,0,0.15));
}
@keyframes rocket-bob {
  0%, 100% { transform: translateY(0) rotate(-12deg); }
  50%      { transform: translateY(-2px) rotate(-12deg); }
}
button.weekof[aria-expanded="true"] .chevron { transform: rotate(180deg); }
.weekof-hint {
  display: block;
  text-align: center;
  font-size: 10px;
  color: var(--ink-30);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-top: 6px;
  user-select: none;
  pointer-events: none;
}
.week-popup {
  position: absolute; top: calc(100% + 8px); right: 0;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow: 0 12px 32px rgba(0,0,0,0.14);
  padding: 6px;
  min-width: 340px; max-height: 440px; overflow-y: auto;
  z-index: 50; display: none;
}
.week-popup.open { display: block; }
.week-popup .popup-head {
  font-size: 10.5px; text-transform: uppercase; letter-spacing: 0.08em;
  font-weight: 800; color: var(--ink-50);
  padding: 10px 12px 6px;
}
.week-row {
  display: flex; justify-content: space-between; align-items: center; gap: 10px;
  padding: 9px 12px; border-radius: 8px;
  text-decoration: none; color: var(--ink); font-size: 13px; font-weight: 500;
  border-left: 3px solid transparent;
  margin: 1px 0;
}
.week-row:hover { background: var(--brand-soft); color: var(--brand-dark); }
.week-row.is-current {
  background: linear-gradient(90deg, var(--brand-soft) 0%, transparent 100%);
  border-left-color: var(--brand);
  color: var(--brand-dark); font-weight: 700;
}
.week-row .row-text { display: flex; flex-direction: column; }
.week-row .row-meta { font-size: 11px; color: var(--ink-50); margin-top: 1px; font-weight: 500; }
.week-row.is-current .row-meta { color: var(--brand-dark); opacity: 0.8; }
.status-pill {
  font-size: 9.5px; font-weight: 800; letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 3px 9px; border-radius: 999px; white-space: nowrap;
}
.status-pill.current { background: var(--brand); color: #fff; }
.status-pill.archive { background: var(--bg); color: var(--ink-50); border: 1px solid var(--border); }
.status-pill.in-flight {
  background: #fff7e0; color: var(--shifted); border: 1px solid #f1d68b;
  position: relative; padding-left: 8px;
}
.status-pill.in-flight::before {
  content: "🚀"; margin-right: 4px;
  animation: rocket-bob 1.8s ease-in-out infinite;
  display: inline-block; font-size: 11px; vertical-align: -1px;
  filter: drop-shadow(0 1px 1px rgba(0,0,0,0.12));
}
.toc {
  background: var(--surface);
  border: 1px solid var(--border);
  border-left: 3px solid var(--brand);
  border-radius: 8px;
  padding: 12px 16px; margin-bottom: 18px; font-size: 13px;
}
.toc strong { display: block; font-size: 10.5px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--brand); margin-bottom: 8px; font-weight: 700; }
.toc ol { margin: 0; padding-left: 22px; }
.toc li { margin: 3px 0; }
.toc a { color: var(--ink); text-decoration: none; font-weight: 500; }
.toc a:hover { color: var(--brand); }
.section {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 10px; padding: 18px 20px; margin-bottom: 16px;
  box-shadow: 0 1px 2px rgba(15,23,42,0.04);
  scroll-margin-top: 12px;
}
.section h2 {
  font-size: 16px; margin: 0 0 14px; font-weight: 700; color: var(--ink);
  display: flex; align-items: center; gap: 8px;
}
.section h2 .pill { font-size: 11px; font-weight: 600; background: var(--brand-soft); color: #B83E0E; padding: 3px 10px; border-radius: 999px; }
.kicker { font-size: 12.5px; color: var(--ink-50); margin-bottom: 12px; }
.tabs { display: flex; gap: 4px; margin-bottom: 14px; border-bottom: 1px solid var(--border); }
.tab {
  padding: 8px 14px; cursor: pointer; font-size: 13px; font-weight: 600;
  color: var(--ink-50); border-bottom: 2px solid transparent; user-select: none;
  display: inline-flex; align-items: center; gap: 8px;
}
.tab::before {
  content: "";
  display: inline-block;
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--pod, var(--brand));
  box-shadow: 0 0 0 2px rgba(255,255,255,0.6) inset;
}
.tab[data-team="origin"]    { --pod: var(--brand); }
.tab[data-team="orion"]     { --pod: var(--risk); }
.tab[data-team="reporting"] { --pod: var(--opportunity); }
.tab[data-team="icp"]       { --pod: var(--accent); }
.tab.active { color: var(--pod, var(--brand)); border-bottom-color: var(--pod, var(--brand)); font-weight: 800; }
.tab:hover { color: var(--ink); }

.team-content { display: none; }
.team-content.active { display: block; }

/* Pod identity colors set at the pane level */
#origin-pane    { --pod: var(--brand);       --pod-soft: var(--brand-soft); }
#orion-pane     { --pod: var(--risk);        --pod-soft: #efe9f6; }
#reporting-pane { --pod: var(--opportunity); --pod-soft: #e6f4ea; }
#icp-pane       { --pod: var(--accent);      --pod-soft: #fef3c7; }

.exec-summary {
  background: linear-gradient(180deg, var(--pod-soft, #FFF7F2) 0%, #FFFFFF 100%);
  border-left: 3px solid var(--pod, var(--brand));
  padding: 14px 18px;
  border-radius: 10px;
  margin: 4px 0 16px;
  font-size: 13.5px;
  color: var(--ink);
  line-height: 1.55;
}
.exec-summary .label {
  display: block; font-size: 10.5px; text-transform: uppercase;
  letter-spacing: 0.08em; font-weight: 800; color: var(--pod, var(--brand)); margin-bottom: 6px;
}

/* Each h3 + adjacent ul renders as a single bordered card */
.team-content h3 {
  display: flex; align-items: center; gap: 8px;
  background: var(--surface);
  border: 1px solid var(--border-soft);
  border-left: 3px solid var(--pod, var(--brand));
  border-bottom: none;
  border-radius: 10px 10px 0 0;
  padding: 14px 18px 10px;
  margin: 14px 0 0;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 800;
  color: var(--pod, var(--brand));
  box-shadow: 0 4px 14px rgba(0,0,0,0.04);
}
.team-content h3 .count {
  font-size: 10.5px; background: var(--bg); color: var(--ink-50);
  padding: 2px 8px; border-radius: 999px; font-weight: 700; letter-spacing: 0;
  text-transform: none;
}
.team-content h3 + ul {
  background: var(--surface);
  border: 1px solid var(--border-soft);
  border-left: 3px solid var(--pod, var(--brand));
  border-top: none;
  border-radius: 0 0 10px 10px;
  margin: 0 0 12px;
  padding: 4px 18px 16px 38px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.04);
}

/* Blockers card adopts the eliminated red regardless of pod */
.team-content h3.blockers,
.team-content h3.blockers + ul {
  border-left-color: var(--eliminated);
}
.team-content h3.blockers { color: var(--eliminated); background: linear-gradient(180deg, #fdf2f0 0%, var(--surface) 50%); }

.team-content li { margin: 5px 0; color: #374151; font-size: 13px; }
.team-content a.jira { color: var(--brand); text-decoration: none; font-weight: 600; font-size: 12px; padding: 0 2px; }
.team-content a.jira:hover { color: #B83E0E; }
.team-content a { color: var(--brand-dark); text-decoration: none; }
.team-content a:hover { text-decoration: underline; }

/* Pulse subsections — collapsed by default */
.team-content .pulse-detail {
  margin: 14px 0 12px;
  border: 1px solid var(--border-soft);
  border-left: 3px solid var(--pod, var(--brand));
  border-radius: 10px;
  background: var(--surface);
  box-shadow: 0 4px 14px rgba(0,0,0,0.04);
  overflow: hidden;
}
.team-content .pulse-detail.blockers {
  border-left-color: var(--eliminated);
}
.team-content .pulse-detail summary {
  list-style: none;
  cursor: pointer;
  padding: 13px 18px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 800;
  color: var(--pod, var(--brand));
  display: flex;
  align-items: center;
  gap: 8px;
  user-select: none;
  transition: background 0.12s;
  position: relative;
}
.team-content .pulse-detail summary::-webkit-details-marker { display: none; }
.team-content .pulse-detail summary::before {
  content: "▸";
  display: inline-block;
  font-size: 10px;
  color: var(--ink-50);
  transition: transform 0.15s;
  width: 10px;
  text-align: center;
}
.team-content .pulse-detail[open] summary::before {
  transform: rotate(90deg);
}
.team-content .pulse-detail summary:hover {
  background: var(--bg);
}
.team-content .pulse-detail.blockers summary {
  color: var(--eliminated);
  background: linear-gradient(180deg, #fdf2f0 0%, var(--surface) 50%);
}
.team-content .pulse-detail summary .count {
  font-size: 10.5px;
  background: var(--bg);
  color: var(--ink-50);
  padding: 2px 8px;
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: none;
}
.team-content .pulse-detail-body {
  padding: 6px 18px 14px 38px;
  border-top: 1px solid var(--border-soft);
}
.team-content .pulse-detail-body ul {
  margin: 6px 0;
  padding: 0;
  list-style: none;
}
.team-content .pulse-detail-body ul li {
  margin: 5px 0;
  color: #374151;
  font-size: 13px;
  padding-left: 14px;
  position: relative;
}
.team-content .pulse-detail-body ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--pod, var(--brand));
}
.roadmap-grid { display: block; }
.roadmap-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 14px; padding: 18px 22px; font-size: 13px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
}
.roadmap-card .lbl-row {
  display: flex; justify-content: space-between; align-items: center; margin-bottom: 14px;
  padding-bottom: 10px; border-bottom: 1px solid var(--border-soft);
}
.roadmap-card .lbl { font-size: 11px; text-transform: uppercase; color: var(--brand); font-weight: 800; letter-spacing: 0.08em; }
.roadmap-card .pagecount { font-size: 10.5px; color: var(--ink-50); font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; }
.roadmap-card.pod-origin    .lbl { color: var(--brand); }
.roadmap-card.pod-orion     .lbl { color: var(--risk); }
.roadmap-card.pod-reporting .lbl { color: var(--opportunity); }
.roadmap-card.pod-icp       .lbl { color: var(--accent); }
.roadmap-card .pages {
  position: relative;
}
.roadmap-card .pages::before,
.roadmap-card .pages::after {
  content: "";
  position: absolute; top: 0; bottom: 10px; width: 32px;
  pointer-events: none; z-index: 2;
  transition: opacity 0.2s;
}
.roadmap-card .pages::before {
  left: 0;
  background: linear-gradient(90deg, var(--surface) 0%, transparent 100%);
}
.roadmap-card .pages::after {
  right: 0;
  background: linear-gradient(270deg, var(--surface) 0%, transparent 100%);
}
.roadmap-card .pages.at-start::before { opacity: 0; }
.roadmap-card .pages.at-end::after { opacity: 0; }
.roadmap-card .scroll-btn {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 32px; height: 32px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  font-size: 14px; font-weight: 700;
  color: var(--pod, var(--brand));
  box-shadow: 0 4px 12px rgba(0,0,0,0.10);
  z-index: 3;
  transition: opacity 0.15s, transform 0.1s;
}
.roadmap-card .scroll-btn:hover { transform: translateY(-50%) scale(1.08); }
.roadmap-card .scroll-btn.prev { left: -6px; }
.roadmap-card .scroll-btn.next { right: -6px; }
.roadmap-card .scroll-btn:disabled { opacity: 0.35; cursor: default; transform: translateY(-50%); }
.roadmap-card.pod-origin    .scroll-btn { color: var(--brand); }
.roadmap-card.pod-orion     .scroll-btn { color: var(--risk); }
.roadmap-card.pod-reporting .scroll-btn { color: var(--opportunity); }
.roadmap-card.pod-icp       .scroll-btn { color: var(--accent); }
.roadmap-card .swipe-hint {
  display: inline-flex; align-items: center; gap: 6px;
  margin-left: 10px;
  font-size: 10.5px; color: var(--ink-50);
  font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase;
}
.roadmap-card .swipe-hint::before {
  content: "↔";
  font-size: 14px; color: var(--ink-30);
}
.roadmap-card .page.active {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 2px 2px 10px;
  margin: 0 -2px;
  scrollbar-width: thin;
  scrollbar-color: var(--border) transparent;
}
.roadmap-card .page.active::-webkit-scrollbar { height: 8px; }
.roadmap-card .page.active::-webkit-scrollbar-track { background: transparent; }
.roadmap-card .page.active::-webkit-scrollbar-thumb { background: var(--ink-30); border-radius: 4px; }
.roadmap-card .page.active::-webkit-scrollbar-thumb:hover { background: var(--ink-50); }
.roadmap-card .item {
  flex: 0 0 240px;
  min-width: 240px;
  max-width: 240px;
  scroll-snap-align: start;
  background: var(--bg);
  border: 1px solid var(--border-soft);
  border-left: 3px solid var(--pod, var(--brand));
  border-radius: 8px;
  padding: 12px 14px;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  transition: box-shadow 0.15s, transform 0.1s, border-color 0.15s;
  position: relative;
}
a.item:hover {
  box-shadow: 0 4px 14px rgba(4, 83, 251, 0.12);
  transform: translateY(-1px);
}
a.item::after {
  content: "↗";
  position: absolute; top: 10px; right: 12px;
  font-size: 11px; color: var(--pod, var(--brand));
  opacity: 0.6;
  transition: opacity 0.15s;
}
a.item:hover::after { opacity: 1; }
.roadmap-card.pod-origin    .item { --pod: var(--brand); }
.roadmap-card.pod-orion     .item { --pod: var(--risk); }
.roadmap-card.pod-reporting .item { --pod: var(--opportunity); }
.roadmap-card.pod-icp       .item { --pod: var(--accent); }
.roadmap-card h4 { margin: 0 0 6px; font-size: 13px; font-weight: 700; color: var(--ink); line-height: 1.3; }
.roadmap-card .desc { color: var(--ink-70); font-size: 12px; line-height: 1.45; flex: 1; }
.roadmap-card .scroll-hint {
  font-size: 10.5px; color: var(--ink-50); font-weight: 600;
  letter-spacing: 0.04em; text-transform: uppercase;
  margin-top: 4px;
}

/* === Cross-pod Q2 Gantt prototype (Panda v1) === */
.gantt-prototype {
  background: linear-gradient(180deg, var(--surface) 0%, var(--bg) 100%);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 22px 26px 20px;
  margin-bottom: 28px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
}
.gq2 {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 0;
  border: 1px solid var(--border-soft);
  border-radius: 10px;
  background: var(--surface);
  overflow: hidden;
  margin-top: 16px;
}
.gq2-corner, .gq2-months {
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-50);
}
.gq2-corner {
  border-right: 1px solid var(--border-soft);
  display: flex;
  align-items: center;
  padding: 10px 14px;
}
.gq2-months {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  position: relative;
  padding: 0;
}
.gq2-month {
  padding: 10px 12px;
  border-right: 1px dashed var(--border-soft);
  color: var(--ink-50);
}
.gq2-month:last-child { border-right: none; }
.gq2-month.current { color: var(--brand); }
.gq2-month .now-tag {
  display: inline-block;
  margin-left: 6px;
  font-size: 9px;
  padding: 2px 6px;
  background: var(--brand);
  color: white;
  border-radius: 4px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 700;
}

/* Pod label column */
.gq2-pod-label {
  background: var(--bg);
  border-right: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
  padding: 16px 14px 16px 18px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.gq2-pod-label.pod-origin    { color: var(--brand);       border-left: 4px solid var(--brand); }
.gq2-pod-label.pod-orion     { color: var(--risk);        border-left: 4px solid var(--risk); }
.gq2-pod-label.pod-reporting { color: var(--opportunity); border-left: 4px solid var(--opportunity); }
.gq2-pod-label.pod-icp       { color: var(--accent);      border-left: 4px solid var(--accent); }
.gq2-pod-label .pod-sub {
  font-size: 10px;
  font-weight: 600;
  text-transform: none;
  letter-spacing: 0.02em;
  color: var(--ink-50);
  margin-top: 2px;
}

/* Track (timeline area) */
.gq2-track {
  position: relative;
  border-bottom: 1px solid var(--border-soft);
  background-image:
    linear-gradient(to right, transparent calc(33.333% - 0.5px), var(--border-soft) calc(33.333% - 0.5px), var(--border-soft) calc(33.333% + 0.5px), transparent calc(33.333% + 0.5px)),
    linear-gradient(to right, transparent calc(66.666% - 0.5px), var(--border-soft) calc(66.666% - 0.5px), var(--border-soft) calc(66.666% + 0.5px), transparent calc(66.666% + 0.5px));
  padding: 12px 0;
  min-height: 80px;
}
.gq2-track:last-of-type { border-bottom: none; }
.gq2-track::before {
  content: "";
  position: absolute;
  left: 33.333%;
  top: 0; bottom: 0;
  border-left: 2px dashed var(--brand);
  pointer-events: none;
  z-index: 1;
  opacity: 0.55;
}

/* Bar */
.gq2-bar {
  position: absolute;
  border-radius: 5px;
  padding: 3px 9px;
  font-size: 11px;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: white;
  text-decoration: none;
  box-shadow: 0 1px 3px rgba(0,0,0,0.08);
  display: flex;
  align-items: center;
  letter-spacing: 0.01em;
  z-index: 2;
  cursor: pointer;
  transition: transform 0.1s, box-shadow 0.15s, filter 0.15s;
}
a.gq2-bar:hover {
  transform: translateY(-1px);
  box-shadow: 0 3px 8px rgba(0,0,0,0.18);
  filter: brightness(1.08);
  z-index: 4;
}
a.gq2-milestone {
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.1s;
}
a.gq2-milestone:hover { transform: translateX(-50%) translateY(-2px); }
.gq2-bar.status-shipped  { background: var(--opportunity); }
.gq2-bar.status-inflight { background: var(--brand); }
.gq2-bar.status-planned  { background: var(--planned); color: var(--ink); }
.gq2-bar.status-at-risk  { background: var(--eliminated); }

/* Size = bar height (scope) */
.gq2-bar.size-XS,
.gq2-bar.size-S,
.gq2-bar.size-M,
.gq2-bar.size-L,
.gq2-bar.size-XL { border-bottom: 3px solid transparent; padding-bottom: 0; }
.gq2-bar.size-XS { height: 16px; padding: 1px 7px;  font-size: 10px;   border-bottom-color: var(--size-xs); }
.gq2-bar.size-S  { height: 20px; padding: 2px 8px;  font-size: 10.5px; border-bottom-color: var(--size-s); }
.gq2-bar.size-M  { height: 24px; padding: 3px 9px;  font-size: 11px;   border-bottom-color: var(--size-m); }
.gq2-bar.size-L  { height: 28px; padding: 4px 10px; font-size: 11.5px; font-weight: 700; border-bottom-color: var(--size-l); }
.gq2-bar.size-XL { height: 34px; padding: 6px 12px; font-size: 12px;   font-weight: 800; border-bottom-color: var(--size-xl); }

/* Overflow right (continues past Q2) */
.gq2-bar.overflow-right {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  padding-right: 18px;
}
.gq2-bar.overflow-right::after {
  content: "→";
  position: absolute;
  right: 5px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 13px;
  opacity: 0.85;
  font-weight: 800;
}

/* Milestones (Orion launches) */
.gq2-milestone {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  transform: translateX(-50%);
  z-index: 3;
}
.gq2-milestone .diamond {
  width: 14px; height: 14px;
  background: var(--risk);
  transform: rotate(45deg);
  border: 2px solid white;
  box-shadow: 0 2px 4px rgba(0,0,0,0.15);
}
.gq2-milestone .ms-label {
  margin-top: 8px;
  font-size: 9.5px;
  font-weight: 800;
  color: var(--risk);
  white-space: nowrap;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

/* ICP row — different format */
.gq2-pod-label.pod-icp { background: linear-gradient(180deg, rgba(217, 119, 6, 0.04) 0%, var(--bg) 100%); }
/* Compact ICP track in the cross-pod prototype Gantt — replaces overlapping cadence dots */
.icp-track-summary {
  background: rgba(217, 119, 6, 0.04);
  border: 1px solid rgba(217, 119, 6, 0.2);
  border-radius: 8px;
  padding: 12px 14px;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 14px;
  align-items: start;
}
.icp-track-counts { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.icp-count {
  background: var(--surface); border: 1px solid var(--border); border-radius: 6px;
  padding: 8px 10px; border-left: 3px solid var(--accent);
}
.icp-count.scheduled { border-left-style: dashed; opacity: 0.95; }
.icp-count .num { font-size: 22px; font-weight: 800; color: var(--accent); line-height: 1; }
.icp-count .lbl { font-size: 11px; font-weight: 700; color: var(--ink); text-transform: uppercase; letter-spacing: 0.3px; margin-top: 2px; }
.icp-count .sub { font-size: 10.5px; color: var(--ink-50); margin-top: 4px; line-height: 1.35; }

.icp-track-themes { font-size: 12.5px; color: var(--ink); line-height: 1.5; }
.icp-track-themes strong { color: var(--accent); }
.icp-track-themes .theme-pill {
  display: inline-block; margin: 4px 6px 0 0; padding: 2px 8px;
  background: rgba(217, 119, 6, 0.08); color: var(--accent);
  border-radius: 10px; font-size: 11px; font-weight: 600;
}
.icp-track-themes .theme-pill.watch { background: var(--ink-10); color: var(--ink-50); }
.icp-track-themes .theme-decision {
  display: inline-block; margin-top: 6px; padding: 3px 9px;
  background: var(--accent); color: white; font-size: 11px; font-weight: 700; border-radius: 4px;
}

.icp-track-link {
  grid-column: 1 / -1;
  font-size: 11.5px; color: var(--ink-50); padding-top: 8px;
  border-top: 1px dashed rgba(217, 119, 6, 0.25);
}
.icp-track-link strong { color: var(--accent); }
@media (max-width: 720px) {
  .icp-track-summary { grid-template-columns: 1fr; }
  .icp-track-counts { grid-template-columns: 1fr; }
}

/* Legend */
.gantt-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 14px;
  padding: 10px 14px;
  background: var(--bg);
  border-radius: 8px;
  font-size: 11px;
  color: var(--ink-70);
  align-items: center;
}
.gantt-legend .leg-group {
  display: flex;
  align-items: center;
  gap: 6px;
}
.gantt-legend .leg-label {
  font-weight: 800;
  color: var(--ink);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 9.5px;
  margin-right: 4px;
}
.gantt-legend .leg-swatch {
  width: 14px; height: 12px;
  border-radius: 3px;
}
.gantt-legend .leg-swatch.shipped  { background: var(--opportunity); }
.gantt-legend .leg-swatch.inflight { background: var(--brand); }
.gantt-legend .leg-swatch.planned  { background: var(--planned); }
.gantt-legend .leg-size-bar {
  display: inline-block;
  background: var(--ink-30);
  border-radius: 2px;
  width: 18px;
  height: 14px;
  margin-right: 3px;
  vertical-align: middle;
  border-bottom: 3px solid transparent;
}
.gantt-legend .leg-size-bar.size-XS { border-bottom-color: var(--size-xs); }
.gantt-legend .leg-size-bar.size-S  { border-bottom-color: var(--size-s); }
.gantt-legend .leg-size-bar.size-M  { border-bottom-color: var(--size-m); }
.gantt-legend .leg-size-bar.size-L  { border-bottom-color: var(--size-l); }
.gantt-legend .leg-size-bar.size-XL { border-bottom-color: var(--size-xl); }
.gantt-legend .leg-now-line {
  display: inline-block;
  width: 0;
  height: 18px;
  border-left: 2px dashed var(--brand);
  margin: 0 6px;
  vertical-align: middle;
}

/* === Per-pod year Gantt === */
.gantt-year-section {
  background: linear-gradient(180deg, var(--surface) 0%, var(--bg) 100%);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 20px 24px;
  margin-bottom: 28px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
}
.gantt-year-section.pod-origin    { border-top: 3px solid var(--brand); }
.gantt-year-section.pod-orion     { border-top: 3px solid var(--risk); }
.gantt-year-section.pod-reporting { border-top: 3px solid var(--opportunity); }
.gantt-year-section h2 .pill.year-pill {
  background: var(--bg);
  color: var(--ink-50);
  border-color: var(--border);
  font-size: 11px;
}
.gantt-year-section.pod-origin    h2 .pill.year-pill { color: var(--brand); border-color: #b9ccff; background: var(--brand-soft); }
.gantt-year-section.pod-orion     h2 .pill.year-pill { color: var(--risk); border-color: #d6c5e8; background: #f3eef8; }
.gantt-year-section.pod-reporting h2 .pill.year-pill { color: var(--opportunity); border-color: #b8d8c4; background: #e7f4ec; }

.gy {
  display: grid;
  grid-template-columns: 70px 1fr 4fr;
  gap: 0;
  border: 1px solid var(--border-soft);
  border-radius: 10px;
  background: var(--surface);
  margin-top: 14px;
  overflow: hidden;
}
.gy-corner-size, .gy-corner-title, .gy-quarters {
  background: var(--bg);
  padding: 10px 12px;
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-50);
  border-bottom: 1px solid var(--border);
}
.gy-quarters {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  padding: 0;
  position: relative;
}
.gy-quarter {
  padding: 10px 14px;
  border-right: 1px dashed var(--border-soft);
  color: var(--ink-50);
}
.gy-quarter:last-child { border-right: none; }
.gy-quarter.past { color: var(--ink-30); }
.gy-quarter.current {
  color: var(--brand);
  background: rgba(4, 83, 251, 0.04);
}
.gy-quarter .now-tag {
  display: inline-block; margin-left: 6px;
  font-size: 9px; padding: 2px 6px;
  background: var(--brand); color: white;
  border-radius: 4px; letter-spacing: 0.04em;
  text-transform: uppercase; font-weight: 700;
}

.gy-row {
  display: contents;
}
.gy-cell-size, .gy-cell-title, .gy-cell-track {
  border-bottom: 1px solid var(--border-soft);
  padding: 10px 12px;
  font-size: 12px;
  display: flex;
  align-items: center;
}
.gy-row:last-of-type .gy-cell-size,
.gy-row:last-of-type .gy-cell-title,
.gy-row:last-of-type .gy-cell-track { border-bottom: none; }

.gy-cell-size { background: var(--bg); justify-content: center; padding: 10px 8px; }
.gy-cell-size .size-badge {
  display: inline-block;
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 0.06em;
  padding: 3px 9px;
  border-radius: 4px;
  background: white;
  border: 1px solid var(--border);
  color: var(--ink-70);
  min-width: 28px;
  text-align: center;
}
.gy-cell-size .size-badge.size-XS { background: #f9f5ec; color: #8a6d3b; border-color: #e6d8b3; }
.gy-cell-size .size-badge.size-S  { background: var(--brand-soft); color: var(--brand-dark); border-color: #b9ccff; }
.gy-cell-size .size-badge.size-M  { background: #e7f4ec; color: var(--opportunity); border-color: #b8d8c4; }
.gy-cell-size .size-badge.size-L  { background: #fff7e0; color: var(--shifted); border-color: #f1d68b; }
.gy-cell-size .size-badge.size-XL { background: #f3eef8; color: var(--risk); border-color: #d6c5e8; }

.gy-cell-title {
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.005em;
}
.gy-cell-title a { color: var(--ink); text-decoration: none; }
.gy-cell-title a:hover { color: var(--brand); text-decoration: underline; }
.gy-cell-title .item-meta {
  display: block;
  font-size: 10px;
  color: var(--ink-50);
  font-weight: 500;
  margin-top: 1px;
  letter-spacing: 0.01em;
}

.gy-cell-track {
  position: relative;
  padding: 10px 0;
  background-image:
    linear-gradient(to right, transparent calc(25% - 0.5px), var(--border-soft) calc(25% - 0.5px), var(--border-soft) calc(25% + 0.5px), transparent calc(25% + 0.5px)),
    linear-gradient(to right, transparent calc(50% - 0.5px), var(--border-soft) calc(50% - 0.5px), var(--border-soft) calc(50% + 0.5px), transparent calc(50% + 0.5px)),
    linear-gradient(to right, transparent calc(75% - 0.5px), var(--border-soft) calc(75% - 0.5px), var(--border-soft) calc(75% + 0.5px), transparent calc(75% + 0.5px));
}
.gy-bar {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  height: 22px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  padding: 0 8px;
  font-size: 10px;
  font-weight: 600;
  color: white;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  text-decoration: none;
  letter-spacing: 0.01em;
  box-shadow: 0 1px 3px rgba(0,0,0,0.08);
  cursor: pointer;
  z-index: 2;
  transition: transform 0.1s, box-shadow 0.15s, filter 0.15s;
}
a.gy-bar:hover {
  transform: translateY(-50%) translateY(-1px);
  box-shadow: 0 3px 8px rgba(0,0,0,0.18);
  filter: brightness(1.08);
  z-index: 4;
}
.gy-bar.status-shipped  { background: var(--opportunity); }
.gy-bar.status-inflight { background: var(--brand); }
.gy-bar.status-planned  { background: var(--planned); color: var(--ink); }
.gy-bar.status-at-risk  { background: var(--eliminated); }
/* Equal-height bars; size indicated by colored bottom border (size column on left has the badge) */
.gy-bar.size-XS,
.gy-bar.size-S,
.gy-bar.size-M,
.gy-bar.size-L,
.gy-bar.size-XL { height: 22px; font-size: 10px; border-bottom: 3px solid transparent; padding-bottom: 0; }
.gy-bar.size-XS { border-bottom-color: var(--size-xs); }
.gy-bar.size-S  { border-bottom-color: var(--size-s); }
.gy-bar.size-M  { border-bottom-color: var(--size-m); }
.gy-bar.size-L  { border-bottom-color: var(--size-l); }
.gy-bar.size-XL { border-bottom-color: var(--size-xl); }

/* Milestone (point in time) inside year track */
.gy-milestone {
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 3;
  text-decoration: none;
}
.gy-milestone .gy-diamond {
  width: 12px; height: 12px;
  background: var(--risk);
  transform: rotate(45deg);
  border: 2px solid white;
  box-shadow: 0 2px 4px rgba(0,0,0,0.15);
}
.gy-milestone .gy-ms-label {
  margin-top: 5px;
  font-size: 9px;
  font-weight: 800;
  color: var(--risk);
  white-space: nowrap;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  background: white;
  padding: 1px 4px;
  border-radius: 2px;
}

/* "Now" line on year Gantt — vertical dashed line at current quarter boundary */
.gy-now-line {
  position: absolute;
  top: 0; bottom: 0;
  width: 0;
  border-left: 2px dashed var(--brand);
  pointer-events: none;
  z-index: 1;
  opacity: 0.5;
}
.gy-cell-track .gy-now-line { top: -1000px; bottom: -1000px; }

/* === ICP dedicated layout === */
.icp-layout-section {
  background: linear-gradient(180deg, rgba(217, 119, 6, 0.04) 0%, var(--surface) 80%);
  border: 1px solid rgba(217, 119, 6, 0.25);
  border-top: 3px solid var(--accent);
  border-radius: 14px;
  padding: 20px 24px;
  margin-bottom: 28px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
}
.icp-layout-section h2 .icp-source-link {
  font-size: 11.5px;
  font-weight: 600;
  color: var(--ink-50);
  text-decoration: none;
  margin-left: 8px;
  padding: 2px 8px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--bg);
  vertical-align: middle;
}
.icp-layout-section h2 .icp-source-link:hover { color: var(--brand); border-color: var(--brand); }
.icp-layout-section h2 .pill.icp-pill {
  background: var(--accent); color: white; border-color: var(--accent);
}
.icp-block {
  margin-top: 20px;
}
.icp-block-label {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
}

/* Interview cadence timeline (12 months) */
.icp-cadence {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border-soft);
  border-radius: 10px;
  padding: 38px 16px 24px;
  min-height: 80px;
}
.icp-cadence-axis {
  position: absolute;
  left: 16px; right: 16px; top: 50%;
  height: 1px;
  background: rgba(217, 119, 6, 0.3);
  z-index: 1;
}
.icp-cadence-month {
  position: absolute;
  top: 6px;
  font-size: 9.5px;
  font-weight: 700;
  color: var(--ink-50);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transform: translateX(-50%);
}
.icp-cadence-month.current { color: var(--accent); }
.icp-cadence-dot {
  position: absolute;
  top: calc(50% - 6px);
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 2;
  text-decoration: none;
}
.icp-cadence-dot .dot {
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--accent);
  border: 2px solid white;
  box-shadow: 0 1px 3px rgba(0,0,0,0.12);
}
.icp-cadence-dot.scheduled .dot {
  background: white;
  border: 2px solid var(--accent);
}
.icp-cadence-dot .icp-cadence-label {
  position: absolute;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 9.5px;
  font-weight: 700;
  color: var(--accent);
  white-space: nowrap;
  letter-spacing: 0.01em;
}
.icp-cadence-dot.staggered .icp-cadence-label { top: 30px; }

/* Theme cards */
.icp-themes {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 12px;
}
.icp-theme {
  background: var(--surface);
  border: 1px solid var(--border-soft);
  border-left: 3px solid var(--accent);
  border-radius: 8px;
  padding: 12px 14px;
}
.icp-theme h4 {
  margin: 0 0 4px;
  font-size: 13px;
  font-weight: 800;
  color: var(--ink);
}
.icp-theme .theme-meta {
  font-size: 10.5px;
  color: var(--ink-50);
  letter-spacing: 0.02em;
  margin-bottom: 8px;
}
.icp-theme .conf-bar {
  display: flex;
  gap: 3px;
  margin: 6px 0 4px;
}
.icp-theme .conf-seg {
  flex: 1;
  height: 6px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 2px;
}
.icp-theme .conf-seg.filled { background: var(--accent); border-color: var(--accent); }
.icp-theme .conf-label {
  font-size: 10px;
  color: var(--ink-50);
  letter-spacing: 0.02em;
  font-weight: 600;
}
.icp-theme .theme-customers {
  margin-top: 8px;
  font-size: 11px;
  color: var(--ink-70);
  line-height: 1.5;
}
.icp-theme .theme-customers strong {
  color: var(--accent);
}

/* Decisions pending */
.icp-decisions {
  background: var(--surface);
  border: 1px solid var(--border-soft);
  border-radius: 10px;
  padding: 14px 16px;
}
.icp-decision {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 12px;
  align-items: start;
  padding: 8px 0;
  border-bottom: 1px solid var(--border-soft);
  font-size: 12.5px;
}
.icp-decision:last-child { border-bottom: none; }
.icp-urgency {
  display: inline-block;
  font-size: 9.5px;
  font-weight: 800;
  letter-spacing: 0.06em;
  padding: 3px 8px;
  border-radius: 4px;
  text-transform: uppercase;
  white-space: nowrap;
}
.icp-urgency.q3 { background: #fdecea; color: var(--eliminated); border: 1px solid #f5b8b0; }
.icp-urgency.watch { background: #fff7e0; color: var(--shifted); border: 1px solid #f1d68b; }
.icp-urgency.hold { background: #f3f0e6; color: var(--ink-50); border: 1px solid var(--border); }
.icp-decision-text { color: var(--ink-70); line-height: 1.5; }
.icp-decision-text strong { color: var(--ink); }

/* === Filter visibility for roadmap views === */
/* Cross-pod Q2 Gantt: visible only in cross-pod */
body.filter-cross .section.gantt-prototype { display: block !important; }
body:not(.filter-cross) .section.gantt-prototype { display: none !important; }

/* Per-pod year Gantts: visible only in matching pod filter (handled by .filterable rules above) */
/* ICP layout: visible only in icp filter (handled by .filterable.pod-icp + body.filter-icp) */

/* Hide the legacy roadmap-grid section when in any pod-specific filter (replaced by year Gantts and ICP layout) */
body.filter-origin    #sec-roadmap,
body.filter-orion     #sec-roadmap,
body.filter-reporting #sec-roadmap,
body.filter-icp       #sec-roadmap { display: none !important; }

/* === Pod Capacity & Bandwidth === */
.capacity-section {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 20px 22px 22px;
  margin-bottom: 28px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
}
.capacity-summary {
  background: var(--bg);
  border-radius: 8px;
  padding: 14px 16px;
  margin: 14px 0 18px;
  font-size: 13px;
  line-height: 1.55;
  color: var(--ink);
  border-left: 4px solid var(--brand);
}
.capacity-summary strong { color: var(--brand-dark); }
.capacity-summary .meta {
  display: block;
  margin-top: 8px;
  font-size: 11px;
  color: var(--ink-50);
  letter-spacing: 0.02em;
}
.capacity-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
  gap: 16px;
}
.cap-card {
  background: #fff;
  border: 1px solid var(--border-soft);
  border-radius: 10px;
  padding: 16px 18px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.cap-card.pod-origin    { border-left: 4px solid var(--brand); }
.cap-card.pod-orion     { border-left: 4px solid var(--risk); }
.cap-card.pod-reporting { border-left: 4px solid var(--opportunity); }
.cap-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 12px;
  gap: 10px;
}
.cap-pod {
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.cap-card.pod-origin    .cap-pod { color: var(--brand); }
.cap-card.pod-orion     .cap-pod { color: var(--risk); }
.cap-card.pod-reporting .cap-pod { color: var(--opportunity); }
.cap-pod .pod-sub {
  display: block;
  font-size: 10px;
  font-weight: 600;
  color: var(--ink-50);
  text-transform: none;
  letter-spacing: 0.02em;
  margin-top: 1px;
}
.cap-verdict {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 4px 9px;
  border-radius: 4px;
  white-space: nowrap;
}
.cap-verdict.v-substantial { background: #e7f4ec; color: var(--opportunity); border: 1px solid #b8d8c4; }
.cap-verdict.v-modest      { background: #ecf2ff; color: var(--brand-dark); border: 1px solid #b9ccff; }
.cap-verdict.v-tight       { background: #fff7e0; color: var(--shifted); border: 1px solid #f1d68b; }
.cap-verdict.v-overcommit  { background: #fdecea; color: var(--eliminated); border: 1px solid #f5b8b0; }

.cap-section-label {
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--ink-50);
  margin: 14px 0 6px;
}

/* Sparkline (last-12mo throughput) */
.cap-spark {
  display: flex;
  align-items: flex-end;
  gap: 3px;
  height: 48px;
  margin-bottom: 4px;
}
.cap-spark-bar {
  flex: 1;
  min-width: 12px;
  background: var(--ink-30);
  border-radius: 2px 2px 0 0;
  position: relative;
  transition: opacity 0.15s;
}
.cap-card.pod-origin    .cap-spark-bar { background: var(--brand); }
.cap-card.pod-orion     .cap-spark-bar { background: var(--risk); }
.cap-card.pod-reporting .cap-spark-bar { background: var(--opportunity); }
.cap-spark-bar.excluded {
  background: var(--ink-30) !important;
  opacity: 0.5;
}
.cap-spark-bar.excluded::after {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: repeating-linear-gradient(
    45deg,
    transparent 0 4px,
    rgba(255,255,255,0.4) 4px 8px
  );
}
.cap-spark-axis {
  display: flex;
  justify-content: space-between;
  font-size: 9px;
  color: var(--ink-50);
  letter-spacing: 0.02em;
  margin-top: 2px;
}

/* Capacity vs Demand bars */
.cap-bar-row {
  display: grid;
  grid-template-columns: 70px 1fr 60px;
  gap: 8px;
  align-items: center;
  margin-bottom: 6px;
  font-size: 11px;
}
.cap-bar-label {
  font-weight: 700;
  color: var(--ink-70);
  font-size: 11px;
}
.cap-bar-value {
  text-align: right;
  font-weight: 800;
  color: var(--ink);
  font-size: 12px;
  font-family: var(--font-mono, monospace);
}
.cap-bar-track {
  position: relative;
  height: 22px;
  background: var(--bg);
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid var(--border-soft);
}
/* Capacity bar with P5-P95 range and P50 marker */
.cap-bar-cap-range {
  position: absolute;
  top: 0; bottom: 0;
  background: linear-gradient(90deg,
    rgba(46, 122, 77, 0.15) 0%,
    rgba(46, 122, 77, 0.4) 50%,
    rgba(46, 122, 77, 0.15) 100%);
  border-left: 1px solid var(--opportunity);
  border-right: 1px solid var(--opportunity);
}
.cap-bar-p50-marker {
  position: absolute;
  top: -2px; bottom: -2px;
  width: 3px;
  background: var(--opportunity);
  border-radius: 1px;
}
/* Demand bar — stacked roadmap + KTLO */
.cap-bar-demand-roadmap {
  position: absolute;
  top: 0; bottom: 0;
  left: 0;
  background: var(--brand);
}
.cap-bar-demand-ktlo {
  position: absolute;
  top: 0; bottom: 0;
  background: var(--ink-50);
  background: repeating-linear-gradient(
    45deg,
    var(--ink-50) 0 4px,
    var(--ink-70) 4px 8px
  );
}
.cap-bar-demand-line {
  position: absolute;
  top: -2px; bottom: -2px;
  width: 2px;
  background: var(--eliminated);
}

.cap-bar-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 9.5px;
  color: var(--ink-50);
  margin-top: 2px;
  letter-spacing: 0.02em;
}
.cap-bar-legend .swatch {
  display: inline-block;
  width: 10px; height: 10px;
  border-radius: 2px;
  margin-right: 3px;
  vertical-align: middle;
}
.cap-bar-legend .swatch.cap-range { background: rgba(46, 122, 77, 0.4); border: 1px solid var(--opportunity); }
.cap-bar-legend .swatch.roadmap   { background: var(--brand); }
.cap-bar-legend .swatch.ktlo      { background: repeating-linear-gradient(45deg, var(--ink-50) 0 3px, var(--ink-70) 3px 6px); }

.cap-stat-row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px dashed var(--border);
  font-size: 11px;
}
.cap-stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.cap-stat .stat-label {
  font-size: 9.5px;
  color: var(--ink-50);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 700;
}
.cap-stat .stat-value {
  font-size: 18px;
  font-weight: 800;
  color: var(--ink);
  font-family: var(--font-mono, monospace);
}
.cap-stat .stat-value.bw-positive { color: var(--opportunity); }
.cap-stat .stat-value.bw-tight    { color: var(--shifted); }
.cap-stat .stat-value.bw-negative { color: var(--eliminated); }
.cap-stat .stat-sub {
  font-size: 10px;
  color: var(--ink-50);
}

.cap-roadmap-detail {
  margin-top: 12px;
  padding-top: 10px;
  border-top: 1px dashed var(--border);
  font-size: 11px;
}
.cap-roadmap-detail summary {
  cursor: pointer;
  color: var(--ink-50);
  font-weight: 700;
  letter-spacing: 0.03em;
  font-size: 10px;
  text-transform: uppercase;
}
.cap-roadmap-detail ul { margin: 6px 0 0; padding: 0 0 0 16px; }
.cap-roadmap-detail li { margin: 2px 0; color: var(--ink-70); }
.cap-roadmap-detail .size-pill {
  display: inline-block;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 3px;
  font-size: 9.5px;
  font-weight: 700;
  padding: 0 5px;
  margin: 0 4px;
  letter-spacing: 0.04em;
}

.cap-card-meta {
  font-size: 10px;
  color: var(--ink-50);
  margin-top: 10px;
  font-style: italic;
}

/* === WIP banner === */
.wip-pill {
  display: inline-block;
  background: var(--accent);
  color: white;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  padding: 3px 8px;
  border-radius: 4px;
  text-transform: uppercase;
  margin-left: 6px;
  vertical-align: middle;
  border: 1px solid var(--accent);
  position: relative;
}
.wip-pill::before {
  content: "🚧";
  font-size: 11px;
  margin-right: 4px;
}
.wip-banner {
  display: flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(90deg, rgba(217, 119, 6, 0.10) 0%, rgba(217, 119, 6, 0.02) 100%);
  border: 1px dashed var(--accent);
  border-radius: 8px;
  padding: 10px 14px;
  margin: 14px 0 16px;
  font-size: 11.5px;
  color: var(--ink-70);
  line-height: 1.5;
}
.wip-banner .wip-tag {
  flex-shrink: 0;
  background: var(--accent);
  color: white;
  font-size: 9.5px;
  font-weight: 800;
  letter-spacing: 0.08em;
  padding: 3px 7px;
  border-radius: 4px;
  text-transform: uppercase;
}
.wip-banner strong { color: var(--accent); font-weight: 800; }
.cap-card.wip { position: relative; }
.cap-card.wip::after {
  content: "WIP";
  position: absolute;
  top: 12px;
  right: 12px;
  font-size: 8.5px;
  font-weight: 800;
  letter-spacing: 0.1em;
  background: rgba(217, 119, 6, 0.12);
  color: var(--accent);
  padding: 2px 6px;
  border-radius: 3px;
  border: 1px solid rgba(217, 119, 6, 0.3);
  pointer-events: none;
}
.capacity-section.wip {
  background: linear-gradient(180deg, rgba(217, 119, 6, 0.025) 0%, var(--surface) 80%);
  border: 1px solid rgba(217, 119, 6, 0.25);
  border-top: 3px solid var(--accent);
}

/* === Methodology tooltip === */
.method-info {
  position: relative;
  display: inline-block;
  margin-left: 8px;
  vertical-align: middle;
}
.method-trigger {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 4px 10px 4px 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: help;
  color: var(--ink-50);
  font-family: inherit;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.method-trigger::before {
  content: "ⓘ";
  font-size: 13px;
  font-weight: 400;
  text-transform: none;
}
.method-trigger:hover,
.method-trigger:focus {
  background: var(--brand);
  color: white;
  border-color: var(--brand);
  outline: none;
}
.method-tooltip {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  width: 460px;
  max-width: calc(100vw - 40px);
  background: var(--ink);
  color: #f3f0e6;
  border-radius: 10px;
  padding: 16px 18px;
  font-size: 11.5px;
  line-height: 1.55;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px);
  transition: opacity 0.18s ease-out, transform 0.18s ease-out;
  z-index: 200;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.22);
  text-transform: none;
  letter-spacing: 0.01em;
  font-weight: 400;
}
.method-tooltip::before {
  content: "";
  position: absolute;
  top: -7px;
  left: 22px;
  width: 14px;
  height: 14px;
  background: var(--ink);
  transform: rotate(45deg);
  border-radius: 2px;
}
.method-info:hover .method-tooltip,
.method-info:focus-within .method-tooltip {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.method-tooltip h4 {
  margin: 0 0 8px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #f9c97a;
}
.method-tooltip h4:not(:first-child) {
  margin-top: 12px;
  padding-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}
.method-tooltip p {
  margin: 0 0 6px;
  color: #e8e4d6;
}
.method-tooltip ul {
  margin: 0;
  padding-left: 16px;
}
.method-tooltip li {
  margin: 3px 0;
  color: #d8d4c6;
}
.method-tooltip code {
  background: rgba(255, 255, 255, 0.08);
  padding: 1px 5px;
  border-radius: 3px;
  font-size: 10.5px;
  color: #ffd699;
}
.method-tooltip a {
  color: #9bb8ff;
  text-decoration: underline;
  text-decoration-color: rgba(155, 184, 255, 0.4);
}
.method-tooltip a:hover { color: #c5d4ff; }
.method-tooltip strong { color: #fff; font-weight: 700; }

/* Mobile / narrow: anchor right-edge so it doesn't overflow */
@media (max-width: 600px) {
  .method-tooltip { left: auto; right: 0; }
  .method-tooltip::before { left: auto; right: 22px; }
}

.coi-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 8px; }
.coi-table-wrap { overflow-x: auto; margin-top: 6px; }
.coi-table { width: 100%; border-collapse: collapse; font-size: 13px; }
.coi-table thead th { text-align: left; font-weight: 700; color: var(--ink-50); font-size: 11px; text-transform: uppercase; letter-spacing: 0.4px; padding: 6px 10px; border-bottom: 2px solid var(--ink-10); background: var(--bg); }
.coi-table tbody tr { border-bottom: 1px solid var(--ink-10); transition: background 0.1s; }
.coi-table tbody tr:hover { background: rgba(255, 107, 53, 0.04); }
.coi-table td { padding: 7px 10px; vertical-align: top; }
.coi-table td.cust { font-weight: 700; color: var(--ink); white-space: nowrap; }
.coi-table td.cust a { color: var(--ink); text-decoration: none; }
.coi-table td.cust a:hover { color: var(--brand); }
.coi-table td.cust .link-arrow { color: var(--brand); font-weight: 400; opacity: 0.6; }
.coi-table td.sev-cell { width: 1%; white-space: nowrap; }
.coi-table td.pods { white-space: nowrap; }
.coi-table td.ctx { color: var(--ink-50); font-size: 12.5px; line-height: 1.5; }
.pod-tag { display: inline-block; font-size: 9.5px; font-weight: 700; padding: 1px 6px; border-radius: 8px; margin-right: 3px; text-transform: uppercase; letter-spacing: 0.3px; }
.pod-tag.pod-origin    { background: rgba(255, 107, 53, 0.12); color: var(--brand); }
.pod-tag.pod-orion     { background: rgba(108, 92, 231, 0.12); color: var(--risk); }
.pod-tag.pod-reporting { background: rgba(34, 139, 87, 0.12); color: var(--opportunity); }
.pod-tag.pod-icp       { background: rgba(217, 119, 6, 0.12); color: var(--accent); }

/* When a pod filter is active, hide non-matching pod chips inside the COI table */
body.filter-origin    .coi-table .pod-tag:not(.pod-origin),
body.filter-orion     .coi-table .pod-tag:not(.pod-orion),
body.filter-reporting .coi-table .pod-tag:not(.pod-reporting),
body.filter-icp       .coi-table .pod-tag:not(.pod-icp) { display: none; }
.coi-chip {
  background: #fff; border: 1px solid var(--border); border-radius: 6px;
  padding: 9px 11px; font-size: 12.5px; text-decoration: none; color: inherit;
  display: block; transition: border-color 0.15s, box-shadow 0.15s;
}
.coi-chip:hover { border-color: var(--brand); box-shadow: 0 1px 6px rgba(255,107,53,0.12); }
.coi-chip .top {
  display: flex; justify-content: space-between; align-items: center; gap: 6px; margin-bottom: 3px;
}
.coi-chip .name { font-weight: 700; color: var(--ink); }
.coi-chip .ctx { color: var(--ink-50); font-size: 11.5px; }
.sev {
  font-size: 10px; font-weight: 800; letter-spacing: 0.04em;
  padding: 2px 7px; border-radius: 4px; text-transform: uppercase;
  white-space: nowrap;
}
.sev-p0 { background: #fdecea; color: var(--eliminated); border: 1px solid #f5b8b0; }
.sev-p1 { background: #fff7e0; color: var(--shifted); border: 1px solid #f1d68b; }
.sev-p2 { background: var(--brand-soft); color: var(--brand-dark); border: 1px solid #b9ccff; }
.sev-p3 { background: #f3f0e6; color: var(--ink-50); border: 1px solid var(--border); }
.sev-legend { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 14px; font-size: 11.5px; align-items: center; }
.sev-legend span.lbl { color: var(--ink-50); margin-right: 4px; font-weight: 600; }

.archive-item {
  border: 1px solid var(--border); border-radius: 8px;
  margin-bottom: 8px; overflow: hidden; background: #fff;
}
.archive-header {
  padding: 10px 14px; cursor: pointer; display: flex;
  justify-content: space-between; align-items: center; font-size: 13px; user-select: none;
}
.archive-header:hover { background: var(--bg); }
.archive-header .chev { transition: transform 0.15s; color: #9ca3af; font-size: 12px; }
.archive-item.open .chev { transform: rotate(90deg); }
.archive-body { display: none; padding: 0 14px 14px; border-top: 1px solid var(--border); }
.archive-item.open .archive-body { display: block; }
.archive-body p { font-size: 12.5px; color: #374151; margin: 8px 0; }
.archive-body a { color: var(--brand); text-decoration: none; font-weight: 600; font-size: 12px; }
.archive-body a:hover { text-decoration: underline; }
/* Cross-pod momentum summary (top of page, above pod filter) */
.momentum {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 22px 28px;
  margin-bottom: 18px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
  position: relative;
  overflow: hidden;
}
.momentum::before {
  content: "";
  position: absolute; left: 0; top: 0; bottom: 0; width: 4px;
  background: linear-gradient(180deg, var(--brand) 0%, var(--risk) 50%, var(--opportunity) 100%);
}
.momentum .label {
  display: block; font-size: 10.5px; text-transform: uppercase;
  letter-spacing: 0.08em; font-weight: 800; color: var(--brand);
  margin-bottom: 8px;
}
.momentum .week {
  font-weight: 800; color: var(--ink); font-size: 15px;
  margin-bottom: 4px;
}
.momentum p { margin: 6px 0 0; font-size: 14px; line-height: 1.55; color: var(--ink); }
.momentum p + p { margin-top: 12px; padding-top: 12px; border-top: 1px dashed var(--border-soft); }
.momentum .lead-in {
  display: inline-block; margin-right: 6px;
  font-size: 10px; font-weight: 800; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--brand-dark);
  background: var(--brand-soft); padding: 2px 8px; border-radius: 4px;
  vertical-align: 1px;
}

/* Pod filter — controls sections 1, 2, 3 */
.pod-filter {
  display: flex; align-items: center; gap: 6px;
  padding: 6px 12px; margin-bottom: 12px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  flex-wrap: wrap;
}
.pod-filter .lbl {
  font-size: 9.5px; text-transform: uppercase; letter-spacing: 0.08em;
  font-weight: 800; color: var(--ink-50); margin-right: 2px;
}
.pod-btn {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 4px 10px;
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: 999px;
  font-family: inherit;
  font-size: 12px; font-weight: 600;
  color: var(--ink-50);
  cursor: pointer;
  transition: all 0.15s;
}
.pod-btn:hover {
  border-color: var(--pod);
  color: var(--pod);
}
.pod-btn .pod-dot {
  display: inline-block; width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--pod, var(--brand));
  box-shadow: 0 0 0 2px rgba(255,255,255,0.6) inset;
}
.pod-btn .check { display: none; font-size: 11px; font-weight: 800; }
.pod-btn[data-pod="origin"]    { --pod: var(--brand); }
.pod-btn[data-pod="orion"]     { --pod: var(--risk); }
.pod-btn[data-pod="reporting"] { --pod: var(--opportunity); }
.pod-btn[data-pod="icp"]       { --pod: var(--accent); }
.pod-btn[data-pod="cross"]     { --pod: var(--ink); }
.pod-btn[data-pod="cross"] .pod-dot {
  background: conic-gradient(from 45deg,
    var(--brand) 0deg 90deg,
    var(--risk) 90deg 180deg,
    var(--opportunity) 180deg 270deg,
    var(--accent) 270deg 360deg);
  box-shadow: none;
}
.pod-btn[data-pod="cross"].active {
  background: var(--ink);
  border-color: var(--ink);
}
.pod-btn.active {
  background: var(--pod);
  border-color: var(--pod);
  color: #fff;
  box-shadow: 0 4px 14px rgba(0,0,0,0.10);
}
.pod-btn.active .pod-dot { background: #fff; box-shadow: none; }
.pod-btn.active .check { display: inline-block; }

/* Filter rules — body.filter-{pod} hides everything not matching */
body.filter-origin     .filterable:not(.pod-origin)     { display: none !important; }
body.filter-orion      .filterable:not(.pod-orion)      { display: none !important; }
body.filter-reporting  .filterable:not(.pod-reporting)  { display: none !important; }
body.filter-icp        .filterable:not(.pod-icp)        { display: none !important; }

/* Capacity section: cross-pod summary paragraph is irrelevant on pod tabs */
body.filter-origin #sec-capacity .capacity-summary,
body.filter-orion #sec-capacity .capacity-summary,
body.filter-reporting #sec-capacity .capacity-summary,
body.filter-origin #sec-capacity .wip-banner,
body.filter-orion #sec-capacity .wip-banner,
body.filter-reporting #sec-capacity .wip-banner,
body.filter-origin #sec-capacity > .kicker,
body.filter-orion #sec-capacity > .kicker,
body.filter-reporting #sec-capacity > .kicker,
body.filter-origin #sec-capacity h2 .pill,
body.filter-orion #sec-capacity h2 .pill,
body.filter-reporting #sec-capacity h2 .pill,
body.filter-origin #sec-capacity h2 .wip-pill,
body.filter-orion #sec-capacity h2 .wip-pill,
body.filter-reporting #sec-capacity h2 .wip-pill,
body.filter-origin #sec-capacity h2 .method-info,
body.filter-orion #sec-capacity h2 .method-info,
body.filter-reporting #sec-capacity h2 .method-info { display: none !important; }

/* ICP tab: hide pod-capacity entirely + replace global Customer Concerns with cohort tabs */
body.filter-icp #sec-capacity,
body.filter-icp #sec-coi { display: none !important; }

/* Pod-pulse: 2/3 exec summary + 1/3 next-up side panel */
.pulse-2col { display: grid; grid-template-columns: 2fr 1fr; gap: 18px; align-items: stretch; }
/* ICP pane: don't stretch the columns to match each other. The exec-summary on
   the left is a fixed-height narrative card; the right rail collapses to its
   natural details-block height. Keeps the section tight to its content. */
#icp-pane .pulse-2col { align-items: start; }
#icp-pane .pulse-2col-main,
#icp-pane .pulse-2col-side { align-self: start; }
.pulse-2col-side { display: flex; flex-direction: column; }
.pulse-2col-side-inner { flex: 1; display: flex; flex-direction: column; min-height: 0; }
.pulse-2col-side .pulse-release-host { flex: 1; min-height: 0; display: flex; }
.pulse-2col-side .rs-wrap { flex: 1; display: flex; flex-direction: column; min-height: 0; }
/* In pulse-2col-side, max-height is set inline by JS at render time so the
   scroller's bottom matches the main column's bottom (next-week card alignment).
   Falls back to the default 520px cap if JS hasn't run yet. */
.pulse-2col-side .rs-scroller { flex: 1; min-height: 0; }
@media (max-width: 900px) {
  .pulse-2col { grid-template-columns: 1fr; }
  .pulse-2col-side .rs-scroller { max-height: 520px; }
}
.pulse-2col-side .pulse-detail { margin-top: 0; margin-bottom: 8px; }
/* "What Shipped" h2 is implicit on pod pages — hide it */
body.filter-origin    #sec-pulse > h2,
body.filter-orion     #sec-pulse > h2,
body.filter-reporting #sec-pulse > h2,
body.filter-icp       #sec-pulse > h2 { display: none; }

/* Cross-pod release ribbon — single horizontal line of releases across the year */
.releases-ribbon {
  position: relative; height: 56px; margin: 8px 0 18px;
  background: var(--bg); border: 1px solid var(--ink-10); border-radius: 8px;
  padding: 0 12px;
}
.releases-ribbon .axis {
  position: absolute; top: 28px; left: 12px; right: 12px; height: 2px; background: var(--ink-10);
}
.releases-ribbon .qmark {
  position: absolute; top: 4px; font-size: 10px; color: var(--ink-50); font-weight: 600;
  transform: translateX(-50%);
}
.releases-ribbon .qline {
  position: absolute; top: 16px; bottom: 8px; width: 1px; background: var(--ink-10);
}
.releases-ribbon .rel-dot {
  position: absolute; top: 22px; transform: translateX(-50%);
  width: 14px; height: 14px; border-radius: 50%;
  border: 2px solid white; cursor: help;
  box-shadow: 0 0 0 1px var(--ink-10);
}
.releases-ribbon .rel-dot.shipped { background: var(--opportunity); }
.releases-ribbon .rel-dot.inflight { background: var(--brand); }
.releases-ribbon .rel-dot.planned { background: var(--ink-50); }
.releases-ribbon .rel-dot:hover { z-index: 5; transform: translateX(-50%) scale(1.4); }
.releases-ribbon .rel-label {
  position: absolute; top: 40px; transform: translateX(-50%);
  font-size: 10px; color: var(--ink-50); white-space: nowrap; pointer-events: none;
}

/* Release schedule — vertical scrollable list inside pulse 1/3 side column */
.rs-wrap { background: var(--bg); border: 1px solid var(--ink-10); border-radius: 8px; padding: 8px 10px; }
.rs-header { font-size: 11px; font-weight: 800; color: var(--ink); text-transform: uppercase; letter-spacing: 0.4px; padding: 0 0 6px; display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid var(--ink-10); margin-bottom: 6px; }
.rs-header .rs-source { font-size: 9.5px; color: var(--ink-50); font-weight: 600; letter-spacing: 0.3px; }
.rs-scroller {
  max-height: 520px;
  overflow-y: auto;
  display: flex; flex-direction: column; gap: 5px;
  padding: 18px 2px;
  scroll-behavior: smooth;
  /* Vertical fade as cards scroll off top/bottom */
  -webkit-mask-image: linear-gradient(to bottom, transparent 0, black 14px, black calc(100% - 14px), transparent 100%);
          mask-image: linear-gradient(to bottom, transparent 0, black 14px, black calc(100% - 14px), transparent 100%);
}
/* slim scrollbar */
.rs-scroller::-webkit-scrollbar { width: 6px; }
.rs-scroller::-webkit-scrollbar-thumb { background: var(--ink-10); border-radius: 3px; }
.rs-scroller::-webkit-scrollbar-thumb:hover { background: var(--ink-30); }

/* Below-pulse next-week panel */
.pulse-nextweek { margin-top: 14px; padding-top: 12px; border-top: 1px dashed var(--border-soft); }
.rs-card {
  display: block; text-decoration: none; color: inherit;
  background: var(--surface); border: 1px solid var(--border); border-radius: 8px;
  padding: 8px 12px; transition: all 0.15s; position: relative;
  border-left: 4px solid var(--ink-50);
}
.rs-card:hover { border-color: var(--brand); transform: translateX(2px); }
.rs-card.status-shipped  { border-left-color: var(--opportunity); }
.rs-card.status-inflight { border-left-color: var(--brand); }
.rs-card.status-planned  { border-left-color: var(--ink-50); }
.rs-card.upcoming {
  border: 2px solid var(--brand);
  border-left: 6px solid var(--brand);
  background: rgba(255, 107, 53, 0.04);
  padding: 12px 14px;
  box-shadow: 0 4px 14px rgba(255,107,53,0.10);
}
.rs-head { display: flex; align-items: baseline; gap: 10px; flex-wrap: wrap; }
.rs-version { font-size: 17px; font-weight: 800; color: var(--ink); letter-spacing: -0.01em; }
.rs-card.upcoming .rs-version { font-size: 22px; color: var(--brand); }
.rs-date { font-size: 12.5px; color: var(--ink-50); font-weight: 600; }
.rs-date-changed {
  display: inline-block; margin-left: 4px; font-size: 10px; font-weight: 700;
  color: #b45309; background: #fef3c7; padding: 1px 6px; border-radius: 8px; cursor: help;
}
.rs-status {
  font-size: 9.5px; font-weight: 800; padding: 2px 7px; border-radius: 8px;
  text-transform: uppercase; letter-spacing: 0.4px; margin-left: auto;
}
.rs-status.status-shipped  { background: rgba(34,139,87,0.12); color: var(--opportunity); }
.rs-status.status-inflight { background: rgba(255,107,53,0.15); color: var(--brand); }
.rs-status.status-planned  { background: var(--ink-10); color: var(--ink-50); }
.rs-sub { font-size: 11.5px; color: var(--ink-50); margin: 4px 0 0; font-weight: 600; }
.rs-highlights { margin: 8px 0 0; padding-left: 18px; font-size: 13px; line-height: 1.45; }
.rs-highlights li { margin-bottom: 2px; color: var(--ink); }

.rs-pivot {
  display: flex; align-items: center; gap: 8px; margin: 4px 0;
  font-size: 10.5px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.5px; color: var(--brand);
}
.rs-pivot::before, .rs-pivot::after { content: ''; flex: 1; height: 1px; background: var(--brand); opacity: 0.3; }

.rs-collapsed { background: var(--bg); border: 1px dashed var(--border); border-radius: 6px; padding: 4px 10px; }
.rs-collapsed > summary { cursor: pointer; font-size: 11.5px; font-weight: 700; color: var(--ink-50); padding: 4px 0; list-style: none; }
.rs-collapsed > summary::-webkit-details-marker { display: none; }
.rs-collapsed > summary::before { content: '▸ '; color: var(--ink-50); }
.rs-collapsed[open] > summary::before { content: '▾ '; }
.rs-mini-list { display: flex; flex-direction: column; gap: 2px; padding: 4px 0; }
.rs-mini { display: flex; gap: 10px; align-items: center; padding: 3px 6px; border-radius: 4px; text-decoration: none; color: inherit; font-size: 12px; }
.rs-mini:hover { background: var(--ink-10); }
.rs-mini-v { font-weight: 700; color: var(--ink); min-width: 56px; }
.rs-mini-d { color: var(--ink-50); font-size: 11px; }
.rs-mini-s {
  margin-left: auto; font-size: 9px; font-weight: 800; padding: 1px 5px; border-radius: 6px;
  text-transform: uppercase; letter-spacing: 0.4px;
}
.rs-mini-s.status-shipped  { background: rgba(34,139,87,0.12); color: var(--opportunity); }
.rs-mini-s.status-inflight { background: rgba(255,107,53,0.15); color: var(--brand); }
.rs-mini-s.status-planned  { background: var(--ink-10); color: var(--ink-50); }

/* Per-pod year-Gantt: vertical release marker lines */
.gy-release-line {
  position: absolute;
  top: -1000px; bottom: -1000px;
  width: 0;
  border-left: 1px dotted var(--accent);
  pointer-events: none;
  z-index: 0;
  opacity: 0.55;
}
.gy-release-line.shipped { border-left-color: var(--opportunity); opacity: 0.4; }
.gy-release-line.planned { border-left-color: var(--ink-50); opacity: 0.35; }
.gy-release-line .gy-rel-label {
  position: absolute; top: 1000px; left: 2px; font-size: 9px; color: inherit;
  background: var(--surface); padding: 0 2px; white-space: nowrap;
}

/* ICP cohort calendar */
.icp-cal-wrap { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 14px; margin-top: 8px; }
.icp-cal-month { background: var(--bg); border: 1px solid var(--ink-10); border-radius: 8px; padding: 10px 12px; }
.icp-cal-month h5 { margin: 0 0 6px; font-size: 12.5px; font-weight: 700; color: var(--ink); letter-spacing: 0.3px; text-transform: uppercase; }
.icp-cal-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 2px; font-size: 10.5px; }
.icp-cal-grid .dow { text-align: center; color: var(--ink-50); font-weight: 600; padding: 2px 0; font-size: 9.5px; }
.icp-cal-day { aspect-ratio: 1; display: flex; align-items: center; justify-content: center; border-radius: 4px; color: var(--ink-50); position: relative; }
.icp-cal-day.has-interview { background: var(--accent); color: white; font-weight: 700; cursor: help; }
.icp-cal-day.has-interview.scheduled { background: rgba(217, 119, 6, 0.18); color: var(--accent); border: 1px dashed var(--accent); }
.icp-cal-day.has-interview:hover .icp-cal-tip { opacity: 1; transform: translateY(0); pointer-events: auto; }
.icp-cal-tip {
  position: absolute; bottom: calc(100% + 6px); left: 50%; transform: translate(-50%, 4px);
  background: var(--ink); color: white; font-size: 11px; font-weight: 500;
  padding: 6px 9px; border-radius: 5px; white-space: nowrap;
  opacity: 0; pointer-events: none; transition: all 0.15s; z-index: 100;
}
.icp-cal-tip::after { content: ''; position: absolute; top: 100%; left: 50%; transform: translateX(-50%); border: 5px solid transparent; border-top-color: var(--ink); }
.icp-cal-legend { display: flex; gap: 14px; font-size: 11px; color: var(--ink-50); margin-top: 6px; align-items: center; }
.icp-cal-legend .swatch { display: inline-block; width: 11px; height: 11px; border-radius: 3px; margin-right: 4px; vertical-align: middle; }
.icp-cal-legend .swatch.completed { background: var(--accent); }
.icp-cal-legend .swatch.scheduled { background: rgba(217, 119, 6, 0.18); border: 1px dashed var(--accent); }

/* ICP cohort customer tabs */
/* ICP hero — 25% cohort rail / 15% summary / 60% calendar canvas (per refinement plan) */
.icp-hero {
  display: grid;
  grid-template-columns: 25% 15% 1fr;
  gap: 14px;
  margin-bottom: 18px;
  align-items: stretch;
}
@media (max-width: 980px) {
  .icp-hero { grid-template-columns: 1fr; }
}
.icp-hero > aside, .icp-hero > main {
  background: var(--bg);
  border: 1px solid var(--ink-10);
  border-radius: 10px;
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
  min-height: 0;
  min-width: 0;
}
.icp-calendar-canvas .icp-cal-wrap {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 10px;
}
.icp-calendar-canvas .icp-cal-month { padding: 8px 10px; }
.icp-calendar-canvas .icp-cal-grid { font-size: 9.5px; }
.icp-rail-head {
  font-size: 11px; font-weight: 800; color: var(--accent);
  text-transform: uppercase; letter-spacing: 0.4px;
  padding: 0 0 6px;
  border-bottom: 1px solid var(--ink-10);
  margin-bottom: 8px;
}

/* Cohort rail (left) */
.icp-rail-list { display: flex; flex-direction: column; gap: 4px; overflow-y: auto; max-height: 480px; padding: 2px; }
.icp-rail-list::-webkit-scrollbar { width: 6px; }
.icp-rail-list::-webkit-scrollbar-thumb { background: var(--ink-10); border-radius: 3px; }
.icp-rail-row {
  display: flex; flex-direction: column; gap: 2px; align-items: flex-start;
  text-align: left; cursor: pointer;
  background: var(--surface); border: 1px solid var(--ink-10);
  border-left: 3px solid transparent;
  border-radius: 6px; padding: 7px 9px;
  font-family: inherit; font-size: 12px; color: var(--ink);
  transition: all 0.12s; position: relative;
}
.icp-rail-row.status-completed { border-left-color: var(--accent); }
.icp-rail-row.status-scheduled { border-left-color: var(--accent); border-left-style: dashed; }
.icp-rail-row:hover { background: rgba(217, 119, 6, 0.05); }
.icp-rail-row.active { background: rgba(217, 119, 6, 0.10); border-color: var(--accent); }
.icp-rail-top { display: flex; align-items: center; justify-content: space-between; gap: 6px; }
.icp-rail-name { font-weight: 700; font-size: 12.5px; color: var(--ink); }
.icp-rail-meta { font-size: 10.5px; color: var(--ink-50); }
.icp-rail-snippet { font-size: 11px; color: var(--ink-70); line-height: 1.35; margin-top: 2px; }
.rail-sev {
  font-size: 9px; font-weight: 800; padding: 1px 5px; border-radius: 8px;
  text-transform: uppercase; letter-spacing: 0.3px; color: white;
}
.rail-sev.sev-p0 { background: #ef4444; }
.rail-sev.sev-p1 { background: #f97316; }
.rail-sev.sev-p2 { background: #eab308; }
.rail-sev.sev-p3 { background: #94a3b8; }
.icp-rail-status {
  font-size: 9px; font-weight: 800; padding: 1px 6px; border-radius: 8px;
  text-transform: uppercase; letter-spacing: 0.3px; margin-top: 2px;
}
.icp-rail-status.status-completed { background: rgba(217, 119, 6, 0.15); color: var(--accent); }
.icp-rail-status.status-scheduled { background: var(--ink-10); color: var(--ink-50); }

/* Summary rail (middle) */
.icp-summary-rail { font-size: 12.5px; color: var(--ink); }
.icp-summary-body p { margin: 0 0 8px; line-height: 1.5; }
.icp-summary-body strong { color: var(--accent); }
.icp-summary-decision {
  background: rgba(217, 119, 6, 0.06); border-left: 3px solid var(--accent);
  padding: 6px 10px; border-radius: 4px; margin-top: 4px !important;
}

/* Calendar canvas (right, dominant) */
.icp-calendar-canvas .icp-cal-wrap { margin-top: 4px; }

/* Hint that calendar days are clickable now */
.icp-cal-day.has-interview { cursor: pointer; }
.icp-cal-day.has-interview:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }

.icp-cohort-tabs { display: flex; flex-wrap: wrap; gap: 4px; margin-bottom: 10px; border-bottom: 2px solid var(--ink-10); }
.icp-cohort-tab {
  padding: 7px 12px; border: none; background: transparent; cursor: pointer;
  font-size: 12.5px; font-weight: 600; color: var(--ink-50);
  border-bottom: 2px solid transparent; margin-bottom: -2px; transition: color 0.1s;
}
.icp-cohort-tab:hover { color: var(--ink); }
.icp-cohort-tab.active { color: var(--accent); border-bottom-color: var(--accent); }
.icp-cohort-tab .status-pill {
  display: inline-block; margin-left: 6px; font-size: 9.5px; padding: 1px 6px;
  border-radius: 8px; font-weight: 600; vertical-align: middle;
}
.icp-cohort-tab .status-pill.completed { background: rgba(217, 119, 6, 0.15); color: var(--accent); }
.icp-cohort-tab .status-pill.scheduled { background: var(--ink-10); color: var(--ink-50); }
.icp-cohort-pane { display: none; }
.icp-cohort-pane.active { display: grid; grid-template-columns: 220px 1fr; gap: 18px; padding: 14px 16px; background: var(--bg); border: 1px solid var(--ink-10); border-left: 3px solid var(--accent); border-radius: 8px; }
@media (max-width: 720px) { .icp-cohort-pane.active { grid-template-columns: 1fr; } }

/* Customer info card (CIC) */
.cic-media { display: flex; flex-direction: column; gap: 8px; }
.cic-header { display: flex; align-items: baseline; justify-content: space-between; flex-wrap: wrap; gap: 8px; }
.cic-name { font-size: 18px; font-weight: 800; color: var(--ink); letter-spacing: -0.01em; }
.cic-status { font-size: 10px; font-weight: 800; padding: 2px 8px; border-radius: 8px; text-transform: uppercase; letter-spacing: 0.4px; }
.cic-status.status-completed { background: rgba(217,119,6,0.15); color: var(--accent); }
.cic-status.status-scheduled { background: var(--ink-10); color: var(--ink-50); }
.cic-sub { font-size: 11.5px; color: var(--ink-50); margin-top: 2px; }
.cic-headline {
  margin: 8px 0 6px; padding: 6px 10px;
  background: rgba(217,119,6,0.06); border-left: 3px solid var(--accent); border-radius: 4px;
  font-size: 13px; font-weight: 700; color: var(--ink);
}
.cic-takeaway {
  margin: 6px 0 10px; font-size: 12.5px; line-height: 1.5; color: var(--ink);
}
.cic-takeaway-label {
  display: inline-block; margin-right: 4px;
  font-size: 9.5px; font-weight: 800; padding: 2px 7px; border-radius: 8px;
  text-transform: uppercase; letter-spacing: 0.4px;
  background: var(--accent); color: white; vertical-align: middle;
}
.cic-facts { display: flex; flex-direction: column; gap: 5px; margin-bottom: 8px; }
.cic-row { display: grid; grid-template-columns: 90px 1fr; gap: 8px; font-size: 12px; line-height: 1.45; }
.cic-label { font-weight: 700; color: var(--ink-50); text-transform: uppercase; font-size: 9.5px; letter-spacing: 0.3px; padding-top: 2px; }
.cic-value { color: var(--ink); }
.cic-topic { display: inline-block; margin: 0 4px 3px 0; padding: 1px 7px; font-size: 10.5px; background: var(--ink-10); color: var(--ink); border-radius: 8px; font-weight: 600; }

/* Account Overview block (cohort detail pane) — firmographics + commercial fields. */
.cic-overview {
  border: 1px solid var(--border);
  border-radius: 8px;
  background: linear-gradient(180deg, var(--bg) 0%, var(--surface) 100%);
  padding: 10px 12px 8px;
  margin: 8px 0 12px;
}
.cic-overview-head {
  display: flex; align-items: baseline; justify-content: space-between;
  font-size: 9.5px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.4px;
  color: var(--ink-50);
  margin-bottom: 6px;
}
.cic-overview-source { color: var(--ink-50); opacity: 0.65; font-style: italic; font-weight: 600; text-transform: none; letter-spacing: 0; }
.cic-overview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px 14px;
}
@media (max-width: 720px) {
  .cic-overview-grid { grid-template-columns: repeat(2, 1fr); }
}
.acct-cell { display: flex; flex-direction: column; line-height: 1.3; }
.acct-label { font-size: 9px; font-weight: 700; color: var(--ink-50); text-transform: uppercase; letter-spacing: 0.3px; }
.acct-value { font-size: 12px; color: var(--ink); font-weight: 600; }
.acct-value.acct-empty { color: var(--ink-50); font-weight: 400; }
.icp-cohort-thumb {
  background: var(--ink-10); border-radius: 6px; aspect-ratio: 16/9;
  display: flex; align-items: center; justify-content: center;
  color: var(--ink-50); font-size: 11px; overflow: hidden; position: relative;
}
.icp-cohort-thumb img { width: 100%; height: 100%; object-fit: cover; }
.icp-cohort-thumb .play-badge {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  background: rgba(0,0,0,0.25); opacity: 0; transition: opacity 0.15s;
}
.icp-cohort-thumb:hover .play-badge { opacity: 1; }
.icp-cohort-thumb .play-badge::before { content: '▶'; color: white; font-size: 28px; text-shadow: 0 1px 4px rgba(0,0,0,0.5); }
.icp-cohort-thumb.no-video { font-style: italic; }
.icp-cohort-meta { font-size: 12px; color: var(--ink-50); margin-bottom: 6px; }
.icp-cohort-meta strong { color: var(--ink); font-weight: 700; }
.icp-cohort-links { display: flex; gap: 8px; margin-top: 6px; flex-wrap: wrap; }
.icp-cohort-links a {
  font-size: 11.5px; color: var(--brand); text-decoration: none; font-weight: 600;
  padding: 3px 8px; border: 1px solid var(--brand); border-radius: 4px;
}
.icp-cohort-links a:hover { background: var(--brand); color: white; }
.icp-cohort-links a.disabled { color: var(--ink-50); border-color: var(--ink-10); pointer-events: none; }
.icp-cohort-concerns { margin-top: 10px; }
.icp-cohort-concerns h5 { font-size: 12px; font-weight: 700; margin: 0 0 6px; text-transform: uppercase; letter-spacing: 0.3px; color: var(--ink); }
.icp-cohort-concerns ul { margin: 0; padding-left: 18px; font-size: 13px; line-height: 1.55; }
.icp-cohort-concerns li { margin-bottom: 4px; }
.icp-cohort-concerns .sev { font-size: 9.5px; padding: 1px 5px; border-radius: 8px; vertical-align: middle; margin-left: 4px; }

/* Cross-pod view: hide all pod-specific sections, show only momentum + key highlights */
.key-highlights { display: none; }
body.filter-cross .section { display: none !important; }
body.filter-cross .key-highlights { display: block; }
/* Hide the entire cross-hero wrapper (incl. its headings) on non-cross tabs */
body:not(.filter-cross) .cross-hero { display: none !important; }
body.filter-cross .section.releases-section { display: block !important; }
body.filter-cross .section.release-stack-section { display: block !important; }
/* Momentum block only shows in cross-pod view */
body:not(.filter-cross) .momentum { display: none; }

/* Key highlights strip — one card per pod */
.key-highlights {
  margin-bottom: 18px;
}
.kh-heading {
  margin: 0 0 10px;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  color: var(--ink-50);
}

/* Momentum accordion — collapsed by default with preview line */
.mom-acc {
  border-top: 1px dashed var(--border-soft);
  padding: 8px 0;
}
.mom-acc:first-child { border-top: none; padding-top: 0; }
.mom-acc > summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: baseline;
  gap: 8px;
  padding: 4px 0;
  position: relative;
  padding-right: 22px;
}
.mom-acc > summary::-webkit-details-marker { display: none; }
.mom-acc > summary::after {
  content: '+';
  position: absolute;
  right: 4px;
  top: 4px;
  color: var(--ink-50);
  font-weight: 700;
  font-size: 16px;
  line-height: 1;
  transition: transform 0.15s;
}
.mom-acc[open] > summary::after { content: '−'; }
.mom-acc > summary:hover { color: var(--brand); }
.mom-preview {
  font-size: 13.5px;
  color: var(--ink-70);
  font-weight: 400;
  line-height: 1.45;
}
.mom-acc > p {
  margin: 6px 0 4px;
  padding-top: 6px;
  border-top: 1px dotted var(--border-soft);
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink);
}
.key-highlights .kh-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

/* Cross-pod hero: 2/3 momentum + 1/3 stacked highlight cards (equal heights via grid stretch) */
body.filter-cross .cross-hero {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 18px;
  align-items: stretch;
  margin-bottom: 18px;
}
.cross-hero-col { display: flex; flex-direction: column; align-self: stretch; height: 100%; }
.cross-heading {
  margin: 0 0 10px;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  color: var(--brand);
}
.cross-heading .last-run-text { color: var(--ink-50); font-weight: 700; }
body.filter-cross .cross-hero .momentum,
body.filter-cross .cross-hero .key-highlights { margin-bottom: 0; flex: 1; display: flex; flex-direction: column; }
body.filter-cross .cross-hero .momentum #momentum-body { flex: 1; display: flex; flex-direction: column; justify-content: center; }
body.filter-cross .cross-hero .key-highlights .kh-grid {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr;
  grid-auto-rows: 1fr;
  gap: 8px;
}
body.filter-cross .cross-hero .kh-card { display: flex; flex-direction: column; justify-content: center; }
body.filter-cross .cross-hero .kh-card[open] { justify-content: flex-start; }
/* drop the in-card label since we have the column heading now */
body.filter-cross .cross-hero .momentum > .label { display: none; }
body.filter-cross .cross-hero .key-highlights .kh-grid {
  grid-template-columns: 1fr;
  gap: 10px;
}
body.filter-cross .cross-hero .kh-card { padding: 12px 14px; }
body.filter-cross .cross-hero .kh-stat { font-size: 14px; }
body.filter-cross .cross-hero .kh-detail { font-size: 12px; }
@media (max-width: 900px) {
  body.filter-cross .cross-hero { grid-template-columns: 1fr; }
  body.filter-cross .cross-hero .key-highlights .kh-grid { grid-template-columns: 1fr 1fr; }
}
.kh-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-left: 4px solid var(--khc, var(--brand));
  border-radius: 12px;
  padding: 14px 18px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.04);
}
/* Accordion behavior on the details-version of kh-card */
.kh-card > summary {
  list-style: none;
  cursor: pointer;
  position: relative;
  padding-right: 26px;
}
.kh-card > summary::-webkit-details-marker { display: none; }
.kh-card > summary::after {
  content: '+';
  position: absolute;
  right: 4px;
  top: 4px;
  color: var(--khc, var(--ink-50));
  font-weight: 700;
  font-size: 18px;
  line-height: 1;
}
.kh-card[open] > summary::after { content: '−'; }
.kh-card > .kh-detail { margin-top: 6px; padding-top: 8px; border-top: 1px dashed var(--border-soft); }
.kh-card.kh-origin    { --khc: var(--brand); }
.kh-card.kh-orion     { --khc: var(--risk); }
.kh-card.kh-reporting { --khc: var(--opportunity); }
.kh-card.kh-icp       { --khc: var(--accent); }
.kh-pod {
  font-size: 10.5px; text-transform: uppercase; letter-spacing: 0.08em;
  font-weight: 800; color: var(--khc); margin-bottom: 6px;
  display: flex; align-items: center; gap: 6px;
}
.kh-pod::before {
  content: ""; display: inline-block;
  width: 8px; height: 8px; border-radius: 50%; background: var(--khc);
}
.kh-stat {
  font-size: 16px; font-weight: 800; color: var(--ink);
  line-height: 1.25; margin-bottom: 4px;
  letter-spacing: -0.01em;
}
.kh-detail { font-size: 12.5px; color: var(--ink-70); line-height: 1.45; }
.kh-detail strong { color: var(--ink); font-weight: 700; }
@media (max-width: 720px) {
  .key-highlights .kh-grid { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .roadmap-grid { grid-template-columns: 1fr; }
}

/* Footer */
.footer-strip {
  margin-top: 32px;
  padding: 24px;
  background: linear-gradient(180deg, var(--brand-blue) 0%, var(--brand-black) 100%);
  border-top: 3px solid var(--accent);
  text-align: center;
}
.footer-strip .footer-tag {
  color: rgba(255,255,255,0.78);
  font-size: 11px;
  letter-spacing: 0.06em;
  font-family: 'JetBrains Mono', ui-monospace, Menlo, monospace;
  font-weight: 500;
}
.archive-dropdown {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  margin-bottom: 14px;
  overflow: hidden;
}
.archive-dropdown summary {
  list-style: none;
  cursor: pointer;
  padding: 12px 18px;
  display: flex; align-items: center; gap: 10px;
  font-size: 13px;
  user-select: none;
  transition: background 0.15s;
}
.archive-dropdown summary::-webkit-details-marker { display: none; }
.archive-dropdown summary:hover { background: var(--bg); }
.archive-dropdown[open] summary { border-bottom: 1px solid var(--border-soft); }
.archive-icon {
  display: inline-block;
  transition: transform 0.15s;
  color: var(--ink-50);
  font-size: 14px;
}
.archive-dropdown[open] .archive-icon { transform: rotate(180deg); }
.archive-label { font-weight: 800; color: var(--ink); letter-spacing: -0.01em; }
.archive-meta { color: var(--ink-50); font-size: 12px; margin-left: auto; }
.archive-list { padding: 6px 6px; }
.archive-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 10px 14px;
  border-radius: 6px;
  text-decoration: none;
  color: inherit;
  font-size: 13px;
}
.archive-row:hover { background: var(--brand-soft); }
.archive-week { font-weight: 600; color: var(--ink); }
.archive-tag {
  font-size: 10px; font-weight: 800; letter-spacing: 0.06em; text-transform: uppercase;
  background: var(--brand-soft); color: var(--brand-dark);
  padding: 2px 8px; border-radius: 4px;
}
.archive-note { font-size: 11.5px; color: var(--ink-50); }
.footer-tag {
  text-align: center; color: var(--ink-30); font-size: 11px;
  padding: 10px 0;
  font-family: 'JetBrains Mono', ui-monospace, Menlo, monospace;
  letter-spacing: 0.06em;
}
