.skip-link {
  position: fixed;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 100;
  padding: 0.8rem 1rem;
  color: #050505;
  background: var(--brand);
  border-radius: 0.6rem;
  transform: translateY(-150%);
  transition: transform 160ms ease;
}

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

.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.tracker-shell {
  min-height: 100vh;
}

.tracker-topbar .nav {
  gap: 0.7rem 1.1rem;
}

.tracker-hero {
  min-height: auto;
  padding-top: clamp(4rem, 8vw, 7rem);
  padding-bottom: 1.5rem;
  grid-template-columns: minmax(0, 1.15fr) minmax(20rem, 0.85fr);
}

.tracker-hero-copy h1 {
  max-width: 12ch;
  margin: 0;
  font-size: clamp(3.5rem, 8vw, 7rem);
  line-height: 0.92;
  letter-spacing: -0.055em;
}

.tracker-hero-copy h1 span {
  color: var(--brand);
}

.tracker-lead {
  max-width: 49rem;
  margin: 1.5rem 0 0;
  color: var(--muted);
  font-size: 1.1rem;
  line-height: 1.75;
}

.tracker-hero-note {
  align-self: end;
  padding: clamp(1.5rem, 4vw, 2.4rem);
}

.tracker-hero-note h2 {
  max-width: 16ch;
  margin: 1rem 0;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.tracker-hero-note p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.tracker-status-row,
.forward-card-heading,
.chart-heading,
.filter-feedback,
.dialog-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.tracker-status-row > span:last-child {
  color: var(--muted);
  font-family: "IBM Plex Mono", Consolas, monospace;
  font-size: 0.72rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.tracker-status {
  display: inline-flex;
  align-items: center;
  min-height: 1.85rem;
  padding: 0.32rem 0.62rem;
  color: var(--text);
  font-family: "IBM Plex Mono", Consolas, monospace;
  font-size: 0.67rem;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 0.055em;
  text-transform: uppercase;
  border: 1px solid var(--line);
  border-radius: 999px;
  white-space: nowrap;
}

.tracker-status::before {
  width: 0.45rem;
  height: 0.45rem;
  margin-right: 0.42rem;
  background: currentColor;
  border-radius: 50%;
  content: "";
}

.tracker-status-hold,
.tracker-status-retest,
.tracker-status-conflict {
  color: var(--warning);
  background: rgba(255, 200, 97, 0.08);
  border-color: rgba(255, 200, 97, 0.32);
}

.tracker-status-reference,
.tracker-status-waiting {
  color: var(--ice);
  background: rgba(138, 217, 255, 0.08);
  border-color: rgba(138, 217, 255, 0.28);
}

.tracker-status-pit {
  color: #d7b9ff;
  background: rgba(190, 145, 255, 0.08);
  border-color: rgba(190, 145, 255, 0.3);
}

.tracker-status-rejected {
  color: #ff8f8f;
  background: rgba(255, 99, 99, 0.08);
  border-color: rgba(255, 99, 99, 0.3);
}

.tracker-status-history,
.tracker-status-exploratory {
  color: #a8e8c1;
  background: rgba(105, 217, 147, 0.08);
  border-color: rgba(105, 217, 147, 0.28);
}

.tracker-status-retired {
  color: #9aa1ad;
  background: rgba(154, 161, 173, 0.08);
  border-color: rgba(154, 161, 173, 0.28);
}

.tracker-summary {
  padding-top: 2.5rem;
}

.tracker-stat-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.tracker-stat {
  min-height: 10rem;
  padding: 1.35rem;
}

.tracker-stat span,
.tracker-stat small {
  display: block;
  color: var(--muted);
}

.tracker-stat span {
  font-family: "IBM Plex Mono", Consolas, monospace;
  font-size: 0.73rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.tracker-stat strong {
  display: block;
  margin: 0.7rem 0 0.3rem;
  color: var(--brand);
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1;
}

.tracker-stat small {
  font-size: 0.8rem;
  line-height: 1.4;
}

.forward-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
}

.forward-card {
  display: flex;
  flex-direction: column;
  min-height: 23rem;
  padding: 1.5rem;
}

.forward-card h3 {
  margin: 1.2rem 0 1rem;
  font-size: 1.45rem;
}

.forward-card > p:last-child {
  margin: auto 0 0;
  padding-top: 1.2rem;
  color: var(--muted);
  line-height: 1.6;
}

.forward-card-retired {
  background:
    linear-gradient(135deg, rgba(154, 161, 173, 0.06), transparent 60%),
    var(--bg-panel);
}

.forward-metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
  margin: 0;
}

.forward-metrics div {
  padding: 0.85rem;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid var(--line);
  border-radius: 0.8rem;
}

.forward-metrics dt {
  color: var(--muted);
  font-family: "IBM Plex Mono", Consolas, monospace;
  font-size: 0.68rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.forward-metrics dd {
  margin: 0.35rem 0 0;
  color: var(--text);
  font-size: 1.25rem;
  font-weight: 700;
}

.gate-progress {
  margin-top: 1rem;
}

.gate-progress > span {
  display: block;
  margin-bottom: 0.45rem;
  color: var(--muted);
  font-family: "IBM Plex Mono", Consolas, monospace;
  font-size: 0.72rem;
}

.gate-track {
  height: 0.45rem;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 999px;
}

.gate-track span {
  display: block;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--ice), var(--brand));
  border-radius: inherit;
  transition: width 300ms ease;
}

