:root {
  color-scheme: light;
  --bg: #f5f7f4;
  --surface: #ffffff;
  --surface-muted: #eef3ef;
  --ink: #17211b;
  --muted: #66736a;
  --line: #d8e0da;
  --green: #17805c;
  --green-dark: #0e6045;
  --blue: #2b67b1;
  --amber: #b46b12;
  --red: #b93f3f;
  --purple: #6b5aa6;
  --shadow: 0 14px 32px rgba(24, 36, 29, 0.08);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--bg);
  color: var(--ink);
  letter-spacing: 0;
}

button,
input,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

.app {
  display: grid;
  grid-template-columns: 292px minmax(0, 1fr);
  min-height: 100vh;
}

.sidebar {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow-y: auto;
  border-right: 1px solid var(--line);
  background: #fbfcfa;
  padding: 20px 16px;
}

.brand {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  margin-bottom: 22px;
}

.mark {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 8px;
  background: var(--green-dark);
  color: white;
  font-size: 1.15rem;
  font-weight: 800;
}

.brand h1,
.topbar h2,
.section-summary h3,
.panel h3,
.form-panel h3 {
  margin: 0;
  line-height: 1.15;
}

.brand h1 {
  font-size: 1rem;
}

.eyebrow {
  margin: 0 0 4px;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.nav,
.nav-group {
  display: grid;
  gap: 6px;
}

.nav-group {
  margin-top: 16px;
}

.nav-group p {
  margin: 6px 8px 2px;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 800;
}

.nav-button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  width: 100%;
  min-height: 38px;
  border: 1px solid transparent;
  border-radius: 8px;
  background: transparent;
  color: var(--ink);
  padding: 8px 10px;
  text-align: left;
}

.nav-button span:first-child {
  min-width: 0;
  overflow-wrap: anywhere;
}

.nav-button:hover,
.nav-button.is-active {
  border-color: var(--line);
  background: var(--surface-muted);
}

.nav-button.is-active {
  color: var(--green-dark);
  font-weight: 800;
}

.nav-score,
.score-chip {
  flex: 0 0 auto;
  border-radius: 999px;
  background: #e8efe9;
  color: var(--green-dark);
  padding: 3px 8px;
  font-size: 0.74rem;
  font-weight: 800;
}

.workspace {
  min-width: 0;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 76px;
  border-bottom: 1px solid var(--line);
  background: rgba(245, 247, 244, 0.94);
  padding: 14px 24px;
  backdrop-filter: blur(10px);
}

.topbar > div:first-child,
.panel-header > div,
.section-heading > div {
  min-width: 0;
}

.topbar h2 {
  font-size: 1.35rem;
  overflow-wrap: anywhere;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.save-state {
  align-self: center;
  color: var(--muted);
  font-size: 0.82rem;
  white-space: nowrap;
}

.ghost-button,
.danger-button {
  min-height: 36px;
  border-radius: 8px;
  padding: 7px 11px;
  font-weight: 800;
}

.ghost-button {
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--ink);
  text-decoration: none;
}

a.ghost-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.danger-button {
  border: 1px solid #e7c7c7;
  background: #fff5f5;
  color: var(--red);
}

.main {
  padding: 24px;
}

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

.metric-card,
.panel,
.form-panel,
.section-summary {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.metric-card {
  min-height: 132px;
  padding: 18px;
}

.metric-card p,
.metric-card span {
  margin: 0;
  color: var(--muted);
}

.metric-card strong {
  display: block;
  margin: 12px 0 6px;
  color: var(--green-dark);
  font-size: clamp(2rem, 5vw, 3.2rem);
  line-height: 0.95;
}

.metric-card.accent strong {
  color: var(--blue);
}

.metric-card.neutral strong {
  color: var(--ink);
}

.dashboard-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.85fr);
  gap: 16px;
}

.panel {
  min-width: 0;
  padding: 18px;
}

.panel.wide {
  grid-column: span 1;
}

.panel-header,
.section-heading {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
}

.panel-header h3 {
  overflow-wrap: anywhere;
}

.score-list {
  display: grid;
  gap: 12px;
}

