:root {
  --ink: #0a0a0b;
  --ink-soft: #171719;
  --graphite: #242528;
  --steel: #5f6268;
  --line: #d9dadd;
  --paper: #f5f6f3;
  --white: #ffffff;
  --gold: #d7ad4d;
  --gold-bright: #f0c65a;
  --green: #397b57;
  --red: #a83f3f;
  --shadow: 0 20px 50px rgba(0, 0, 0, 0.16);
}

* {
  box-sizing: border-box;
  letter-spacing: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--paper);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.5;
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  color: inherit;
}

button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid var(--gold-bright);
  outline-offset: 3px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: minmax(250px, 1fr) auto minmax(150px, 1fr);
  align-items: center;
  min-height: 76px;
  padding: 10px 3.5vw;
  border-bottom: 1px solid #2f3033;
  background: rgba(10, 10, 11, 0.98);
  color: var(--white);
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  gap: 12px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  text-align: left;
}

.brand-logo-mark {
  display: block;
  width: 56px;
  height: 56px;
  flex: 0 0 56px;
  overflow: hidden;
}

.brand-logo-mark img {
  width: 96px;
  height: 96px;
  max-width: none;
  transform: translate(-20px, -9px);
}

.logo-fallback {
  position: relative;
  display: grid;
  width: 48px;
  height: 54px;
  flex: 0 0 48px;
  place-items: center;
  overflow: hidden;
  border: 2px solid var(--white);
  clip-path: polygon(8% 0, 92% 0, 100% 72%, 50% 100%, 0 72%);
  background: var(--gold);
  color: var(--ink);
}

.logo-fallback strong {
  position: relative;
  z-index: 2;
  font-size: 18px;
  line-height: 1;
}

.logo-stripes {
  position: absolute;
  inset: 0;
  background: transparent;
}

.logo-stripes::before,
.logo-stripes::after {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 5px;
  background: rgba(0, 0, 0, 0.18);
  content: "";
}

.logo-stripes::before {
  left: 9px;
}

.logo-stripes::after {
  right: 9px;
}

.logo-whistle {
  position: absolute;
  right: 4px;
  bottom: 8px;
  width: 8px;
  height: 8px;
  border: 2px solid var(--ink);
  border-radius: 50%;
}

.brand-copy {
  display: grid;
  gap: 2px;
}

.brand-copy strong {
  font-size: 14px;
  line-height: 1.1;
}

.brand-copy span {
  color: #babcc0;
  font-size: 11px;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.primary-nav button {
  min-height: 40px;
  padding: 8px 14px;
  border: 0;
  background: transparent;
  color: #d3d4d6;
  cursor: pointer;
  font-size: 13px;
  font-weight: 700;
}

.primary-nav button:hover {
  color: var(--gold-bright);
}

.header-cta {
  justify-self: end;
  min-height: 40px;
  padding: 9px 18px;
  border: 1px solid var(--gold);
  border-radius: 4px;
  background: transparent;
  color: var(--gold-bright);
  cursor: pointer;
  font-size: 13px;
  font-weight: 800;
}

.view {
  display: none;
}

.view.is-active {
  display: block;
  animation: view-in 240ms ease-out;
}

@keyframes view-in {
  from { opacity: 0; transform: translateY(5px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero {
  position: relative;
  display: flex;
  min-height: calc(100vh - 76px);
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  background-color: var(--ink);
  background-image: url("assets/situation-room.png");
  background-position: center top;
  background-size: cover;
  color: var(--white);
}

.hero-shade {
  position: absolute;
  inset: 0;
  background: rgba(4, 4, 5, 0.78);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(900px, 92vw);
  margin: 0 auto;
  padding: 9vh 0 34px;
  text-align: center;
}

.status-line {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 36px;
  color: #d8d9db;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 4px rgba(168, 63, 63, 0.2);
}

.status-divider {
  width: 1px;
  height: 12px;
  background: #71747a;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold-bright);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.eyebrow.dark {
  color: #836521;
}

.hero h1,
.broadcast-copy h1,
.calculator-form h1,
.generic-play-panel h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 62px;
  line-height: 1.04;
  font-weight: 700;
}

.hero-copy {
  width: min(670px, 100%);
  margin: 24px auto 0;
  color: #e0e1e2;
  font-size: 17px;
}

.play-board {
  position: relative;
  z-index: 2;
  display: grid;
  width: min(1440px, 95vw);
  margin: 0 auto 34px;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.play-card {
  position: relative;
  display: grid;
  min-width: 0;
  min-height: 236px;
  align-content: start;
  padding: 22px 20px 20px;
  overflow: hidden;
  border: 1px solid #4d4f52;
  border-top: 3px solid var(--gold);
  border-radius: 5px;
  background: rgba(14, 14, 16, 0.93);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.28);
  color: var(--white);
  cursor: pointer;
  text-align: left;
  transition: background 160ms ease, border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.play-card:hover {
  z-index: 2;
  border-color: var(--gold);
  background: #232427;
  box-shadow: 0 20px 42px rgba(0, 0, 0, 0.38);
  transform: translateY(-4px);
}

.play-card-featured {
  background: #e2b84e;
  color: var(--ink);
}

.play-card-featured:hover {
  background: var(--gold-bright);
}

.play-number {
  color: #8d9094;
  font-size: 11px;
  font-weight: 800;
}

.play-card-featured .play-number {
  color: #594715;
}

.play-icon {
  display: inline-flex;
  width: fit-content;
  min-height: 28px;
  align-items: center;
  margin: 24px 0 14px;
  padding: 0 9px;
  border: 1px solid var(--gold);
  border-radius: 2px;
  background: var(--gold);
  color: var(--ink);
  font-size: 10px;
  font-weight: 900;
}

.play-card strong {
  max-width: 220px;
  font-size: 18px;
  line-height: 1.2;
}

.play-card > span:not(.play-number, .play-icon, .card-arrow, .featured-label) {
  margin-top: 9px;
  color: #bfc1c5;
  font-size: 12px;
}

.play-card-featured > span:not(.play-number, .play-icon, .card-arrow, .featured-label) {
  color: #3d3214;
}

.card-arrow {
  position: absolute;
  right: 18px;
  bottom: 16px;
  font-size: 20px;
  font-weight: 900;
}

.featured-label {
  position: absolute;
  top: 16px;
  right: 14px;
  color: #3d3214;
  font-size: 9px;
  font-weight: 900;
  text-transform: uppercase;
}

.review-standard {
  display: grid;
  width: min(1180px, 92vw);
  margin: 0 auto;
  grid-template-columns: 0.85fr 1.6fr;
  gap: 80px;
  padding: 76px 0 90px;
}

.section-heading h2 {
  margin: 0;
  max-width: 420px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 40px;
  line-height: 1.1;
}

.standard-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 3px solid var(--ink);
}

.standard-grid article {
  min-height: 190px;
  padding: 24px 20px;
  border-right: 1px solid var(--line);
}

.standard-grid article:last-child {
  border-right: 0;
}

.standard-index {
  color: #8b8d91;
  font-size: 11px;
  font-weight: 900;
}

.standard-grid h3 {
  margin: 28px 0 8px;
  font-size: 17px;
}

.standard-grid p {
  margin: 0;
  color: #62656a;
  font-size: 13px;
}

.utility-shell {
  min-height: calc(100vh - 76px);
  padding: 34px 4vw 70px;
}

.back-link,
.challenge-link,
.reset-link {
  padding: 6px 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  font-size: 12px;
  font-weight: 800;
}

.back-link:hover,
.challenge-link:hover,
.reset-link:hover {
  color: #8a681c;
}

.generic-play-panel {
  display: grid;
  width: min(1080px, 100%);
  min-height: 520px;
  margin: 46px auto 0;
  grid-template-columns: 1.25fr 0.75fr;
  border-top: 7px solid var(--gold);
  background: var(--white);
  box-shadow: var(--shadow);
}

.generic-play-panel > div {
  padding: 62px;
}

.generic-play-panel h1 {
  font-size: 56px;
}

.generic-play-panel p {
  max-width: 580px;
  color: #62656a;
  font-size: 17px;
}

.generic-status {
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--ink-soft);
  color: var(--white);
}

.generic-status > span {
  color: var(--gold);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.generic-status > strong {
  margin-top: 14px;
  font-size: 26px;
  line-height: 1.1;
}

.generic-status p {
  color: #c6c8cc;
  font-size: 14px;
}

.intro-shell {
  background: #edeef0;
}

.review-broadcast {
  display: grid;
  width: min(1240px, 100%);
  min-height: 650px;
  margin: 26px auto 0;
  grid-template-columns: 1.35fr 0.65fr;
  overflow: hidden;
  border: 1px solid #c8cace;
  background: var(--white);
  box-shadow: var(--shadow);
}

.broadcast-copy {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 70px 8%;
  background-image: url("assets/situation-room.png");
  background-position: center;
  background-size: cover;
}

.broadcast-copy::before {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.9);
  content: "";
}

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

.status-line-dark {
  color: #4f5257;
}

.broadcast-copy h1 {
  max-width: 740px;
  font-size: 62px;
}

.broadcast-copy > p:not(.eyebrow) {
  max-width: 620px;
  margin: 24px 0 30px;
  color: #55585e;
  font-size: 17px;
}

.review-lineup {
  display: flex;
  flex-direction: column;
  padding: 34px 32px;
  background: var(--ink);
  color: var(--white);
}

.lineup-header {
  display: flex;
  justify-content: space-between;
  padding-bottom: 18px;
  border-bottom: 1px solid #3c3e42;
  font-size: 11px;
  text-transform: uppercase;
}

.lineup-header span {
  color: #92959a;
}

.review-lineup ol {
  display: grid;
  gap: 0;
  margin: 30px 0;
  padding: 0;
  list-style: none;
}

.review-lineup li {
  display: grid;
  grid-template-columns: 34px 1fr;
  padding: 20px 0;
  border-bottom: 1px solid #313236;
  color: #7f8288;
}

.review-lineup li.is-current {
  color: var(--white);
}

.review-lineup li > span {
  grid-row: 1 / 3;
  color: var(--gold);
  font-size: 11px;
  font-weight: 900;
}

.review-lineup li strong {
  font-size: 14px;
}

.review-lineup li small {
  margin-top: 4px;
  font-size: 11px;
}

.lineup-callout {
  margin-top: auto;
  padding: 24px;
  border-left: 4px solid var(--gold);
  background: #202125;
}

.lineup-callout span {
  display: block;
  margin-bottom: 8px;
  color: var(--gold);
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
}

.lineup-callout strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 21px;
  line-height: 1.2;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: 4px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 900;
}

.button-gold {
  border-color: var(--gold);
  background: var(--gold);
  color: var(--ink);
}

.button-gold:hover {
  background: var(--gold-bright);
}

.button-dark {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--white);
}

