:root {
  --navy: #1b2a4a;
  --navy-deep: #122039;
  --gold: #d4a853;
  --paper: #faf8f3;
  --ink: #1f2430;
  --muted: #5a6474;
  --line: #d8d3c7;
  --green: #2c5f2d;
  --rose: #8f4b4b;
  --rocket: #523096;
  --white: #ffffff;
  --shadow: 0 22px 60px rgba(18, 32, 57, 0.14);
  --radius: 22px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at top left, rgba(212, 168, 83, 0.12), transparent 26%),
    linear-gradient(180deg, #f4f0e8 0%, #ece7dc 100%);
  color: var(--ink);
  font-family: "Segoe UI", system-ui, -apple-system, "Helvetica Neue", Arial, sans-serif;
  line-height: 1.45;
}

body.nav-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

.jump-nav-toggle {
  display: none;
}

.jump-nav-backdrop {
  display: none;
}

.jump-nav {
  position: fixed;
  top: 50%;
  right: 24px;
  transform: translateY(-50%);
  z-index: 10;
  width: 220px;
  max-height: calc(100vh - 48px);
  padding: 14px;
  border: 1px solid rgba(27, 42, 74, 0.12);
  border-radius: 22px;
  background: rgba(250, 248, 243, 0.88);
  box-shadow: 0 18px 45px rgba(27, 42, 74, 0.14);
  backdrop-filter: blur(14px);
  overflow: hidden;
}

.jump-nav-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  padding: 2px 4px 12px;
  border-bottom: 1px solid rgba(27, 42, 74, 0.1);
}

.jump-nav-close {
  display: none;
}

.jump-kicker {
  margin-bottom: 4px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

.jump-current {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.35;
  color: var(--navy);
}

.jump-nav-list {
  display: grid;
  gap: 6px;
  margin-top: 12px;
  max-height: calc(100vh - 150px);
  overflow-y: auto;
  padding-right: 2px;
}

.jump-nav-list a {
  display: grid;
  grid-template-columns: 34px 1fr;
  align-items: center;
  gap: 10px;
  padding: 9px 10px;
  border: 1px solid transparent;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.55);
  transition: background-color 0.18s ease, border-color 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
}

.jump-nav-list a:hover {
  transform: translateX(-2px);
  border-color: rgba(82, 48, 150, 0.18);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 10px 22px rgba(27, 42, 74, 0.08);
}

.jump-nav-list a.is-active {
  border-color: rgba(82, 48, 150, 0.22);
  background: linear-gradient(135deg, rgba(27, 42, 74, 0.96), rgba(82, 48, 150, 0.88));
  box-shadow: 0 14px 28px rgba(27, 42, 74, 0.18);
}

.jump-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: rgba(27, 42, 74, 0.08);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--navy);
}

.jump-label {
  font-size: 13px;
  font-weight: 600;
  line-height: 1.2;
  color: var(--navy);
}

.jump-nav-list a.is-active .jump-number {
  background: rgba(255, 255, 255, 0.16);
  color: var(--white);
}

.jump-nav-list a.is-active .jump-label {
  color: var(--white);
}

.jump-nav-list::-webkit-scrollbar {
  width: 8px;
}

.jump-nav-list::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: rgba(27, 42, 74, 0.16);
}

@media (max-width: 1280px) {
  .jump-nav {
    right: 12px;
    width: 196px;
  }
}

@media (max-width: 1120px) {
  .jump-nav {
    position: sticky;
    top: 14px;
    right: auto;
    transform: none;
    width: min(760px, calc(100% - 24px));
    max-height: none;
    margin: 0 auto 18px;
  }

  .jump-nav-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-height: none;
  }
}