.score-list.compact {
  gap: 14px;
}

.score-row {
  display: grid;
  gap: 6px;
}

.score-row-top,
.adjustment-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.score-row-top span {
  min-width: 0;
  overflow-wrap: anywhere;
}

.score-row-top strong,
.adjustment-row strong {
  white-space: nowrap;
}

.bar-track {
  width: 100%;
  height: 9px;
  overflow: hidden;
  border-radius: 999px;
  background: #e8ece7;
}

.bar-fill {
  width: 0;
  height: 100%;
  border-radius: 999px;
  background: var(--green);
  transition: width 160ms ease;
}

.bar-fill[data-tone="excellent"] {
  background: var(--green-dark);
}

.bar-fill[data-tone="good"] {
  background: var(--green);
}

.bar-fill[data-tone="fair"] {
  background: var(--amber);
}

.bar-fill[data-tone="low"] {
  background: var(--red);
}

.adjustments {
  display: grid;
  gap: 12px;
}

.adjustment-row {
  min-height: 42px;
  border-bottom: 1px solid var(--line);
}

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

.sdg-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
  gap: 10px;
}

.sdg-tile {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr) max-content;
  gap: 8px 10px;
  align-items: center;
  width: 100%;
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 10px;
  background: #fbfcfa;
  color: var(--ink);
  text-align: left;
}

.sdg-tile:hover,
.sdg-tile:focus-visible {
  border-color: #b8d8c8;
  background: #f3f8f5;
  outline: none;
}

.sdg-tile img {
  width: 46px;
  height: 46px;
  border-radius: 6px;
  object-fit: cover;
}

.sdg-tile span {
  min-width: 0;
  max-width: 100%;
  overflow-wrap: anywhere;
  font-size: 0.88rem;
  line-height: 1.25;
}

.sdg-tile strong {
  white-space: nowrap;
}

.sdg-tile .bar-track {
  grid-column: 1 / -1;
}

.sdg-disclaimer {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.4;
}

.sdg-nav-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(44px, 1fr));
  gap: 7px;
}

.sdg-nav-button {
  position: relative;
  min-width: 0;
  overflow: hidden;
  border: 1px solid transparent;
  border-radius: 8px;
  background: transparent;
  padding: 3px;
}

.sdg-nav-button:hover,
.sdg-nav-button.is-active {
  border-color: var(--line);
  background: var(--surface-muted);
}

.sdg-nav-button img {
  display: block;
  width: 100%;
  aspect-ratio: 1;
  border-radius: 6px;
  object-fit: cover;
}

.sdg-nav-button span {
  position: absolute;
  right: 2px;
  bottom: 2px;
  max-width: calc(100% - 4px);
  overflow: hidden;
  border: 1px solid var(--surface);
  border-radius: 999px;
  background: var(--surface);
  color: var(--green-dark);
  padding: 2px 4px;
  font-size: 0.6rem;
  font-weight: 900;
  box-shadow: 0 3px 8px rgba(24, 36, 29, 0.16);
}

.sdg-summary-page,
.sdg-summary-grid {
  display: grid;
  gap: 16px;
}

.sdg-summary-grid {
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
}

.sdg-hero-panel {
  display: grid;
  grid-template-columns: minmax(132px, 176px) minmax(0, 1fr) minmax(160px, 220px);
  gap: 22px;
  align-items: center;
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  padding: 22px;
  box-shadow: var(--shadow);
}

.sdg-hero-icon {
  width: 176px;
  height: 176px;
  border-radius: 8px;
  object-fit: cover;
}

.sdg-hero-copy h3 {
  margin: 0 0 10px;
  font-size: clamp(1.7rem, 4vw, 2.7rem);
  line-height: 1.05;
  overflow-wrap: anywhere;
}

.sdg-hero-copy p {
  max-width: 62ch;
  margin: 0;
  color: var(--muted);
  line-height: 1.45;
}

.sdg-hero-score {
  display: grid;
  gap: 12px;
  align-content: center;
}

