/* Saelia operations console
   A compact interface layer for the internal pipeline, roadmap and records. */

:root {
  --ops-width: 1248px;
  --content-width: var(--ops-width);
  --grid-unit: 32px;
  --bg: #fbfbfc;
  --surface: #ffffff;
  --surface-muted: #f7f7f8;
  --fg: #171717;
  --muted: #5f5f63;
  --muted-strong: #3f3f43;
  --line: rgba(23, 23, 23, 0.12);
  --line-strong: rgba(23, 23, 23, 0.24);
  --line-hover: rgba(23, 23, 23, 0.42);
  --accent: #0068d7;
  --accent-soft: #eef6ff;
  --accent-line: #b8d9ff;
  --success: #16884a;
  --warning: #b45309;
  --danger: #d93036;
  --mono: "Geist Mono", ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  --sans: "Geist", "Helvetica Neue", sans-serif;
  --transition: color 160ms ease, background-color 160ms ease, border-color 160ms ease, opacity 160ms ease, transform 160ms ease;
  --topbar-height: 64px;
  --section-nav-height: 48px;
  --scroll-progress: 0%;
  --grid-color: rgba(23, 23, 23, 0.034);
  --grid-node: rgba(23, 23, 23, 0.055);
}

html {
  overflow-x: clip;
  scroll-padding-top: calc(var(--topbar-height) + 24px);
}

body {
  display: flex;
  min-height: 100vh;
  overflow-x: clip;
  flex-direction: column;
  background: var(--bg);
  color: var(--fg);
}

body::before,
body::after {
  position: fixed;
  top: var(--topbar-height);
  right: auto;
  bottom: 0;
  left: 50%;
  width: var(--content-width);
  transform: translateX(-50%);
  background-position: 0 0;
  background-size: var(--grid-unit) var(--grid-unit);
}

body::before {
  background:
    radial-gradient(circle at 0 0, var(--grid-node) 0 1px, transparent 1.25px),
    linear-gradient(var(--grid-color) 1px, transparent 1px),
    linear-gradient(90deg, var(--grid-color) 1px, transparent 1px);
  opacity: 0.72;
}

body::after {
  background:
    radial-gradient(circle at 0 0, rgba(0, 104, 215, 0.25) 0 1px, transparent 1.25px),
    linear-gradient(rgba(0, 104, 215, 0.09) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 104, 215, 0.09) 1px, transparent 1px);
  opacity: calc(var(--spotlight-opacity) * 0.44);
}

a,
button,
summary {
  -webkit-tap-highlight-color: rgba(0, 104, 215, 0.12);
  touch-action: manipulation;
}

a,
button {
  transition: var(--transition);
}

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 100;
  border: 1px solid var(--fg);
  background: var(--surface);
  padding: 10px 14px;
  color: var(--fg);
  font-size: 13px;
  font-weight: 600;
  transform: translateY(-160%);
  transition: none;
}

.skip-link:focus {
  transform: translateY(0);
}

/* App shell */
.topbar {
  height: var(--topbar-height);
  border-bottom: 1px solid var(--line);
  background: rgba(251, 251, 252, 0.94);
  box-shadow: none;
  -webkit-backdrop-filter: blur(14px) saturate(130%);
  backdrop-filter: blur(14px) saturate(130%);
}

.topbar::after {
  bottom: -1px;
  height: 2px;
}

.topbar-inner {
  display: grid;
  grid-template-columns: minmax(240px, 1fr) auto minmax(240px, 1fr);
  align-items: center;
  width: var(--content-width);
  height: calc(var(--topbar-height) - 1px);
  margin: 0 auto;
  padding: 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  gap: 10px;
  min-width: 0;
  min-height: 36px;
  font-size: 15px;
  font-weight: 650;
}

.brand-wordmark,
.brand-context {
  min-height: 32px;
}

.brand-wordmark::after {
  bottom: 3px;
}

.environment-badge {
  display: inline-flex;
  align-items: center;
  height: 22px;
  border-left: 1px solid var(--line-strong);
  padding-left: 10px;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 550;
  line-height: 1;
  text-transform: uppercase;
}

.nav {
  justify-self: center;
  gap: 0;
  border: 0;
  background: transparent;
}

.nav a {
  min-height: 63px;
  border: 0;
  border-right: 1px solid transparent;
  border-left: 1px solid transparent;
  background: transparent;
  padding: 0 18px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 520;
}

.nav a + a {
  border-left-color: transparent;
}

.nav a:hover {
  border-color: var(--line);
  background: var(--surface);
  color: var(--fg);
}

.nav a.active,
.nav a[aria-current="page"] {
  border-color: var(--line);
  background: var(--surface);
  color: var(--fg);
}

.nav a.active::after,
.nav a[aria-current="page"]::after {
  right: 0;
  bottom: -1px;
  left: 0;
  height: 2px;
}

.workspace-state {
  display: inline-flex;
  align-items: center;
  justify-self: end;
  gap: 8px;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 10px;
  line-height: 16px;
  text-transform: uppercase;
}

.workspace-state::before {
  width: 6px;
  height: 6px;
  background: var(--success);
  box-shadow: 0 0 0 3px rgba(22, 136, 74, 0.10);
  content: "";
}

main {
  width: var(--content-width);
  margin: 0 auto;
  flex: 1 0 auto;
  padding: 0 0 64px;
}

.footer {
  flex: 0 0 auto;
}

/* Compact page headers */
.hero,
.meeting-hero,
.roadmap-hero,
.progress-hero {
  min-height: 0;
  height: auto;
  border-bottom: 1px solid var(--line);
  padding: 48px 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(360px, 5fr);
  gap: 32px;
  align-items: stretch;
}

.hero-grid > div:first-child {
  display: flex;
  min-width: 0;
  height: auto;
  flex-direction: column;
  justify-content: center;
}

.meeting-hero,
.meeting-hero:has(.back-link) {
  display: grid;
  grid-template-columns: 176px minmax(0, 1fr);
  grid-template-rows: auto auto auto;
  column-gap: 32px;
  row-gap: 12px;
  align-content: center;
  min-height: 224px;
}

.meeting-hero > .label,
.meeting-hero:has(.back-link) > .label {
  grid-column: 1;
  grid-row: 2;
  align-self: start;
}

.meeting-hero > h1,
.meeting-hero:has(.back-link) > h1 {
  grid-column: 2;
  grid-row: 2;
  max-width: 880px;
  margin: 0;
}

.meeting-hero > .lead,
.meeting-hero:has(.back-link) > .lead {
  grid-column: 2;
  grid-row: 3;
  max-width: 760px;
  margin: 0;
}

.meeting-hero > .back-link,
.meeting-hero:has(.back-link) > .back-link {
  grid-column: 2;
  grid-row: 1;
  margin: 0 0 4px;
}

.label {
  display: inline-flex;
  width: auto;
  max-width: 176px;
  height: 24px;
  min-height: 24px;
  justify-content: flex-start;
  border: 0;
  background: transparent;
  box-shadow: none;
  padding: 0;
  color: var(--section-accent, var(--muted-strong));
  font-size: 10px;
  font-weight: 600;
}

.label::before {
  width: 5px;
  height: 5px;
  margin-right: 9px;
}

h1 {
  max-width: none;
  margin-top: 16px;
  font-size: 48px;
  font-weight: 650;
  line-height: 52px;
  text-wrap: balance;
}

.meeting-hero h1 {
  font-size: 40px;
  line-height: 44px;
}

h2 {
  font-size: 28px;
  font-weight: 650;
  line-height: 34px;
}

h3 {
  font-size: 17px;
  font-weight: 650;
  line-height: 24px;
}

.lead {
  max-width: 720px;
  margin-top: 20px;
  color: var(--muted);
  font-size: 16px;
  line-height: 26px;
  text-wrap: pretty;
}

.lead::before {
  width: 64px;
  margin-bottom: 15px;
}

.hero-card {
  position: relative;
  width: 100%;
  height: auto;
  min-height: 224px;
  border: 1px solid var(--line);
  border-top-color: var(--success);
  background: var(--surface);
  box-shadow: none;
  padding: 24px;
}

.hero-card::before {
  display: none;
}

.status-line {
  gap: 9px;
  padding-bottom: 15px;
  font-size: 11px;
  line-height: 16px;
}

.dot {
  width: 7px;
  height: 7px;
  border: 0;
  box-shadow: 0 0 0 3px rgba(22, 136, 74, 0.10);
}