@media (max-width: 768px) {
  .jump-nav-toggle {
    position: fixed;
    right: 16px;
    bottom: 16px;
    z-index: 30;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 18px;
    border: none;
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(27, 42, 74, 0.98), rgba(82, 48, 150, 0.94));
    color: var(--white);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.06em;
    box-shadow: 0 16px 34px rgba(18, 32, 57, 0.28);
    cursor: pointer;
    transition: opacity 0.2s ease, transform 0.2s ease;
  }

  body.nav-open .jump-nav-toggle {
    opacity: 0;
    pointer-events: none;
    transform: translateY(12px);
  }

  .jump-toggle-lines {
    display: flex;
    flex-direction: column;
    gap: 3px;
    width: 16px;
  }

  .jump-toggle-lines span {
    display: block;
    height: 2px;
    border-radius: 999px;
    background: var(--white);
  }

  .jump-nav-backdrop {
    position: fixed;
    inset: 0;
    z-index: 18;
    display: block;
    background: rgba(18, 32, 57, 0.48);
    backdrop-filter: none;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.22s ease;
  }

  body.nav-open .jump-nav-backdrop {
    opacity: 1;
    pointer-events: auto;
  }

  .jump-nav {
    position: fixed;
    top: auto;
    right: 10px;
    bottom: 10px;
    left: 10px;
    display: flex;
    flex-direction: column;
    margin: 0;
    transform: translateY(calc(100% + 12px));
    width: auto;
    max-height: min(76vh, 620px);
    border-radius: 24px;
    z-index: 24;
    background: var(--paper);
    backdrop-filter: none;
    opacity: 0;
    pointer-events: none;
    transition: transform 0.28s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.22s ease;
  }

  .jump-nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .jump-nav-head {
    position: sticky;
    top: 0;
    padding-top: 4px;
    background: rgba(250, 248, 243, 0.96);
    backdrop-filter: blur(10px);
    z-index: 2;
  }

  .jump-nav-close {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 7px 13px;
    border: 1px solid rgba(27, 42, 74, 0.12);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.74);
    color: var(--navy);
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
  }

  .jump-nav-list {
    grid-template-columns: 1fr;
    flex: 1 1 auto;
    min-height: 0;
    margin-top: 10px;
    max-height: none;
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
    touch-action: pan-y;
    padding-bottom: 18px;
  }
}

.deck {
  padding: 34px 0 60px;
}

.page {
  position: relative;
  width: 8.5in;
  min-height: 11in;
  margin: 0 auto 24px;
  padding: 0.62in 0.68in 0.7in;
  background: var(--paper);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.page::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.3), transparent 22%),
    linear-gradient(135deg, rgba(82, 48, 150, 0.04), transparent 30%);
  pointer-events: none;
}

.page > * {
  position: relative;
  z-index: 1;
}

.packet-header {
  margin-bottom: 28px;
}

.packet-rail {
  height: 14px;
  border-radius: 999px;
  background:
    linear-gradient(90deg, var(--navy) 0 44%, var(--gold) 44% 68%, var(--rocket) 68% 100%);
  margin-bottom: 16px;
}

.brand-shell {
  display: grid;
  grid-template-columns: 180px 1fr 180px;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  border: 1px solid rgba(27, 42, 74, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.8);
}

.brand-logo {
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.brand-logo img {
  max-height: 42px;
  max-width: 100%;
  width: auto;
  object-fit: contain;
}

.brand-logo.right {
  justify-content: flex-end;
  padding: 10px 16px;
  border-radius: 14px;
  background: var(--rocket);
}

.brand-logo.right img {
  max-height: 26px;
}

.brand-center {
  text-align: center;
  border-left: 1px solid rgba(27, 42, 74, 0.12);
  border-right: 1px solid rgba(27, 42, 74, 0.12);
  padding: 2px 18px;
}

.brand-kicker {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 7px;
}

.brand-title {
  margin: 0 auto;
  max-width: 320px;
  font: 700 26px/1.02 Georgia, "Times New Roman", serif;
  letter-spacing: -0.03em;
  color: var(--navy);
}

.brand-subtitle {
  margin: 6px auto 0;
  max-width: 300px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  line-height: 1.35;
  color: var(--navy);
}

.page-number {
  position: absolute;
  right: 0.68in;
  bottom: 0.36in;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(27, 42, 74, 0.5);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--rocket);
}

.eyebrow::before {
  content: "";
  width: 32px;
  height: 1px;
  background: rgba(82, 48, 150, 0.4);
}

h1,
h2,
h3,
h4 {
  margin: 0 0 10px;
  font-family: Georgia, "Times New Roman", serif;
  color: var(--navy);
  line-height: 1.05;
}

h1 {
  font-size: 42px;
  letter-spacing: -0.03em;
}

h2 {
  font-size: 32px;
  letter-spacing: -0.03em;
}

h3 {
  font-size: 20px;
  letter-spacing: -0.02em;
}

h4 {
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

p {
  margin: 0 0 14px;
  font-size: 14px;
  color: var(--ink);
}

.lede {
  font-size: 17px;
  line-height: 1.55;
  color: var(--muted);
  max-width: 89%;
}

.muted {
  color: var(--muted);
}

.accent {
  color: var(--green);
}

.two-col {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
}

.equal-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 24px;
}

.metric-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 118px;
  padding: 18px 16px;
  border: 1px solid rgba(27, 42, 74, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.82);
}

.metric-value {
  display: flex;
  align-items: baseline;
  justify-content: center;
  min-height: 38px;
  margin-bottom: 8px;
  font: 700 32px/1 Georgia, "Times New Roman", serif;
  color: var(--navy);
  text-align: center;
}

.metric-label {
  text-align: center;
  font-size: 11px;
  letter-spacing: 0.08em;
  line-height: 1.35;
  text-transform: uppercase;
  color: var(--muted);
}

