:root {
  --ink: #172126;
  --muted: #647278;
  --line: #dbe4e6;
  --page: #f4f7f7;
  --white: #ffffff;
  --green: #116b55;
  --teal: #087985;
  --searah-blue: #0072bc;
  --searah-deep-blue: #005f9e;
  --searah-orange: #f58220;
  --gold: #d9a931;
  --red: #b94337;
  --shadow: 0 18px 42px rgba(24, 39, 44, 0.1);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--page);
  color: var(--ink);
  font-family: Inter, Arial, sans-serif;
}

button,
a {
  font: inherit;
}

button {
  cursor: pointer;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 0;
  background: var(--searah-blue);
  box-shadow: 0 12px 30px rgba(0, 75, 125, 0.18);
}

.utility-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 36px;
  border-bottom: 1px solid var(--line);
  padding: 0 28px;
  font-size: 12px;
}

.utility-bar nav,
.utility-actions,
.primary-nav,
.process-tabs {
  display: flex;
  align-items: center;
}

.utility-bar nav,
.utility-actions {
  gap: 18px;
}

.utility-bar a,
.primary-nav a {
  color: var(--ink);
  text-decoration: none;
}

.utility-actions button {
  min-height: 28px;
  border: 0;
  background: transparent;
  color: var(--ink);
  font-weight: 700;
  text-transform: uppercase;
}

.app-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 82px;
  padding: 14px 28px;
  background:
    linear-gradient(90deg, var(--searah-blue), var(--searah-deep-blue) 58%, #0a4f82),
    var(--searah-blue);
}

.brand {
  display: flex;
  align-items: center;
  color: white;
  text-decoration: none;
}

.brand strong,
.brand small {
  display: block;
}

.primary-nav {
  justify-content: center;
  flex: 1;
  gap: 24px;
  font-size: 14px;
  font-weight: 700;
}

.primary-nav a {
  position: relative;
  min-height: 38px;
  display: inline-flex;
  align-items: center;
}

.primary-nav a::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 3px;
  background: transparent;
  content: "";
}

.primary-nav a:hover::after {
  background: var(--gold);
}

.brand strong {
  font-size: 20px;
}

.brand small {
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
  margin-top: 2px;
}

.company-lockup {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 62px;
  border: 0;
  border-radius: 0;
  background: rgba(255, 255, 255, 0.96);
  border-radius: 8px;
  padding: 5px 12px;
}

.company-lockup img {
  display: block;
  width: auto;
  height: 58px;
}

.process-tabs {
  overflow-x: auto;
  gap: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  background: #ffffff;
  padding: 0 28px;
}

.process-tab-item {
  position: relative;
  flex: 0 0 auto;
}

.process-tabs button {
  min-height: 48px;
  border: 0;
  border-bottom: 4px solid transparent;
  background: transparent;
  color: #24424d;
  padding: 0 16px;
  font-size: 13px;
  font-weight: 800;
  white-space: nowrap;
}

.process-tabs button.active,
.process-tabs button:hover {
  border-bottom-color: var(--searah-orange);
  color: var(--searah-blue);
}

.dropdown-menu {
  position: fixed;
  z-index: 30;
  display: none;
  min-width: 180px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
  padding: 8px;
}

.dropdown-menu.open {
  display: grid;
  gap: 4px;
}

.dropdown-menu button {
  display: block;
  width: 100%;
  min-height: 40px;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: var(--ink);
  padding: 0 12px;
  text-align: left;
  font-weight: 700;
}

.dropdown-menu button:hover {
  background: #e7f2f3;
  color: var(--green);
}

main {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: 34px 0 54px;
}

.hero-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 290px;
  gap: 24px;
  min-height: 360px;
  border-radius: 8px;
  background:
    linear-gradient(110deg, rgba(9, 38, 42, 0.94), rgba(13, 89, 92, 0.82)),
    url("https://images.unsplash.com/photo-1518709268805-4e9042af2176?auto=format&fit=crop&w=1600&q=80");
  background-position: center;
  background-size: cover;
  color: white;
  padding: 38px;
  margin-bottom: 26px;
}

.hero-copy {
  align-self: end;
  max-width: 760px;
}

.hero-copy .eyebrow {
  color: #f3c84c;
}

.hero-copy h1 {
  max-width: 780px;
  margin-bottom: 16px;
  font-size: 46px;
  line-height: 1.08;
}

.hero-copy p {
  max-width: 660px;
  color: #dce9ea;
  font-size: 17px;
}

.hero-button {
  min-height: 46px;
  border: 0;
  border-radius: 8px;
  background: var(--gold);
  color: #152326;
  padding: 0 18px;
  font-weight: 800;
}

.hero-status {
  align-self: end;
  display: grid;
  gap: 8px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
  padding: 18px;
}