.facts {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  margin-top: 16px;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.facts div,
.facts div:last-child {
  display: grid;
  gap: 8px;
  align-content: center;
  min-height: 64px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 10px 12px;
}

.facts span {
  color: var(--muted);
  font-family: var(--mono);
  font-size: 9px;
  line-height: 12px;
  text-transform: uppercase;
}

.facts strong {
  font-size: 13px;
  line-height: 18px;
  text-align: left;
}

/* Pipeline local navigation */
.section-nav {
  position: sticky;
  top: var(--topbar-height);
  z-index: 24;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  height: var(--section-nav-height);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  border-left: 1px solid var(--line);
  background: rgba(251, 251, 252, 0.96);
  -webkit-backdrop-filter: blur(14px) saturate(130%);
  backdrop-filter: blur(14px) saturate(130%);
}

.section-nav a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  border-right: 1px solid var(--line);
  color: var(--muted);
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 550;
  line-height: 14px;
  text-transform: uppercase;
}

.section-nav a:last-child {
  border-right: 0;
}

.section-nav a:hover,
.section-nav a.active {
  background: var(--surface);
  color: var(--fg);
}

.section-nav a.active::after {
  position: absolute;
  right: 12px;
  bottom: -1px;
  left: 12px;
  height: 2px;
  background: var(--section-accent, var(--accent));
  content: "";
}

.code-line:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: -2px;
}

/* Shared section hierarchy */
.section {
  padding-top: 48px;
  scroll-margin-top: calc(var(--topbar-height) + var(--section-nav-height));
}

.section-title {
  display: grid;
  grid-template-columns: 176px minmax(0, 1fr);
  grid-template-rows: auto auto;
  column-gap: 32px;
  row-gap: 6px;
  align-content: center;
  width: 100%;
  max-width: none;
  min-height: 96px;
  height: auto;
  margin: 0 0 24px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 16px 0;
}

.section-title > .label {
  grid-column: 1;
  grid-row: 1 / span 2;
  align-self: start;
  margin: 2px 0 0;
}

.section-title > h2 {
  grid-column: 2;
  grid-row: 1;
}

.section-title > p {
  grid-column: 2;
  grid-row: 2;
  max-width: 760px;
  color: var(--muted);
  font-size: 14px;
  line-height: 22px;
}

.section-title h2 {
  gap: 10px;
}

.section-title h2::before {
  width: 2px;
  height: 24px;
}

.card,
.step,
.code-panel,
.architecture-panel,
.ateam-schema,
.risk-card,
.price-card,
.meeting-row,
.progress-entry,
.bento-card,
.note-card,
.meeting-summary,
.roadmap-command-card,
.roadmap-lane,
.roadmap-horizon,
.roadmap-decisions article,
.roadmap-sources a {
  border-color: var(--line);
  border-radius: 0;
  background: var(--surface);
  box-shadow: none;
}

.card:hover,
.step:hover,
.code-panel:hover,
.architecture-panel:hover,
.ateam-schema:hover,
.risk-card:hover,
.price-card:hover,
.meeting-row:hover,
.progress-entry:hover,
.bento-card:hover,
.note-card:hover,
.meeting-summary:hover,
.roadmap-command-card:hover,
.roadmap-lane:hover,
.roadmap-horizon:hover,
.roadmap-decisions article:hover,
.roadmap-sources a:hover {
  border-color: var(--line-hover);
  box-shadow: none;
  transform: none;
}

/* Pipeline modules */
.pipeline {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

.pipeline::before {
  display: none;
}

.step {
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 16px;
  min-height: 248px;
  border: 0;
  padding: 22px;
}

.step::before {
  top: 0;
  left: 0;
  width: 100%;
}

.step::after {
  top: 20px;
  right: 20px;
  color: var(--ds-gray-500);
  font-size: 9px;
}

.step-index {
  width: 40px;
  height: 40px;
  font-size: 12px;
  box-shadow: none;
}

.step-body {
  gap: 8px;
  min-width: 0;
  padding-top: 1px;
}

.step-meta {
  font-size: 10px;
  line-height: 16px;
}

.step-body p {
  color: var(--muted);
  font-size: 13px;
  line-height: 20px;
}

.step ul {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 8px;
}

.step li {
  min-height: 28px;
  border-color: var(--line);
  background: var(--surface-muted);
  padding: 0 9px;
  font-size: 10px;
  line-height: 14px;
}

.cards,
.architecture,
.pricing,
.risk-grid,
.roadmap-command,
.roadmap-board,
.roadmap-decisions,
.roadmap-sources,
.meeting-bento {
  gap: 1px;
  background: var(--line);
}

.cards,
.architecture,
.pricing,
.risk-grid,
.roadmap-command,
.roadmap-board,
.roadmap-decisions,
.roadmap-sources {
  border: 1px solid var(--line);
}

.cards.three,
.pricing,
.roadmap-decisions,
.roadmap-sources {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.cards.four,
.risk-grid,
.roadmap-command,
.roadmap-board {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.card {
  min-height: 184px;
  border: 0;
  padding: 24px;
}

.card p,
.risk-card p {
  font-size: 13px;
  line-height: 21px;
}

.architecture {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border: 1px solid var(--line);
}

.code-panel,
.architecture-panel,
.ateam-schema {
  height: auto;
  min-height: 352px;
  border: 0;
}

.code-line {
  min-height: 58px;
  padding: 0 18px;
}

.code-line span {
  font-size: 11px;
}

.code-line strong {
  font-size: 12px;
  line-height: 18px;
}

.ateam-schema {
  padding: 20px 24px;
}

.ateam-service {
  min-height: 72px;
}

.price-card {
  min-height: 264px;
  border: 0;
  padding: 24px;
}

.price-card.recommended {
  background: var(--accent-soft);
}

.price-grid {
  margin-top: 22px;
}

.risk-card {
  min-height: 192px;
  border: 0;
  padding: 22px;
}

.decision-list {
  height: auto;
  border-color: var(--line);
}

.decision-list div {
  grid-template-columns: 72px minmax(0, 1fr);
  min-height: 64px;
  padding: 14px 18px;
}

/* Meeting repository */
.meeting-index-section,
.progress-section {
  padding-top: 32px;
}

.meeting-list-shell {
  border: 1px solid var(--line);
  background: var(--surface);
}

.meeting-list-header,
.meeting-row {
  display: grid;
  grid-template-columns: 144px minmax(280px, 1fr) 192px 288px;
  gap: 20px;
  align-items: center;
}

.meeting-list-header {
  min-height: 40px;
  border-bottom: 1px solid var(--line);
  padding: 0 24px;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 9px;
  text-transform: uppercase;
}

.meeting-list {
  gap: 0;
}

.meeting-row {
  position: relative;
  min-height: 96px;
  border: 0;
  border-bottom: 1px solid var(--line);
  padding: 18px 24px;
}

.meeting-row:last-child {
  border-bottom: 0;
}

.meeting-row::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: -1px;
  width: 2px;
  background: var(--accent);
  content: "";
  opacity: 0;
  transform: scaleY(0.4);
  transform-origin: center;
  transition: var(--transition);
}

.meeting-row:hover {
  background: var(--accent-soft);
}

.meeting-row:hover::before,
.meeting-row:focus-visible::before {
  opacity: 1;
  transform: scaleY(1);
}

.meeting-row-date,
.meeting-row > span {
  color: var(--muted);
  font-family: var(--mono);
  font-size: 10px;
  line-height: 16px;
}

.meeting-row strong {
  font-size: 15px;
  line-height: 21px;
}

/* Progress log */
.progress-meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  min-height: 40px;
  margin: 0;
  border: 1px solid var(--line);
  box-shadow: none;
}

.progress-meta span {
  min-height: 38px;
  padding: 0 16px;
  font-size: 9px;
}

.progress-filter-shell {
  position: sticky;
  top: var(--topbar-height);
  z-index: 22;
  height: 48px;
  margin: 0 0 24px;
  background: rgba(251, 251, 252, 0.96);
  -webkit-backdrop-filter: blur(14px) saturate(130%);
  backdrop-filter: blur(14px) saturate(130%);
}

.progress-filter {
  position: static;
  display: flex;
  width: 100%;
  height: 48px;
  min-height: 48px;
  margin: 0;
  border: 1px solid var(--line);
  border-top: 0;
  background: transparent;
  overflow-x: auto;
  scrollbar-width: none;
}

.progress-filter::-webkit-scrollbar {
  display: none;
}

.progress-filter button {
  flex: 1 0 112px;
  height: 47px;
  min-height: 0;
  border: 0;
  border-right: 1px solid var(--line);
  background: transparent;
  padding: 0 12px;
  font-size: 9px;
}

.progress-filter button:last-child {
  border-right: 0;
}

.progress-filter button:hover {
  background: var(--surface);
}

.progress-filter button.active {
  background: var(--surface);
  box-shadow: inset 0 -2px 0 var(--filter-accent, var(--fg));
}

.progress-log {
  gap: 0;
  border: 1px solid var(--line);
  background: var(--surface);
}

.progress-log::before,
.progress-entry::after {
  display: none;
}

.progress-entry,
.progress-entry:has(.progress-detail) {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  min-height: 0;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: var(--surface);
  opacity: 1;
  transform: none;
  animation: none;
  will-change: auto;
}

.progress-entry:last-child {
  border-bottom: 0;
}

.progress-entry::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: -1px;
  width: 2px;
  height: auto;
  background: var(--module-accent);
  content: "";
  opacity: 0;
  transform: scaleY(0.4);
  transform-origin: center;
  transition: var(--transition);
}

