@font-face {
  font-family: "Deck Caladea";
  src: url("/assets/invest-deck/fonts/Caladea-Regular.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Deck Caladea";
  src: url("/assets/invest-deck/fonts/Caladea-Bold.ttf") format("truetype");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

@font-face {
  font-family: "Deck Carlito";
  src: url("/assets/invest-deck/fonts/Carlito-Regular.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Deck Carlito";
  src: url("/assets/invest-deck/fonts/Carlito-Bold.ttf") format("truetype");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

:root {
  --deck-navy: #101d38;
  --deck-navy-card: #213966;
  --deck-ink: #17284b;
  --deck-copy: #53617a;
  --deck-muted: #8190a9;
  --deck-paper: #fbfbfa;
  --deck-panel: #f0f3f8;
  --deck-border: #d4dbe7;
  --deck-gold: #d2a54b;
  --deck-green: #198254;
  --deck-purple: #654bc5;
  --deck-teal: #238271;
}

.deck-experience {
  background: var(--deck-navy);
  color: var(--deck-ink);
  font-family: "Deck Carlito", Calibri, Arial, sans-serif;
  min-height: 100svh;
  overflow-x: hidden;
  position: relative;
}

.deck-progress {
  background: var(--deck-gold);
  height: 3px;
  left: 0;
  position: fixed;
  top: 0;
  transition: width 120ms linear;
  z-index: 70;
}

.deck-toolbar {
  align-items: center;
  background: color-mix(in srgb, var(--deck-navy) 90%, transparent);
  border-bottom: 1px solid rgb(255 255 255 / 12%);
  color: #fff;
  display: flex;
  gap: 18px;
  justify-content: space-between;
  left: 0;
  min-height: 56px;
  padding: 9px 22px;
  position: fixed;
  right: 0;
  top: 3px;
  z-index: 60;
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}

.deck-toolbar__brand {
  align-items: center;
  color: #fff;
  display: flex;
  text-decoration: none;
}

.deck-toolbar__logo {
  display: block;
  height: 34px;
  object-fit: contain;
  object-position: left center;
  width: auto;
}

.deck-toolbar__actions {
  align-items: center;
  display: flex;
  gap: 9px;
}

.deck-sign-out {
  position: relative;
}

.deck-sign-out__button:disabled {
  cursor: wait;
  opacity: 0.72;
}

.deck-sign-out__error {
  background: #fff;
  border: 1px solid #fecaca;
  border-radius: 6px;
  color: #b91c1c;
  font-size: 12px;
  padding: 7px 9px;
  position: absolute;
  right: 0;
  top: calc(100% + 8px);
  white-space: nowrap;
}

.deck-mobile-menu,
.deck-mobile-viewing-note {
  display: none;
}

.deck-button {
  align-items: center;
  background: var(--deck-gold);
  border: 1px solid var(--deck-gold);
  border-radius: 7px;
  color: var(--deck-navy);
  display: inline-flex;
  font: 700 14px/1 "Deck Carlito", Calibri, sans-serif;
  gap: 8px;
  justify-content: center;
  min-height: 38px;
  padding: 0 14px;
  text-decoration: none;
  transition: background 150ms ease, border-color 150ms ease, transform 150ms ease;
}

.deck-button:hover {
  background: #e3bd70;
  border-color: #e3bd70;
  transform: translateY(-1px);
}

.deck-button:focus-visible,
.deck-dot:focus-visible,
.deck-mobile-menu summary:focus-visible,
.deck-mobile-menu__panel a:focus-visible {
  outline: 3px solid #fff;
  outline-offset: 3px;
}

.deck-button--ghost {
  background: transparent;
  border-color: rgb(255 255 255 / 32%);
  color: #fff;
}

.deck-button--ghost:hover {
  background: rgb(255 255 255 / 10%);
  border-color: #fff;
}

.deck-button svg {
  height: 16px;
  width: 16px;
}

.deck-status {
  bottom: 14px;
  color: rgb(255 255 255 / 72%);
  font-size: 12px;
  left: 20px;
  letter-spacing: 0.04em;
  position: fixed;
  z-index: 55;
}

.deck-dots {
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: fixed;
  right: 17px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 55;
}

.deck-dot {
  background: #315b86;
  border: 1px solid rgb(255 255 255 / 88%);
  border-radius: 999px;
  box-shadow: 0 1px 5px rgb(16 29 56 / 38%);
  cursor: pointer;
  height: 8px;
  padding: 0;
  transition: background 150ms ease, border-color 150ms ease, transform 150ms ease;
  width: 8px;
}

.deck-dot:hover {
  background: #4779a8;
}

.deck-dot[aria-current="true"] {
  background: var(--deck-gold);
  border-color: var(--deck-navy);
  transform: scale(1.65);
}

.deck-slide {
  align-items: center;
  background: var(--deck-paper);
  display: flex;
  justify-content: center;
  min-height: 100svh;
  overflow: hidden;
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

.deck-slide--dark {
  background: var(--deck-navy);
}

.deck-slide__canvas {
  aspect-ratio: 16 / 9;
  background: var(--deck-paper);
  box-sizing: border-box;
  container-type: inline-size;
  display: flex;
  flex-direction: column;
  isolation: isolate;
  max-height: 100svh;
  overflow: hidden;
  padding: 3.75cqw 5.25cqw 2.35cqw;
  position: relative;
  width: min(100vw, calc(100svh * 16 / 9));
}

.deck-slide--dark .deck-slide__canvas {
  background: var(--deck-navy);
  color: #fff;
}

.deck-slide__canvas > * {
  min-width: 0;
}

.deck-slide__header {
  align-items: center;
  color: var(--deck-muted);
  display: flex;
  font-size: 1.08cqw;
  justify-content: space-between;
  line-height: 1;
  margin-bottom: 2.4cqw;
}

.deck-slide__brand {
  align-items: center;
  display: flex;
  gap: 1.05cqw;
}

.deck-slide__footer {
  color: var(--deck-muted);
  font-size: 0.84cqw;
  font-style: italic;
  line-height: 1.32;
  margin-top: auto;
}

.deck-kicker {
  color: #936e25;
  font-size: 1.02cqw;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}

.deck-heading {
  color: var(--deck-ink);
  font-family: "Deck Caladea", Cambria, Georgia, serif;
  font-size: 4.05cqw;
  font-weight: 700;
  letter-spacing: -0.018em;
  line-height: 1.03;
  margin: 0;
}

.deck-heading--compact {
  font-size: 3.55cqw;
}

.deck-slide--dark .deck-heading {
  color: #fff;
}

.deck-subheading {
  color: var(--deck-copy);
  font-size: 1.45cqw;
  font-style: italic;
  line-height: 1.35;
  margin: 1.4cqw 0 0;
}

.deck-slide--dark .deck-subheading {
  color: rgb(255 255 255 / 82%);
}

.deck-brand-logo {
  display: inline-block;
  flex: 0 0 auto;
  overflow: hidden;
}

.deck-brand-logo img {
  display: block;
  height: 100%;
  max-width: none;
  width: auto;
}

.deck-brand-logo--mark {
  height: 2.8cqw;
  width: 2.8cqw;
}

.deck-cover {
  justify-content: center;
  padding-top: 4.8cqw;
}

.deck-cover__brand {
  display: block;
}

.deck-cover__logo {
  display: block;
  height: auto;
  max-height: 11cqw;
  object-fit: contain;
  object-position: left center;
  width: 38cqw;
}

.deck-cover__title {
  color: #fff;
  font-family: "Deck Caladea", Cambria, serif;
  font-size: 4.2cqw;
  line-height: 1;
  margin: 5cqw 0 0;
}

.deck-cover__tagline {
  color: rgb(255 255 255 / 82%);
  font-size: 1.7cqw;
  font-style: italic;
  margin: 1.9cqw 0 0;
}

.deck-cover__footnote {
  color: rgb(255 255 255 / 55%);
  font-size: 0.95cqw;
  margin-top: auto;
}

.deck-slide-data-notice {
  background: #fff3cf;
  border: 1px solid #e1c66f;
  color: #5e4819;
  font-size: 0.92cqw;
  left: 50%;
  padding: 0.55cqw 0.9cqw;
  position: absolute;
  text-align: center;
  top: 1.1cqw;
  transform: translateX(-50%);
  width: max-content;
  z-index: 2;
}

.deck-metric-grid {
  display: grid;
  gap: 2cqw;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 6.5cqw;
}

.deck-metric-grid--six {
  gap: 1.55cqw;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 0;
}

.deck-metric-grid--eight {
  gap: 1.8cqw;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 2.6cqw;
}

.deck-metric-card {
  align-items: center;
  background: var(--deck-panel);
  border: 1px solid var(--deck-border);
  border-radius: 0.55cqw;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 10.4cqw;
  padding: 1.2cqw;
  text-align: center;
}

.deck-slide--dark .deck-metric-card,
.deck-metric-card--dark {
  background: var(--deck-navy-card);
  border-color: rgb(255 255 255 / 5%);
  color: #fff;
}

.deck-metric-card__value {
  color: var(--deck-ink);
  font-family: "Deck Caladea", Cambria, serif;
  font-size: 3.2cqw;
  font-weight: 700;
  line-height: 1;
}

.deck-slide--dark .deck-metric-card__value,
.deck-metric-card--dark .deck-metric-card__value {
  color: #fff;
}

.deck-metric-card__label {
  color: var(--deck-gold);
  font-size: 1.25cqw;
  font-weight: 700;
  line-height: 1.22;
  margin-top: 1.55cqw;
}

.deck-metric-card--light .deck-metric-card__label {
  color: var(--deck-copy);
}

.deck-overview {
  display: grid;
  gap: 4.5cqw;
  grid-template-columns: 1.04fr 0.9fr;
  margin-top: 4.9cqw;
}

.deck-overview__copy {
  display: grid;
  gap: 2cqw;
}

.deck-copy-block h3 {
  color: var(--deck-ink);
  font-family: "Deck Caladea", Cambria, serif;
  font-size: 1.65cqw;
  line-height: 1.1;
  margin: 0 0 0.75cqw;
}

.deck-copy-block p {
  color: var(--deck-copy);
  font-size: 1.18cqw;
  line-height: 1.45;
  margin: 0;
}

.deck-terms {
  display: grid;
  gap: 0.45cqw 2.8cqw;
  grid-auto-flow: column;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: repeat(6, 1fr);
  margin-top: 3.6cqw;
}

.deck-term {
  background: var(--deck-panel);
  border: 1px solid var(--deck-border);
  min-height: 4.75cqw;
  padding: 1.05cqw 1.8cqw;
}

.deck-term:nth-child(even) {
  background: #fff;
}

.deck-term dt {
  color: #936e25;
  font-size: 0.88cqw;
  font-weight: 700;
  text-transform: uppercase;
}

.deck-term dd {
  color: var(--deck-ink);
  font-size: 1.3cqw;
  font-weight: 700;
  line-height: 1.2;
  margin: 0.75cqw 0 0;
}

.deck-table-wrap {
  margin-top: 3.8cqw;
  overflow-x: auto;
}

.deck-table {
  border-collapse: collapse;
  min-width: 720px;
  width: 100%;
}

.deck-table th {
  background: var(--deck-ink);
  border-right: 1px solid #fff;
  color: #fff;
  font-size: 1cqw;
  padding: 1.15cqw 0.9cqw;
  text-align: center;
  text-transform: uppercase;
}

.deck-table td {
  color: var(--deck-copy);
  font-size: 1.45cqw;
  padding: 1.45cqw 0.9cqw;
  text-align: center;
}

.deck-table tbody tr:nth-child(odd) {
  background: var(--deck-panel);
}

.deck-table td:first-child,
.deck-table td:nth-last-child(-n + 2) {
  color: var(--deck-ink);
  font-weight: 700;
}

.deck-table td:first-child {
  font-family: "Deck Caladea", Cambria, serif;
  font-size: 1.7cqw;
  text-align: left;
}

.deck-track-record__promise {
  color: rgb(255 255 255 / 82%);
  font-family: "Deck Caladea", Cambria, serif;
  font-size: 1.55cqw;
  font-style: italic;
  margin: 3.2cqw 0 0;
  text-align: center;
}

.deck-chart-grid {
  display: grid;
  gap: 2.5cqw;
  grid-template-columns: 1.45fr 0.95fr;
  margin-top: 2.6cqw;
}

.deck-chart-title {
  color: #936e25;
  font-size: 0.98cqw;
  font-weight: 700;
  letter-spacing: 0.27em;
  margin-bottom: 1.4cqw;
  text-transform: uppercase;
}

.deck-chart-unavailable {
  align-items: center;
  background: var(--deck-panel);
  border: 1px solid var(--deck-border);
  color: var(--deck-muted);
  display: flex;
  font-size: 1.05cqw;
  justify-content: center;
  min-height: 12.5cqw;
}

.deck-bars {
  align-items: end;
  border-bottom: 1px solid #7c879a;
  display: flex;
  gap: 1.25cqw;
  height: 21cqw;
  padding: 0 0.8cqw;
}

.deck-bar {
  align-items: center;
  display: flex;
  flex: 1;
  flex-direction: column;
  height: 100%;
  justify-content: flex-end;
  min-width: 0;
}

.deck-bar__amount {
  color: var(--deck-copy);
  font-size: 0.82cqw;
  line-height: 1;
  margin-bottom: 0.5cqw;
  white-space: nowrap;
}

.deck-bar__fill {
  background: var(--deck-ink);
  min-height: 0.45cqw;
  width: 70%;
}

.deck-bar__fill--current {
  background: repeating-linear-gradient(
    135deg,
    var(--deck-gold) 0,
    var(--deck-gold) 0.65cqw,
    #e8c982 0.65cqw,
    #e8c982 1.3cqw
  );
  box-shadow: inset 0 0 0 1px #a9781e;
}

.deck-bar__label {
  color: var(--deck-copy);
  font-size: 0.78cqw;
  margin-bottom: -1.55cqw;
  margin-top: 0.45cqw;
  white-space: nowrap;
}

.deck-donut-block {
  align-items: center;
  display: grid;
  gap: 2.2cqw;
  grid-template-columns: minmax(0, 1fr) minmax(9cqw, 0.7fr);
}

.deck-donut {
  aspect-ratio: 1;
  background: conic-gradient(var(--segments));
  border-radius: 50%;
  position: relative;
  width: 100%;
}

.deck-donut::after {
  background: var(--deck-paper);
  border-radius: 50%;
  content: "";
  inset: 26%;
  position: absolute;
}

.deck-legend {
  display: grid;
  gap: 0.78cqw;
}

.deck-legend__item {
  align-items: center;
  color: var(--deck-copy);
  display: grid;
  font-size: 1.25cqw;
  gap: 0.7cqw;
  grid-template-columns: 0.72cqw max-content max-content;
  justify-content: start;
}

.deck-legend__swatch {
  background: var(--swatch);
  height: 0.72cqw;
  width: 0.72cqw;
}

.deck-summary-cards {
  display: grid;
  gap: 2cqw;
  grid-template-columns: repeat(var(--columns, 3), minmax(0, 1fr));
  margin-top: 2.3cqw;
}

.deck-summary-cards .deck-metric-card {
  min-height: 9.3cqw;
}

.deck-summary-cards .deck-metric-card__value {
  font-size: 2.75cqw;
}

.deck-summary-cards .deck-metric-card__label {
  color: var(--deck-copy);
  font-size: 1.22cqw;
  margin-top: 1.35cqw;
}

.deck-portfolio-grid {
  display: grid;
  gap: 5cqw;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 1.4cqw;
}

.deck-portfolio-grid .deck-donut-block {
  grid-template-columns: 1fr 0.75fr;
}

.deck-process {
  display: grid;
  gap: 2.2cqw;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 1.5cqw;
}

.deck-process p {
  color: var(--deck-copy);
  font-size: 1.08cqw;
  line-height: 1.35;
  margin: 0;
}

.deck-process strong {
  color: var(--deck-ink);
}

.deck-deal-grid {
  display: grid;
  gap: 3.2cqw;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 3.1cqw;
}

.deck-panel {
  background: var(--deck-panel);
  border: 1px solid var(--deck-border);
  border-radius: 1.4cqw;
  padding: 2.2cqw 3.1cqw;
}

.deck-panel__label {
  color: #936e25;
  font-size: 0.9cqw;
  font-weight: 700;
  margin-bottom: 1.3cqw;
  text-transform: uppercase;
}

.deck-deal-list {
  display: grid;
  gap: 1.3cqw;
  margin: 0;
}

.deck-deal-list > div {
  display: grid;
  gap: 1.2cqw;
  grid-template-columns: minmax(0, 1fr) auto;
}

.deck-deal-list dt {
  color: var(--deck-copy);
  font-size: 1.16cqw;
}

.deck-deal-list dd {
  color: var(--deck-ink);
  font-size: 1.18cqw;
  font-weight: 700;
  margin: 0;
}

.deck-deal-list dd.deck-positive {
  color: var(--deck-green);
}

.deck-protection {
  display: grid;
  gap: 2.1cqw;
  grid-template-columns: 1fr 1fr;
}

.deck-protection__stack {
  color: #fff;
  display: grid;
}

.deck-protection__slice {
  align-items: flex-start;
  background: var(--deck-ink);
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 8cqw;
  padding: 1.2cqw;
}

.deck-protection__slice--green {
  background: var(--deck-green);
}

.deck-protection__slice strong,
.deck-protection__facts strong {
  font-family: "Deck Caladea", Cambria, serif;
  font-size: 2.1cqw;
}

.deck-protection__slice span,
.deck-protection__facts span {
  font-size: 0.88cqw;
  margin-top: 0.45cqw;
}

.deck-protection__facts {
  color: var(--deck-copy);
  display: grid;
  gap: 1.2cqw;
}

.deck-protection__facts strong {
  color: var(--deck-ink);
  display: block;
}

.deck-case-study-narrative {
  color: var(--deck-copy);
  font-size: 1.02cqw;
  line-height: 1.35;
  margin: 1.5cqw 0 0;
}

.deck-bank-grid {
  display: grid;
  gap: 5cqw;
  grid-template-columns: 1fr 1fr;
  margin-top: 1.5cqw;
}

.deck-capital-stack {
  display: grid;
  grid-template-columns: 14cqw minmax(0, 1fr);
}

.deck-capital-stack__visual {
  display: flex;
  flex-direction: column;
  height: 27.2cqw;
}

.deck-capital-stack__slice {
  align-items: center;
  color: var(--deck-ink);
  display: flex;
  flex: var(--slice, 1);
  font: 700 1.5cqw/1 "Deck Caladea", Cambria, serif;
  justify-content: center;
}

.deck-capital-stack__slice:nth-child(1) {
  background: #d2dae7;
}

.deck-capital-stack__slice:nth-child(2) {
  background: #c9a45f;
}

.deck-capital-stack__slice:nth-child(3) {
  background: var(--deck-ink);
  color: #fff;
}

.deck-capital-stack__labels {
  display: grid;
  grid-template-rows: 1.7fr 1fr 1fr;
}

.deck-capital-stack__label {
  align-self: center;
  padding-left: 2.2cqw;
}

.deck-capital-stack__label strong {
  color: var(--deck-ink);
  display: block;
  font: 700 1.45cqw/1.1 "Deck Caladea", Cambria, serif;
}

.deck-capital-stack__label span {
  color: var(--deck-copy);
  display: block;
  font-size: 1.03cqw;
  line-height: 1.25;
  margin-top: 0.65cqw;
}

.deck-yield-cards {
  display: grid;
  gap: 2.4cqw;
  margin-top: 2.4cqw;
}

.deck-bank-live-yield {
  color: var(--deck-copy);
  font-size: 1.03cqw;
  margin-top: 0.85cqw;
}

.deck-bank-live-yield strong {
  color: var(--deck-ink);
}

.deck-bank-note {
  font-size: 1.08cqw;
}

.deck-yield-card {
  align-items: center;
  background: var(--deck-ink);
  border-radius: 0.55cqw;
  color: #fff;
  display: grid;
  grid-template-columns: 12cqw 1fr;
  min-height: 6.65cqw;
  padding: 1.5cqw 1.9cqw;
}

.deck-yield-card strong {
  color: var(--deck-gold);
  font: 700 2.4cqw/1 "Deck Caladea", Cambria, serif;
}

.deck-yield-card span {
  font-size: 1.12cqw;
}

.deck-workout {
  display: grid;
  gap: 0.65cqw;
  margin-top: 2.6cqw;
}

.deck-workout__step {
  align-items: center;
  background: var(--deck-panel);
  border: 1px solid var(--deck-border);
  border-radius: 0.35cqw;
  color: var(--deck-copy);
  display: grid;
  font-size: 1.12cqw;
  gap: 1.8cqw;
  grid-template-columns: 3.1cqw minmax(0, 1fr);
  min-height: 5.2cqw;
  padding: 0.8cqw 1.9cqw;
}

.deck-workout__number {
  align-items: center;
  background: var(--deck-ink);
  border-radius: 50%;
  color: #fff;
  display: flex;
  font: 700 1.25cqw/1 "Deck Caladea", Cambria, serif;
  height: 3cqw;
  justify-content: center;
  width: 3cqw;
}

.deck-workout__step:last-child {
  background: #e5f0e9;
  border-color: #b9d2c3;
  color: var(--deck-ink);
  font-weight: 700;
}

.deck-workout__step:last-child .deck-workout__number {
  background: var(--deck-green);
}

.deck-security-grid {
  display: grid;
  gap: 1.4cqw;
  grid-template-columns: 1.7fr 1fr;
  margin-top: 1.5cqw;
}

.deck-security-card {
  background: var(--deck-panel);
  border: 1px solid var(--deck-border);
  border-radius: 0.4cqw;
  padding: 1.25cqw 2.2cqw;
}

.deck-security-card strong {
  color: #936e25;
  display: block;
  font-size: 0.9cqw;
  text-transform: uppercase;
}

.deck-security-card span {
  color: var(--deck-ink);
  display: block;
  font-size: 1.1cqw;
  font-weight: 700;
  margin-top: 0.8cqw;
}

.deck-workout__summary {
  color: var(--deck-ink);
  font: italic 700 1.45cqw/1.15 "Deck Caladea", Cambria, serif;
  margin: 1.2cqw 0 0;
  text-align: center;
}

.deck-risks {
  display: grid;
  gap: 1.1cqw 2.2cqw;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 5.2cqw;
}

.deck-risk {
  background: var(--deck-panel);
  border: 1px solid var(--deck-border);
  border-radius: 0.55cqw;
  min-height: 10.9cqw;
  padding: 1.8cqw 2.3cqw;
}

.deck-risk h3 {
  color: var(--deck-ink);
  font: 700 1.55cqw/1.1 "Deck Caladea", Cambria, serif;
  margin: 0;
}

.deck-risk h3::before {
  color: #9b7224;
  content: "!";
  font-family: "Deck Carlito", sans-serif;
  font-size: 1.35cqw;
  margin-right: 1.8cqw;
}

.deck-risk p {
  color: var(--deck-copy);
  font-size: 1.08cqw;
  line-height: 1.35;
  margin: 2cqw 0 0 2.7cqw;
}

.deck-team {
  display: grid;
  gap: 2.4cqw;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 6.8cqw;
}

.deck-person {
  background: var(--deck-navy-card);
  border: 1px solid rgb(255 255 255 / 5%);
  border-radius: 0.55cqw;
  min-height: 29cqw;
  padding: 2.4cqw;
}

.deck-person__top {
  align-items: center;
  display: flex;
  gap: 1cqw;
  justify-content: space-between;
}

.deck-person h3 {
  color: #fff;
  font: 700 2.1cqw/1.05 "Deck Caladea", Cambria, serif;
  margin: 0;
}

.deck-person__avatar {
  align-items: center;
  background: #fff;
  color: var(--deck-ink);
  display: flex;
  flex: 0 0 auto;
  font: 700 1.55cqw/1 "Deck Caladea", Cambria, serif;
  height: 7.5cqw;
  justify-content: center;
  overflow: hidden;
  width: 7.5cqw;
}

.deck-person__avatar img {
  display: block;
  height: 100%;
  object-fit: cover;
  object-position: center;
  width: 100%;
}

.deck-person p {
  color: rgb(255 255 255 / 78%);
  font-size: 1.17cqw;
  line-height: 1.42;
  margin: 4.8cqw 0 0;
}

.deck-team__promise {
  color: var(--deck-gold);
  font: italic 1.5cqw/1.1 "Deck Caladea", Cambria, serif;
  margin: 2.8cqw 0 0;
  text-align: center;
}

.deck-next-steps {
  display: grid;
  gap: 2.2cqw;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 2.4cqw;
}

.deck-step-card {
  background: var(--deck-navy-card);
  border: 1px solid rgb(255 255 255 / 5%);
  border-radius: 0.55cqw;
  display: flex;
  flex-direction: column;
  min-height: 22.8cqw;
  padding: 2.4cqw;
}

.deck-step-card__eyebrow {
  color: var(--deck-gold);
  font-size: 0.98cqw;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.deck-step-card h3 {
  color: #fff;
  font: 700 2.1cqw/1.1 "Deck Caladea", Cambria, serif;
  margin: 2cqw 0 0;
}

.deck-step-card p {
  color: rgb(255 255 255 / 78%);
  font-size: 1.24cqw;
  line-height: 1.38;
  margin: 2cqw 0 0;
}

.deck-step-card__action {
  align-items: center;
  background: var(--deck-gold);
  border: 0;
  border-radius: 0.55cqw;
  color: var(--deck-navy);
  cursor: pointer;
  display: flex;
  font-size: 1.18cqw;
  font-weight: 700;
  justify-content: center;
  margin-top: auto;
  min-height: 4.2cqw;
  padding: 0.8cqw;
  text-align: center;
  text-decoration: none;
  width: 100%;
}

.deck-step-card__action:hover {
  background: #e3bd70;
}

.deck-step-card__action:disabled {
  cursor: wait;
  opacity: 0.72;
}

.deck-bar__label--current {
  color: #8b641f;
  font-weight: 700;
}

.deck-bar__status {
  display: block;
  font-size: 0.66cqw;
  letter-spacing: 0.03em;
  margin-top: 0.18cqw;
  text-transform: uppercase;
}

.investment-intent-page {
  align-items: center;
  background: #0d1f35;
  color: #fff;
  display: flex;
  min-height: 100vh;
  padding: 32px 20px;
}

.investment-intent-page__card {
  background: #243b6d;
  border: 1px solid rgb(255 255 255 / 10%);
  border-radius: 14px;
  box-shadow: 0 24px 80px rgb(0 0 0 / 24%);
  margin: 0 auto;
  max-width: 650px;
  padding: 48px;
  width: 100%;
}

.investment-intent-page__eyebrow {
  color: #d1aa60;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  margin: 0;
  text-transform: uppercase;
}

.investment-intent-page h1 {
  font: 700 44px/1.05 "Deck Caladea", Cambria, serif;
  margin: 18px 0 0;
}

.investment-intent-page__intro {
  color: rgb(255 255 255 / 78%);
  font-size: 17px;
  line-height: 1.6;
  margin: 24px 0 0;
}

.investment-intent-page__action {
  margin-top: 32px;
}

.investment-intent-page__action .deck-step-card__action {
  box-shadow: 0 8px 18px rgb(0 0 0 / 18%);
  font-size: 18px;
  min-height: 64px;
  padding: 16px 22px;
  transition:
    background-color 160ms ease,
    box-shadow 160ms ease,
    transform 160ms ease;
}

.investment-intent-page__action .deck-step-card__action:hover,
.investment-intent-page__action .deck-step-card__action:focus-visible {
  background: #e3bd70;
  box-shadow: 0 14px 28px rgb(0 0 0 / 24%);
  transform: translateY(-2px) scale(1.015);
}

.investment-intent-page__action .deck-step-card__action:focus-visible {
  outline: 3px solid rgb(255 255 255 / 76%);
  outline-offset: 3px;
}

.investment-intent-page__action .deck-step-card__action:active {
  transform: translateY(0) scale(1.005);
}

@media (prefers-reduced-motion: reduce) {
  .investment-intent-page__action .deck-step-card__action {
    transition: none;
  }
}

.investment-intent-page__action__error {
  color: #ffd8d8 !important;
  font-size: 16px;
  line-height: 1.5;
  margin: 0 0 16px;
}

.investment-intent-page__action--success {
  background: rgb(255 255 255 / 9%);
  border: 1px solid rgb(255 255 255 / 16%);
  border-radius: 10px;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.5;
  padding: 20px;
}

.investment-intent-page nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 22px;
  margin-top: 30px;
}

.investment-intent-page nav a {
  color: #d1aa60;
  font-size: 15px;
  font-weight: 700;
}

@media (max-width: 640px) {
  .investment-intent-page {
    padding: 20px 14px;
  }

  .investment-intent-page__card {
    padding: 34px 24px;
  }

  .investment-intent-page h1 {
    font-size: 36px;
  }

  .investment-intent-page__intro {
    font-size: 16px;
  }
}

.deck-contacts {
  background: var(--deck-navy-card);
  border-radius: 0.55cqw;
  display: grid;
  gap: 1.3cqw 3cqw;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 2.4cqw;
  padding: 2cqw 2.8cqw 1.6cqw;
}

.deck-contact strong {
  color: #fff;
  display: block;
  font: 700 1.55cqw/1.1 "Deck Caladea", Cambria, serif;
}

.deck-contact a,
.deck-contact span {
  color: rgb(255 255 255 / 78%);
  display: block;
  font-size: 1.12cqw;
  margin-top: 0.7cqw;
  text-decoration: none;
}

.deck-contact a:first-of-type {
  color: var(--deck-gold);
}

.deck-contacts__footer {
  color: var(--deck-gold);
  font-size: 1.16cqw;
  font-weight: 700;
  grid-column: 1 / -1;
  text-align: center;
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.deck-disclosure {
  display: grid;
  gap: 2.25cqw;
  margin-top: 2.2cqw;
}

.deck-disclosure p {
  color: var(--deck-copy);
  font-size: 0.88cqw;
  line-height: 1.36;
  margin: 0;
}

.deck-stale-note {
  background: #fff3cf;
  border: 1px solid #e1c66f;
  color: #5e4819;
  font-size: 12px;
  left: 50%;
  max-width: min(520px, calc(100vw - 32px));
  padding: 7px 12px;
  position: fixed;
  text-align: center;
  top: 68px;
  transform: translateX(-50%);
  z-index: 58;
}

.deck-experience--pdf {
  background: #fff;
  height: auto;
  overflow: visible;
}

.deck-experience--pdf .deck-progress,
.deck-experience--pdf .deck-toolbar,
.deck-experience--pdf .deck-dots,
.deck-experience--pdf .deck-status,
.deck-experience--pdf .deck-stale-note {
  display: none;
}

.deck-experience--pdf .deck-slide {
  break-after: page;
  height: 7.5in;
  min-height: 7.5in;
  page-break-after: always;
  width: 13.333in;
}

.deck-experience--pdf .deck-slide:last-child {
  break-after: auto;
  page-break-after: auto;
}

.deck-experience--pdf .deck-slide__canvas {
  height: 7.5in;
  max-height: none;
  width: 13.333in;
}

/* PDF.co renders the signed print page with a narrow Chromium viewport. Scope
 * mobile reflow to screens so the fixed 16:9 PDF artboard never inherits it. */
@media screen and (max-width: 760px) {
  .deck-experience,
  .deck-slide,
  .deck-slide__canvas {
    max-width: 100vw;
    overflow-x: clip;
  }

  .deck-toolbar {
    gap: 10px;
    min-height: 64px;
    padding-inline: 14px;
  }

  .deck-toolbar__brand {
    min-width: 0;
  }

  .deck-toolbar__logo {
    height: 30px;
    max-width: min(58vw, 142px);
  }

  .deck-toolbar__actions {
    display: none;
  }

  .deck-mobile-menu {
    display: block;
    position: relative;
  }

  .deck-mobile-menu summary {
    align-items: center;
    background: var(--deck-gold);
    border: 1px solid var(--deck-gold);
    border-radius: 7px;
    color: var(--deck-navy);
    cursor: pointer;
    display: flex;
    font-size: 15px;
    font-weight: 700;
    gap: 8px;
    justify-content: center;
    list-style: none;
    min-height: 42px;
    padding: 0 13px;
  }

  .deck-mobile-menu summary::-webkit-details-marker {
    display: none;
  }

  .deck-mobile-menu summary svg,
  .deck-mobile-menu__panel a svg {
    height: 18px;
    width: 18px;
  }

  .deck-mobile-menu[open] summary {
    background: #e3bd70;
    border-color: #e3bd70;
  }

  .deck-mobile-menu__panel {
    background: var(--deck-navy);
    border: 1px solid rgb(255 255 255 / 20%);
    border-radius: 9px;
    box-shadow: 0 18px 40px rgb(0 0 0 / 35%);
    display: grid;
    gap: 4px;
    min-width: 220px;
    padding: 7px;
    position: absolute;
    right: 0;
    top: calc(100% + 9px);
  }

  .deck-mobile-menu__panel a {
    align-items: center;
    border-radius: 6px;
    color: #fff;
    display: flex;
    font-size: 15px;
    font-weight: 700;
    gap: 11px;
    min-height: 46px;
    padding: 0 12px;
    text-decoration: none;
  }

  .deck-mobile-menu__panel a:hover,
  .deck-mobile-menu__panel a:focus-visible {
    background: rgb(255 255 255 / 10%);
  }

  .deck-mobile-viewing-note {
    align-items: flex-start;
    background: #fff3cf;
    border: 1px solid #e1c66f;
    border-radius: 8px;
    color: #5e4819;
    display: flex;
    font-size: 13px;
    gap: 10px;
    left: 20px;
    line-height: 1.35;
    padding: 11px 13px;
    position: absolute;
    right: 20px;
    top: 78px;
    z-index: 4;
  }

  .deck-mobile-viewing-note svg {
    flex: 0 0 auto;
    height: 18px;
    margin-top: 1px;
    width: 18px;
  }

  .deck-dots,
  .deck-status {
    display: none;
  }

  .deck-slide {
    align-items: stretch;
    min-height: 100svh;
    overflow: visible;
    scroll-snap-align: none;
    scroll-snap-stop: normal;
  }

  .deck-slide__canvas {
    aspect-ratio: auto;
    container-type: normal;
    max-height: none;
    min-height: 100svh;
    overflow-y: visible;
    padding: 84px 20px 32px;
    width: 100%;
  }

  .deck-slide__canvas > *,
  .deck-slide__canvas > * > * {
    max-width: 100%;
    min-width: 0;
  }

  .deck-slide__header {
    font-size: 10px;
    margin-bottom: 26px;
  }

  .deck-slide__brand {
    gap: 10px;
  }

  .deck-slide__footer {
    font-size: 11px;
    margin-top: 28px;
  }

  .deck-kicker {
    font-size: 11px;
  }

  .deck-heading,
  .deck-heading--compact {
    font-size: clamp(34px, 10vw, 48px);
    overflow-wrap: anywhere;
  }

  .deck-subheading {
    font-size: 17px;
    margin-top: 14px;
  }

  .deck-brand-logo--mark {
    height: 28px;
    width: 28px;
  }

  .deck-cover {
    justify-content: flex-start;
    padding-top: 170px;
  }

  .deck-cover__brand {
    display: block;
  }

  .deck-cover__logo {
    max-height: none;
    width: min(100%, 320px);
  }

  .deck-cover__title {
    font-size: 42px;
    margin-top: 64px;
  }

  .deck-cover__tagline {
    font-size: 20px;
    margin-top: 18px;
  }

  .deck-cover__footnote {
    font-size: 11px;
    margin-top: 36px;
  }

  .deck-slide-data-notice {
    font-size: 11px;
    margin-bottom: 24px;
    position: static;
    transform: none;
    width: auto;
  }

  .deck-metric-grid,
  .deck-metric-grid--six,
  .deck-metric-grid--eight,
  .deck-summary-cards {
    gap: 12px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 38px;
  }

  .deck-metric-card,
  .deck-summary-cards .deck-metric-card {
    border-radius: 7px;
    min-height: 126px;
    padding: 16px 10px;
  }

  .deck-metric-card__value,
  .deck-summary-cards .deck-metric-card__value {
    font-size: clamp(28px, 9vw, 40px);
  }

  .deck-metric-card__label,
  .deck-summary-cards .deck-metric-card__label {
    font-size: 14px;
    line-height: 1.25;
    margin-top: 18px;
  }

  .deck-overview,
  .deck-chart-grid,
  .deck-portfolio-grid,
  .deck-process,
  .deck-deal-grid,
  .deck-bank-grid,
  .deck-risks,
  .deck-team,
  .deck-next-steps {
    gap: 24px;
    grid-template-columns: 1fr;
    margin-top: 36px;
  }

  .deck-overview__copy {
    gap: 24px;
  }

  .deck-copy-block h3 {
    font-size: 23px;
    margin-bottom: 9px;
  }

  .deck-copy-block p {
    font-size: 16px;
  }

  .deck-terms {
    display: grid;
    gap: 8px;
    grid-auto-flow: row;
    grid-template-columns: 1fr;
    grid-template-rows: none;
    margin-top: 32px;
  }

  .deck-term {
    min-height: 74px;
    padding: 14px 16px;
  }

  .deck-term dt {
    font-size: 11px;
  }

  .deck-term dd {
    font-size: 17px;
    margin-top: 8px;
  }

  .deck-table-wrap {
    margin-top: 30px;
    overflow-x: visible;
    padding-bottom: 6px;
    width: 100%;
  }

  .deck-table {
    min-width: 0;
    table-layout: fixed;
  }

  .deck-table th {
    font-size: 9px;
    line-height: 1.15;
    overflow-wrap: anywhere;
    padding: 11px 3px;
  }

  .deck-table td,
  .deck-table td:first-child {
    font-size: 12px;
    line-height: 1.2;
    overflow-wrap: anywhere;
    padding: 15px 4px;
  }

  .deck-track-record__promise {
    font-size: 18px;
    margin-top: 28px;
  }

  .deck-chart-title {
    font-size: 11px;
    margin-bottom: 18px;
  }

  .deck-bars {
    gap: 2px;
    height: 260px;
    padding-inline: 0;
    width: 100%;
  }

  .deck-bar__amount,
  .deck-bar__label {
    font-size: 8px;
    line-height: 1.05;
    overflow-wrap: anywhere;
    text-align: center;
    white-space: normal;
  }

  .deck-bar__label {
    margin-bottom: -20px;
    margin-top: 6px;
  }

  .deck-bar__status {
    font-size: 7px;
    margin-top: 2px;
  }

  .deck-donut-block,
  .deck-portfolio-grid .deck-donut-block {
    gap: 18px;
    grid-template-columns: 1fr;
  }

  .deck-donut {
    justify-self: center;
    max-width: 250px;
  }

  .deck-legend {
    gap: 10px;
  }

  .deck-legend__item {
    font-size: 14px;
    gap: 9px;
    grid-template-columns: 9px max-content max-content;
    justify-content: center;
  }

  .deck-legend__swatch {
    height: 9px;
    width: 9px;
  }

  .deck-process p,
  .deck-deal-list dt,
  .deck-deal-list dd {
    font-size: 15px;
  }

  .deck-panel {
    border-radius: 14px;
    padding: 24px 20px;
  }

  .deck-panel__label {
    font-size: 11px;
    margin-bottom: 18px;
  }

  .deck-deal-list {
    gap: 16px;
  }

  .deck-protection {
    gap: 18px;
    grid-template-columns: 1fr;
  }

  .deck-protection__slice {
    min-height: 100px;
    padding: 18px;
  }

  .deck-protection__slice strong,
  .deck-protection__facts strong {
    font-size: 28px;
  }

  .deck-protection__slice span,
  .deck-protection__facts span {
    font-size: 12px;
  }

  .deck-case-study-narrative {
    font-size: 15px;
    margin-top: 20px;
  }

  .deck-capital-stack {
    grid-template-columns: minmax(92px, 36%) minmax(0, 1fr);
  }

  .deck-capital-stack__visual {
    height: 300px;
  }

  .deck-capital-stack__slice {
    font-size: 18px;
  }

  .deck-capital-stack__label {
    padding-left: 18px;
  }

  .deck-capital-stack__label strong {
    font-size: 18px;
  }

  .deck-capital-stack__label span {
    font-size: 13px;
    margin-top: 7px;
  }

  .deck-yield-cards {
    gap: 22px;
    margin-top: 26px;
  }

  .deck-bank-live-yield {
    font-size: 14px;
    margin-top: 14px;
  }

  .deck-bank-note {
    font-size: 17px;
  }

  .deck-yield-card {
    border-radius: 7px;
    grid-template-columns: 105px 1fr;
    min-height: 92px;
    padding: 18px;
  }

  .deck-yield-card strong {
    font-size: 30px;
  }

  .deck-yield-card span {
    font-size: 15px;
  }

  .deck-workout {
    gap: 9px;
    margin-top: 28px;
  }

  .deck-workout__step {
    border-radius: 5px;
    font-size: 15px;
    gap: 15px;
    grid-template-columns: 38px minmax(0, 1fr);
    min-height: 80px;
    padding: 12px 14px;
  }

  .deck-workout__number {
    font-size: 16px;
    height: 38px;
    width: 38px;
  }

  .deck-security-grid {
    gap: 10px;
    grid-template-columns: 1fr;
    margin-top: 18px;
  }

  .deck-security-card {
    border-radius: 5px;
    padding: 16px;
  }

  .deck-security-card strong {
    font-size: 11px;
  }

  .deck-security-card span {
    font-size: 14px;
    margin-top: 8px;
  }

  .deck-workout__summary {
    font-size: 18px;
    margin-top: 22px;
  }

  .deck-risk {
    border-radius: 7px;
    min-height: auto;
    padding: 22px;
  }

  .deck-risk h3 {
    font-size: 22px;
  }

  .deck-risk h3::before {
    font-size: 18px;
    margin-right: 15px;
  }

  .deck-risk p {
    font-size: 15px;
    margin: 18px 0 0 31px;
  }

  .deck-person {
    border-radius: 7px;
    min-height: auto;
    padding: 24px;
  }

  .deck-person h3 {
    font-size: 28px;
    min-width: 0;
    overflow-wrap: anywhere;
  }

  .deck-person__avatar {
    font-size: 19px;
    height: 82px;
    width: 82px;
  }

  .deck-person p {
    font-size: 16px;
    margin-top: 32px;
  }

  .deck-team__promise {
    font-size: 20px;
    margin-top: 30px;
  }

  .deck-step-card {
    border-radius: 7px;
    min-height: 300px;
    padding: 24px;
  }

  .deck-step-card__eyebrow {
    font-size: 13px;
  }

  .deck-step-card h3 {
    font-size: 27px;
    margin-top: 22px;
  }

  .deck-step-card p {
    font-size: 17px;
    margin-top: 20px;
  }

  .deck-step-card__action {
    font-size: 17px;
    min-height: 54px;
    padding: 10px;
  }

  .deck-contacts {
    gap: 24px;
    grid-template-columns: 1fr;
    margin-top: 28px;
    padding: 24px;
  }

  .deck-contact strong {
    font-size: 21px;
  }

  .deck-contact a,
  .deck-contact span,
  .deck-contacts__footer {
    font-size: 15px;
    overflow-wrap: anywhere;
  }

  .deck-disclosure {
    gap: 26px;
    margin-top: 32px;
  }

  .deck-disclosure p {
    font-size: 14px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .deck-progress,
  .deck-button,
  .deck-dot {
    transition: none;
  }
}

@media print {
  @page {
    margin: 0;
    size: 13.333in 7.5in;
  }

  html,
  body {
    background: #fff;
    margin: 0;
  }

  .deck-experience {
    background: #fff;
    height: auto;
    overflow: visible;
  }

  .deck-progress,
  .deck-toolbar,
  .deck-dots,
  .deck-status,
  .deck-mobile-viewing-note,
  .deck-stale-note {
    display: none !important;
  }

  .deck-slide {
    break-after: page;
    height: 7.5in;
    min-height: 7.5in;
    page-break-after: always;
    width: 13.333in;
  }

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

  .deck-slide__canvas {
    height: 7.5in;
    max-height: none;
    width: 13.333in;
  }

}