.button-dark:hover {
  background: var(--graphite);
}

.button-outline {
  border-color: #b7b9bd;
  background: transparent;
  color: var(--ink);
}

.button-outline-light {
  border-color: #65686e;
  background: transparent;
  color: var(--white);
}

.button-full {
  width: 100%;
}

.review-shell {
  min-height: calc(100vh - 76px);
  background: #111214;
  color: var(--white);
}

.review-topbar {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 62px;
  padding: 8px 4vw;
  border-bottom: 1px solid #34363a;
}

.back-link-light {
  color: #d8d9db;
}

.phase-indicator {
  display: flex;
  gap: 22px;
}

.phase-indicator span {
  position: relative;
  color: #70737a;
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
}

.phase-indicator span.is-active {
  color: var(--white);
}

.phase-indicator span.is-active::after {
  position: absolute;
  right: 0;
  bottom: -13px;
  left: 0;
  height: 3px;
  background: var(--gold);
  content: "";
}

.review-id {
  justify-self: end;
  color: #8f9298;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
}

.calculator-layout {
  display: grid;
  width: min(1320px, 94vw);
  margin: 0 auto;
  grid-template-columns: 1.35fr 0.65fr;
  gap: 54px;
  padding: 58px 0 80px;
}

.calculator-form h1 {
  max-width: 750px;
  font-size: 54px;
}

.calculator-lead {
  margin: 16px 0 42px;
  color: #aeb0b5;
}

.form-section {
  padding: 26px 0 30px;
  border-top: 1px solid #3b3d41;
}

.form-section-heading {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}

.form-section-heading span {
  color: var(--gold);
  font-size: 10px;
  font-weight: 900;
}

.form-section-heading h2 {
  margin: 0;
  font-size: 16px;
}

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

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

.field > span:first-child {
  color: #a7a9ae;
  font-size: 11px;
  font-weight: 800;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid #484a4f;
  border-radius: 3px;
  background: #1b1c1f;
  color: var(--white);
}

.field input,
.field select {
  padding: 11px 12px;
}

.field textarea {
  padding: 12px;
  resize: vertical;
}

.money-input,
.suffix-input {
  display: flex;
  align-items: center;
  min-height: 48px;
  overflow: hidden;
  border: 1px solid #484a4f;
  border-radius: 3px;
  background: #1b1c1f;
}

.money-input:focus-within,
.suffix-input:focus-within {
  border-color: var(--gold);
}

.money-input > span,
.suffix-input > span {
  padding: 0 12px;
  color: var(--gold);
  font-weight: 900;
}

.money-input input,
.suffix-input input {
  min-width: 0;
  border: 0;
  background: transparent;
}

.payment-board {
  position: sticky;
  top: 104px;
  align-self: start;
  padding: 32px;
  border-top: 5px solid var(--gold);
  background: var(--white);
  color: var(--ink);
  box-shadow: var(--shadow);
}

.board-label {
  color: #676a70;
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
}

.payment-total {
  margin-top: 5px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 58px;
  line-height: 1;
  font-weight: 700;
}

.payment-delta {
  display: inline-flex;
  margin-top: 10px;
  padding: 5px 8px;
  border-radius: 3px;
  background: #e9f1ec;
  color: var(--green);
  font-size: 10px;
  font-weight: 900;
}

.payment-delta.is-warning {
  background: #f5e7d1;
  color: #805d17;
}

.payment-delta.is-high {
  background: #f2dddd;
  color: var(--red);
}