.progress-entry:hover {
  background: var(--surface);
}

.progress-entry:hover::before,
.progress-entry:focus-within::before,
.progress-entry-current::before {
  opacity: 1;
  transform: scaleY(1);
}

.progress-entry-current {
  border-color: var(--line);
  background: color-mix(in srgb, var(--module-accent) 3%, var(--surface));
}

.progress-date {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 2px;
  border-right: 1px solid var(--line);
  border-bottom: 0;
  padding: 20px 16px;
}

.progress-date span,
.progress-date strong {
  font-size: 10px;
  line-height: 15px;
}

.progress-body {
  min-width: 0;
  padding: 18px 24px 20px;
}

.progress-status {
  display: inline-flex;
  align-items: center;
  min-height: 22px;
  border: 1px solid var(--module-border);
  background: var(--module-soft);
  padding: 0 8px;
  color: var(--module-accent);
  font-size: 9px;
  line-height: 12px;
}

.progress-body h3 {
  margin-top: 8px;
}

.progress-body > p {
  max-width: 920px;
  margin-top: 5px;
  color: var(--muted);
  font-size: 13px;
  line-height: 20px;
}

.progress-links {
  gap: 16px;
  margin-top: 10px;
}

.progress-links .text-link {
  min-height: 24px;
  font-size: 9px;
  line-height: 12px;
}

.progress-detail {
  margin-top: 14px;
  border: 1px solid var(--line);
  background: var(--surface);
}

.progress-detail summary {
  min-height: 40px;
  padding: 0 12px;
  font-size: 10px;
}

.progress-detail summary:hover {
  background: var(--surface-muted);
}

.progress-detail summary span:last-child {
  transition: transform 160ms ease;
}

.progress-detail[open] summary span:last-child {
  transform: rotate(45deg);
}

.progress-detail-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.progress-detail-grid div {
  min-height: 112px;
  padding: 14px;
}

/* Roadmap */
.roadmap-hero {
  min-height: 224px;
}

.roadmap-command {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 32px 0 0;
}

.roadmap-command-card {
  min-height: 176px;
  border: 0;
  padding: 22px;
}

.roadmap-command-card.is-primary,
.roadmap-horizon.is-now {
  background: var(--accent-soft);
}

.roadmap-command-card > span,
.roadmap-lane-head span,
.roadmap-horizon-index {
  font-size: 9px;
}

.roadmap-command-card strong {
  margin-top: 24px;
  font-size: 18px;
  line-height: 24px;
}

.roadmap-command-card p {
  margin-top: 10px;
  font-size: 12px;
  line-height: 19px;
}