.hero-status span,
.hero-status small {
  color: #dce9ea;
}

.hero-status strong {
  font-size: 38px;
}

.page {
  display: none;
}

.page.active {
  display: block;
}

.page-intro {
  max-width: 760px;
  margin-bottom: 24px;
}

.page-intro.compact {
  margin-bottom: 18px;
}

.eyebrow {
  margin: 0 0 8px;
  color: var(--teal);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

h1,
h2,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 10px;
  font-size: 34px;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 10px;
  font-size: 17px;
}

p,
li {
  line-height: 1.55;
}

.page-intro p,
.stage-detail > p,
article p,
li {
  color: var(--muted);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.process-card {
  display: grid;
  gap: 14px;
  min-height: 174px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: inherit;
  padding: 18px;
  text-align: left;
  box-shadow: var(--shadow);
}

.process-card:hover,
.process-card.active {
  border-color: var(--teal);
}

.process-number {
  display: grid;
  width: 42px;
  height: 32px;
  place-items: center;
  border-radius: 8px;
  background: #e7f2f3;
  color: var(--teal);
  font-weight: 800;
}

.process-card strong {
  font-size: 18px;
}

.process-card span:last-child {
  color: var(--muted);
  line-height: 1.45;
}

.back-button {
  min-height: 40px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  padding: 0 14px;
  font-weight: 700;
  margin-bottom: 18px;
}

.stage-shell {
  display: grid;
  grid-template-columns: 290px minmax(0, 1fr);
  gap: 18px;
}

.stage-nav,
.process-sidebar {
  position: sticky;
  top: 92px;
  align-self: start;
  display: grid;
  gap: 8px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  padding: 12px;
  box-shadow: var(--shadow);
}

.stage-nav button,
.process-sidebar button {
  display: flex;
  gap: 10px;
  align-items: center;
  min-height: 42px;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: var(--ink);
  padding: 0 10px;
  text-align: left;
}

.stage-nav button.active,
.process-sidebar button.active {
  background: #e7f2f3;
  color: var(--teal);
  font-weight: 800;
}

.stage-detail,
.process-detail {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  padding: 24px;
  box-shadow: var(--shadow);
}

.process-workspace {
  display: grid;
  grid-template-columns: 310px minmax(0, 1fr);
  gap: 18px;
}

.process-detail.result-only > .eyebrow,
.process-detail.result-only > h1,
.process-detail.result-only > p,
.process-detail.result-only > .detail-grid,
.process-detail.form-only > .eyebrow,
.process-detail.form-only > h1,
.process-detail.form-only > p,
.process-detail.form-only > .detail-grid {
  display: none;
}

.process-detail.result-only .prequalification-panel,
.process-detail.form-only .handover-panel,
.process-detail.form-only .contracting-strategy-panel,
.process-detail.form-only .contract-award-panel,
.process-detail.form-only .contract-signature-panel {
  margin-top: 0;
}

.stage-shell.no-side-nav {
  grid-template-columns: 1fr;
}

.stage-shell.no-side-nav .stage-nav {
  display: none;
}

.stage-detail.pr-form-only > .eyebrow,
.stage-detail.pr-form-only > h1,
.stage-detail.pr-form-only > p,
.stage-detail.pr-form-only > .detail-grid,
.stage-detail.pr-form-only > .attachment-panel {
  display: none;
}

.stage-detail.pr-form-only .pr-form-panel {
  margin-top: 0;
}

.detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 22px;
}

.detail-grid article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfcfc;
  padding: 16px;
}

.attachment-panel {
  display: none;
  margin-top: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfcfc;
  padding: 16px;
}

.attachment-panel.active {
  display: block;
}

.pr-form-panel {
  display: none;
  margin-top: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfcfc;
  padding: 16px;
}

.pr-form-panel.active {
  display: block;
}

.form-type-picker,
.remarks-field {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.form-type-picker {
  max-width: 320px;
  margin-bottom: 16px;
}

.form-type-picker select,
.remarks-field textarea,
.form-field input,
.form-field select,
.checklist-row input,
.checklist-row select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
}

.form-type-picker select,
.form-field input,
.form-field select,
.checklist-row input,
.checklist-row select {
  min-height: 40px;
  padding: 0 10px;
}

.remarks-field textarea {
  padding: 10px;
  resize: vertical;
  text-transform: none;
}