.trust-ribbon {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
  padding: 16px 20px;
  border: 1px solid rgba(44, 95, 45, 0.18);
  border-radius: 18px;
  background: rgba(44, 95, 45, 0.06);
}

.trust-item {
  text-align: center;
}

.trust-item strong {
  display: block;
  margin-bottom: 4px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--navy);
}

.trust-item span {
  font-size: 11px;
  line-height: 1.35;
  color: var(--muted);
}

.panel {
  padding: 18px 20px;
  border: 1px solid rgba(27, 42, 74, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.74);
}

.panel.dark {
  background: var(--navy);
  border-color: transparent;
  color: rgba(255, 255, 255, 0.9);
}

.panel.dark h3,
.panel.dark h4,
.panel.dark p,
.panel.dark li {
  color: rgba(255, 255, 255, 0.92);
}

.panel.gold {
  background: rgba(212, 168, 83, 0.14);
}

.quote-mark {
  margin-bottom: 10px;
  font: 700 34px/1 Georgia, "Times New Roman", serif;
  color: rgba(212, 168, 83, 0.95);
}

ul.clean {
  margin: 0;
  padding-left: 18px;
}

ul.clean li {
  margin-bottom: 10px;
  font-size: 14px;
  color: var(--ink);
}

.cover {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-bottom: 0.6in;
}

.cover-hero {
  position: relative;
  min-height: 4.8in;
  margin-top: 16px;
  padding: 34px;
  border-radius: 28px;
  background:
    radial-gradient(circle at 82% 20%, rgba(212, 168, 83, 0.18), transparent 19%),
    linear-gradient(135deg, rgba(82, 48, 150, 0.12), transparent 42%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.05) 0, rgba(255, 255, 255, 0.05) 1px, transparent 1px, transparent 46px),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.04) 0, rgba(255, 255, 255, 0.04) 1px, transparent 1px, transparent 46px),
    linear-gradient(135deg, rgba(18, 32, 57, 0.96), rgba(18, 32, 57, 0.82));
  color: var(--white);
  overflow: hidden;
}

.cover-hero::after {
  content: "";
  position: absolute;
  inset: auto -40px -80px auto;
  width: 240px;
  height: 240px;
  border-radius: 999px;
  background: rgba(212, 168, 83, 0.2);
  filter: blur(50px);
}

.cover-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  padding: 8px 14px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.cover .cover-hero h1,
.cover .cover-hero p,
.cover .cover-hero h3 {
  color: var(--white);
  max-width: 86%;
}

.cover .cover-hero .lede {
  color: rgba(255, 255, 255, 0.84);
}

.cover-band {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 16px;
  margin-top: 22px;
}

.cover-note {
  padding: 18px 20px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(5px);
}

.cover-note h4 {
  color: rgba(255, 255, 255, 0.74);
  margin-bottom: 12px;
}

.signature-line {
  display: inline-block;
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid rgba(27, 42, 74, 0.18);
  font-size: 13px;
  color: var(--muted);
}

.callout-stack {
  display: grid;
  gap: 12px;
}

.callout {
  padding: 14px 16px;
  border-left: 3px solid var(--gold);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.88);
}

.callout strong {
  display: block;
  margin-bottom: 5px;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--navy);
}

.table-scroll {
  overflow-x: auto;
  margin-top: 12px;
}

.data-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 690px;
  font-size: 12px;
}

.data-table th,
.data-table td {
  padding: 10px 9px;
  border-bottom: 1px solid rgba(27, 42, 74, 0.12);
  text-align: left;
  vertical-align: top;
}

.data-table th {
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}

.pill {
  display: inline-block;
  padding: 4px 9px;
  border-radius: 999px;
  background: rgba(27, 42, 74, 0.08);
  font-size: 10px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--navy);
}

.risk {
  background: rgba(143, 75, 75, 0.12);
  color: var(--rose);
}

.stable {
  background: rgba(44, 95, 45, 0.12);
  color: var(--green);
}

.age-bars {
  display: grid;
  gap: 12px;
  margin-top: 20px;
}

.age-row {
  display: grid;
  grid-template-columns: 145px 1fr 46px;
  align-items: center;
  gap: 12px;
}

.age-label {
  font-size: 12px;
  color: var(--ink);
}

.age-track {
  height: 12px;
  border-radius: 999px;
  background: rgba(27, 42, 74, 0.08);
  overflow: hidden;
}

.age-fill {
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--gold), var(--rocket));
}

.age-value {
  font-size: 12px;
  color: var(--muted);
  text-align: right;
}

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

.signal-card {
  min-height: 152px;
  padding: 18px;
  border: 1px solid rgba(27, 42, 74, 0.12);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.8);
}

.signal-card h3 {
  font-size: 19px;
  margin-bottom: 8px;
}