.roadmap-board {
  align-items: start;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.roadmap-lane {
  min-height: 0;
  border: 0;
}

.roadmap-lane-head {
  min-height: 72px;
  padding: 14px 16px;
}

.roadmap-lane-head strong {
  font-size: 13px;
}

.roadmap-items {
  gap: 0;
}

.roadmap-item {
  min-height: 0;
  border-top: 1px solid var(--line);
  background: var(--surface);
  padding: 16px;
}

.roadmap-item:hover {
  background: color-mix(in srgb, var(--module-accent) 4%, var(--surface));
}

.roadmap-item > span {
  font-size: 9px;
}

.roadmap-item h3 {
  margin-top: 7px;
  font-size: 14px;
  line-height: 19px;
}

.roadmap-item p {
  margin-top: 6px;
  font-size: 12px;
  line-height: 18px;
}

.roadmap-horizons {
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

.roadmap-horizon {
  min-height: 0;
  border: 0;
  padding: 24px;
}

.roadmap-horizon-body p,
.roadmap-horizon li,
.roadmap-decisions p,
.roadmap-sources p {
  font-size: 12px;
  line-height: 19px;
}

.roadmap-decisions article,
.roadmap-sources a {
  min-height: 152px;
  border: 0;
  padding: 20px;
}

/* Meeting details and notes */
.meeting-bento,
.compact-bento,
.refined-bento {
  grid-auto-rows: 128px;
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
  padding-top: 0;
  margin-top: 32px;
}

.bento-card {
  border: 0;
  padding: 20px;
}

.refined-bento .bento-card-large {
  grid-column: span 2;
  grid-row: span 2;
}

.bento-kicker {
  font-size: 9px;
}

.refined-bento .bento-card h2 {
  font-size: 25px;
  line-height: 31px;
}

.refined-bento .bento-card p {
  font-size: 12px;
  line-height: 19px;
}

.meeting-summary-section {
  padding-top: 48px;
}

.summary-switcher {
  min-height: 56px;
  border-color: var(--line);
  background: var(--surface);
}

.summary-toggle {
  border-color: var(--line);
  font-size: 11px;
}

.meeting-summary {
  border-color: var(--line);
  box-shadow: none;
}

.meeting-summary article {
  grid-template-columns: 64px minmax(0, 1fr);
  min-height: 0;
  padding: 22px;
}

.meeting-summary article p,
.detailed-summary p {
  font-size: 13px;
  line-height: 21px;
}

.notes-document {
  width: min(920px, 100%);
  margin: 32px auto 0;
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: none;
}

.notes-document > section {
  padding: 32px;
}

.notes-document > section h2 {
  max-width: 760px;
  font-size: 26px;
  line-height: 34px;
}

.notes-document > section p {
  max-width: 760px;
  font-size: 14px;
  line-height: 24px;
}

.back-link,
.text-link {
  color: var(--accent);
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
}

.back-link::before {
  content: "← ";
}

.footer {
  border-top: 1px solid var(--line);
}

.footer::before {
  width: var(--content-width);
  height: 64px;
  padding-top: 22px;
  color: var(--muted);
  font-size: 10px;
}

@media (max-width: 1296px) {
  :root {
    --content-width: calc(100vw - 48px);
  }

  .topbar-inner {
    grid-template-columns: minmax(200px, 1fr) auto minmax(150px, 1fr);
  }

  .meeting-list-header,
  .meeting-row {
    grid-template-columns: 128px minmax(240px, 1fr) 168px 240px;
  }
}

@media (max-width: 1080px) {
  .topbar-inner {
    grid-template-columns: minmax(190px, 1fr) auto;
  }

  .workspace-state {
    display: none;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 3fr) minmax(320px, 2fr);
  }

  .pipeline,
  .cards.four,
  .risk-grid,
  .roadmap-command,
  .roadmap-board {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .meeting-list-header,
  .meeting-row {
    grid-template-columns: 112px minmax(240px, 1fr) 160px;
  }

  .meeting-list-header span:last-child,
  .meeting-row > span:last-child {
    display: none;
  }
}

@media (max-width: 820px) {
  :root {
    --topbar-height: 112px;
  }

  .topbar {
    height: var(--topbar-height);
  }

  .topbar-inner {
    display: flex;
    align-items: stretch;
    justify-content: center;
    height: calc(var(--topbar-height) - 1px);
    flex-direction: column;
    gap: 8px;
  }

  .brand {
    min-height: 32px;
  }

  .nav {
    width: 100%;
    justify-self: auto;
    flex-wrap: nowrap;
    border: 1px solid var(--line);
    background: var(--surface);
    overflow-x: auto;
    scrollbar-width: none;
  }

  .nav::-webkit-scrollbar {
    display: none;
  }

  .nav a {
    flex: 1 0 auto;
    min-height: 40px;
    padding: 0 16px;
    border-right: 1px solid var(--line);
  }

  .nav a:last-child {
    border-right: 0;
  }

  .nav a.active::after,
  .nav a[aria-current="page"]::after {
    bottom: -1px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-card {
    min-height: 0;
  }

  .meeting-hero,
  .meeting-hero:has(.back-link) {
    grid-template-columns: 144px minmax(0, 1fr);
  }

  .section-nav {
    top: var(--topbar-height);
  }

  .section-nav a {
    padding: 0 10px;
  }

  .cards.three,
  .pricing,
  .roadmap-decisions,
  .roadmap-sources,
  .architecture {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .meeting-list-header,
  .meeting-row {
    grid-template-columns: 112px minmax(0, 1fr);
  }

  .meeting-list-header span:nth-child(3),
  .meeting-row > span:nth-child(3) {
    display: none;
  }

  .progress-filter-shell {
    top: var(--topbar-height);
  }
}

@media (max-width: 640px) {
  :root {
    --topbar-height: 96px;
    --content-width: calc(100vw - 32px);
  }

  .environment-badge {
    display: none;
  }

  .nav a {
    padding: 0 9px;
    font-size: 12px;
  }

  body::before,
  body::after {
    width: 100vw;
  }

  main {
    margin-right: 16px;
    margin-left: 16px;
  }

  h1,
  .meeting-hero h1 {
    font-size: 34px;
    line-height: 39px;
  }

  h2 {
    font-size: 24px;
    line-height: 30px;
  }

  .hero,
  .meeting-hero,
  .roadmap-hero,
  .progress-hero {
    padding: 32px 0;
  }

  .meeting-hero,
  .meeting-hero:has(.back-link) {
    display: flex;
    min-height: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }

  .meeting-hero > .back-link,
  .meeting-hero > .label,
  .meeting-hero > h1,
  .meeting-hero > .lead,
  .meeting-hero:has(.back-link) > .back-link,
  .meeting-hero:has(.back-link) > .label,
  .meeting-hero:has(.back-link) > h1,
  .meeting-hero:has(.back-link) > .lead {
    grid-column: auto;
    grid-row: auto;
    margin: 0;
  }

  .label {
    max-width: 100%;
  }

  .facts {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .section-nav {
    display: flex;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .section-nav::-webkit-scrollbar {
    display: none;
  }

  .section-nav a {
    flex: 0 0 128px;
  }

  .section {
    padding-top: 40px;
  }

  .section-title {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 5px;
    min-height: 0;
    margin-bottom: 16px;
    padding: 14px 0;
  }

  .section-title > .label,
  .section-title > h2,
  .section-title > p {
    grid-column: 1;
    grid-row: auto;
  }

  .section-title > .label {
    margin-bottom: 4px;
  }

  .pipeline,
  .cards.three,
  .cards.four,
  .pricing,
  .risk-grid,
  .roadmap-decisions,
  .roadmap-sources,
  .architecture {
    grid-template-columns: 1fr;
  }

  .roadmap-command,
  .roadmap-board {
    display: flex;
    align-items: stretch;
    gap: 0;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
  }

  .roadmap-command-card,
  .roadmap-lane {
    flex: 0 0 calc(100% - 40px);
    border-right: 1px solid var(--line);
    scroll-snap-align: start;
  }

  .roadmap-command-card:last-child,
  .roadmap-lane:last-child {
    border-right: 0;
  }

  .step {
    min-height: 0;
  }

  .card,
  .risk-card,
  .price-card,
  .roadmap-command-card,
  .roadmap-decisions article,
  .roadmap-sources a {
    min-height: 0;
  }

  .meeting-list-header {
    display: none;
  }

  .meeting-row {
    grid-template-columns: 1fr;
    gap: 5px;
    min-height: 0;
    padding: 18px;
  }

  .meeting-row > span:nth-child(3),
  .meeting-row > span:last-child {
    display: block;
  }

  .meeting-row strong {
    order: -1;
  }

  .progress-meta {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .progress-meta span {
    min-width: 0;
    border-right: 1px solid var(--line);
    border-bottom: 0;
    padding: 0 9px;
    overflow-wrap: anywhere;
  }

  .progress-meta span:last-child {
    border-right: 0;
  }

  .progress-entry,
  .progress-entry:has(.progress-detail) {
    grid-template-columns: 1fr;
  }

  .progress-date {
    align-items: baseline;
    flex-direction: row;
    border-right: 0;
    border-bottom: 1px solid var(--line);
    padding: 10px 16px;
  }

  .progress-body {
    padding: 16px;
  }

  .progress-detail-grid {
    grid-template-columns: 1fr;
  }

  .meeting-bento,
  .compact-bento,
  .refined-bento {
    grid-auto-rows: auto;
    grid-template-columns: 1fr;
  }

  .refined-bento .bento-card-large {
    grid-column: auto;
    grid-row: auto;
  }

  .bento-card {
    min-height: 144px;
  }

  .refined-bento .bento-card-large {
    min-height: 240px;
  }

  .meeting-summary article {
    grid-template-columns: 1fr;
  }

  .notes-document > section {
    padding: 24px 20px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  body::after {
    display: none;
  }
}

@media print {
  .topbar,
  .section-nav,
  .skip-link,
  .progress-filter {
    display: none;
  }

  body::before,
  body::after {
    display: none;
  }

  main {
    width: 100%;
  }
}

/* Operations clarity pass: home command view and workstream roadmap */
.status-product {
  --workstream-accent: #0068d7;
  --workstream-soft: #eef6ff;
  --workstream-border: #b8d9ff;
}

.status-legal {
  --workstream-accent: #a64b00;
  --workstream-soft: #fff7ed;
  --workstream-border: #fed7aa;
}

.status-marketing {
  --workstream-accent: #6d28d9;
  --workstream-soft: #f6f1ff;
  --workstream-border: #d8c7ff;
}

.page-pipeline .section-nav {
  grid-template-columns: repeat(7, minmax(0, 1fr));
}

.page-roadmap-workstreams .section-nav {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.project-surfaces-head > div > span,
.surface-title-row > div > span,
.operating-status-head span,
.operating-status-foot span,
.latest-updates-head span,
.workstream-overview-card > div span,
.workstream-overview-card dt,
.workstream-brief span,
.workstream-table-head,
.roadmap-reference-list span {
  color: var(--muted);
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 600;
  line-height: 14px;
  text-transform: uppercase;
}

.project-surfaces {
  margin-top: 96px;
  border-top: 1px solid var(--line-strong);
  padding-top: 40px;
}

.project-surfaces-head {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  align-items: end;
  gap: 64px;
  margin-bottom: 24px;
}

.project-surfaces-head h2 {
  max-width: 620px;
  margin-top: 8px;
  font-size: 30px;
  line-height: 36px;
}

.project-surfaces-head > p {
  max-width: 520px;
  justify-self: end;
  color: var(--muted);
  font-size: 14px;
  line-height: 22px;
}

.surface-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

.surface-card {
  position: relative;
  display: grid;
  grid-template-rows: 250px auto;
  min-width: 0;
  min-height: 438px;
  overflow: hidden;
  background: var(--surface);
  color: var(--fg);
}

.surface-card-pipeline,
.surface-card-pitch {
  grid-column: span 5;
}

.surface-card-website,
.surface-card-dashboard {
  grid-column: span 7;
}

.surface-media {
  position: relative;
  height: 250px;
  min-height: 0;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: #090a0c;
}

.surface-media img {
  display: block;
  width: 100%;
  height: 250px;
  min-height: 0;
  object-fit: cover;
  transition: transform 600ms cubic-bezier(0.22, 1, 0.36, 1), filter 600ms cubic-bezier(0.22, 1, 0.36, 1);
}

.surface-card-pipeline .surface-media img {
  object-position: 50% 24%;
}

.surface-card-website .surface-media img,
.surface-card-pitch .surface-media img {
  object-position: 50% 42%;
}

.surface-card-dashboard .surface-media img {
  object-position: 50% 50%;
}

.surface-media::after {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.12);
  content: "";
  pointer-events: none;
}

.surface-media figcaption {
  position: absolute;
  top: 14px;
  left: 14px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(9, 10, 12, 0.82);
  padding: 6px 9px;
  color: #ffffff;
  font-family: var(--mono);
  font-size: 8px;
  font-weight: 600;
  line-height: 12px;
  text-transform: uppercase;
}

.surface-body {
  display: flex;
  min-height: 188px;
  flex-direction: column;
  padding: 20px;
}

.surface-title-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}

.surface-title-row > div {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 4px;
}

.surface-title-row strong {
  font-size: 17px;
  line-height: 23px;
}

.surface-state {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--muted-strong);
  font-family: var(--mono);
  font-size: 8px;
  font-weight: 650;
  line-height: 13px;
  text-transform: uppercase;
}

.surface-state::before {
  width: 6px;
  height: 6px;
  background: var(--success);
  box-shadow: 0 0 0 3px rgba(22, 136, 74, 0.09);
  content: "";
}

.surface-body > p {
  max-width: 520px;
  margin-top: 12px;
  color: var(--muted);
  font-size: 12px;
  line-height: 19px;
}

.surface-linkline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: auto;
  border-top: 1px solid var(--line);
  padding-top: 13px;
}

.surface-linkline small {
  min-width: 0;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 9px;
  line-height: 14px;
  overflow-wrap: anywhere;
}

.surface-linkline > span {
  color: var(--muted-strong);
  font-family: var(--mono);
  font-size: 14px;
  line-height: 14px;
}

.surface-card:hover .surface-media img,
.surface-card:focus-visible .surface-media img {
  transform: scale(1.025);
  filter: saturate(1.06) contrast(1.02);
}

.surface-card:hover .surface-body,
.surface-card:focus-visible .surface-body {
  background: var(--surface-muted);
}

.surface-card:focus-visible {
  z-index: 2;
  outline: 2px solid var(--accent);
  outline-offset: -2px;
}

.home-status-section {
  --section-accent: var(--accent);
}

.page-pipeline main {
  display: flex;
  flex-direction: column;
  counter-reset: pipeline-chapter;
}

.page-pipeline main > * {
  order: 4;
}

.page-pipeline main > .hero {
  order: 1;
}

.page-pipeline main > .section-nav {
  order: 2;
}

.page-pipeline main > .home-status-section {
  order: 3;
}

.page-pipeline main > .section {
  position: relative;
  margin-top: 112px;
  padding-top: 0;
  counter-increment: pipeline-chapter;
}

.page-pipeline main > .home-status-section {
  margin-top: 64px;
}

.page-pipeline #pipeline,
.page-pipeline #deliverable,
.page-pipeline #architecture {
  --section-accent: #0068d7;
}

.page-pipeline #costs {
  --section-accent: #a64b00;
}

.page-pipeline #risks {
  --section-accent: #c2292f;
}

.page-pipeline #decisions {
  --section-accent: #171717;
}

.page-pipeline .section-title,
.page-roadmap-workstreams .roadmap-workstream .section-title,
.page-roadmap-workstreams .roadmap-reference-section .section-title {
  display: grid;
  grid-template-columns: 64px 160px minmax(0, 1fr);
  grid-template-rows: auto auto;
  min-height: 148px;
  margin-bottom: 32px;
  border: 1px solid var(--line);
  border-top: 3px solid var(--section-accent, var(--workstream-accent));
  background: var(--surface);
  padding: 28px 24px;
}

.page-pipeline .section-title::before,
.page-roadmap-workstreams .roadmap-workstream .section-title::before,
.page-roadmap-workstreams .roadmap-reference-section .section-title::before {
  grid-column: 1;
  grid-row: 1 / span 2;
  align-self: stretch;
  border-right: 1px solid var(--line);
  color: var(--section-accent, var(--workstream-accent));
  content: counter(pipeline-chapter, decimal-leading-zero);
  font-family: var(--mono);
  font-size: 22px;
  font-weight: 520;
  line-height: 28px;
}

.page-pipeline .section-title > .label,
.page-roadmap-workstreams .roadmap-workstream .section-title > .label,
.page-roadmap-workstreams .roadmap-reference-section .section-title > .label {
  grid-column: 2;
  grid-row: 1 / span 2;
  align-self: start;
  margin: 3px 0 0 20px;
}

.page-pipeline .section-title > h2,
.page-roadmap-workstreams .roadmap-workstream .section-title > h2,
.page-roadmap-workstreams .roadmap-reference-section .section-title > h2 {
  grid-column: 3;
  grid-row: 1;
}

.page-pipeline .section-title > p,
.page-roadmap-workstreams .roadmap-workstream .section-title > p,
.page-roadmap-workstreams .roadmap-reference-section .section-title > p {
  grid-column: 3;
  grid-row: 2;
  max-width: 760px;
}

.page-pipeline .section-title h2::before,
.page-roadmap-workstreams .section-title h2::before {
  display: none;
}

.operating-status-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

.operating-status-card {
  position: relative;
  display: flex;
  min-height: 248px;
  flex-direction: column;
  border-top: 2px solid var(--workstream-accent);
  background: var(--surface);
  padding: 22px;
  color: var(--fg);
}

.operating-status-card:hover,
.operating-status-card:focus-visible {
  background: var(--workstream-soft);
}

.operating-status-head,
.operating-status-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.operating-status-head strong {
  color: var(--workstream-accent);
  font-family: var(--mono);
  font-size: 9px;
  line-height: 14px;
  text-transform: uppercase;
}

.operating-status-card h3 {
  margin-top: 30px;
  font-size: 20px;
  line-height: 26px;
}

.operating-status-card > p {
  margin-top: 10px;
  color: var(--muted);
  font-size: 13px;
  line-height: 21px;
}

.operating-status-foot {
  margin-top: auto;
  border-top: 1px solid var(--line);
  padding-top: 14px;
}

.operating-status-foot strong {
  font-size: 12px;
  line-height: 18px;
}

.latest-updates {
  margin-top: 24px;
  border: 1px solid var(--line);
  background: var(--surface);
}

.latest-updates-head,
.latest-update-row {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr) 112px;
  align-items: center;
  min-height: 64px;
  border-bottom: 1px solid var(--line);
}