.sdg-hero-score span {
  color: var(--green-dark);
  font-size: clamp(2.4rem, 6vw, 4.4rem);
  font-weight: 900;
  line-height: 1;
}

.driver-row {
  display: grid;
  gap: 7px;
  min-width: 0;
}

.driver-row .score-row-top {
  align-items: flex-start;
  flex-wrap: wrap;
}

.driver-link {
  border: 0;
  background: transparent;
  color: var(--green-dark);
  padding: 0;
  text-align: left;
  font-weight: 800;
}

.driver-link:hover,
.driver-link:focus-visible {
  text-decoration: underline;
  outline: none;
}

.driver-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
}

.driver-meta span {
  border-radius: 999px;
  background: var(--surface-muted);
  color: var(--muted);
  padding: 3px 7px;
  font-size: 0.72rem;
  font-weight: 900;
}

.section-layout {
  display: grid;
  grid-template-columns: minmax(240px, 340px) minmax(0, 1fr);
  gap: 18px;
  align-items: start;
}

.section-summary {
  position: sticky;
  top: 100px;
  padding: 20px;
}

.section-summary p {
  color: var(--muted);
}

.large-score {
  margin: 22px 0 8px;
}

.large-score span {
  display: block;
  margin-bottom: 12px;
  color: var(--green-dark);
  font-size: 3rem;
  font-weight: 900;
  line-height: 1;
}

.score-label {
  margin: 0 0 18px;
}

.subscore-grid {
  display: grid;
  gap: 10px;
  margin-top: 16px;
}

.small-score {
  display: grid;
  gap: 7px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 10px;
}

.small-score span {
  color: var(--muted);
  font-size: 0.86rem;
}

.small-score strong {
  font-size: 1.2rem;
}

.form-panel {
  padding: 18px;
}

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

.profile-grid {
  grid-template-columns: repeat(3, minmax(180px, 1fr));
}

.field-heading {
  grid-column: 1 / -1;
  border-top: 1px solid var(--line);
  padding-top: 18px;
}

.field-heading:first-child {
  border-top: 0;
  padding-top: 0;
}

.field-heading h4 {
  margin: 0;
  font-size: 1rem;
}

.input-field,
.check-field {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfcfa;
  padding: 12px;
}

.input-field {
  display: grid;
  align-content: start;
  gap: 8px;
}

.input-field.full {
  grid-column: 1 / -1;
}

.input-field span,
.check-field span {
  line-height: 1.35;
}

.input-field > span {
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 800;
}