.signal-card p {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 10px;
}

.trust-stack {
  display: grid;
  gap: 10px;
  margin-top: 20px;
}

.trust-block {
  padding: 14px 16px;
  border-left: 3px solid var(--green);
  border-radius: 14px;
  background: rgba(44, 95, 45, 0.06);
}

.trust-block h4 {
  margin-bottom: 6px;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--green);
}

.trust-block p {
  margin: 0;
  font-size: 13px;
  line-height: 1.45;
  color: var(--ink);
}

.ops-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 20px;
}

.ops-card {
  padding: 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(27, 42, 74, 0.12);
}

.ops-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  margin-bottom: 14px;
  border-radius: 999px;
  background: var(--navy);
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
}

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

.service-card {
  min-height: 140px;
  padding: 18px 16px;
  border: 1px solid rgba(27, 42, 74, 0.12);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.82);
}

.service-card h3 {
  font-size: 18px;
}

.service-card p {
  font-size: 13px;
  color: var(--muted);
}

.workflow {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
  margin-top: 20px;
}

.workflow-step {
  position: relative;
  padding: 16px 14px 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(27, 42, 74, 0.12);
}

.workflow-step::after {
  content: "";
  position: absolute;
  top: 28px;
  right: -10px;
  width: 20px;
  height: 1px;
  background: rgba(27, 42, 74, 0.22);
}

.workflow-step:last-child::after {
  display: none;
}

.step-index {
  margin-bottom: 14px;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--rocket);
}

.check-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 18px;
}

.check-list {
  padding: 18px 18px 10px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(27, 42, 74, 0.12);
}

.check-list ul {
  margin: 0;
  padding-left: 18px;
}

.check-list li {
  margin-bottom: 9px;
  font-size: 13px;
}

.roadmap {
  display: grid;
  gap: 14px;
  margin-top: 20px;
}

.roadmap-row {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 16px;
  align-items: start;
  padding: 16px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(27, 42, 74, 0.12);
}

.roadmap-phase {
  padding: 12px 14px;
  border-radius: 16px;
  background: var(--navy);
  color: var(--white);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-align: center;
}

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

.governance-card {
  padding: 18px 16px;
  border-radius: 20px;
  border: 1px solid rgba(27, 42, 74, 0.12);
  background: rgba(255, 255, 255, 0.82);
}

.fit-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 18px;
}

.fit-card {
  padding: 20px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(27, 42, 74, 0.12);
}

.closing-panel {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 20px;
  margin-top: 18px;
}

.contact-card {
  padding: 24px;
  border-radius: 24px;
  background: var(--navy);
  color: rgba(255, 255, 255, 0.94);
}

.contact-card h2,
.contact-card p,
.contact-card h4 {
  color: rgba(255, 255, 255, 0.94);
}

.contact-line {
  margin-bottom: 10px;
  font-size: 15px;
}

.mini-note {
  font-size: 12px;
  color: var(--muted);
}

@media (max-width: 900px) {
  .page {
    width: calc(100vw - 24px);
    min-height: auto;
    padding: 28px 20px 56px;
  }

  .brand-shell {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .brand-center {
    border-left: none;
    border-right: none;
    border-top: 1px solid rgba(27, 42, 74, 0.12);
    border-bottom: 1px solid rgba(27, 42, 74, 0.12);
    padding: 12px 0;
  }

  .brand-logo,
  .brand-logo.right {
    justify-content: center;
  }

  .cover-band,
  .two-col,
  .equal-col,
  .signal-grid,
  .ops-strip,
  .service-grid,
  .workflow,
  .check-grid,
  .governance-grid,
  .fit-grid,
  .closing-panel {
    grid-template-columns: 1fr;
  }

  .workflow-step::after {
    display: none;
  }

  .roadmap-row {
    grid-template-columns: 1fr;
  }

  .roadmap-phase {
    width: fit-content;
    min-width: 120px;
  }

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

@media (max-width: 560px) {
  .metric-grid,
  .trust-ribbon {
    grid-template-columns: 1fr;
  }

  .page {
    padding: 24px 16px 52px;
  }

  .brand-title {
    font-size: 22px;
  }

  .brand-subtitle {
    font-size: 10px;
  }

  .page-number {
    right: 16px;
    bottom: 14px;
  }
}

@media print {
  @page {
    size: Letter;
    margin: 0;
  }

  body {
    background: #ffffff;
  }

  .jump-nav {
    display: none;
  }

  .jump-nav-toggle,
  .jump-nav-backdrop {
    display: none !important;
  }

  .deck {
    padding: 0;
  }

  .page {
    margin: 0;
    width: 8.5in;
    height: 11in;
    min-height: 11in;
    box-shadow: none;
    page-break-after: always;
  }

  .page:last-child {
    page-break-after: auto;
  }
}