.latest-updates-head {
  grid-template-columns: minmax(0, 1fr) auto;
  min-height: 56px;
  background: var(--surface-muted);
  padding: 0 18px;
}

.latest-updates-head > div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.latest-updates-head strong {
  font-size: 13px;
  line-height: 18px;
}

.latest-updates-head > a {
  color: var(--accent);
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 600;
  text-transform: uppercase;
}

.latest-update-row:last-child {
  border-bottom: 0;
}

.latest-update-row:hover,
.latest-update-row:focus-visible {
  background: var(--surface-muted);
}

.latest-update-row time,
.latest-update-row > span:last-child {
  padding: 0 18px;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 9px;
  line-height: 14px;
  text-transform: uppercase;
}

.latest-update-row time {
  align-self: stretch;
  display: flex;
  align-items: center;
  border-right: 1px solid var(--line);
}

.latest-update-row > div {
  padding: 12px 20px;
}

.latest-update-row > div strong,
.latest-update-row > div span {
  display: block;
}

.latest-update-row > div strong {
  font-size: 14px;
  line-height: 20px;
}

.latest-update-row > div span {
  margin-top: 3px;
  color: var(--muted);
  font-size: 12px;
  line-height: 18px;
}

.latest-update-row > span:last-child {
  justify-self: end;
  color: var(--fg);
}

.page-roadmap-workstreams .roadmap-hero h1 {
  max-width: 840px;
}

.page-roadmap-workstreams main {
  counter-reset: roadmap-chapter;
}

.page-roadmap-workstreams .workstream-overview {
  margin-top: 32px;
  margin-bottom: 72px;
}

.page-roadmap-workstreams .roadmap-workstream {
  position: relative;
  margin-top: 112px;
  padding-top: 0;
  counter-increment: roadmap-chapter;
}

.page-roadmap-workstreams #product {
  margin-top: 72px;
}

.page-roadmap-workstreams .roadmap-workstream .section-title {
  --section-accent: var(--workstream-accent);
  border-color: var(--workstream-border);
  border-top-color: var(--workstream-accent);
  background: var(--workstream-soft);
}

.page-roadmap-workstreams .roadmap-workstream .section-title::before {
  content: counter(roadmap-chapter, decimal-leading-zero);
}

.page-roadmap-workstreams .roadmap-reference-section {
  margin-top: 112px;
  padding-top: 0;
}

.page-roadmap-workstreams .roadmap-reference-section .section-title {
  --section-accent: var(--muted-strong);
}