.tracker-filters {
  display: grid;
  grid-template-columns: minmax(15rem, 1.65fr) repeat(3, minmax(10rem, 1fr)) auto;
  gap: 1rem;
  align-items: end;
  margin-top: 2rem;
  padding: 1.25rem;
}

.archive-filters {
  grid-template-columns: minmax(15rem, 1.5fr) minmax(11rem, 1fr) auto auto auto;
}

.filter-field {
  display: grid;
  gap: 0.45rem;
}

.filter-field label,
.segmented-field legend {
  color: var(--muted);
  font-family: "IBM Plex Mono", Consolas, monospace;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.065em;
  text-transform: uppercase;
}

.filter-field input,
.filter-field select {
  width: 100%;
  min-height: 3rem;
  padding: 0.75rem 0.8rem;
  color: var(--text);
  background: rgba(5, 5, 8, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 0.72rem;
}

.filter-field input::placeholder {
  color: #77808e;
}

.filter-field select option {
  color: #111;
  background: #fff;
}

.segmented-field {
  min-width: 13rem;
  padding: 0;
  border: 0;
}

.segmented-field legend {
  margin-bottom: 0.45rem;
}

.segmented-control {
  display: flex;
  min-height: 3rem;
  padding: 0.2rem;
  background: rgba(5, 5, 8, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 0.72rem;
}

.segmented-control input {
  position: absolute;
  opacity: 0;
}

.segmented-control label {
  display: grid;
  flex: 1;
  min-width: 5.6rem;
  min-height: 2.5rem;
  padding: 0.45rem 0.65rem;
  place-items: center;
  color: var(--muted);
  font-size: 0.78rem;
  border-radius: 0.55rem;
  cursor: pointer;
}

.segmented-control input:checked + label {
  color: #080808;
  font-weight: 700;
  background: var(--brand);
}

.checkbox-field {
  display: flex;
  align-items: center;
  min-height: 3rem;
  gap: 0.6rem;
  padding: 0 0.2rem;
  color: var(--muted);
  font-size: 0.83rem;
  cursor: pointer;
}

.checkbox-field input {
  width: 1.15rem;
  height: 1.15rem;
  accent-color: var(--brand);
}

.filter-reset {
  min-height: 3rem;
  white-space: nowrap;
}

.filter-feedback {
  min-height: 2.8rem;
  margin-top: 0.85rem;
}

.filter-feedback > p {
  margin: 0;
  color: var(--muted);
  font-family: "IBM Plex Mono", Consolas, monospace;
  font-size: 0.76rem;
}

.active-filter-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.45rem;
}

.active-filter-chip {
  display: inline-flex;
  min-height: 1.8rem;
  align-items: center;
  padding: 0.32rem 0.6rem;
  color: var(--ice);
  font-family: "IBM Plex Mono", Consolas, monospace;
  font-size: 0.67rem;
  background: rgba(138, 217, 255, 0.06);
  border: 1px solid rgba(138, 217, 255, 0.22);
  border-radius: 999px;
}

.chart-panel {
  margin-top: 1rem;
  padding: clamp(1rem, 2.5vw, 1.6rem);
}

.chart-heading {
  align-items: flex-start;
}

.chart-heading h3 {
  margin: 0.35rem 0 0;
  font-size: clamp(1.35rem, 3vw, 2rem);
}

.chart-key {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.65rem 1rem;
  color: var(--muted);
  font-family: "IBM Plex Mono", Consolas, monospace;
  font-size: 0.67rem;
}

.chart-key span {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.key-dot {
  width: 0.7rem;
  height: 0.7rem;
  background: var(--ice);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
}

.key-retest {
  background: var(--warning);
}

.key-rejected {
  background: #ff7272;
  border-radius: 0.12rem;
}

.key-history {
  background: #6dd99b;
  transform: rotate(45deg);
  border-radius: 0.08rem;
}

.chart-explainer {
  max-width: 76rem;
  margin: 1rem 0 0;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.6;
}

.chart-scroll {
  margin-top: 1rem;
  overflow-x: auto;
  overscroll-behavior-x: contain;
}

.research-map {
  display: block;
  width: 100%;
  min-width: 720px;
  height: auto;
  color: var(--muted);
  background:
    radial-gradient(circle at 30% 15%, rgba(138, 217, 255, 0.045), transparent 30%),
    rgba(3, 5, 8, 0.62);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 1rem;
}

.research-map:focus-visible {
  outline: 2px solid var(--ice);
  outline-offset: 3px;
}

.chart-grid-line {
  stroke: rgba(255, 255, 255, 0.075);
  stroke-width: 1;
}

.chart-zero-line {
  stroke: rgba(216, 255, 86, 0.42);
  stroke-width: 1.5;
  stroke-dasharray: 7 7;
}

.chart-axis-line {
  stroke: rgba(255, 255, 255, 0.25);
  stroke-width: 1.2;
}

.chart-tick,
.chart-axis-label,
.chart-quadrant-label,
.chart-watermark {
  fill: #8f98a6;
  font-family: "IBM Plex Mono", Consolas, monospace;
}

.chart-tick {
  font-size: 12px;
}

.chart-axis-label {
  fill: #c9ced6;
  font-size: 13px;
  font-weight: 600;
}

.chart-quadrant-label {
  fill: rgba(216, 255, 86, 0.48);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.chart-watermark {
  fill: rgba(255, 255, 255, 0.055);
  font-size: 34px;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.study-point,
.archive-point {
  cursor: pointer;
  transition: opacity 140ms ease, filter 140ms ease;
}

.study-point:hover,
.study-point:focus,
.archive-point:hover,
.archive-point:focus {
  filter: drop-shadow(0 0 7px rgba(255, 255, 255, 0.55));
  outline: none;
}

.study-point-retest {
  fill: var(--warning);
  stroke: #fff1c7;
}

.study-point-rejected {
  fill: #ff7272;
  stroke: #ffd4d4;
}

.study-point-history {
  fill: #6dd99b;
  stroke: #d1ffe2;
}

.study-point-pit {
  fill: #bd8cff;
  stroke: #ead7ff;
}

.study-point-conflict {
  fill: #ffc861;
  stroke: #fff1c7;
  stroke-dasharray: 3 2;
}

.chart-empty {
  padding: 3rem 1rem;
  color: var(--muted);
  text-align: center;
}

.research-table-wrap {
  margin-top: 1.25rem;
  overflow-x: auto;
}

.research-ledger-disclosure {
  margin-top: 1.25rem;
  padding: 0;
  overflow: hidden;
}

.research-ledger-disclosure > summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.15rem;
  cursor: pointer;
  list-style: none;
}

.research-ledger-disclosure > summary::-webkit-details-marker {
  display: none;
}

.research-ledger-disclosure > summary strong,
.research-ledger-disclosure > summary small {
  display: block;
}

.research-ledger-disclosure > summary strong {
  color: var(--text);
  font-size: 0.9rem;
}

.research-ledger-disclosure > summary small {
  margin-top: 0.2rem;
  color: var(--muted);
}

.research-ledger-action::after {
  content: "Show rows";
  color: var(--brand);
  font-family: "IBM Plex Mono", Consolas, monospace;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  white-space: nowrap;
}

.research-ledger-disclosure[open] .research-ledger-action::after {
  content: "Hide rows";
}

.research-table-scroll-region {
  max-height: min(62vh, 42rem);
  margin-top: 0;
  overflow: auto;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  overscroll-behavior: contain;
}

.research-table-scroll-region .research-table th {
  position: sticky;
  top: 0;
  z-index: 2;
}

.research-table {
  width: 100%;
  min-width: 1020px;
  border-collapse: collapse;
  font-size: 0.84rem;
}

.research-table caption {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.research-table th,
.research-table td {
  padding: 0.9rem 0.85rem;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.research-table th {
  color: #c7ccd4;
  font-family: "IBM Plex Mono", Consolas, monospace;
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.055em;
  text-transform: uppercase;
  background: rgba(5, 6, 8, 0.93);
}

.research-table tbody tr:hover {
  background: rgba(216, 255, 86, 0.025);
}

.research-table td {
  color: var(--muted);
  line-height: 1.45;
}

.research-table td:first-child {
  max-width: 20rem;
  color: var(--text);
  font-weight: 600;
}

.research-table .metric-positive {
  color: var(--brand);
}

.research-table .metric-negative {
  color: #ff9e9e;
}

.research-table .metric-neutral {
  color: var(--muted);
}

.metric-stack {
  display: grid;
  gap: 0.2rem;
  font-family: "IBM Plex Mono", Consolas, monospace;
  font-size: 0.75rem;
  white-space: nowrap;
}

.evidence-copy {
  max-width: 23rem;
}

.sort-button {
  display: inline-flex;
  align-items: center;
  min-height: 2.25rem;
  gap: 0.4rem;
  padding: 0;
  color: inherit;
  font: inherit;
  letter-spacing: inherit;
  text-transform: inherit;
  background: transparent;
  border: 0;
  cursor: pointer;
}

.detail-button,
.dialog-close {
  min-width: 2.8rem;
  min-height: 2.8rem;
  padding: 0.6rem 0.8rem;
  color: var(--text);
  font-size: 0.76rem;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line);
  border-radius: 0.65rem;
  cursor: pointer;
}

.detail-button:hover,
.dialog-close:hover {
  color: #080808;
  background: var(--brand);
  border-color: var(--brand);
}

.archive-warning {
  display: flex;
  gap: 0.8rem;
  align-items: baseline;
  margin-top: 1.5rem;
  padding: 1rem 1.2rem;
  color: var(--muted);
  border-color: rgba(255, 200, 97, 0.24);
}

.archive-warning strong {
  flex: 0 0 auto;
  color: var(--warning);
}

.archive-table {
  min-width: 850px;
}

.table-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 1.2rem;
}

.table-pagination span {
  min-width: 9rem;
  color: var(--muted);
  font-family: "IBM Plex Mono", Consolas, monospace;
  font-size: 0.75rem;
  text-align: center;
}

.table-pagination button:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.method-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
}

.method-card {
  padding: 1.5rem;
}

.method-number {
  color: var(--brand);
  font-family: "IBM Plex Mono", Consolas, monospace;
  font-size: 0.75rem;
}

.method-card h3 {
  margin: 1rem 0 0.6rem;
}

.method-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.status-dictionary {
  margin-top: 1.25rem;
  padding: 1.5rem;
}

.status-dictionary h3 {
  margin: 0 0 1rem;
}

.status-dictionary dl {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  margin: 0;
}

.status-dictionary dl > div {
  display: grid;
  grid-template-columns: minmax(9rem, 0.7fr) minmax(0, 1.3fr);
  gap: 0.8rem;
  align-items: center;
  padding: 1rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.status-dictionary dl > div:nth-child(odd) {
  padding-right: 1.2rem;
}

.status-dictionary dd {
  margin: 0;
  color: var(--muted);
  font-size: 0.85rem;
  line-height: 1.5;
}

.research-dialog {
  width: min(50rem, calc(100% - 2rem));
  max-height: calc(100vh - 2rem);
  padding: 0;
  overflow: auto;
  color: var(--text);
  background: #0c0f14;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 1.25rem;
  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.7);
}

.research-dialog::backdrop {
  background: rgba(0, 0, 0, 0.76);
  backdrop-filter: blur(5px);
}

.dialog-header {
  position: sticky;
  top: 0;
  z-index: 2;
  padding: 1.25rem 1.35rem;
  background: rgba(12, 15, 20, 0.94);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(14px);
}

.dialog-header .eyebrow {
  margin-bottom: 0.45rem;
}

.dialog-header h2 {
  margin: 0;
  font-size: clamp(1.55rem, 4vw, 2.35rem);
  line-height: 1.05;
  letter-spacing: -0.035em;
}

#dialog-content {
  padding: 1.35rem;
}

.dialog-status-line {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  align-items: center;
  margin-bottom: 1rem;
}

.dialog-summary {
  color: #d6dae0;
  font-size: 1rem;
  line-height: 1.7;
}

.dialog-metric-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
  margin: 1.2rem 0;
}