.pr-form-layout {
  display: grid;
  gap: 18px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.form-field {
  display: grid;
  gap: 7px;
}

.form-field label {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.field-note {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.35;
}

.checklist-table {
  display: grid;
  gap: 10px;
}

.checklist-row {
  display: grid;
  grid-template-columns: minmax(210px, 1fr) 120px minmax(180px, 0.9fr) minmax(180px, 0.9fr);
  gap: 10px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  padding: 12px;
}

.checklist-row strong {
  line-height: 1.35;
}

.checklist-row .row-help {
  color: var(--muted);
  font-size: 12px;
}

.attachment-list {
  display: grid;
  gap: 10px;
}

.attachment-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(170px, auto) minmax(170px, auto);
  gap: 12px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  padding: 12px;
}

.attachment-item strong {
  display: block;
}

.attachment-item span {
  color: var(--muted);
  font-size: 13px;
}

.attach-control {
  display: grid;
  gap: 6px;
}

.attach-control label {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.attach-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--searah-blue);
  padding: 0 12px;
  font-weight: 800;
}

.attach-button:hover {
  border-color: var(--searah-orange);
}

.attach-control input {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.file-name {
  max-width: 190px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.data-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

.data-header p {
  color: var(--muted);
  margin-bottom: 0;
}

.filter-panel {
  display: grid;
  grid-template-columns: minmax(260px, 1.4fr) repeat(3, minmax(160px, 0.7fr));
  gap: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
  padding: 14px;
  margin-bottom: 18px;
}

.filter-panel label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.filter-panel input,
.filter-panel select {
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  padding: 0 12px;
  color: var(--ink);
  text-transform: none;
}

.reset-button {
  align-self: flex-start;
  min-height: 40px;
  border: 1px solid rgba(255, 255, 255, 0);
  border-radius: 8px;
  background: var(--searah-blue);
  color: white;
  padding: 0 14px;
  font-weight: 800;
}

.data-metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 18px;
}

.data-metric,
.data-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.data-metric {
  display: grid;
  gap: 7px;
  padding: 16px;
}

.data-metric span,
.row-note {
  color: var(--muted);
  font-size: 13px;
}

.data-metric strong {
  font-size: 26px;
}

.data-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  gap: 18px;
  margin-bottom: 18px;
}

.data-layout.secondary {
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.7fr);
}

.data-panel {
  padding: 18px;
}

.bar-chart,
.status-chart,
.year-chart,
.insight-list {
  display: grid;
  gap: 10px;
}

.summary-row,
.bar-row,
.year-row {
  display: grid;
  gap: 14px;
  align-items: center;
  border-bottom: 1px solid var(--line);
  padding-bottom: 10px;
}

.summary-row {
  grid-template-columns: minmax(0, 1fr) auto;
}

.bar-row,
.year-row {
  grid-template-columns: minmax(190px, 0.9fr) minmax(180px, 1fr) auto;
}

.summary-row:last-child,
.bar-row:last-child,
.year-row:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.summary-row strong {
  display: block;
  line-height: 1.35;
}

.summary-row span {
  color: var(--muted);
  font-size: 13px;
}

.bar-label strong,
.year-label strong {
  display: block;
  line-height: 1.35;
}

.bar-label span,
.year-label span,
.bar-value {
  color: var(--muted);
  font-size: 13px;
}

.bar-track,
.year-track {
  overflow: hidden;
  height: 12px;
  border-radius: 999px;
  background: #e9f1f4;
}

.bar-fill,
.year-fill {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--searah-blue), var(--searah-orange));
}

.status-chip {
  display: grid;
  grid-template-columns: minmax(95px, 0.75fr) minmax(120px, 1fr) auto;
  gap: 10px;
  align-items: center;
}

.status-name {
  font-weight: 800;
}

.status-track {
  overflow: hidden;
  height: 10px;
  border-radius: 999px;
  background: #e9f1f4;
}

.status-fill {
  display: block;
  height: 100%;
  border-radius: inherit;
}

.status-fill.planned {
  background: var(--searah-blue);
}

.status-fill.awarded,
.status-fill.ongoing {
  background: #0b8068;
}

.status-fill.cancelled {
  background: #b94337;
}

.status-fill.postponed,
.status-fill.other {
  background: var(--searah-orange);
}

.insight-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfcfc;
  padding: 12px;
}

.insight-card span {
  display: block;
  color: var(--muted);
  font-size: 13px;
  margin-top: 4px;
}

.table-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

.table-heading span {
  color: var(--muted);
  font-weight: 700;
}

.data-table-shell {
  overflow: auto;
}

.data-table {
  width: 100%;
  min-width: 980px;
  border-collapse: collapse;
}

.data-table th,
.data-table td {
  border-bottom: 1px solid var(--line);
  padding: 12px;
  text-align: left;
  vertical-align: top;
}

.data-table.compact {
  min-width: 640px;
}

.data-table input,
.data-table select {
  width: 100%;
  min-height: 38px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  padding: 0 10px;
}

.prequalification-panel {
  display: none;
  margin-top: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfcfc;
  padding: 16px;
}