.page-roadmap-workstreams .roadmap-reference-section .section-title::before {
  content: "REF";
  font-size: 13px;
  line-height: 20px;
}

.workstream-overview {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin: 32px 0;
  border: 1px solid var(--line);
  background: var(--line);
}

.workstream-overview-card {
  display: flex;
  min-height: 248px;
  flex-direction: column;
  border-top: 2px solid var(--workstream-accent);
  background: var(--surface);
  padding: 22px;
  color: var(--fg);
}

.workstream-overview-card:hover,
.workstream-overview-card:focus-visible {
  background: var(--workstream-soft);
}

.workstream-overview-card > div:first-child {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.workstream-overview-card > div:first-child strong {
  color: var(--workstream-accent);
  font-family: var(--mono);
  font-size: 9px;
  line-height: 14px;
  text-transform: uppercase;
}

.workstream-overview-card h2 {
  margin-top: 30px;
  font-size: 22px;
  line-height: 28px;
}

.workstream-overview-card > p {
  margin-top: 9px;
  color: var(--muted);
  font-size: 13px;
  line-height: 20px;
}

.workstream-overview-card dl {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: auto;
  border-top: 1px solid var(--line);
  padding-top: 14px;
}

.workstream-overview-card dl > div:last-child {
  border-left: 1px solid var(--line);
  padding-left: 16px;
}

.workstream-overview-card dd {
  margin-top: 3px;
  font-size: 12px;
  font-weight: 650;
  line-height: 18px;
}

.roadmap-workstream {
  --section-accent: var(--workstream-accent);
}

.workstream-brief {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border: 1px solid var(--workstream-border);
  border-top: 2px solid var(--workstream-accent);
  background: var(--surface);
}

.workstream-brief > div {
  display: flex;
  min-height: 88px;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
  border-right: 1px solid var(--line);
  padding: 16px 20px;
}

.workstream-brief > div:last-child {
  border-right: 0;
}

.workstream-brief strong {
  font-size: 14px;
  line-height: 20px;
}

.workstream-table {
  margin-top: 16px;
  border: 1px solid var(--line);
  background: var(--surface);
}

.workstream-table-head,
.workstream-row {
  display: grid;
  grid-template-columns: 112px minmax(240px, 1.25fr) 136px minmax(280px, 1.5fr);
}

.workstream-table-head {
  min-height: 40px;
  align-items: center;
  border-bottom: 1px solid var(--line-strong);
  background: var(--surface-muted);
}

.workstream-table-head > span,
.workstream-row > * {
  min-width: 0;
  border-right: 1px solid var(--line);
  padding-right: 16px;
  padding-left: 16px;
}

.workstream-table-head > span:last-child,
.workstream-row > *:last-child {
  border-right: 0;
}

.workstream-row {
  position: relative;
  min-height: 112px;
  align-items: stretch;
  border-bottom: 1px solid var(--line);
  --state-color: var(--muted);
  --state-soft: var(--surface-muted);
}

.workstream-row:last-child {
  border-bottom: 0;
}

.workstream-row:hover {
  background: color-mix(in srgb, var(--state-color) 3%, var(--surface));
}

.workstream-row > * {
  display: flex;
  justify-content: center;
  flex-direction: column;
  padding-top: 18px;
  padding-bottom: 18px;
}

.workstream-row > div h3 {
  font-size: 15px;
  line-height: 21px;
}

.workstream-row > div p,
.workstream-row > p:last-child {
  color: var(--muted);
  font-size: 12px;
  line-height: 19px;
}

.workstream-row > div p {
  margin-top: 4px;
}

.workstream-row > time,
.workstream-row > span:nth-child(3) {
  color: var(--muted-strong);
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 550;
  line-height: 16px;
}

.workstream-state {
  align-self: stretch;
  background: var(--state-soft);
  color: var(--state-color);
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 650;
  line-height: 14px;
  text-transform: uppercase;
}

.workstream-row.is-complete {
  --state-color: #16884a;
  --state-soft: #effaf3;
}

.workstream-row.is-active {
  --state-color: var(--workstream-accent);
  --state-soft: var(--workstream-soft);
}

.workstream-row.is-decision {
  --state-color: #a64b00;
  --state-soft: #fff7ed;
}

.workstream-row.is-next {
  --state-color: #0068d7;
  --state-soft: #eef6ff;
}

.workstream-row.is-later {
  --state-color: #5f5f63;
  --state-soft: #f7f7f8;
}

.workstream-row.is-research {
  --state-color: #6d28d9;
  --state-soft: #f6f1ff;
}

.workstream-row.is-guardrail {
  --state-color: #c2292f;
  --state-soft: #fff1f1;
}

.roadmap-reference-section {
  --section-accent: var(--muted-strong);
}

.roadmap-reference-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.roadmap-reference-list a {
  display: flex;
  min-height: 88px;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--surface);
  padding: 16px;
  color: var(--fg);
}

.roadmap-reference-list a:hover,
.roadmap-reference-list a:focus-visible {
  background: var(--surface-muted);
}

.roadmap-reference-list strong {
  font-size: 13px;
  line-height: 19px;
}

@media (max-width: 1080px) {
  .surface-card-pipeline,
  .surface-card-website,
  .surface-card-dashboard,
  .surface-card-pitch {
    grid-column: span 6;
  }

  .page-pipeline .section-title,
  .page-roadmap-workstreams .roadmap-workstream .section-title,
  .page-roadmap-workstreams .roadmap-reference-section .section-title {
    grid-template-columns: 56px 132px minmax(0, 1fr);
  }

  .workstream-table-head,
  .workstream-row {
    grid-template-columns: 104px minmax(220px, 1.2fr) 120px minmax(240px, 1.4fr);
  }

  .roadmap-reference-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  .project-surfaces {
    margin-top: 72px;
    padding-top: 32px;
  }

  .project-surfaces-head {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 12px;
  }

  .project-surfaces-head > p {
    max-width: 620px;
    justify-self: start;
  }

  .page-pipeline main > .section,
  .page-roadmap-workstreams .roadmap-workstream,
  .page-roadmap-workstreams .roadmap-reference-section {
    margin-top: 80px;
  }

  .page-pipeline main > .home-status-section,
  .page-roadmap-workstreams #product {
    margin-top: 48px;
  }

  .page-pipeline .section-title,
  .page-roadmap-workstreams .roadmap-workstream .section-title,
  .page-roadmap-workstreams .roadmap-reference-section .section-title {
    grid-template-columns: 52px minmax(0, 1fr);
    grid-template-rows: auto auto auto;
    min-height: 0;
    padding: 22px 18px;
  }

  .page-pipeline .section-title::before,
  .page-roadmap-workstreams .roadmap-workstream .section-title::before,
  .page-roadmap-workstreams .roadmap-reference-section .section-title::before {
    grid-column: 1;
    grid-row: 1 / span 2;
  }

  .page-pipeline .section-title > .label,
  .page-roadmap-workstreams .roadmap-workstream .section-title > .label,
  .page-roadmap-workstreams .roadmap-reference-section .section-title > .label {
    grid-column: 2;
    grid-row: 1;
    margin: 1px 0 6px 16px;
  }

  .page-pipeline .section-title > h2,
  .page-roadmap-workstreams .roadmap-workstream .section-title > h2,
  .page-roadmap-workstreams .roadmap-reference-section .section-title > h2 {
    grid-column: 2;
    grid-row: 2;
    margin-left: 16px;
  }

  .page-pipeline .section-title > p,
  .page-roadmap-workstreams .roadmap-workstream .section-title > p,
  .page-roadmap-workstreams .roadmap-reference-section .section-title > p {
    grid-column: 1 / -1;
    grid-row: 3;
    margin-top: 14px;
    border-top: 1px solid var(--line);
    padding-top: 14px;
  }

  .operating-status-grid {
    display: flex;
    gap: 0;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
  }

  .operating-status-card {
    flex: 0 0 calc(66.666% - 16px);
    border-right: 1px solid var(--line);
    scroll-snap-align: start;
  }

  .operating-status-card:last-child {
    border-right: 0;
  }

  .workstream-table-head {
    display: none;
  }

  .workstream-row {
    grid-template-columns: 104px minmax(0, 1fr);
    min-height: 0;
  }

  .workstream-row > * {
    border-right: 0;
  }

  .workstream-state {
    grid-column: 1;
    grid-row: 1 / span 3;
    border-right: 1px solid var(--line);
  }

  .workstream-row > div {
    grid-column: 2;
    grid-row: 1;
    padding-bottom: 8px;
  }

  .workstream-row > time,
  .workstream-row > span:nth-child(3) {
    grid-column: 2;
    grid-row: 2;
    padding-top: 0;
    padding-bottom: 6px;
  }

  .workstream-row > p:last-child {
    grid-column: 2;
    grid-row: 3;
    padding-top: 0;
  }
}