.payment-breakdown {
  margin: 28px 0;
  padding: 18px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.payment-breakdown div {
  display: flex;
  justify-content: space-between;
  padding: 5px 0;
  font-size: 12px;
}

.payment-breakdown dt {
  color: #686b70;
}

.payment-breakdown dd {
  margin: 0;
  font-weight: 800;
}

.ratio-heading,
.ratio-scale,
.loan-summary {
  display: flex;
  justify-content: space-between;
}

.ratio-heading {
  font-size: 11px;
  font-weight: 800;
}

.ratio-track {
  position: relative;
  height: 8px;
  margin: 10px 0 6px;
  overflow: hidden;
  background: #dedfe1;
}

.ratio-track span {
  display: block;
  width: 40%;
  height: 100%;
  background: var(--green);
  transition: width 180ms ease, background 180ms ease;
}

.ratio-track i {
  position: absolute;
  top: -2px;
  bottom: -2px;
  left: 60%;
  width: 2px;
  background: var(--ink);
}

.ratio-scale {
  color: #8b8e93;
  font-size: 8px;
  font-style: normal;
  text-transform: uppercase;
}

.loan-summary {
  align-items: baseline;
  margin: 28px 0 22px;
  padding: 14px;
  background: #f0f1ef;
  font-size: 11px;
}

.loan-summary strong {
  font-size: 18px;
}

.payment-board > small {
  display: block;
  margin-top: 12px;
  color: #86898e;
  font-size: 9px;
  line-height: 1.35;
}

.debt-review-shell {
  background: #101113;
}

.debt-broadcast-copy h1 {
  max-width: 790px;
  font-size: 58px;
}

.debt-calculator-layout {
  display: grid;
  width: min(1400px, 94vw);
  margin: 0 auto;
  grid-template-columns: minmax(0, 1.45fr) minmax(330px, 0.55fr);
  gap: 42px;
  padding: 58px 0 80px;
}

.debt-calculator-main {
  min-width: 0;
}

.debt-calculator-main > h1 {
  max-width: 780px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 54px;
  line-height: 1.04;
}

.debt-profile-grid {
  display: grid;
  margin: 38px 0 44px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.equity-field-section {
  margin-top: 38px;
  padding: 28px;
  border-top: 4px solid var(--gold);
  background: #191a1d;
}

.equity-section-heading {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.equity-section-heading > span {
  display: grid;
  width: 30px;
  height: 30px;
  flex: 0 0 30px;
  place-items: center;
  border: 1px solid #5a5d62;
  color: var(--gold-bright);
  font-size: 9px;
  font-weight: 900;
}

.equity-section-heading small {
  color: var(--gold);
  font-size: 9px;
  font-weight: 900;
  text-transform: uppercase;
}

.equity-section-heading h2 {
  margin: 2px 0 0;
  font-size: 19px;
}

.equity-choice-group {
  min-width: 0;
  margin: 24px 0 0;
  padding: 0;
  border: 0;
}

.equity-choice-group legend {
  margin-bottom: 9px;
  color: #a7a9ae;
  font-size: 11px;
  font-weight: 800;
}

.segmented-choice {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border: 1px solid #484a4f;
}

.segmented-choice label {
  min-width: 0;
  cursor: pointer;
}

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

.segmented-choice span {
  display: grid;
  min-height: 50px;
  place-items: center;
  padding: 9px 12px;
  border-right: 1px solid #484a4f;
  color: #bec0c4;
  font-size: 11px;
  font-weight: 900;
  text-align: center;
}

.segmented-choice label:last-child span {
  border-right: 0;
}

.segmented-choice input:checked + span {
  background: var(--gold);
  color: #111214;
}

.segmented-choice input:focus-visible + span {
  outline: 2px solid var(--white);
  outline-offset: -3px;
}

.equity-field-section .debt-profile-grid {
  margin: 22px 0 0;
}

.existing-loan-fields {
  padding-top: 20px;
  border-top: 1px solid #36383d;
}

.equity-payoff-grid {
  align-items: end;
}

.equity-goal-choice {
  margin: 0;
}

.equity-goal-choice select,
.assumption-grid select {
  width: 100%;
  min-height: 48px;
  padding: 11px 12px;
  border: 1px solid #484a4f;
  border-radius: 3px;
  background: #1b1c1f;
  color: var(--white);
}

.percent-input {
  display: flex;
  min-height: 48px;
  align-items: center;
  overflow: hidden;
  border: 1px solid #484a4f;
  border-radius: 3px;
  background: #1b1c1f;
}

.percent-input:focus-within {
  border-color: var(--gold);
}

.percent-input input {
  min-width: 0;
  border: 0;
  background: transparent;
}

.percent-input span {
  padding: 0 12px;
  color: var(--gold);
  font-weight: 900;
}

.rate-assumptions {
  margin-top: 18px;
  border: 1px solid #3d3f44;
  background: #141517;
}

.rate-assumptions summary {
  padding: 16px 18px;
  color: #c4c6ca;
  cursor: pointer;
  font-size: 11px;
  font-weight: 900;
}

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

.equity-product-comparison {
  margin-top: 44px;
}

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

.equity-product-card {
  min-width: 0;
  padding: 20px;
  border: 1px solid #414348;
  border-top: 4px solid #6b6e74;
  border-radius: 4px;
  background: #191a1d;
}

.equity-product-card.is-recommended {
  border-color: var(--gold);
  border-top-color: var(--gold-bright);
  background: #202022;
}

.equity-product-card.is-unavailable {
  opacity: 0.58;
}

.product-card-top {
  display: flex;
  min-height: 46px;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
}

.product-card-top strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 17px;
  line-height: 1.08;
}

.product-card-top span {
  flex: 0 0 auto;
  padding: 4px 6px;
  border: 1px solid #565960;
  color: #aeb0b5;
  font-size: 7px;
  font-weight: 900;
  text-transform: uppercase;
}

.equity-product-card.is-recommended .product-card-top span {
  border-color: var(--gold);
  background: var(--gold);
  color: #111214;
}

.equity-product-card > p {
  min-height: 56px;
  margin: 6px 0 15px;
  color: #a8aaaf;
  font-size: 10px;
  line-height: 1.45;
}

.equity-product-card dl {
  margin: 0;
  border-top: 1px solid #36383d;
}

.equity-product-card dl div {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  padding: 8px 0;
  border-bottom: 1px solid #303237;
  font-size: 9px;
}

.equity-product-card dt {
  color: #999ca2;
}

.equity-product-card dd {
  margin: 0;
  font-weight: 900;
  text-align: right;
}

.equity-product-card dd.is-improvement {
  color: #74be91;
}

.equity-product-card dd.is-increase {
  color: #e19a9a;
}

.equity-product-card > small {
  display: block;
  margin-top: 12px;
  color: #7e8187;
  font-size: 8px;
  line-height: 1.4;
}

.debt-ledger {
  border-top: 4px solid var(--gold);
  background: #191a1d;
}

.debt-ledger-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 24px;
  border-bottom: 1px solid #3a3c40;
}

.debt-ledger-heading span {
  color: var(--gold);
  font-size: 9px;
  font-weight: 900;
  text-transform: uppercase;
}

.debt-ledger-heading h2 {
  margin: 2px 0 0;
  font-size: 18px;
}

.add-debt-button {
  min-height: 38px;
  padding: 7px 12px;
  border: 1px solid #5a5d62;
  border-radius: 3px;
  background: transparent;
  color: var(--white);
  cursor: pointer;
  font-size: 11px;
  font-weight: 900;
}

.add-debt-button:hover {
  border-color: var(--gold);
  color: var(--gold-bright);
}

.debt-table-header,
.debt-row {
  display: grid;
  grid-template-columns: minmax(150px, 1.7fr) minmax(105px, 1fr) minmax(95px, 0.85fr) minmax(72px, 0.65fr) 76px 38px;
  gap: 10px;
  align-items: center;
}

.debt-table-header {
  min-height: 40px;
  padding: 0 18px;
  border-bottom: 1px solid #34363a;
  color: #85888e;
  font-size: 9px;
  font-weight: 900;
  text-transform: uppercase;
}

.debt-row {
  min-height: 68px;
  padding: 10px 18px;
  border-bottom: 1px solid #303236;
}

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

.debt-row input[type="text"],
.debt-row input[type="number"] {
  width: 100%;
  min-width: 0;
  min-height: 40px;
  padding: 8px 9px;
  border: 1px solid #45474c;
  border-radius: 3px;
  background: #111214;
  color: var(--white);
}

.debt-row input[type="checkbox"] {
  width: 19px;
  height: 19px;
  margin: 0 auto;
  accent-color: #a77d20;
}

.debt-remove {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border: 1px solid #4a4c51;
  border-radius: 50%;
  background: transparent;
  color: #a5a8ad;
  cursor: pointer;
  font-size: 10px;
  font-weight: 900;
}

.debt-remove:hover {
  border-color: var(--red);
  color: #e2a1a1;
}

.debt-cell-label {
  display: none;
}

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

.debt-guidance-note {
  display: grid;
  margin-top: 18px;
  grid-template-columns: auto 1fr;
  gap: 8px;
  padding: 16px 18px;
  border-left: 4px solid var(--gold);
  background: #1b1c1f;
  color: #b7b9bd;
  font-size: 12px;
}

.debt-guidance-note strong {
  color: var(--gold-bright);
}

.debt-impact-board {
  position: sticky;
  top: 104px;
  align-self: start;
  padding: 30px;
  border-top: 5px solid var(--gold);
  background: var(--white);
  color: var(--ink);
  box-shadow: var(--shadow);
}

.impact-call {
  margin-top: 6px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 34px;
  line-height: 1.05;
  font-weight: 700;
}

.debt-impact-board > p {
  margin: 10px 0 24px;
  color: #686b70;
  font-size: 12px;
}

.impact-ratio-comparison {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 10px;
  align-items: center;
  padding: 16px 0;
  border-top: 1px solid var(--line);
}

.impact-ratio-comparison div {
  display: grid;
  gap: 3px;
}

.impact-ratio-comparison span {
  color: #797c81;
  font-size: 8px;
  font-weight: 900;
  text-transform: uppercase;
}

.impact-ratio-comparison strong {
  font-size: 24px;
}

.impact-arrow {
  color: #8b8e93;
  font-weight: 900;
}

.debt-ratio-track {
  margin: 2px 0 18px;
}

.impact-breakdown {
  margin: 0;
  padding: 16px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.impact-breakdown div {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  padding: 5px 0;
  font-size: 11px;
}

.impact-breakdown dt {
  color: #707379;
}

.impact-breakdown dd {
  margin: 0;
  font-weight: 900;
  text-align: right;
}

.cash-tradeoff,
.qualification-swing {
  display: grid;
  margin-top: 18px;
  padding: 14px;
  background: #eef3ef;
}

.cash-tradeoff.is-low-cash {
  background: #f7ecd6;
}

.cash-tradeoff.is-deficit {
  background: #f2dddd;
}

.cash-tradeoff span,
.qualification-swing span {
  color: #6c6f74;
  font-size: 9px;
  font-weight: 900;
  text-transform: uppercase;
}

.cash-tradeoff strong,
.qualification-swing strong {
  margin-top: 2px;
  font-size: 23px;
}

.cash-tradeoff small {
  margin-top: 3px;
  color: #73767b;
  font-size: 9px;
}

.qualification-swing {
  margin: 9px 0 18px;
  background: #f0f1ef;
}

.qualification-swing strong {
  color: var(--green);
}

.qualification-swing small {
  margin-top: 4px;
  color: #6c6f74;
  font-size: 9px;
}

.equity-payment-swing strong.is-increase {
  color: var(--red);
}

.equity-payment-swing strong.is-improvement {
  color: var(--green);
}

.debt-impact-board > small {
  display: block;
  margin-top: 12px;
  color: #86898e;
  font-size: 9px;
  line-height: 1.35;
}

.debt-review-sidebar {
  border-top: 5px solid var(--gold);
}

.debt-report-tradeoff {
  display: grid;
  margin: -24px 0 48px 34px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border: 1px solid var(--line);
}

.debt-report-tradeoff > div {
  display: grid;
  min-height: 92px;
  align-content: center;
  padding: 16px 20px;
  border-right: 1px solid var(--line);
}

.debt-report-tradeoff > div span {
  color: #777a80;
  font-size: 9px;
  font-weight: 900;
  text-transform: uppercase;
}

.debt-report-tradeoff > div strong {
  margin-top: 2px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 26px;
}

.debt-report-tradeoff > p {
  grid-column: 1 / -1;
  margin: 0;
  padding: 13px 20px;
  border-top: 1px solid var(--line);
  background: #f2f3f1;
  color: #66696e;
  font-size: 11px;
}

.cost-summary {
  margin: 14px 0 18px;
  padding: 12px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.cost-summary div {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  padding: 4px 0;
  font-size: 10px;
}

.cost-summary dt {
  color: #707379;
}

.cost-summary dd {
  margin: 0;
  font-weight: 900;
  text-align: right;
}

.desk-shell,
.learning-shell {
  min-height: calc(100vh - 76px);
  background: #101113;
  color: var(--white);
}

.desk-topline {
  display: grid;
  min-height: 54px;
  align-items: center;
  padding: 0 max(4vw, 28px);
  grid-template-columns: 1fr auto 1fr;
  border-bottom: 1px solid #35373b;
  color: #8f9298;
  font-size: 9px;
  font-weight: 900;
  text-transform: uppercase;
}

.desk-topline span:last-child {
  text-align: right;
}

.desk-heading {
  width: min(1320px, 92vw);
  margin: 0 auto;
  padding: 58px 0 28px;
}

.desk-heading h1,
.tool-main > h1,
.learning-form > h1,
.learning-result-grid h1 {
  max-width: 850px;
  margin: 4px 0 12px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 50px;
  line-height: 1.04;
}

.desk-heading > p:last-child {
  max-width: 680px;
  color: #adafb4;
}

.desk-layout {
  display: grid;
  width: min(1320px, 92vw);
  margin: 0 auto;
  padding-bottom: 80px;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.28fr);
  gap: 28px;
}

.desk-main {
  display: grid;
  gap: 18px;
}

.desk-band,
.tool-band {
  padding: 26px;
  border-top: 4px solid var(--gold);
  background: #191a1d;
}

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

.desk-grid-four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.desk-save-panel,
.tool-board {
  position: sticky;
  top: 104px;
  align-self: start;
  padding: 28px;
  border-top: 5px solid var(--gold);
  background: var(--white);
  color: var(--ink);
  box-shadow: var(--shadow);
}

.desk-save-panel h2,
.tool-board h2 {
  margin: 6px 0 10px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 32px;
  line-height: 1.06;
}

.desk-save-panel > p,
.tool-board > p {
  color: #676a70;
  font-size: 11px;
  line-height: 1.5;
}

.desk-save-panel .button + .button {
  margin-top: 8px;
  border-color: #2c2e31;
  color: #2c2e31;
}

.desk-save-panel > small,
.tool-board > small {
  display: block;
  margin-top: 12px;
  color: #85888d;
  font-size: 8px;
  line-height: 1.4;
}

.tool-review-shell {
  background: #101113;
}

.tool-layout {
  display: grid;
  width: min(1460px, 95vw);
  margin: 0 auto;
  padding: 54px 0 80px;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.3fr);
  gap: 32px;
}

.tool-main {
  min-width: 0;
}

.tool-main > .calculator-lead {
  margin-bottom: 34px;
}

.tool-band + .tool-band {
  margin-top: 18px;
}

.sequence-comparison {
  margin-top: 38px;
}

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

.sequence-grid-four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.sequence-grid article {
  position: relative;
  min-width: 0;
  min-height: 220px;
  padding: 20px;
  border: 1px solid #414348;
  border-top: 4px solid #686b71;
  border-radius: 4px;
  background: #191a1d;
}

.sequence-grid article.is-recommended {
  border-color: var(--gold);
  border-top-color: var(--gold-bright);
  background: #212022;
}

.sequence-grid article.is-unavailable {
  opacity: 0.52;
}

.sequence-grid article > strong {
  display: block;
  min-height: 42px;
  padding-right: 62px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 17px;
  line-height: 1.08;
}

.sequence-status {
  position: absolute;
  top: 17px;
  right: 14px;
  padding: 4px 6px;
  border: 1px solid #565960;
  color: #aeb0b5;
  font-size: 7px;
  font-weight: 900;
  text-transform: uppercase;
}

.sequence-grid article.is-recommended .sequence-status {
  border-color: var(--gold);
  background: var(--gold);
  color: #111214;
}

.sequence-grid dl {
  margin: 8px 0 0;
  border-top: 1px solid #36383d;
}

.sequence-grid dl div {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  padding: 8px 0;
  border-bottom: 1px solid #303237;
  font-size: 9px;
}

.sequence-grid dt {
  color: #999ca2;
}

.sequence-grid dd {
  margin: 0;
  font-weight: 900;
  text-align: right;
}

.sequence-grid article > p {
  margin: 12px 0 0;
  color: #8f9298;
  font-size: 9px;
  line-height: 1.45;
}

.tool-board .cash-tradeoff {
  margin-bottom: 18px;
}

.learning-shell {
  background: var(--paper);
  color: var(--ink);
}

.learning-layout {
  display: grid;
  width: min(1220px, 92vw);
  margin: 48px auto 80px;
  grid-template-columns: minmax(0, 0.68fr) minmax(330px, 0.32fr);
  border: 1px solid #d2d4d7;
  background: var(--white);
  box-shadow: var(--shadow);
}

.learning-form {
  padding: 48px;
}

.learning-form > h1 {
  font-size: 44px;
}

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

.learning-question-grid fieldset {
  min-width: 0;
  padding: 0;
  border: 1px solid #d1d3d6;
}

.learning-question-grid legend {
  min-height: 58px;
  padding: 12px 14px;
  color: #393b3f;
  font-size: 11px;
  font-weight: 900;
}

.learning-question-grid label {
  display: block;
  border-top: 1px solid #e0e1e3;
  cursor: pointer;
}

.learning-question-grid input {
  position: absolute;
  opacity: 0;
}

.learning-question-grid label span {
  display: flex;
  min-height: 46px;
  align-items: center;
  padding: 10px 13px;
  color: #5e6166;
  font-size: 10px;
  font-weight: 800;
}

.learning-question-grid input:checked + span {
  background: #18191b;
  color: var(--white);
}

.learning-question-grid input:focus-visible + span {
  outline: 2px solid var(--gold);
  outline-offset: -3px;
}

.learning-fundamentals {
  padding: 48px 36px;
  background: #111214;
  color: var(--white);
}

.learning-fundamentals h2 {
  margin: 5px 0 28px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 30px;
}

.learning-fundamentals ol {
  display: grid;
  margin: 0;
  padding: 0;
  gap: 0;
  list-style: none;
}

.learning-fundamentals li {
  display: grid;
  padding: 16px 0;
  grid-template-columns: 36px 1fr;
  gap: 10px;
  border-top: 1px solid #35373b;
}

.learning-fundamentals li > span {
  color: var(--gold);
  font-size: 9px;
  font-weight: 900;
}

.learning-fundamentals li strong {
  font-size: 12px;
}

.learning-fundamentals li p {
  margin: 3px 0 0;
  color: #979aa0;
  font-size: 9px;
  line-height: 1.4;
}

.learning-result-shell {
  min-height: calc(100vh - 76px);
  padding: 30px 4vw 80px;
  background: var(--paper);
  color: var(--ink);
}

.learning-result-grid {
  display: grid;
  width: min(1120px, 92vw);
  margin: 34px auto;
  grid-template-columns: minmax(0, 0.68fr) minmax(300px, 0.32fr);
  box-shadow: var(--shadow);
}

.learning-result-grid > section {
  padding: 54px;
  background: var(--white);
}

.learning-result-grid > section > p:not(.eyebrow) {
  max-width: 650px;
  color: #686b70;
}

.learning-topic-band {
  display: grid;
  margin: 34px 0;
  padding: 20px;
  border-left: 4px solid var(--gold);
  background: #f0f1ef;
}

.learning-topic-band span {
  color: #76797e;
  font-size: 8px;
  font-weight: 900;
  text-transform: uppercase;
}

.learning-topic-band strong {
  margin-top: 3px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
}

.learning-topic-band p {
  margin: 7px 0 0;
  color: #686b70;
  font-size: 11px;
}

.learning-result-grid > aside {
  padding: 42px 32px;
  background: #111214;
  color: var(--white);
}

.learning-result-grid > aside img {
  display: block;
  width: min(230px, 100%);
  margin: 0 auto 30px;
}

.learning-result-grid > aside h2 {
  margin: 4px 0 8px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
}

.learning-result-grid > aside > p:not(.eyebrow) {
  color: #a7a9ae;
  font-size: 10px;
  line-height: 1.5;
}

.review-question-shell {
  min-height: calc(100vh - 76px);
  background: var(--paper);
}

.review-topbar-light {
  border-bottom-color: #d4d6d9;
}

.phase-indicator-dark span.is-active,
.review-id-dark {
  color: var(--ink);
}

.review-question-layout {
  display: grid;
  width: min(1180px, 92vw);
  min-height: 650px;
  margin: 54px auto 80px;
  grid-template-columns: 0.38fr 0.62fr;
  border: 1px solid #d2d4d7;
  background: var(--white);
  box-shadow: var(--shadow);
}

.review-sidebar {
  padding: 52px 42px;
  background: var(--ink);
  color: var(--white);
}

.review-sidebar h1 {
  margin: 0 0 72px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 42px;
}

.review-progress-copy {
  display: grid;
  gap: 2px;
}

.review-progress-copy strong {
  font-size: 24px;
}

.review-progress-copy span {
  color: #989ba1;
  font-size: 10px;
  text-transform: uppercase;
}

.review-progress-track {
  height: 6px;
  margin: 18px 0 34px;
  background: #393b3f;
}

.review-progress-track span {
  display: block;
  width: 8.33%;
  height: 100%;
  background: var(--gold);
  transition: width 180ms ease;
}

.review-sidebar > p:last-child {
  color: #aeb0b5;
  font-size: 13px;
}

.question-stage {
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: space-between;
  padding: 64px 7%;
}

.question-number {
  color: #896a1f;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.question-stage h2 {
  max-width: 650px;
  margin: 12px 0 10px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 38px;
  line-height: 1.15;
}

.question-help {
  margin: 0 0 28px;
  color: #6a6d72;
  font-size: 14px;
}

.answer-options {
  display: grid;
  gap: 10px;
}

.answer-option {
  position: relative;
  display: flex;
  min-height: 54px;
  align-items: center;
  padding: 12px 16px;
  border: 1px solid #d0d2d5;
  border-radius: 4px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 700;
}

.answer-option:hover {
  border-color: #7c7f84;
}

.answer-option:has(input:checked) {
  border-color: var(--gold);
  background: #fff8e6;
  box-shadow: inset 4px 0 0 var(--gold);
}

.answer-option input {
  width: 17px;
  height: 17px;
  margin: 0 12px 0 0;
  accent-color: #9b7720;
}

.text-answer {
  display: grid;
  gap: 8px;
}

.text-answer input,
.text-answer textarea {
  width: 100%;
  min-height: 54px;
  padding: 14px;
  border: 1px solid #bfc2c6;
  border-radius: 4px;
  background: var(--white);
}

.text-answer textarea {
  min-height: 120px;
  resize: vertical;
}

.question-actions {
  display: flex;
  justify-content: space-between;
  margin-top: 42px;
  padding-top: 22px;
  border-top: 1px solid #e0e1e3;
}

.call-page {
  min-height: calc(100vh - 76px);
  background: #eceef0;
  padding-bottom: 80px;
}

.call-topline {
  display: flex;
  justify-content: space-between;
  padding: 12px 4vw;
  background: var(--ink);
  color: #bfc1c5;
  font-size: 9px;
  font-weight: 900;
  text-transform: uppercase;
}

.call-scoreboard {
  position: relative;
  display: grid;
  min-height: 300px;
  grid-template-columns: 1fr 250px;
  align-items: center;
  padding: 48px max(4vw, calc((100vw - 1180px) / 2));
  background-color: #151618;
  background-image: url("assets/situation-room.png");
  background-position: center;
  background-size: cover;
  color: var(--white);
}

.call-scoreboard::before {
  position: absolute;
  inset: 0;
  background: rgba(15, 15, 16, 0.74);
  content: "";
}

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

.scoreboard-label {
  color: var(--gold);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.scoreboard-left h1 {
  max-width: 760px;
  margin: 10px 0 12px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 54px;
  line-height: 1.05;
}

.scoreboard-left p {
  max-width: 690px;
  margin: 0;
  color: #d0d2d5;
}

.call-badge {
  display: grid;
  width: 180px;
  min-height: 190px;
  justify-self: end;
  place-content: center;
  border: 4px solid var(--gold);
  background: rgba(10, 10, 11, 0.88);
  text-align: center;
  transform: rotate(1deg);
}

.call-badge span,
.call-badge small {
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
}

.call-badge strong {
  color: var(--gold-bright);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 50px;
  line-height: 1;
}

.call-badge small {
  margin-top: 12px;
  padding: 5px;
  background: var(--gold);
  color: var(--ink);
}

.call-content {
  display: grid;
  width: min(1180px, 92vw);
  margin: 0 auto;
  grid-template-columns: 1fr 330px;
  gap: 34px;
  align-items: start;
  padding-top: 42px;
}

.call-main {
  padding: 42px 48px 54px;
  background: var(--white);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.09);
}

.report-section-heading {
  display: grid;
  margin: 0 0 20px;
  grid-template-columns: 34px 1fr;
  align-items: start;
}

.report-section-heading > span {
  padding-top: 4px;
  color: #896a1f;
  font-size: 10px;
  font-weight: 900;
}

.report-section-heading p {
  margin: 0;
  color: #777a80;
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
}

.report-section-heading h2 {
  margin: 3px 0 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 29px;
}

.finding-grid {
  display: grid;
  margin: 0 0 48px 34px;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--line);
}