.prequalification-panel.active {
  display: block;
}

.contracting-strategy-panel,
.contract-award-panel,
.contract-signature-panel {
  display: none;
  margin-top: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfcfc;
  padding: 16px;
}

.contracting-strategy-panel.active,
.contract-award-panel.active,
.contract-signature-panel.active {
  display: block;
}

.cst-form {
  display: grid;
  gap: 16px;
}

.cst-section {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  padding: 14px;
}

.cst-summary-grid,
.cst-field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.cst-field {
  display: grid;
  gap: 7px;
}

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

.cst-field span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.35;
  text-transform: uppercase;
}

.cst-field small {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.35;
}

.cst-field input,
.cst-field select,
.cst-field textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
}

.cst-field input,
.cst-field select {
  min-height: 40px;
  padding: 0 10px;
}

.cst-field textarea {
  padding: 10px;
  resize: vertical;
}

.handover-panel {
  display: none;
  margin-top: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfcfc;
  padding: 16px;
}

.handover-panel.active {
  display: block;
}

.handover-top-fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 16px;
}

.handover-top-fields label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.handover-top-fields input,
.handover-row input,
.handover-row select {
  width: 100%;
  min-height: 40px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  padding: 0 10px;
}

.handover-form {
  display: grid;
  gap: 16px;
}

.handover-section {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  padding: 14px;
}

.handover-table {
  display: grid;
  gap: 8px;
}

.handover-table-head,
.handover-row {
  display: grid;
  grid-template-columns: minmax(260px, 1.2fr) 120px minmax(220px, 0.9fr);
  gap: 10px;
  align-items: center;
}

.handover-table-head {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.handover-row {
  border-top: 1px solid var(--line);
  padding-top: 8px;
}

.handover-row strong {
  line-height: 1.35;
}

.handover-signoff {
  margin-top: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  padding: 14px;
}

.rating-upload {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, auto);
  gap: 14px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  padding: 14px;
  margin-top: 14px;
}

.rating-upload strong,
.rating-upload span {
  display: block;
}

.rating-upload span,
.completion-note {
  color: var(--muted);
  font-size: 13px;
}

.complete-button {
  min-height: 42px;
  border: 0;
  border-radius: 8px;
  background: #0b8068;
  color: white;
  padding: 0 16px;
  font-weight: 800;
  margin-top: 14px;
}

.remove-row-button {
  min-height: 36px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--red);
  padding: 0 10px;
  font-weight: 800;
}

.data-table th {
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
}

.data-table td:nth-child(3) {
  min-width: 280px;
}

ul {
  margin: 0;
  padding-left: 20px;
}

@media (max-width: 920px) {
  .app-header {
    align-items: center;
    flex-wrap: wrap;
  }

  .primary-nav {
    order: 3;
    flex-basis: 100%;
    justify-content: flex-start;
    overflow-x: auto;
  }

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

  .hero-copy h1 {
    font-size: 38px;
  }

  .process-grid,
  .detail-grid,
  .data-metrics,
  .data-layout {
    grid-template-columns: 1fr 1fr;
  }

  .attachment-item {
    grid-template-columns: 1fr;
  }

  .form-grid,
  .checklist-row {
    grid-template-columns: 1fr;
  }

  .stage-shell,
  .process-workspace {
    grid-template-columns: 1fr;
  }

  .stage-nav,
  .process-sidebar {
    position: static;
  }
}

@media (max-width: 650px) {
  .utility-bar {
    align-items: stretch;
    flex-direction: column;
    padding-right: 18px;
    padding-left: 18px;
  }

  .app-header {
    align-items: center;
    flex-direction: row;
    padding-right: 18px;
    padding-left: 18px;
  }

  .utility-bar nav,
  .utility-actions,
  .primary-nav {
    flex-wrap: wrap;
    gap: 10px;
  }

  .process-tabs {
    padding: 0 18px;
  }

  .company-lockup {
    width: auto;
  }

  .data-header {
    align-items: stretch;
    flex-direction: column;
  }

  .filter-panel {
    grid-template-columns: 1fr 1fr;
  }

  main {
    width: min(100% - 28px, 1180px);
    padding-top: 24px;
  }

  h1 {
    font-size: 28px;
  }

  .hero-panel {
    min-height: 0;
    padding: 24px;
  }

  .hero-copy h1 {
    font-size: 31px;
  }

  .process-grid,
  .detail-grid,
  .data-metrics,
  .data-layout,
  .filter-panel {
    grid-template-columns: 1fr;
  }

  .bar-row,
  .year-row,
  .status-chip,
  .rating-upload,
  .handover-table-head,
  .handover-row,
  .handover-top-fields,
  .cst-summary-grid,
  .cst-field-grid {
    grid-template-columns: 1fr;
  }
}