@media (max-width: 640px) {
  .project-surfaces-head h2 {
    font-size: 24px;
    line-height: 30px;
  }

  .surface-card-pipeline,
  .surface-card-website,
  .surface-card-dashboard,
  .surface-card-pitch {
    grid-column: 1 / -1;
  }

  .surface-card {
    grid-template-rows: 206px auto;
    min-height: 382px;
  }

  .surface-media,
  .surface-media img {
    height: 206px;
    min-height: 0;
  }

  .surface-body {
    min-height: 176px;
    padding: 17px;
  }

  .page-pipeline .section-nav,
  .page-roadmap-workstreams .section-nav {
    display: flex;
  }

  .latest-updates-head {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 14px 16px;
  }

  .latest-update-row {
    grid-template-columns: 64px minmax(0, 1fr);
  }

  .latest-update-row time {
    grid-column: 1;
    grid-row: 1 / span 2;
    padding: 0 12px;
  }

  .latest-update-row > div {
    grid-column: 2;
    padding: 12px 14px 5px;
  }

  .latest-update-row > span:last-child {
    grid-column: 2;
    justify-self: start;
    padding: 0 14px 12px;
  }

  .operating-status-card {
    flex-basis: calc(100% - 40px);
    min-height: 232px;
  }

  .workstream-overview {
    display: flex;
    gap: 0;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
  }

  .workstream-overview-card {
    flex: 0 0 calc(100% - 40px);
    min-height: 240px;
    border-right: 1px solid var(--line);
    scroll-snap-align: start;
  }

  .workstream-overview-card:last-child {
    border-right: 0;
  }

  .workstream-brief {
    grid-template-columns: 1fr;
  }

  .workstream-brief > div {
    min-height: 72px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .workstream-brief > div:last-child {
    border-bottom: 0;
  }

  .workstream-row {
    grid-template-columns: 88px minmax(0, 1fr);
  }

  .workstream-row > * {
    padding-right: 14px;
    padding-left: 14px;
  }

  .roadmap-reference-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media print {
  .project-surfaces,
  .latest-updates-head > a {
    display: none;
  }

  .operating-status-grid,
  .workstream-overview,
  .workstream-brief,
  .workstream-table,
  .roadmap-reference-list {
    break-inside: avoid;
  }
}

/* Funding radar */
.page-funding {
  --funding-accent: #16884a;
}

.page-funding .funding-hero {
  --section-accent: var(--funding-accent);
}

.funding-priority-head {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  align-items: end;
  gap: 64px;
  margin-bottom: 24px;
}

.funding-priority-head > div > span,
.funding-priority-item > span,
.funding-priority-item > small,
.funding-detail > div > span,
.funding-verification > span {
  color: var(--muted);
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 600;
  line-height: 14px;
  text-transform: uppercase;
}

.funding-priority-head h2,
.funding-priority-head h3 {
  max-width: 680px;
  margin-top: 8px;
  font-size: 30px;
  line-height: 36px;
}

.funding-priority-head > p {
  max-width: 500px;
  justify-self: end;
  color: var(--muted);
  font-size: 14px;
  line-height: 22px;
}

.funding-priority-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

.funding-priority-item {
  --priority-color: var(--accent);
  display: flex;
  min-height: 248px;
  flex-direction: column;
  border-top: 3px solid var(--priority-color);
  background: var(--surface);
  padding: 22px;
  color: var(--fg);
}

.funding-priority-item.priority-urgent {
  --priority-color: #d93036;
}

.funding-priority-item.priority-voice {
  --priority-color: #0068d7;
}

.funding-priority-item.priority-infrastructure {
  --priority-color: #16884a;
}

.funding-priority-item.priority-gated {
  --priority-color: #a64b00;
}

.funding-priority-item:hover,
.funding-priority-item:focus-visible {
  background: color-mix(in srgb, var(--priority-color) 5%, var(--surface));
}

.funding-priority-item > span {
  color: var(--priority-color);
}

.funding-priority-item > strong {
  margin-top: 28px;
  font-size: 18px;
  line-height: 24px;
}

.funding-priority-item > p {
  margin-top: 9px;
  color: var(--muted);
  font-size: 12px;
  line-height: 19px;
}

.funding-priority-item > small {
  margin-top: auto;
  border-top: 1px solid var(--line);
  padding-top: 13px;
}

.page-funding main {
  counter-reset: funding-chapter;
}

.page-funding main > .section {
  position: relative;
  margin-top: 112px;
  padding-top: 0;
  counter-increment: funding-chapter;
}

.page-funding .funding-hero + .funding-section {
  margin-top: 40px;
}

.page-funding .section-title {
  display: grid;
  grid-template-columns: 64px 160px minmax(0, 1fr);
  grid-template-rows: auto auto;
  min-height: 148px;
  margin-bottom: 32px;
  border: 1px solid var(--line);
  border-top: 3px solid var(--funding-accent);
  background: var(--surface);
  padding: 28px 24px;
}

.page-funding .section-title::before {
  grid-column: 1;
  grid-row: 1 / span 2;
  align-self: stretch;
  border-right: 1px solid var(--line);
  color: var(--funding-accent);
  content: counter(funding-chapter, decimal-leading-zero);
  font-family: var(--mono);
  font-size: 22px;
  font-weight: 520;
  line-height: 28px;
}

.page-funding .section-title > .label {
  grid-column: 2;
  grid-row: 1 / span 2;
  align-self: start;
  margin: 3px 0 0 20px;
  color: var(--funding-accent);
}

.page-funding .section-title > h2 {
  grid-column: 3;
  grid-row: 1;
}

.page-funding .section-title > h2::before {
  display: none;
}

.page-funding .section-title > p {
  grid-column: 3;
  grid-row: 2;
  max-width: 780px;
}

.funding-toolbar {
  position: sticky;
  top: var(--topbar-height);
  z-index: 22;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 64px;
  border: 1px solid var(--line);
  background: rgba(251, 251, 252, 0.96);
  padding: 8px;
  -webkit-backdrop-filter: blur(14px) saturate(130%);
  backdrop-filter: blur(14px) saturate(130%);
}

.funding-filter {
  display: flex;
  align-items: stretch;
  min-width: 0;
  border: 1px solid var(--line);
  background: var(--surface);
}

.funding-filter button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 8px;
  border: 0;
  border-right: 1px solid var(--line);
  background: transparent;
  padding: 0 14px;
  color: var(--muted);
  cursor: pointer;
  font-size: 11px;
  line-height: 16px;
}

.funding-filter button:last-child {
  border-right: 0;
}

.funding-filter button:hover,
.funding-filter button.active,
.funding-filter button[aria-pressed="true"] {
  background: var(--surface-muted);
  color: var(--fg);
}

.funding-filter button.active,
.funding-filter button[aria-pressed="true"] {
  box-shadow: inset 0 -2px 0 var(--funding-accent);
}

.funding-filter button strong {
  color: var(--muted);
  font-family: var(--mono);
  font-size: 9px;
  line-height: 14px;
}

.funding-visible {
  flex: 0 0 auto;
  padding-right: 10px;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 9px;
  line-height: 14px;
  text-transform: uppercase;
}

.funding-list {
  margin-top: 16px;
  border-top: 1px solid var(--line);
  border-right: 1px solid var(--line);
  border-left: 1px solid var(--line);
  background: var(--surface);
}

.funding-list-head,
.funding-item > summary {
  display: grid;
  grid-template-columns: 168px minmax(260px, 1fr) 176px 152px 48px;
  align-items: stretch;
}

.funding-list-head {
  min-height: 40px;
  align-items: center;
  border-bottom: 1px solid var(--line-strong);
  background: var(--surface-muted);
}

.funding-list-head > span {
  border-right: 1px solid var(--line);
  padding: 0 16px;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 600;
  line-height: 14px;
  text-transform: uppercase;
}

.funding-list-head > span:last-child {
  border-right: 0;
}

.funding-item {
  border-bottom: 1px solid var(--line);
}

.funding-item.is-hidden {
  display: none;
}

.funding-item > summary {
  min-height: 88px;
  cursor: pointer;
  list-style: none;
}

.funding-item > summary::-webkit-details-marker {
  display: none;
}

.funding-item > summary:hover,
.funding-item > summary:focus-visible,
.funding-item[open] > summary {
  background: var(--surface-muted);
}

.funding-item > summary:focus-visible {
  position: relative;
  z-index: 2;
  outline: 2px solid var(--funding-accent);
  outline-offset: -2px;
}

.funding-item > summary > span {
  display: flex;
  min-width: 0;
  justify-content: center;
  flex-direction: column;
  border-right: 1px solid var(--line);
  padding: 14px 16px;
}

.funding-item > summary > span:last-child {
  border-right: 0;
}

.funding-jurisdiction {
  gap: 5px;
  color: var(--muted-strong);
  font-family: var(--mono);
  font-size: 9px;
  line-height: 14px;
  text-transform: uppercase;
}

.funding-flags {
  display: block;
  font-family: sans-serif;
  font-size: 20px;
  line-height: 22px;
  letter-spacing: 2px;
}

.funding-name strong,
.funding-name small,
.funding-window strong,
.funding-window small,
.funding-fit strong,
.funding-fit small {
  display: block;
}

.funding-name strong {
  font-size: 14px;
  line-height: 20px;
}

.funding-name small,
.funding-window small,
.funding-fit small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 10px;
  line-height: 15px;
}