.dialog-metric-card {
  padding: 1rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--line);
  border-radius: 0.8rem;
}

.dialog-metric-card span,
.dialog-detail-list dt {
  color: var(--muted);
  font-family: "IBM Plex Mono", Consolas, monospace;
  font-size: 0.68rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.dialog-metric-card strong {
  display: block;
  margin-top: 0.45rem;
  color: var(--text);
  font-size: 1.25rem;
}

.dialog-detail-list {
  margin: 0;
}

.dialog-detail-list > div {
  padding: 0.95rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.dialog-detail-list dd {
  margin: 0.4rem 0 0;
  color: var(--muted);
  line-height: 1.6;
  overflow-wrap: anywhere;
}

.finding-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.finding-list span {
  padding: 0.28rem 0.5rem;
  color: var(--warning);
  font-family: "IBM Plex Mono", Consolas, monospace;
  font-size: 0.7rem;
  background: rgba(255, 200, 97, 0.06);
  border: 1px solid rgba(255, 200, 97, 0.2);
  border-radius: 0.4rem;
}

.noscript-note {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  left: 1rem;
  z-index: 50;
  padding: 1rem;
  color: #080808;
  text-align: center;
  background: var(--warning);
  border-radius: 0.8rem;
}

.tracker-shell button:focus-visible,
.tracker-shell input:focus-visible,
.tracker-shell select:focus-visible,
.tracker-shell a:focus-visible,
.research-ledger-disclosure > summary:focus-visible,
.segmented-control input:focus-visible + label,
.research-dialog button:focus-visible {
  outline: 2px solid var(--ice);
  outline-offset: 3px;
}

@media (max-width: 1120px) {
  .tracker-stat-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .forward-card-retired {
    grid-column: 1 / -1;
    min-height: auto;
  }

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

  .filter-field-wide {
    grid-column: 1 / -1;
  }

  .filter-reset {
    justify-self: start;
  }
}

@media (max-width: 900px) {
  .tracker-hero {
    grid-template-columns: 1fr;
  }

  .tracker-hero-note {
    max-width: 43rem;
  }

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

  .status-dictionary dl {
    grid-template-columns: 1fr;
  }

  .status-dictionary dl > div:nth-child(odd) {
    padding-right: 0;
  }

  .chart-heading,
  .filter-feedback {
    align-items: flex-start;
    flex-direction: column;
  }

  .chart-key,
  .active-filter-list {
    justify-content: flex-start;
  }
}

@media (max-width: 720px) {
  .tracker-hero-copy h1 {
    font-size: clamp(3rem, 15vw, 4.6rem);
  }

  .tracker-stat-grid,
  .forward-grid,
  .tracker-filters,
  .archive-filters,
  .dialog-metric-grid {
    grid-template-columns: 1fr;
  }

  .forward-card-retired,
  .filter-field-wide {
    grid-column: auto;
  }

  .tracker-stat {
    min-height: 8.5rem;
  }

  .forward-card {
    min-height: auto;
  }

  .filter-reset {
    width: 100%;
  }

  .segmented-field {
    min-width: 0;
  }

  .archive-warning {
    align-items: flex-start;
    flex-direction: column;
  }

  .status-dictionary dl > div {
    grid-template-columns: 1fr;
  }

  .research-dialog {
    width: 100%;
    max-width: none;
    max-height: 92vh;
    margin: auto 0 0;
    border-radius: 1.25rem 1.25rem 0 0;
  }

  .dialog-header {
    align-items: flex-start;
  }

  .table-pagination {
    gap: 0.55rem;
  }

  .table-pagination .button {
    padding-inline: 0.8rem;
  }

  .research-ledger-disclosure > summary {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  .skip-link,
  .gate-track span,
  .study-point,
  .archive-point {
    transition: none;
  }
}