.finding-grid article {
  display: grid;
  min-height: 132px;
  align-content: center;
  padding: 18px;
  border-right: 1px solid var(--line);
}

.finding-grid article:last-child {
  border-right: 0;
}

.finding-grid span,
.finding-grid small {
  color: #75787d;
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
}

.finding-grid strong {
  margin: 5px 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
}

.coach-notes {
  margin: 0 0 48px 34px;
  padding: 24px;
  border-left: 5px solid var(--gold);
  background: #f2f3f1;
}

.coach-notes p {
  margin: 0;
  color: #46494e;
}

.next-sequence {
  display: grid;
  gap: 0;
  margin: 0 0 0 34px;
  padding: 0;
  list-style: none;
}

.next-sequence li {
  display: grid;
  grid-template-columns: 42px 1fr;
  padding: 18px 0;
  border-top: 1px solid var(--line);
}

.next-sequence li > span {
  display: grid;
  width: 27px;
  height: 27px;
  place-items: center;
  border-radius: 50%;
  background: var(--ink);
  color: var(--gold-bright);
  font-size: 11px;
  font-weight: 900;
}

.next-sequence strong {
  font-size: 14px;
}

.next-sequence p {
  margin: 3px 0 0;
  color: #707379;
  font-size: 12px;
}

.call-actions-panel {
  position: sticky;
  top: 104px;
  padding: 34px;
  background: var(--ink);
  color: var(--white);
  box-shadow: var(--shadow);
}