.input-shell {
  display: flex;
  align-items: center;
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.input-shell input {
  width: 100%;
  min-width: 0;
  border: 0;
  background: transparent;
  padding: 10px 11px;
  color: var(--ink);
  outline: none;
}

.prefix,
.suffix {
  flex: 0 0 auto;
  color: var(--muted);
  padding: 0 10px;
  font-weight: 800;
}

textarea {
  width: 100%;
  min-height: 108px;
  resize: vertical;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  padding: 10px 11px;
  color: var(--ink);
  outline: none;
}

.check-field {
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
}

.check-field input {
  width: 18px;
  height: 18px;
  margin: 1px 0 0;
  accent-color: var(--green);
}

.choice-field {
  grid-column: 1 / -1;
}

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

.segmented label {
  min-width: 0;
}

.segmented input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.segmented span {
  display: grid;
  min-height: 38px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  color: var(--muted);
  font-weight: 800;
}

.segmented input:checked + span {
  border-color: #b8d8c8;
  background: #e7f3ec;
  color: var(--green-dark);
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.process-page {
  background: #fbfcfa;
}

.process-page a {
  color: inherit;
}

.process-header {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-bottom: 1px solid rgba(23, 33, 27, 0.12);
  background: rgba(251, 252, 250, 0.93);
  padding: 18px clamp(20px, 6vw, 80px);
  box-shadow: 0 10px 28px rgba(23, 33, 27, 0.08);
  backdrop-filter: blur(14px);
}

.process-logo,
.process-links,
.process-cta-row {
  display: flex;
  align-items: center;
}

.process-logo {
  gap: 10px;
  color: #17211b;
  font-weight: 900;
  text-decoration: none;
}

.process-logo .mark {
  width: 38px;
  height: 38px;
  font-size: 1rem;
}

.process-links {
  gap: 8px;
}

.process-links a,
.process-nav-cta,
.primary-cta,
.secondary-cta {
  min-height: 42px;
  border-radius: 8px;
  padding: 10px 14px;
  font-weight: 850;
  text-decoration: none;
}

.process-links a {
  color: #17211b;
  font-weight: 900;
}

.process-links .process-nav-cta {
  border: 1px solid #083f30;
  background: #083f30;
  color: #ffffff;
}

.process-links .process-nav-cta:visited,
.process-links .process-nav-cta:hover,
.process-links .process-nav-cta:focus-visible {
  color: #ffffff;
}

.process-links a:not(.process-nav-cta):hover {
  background: #eef3ef;
}

.process-hero {
  position: relative;
  isolation: isolate;
  display: flex;
  align-items: center;
  min-height: 82svh;
  overflow: hidden;
  padding: 112px clamp(20px, 6vw, 80px) 72px;
  background: #eef3ef;
}

.process-hero::before {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(
      90deg,
      rgba(251, 252, 250, 0.98) 0%,
      rgba(251, 252, 250, 0.92) 34%,
      rgba(251, 252, 250, 0.44) 58%,
      rgba(23, 33, 27, 0.08) 100%
    ),
    url("./assets/bsat-process-hero.png");
  background-position: center;
  background-size: cover;
  content: "";
}

.process-hero::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background: rgba(23, 33, 27, 0.14);
  content: "";
}

.process-hero-content {
  width: min(100%, 660px);
}

.process-hero h1,
.process-section-heading h2,
.process-split h2,
.process-final-cta h2 {
  margin: 0;
  line-height: 0.98;
}

.process-hero h1 {
  max-width: 760px;
  color: #111b15;
  font-size: 5rem;
  font-weight: 950;
}

.process-hero-content > p:not(.eyebrow) {
  max-width: 620px;
  margin: 22px 0 0;
  color: #34423a;
  font-size: 1.22rem;
  line-height: 1.55;
}

.process-cta-row {
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.primary-cta,
.secondary-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 152px;
}

.process-page .primary-cta {
  border: 1px solid #083f30;
  background: #083f30;
  color: #ffffff;
  box-shadow: 0 10px 22px rgba(8, 63, 48, 0.22);
}

.process-page .primary-cta:visited {
  color: #ffffff;
}

.process-page .primary-cta:hover {
  border-color: #062f24;
  background: #062f24;
  color: #ffffff;
}

.secondary-cta {
  border: 1px solid rgba(23, 33, 27, 0.18);
  background: rgba(255, 255, 255, 0.76);
  color: var(--ink);
}

.process-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 560px;
  margin: 42px 0 0;
  border-top: 1px solid rgba(23, 33, 27, 0.16);
  padding-top: 18px;
}

.process-proof div {
  border-left: 1px solid rgba(23, 33, 27, 0.14);
  padding: 0 18px;
}

.process-proof div:first-child {
  border-left: 0;
  padding-left: 0;
}

.process-proof dt {
  color: var(--green-dark);
  font-size: 2.1rem;
  font-weight: 950;
  line-height: 1;
}

.process-proof dd {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 800;
}

.process-band,
.process-split,
.process-final-cta {
  padding: 72px clamp(20px, 6vw, 80px);
}

.process-band {
  background: #ffffff;
}

.process-section-heading {
  width: min(100%, 880px);
  margin-bottom: 28px;
}

.process-section-heading h2,
.process-split h2,
.process-final-cta h2 {
  color: #17211b;
  font-size: 2.65rem;
}

.process-section-heading p:not(.eyebrow),
.process-split p {
  max-width: 760px;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.65;
}

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

.process-steps article,
.outcome-grid article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfcfa;
}

.process-steps article {
  display: grid;
  align-content: start;
  gap: 12px;
  min-height: 250px;
  padding: 20px;
}

.process-steps span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 999px;
  background: #e7f3ec;
  color: var(--green-dark);
  font-weight: 950;
}