.funding-window strong,
.funding-fit strong {
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 650;
  line-height: 14px;
  text-transform: uppercase;
}

.funding-window.status-open strong,
.funding-fit.fit-high strong {
  color: #16884a;
}

.funding-window.status-deadline strong,
.funding-fit.fit-medium strong {
  color: #0068d7;
}

.funding-window.status-urgent strong {
  color: #d93036;
}

.funding-fit.fit-conditional strong {
  color: #a64b00;
}

.funding-window.status-closed strong,
.funding-fit.fit-low strong,
.funding-window.status-route strong {
  color: var(--muted-strong);
}

.funding-toggle {
  align-items: center;
  color: var(--muted-strong);
  font-family: var(--mono);
  font-size: 18px;
  line-height: 18px;
  text-align: center;
  transition: transform 240ms ease;
}

.funding-item[open] .funding-toggle {
  transform: rotate(45deg);
}

.funding-detail {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  background: var(--surface-muted);
}

.funding-detail > div {
  min-height: 176px;
  border-right: 1px solid var(--line);
  padding: 20px;
}

.funding-detail > div:nth-child(3) {
  border-right: 0;
}

.funding-detail > div > p {
  margin-top: 8px;
  color: var(--muted-strong);
  font-size: 12px;
  line-height: 20px;
}

.funding-detail > .text-link {
  grid-column: 1 / -1;
  min-height: 48px;
  border-top: 1px solid var(--line);
  padding: 15px 20px;
}

.funding-corporate-section {
  --funding-accent: #0068d7;
}

.funding-corporate-queue {
  border-top: 1px solid var(--line-strong);
  padding-top: 32px;
}

.funding-corporate-queue .funding-priority-head {
  margin-bottom: 20px;
}

.funding-corporate-toolbar {
  margin-top: 40px;
}

.funding-corporate-list {
  border-top-color: #0068d7;
}

.funding-program-guardrail {
  display: grid;
  grid-template-columns: 160px repeat(3, minmax(0, 1fr));
  margin-top: 16px;
  border: 1px solid var(--line);
  background: var(--surface-muted);
}

.funding-program-guardrail > span {
  padding: 20px;
  color: #0068d7;
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 650;
  line-height: 14px;
  text-transform: uppercase;
}

.funding-program-guardrail > div {
  min-height: 148px;
  border-left: 1px solid var(--line);
  padding: 20px;
}

.funding-program-guardrail strong {
  font-size: 13px;
  line-height: 19px;
}

.funding-program-guardrail p {
  margin-top: 7px;
  color: var(--muted);
  font-size: 11px;
  line-height: 18px;
}

.funding-verification {
  display: grid;
  grid-template-columns: 200px minmax(0, 1fr);
  gap: 24px;
  margin-top: 72px;
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line);
  padding: 24px 0;
}

.funding-verification p {
  max-width: 840px;
  color: var(--muted);
  font-size: 12px;
  line-height: 19px;
}

@media (max-width: 1080px) {
  .funding-priority-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .page-funding .section-title {
    grid-template-columns: 56px 132px minmax(0, 1fr);
  }

  .funding-list-head,
  .funding-item > summary {
    grid-template-columns: 144px minmax(220px, 1fr) 156px 136px 44px;
  }

  .funding-program-guardrail {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .funding-program-guardrail > span {
    grid-column: 1 / -1;
    border-bottom: 1px solid var(--line);
  }

  .funding-program-guardrail > div:first-of-type {
    border-left: 0;
  }
}

@media (max-width: 820px) {
  .funding-priority-head {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 12px;
  }

  .funding-priority-head > p {
    max-width: 620px;
    justify-self: start;
  }

  .page-funding main > .section {
    margin-top: 80px;
  }

  .page-funding .funding-hero + .funding-section {
    margin-top: 32px;
  }

  .page-funding .section-title {
    grid-template-columns: 52px minmax(0, 1fr);
    grid-template-rows: auto auto auto;
    min-height: 0;
    padding: 22px 18px;
  }

  .page-funding .section-title::before {
    grid-column: 1;
    grid-row: 1 / span 2;
  }

  .page-funding .section-title > .label {
    grid-column: 2;
    grid-row: 1;
    margin: 1px 0 6px 16px;
  }

  .page-funding .section-title > h2 {
    grid-column: 2;
    grid-row: 2;
    margin-left: 16px;
  }

  .page-funding .section-title > p {
    grid-column: 1 / -1;
    grid-row: 3;
    margin-top: 14px;
    border-top: 1px solid var(--line);
    padding-top: 14px;
  }

  .funding-toolbar {
    align-items: stretch;
    flex-direction: column;
    gap: 8px;
  }

  .funding-filter {
    overflow-x: auto;
    scrollbar-width: none;
  }

  .funding-filter::-webkit-scrollbar {
    display: none;
  }

  .funding-filter button {
    flex: 0 0 auto;
  }

  .funding-visible {
    padding: 3px 6px 2px;
  }

  .funding-list-head {
    display: none;
  }

  .funding-item > summary {
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-rows: auto auto auto;
  }

  .funding-item > summary > span {
    border-right: 0;
  }

  .funding-jurisdiction {
    grid-column: 1;
    grid-row: 1;
    border-right: 1px solid var(--line) !important;
  }

  .funding-fit {
    grid-column: 2;
    grid-row: 1;
    min-width: 132px !important;
  }

  .funding-name {
    grid-column: 1 / -1;
    grid-row: 2;
    border-top: 1px solid var(--line);
  }

  .funding-window {
    grid-column: 1;
    grid-row: 3;
    border-top: 1px solid var(--line);
    border-right: 1px solid var(--line) !important;
  }

  .funding-toggle {
    grid-column: 2;
    grid-row: 3;
    min-width: 48px !important;
    border-top: 1px solid var(--line);
  }

  .funding-detail {
    grid-template-columns: 1fr;
  }

  .funding-detail > div {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .funding-detail > div:nth-child(3) {
    border-bottom: 0;
  }

  .funding-program-guardrail {
    grid-template-columns: 1fr;
  }

  .funding-program-guardrail > span {
    grid-column: 1;
  }

  .funding-program-guardrail > div {
    min-height: 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .funding-program-guardrail > div:first-of-type {
    border-top: 0;
  }

}

@media (max-width: 640px) {
  .funding-priority-head h2,
  .funding-priority-head h3 {
    font-size: 24px;
    line-height: 30px;
  }

  .funding-priority-grid {
    grid-template-columns: 1fr;
  }

  .funding-priority-item {
    min-height: 216px;
  }

  .funding-jurisdiction {
    flex-direction: row !important;
    align-items: center;
  }

  .funding-fit {
    min-width: 112px !important;
  }

  .funding-verification {
    grid-template-columns: 1fr;
    gap: 8px;
  }
}

@media print {
  .funding-toolbar {
    display: none;
  }

  .funding-item {
    break-inside: avoid;
  }
}