.call-actions-panel h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
  line-height: 1.05;
}

.call-actions-panel > p:not(.eyebrow) {
  color: #aeb0b5;
  font-size: 12px;
}

.ref-signature {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 26px 0;
  padding: 18px 0;
  border-top: 1px solid #3d3f43;
  border-bottom: 1px solid #3d3f43;
}

.call-brand-logo {
  display: block;
  width: min(220px, 100%);
  height: auto;
  margin: 0 auto 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid #3d3f43;
}

.signature-logo-mark {
  display: block;
  width: 58px;
  height: 58px;
  flex: 0 0 58px;
  overflow: hidden;
}

.signature-logo-mark img {
  width: 100px;
  height: 100px;
  max-width: none;
  transform: translate(-21px, -10px);
}

.logo-fallback-small {
  width: 38px;
  height: 43px;
  flex-basis: 38px;
}

.logo-fallback-small strong {
  font-size: 14px;
}

.ref-signature div {
  display: grid;
}

.ref-signature small {
  color: #999ca2;
  font-size: 10px;
}

.call-actions-panel .button + .button {
  margin-top: 9px;
}

.challenge-link,
.reset-link {
  width: 100%;
  margin-top: 14px;
  color: #d4d6d9;
  text-align: center;
}

.reset-link {
  margin-top: 4px;
  color: #8e9197;
  font-size: 10px;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 4vw;
  border-top: 1px solid #303236;
  background: var(--ink);
  color: #989ba1;
  font-size: 10px;
  text-transform: uppercase;
}