.process-steps h3,
.outcome-grid strong {
  margin: 0;
  color: var(--ink);
  font-size: 1.12rem;
}

.process-steps p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.process-split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(340px, 1.1fr);
  gap: 42px;
  align-items: start;
  background: #eef3ef;
}

.text-link {
  display: inline-flex;
  margin-top: 10px;
  color: var(--blue);
  font-weight: 900;
}

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

.outcome-grid article {
  display: grid;
  gap: 10px;
  min-height: 150px;
  padding: 18px;
}

.outcome-grid article:nth-child(2) {
  border-color: #c9d9ee;
}

.outcome-grid article:nth-child(3) {
  border-color: #ead5b9;
}

.outcome-grid span {
  color: var(--muted);
  line-height: 1.5;
}

.process-final-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: #17211b;
  color: #ffffff;
}

.process-final-cta .eyebrow,
.process-final-cta h2 {
  color: #ffffff;
}

.process-final-cta h2 {
  max-width: 820px;
  font-size: 2.25rem;
}

.process-final-cta .primary-cta {
  border-color: #ffffff;
  background: #ffffff;
  color: #17211b;
  box-shadow: none;
}

.process-final-cta .primary-cta:visited {
  color: #17211b;
}

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

  .sidebar {
    position: static;
    height: auto;
    max-height: none;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

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

  .nav-group {
    margin-top: 0;
  }

  .section-layout,
  .dashboard-grid,
  .sdg-summary-grid,
  .sdg-hero-panel {
    grid-template-columns: 1fr;
  }

  .section-summary {
    position: static;
  }

  .score-hero {
    grid-template-columns: repeat(2, minmax(160px, 1fr));
  }

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

  .process-split {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .topbar {
    position: static;
    align-items: stretch;
    flex-direction: column;
  }

  .actions {
    justify-content: flex-start;
  }

  .main {
    padding: 14px;
  }

  .nav,
  .score-hero,
  .field-grid,
  .profile-grid,
  .sdg-grid {
    grid-template-columns: 1fr;
  }

  .sdg-nav-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }

  .sdg-hero-icon {
    width: 132px;
    height: 132px;
  }

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

  .process-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
    padding: 16px 18px;
  }

  .process-links {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .process-links a {
    flex: 0 0 auto;
  }

  .process-hero {
    min-height: auto;
    padding: 160px 18px 48px;
  }

  .process-hero::before {
    background:
      linear-gradient(
        180deg,
        rgba(251, 252, 250, 0.98) 0%,
        rgba(251, 252, 250, 0.94) 54%,
        rgba(251, 252, 250, 0.72) 100%
      ),
      url("./assets/bsat-process-hero.png");
    background-position: 62% center;
    background-size: cover;
  }

  .process-hero h1 {
    font-size: 2.85rem;
  }

  .process-hero-content > p:not(.eyebrow) {
    font-size: 1rem;
  }

  .process-proof,
  .process-steps,
  .outcome-grid {
    grid-template-columns: 1fr;
  }

  .process-proof {
    gap: 14px;
  }

  .process-proof div,
  .process-proof div:first-child {
    border-left: 0;
    border-top: 1px solid rgba(23, 33, 27, 0.14);
    padding: 14px 0 0;
  }

  .process-proof div:first-child {
    border-top: 0;
    padding-top: 0;
  }

  .process-band,
  .process-split,
  .process-final-cta {
    padding: 48px 18px;
  }

  .process-section-heading h2,
  .process-split h2,
  .process-final-cta h2 {
    font-size: 2rem;
  }

  .process-final-cta {
    align-items: stretch;
    flex-direction: column;
  }
}

@media print {
  .sidebar,
  .actions,
  .topbar {
    display: none;
  }

  .app,
  .section-layout,
  .dashboard-grid,
  .score-hero {
    display: block;
  }

  .main {
    padding: 0;
  }

  .panel,
  .metric-card,
  .section-summary,
  .form-panel {
    box-shadow: none;
    break-inside: avoid;
    margin-bottom: 14px;
  }
}