.modal {
  width: min(530px, calc(100vw - 30px));
  padding: 0;
  border: 0;
  border-top: 6px solid var(--gold);
  border-radius: 4px;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.38);
}

.modal::backdrop {
  background: rgba(0, 0, 0, 0.72);
}

.modal form {
  position: relative;
  display: grid;
  gap: 17px;
  padding: 38px;
}

.modal h2 {
  margin: -4px 0 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 34px;
  line-height: 1.05;
}

.modal p:not(.eyebrow) {
  margin: -7px 0 4px;
  color: #62656a;
  font-size: 13px;
}

.modal .field > span:first-child {
  color: #4d5055;
}

.modal .field input,
.modal .field textarea {
  border-color: #c6c8cc;
  background: var(--white);
  color: var(--ink);
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid #c5c7ca;
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  font-size: 12px;
  font-weight: 900;
}

.time-options {
  display: grid;
  margin: 0;
  padding: 0;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  border: 0;
}

.time-options legend {
  margin-bottom: 8px;
  color: #4d5055;
  font-size: 11px;
  font-weight: 800;
}

.time-options label {
  position: relative;
}

.time-options input {
  position: absolute;
  opacity: 0;
}

.time-options span {
  display: grid;
  min-height: 44px;
  place-items: center;
  border: 1px solid #c7c9cd;
  border-radius: 3px;
  cursor: pointer;
  font-size: 12px;
  font-weight: 800;
}

.time-options input:checked + span {
  border-color: var(--gold);
  background: #fff7e3;
}

.toast {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 100;
  max-width: min(390px, calc(100vw - 48px));
  padding: 14px 18px;
  border-left: 4px solid var(--gold);
  background: var(--ink);
  color: var(--white);
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity 160ms ease, transform 160ms ease;
  font-size: 13px;
}

.toast.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.rulebook-shell,
.resource-detail-shell {
  min-height: calc(100vh - 76px);
  background: #eef0ed;
}

.rulebook-hero {
  position: relative;
  display: grid;
  min-height: 430px;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 70px;
  align-items: center;
  padding: 70px max(5vw, calc((100vw - 1180px) / 2));
  overflow: hidden;
  background-color: var(--ink);
  background-image: url("assets/situation-room.png");
  background-position: center;
  background-size: cover;
  color: var(--white);
}

.rulebook-hero::before {
  position: absolute;
  inset: 0;
  background: rgba(4, 4, 5, 0.84);
  content: "";
}

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

.rulebook-hero-copy {
  max-width: 780px;
}

.rulebook-hero-copy .status-line {
  margin-bottom: 34px;
}

.rulebook-hero h1,
.resource-detail-main h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 62px;
  line-height: 1.04;
}

.rulebook-hero-copy > p:last-child {
  max-width: 700px;
  margin: 24px 0 0;
  color: #d1d3d5;
  font-size: 17px;
  line-height: 1.65;
}

.rulebook-hero-mark {
  display: grid;
  gap: 14px;
  padding: 12px 0 12px 30px;
  border-left: 2px solid var(--gold);
}

.rulebook-hero-mark img {
  width: 98px;
  height: 98px;
  object-fit: cover;
}

.rulebook-hero-mark span {
  color: var(--gold);
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
}

.rulebook-hero-mark strong {
  max-width: 260px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 23px;
  line-height: 1.25;
}

.rulebook-library {
  width: min(1180px, 92vw);
  margin: 0 auto;
  padding: 68px 0 90px;
}

.rulebook-library-heading,
.play-rulebook-heading,
.learning-rulebook-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 28px;
}

.rulebook-library-heading h2,
.play-rulebook-heading h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 38px;
  line-height: 1.1;
}

.rulebook-library-heading > p {
  margin: 0 0 5px;
  color: #6a6d72;
  font-size: 12px;
  font-weight: 800;
}

.rulebook-toolbar {
  display: grid;
  margin-top: 36px;
  grid-template-columns: minmax(0, 1fr) 230px;
  gap: 12px;
}

.rulebook-search,
.rulebook-format {
  display: grid;
  gap: 7px;
}

.rulebook-search > span,
.rulebook-format > span {
  color: #5b5e63;
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
}

.rulebook-search input,
.rulebook-format select {
  width: 100%;
  min-height: 52px;
  border: 1px solid #bfc2c6;
  border-radius: 3px;
  background: var(--white);
  color: var(--ink);
}

.rulebook-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 22px;
  padding-bottom: 22px;
  border-bottom: 1px solid #c8cace;
}

.rulebook-filters button {
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid #aeb1b5;
  border-radius: 3px;
  background: transparent;
  color: #4d5055;
  cursor: pointer;
  font-size: 11px;
  font-weight: 900;
}

.rulebook-filters button.is-active,
.rulebook-filters button:hover {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--gold-bright);
}

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

.rulebook-resource-card,
.rulebook-mini-card {
  position: relative;
  display: grid;
  min-width: 0;
  border: 1px solid #c5c7ca;
  border-top: 3px solid var(--gold);
  border-radius: 5px;
  background: var(--white);
  color: var(--ink);
  cursor: pointer;
  text-align: left;
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.rulebook-resource-card {
  min-height: 285px;
  padding: 20px 20px 18px;
}

.rulebook-resource-card:hover,
.rulebook-mini-card:hover {
  border-color: var(--gold);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.11);
  transform: translateY(-3px);
}

.resource-card-top,
.resource-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.resource-card-top strong,
.resource-card-top i {
  color: #6b6e73;
  font-size: 9px;
  font-style: normal;
  font-weight: 900;
  text-transform: uppercase;
}

.resource-card-top i {
  padding: 5px 7px;
  background: var(--gold);
  color: var(--ink);
}

.resource-card-body {
  display: grid;
  align-content: start;
  gap: 12px;
  margin-top: 26px;
}

.resource-card-body > strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 25px;
  line-height: 1.12;
}

.resource-card-body > span {
  color: #606369;
  font-size: 13px;
  line-height: 1.55;
}

.resource-card-footer {
  align-self: end;
  margin-top: 24px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  color: #5f6267;
  font-size: 9px;
  font-weight: 900;
  text-transform: uppercase;
}

.resource-card-footer span:last-child {
  color: #765b1b;
}

.rulebook-empty {
  display: grid;
  margin-top: 28px;
  gap: 8px;
  padding: 46px;
  border: 1px solid #c5c7ca;
  background: var(--white);
  text-align: center;
}

.rulebook-empty[hidden] {
  display: none;
}

.resource-detail-topbar {
  display: grid;
  min-height: 58px;
  grid-template-columns: 1fr auto auto;
  gap: 28px;
  align-items: center;
  padding: 0 max(4vw, calc((100vw - 1180px) / 2));
  border-bottom: 1px solid #d4d6d8;
  background: var(--white);
  color: #5e6166;
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
}

.resource-detail-layout {
  display: grid;
  width: min(1180px, 92vw);
  margin: 0 auto;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 32px;
  align-items: start;
  padding: 54px 0 90px;
}

.resource-detail-main {
  padding: 54px 60px 64px;
  background: var(--white);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
}

.resource-detail-main h1 {
  max-width: 760px;
  font-size: 54px;
}

.resource-detail-lead {
  max-width: 720px;
  margin: 22px 0 0;
  color: #55585d;
  font-size: 18px;
  line-height: 1.6;
}

.resource-rule-callout {
  display: grid;
  gap: 8px;
  margin: 36px 0 42px;
  padding: 24px 28px;
  border-left: 5px solid var(--gold);
  background: #f1f2ef;
}

.resource-rule-callout span {
  color: #77601f;
  font-size: 9px;
  font-weight: 900;
  text-transform: uppercase;
}

.resource-rule-callout strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
  line-height: 1.3;
}

.resource-detail-content {
  display: grid;
  gap: 34px;
}

.resource-detail-content section {
  padding-bottom: 30px;
  border-bottom: 1px solid var(--line);
}

.resource-detail-content section:last-child {
  border-bottom: 0;
}

.resource-detail-content h2 {
  margin: 0 0 14px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 29px;
}

.resource-detail-content p,
.resource-detail-content li {
  color: #4f5257;
  font-size: 15px;
  line-height: 1.7;
}

.resource-detail-content p {
  margin: 0;
}

.resource-detail-content ul {
  display: grid;
  gap: 9px;
  margin: 0;
  padding-left: 20px;
}

.resource-disclaimer {
  margin: 34px 0 0;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  color: #777a80;
  font-size: 10px;
  line-height: 1.6;
}

.resource-actions {
  position: sticky;
  top: 96px;
  padding: 30px 28px;
  background: var(--ink);
  color: var(--white);
}

.resource-actions > img {
  width: 100px;
  height: 100px;
  object-fit: cover;
}

.resource-actions h2 {
  margin: 6px 0 10px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
  line-height: 1.15;
}

.resource-actions > p:not(.eyebrow) {
  margin: 0 0 24px;
  color: #bfc1c5;
  font-size: 13px;
  line-height: 1.55;
}

.resource-actions .button {
  margin-top: 10px;
}

.resource-actions .challenge-link {
  width: 100%;
  margin-top: 18px;
}

.play-rulebook-band {
  width: min(1180px, 92vw);
  margin: 0 auto;
  padding: 60px 0 78px;
}

.play-rulebook-heading h2 {
  max-width: 700px;
  font-size: 34px;
}

.play-rulebook-grid,
.learning-rulebook-grid {
  display: grid;
  margin-top: 26px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.rulebook-mini-card {
  min-height: 190px;
  padding: 16px;
}

.rulebook-mini-card .resource-card-body {
  gap: 8px;
  margin-top: 16px;
}

.rulebook-mini-card .resource-card-body > strong {
  font-size: 19px;
}

.rulebook-mini-card .resource-card-body > span {
  display: none;
}

.rulebook-mini-card .resource-card-footer {
  margin-top: 14px;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.learning-rulebook {
  margin: 26px 0;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.learning-rulebook-heading {
  align-items: center;
}

.learning-rulebook-heading > span {
  color: #575a5f;
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
}

.learning-rulebook-heading button {
  border: 0;
  background: transparent;
  color: #765b1b;
  cursor: pointer;
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
}

.learning-rulebook-grid {
  margin-top: 14px;
}

.learning-rulebook-grid .rulebook-mini-card {
  min-height: 175px;
}

@media (max-width: 1080px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .rulebook-hero {
    grid-template-columns: minmax(0, 1fr) 250px;
    gap: 36px;
  }

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

  .resource-detail-layout {
    grid-template-columns: 1fr;
  }

  .resource-actions {
    position: static;
  }

  .primary-nav {
    display: none;
  }

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

  .play-card:last-child {
    grid-column: 1 / -1;
  }

  .review-standard {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .calculator-layout,
  .debt-calculator-layout,
  .tool-layout,
  .desk-layout,
  .learning-layout,
  .learning-result-grid {
    grid-template-columns: 1fr;
  }

  .payment-board,
  .debt-impact-board,
  .call-actions-panel,
  .tool-board,
  .desk-save-panel {
    position: static;
  }

  .desk-grid-four,
  .sequence-grid-four {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .payment-board {
    width: min(620px, 100%);
  }

  .call-content {
    grid-template-columns: 1fr;
  }

  .call-actions-panel {
    width: min(520px, 100%);
  }
}

@media (max-width: 780px) {
  .rulebook-hero {
    min-height: 560px;
    grid-template-columns: 1fr;
    gap: 34px;
    padding: 54px 24px;
  }

  .rulebook-hero h1,
  .resource-detail-main h1 {
    font-size: 42px;
  }

  .rulebook-hero-mark {
    padding-left: 22px;
  }

  .rulebook-hero-mark img {
    width: 74px;
    height: 74px;
  }

  .rulebook-library {
    width: calc(100% - 24px);
    padding: 46px 0 64px;
  }

  .rulebook-library-heading,
  .play-rulebook-heading {
    display: grid;
    align-items: start;
  }

  .rulebook-library-heading h2,
  .play-rulebook-heading h2 {
    font-size: 31px;
  }

  .rulebook-toolbar,
  .rulebook-grid,
  .play-rulebook-grid,
  .learning-rulebook-grid {
    grid-template-columns: 1fr;
  }

  .rulebook-filters {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 14px;
  }

  .rulebook-filters button {
    flex: 0 0 auto;
  }

  .rulebook-resource-card {
    min-height: 255px;
  }

  .resource-detail-topbar {
    min-height: 68px;
    grid-template-columns: 1fr auto;
    padding: 0 16px;
  }

  .resource-detail-topbar span:first-of-type {
    display: none;
  }

  .resource-detail-layout {
    width: calc(100% - 24px);
    padding: 24px 0 60px;
  }

  .resource-detail-main {
    padding: 36px 24px 44px;
  }

  .resource-detail-lead {
    font-size: 16px;
  }

  .resource-rule-callout {
    padding: 20px;
  }

  .resource-rule-callout strong {
    font-size: 21px;
  }

  .resource-actions {
    padding: 28px 24px;
  }

  .play-rulebook-band {
    width: calc(100% - 24px);
    padding: 42px 0 58px;
  }

  .rulebook-mini-card,
  .learning-rulebook-grid .rulebook-mini-card {
    min-height: 165px;
  }

  .button-row {
    display: grid;
    width: 100%;
  }

  .button-row .button {
    width: 100%;
  }
  .site-header {
    min-height: 68px;
    padding: 8px 16px;
  }

  .brand-copy span,
  .header-cta {
    display: none;
  }

  .logo-fallback {
    width: 42px;
    height: 47px;
    flex-basis: 42px;
  }

  .brand-logo-mark {
    width: 48px;
    height: 48px;
    flex-basis: 48px;
  }

  .brand-logo-mark img {
    width: 84px;
    height: 84px;
    transform: translate(-18px, -8px);
  }

  .hero {
    min-height: auto;
    background-position: 55% top;
  }

  .hero-content {
    padding: 70px 0 36px;
  }

  .status-line {
    margin-bottom: 25px;
  }

  .hero h1,
  .broadcast-copy h1,
  .calculator-form h1,
  .generic-play-panel h1 {
    font-size: 42px;
  }

  .hero-copy {
    font-size: 15px;
  }

  .play-board {
    width: calc(100% - 24px);
    margin-bottom: 16px;
    grid-template-columns: 1fr;
  }

  .play-card,
  .play-card:last-child {
    min-height: 178px;
    grid-column: auto;
  }

  .play-icon {
    margin: 16px 0 10px;
  }

  .review-standard {
    padding: 56px 0;
  }

  .section-heading h2 {
    font-size: 34px;
  }

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

  .standard-grid article {
    min-height: 145px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .generic-play-panel,
  .review-broadcast {
    grid-template-columns: 1fr;
  }

  .generic-play-panel > div,
  .broadcast-copy {
    padding: 44px 28px;
  }

  .review-lineup {
    min-height: 520px;
  }

  .review-topbar {
    grid-template-columns: 1fr auto;
    padding: 8px 16px;
  }

  .phase-indicator {
    display: none;
  }

  .calculator-layout,
  .debt-calculator-layout,
  .tool-layout {
    width: calc(100% - 30px);
    gap: 34px;
    padding-top: 38px;
  }

  .calculator-form h1,
  .debt-calculator-main > h1,
  .tool-main > h1,
  .desk-heading h1,
  .learning-form > h1,
  .learning-result-grid h1 {
    font-size: 40px;
  }

  .field-grid,
  .debt-profile-grid {
    grid-template-columns: 1fr;
  }

  .equity-field-section {
    padding: 22px 18px;
  }

  .segmented-choice {
    grid-template-columns: 1fr;
  }

  .segmented-choice span {
    border-right: 0;
    border-bottom: 1px solid #484a4f;
  }

  .segmented-choice label:last-child span {
    border-bottom: 0;
  }

  .assumption-grid,
  .equity-product-grid {
    grid-template-columns: 1fr;
  }

  .desk-layout,
  .desk-heading,
  .learning-layout,
  .learning-result-grid {
    width: calc(100% - 24px);
  }

  .desk-heading {
    padding-top: 42px;
  }

  .desk-grid,
  .desk-grid-four,
  .desk-grid-three,
  .sequence-grid,
  .sequence-grid-four,
  .learning-question-grid {
    grid-template-columns: 1fr;
  }

  .desk-band,
  .tool-band {
    padding: 22px 18px;
  }

  .learning-form,
  .learning-result-grid > section {
    padding: 34px 24px;
  }

  .learning-fundamentals,
  .learning-result-grid > aside {
    padding: 34px 24px;
  }

  .desk-topline {
    padding: 0 16px;
    grid-template-columns: 1fr auto;
  }

  .desk-topline > span:nth-child(2) {
    display: none;
  }

  .equity-product-card > p {
    min-height: 0;
  }

  .payment-board {
    padding: 26px 22px;
  }

  .payment-total {
    font-size: 48px;
  }

  .debt-ledger-heading {
    align-items: flex-start;
    padding: 18px;
  }

  .debt-table-header {
    display: none;
  }

  .debt-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    padding: 18px;
  }

  .debt-row > label,
  .debt-row > div {
    display: grid;
    gap: 5px;
  }

  .debt-row > label:first-child {
    grid-column: 1 / -1;
  }

  .debt-cell-label {
    display: block;
    color: #8f9298;
    font-size: 8px;
    font-weight: 900;
    text-transform: uppercase;
  }

  .debt-evaluate-cell {
    display: flex !important;
    min-height: 48px;
    align-items: center;
    justify-content: space-between;
    padding: 8px 10px;
    border: 1px solid #45474c;
    border-radius: 3px;
  }

  .debt-evaluate-cell input[type="checkbox"] {
    margin: 0;
  }

  .debt-remove {
    align-self: end;
    justify-self: end;
  }

  .debt-guidance-note {
    grid-template-columns: 1fr;
  }

  .debt-impact-board {
    padding: 26px 22px;
  }

  .impact-call {
    font-size: 30px;
  }

  .debt-report-tradeoff {
    margin-left: 0;
    grid-template-columns: 1fr;
  }

  .debt-report-tradeoff > div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .review-question-layout {
    width: calc(100% - 24px);
    margin: 24px auto 48px;
    grid-template-columns: 1fr;
  }

  .review-sidebar {
    padding: 30px 26px;
  }

  .review-sidebar h1 {
    margin-bottom: 24px;
    font-size: 32px;
  }

  .review-sidebar > p:last-child {
    display: none;
  }

  .review-progress-track {
    margin-bottom: 0;
  }

  .question-stage {
    min-height: 520px;
    padding: 38px 24px;
  }

  .question-stage h2 {
    font-size: 31px;
  }

  .call-topline span:nth-child(2) {
    display: none;
  }

  .call-scoreboard {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 42px 24px;
  }

  .scoreboard-left h1 {
    font-size: 42px;
  }

  .call-badge {
    width: 145px;
    min-height: 150px;
    justify-self: start;
  }

  .call-badge strong {
    font-size: 38px;
  }

  .call-content {
    width: calc(100% - 24px);
  }

  .call-main,
  .call-actions-panel {
    padding: 30px 24px;
  }

  .finding-grid {
    margin-left: 0;
    grid-template-columns: 1fr;
  }

  .finding-grid article {
    min-height: 100px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .finding-grid article:last-child {
    border-bottom: 0;
  }

  .coach-notes,
  .next-sequence {
    margin-left: 0;
  }

  .site-footer {
    flex-direction: column;
    gap: 5px;
  }

  .modal form {
    padding: 34px 24px 26px;
  }

  .time-options {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

@media print {
  .site-header,
  .site-footer,
  .call-actions-panel,
  .resource-actions,
  .resource-detail-topbar,
  .call-topline,
  .toast {
    display: none !important;
  }

  body,
  .call-page {
    background: var(--white);
  }

  .view {
    display: none !important;
  }

  .view.print-view {
    display: block !important;
  }

  .call-scoreboard {
    color-adjust: exact;
    print-color-adjust: exact;
  }

  .call-content {
    width: 100%;
    grid-template-columns: 1fr;
  }

  .call-main {
    padding: 28px;
    box-shadow: none;
  }
}
