/* ==========================================================================
   SVA ERP ROI Calculator
   Scoped to .sva-roi so it neither leaks into nor is overridden by the
   SVAC global stylesheet. Brand type is Futura-PT throughout.
   ========================================================================== */

.sva-roi {
  /* Brand tokens, matching the SVAC global stylesheet */
  --svac-gold: #fbac00;
  --svac-light-yellow: #ffce64;
  --svac-dark-blue: #00205c;
  --svac-bright-blue: #0058fc;
  --svac-dark-grey: #2b2c2f;
  --svac-beige: #fff7e6;
  --svac-white: #ffffff;

  /* Internal aliases used throughout this file */
  --navy: var(--svac-dark-blue);
  --navy-2: #001847;
  --ink: var(--svac-dark-grey);
  --muted: #686a70;
  --paper: var(--svac-beige);
  --card: var(--svac-white);
  --line: #e5ded0;
  --coral: var(--svac-gold);
  --coral-dark: var(--svac-bright-blue);
  --aqua: var(--svac-bright-blue);
  --gold: var(--svac-light-yellow);
  --positive: var(--svac-bright-blue);
  --shadow: 0 24px 60px rgba(0, 32, 92, 0.1);

  --sva-roi-sans: "Futura-PT", "Futura PT", Futura, "Century Gothic", sans-serif;

  /* Baseline the component was designed against */
  font-family: var(--sva-roi-sans);
  font-size: 16px;
  line-height: 1.5;
  color: var(--ink);
  background:
    radial-gradient(circle at 82% 12%, rgba(0, 88, 252, 0.08), transparent 24rem),
    var(--paper);
}

.sva-roi *,
.sva-roi *::before,
.sva-roi *::after {
  box-sizing: border-box;
}

/* --------------------------------------------------------------------------
   Defensive reset.

   The SVAC global stylesheet sets color, size and margin directly on
   h1-h4, p, ul, ol, li and a. A directly-set property always beats an
   inherited one regardless of specificity, which is why the navy panel
   headline rendered navy-on-navy. This restores the browser defaults this
   component was authored against; the component's own rules below then
   override them as intended.
   -------------------------------------------------------------------------- */

.sva-roi h1,
.sva-roi h2,
.sva-roi h3,
.sva-roi h4,
.sva-roi h5,
.sva-roi h6 {
  color: inherit;
  font-family: inherit;
  font-weight: bold;
  line-height: normal;
  letter-spacing: normal;
}

.sva-roi h1 { font-size: 2em;    margin: 0.67em 0; }
.sva-roi h2 { font-size: 1.5em;  margin: 0.83em 0; }
.sva-roi h3 { font-size: 1.17em; margin: 1em 0; }
.sva-roi h4 { font-size: 1em;    margin: 1.33em 0; }
.sva-roi h5 { font-size: 0.83em; margin: 1.67em 0; }
.sva-roi h6 { font-size: 0.67em; margin: 2.33em 0; }

.sva-roi p { margin: 1em 0; }
.sva-roi ul,
.sva-roi ol { margin: 1em 0; padding-left: 40px; }
.sva-roi li { margin: 0; }
.sva-roi blockquote { margin: 1em 40px; }

.sva-roi a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.sva-roi a:visited { color: inherit; }

.sva-roi button,
.sva-roi input,
.sva-roi select,
.sva-roi textarea {
  font: inherit;
  color: inherit;
  letter-spacing: normal;
  text-transform: none;
}

.sva-roi button { cursor: pointer; }

.sva-roi [hidden] { display: none !important; }

/* Focus ring matches the SVAC global pattern */
.sva-roi :focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(0, 88, 252, 0.35);
}

/* --------------------------------------------------------------------------
   Entry gate height.

   The original used 100vh, which assumed a standalone page. Inside a HubSpot
   page the site header sits above it, so 100vh overflowed the viewport by the
   header height. --svac-header-offset is defined by the global stylesheet.
   -------------------------------------------------------------------------- */

.sva-roi .entry-gate,
.sva-roi .entry-story {
  min-height: calc(100vh - var(--svac-header-offset, 96px));
}

body.entry-locked {
  overflow: auto;
}

.entry-gate {
  display: grid;
  grid-template-columns: minmax(310px, 0.82fr) minmax(520px, 1.18fr);
  background: var(--svac-white);
}

.entry-story {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(34px, 6vw, 76px);
  color: var(--svac-white);
  background:
    radial-gradient(circle at 15% 90%, rgba(0, 88, 252, 0.5), transparent 32%),
    linear-gradient(145deg, rgba(251, 172, 0, 0.17), transparent 42%),
    var(--svac-dark-blue);
}

.entry-brand {
  display: flex;
  align-items: center;
}

.entry-brand-logo {
  display: block;
  width: min(100%, 275px);
  height: auto;
  object-fit: contain;
  object-position: left center;
}

.entry-story-copy {
  max-width: 520px;
  margin: 70px 0;
}

.entry-story-copy > span,
.entry-form-header > span {
  display: block;
  margin-bottom: 13px;
  color: var(--svac-light-yellow);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.entry-story h1 {
  margin: 0;
  font-family: var(--sva-roi-sans);
  font-size: clamp(43px, 6vw, 74px);
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: -0.045em;
}

.entry-story-copy p {
  max-width: 470px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 14px;
  line-height: 1.7;
}

.entry-story-footer {
  display: flex;
  align-items: center;
  gap: 11px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 10px;
}

.entry-story-footer i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--svac-gold);
  box-shadow: 0 0 0 5px rgba(251, 172, 0, 0.13);
}

.entry-form-side {
  display: grid;
  align-items: center;
  padding: clamp(34px, 6vw, 76px);
  background:
    radial-gradient(circle at 90% 10%, rgba(0, 88, 252, 0.08), transparent 18rem),
    var(--svac-beige);
}

.entry-form-wrap {
  width: min(100%, 670px);
  margin: auto;
}

.entry-form-header > span {
  color: var(--svac-bright-blue);
}

.entry-form-header h2 {
  margin: 0;
  color: var(--svac-dark-blue);
  font-family: var(--sva-roi-sans);
  font-size: clamp(34px, 4vw, 48px);
  font-weight: 500;
  letter-spacing: -0.035em;
}

.entry-form-header p {
  max-width: 590px;
  margin: 13px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.65;
}

.entry-form {
  margin-top: 28px;
}

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

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

.entry-field.company-field {
  grid-column: 1 / -1;
}

.entry-field.email-field {
  grid-column: 1 / -1;
}

.entry-field span {
  color: var(--svac-dark-blue);
  font-size: 10px;
  font-weight: 800;
}

.entry-field input {
  width: 100%;
  min-height: 49px;
  padding: 0 14px;
  border: 1px solid #d9d1c2;
  border-radius: 10px;
  color: var(--svac-dark-grey);
  background: var(--svac-white);
  outline: none;
  transition: 150ms ease;
}

.entry-field input:focus {
  border-color: var(--svac-bright-blue);
  box-shadow: 0 0 0 3px rgba(0, 88, 252, 0.11);
}

.entry-use {
  margin: 19px 0 0;
  padding: 17px 18px;
  border-left: 4px solid var(--svac-gold);
  border-radius: 0 10px 10px 0;
  background: var(--svac-white);
}

.entry-use strong,
.entry-use span {
  display: block;
}

.entry-use strong {
  margin-bottom: 6px;
  color: var(--svac-dark-blue);
  font-size: 11px;
}

.entry-use span {
  color: var(--muted);
  font-size: 10px;
  line-height: 1.55;
}

.entry-use a,
.entry-disclosure a {
  color: var(--svac-bright-blue);
  font-weight: 700;
}

.entry-disclosure {
  margin: 14px 0;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.56);
}

.entry-disclosure summary {
  padding: 13px 16px;
  color: var(--svac-dark-blue);
  font-size: 10px;
  font-weight: 800;
  cursor: pointer;
}

.entry-disclosure div {
  padding: 0 16px 15px;
  color: var(--muted);
  font-size: 9px;
  line-height: 1.6;
}

.entry-disclosure p {
  margin: 0 0 9px;
}

.entry-disclosure p:last-child {
  margin-bottom: 0;
}

.entry-checks {
  display: grid;
  gap: 10px;
  margin-top: 14px;
}

.entry-check {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 10px;
  align-items: start;
  color: var(--svac-dark-grey);
  font-size: 9px;
  line-height: 1.5;
}

.entry-check input {
  width: 16px;
  height: 16px;
  margin: 0;
  accent-color: var(--svac-bright-blue);
}

.entry-check a {
  color: var(--svac-bright-blue);
  font-weight: 700;
}

.entry-submit {
  width: 100%;
  min-height: 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 19px;
  padding: 0 18px;
  border: 0;
  border-radius: 10px;
  color: var(--svac-dark-blue);
  background: var(--svac-gold);
  box-shadow: 0 12px 25px rgba(251, 172, 0, 0.22);
  font-size: 11px;
  font-weight: 800;
}

.entry-submit:hover {
  background: var(--svac-light-yellow);
}

.entry-submit:disabled {
  cursor: wait;
  opacity: 0.7;
}

.entry-form-status {
  min-height: 16px;
  margin: 9px 0 0;
  color: #a12f2f;
  font-size: 9px;
}

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

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

.progress-panel {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 34px 30px 28px;
  color: #fff;
  background:
    linear-gradient(155deg, rgba(251, 172, 0, 0.16), transparent 38%),
    var(--navy);
  overflow: auto;
}

.brand {
  display: flex;
  align-items: center;
  min-height: 40px;
}

.brand-logo {
  display: block;
  width: min(100%, 205px);
  height: auto;
  object-fit: contain;
  object-position: left center;
}

.side-kicker {
  margin: 34px 0 20px;
  color: rgba(255, 255, 255, 0.54);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.2em;
}

.progress-heading {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 24px;
}

.progress-heading strong,
.progress-heading small {
  display: block;
}

.progress-heading strong {
  font-size: 15px;
}

.progress-heading small {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 12px;
}

.progress-ring {
  width: 50px;
  height: 50px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  position: relative;
  border-radius: 50%;
  background: conic-gradient(var(--coral) var(--progress), rgba(255, 255, 255, 0.13) 0);
}

.progress-ring::before {
  content: "";
  position: absolute;
  inset: 5px;
  border-radius: 50%;
  background: var(--navy);
}

.progress-ring span {
  position: relative;
  font-size: 11px;
  font-weight: 800;
}

.step-link {
  width: 100%;
  display: grid;
  grid-template-columns: 30px 1fr;
  gap: 12px;
  align-items: center;
  position: relative;
  padding: 10px 8px;
  border: 0;
  border-radius: 10px;
  color: rgba(255, 255, 255, 0.66);
  background: transparent;
  text-align: left;
  transition: 160ms ease;
}

.step-link:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 22px;
  top: 40px;
  width: 1px;
  height: 17px;
  background: rgba(255, 255, 255, 0.14);
}

.step-link:hover {
  background: rgba(255, 255, 255, 0.05);
}

.step-link.active {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.step-link.complete {
  color: rgba(255, 255, 255, 0.88);
}

.step-dot {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  font-size: 11px;
  font-weight: 800;
}

.active .step-dot {
  border-color: var(--coral);
  color: var(--navy);
  background: var(--coral);
}

.complete .step-dot {
  border-color: rgba(0, 88, 252, 0.8);
  color: var(--aqua);
}

.step-link small,
.step-link strong {
  display: block;
}

.step-link small {
  margin-bottom: 2px;
  opacity: 0.58;
  font-size: 9px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.step-link strong {
  font-size: 13px;
}

.model-note {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 13px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
}

.status-dot {
  width: 8px;
  height: 8px;
  flex: 0 0 auto;
  margin-top: 4px;
  border-radius: 50%;
  background: var(--coral);
  box-shadow: 0 0 0 4px rgba(251, 172, 0, 0.16);
}

.model-note strong,
.model-note small {
  display: block;
}

.model-note strong {
  font-size: 11px;
}

.model-note small {
  max-width: 145px;
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.56);
  font-size: 10px;
  line-height: 1.35;
}

.workspace {
  min-width: 0;
}

.top-summary {
  min-height: 132px;
  display: grid;
  grid-template-columns: minmax(145px, 1fr) minmax(120px, 0.8fr) 104px minmax(135px, 0.9fr) minmax(135px, 0.9fr);
  align-items: center;
  gap: 18px;
  padding: 24px clamp(30px, 5vw, 72px);
  border-bottom: 1px solid rgba(20, 36, 51, 0.1);
  background: rgba(255, 254, 250, 0.68);
  backdrop-filter: blur(14px);
}

.summary-intro {
  padding-right: 16px;
  border-right: 1px solid var(--line);
}

.summary-intro strong {
  display: block;
  margin-top: 8px;
  font-family: var(--sva-roi-sans);
  font-size: 19px;
}

.overline {
  color: var(--muted);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.overline.accent {
  color: var(--coral-dark);
  padding-bottom: 4px;
  border-bottom: 3px solid var(--coral);
}

.metric {
  min-width: 0;
}

.metric > span,
.metric strong,
.metric small {
  display: block;
}

.metric > span {
  color: var(--muted);
  font-size: 11px;
}

.metric strong {
  margin: 4px 0;
  font-family: var(--sva-roi-sans);
  font-size: clamp(24px, 2.2vw, 34px);
  font-weight: 500;
  letter-spacing: -0.045em;
}

.metric small {
  color: var(--muted);
  font-size: 9px;
}

.return-metric strong {
  color: var(--positive);
}

.investment-metric strong {
  color: var(--coral);
}

.balance-metric {
  padding: 16px 18px;
  border-radius: 14px;
  background: var(--navy);
}

.balance-metric > span,
.balance-metric small {
  color: rgba(255, 255, 255, 0.58);
}

.balance-metric strong {
  color: #fff;
}

.balance-visual {
  height: 76px;
  position: relative;
}

.scale-post {
  position: absolute;
  left: 50%;
  top: 20px;
  width: 3px;
  height: 48px;
  border-radius: 3px;
  background: var(--navy);
}

.scale-post::after {
  content: "";
  position: absolute;
  left: -12px;
  bottom: 0;
  width: 27px;
  height: 3px;
  border-radius: 3px;
  background: var(--navy);
}

.scale-beam {
  position: absolute;
  left: 8px;
  right: 7px;
  top: 21px;
  height: 3px;
  border-radius: 3px;
  background: var(--navy);
  transform: rotate(-4deg);
  transform-origin: center;
}

.scale-pan {
  position: absolute;
  top: 22px;
  width: 1px;
  border-left: 1px solid var(--navy);
}

.scale-pan::after {
  content: "";
  position: absolute;
  left: -15px;
  bottom: 0;
  width: 31px;
  height: 7px;
  border-bottom: 3px solid var(--navy);
  border-radius: 0 0 50% 50%;
}

.scale-pan.left {
  left: 17px;
}

.scale-pan.right {
  right: 16px;
}

.scale-label {
  position: absolute;
  top: 0;
  display: grid;
  place-items: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  color: #fff;
  font-size: 8px;
  font-weight: 800;
}

.scale-label.left {
  left: 8px;
  background: var(--positive);
}

.scale-label.right {
  right: 6px;
  background: var(--coral);
  color: var(--navy);
}

.questionnaire {
  max-width: 1120px;
  margin: 0 auto;
  padding: clamp(38px, 6vw, 72px) clamp(28px, 6vw, 76px) 34px;
}

.question-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
}

.question-header h1 {
  max-width: 700px;
  margin: 8px 0 10px;
  font-family: var(--sva-roi-sans);
  font-size: clamp(38px, 5vw, 62px);
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: -0.045em;
}

.question-header p {
  max-width: 640px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.header-calculation-help {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 10px;
  max-width: 230px;
  padding: 11px 14px;
  border: 1px solid rgba(251, 172, 0, 0.45);
  border-radius: 11px;
  color: var(--svac-dark-blue);
  background: var(--svac-beige);
  font-size: 10px;
  font-weight: 800;
  line-height: 1.35;
  text-align: left;
}

.header-calculation-help[hidden] {
  display: none;
}

.header-calculation-help i {
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--svac-white);
  background: var(--svac-bright-blue);
  font-family: var(--sva-roi-sans);
  font-size: 13px;
  font-weight: 800;
}

.header-calculation-help:hover {
  border-color: var(--svac-gold);
  background: var(--svac-light-yellow);
}

.formula-link {
  flex: 0 0 auto;
  padding: 10px 0;
  border: 0;
  border-bottom: 2px solid var(--coral);
  color: var(--svac-bright-blue);
  background: transparent;
  font-size: 11px;
  font-weight: 800;
}

.formula-map {
  display: grid;
  gap: 7px;
  margin-top: 25px;
  padding: 17px 20px;
  border-left: 3px solid var(--coral);
  color: var(--muted);
  background: rgba(255, 206, 100, 0.3);
  font-size: 11px;
}

.formula-map strong {
  color: var(--ink);
}

.roi-overview {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(260px, 0.75fr);
  gap: 20px 34px;
  margin-top: 28px;
  padding: clamp(24px, 4vw, 36px);
  border-radius: 22px;
  color: var(--svac-white);
  background:
    radial-gradient(circle at 92% 10%, rgba(0, 88, 252, 0.35), transparent 35%),
    var(--svac-dark-blue);
  box-shadow: 0 20px 48px rgba(0, 32, 92, 0.2);
}

.roi-overview[hidden] {
  display: none;
}

.roi-overview-intro > span,
.roi-overview-formula small {
  color: var(--svac-gold);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.roi-overview h2 {
  max-width: 560px;
  margin: 9px 0 12px;
  font-family: var(--sva-roi-sans);
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 500;
  line-height: 1.05;
}

.roi-overview p,
.roi-overview-formula span,
.roi-overview-guidance span,
.roi-overview-guidance small {
  display: block;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 11px;
  line-height: 1.65;
}

.roi-overview-intro p + p,
.roi-overview-guidance span + span {
  margin-top: 9px;
}

.roi-overview-formula {
  align-self: start;
  padding: 20px;
  border: 1px solid rgba(255, 206, 100, 0.42);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.08);
}

.roi-overview-formula > strong {
  display: block;
  margin: 9px 0 8px;
  color: var(--svac-white);
  font-size: 13px;
  line-height: 1.5;
}

.roi-overview-formula .formula-judgment {
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.66);
  font-size: 9px;
  line-height: 1.55;
}

.roi-benchmarks {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px;
  margin-top: 17px;
  padding-top: 15px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.roi-benchmarks > div {
  min-width: 0;
}

.roi-benchmarks strong,
.roi-benchmarks span {
  display: block;
}

.roi-benchmarks strong {
  color: var(--svac-light-yellow);
  font-family: var(--sva-roi-sans);
  font-size: 20px;
  font-weight: 500;
}

.roi-benchmarks span {
  margin-top: 3px;
  font-size: 8px;
  line-height: 1.4;
}

.roi-overview a {
  color: var(--svac-light-yellow);
  text-decoration: none;
}

.roi-overview a:hover {
  text-decoration: underline;
  text-underline-offset: 2px;
}

.roi-behavior {
  grid-column: 1 / -1;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.roi-behavior-heading {
  display: grid;
  grid-template-columns: minmax(180px, 0.55fr) minmax(0, 1.45fr);
  gap: 16px 30px;
  align-items: start;
  margin-bottom: 15px;
}

.roi-behavior-heading strong {
  color: var(--svac-light-yellow);
  font-size: 11px;
}

.roi-behavior-heading span {
  color: rgba(255, 255, 255, 0.76);
  font-size: 10px;
  line-height: 1.55;
}

.roi-evidence-line {
  margin: 0 0 16px;
  padding: 12px 14px;
  border-left: 3px solid var(--svac-gold);
  color: rgba(255, 255, 255, 0.76);
  background: rgba(251, 172, 0, 0.08);
  font-size: 9px;
  line-height: 1.55;
}

.roi-behavior-chain {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 9px;
}

.roi-behavior-chain article {
  min-width: 0;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
}

.roi-behavior-chain small,
.roi-behavior-chain strong,
.roi-behavior-chain span {
  display: block;
}

.roi-behavior-chain small {
  color: var(--svac-gold);
  font-size: 7px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.roi-behavior-chain strong {
  margin: 7px 0 5px;
  color: var(--svac-white);
  font-size: 10px;
}

.roi-behavior-chain span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 8px;
  line-height: 1.5;
}

.roi-overview-guidance {
  grid-column: 1 / -1;
  padding-top: 17px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.roi-overview-guidance strong {
  display: block;
  margin-bottom: 6px;
  color: var(--svac-light-yellow);
  font-size: 11px;
}

.roi-overview-guidance small {
  margin-top: 7px;
}

.roi-ai-proof {
  grid-column: 1 / -1;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  padding-top: 17px;
}

.roi-ai-proof summary {
  cursor: pointer;
  color: var(--svac-light-yellow);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  list-style-position: outside;
}

.roi-ai-proof-content {
  display: grid;
  gap: 10px;
  margin-top: 13px;
  padding: 16px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
}

.roi-ai-proof-content p,
.roi-ai-proof-content strong {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 9px;
  line-height: 1.6;
}

.roi-ai-proof-content strong {
  color: var(--svac-white);
}

.roi-relationship-statement {
  margin: 16px 0 13px;
  padding: 14px 17px;
  border: 1px solid rgba(251, 172, 0, 0.34);
  border-left: 4px solid var(--svac-gold);
  border-radius: 0 12px 12px 0;
  color: var(--svac-white);
  background: rgba(251, 172, 0, 0.1);
  font-family: var(--sva-roi-sans);
  font-size: 17px;
  line-height: 1.4;
}

.roi-overview footer {
  grid-column: 1 / -1;
  color: rgba(255, 255, 255, 0.52);
  font-size: 8px;
  line-height: 1.5;
}

.roi-sources {
  display: grid;
  gap: 4px;
}

.roi-sources a {
  color: rgba(255, 255, 255, 0.68);
}

.roi-sources span {
  margin-top: 2px;
  color: rgba(255, 255, 255, 0.45);
}

.content-card {
  min-height: 330px;
  margin-top: 34px;
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid rgba(20, 36, 51, 0.09);
  border-radius: 22px;
  background: var(--card);
  box-shadow: var(--shadow);
}

.content-card[hidden] {
  display: none;
}

.investment-groups {
  display: grid;
  gap: 18px;
}

.investment-group {
  padding: clamp(20px, 3vw, 28px);
  border: 1px solid rgba(0, 32, 92, 0.11);
  border-radius: 16px;
  background: var(--svac-white);
  box-shadow: 0 9px 24px rgba(0, 32, 92, 0.05);
}

.investment-group-heading {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  margin-bottom: 24px;
  padding-bottom: 15px;
  border-bottom: 1px solid var(--line);
}

.investment-group-heading > span {
  display: grid;
  flex: 0 0 30px;
  width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 50%;
  color: var(--svac-dark-blue);
  background: var(--svac-light-yellow);
  font-size: 9px;
  font-weight: 800;
}

.investment-group-heading strong,
.investment-group-heading small {
  display: block;
}

.investment-group-heading strong {
  color: var(--svac-dark-blue);
  font-family: var(--sva-roi-sans);
  font-size: 18px;
  font-weight: 500;
}

.investment-group-heading small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 9px;
  line-height: 1.45;
}

.investment-horizon-note {
  display: grid;
  gap: 4px;
  margin-top: 24px;
  padding: 16px 18px;
  border-left: 4px solid var(--svac-gold);
  border-radius: 0 11px 11px 0;
  background: var(--svac-beige);
}

.investment-horizon-note strong {
  color: var(--svac-dark-blue);
  font-size: 12px;
}

.investment-horizon-note span {
  color: var(--muted);
  font-size: 10px;
  line-height: 1.55;
}

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

.field-spacer {
  min-height: 1px;
}

.field {
  min-width: 0;
}

.field-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 9px;
}

.field-label,
.field-hint {
  display: block;
}

.field-label {
  font-size: 13px;
  font-weight: 800;
}

.help-button {
  width: 21px;
  height: 21px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  padding: 0;
  border: 1px solid rgba(0, 88, 252, 0.28);
  border-radius: 50%;
  color: var(--svac-bright-blue);
  background: rgba(0, 88, 252, 0.06);
  font-family: var(--sva-roi-sans);
  font-size: 12px;
  font-style: italic;
  font-weight: 800;
}

.help-button:hover {
  color: var(--svac-white);
  background: var(--svac-bright-blue);
}

.field-hint {
  margin-top: 7px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.5;
}

.input-shell {
  display: flex;
  align-items: center;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 11px;
  background: #fff;
  transition: 160ms ease;
}

.input-shell:focus-within {
  border-color: var(--aqua);
  box-shadow: 0 0 0 3px rgba(0, 88, 252, 0.14);
}

.input-shell input {
  width: 100%;
  min-width: 0;
  padding: 15px 8px;
  border: 0;
  outline: 0;
  color: var(--ink);
  background: transparent;
  font-size: 17px;
  font-weight: 700;
}

.input-affix {
  padding-left: 15px;
  color: var(--muted);
  font-size: 12px;
  white-space: nowrap;
}

.input-affix.suffix {
  padding: 0 15px 0 4px;
}

.question-footer {
  display: grid;
  grid-template-columns: 120px 1fr 160px;
  align-items: center;
  gap: 18px;
  margin-top: 25px;
}

.question-footer > span {
  color: var(--muted);
  font-size: 10px;
  text-align: center;
}

.primary-button,
.secondary-button {
  min-height: 48px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 800;
}

.primary-button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 18px;
  border: 0;
  color: var(--navy);
  background: var(--coral);
  box-shadow: 0 10px 24px rgba(251, 172, 0, 0.25);
}

.primary-button:hover {
  background: var(--svac-light-yellow);
}

.secondary-button {
  border: 1px solid var(--svac-bright-blue);
  color: var(--svac-bright-blue);
  background: transparent;
}

.secondary-button:disabled {
  cursor: not-allowed;
  opacity: 0.35;
}

.results-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(360px, 1.15fr);
  gap: 32px;
}

.scenario-panel {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: auto minmax(240px, 1fr);
  gap: 12px 18px;
  align-items: center;
  padding: 17px 19px;
  border: 1px solid rgba(0, 88, 252, 0.18);
  border-radius: 14px;
  background: rgba(0, 88, 252, 0.035);
}

.scenario-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.scenario-choice {
  min-height: 36px;
  padding: 0 14px;
  border: 1px solid rgba(0, 32, 92, 0.16);
  border-radius: 999px;
  color: var(--svac-dark-blue);
  background: var(--svac-white);
  font-size: 9px;
  font-weight: 800;
}

.scenario-choice.selected {
  border-color: var(--svac-bright-blue);
  color: var(--svac-white);
  background: var(--svac-bright-blue);
}

.scenario-description strong,
.scenario-description span {
  display: block;
}

.scenario-description strong {
  color: var(--svac-dark-blue);
  font-size: 10px;
}

.scenario-description span {
  margin-top: 3px;
  color: var(--muted);
  font-size: 9px;
  line-height: 1.45;
}

.hero-result {
  padding: 36px;
  border-radius: 18px;
  color: #fff;
  background:
    radial-gradient(circle at 84% 10%, rgba(0, 88, 252, 0.34), transparent 10rem),
    var(--navy);
}

.hero-result > span {
  color: rgba(255, 255, 255, 0.62);
  font-size: 11px;
}

.hero-result > strong {
  display: block;
  margin: 12px 0 5px;
  font-family: var(--sva-roi-sans);
  font-size: clamp(58px, 8vw, 88px);
  font-weight: 500;
  line-height: 0.9;
  letter-spacing: -0.06em;
}

.hero-result p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
  line-height: 1.55;
}

.hero-result p b {
  color: #fff;
}

.result-chips {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: 28px;
}

.result-chips span {
  padding: 15px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
}

.result-chips small,
.result-chips b {
  display: block;
}

.result-chips small {
  margin-bottom: 5px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 8px;
  text-transform: uppercase;
}

.result-chips b {
  font-size: 15px;
}

.year-table {
  align-self: start;
}

.year-analysis {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(350px, 0.92fr);
  gap: 24px;
  align-items: stretch;
}

.year-analysis .year-table {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--svac-white);
}

.year-chart-card {
  min-width: 0;
  margin: 0;
  padding: 18px 18px 14px;
  border: 1px solid rgba(0, 88, 252, 0.16);
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(0, 88, 252, 0.045), transparent 42%), var(--svac-white);
}

.year-chart-heading {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 8px;
}

.year-chart-heading span,
.year-chart-heading strong,
.year-chart-heading small {
  display: block;
}

.year-chart-heading span {
  color: var(--svac-bright-blue);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.year-chart-heading strong {
  margin-top: 4px;
  color: var(--svac-dark-blue);
  font-family: var(--sva-roi-sans);
  font-size: 20px;
  font-weight: 500;
}

.year-chart-heading small {
  max-width: 150px;
  color: var(--muted);
  font-size: 8px;
  line-height: 1.4;
  text-align: right;
}

.year-chart-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 15px;
  margin: 10px 0 2px;
  color: var(--muted);
  font-size: 8px;
  font-weight: 700;
}

.year-chart-legend span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.year-chart-legend i {
  width: 9px;
  height: 9px;
  border-radius: 2px;
  background: var(--svac-bright-blue);
}

.year-chart-legend .investment-key i {
  background: var(--svac-gold);
}

.year-chart-legend .trend-key i {
  width: 13px;
  height: 3px;
  border-radius: 999px;
  background: var(--svac-dark-blue);
}

.year-chart-canvas {
  width: 100%;
  height: 300px;
  display: block;
}

.year-chart-card figcaption {
  margin-top: 2px;
  color: var(--muted);
  font-size: 8px;
  line-height: 1.45;
}

.table-head,
.table-row {
  display: grid;
  grid-template-columns: 0.7fr repeat(4, 1fr);
  gap: 10px;
  align-items: center;
}

.table-head {
  padding: 0 10px 11px;
  color: var(--muted);
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
}

.table-row {
  padding: 15px 10px;
  border-top: 1px solid var(--line);
  font-size: 11px;
}

.table-head span:not(:first-child),
.table-row span {
  text-align: right;
}

.positive {
  color: var(--positive);
  font-weight: 800;
}

.negative {
  color: var(--coral);
  font-weight: 800;
}

.benefit-stack {
  grid-column: 1 / -1;
  padding-top: 8px;
}

.benefit-stack > strong {
  display: block;
  margin-bottom: 16px;
  font-family: var(--sva-roi-sans);
  font-size: 20px;
  font-weight: 500;
}

.benefit-row {
  display: grid;
  grid-template-columns: 160px 1fr 70px;
  align-items: center;
  gap: 14px;
  margin: 10px 0;
  font-size: 10px;
}

.benefit-row > div {
  height: 7px;
  overflow: hidden;
  border-radius: 10px;
  background: #ece9e1;
}

.benefit-row i {
  display: block;
  height: 100%;
  border-radius: 10px;
  background: linear-gradient(90deg, var(--svac-bright-blue), var(--svac-gold));
}

.benefit-row b {
  text-align: right;
}

.section-label {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 4px 0 20px;
  color: var(--svac-dark-blue);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.section-label-with-help {
  justify-content: space-between;
}

.section-label:not(:first-child) {
  margin-top: 34px;
  padding-top: 27px;
  border-top: 1px solid var(--line);
}

.binary-question {
  min-width: 0;
}

.binary-question-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.binary-buttons {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 7px;
  margin-top: 9px;
}

.binary-choice {
  min-height: 49px;
  border: 1px solid var(--line);
  border-radius: 11px;
  color: var(--muted);
  background: var(--svac-white);
  font-size: 12px;
  font-weight: 800;
}

.binary-choice:hover {
  border-color: var(--svac-bright-blue);
}

.binary-choice.selected {
  border-color: var(--svac-dark-blue);
  color: var(--svac-white);
  background: var(--svac-dark-blue);
  box-shadow: 0 8px 18px rgba(0, 32, 92, 0.16);
}

.conditional-panel {
  margin: 20px 0 4px;
  padding: 22px;
  border: 1px solid rgba(0, 88, 252, 0.16);
  border-radius: 16px;
  background: rgba(0, 88, 252, 0.035);
}

.eligibility-note {
  display: grid;
  gap: 4px;
  margin-top: 22px;
  padding: 14px 16px;
  border-left: 4px solid var(--svac-bright-blue);
  background: var(--svac-white);
}

.eligibility-note.excluded {
  border-left-color: var(--svac-gold);
  background: var(--svac-beige);
}

.eligibility-note strong {
  color: var(--svac-dark-blue);
  font-size: 10px;
}

.eligibility-note span {
  color: var(--muted);
  font-size: 9px;
  line-height: 1.45;
}

.insight-strip {
  margin-top: 28px;
}

.insight-callout {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 17px 20px;
  border: 0;
  border-left: 4px solid var(--svac-gold);
  color: var(--svac-dark-grey);
  background: var(--svac-beige);
  text-align: left;
}

.insight-callout b,
.insight-callout small {
  display: block;
}

.insight-callout b {
  margin-bottom: 4px;
  font-size: 12px;
}

.insight-callout small {
  color: var(--muted);
  font-size: 10px;
}

.insight-callout i {
  flex: 0 0 auto;
  color: var(--svac-bright-blue);
  font-size: 10px;
  font-style: normal;
  font-weight: 800;
}

.process-prompts {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 28px;
}

.process-labor-grid {
  margin-bottom: 30px;
}

.single-process-field .field {
  grid-column: 1 / -1;
  max-width: 720px;
}

.process-question-list {
  display: grid;
  gap: 13px;
}

.process-question-card {
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--svac-white);
}

.process-question-card.enabled {
  border-color: rgba(0, 88, 252, 0.22);
  box-shadow: 0 10px 26px rgba(0, 32, 92, 0.06);
}

.industry-selector {
  grid-column: 1 / -1;
  padding: 22px;
  border: 1px solid rgba(255, 206, 100, 0.35);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.08);
}

.industry-selector > span,
.industry-benefit-heading > span {
  display: block;
  color: var(--svac-gold);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.13em;
}

.industry-selector > strong {
  display: block;
  margin-top: 7px;
  color: var(--svac-white);
  font-family: var(--sva-roi-sans);
  font-size: 20px;
  font-weight: 500;
}

.industry-selector > p {
  margin: 6px 0 15px;
}

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

.industry-choice {
  min-height: 46px;
  padding: 9px 11px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 9px;
  color: rgba(255, 255, 255, 0.82);
  background: rgba(255, 255, 255, 0.04);
  font-size: 10px;
  font-weight: 800;
  text-align: left;
}

.industry-choice:hover,
.industry-choice.selected {
  border-color: var(--svac-gold);
  color: var(--svac-dark-blue);
  background: var(--svac-light-yellow);
}

.industry-benefit-panel {
  margin-top: 30px;
  padding: 22px;
  border: 1px solid rgba(0, 88, 252, 0.2);
  border-radius: 15px;
  background: rgba(0, 88, 252, 0.045);
}

.industry-benefit-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 16px;
}

.industry-benefit-heading strong,
.industry-benefit-heading small {
  display: block;
}

.industry-benefit-heading strong {
  margin-top: 5px;
  color: var(--svac-dark-blue);
  font-family: var(--sva-roi-sans);
  font-size: 21px;
  font-weight: 500;
}

.industry-benefit-heading small {
  max-width: 650px;
  margin-top: 6px;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.5;
}

.change-industry {
  flex: 0 0 auto;
  padding: 0 0 4px;
  border: 0;
  border-bottom: 2px solid var(--svac-gold);
  color: var(--svac-bright-blue);
  background: transparent;
  font-size: 9px;
  font-weight: 800;
}

.industry-result-panel {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1.35fr repeat(2, minmax(150px, .65fr));
  gap: 12px;
  padding: 20px;
  border-left: 4px solid var(--svac-bright-blue);
  border-radius: 0 13px 13px 0;
  background: rgba(0, 88, 252, 0.06);
}

.industry-result-panel > div {
  display: grid;
  align-content: center;
}

.industry-result-panel span,
.industry-result-panel small {
  color: var(--muted);
  font-size: 9px;
  line-height: 1.4;
}

.industry-result-panel strong {
  margin: 5px 0;
  color: var(--svac-dark-blue);
  font-family: var(--sva-roi-sans);
  font-size: 23px;
  font-weight: 500;
}

.beyond-roi {
  grid-column: 1 / -1;
  overflow: hidden;
  padding: clamp(24px, 4vw, 36px);
  border-radius: 18px;
  color: var(--svac-white);
  background:
    radial-gradient(circle at 92% 8%, rgba(0, 88, 252, 0.42), transparent 34%),
    linear-gradient(135deg, rgba(251, 172, 0, 0.12), transparent 44%),
    var(--svac-dark-blue);
}

.beyond-roi-header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: start;
  gap: 18px;
  margin-bottom: 22px;
}

.beyond-roi-eyebrow {
  display: block;
  margin-bottom: 8px;
  color: var(--svac-light-yellow);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.beyond-roi h2 {
  margin: 0;
  max-width: 690px;
  font-family: var(--sva-roi-sans);
  font-size: clamp(27px, 3.5vw, 38px);
  font-weight: 500;
  line-height: 1.08;
}

.beyond-roi-intro {
  max-width: 760px;
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 11px;
  line-height: 1.6;
}

.beyond-roi-badge {
  padding: 8px 11px;
  border: 1px solid rgba(255, 206, 100, 0.48);
  border-radius: 999px;
  color: var(--svac-light-yellow);
  background: rgba(251, 172, 0, 0.1);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.08em;
  white-space: nowrap;
}

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

.beyond-roi-card {
  min-height: 190px;
  padding: 19px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.075);
}

.beyond-roi-card > span {
  display: block;
  color: var(--svac-light-yellow);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.beyond-roi-card h3 {
  margin: 7px 0 6px;
  font-family: var(--sva-roi-sans);
  font-size: 20px;
  font-weight: 500;
}

.beyond-roi-card p,
.beyond-roi-card li {
  color: rgba(255, 255, 255, 0.72);
  font-size: 10px;
  line-height: 1.5;
}

.beyond-roi-card p {
  margin: 0 0 12px;
}

.beyond-roi-card ul {
  margin: 0;
  padding-left: 17px;
}

.beyond-roi-card li + li {
  margin-top: 5px;
}

.beyond-roi-measurement {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  overflow: hidden;
  margin-top: 14px;
  border: 1px solid rgba(255, 206, 100, 0.32);
  border-radius: 11px;
  background: rgba(255, 206, 100, 0.22);
}

.beyond-roi-measurement span {
  padding: 11px 13px;
  color: var(--svac-white);
  background: rgba(0, 32, 92, 0.84);
  font-size: 9px;
  text-align: center;
}

.beyond-roi-measurement b {
  color: var(--svac-light-yellow);
}

.beyond-roi-source {
  margin: 13px 0 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 8px;
  line-height: 1.55;
}

.beyond-roi-source a {
  color: var(--svac-light-yellow);
  text-underline-offset: 2px;
}

.process-card-heading {
  display: grid;
  gap: 6px;
}

.process-card-heading strong {
  color: var(--svac-dark-blue);
  font-family: var(--sva-roi-sans);
  font-size: 18px;
  font-weight: 500;
}

.process-card-heading p {
  max-width: 780px;
  margin: 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.55;
}

.process-question-card > .binary-question {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 160px;
  align-items: center;
  gap: 6px 20px;
}

.process-question-card > .binary-question .binary-buttons {
  grid-column: 2;
  grid-row: 1 / span 2;
  margin: 0;
}

.process-question-card > .binary-question .field-hint {
  grid-column: 1;
  margin: 0;
}

.process-detail {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.process-value {
  grid-column: 1 / -1;
  display: grid;
  align-content: center;
  min-height: 94px;
  padding: 15px 17px;
  border-radius: 11px;
  color: var(--svac-white);
  background: var(--svac-dark-blue);
}

.process-value span,
.process-value strong,
.process-value small {
  display: block;
}

.process-value span {
  color: rgba(255, 255, 255, 0.65);
  font-size: 8px;
  font-weight: 800;
  text-transform: uppercase;
}

.process-value strong {
  margin: 5px 0;
  font-family: var(--sva-roi-sans);
  font-size: 22px;
  font-weight: 500;
}

.process-value small {
  color: rgba(255, 255, 255, 0.62);
  font-size: 8px;
  line-height: 1.4;
}

.process-prompts span {
  padding: 8px 11px;
  border: 1px solid rgba(0, 32, 92, 0.1);
  border-radius: 999px;
  color: var(--svac-dark-blue);
  background: rgba(255, 206, 100, 0.22);
  font-size: 9px;
  font-weight: 700;
}

.live-calculation,
.risk-preview {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 4px 20px;
  margin-top: 30px;
  padding: 18px 20px;
  border-radius: 14px;
  color: var(--svac-white);
  background: var(--svac-dark-blue);
}

.live-calculation span,
.risk-preview span {
  font-size: 11px;
  font-weight: 800;
}

.live-calculation strong,
.risk-preview strong {
  grid-row: span 2;
  font-family: var(--sva-roi-sans);
  font-size: 28px;
  font-weight: 500;
}

.live-calculation small,
.risk-preview small {
  color: rgba(255, 255, 255, 0.62);
  font-size: 9px;
}

.risk-preview {
  background:
    linear-gradient(120deg, rgba(251, 172, 0, 0.18), transparent 55%),
    var(--svac-dark-blue);
}

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

.decision-grid > div {
  min-height: 112px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: #fff;
}

.decision-grid span,
.decision-grid strong,
.decision-grid small {
  display: block;
}

.decision-grid span {
  color: var(--muted);
  font-size: 10px;
}

.decision-grid strong {
  margin: 9px 0 5px;
  color: var(--svac-dark-blue);
  font-family: var(--sva-roi-sans);
  font-size: clamp(27px, 3vw, 34px);
  font-weight: 500;
}

.decision-grid small {
  color: var(--muted);
  font-size: 9px;
  line-height: 1.35;
}

.decision-grid .risk {
  border-color: rgba(251, 172, 0, 0.45);
  background: var(--svac-beige);
}

.decision-grid .delay-result {
  grid-column: 1 / -1;
  min-height: 0;
  border-color: rgba(251, 172, 0, 0.45);
  border-left: 4px solid var(--svac-gold);
  background: var(--svac-beige);
}

.decision-grid .delay-result strong {
  font-size: clamp(30px, 4vw, 42px);
}

.hero-help {
  margin-top: 18px;
  padding: 0 0 5px;
  border: 0;
  border-bottom: 2px solid var(--svac-gold);
  color: var(--svac-white);
  background: transparent;
  font-size: 9px;
  font-weight: 800;
}

.table-note {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-size: 8px;
  line-height: 1.4;
}

.assumption-note {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 18px;
  padding: 17px 20px;
  border-left: 4px solid var(--svac-bright-blue);
  color: var(--muted);
  background: rgba(0, 88, 252, 0.06);
  font-size: 10px;
  line-height: 1.5;
}

.assumption-note b {
  color: var(--svac-dark-blue);
}

.calculation-breakdown {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  padding-top: 10px;
}

.calculation-heading {
  grid-column: 1 / -1;
  margin-bottom: 8px;
}

.calculation-heading span,
.calculation-heading strong {
  display: block;
}

.calculation-heading span {
  margin-bottom: 6px;
  color: var(--svac-bright-blue);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.calculation-heading strong {
  color: var(--svac-dark-blue);
  font-family: var(--sva-roi-sans);
  font-size: 25px;
  font-weight: 500;
}

.calculation-card {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px 20px;
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: var(--svac-beige);
}

.calculation-card > span {
  color: var(--svac-dark-blue);
  font-size: 11px;
  font-weight: 800;
}

.calculation-card code {
  grid-column: 1;
  color: var(--muted);
  font-family: var(--sva-roi-sans);
  font-size: 9px;
  line-height: 1.45;
}

.calculation-card strong {
  grid-column: 2;
  grid-row: 1 / span 2;
  align-self: center;
  color: var(--svac-dark-blue);
  font-family: var(--sva-roi-sans);
  font-size: 19px;
  font-weight: 500;
  text-align: right;
}

.calculation-card.wide {
  grid-column: 1 / -1;
  border-left: 4px solid var(--svac-gold);
}

.export-button {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 58px;
  padding: 0 22px;
  border: 0;
  border-radius: 13px;
  color: var(--svac-dark-blue);
  background: var(--svac-gold);
  box-shadow: 0 12px 28px rgba(251, 172, 0, 0.25);
  font-size: 13px;
  font-weight: 800;
}

.export-button:hover {
  background: var(--svac-light-yellow);
}

.export-button b {
  font-size: 20px;
}

.hubspot-status {
  min-height: 18px;
  margin: 9px 2px 0;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.45;
}

.hubspot-status.success {
  color: #176b3a;
}

.hubspot-status.error {
  color: #a52a2a;
}

.pdf-report {
  display: none;
}

body.modal-open {
  overflow: hidden;
}

.modal-backdrop {
  position: fixed;
  z-index: 100;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(0, 20, 56, 0.72);
  backdrop-filter: blur(7px);
}

.modal-backdrop[hidden] {
  display: none;
}

.insight-modal {
  width: min(980px, 100%);
  max-height: calc(100vh - 48px);
  position: relative;
  overflow: auto;
  padding: clamp(28px, 5vw, 48px);
  border-radius: 22px;
  background: var(--svac-white);
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.3);
}

.modal-close {
  position: absolute;
  top: 18px;
  right: 20px;
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 50%;
  color: var(--svac-dark-blue);
  background: var(--svac-beige);
  font-size: 22px;
}

.insight-modal h2 {
  max-width: 760px;
  margin: 15px 0 12px;
  color: var(--svac-dark-blue);
  font-family: var(--sva-roi-sans);
  font-size: clamp(30px, 5vw, 44px);
  font-weight: 500;
  line-height: 1.02;
}

.modal-body {
  margin: 0 0 24px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}

.modal-data-table {
  margin: 4px 0 20px;
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 12px;
}

.modal-data-table[hidden] {
  display: none;
}

.modal-data-table table {
  width: 100%;
  border-collapse: collapse;
  font-size: 10px;
}

.modal-data-table th,
.modal-data-table td {
  padding: 10px 12px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  white-space: nowrap;
}

.modal-data-table th {
  color: var(--svac-dark-blue);
  background: var(--svac-beige);
  font-size: 8px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.modal-data-table tbody tr:last-child td {
  border-bottom: 0;
}

.modal-data-table tbody tr:last-child {
  color: var(--svac-dark-blue);
  background: rgba(255, 206, 100, 0.22);
  font-weight: 800;
}

.modal-data-table.wrap-table th,
.modal-data-table.wrap-table td {
  min-width: 150px;
  white-space: normal;
  vertical-align: top;
  line-height: 1.45;
}

.modal-data-table.wrap-table th:first-child,
.modal-data-table.wrap-table td:first-child {
  min-width: 135px;
  font-weight: 800;
}

.modal-data-table.benchmark-table th,
.modal-data-table.benchmark-table td {
  white-space: nowrap;
}

.modal-data-table.benchmark-table tbody tr:last-child {
  color: inherit;
  background: transparent;
  font-weight: inherit;
}

.benchmark-apply {
  border: 1px solid rgba(0, 88, 252, 0.25);
  border-radius: 999px;
  padding: 6px 9px;
  color: var(--svac-bright-blue);
  background: rgba(0, 88, 252, 0.06);
  font: inherit;
  font-weight: 800;
  white-space: nowrap;
}

.benchmark-apply:hover,
.benchmark-apply:focus-visible {
  color: var(--svac-white);
  background: var(--svac-bright-blue);
}

.benchmark-status {
  margin: -8px 0 18px;
  color: var(--svac-dark-blue);
  font-size: 10px;
  font-weight: 800;
}

.modal-table-note {
  margin: -10px 2px 20px;
  color: var(--muted);
  font-size: 9px;
  line-height: 1.55;
}

.modal-table-note[hidden] {
  display: none;
}

.modal-cost-groups {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 0 0 20px;
}

.modal-cost-groups[hidden] {
  display: none;
}

.modal-cost-group {
  padding: 16px;
  border-radius: 12px;
  background: var(--svac-beige);
}

.modal-cost-group h3 {
  margin: 0 0 4px;
  color: var(--svac-dark-blue);
  font-size: 12px;
}

.modal-cost-group > small {
  display: block;
  min-height: 30px;
  color: var(--muted);
  font-size: 8px;
  line-height: 1.45;
}

.modal-cost-group > div {
  margin-top: 10px;
  border-top: 1px solid rgba(0, 32, 92, 0.12);
}

.modal-cost-group p {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
  margin: 0;
  padding: 8px 0;
  border-bottom: 1px solid rgba(0, 32, 92, 0.1);
  font-size: 8px;
  line-height: 1.35;
}

.modal-cost-group p:last-child {
  border-bottom: 0;
}

.modal-cost-group p span {
  color: var(--muted);
}

.modal-cost-group p strong {
  color: var(--svac-dark-blue);
  text-align: right;
}

.modal-cost-group .highlight-metric {
  margin-top: 8px;
  padding: 10px 12px;
  border: 0;
  border-radius: 9px;
  color: var(--svac-dark-blue);
  background: var(--svac-light-yellow);
}

.modal-cost-group .highlight-metric span,
.modal-cost-group .highlight-metric strong {
  color: inherit;
}

.modal-rich {
  margin: 0 0 20px;
}

.modal-rich[hidden] {
  display: none;
}

.modal-rich h3 {
  margin: 24px 0 10px;
  color: var(--svac-dark-blue);
  font-size: 14px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.modal-rich .responsibility-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 12px;
}

.modal-rich .responsibility-column {
  padding: 16px;
}

.modal-rich .responsibility-column + .responsibility-column {
  border-left: 1px solid var(--line);
  background: rgba(0, 88, 252, 0.04);
}

.modal-rich .responsibility-column strong {
  display: block;
  margin-bottom: 9px;
  color: var(--svac-dark-blue);
  font-size: 11px;
}

.modal-rich .responsibility-column ul {
  margin: 0;
  padding-left: 17px;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.55;
}

.modal-rich .responsibility-column li + li {
  margin-top: 5px;
}

.modal-rich .modal-note {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 9px;
  line-height: 1.55;
}

.modal-detail {
  padding: 16px 0;
  border-top: 1px solid var(--line);
}

.modal-detail small,
.modal-detail strong,
.modal-detail span,
.insight-modal footer small,
.insight-modal footer span {
  display: block;
}

.modal-detail small,
.insight-modal footer small {
  margin-bottom: 7px;
  color: var(--svac-bright-blue);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.modal-detail strong,
.modal-detail span {
  color: var(--svac-dark-grey);
  font-size: 11px;
  line-height: 1.55;
}

.formula-detail {
  padding: 16px 18px;
  border: 0;
  border-left: 4px solid var(--svac-gold);
  background: var(--svac-beige);
}

.caution-detail {
  padding-inline: 18px;
  border-left: 4px solid var(--svac-bright-blue);
  background: rgba(0, 88, 252, 0.05);
}

.insight-modal footer {
  margin-top: 8px;
  padding-top: 17px;
  border-top: 1px solid var(--line);
}

.insight-modal footer span {
  color: var(--muted);
  font-size: 9px;
}

.insight-modal footer a {
  display: block;
  margin-top: 5px;
  color: var(--svac-bright-blue);
  text-decoration: underline;
  text-underline-offset: 2px;
}

@media (max-width: 1000px) {
  .app-shell {
    grid-template-columns: 230px minmax(0, 1fr);
  }

  .progress-panel {
    padding-inline: 20px;
  }

  .top-summary {
    grid-template-columns: repeat(4, 1fr);
  }

  .summary-intro {
    display: none;
  }

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

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

  .benefit-stack {
    grid-column: auto;
  }

  .year-analysis {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .entry-gate {
    grid-template-columns: 1fr;
  }

  .entry-story {
    min-height: auto;
    padding: 30px 22px 34px;
  }

  .entry-story-copy {
    margin: 48px 0;
  }

  .entry-form-side {
    padding: 34px 20px 46px;
  }

  .entry-fields {
    grid-template-columns: 1fr;
  }

  .entry-field.company-field {
    grid-column: 1;
  }

  .industry-options,
  .industry-result-panel {
    grid-template-columns: 1fr;
  }

  .beyond-roi-header,
  .beyond-roi-grid,
  .beyond-roi-measurement {
    grid-template-columns: 1fr;
  }

  .beyond-roi-badge {
    justify-self: start;
  }

  .beyond-roi-card {
    min-height: 0;
  }

  .industry-benefit-heading {
    display: grid;
  }

  .app-shell {
    display: block;
  }

  .progress-panel {
    position: sticky;
    z-index: 10;
    height: auto;
    padding: 14px 16px;
  }

  .progress-panel > div:first-child {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: 12px;
  }

  .side-kicker,
  .progress-heading,
  .model-note {
    display: none;
  }

  .progress-panel nav {
    display: flex;
    justify-content: flex-end;
    gap: 5px;
  }

  .step-link {
    width: auto;
    display: block;
    padding: 2px;
  }

  .step-link::after,
  .step-link > span:last-child {
    display: none;
  }

  .step-dot {
    width: 25px;
    height: 25px;
  }

  .top-summary {
    grid-template-columns: 1fr 68px 1fr;
    gap: 10px;
    padding: 16px 18px;
  }

  .balance-metric {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 2px 10px;
    padding: 12px 16px;
  }

  .balance-metric strong {
    grid-row: span 2;
    text-align: right;
  }

  .metric strong {
    font-size: 24px;
  }

  .questionnaire {
    padding: 36px 18px 28px;
  }

  .question-header {
    display: block;
  }

  .header-calculation-help {
    max-width: none;
    margin-top: 16px;
  }

  .question-header h1 {
    font-size: 43px;
  }

  .formula-link {
    margin-top: 15px;
  }

  .roi-overview {
    grid-template-columns: 1fr;
  }

  .roi-behavior,
  .roi-overview-guidance,
  .roi-overview footer {
    grid-column: 1;
  }

  .roi-behavior-heading,
  .roi-behavior-chain {
    grid-template-columns: 1fr;
  }

  .modal-cost-groups {
    grid-template-columns: 1fr;
  }

  .modal-rich .responsibility-grid {
    grid-template-columns: 1fr;
  }

  .modal-rich .responsibility-column + .responsibility-column {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .modal-cost-group > small {
    min-height: 0;
  }

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

  .field-spacer {
    display: none;
  }

  .process-question-card > .binary-question {
    grid-template-columns: 1fr;
  }

  .process-question-card > .binary-question .binary-buttons,
  .process-question-card > .binary-question .field-hint {
    grid-column: 1;
    grid-row: auto;
  }

  .content-card {
    min-height: 0;
    padding: 22px 18px;
  }

  .question-footer {
    grid-template-columns: 90px 1fr;
  }

  .question-footer > span {
    display: none;
  }

  .benefit-row {
    grid-template-columns: 110px 1fr 58px;
  }

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

  .live-calculation,
  .risk-preview {
    grid-template-columns: 1fr;
  }

  .live-calculation strong,
  .risk-preview strong {
    grid-row: auto;
  }

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

  .calculation-breakdown {
    grid-template-columns: 1fr;
  }

  .calculation-card,
  .calculation-card.wide {
    grid-column: 1;
  }

  .calculation-card {
    grid-template-columns: 1fr;
  }

  .calculation-card code,
  .calculation-card strong {
    grid-column: 1;
    grid-row: auto;
    text-align: left;
  }
}

@media print {
  @page {
    size: letter;
    margin: 0.35in;
  }

  body {
    background: #fff !important;
    color: #2b2c2f;
    print-color-adjust: exact;
    -webkit-print-color-adjust: exact;
  }

  body.printing-report .app-shell,
  body.printing-report .entry-gate,
  body.printing-report .modal-backdrop {
    display: none !important;
  }

  body.printing-report .pdf-report {
    display: block;
    font-family: var(--sva-roi-sans);
  }

  .executive-one-page,
  .executive-one-page * {
    box-sizing: border-box;
    font-family: var(--sva-roi-sans) !important;
  }

  .executive-one-page {
    width: 100%;
    color: #2b2c2f;
    background: #fff;
  }

  .op-header {
    min-height: 0.58in;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.12in 0.18in;
    border-bottom: 5px solid #fbac00;
    color: #fff;
    background: #00205c;
  }

  .op-header img {
    width: 1.82in;
    height: auto;
  }

  .op-header div {
    text-align: right;
  }

  .op-header span,
  .op-header strong {
    display: block;
  }

  .op-header span {
    margin-bottom: 3px;
    color: #ffce64;
    font-size: 6.5px;
    font-weight: 800;
    letter-spacing: 0.14em;
  }

  .op-header strong {
    font-size: 12px;
  }

  .op-title {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 18px;
    align-items: end;
    padding: 0.16in 0.12in 0.13in;
  }

  .op-title span,
  .op-title h1,
  .op-title p,
  .op-title small {
    display: block;
    margin: 0;
  }

  .op-title span {
    margin-bottom: 4px;
    color: #0058fc;
    font-size: 6.5px;
    font-weight: 800;
    letter-spacing: 0.13em;
  }

  .op-title h1 {
    color: #00205c;
    font-size: 23px;
    line-height: 1.02;
    letter-spacing: -0.025em;
  }

  .op-title p {
    margin-top: 6px;
    color: #686a70;
    font-size: 7.5px;
    line-height: 1.4;
  }

  .op-title small {
    color: #686a70;
    font-size: 6.5px;
    text-align: right;
  }

  .op-metrics {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 7px;
    padding: 0 0.12in;
  }

  .op-metric {
    min-height: 0.72in;
    padding: 10px 11px;
    border-radius: 7px;
    color: #fff;
    background: #00205c;
  }

  .op-metric:nth-child(1),
  .op-metric:nth-child(4) {
    background: #0058fc;
  }

  .op-metric span,
  .op-metric strong,
  .op-metric small {
    display: block;
  }

  .op-metric span {
    color: rgba(255, 255, 255, 0.68);
    font-size: 6px;
    font-weight: 800;
    text-transform: uppercase;
  }

  .op-metric strong {
    margin: 7px 0 4px;
    font-size: 18px;
    line-height: 1;
  }

  .op-metric small {
    color: rgba(255, 255, 255, 0.6);
    font-size: 5.8px;
  }

  .op-insight-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    margin: 8px 0.12in 0;
    overflow: hidden;
    border: 1px solid #ffce64;
    border-radius: 6px;
    background: #ffce64;
  }

  .op-insight-strip div {
    padding: 7px 9px;
    background: #fff7e6;
  }

  .op-insight-strip span,
  .op-insight-strip strong {
    display: block;
  }

  .op-insight-strip span {
    color: #686a70;
    font-size: 5.8px;
  }

  .op-insight-strip strong {
    margin-top: 3px;
    color: #00205c;
    font-size: 10px;
  }

  .op-body {
    display: grid;
    grid-template-columns: 1.04fr 0.96fr;
    gap: 10px;
    padding: 9px 0.12in 0;
  }

  .op-panel {
    break-inside: avoid;
    padding: 10px 11px;
    border: 1px solid #e5ded0;
    border-radius: 7px;
  }

  .op-panel + .op-panel {
    margin-top: 8px;
  }

  .op-panel > span,
  .op-panel > h2,
  .op-panel > p {
    display: block;
    margin: 0;
  }

  .op-panel > span {
    color: #0058fc;
    font-size: 6px;
    font-weight: 800;
    letter-spacing: 0.11em;
  }

  .op-panel > h2 {
    margin-top: 4px;
    color: #00205c;
    font-size: 12px;
  }

  .op-panel > p {
    margin-top: 6px;
    color: #2b2c2f;
    font-size: 6.8px;
    line-height: 1.45;
  }

  .op-findings {
    margin: 7px 0 0;
    padding: 0 0 0 13px;
  }

  .op-findings li {
    margin: 0 0 4px;
    color: #2b2c2f;
    font-size: 6.7px;
    line-height: 1.35;
  }

  .op-year-table {
    margin-top: 7px;
  }

  .op-year-row {
    display: grid;
    grid-template-columns: 0.65fr repeat(4, 1fr);
    gap: 5px;
    padding: 5px 4px;
    border-top: 1px solid #eee9df;
    font-size: 6.2px;
  }

  .op-year-row.header {
    border: 0;
    color: #fff;
    background: #00205c;
    font-weight: 800;
  }

  .op-year-row span:not(:first-child),
  .op-year-row strong:not(:first-child) {
    text-align: right;
  }

  .op-driver {
    display: grid;
    grid-template-columns: 1.2fr 1fr auto;
    gap: 7px;
    align-items: center;
    margin-top: 7px;
    color: #2b2c2f;
    font-size: 6.3px;
  }

  .op-driver div {
    height: 6px;
    overflow: hidden;
    border-radius: 999px;
    background: #eef4ff;
  }

  .op-driver i {
    height: 100%;
    display: block;
    border-radius: inherit;
    background: #0058fc;
  }

  .op-driver b {
    color: #00205c;
    font-size: 6.3px;
  }

  .op-assumptions {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4px 12px;
    margin-top: 7px;
  }

  .op-assumptions div {
    display: flex;
    justify-content: space-between;
    gap: 8px;
    padding-bottom: 3px;
    border-bottom: 1px solid #eee9df;
    color: #686a70;
    font-size: 6px;
  }

  .op-assumptions b {
    color: #2b2c2f;
    text-align: right;
  }

  .op-beyond {
    margin: 9px 0.12in 0;
    padding: 9px 11px;
    border-left: 4px solid #fbac00;
    border-radius: 0 7px 7px 0;
    color: #fff;
    background: #00205c;
  }

  .op-beyond span,
  .op-beyond strong,
  .op-beyond small {
    display: block;
  }

  .op-beyond span {
    color: #ffce64;
    font-size: 6px;
    font-weight: 800;
    letter-spacing: 0.1em;
  }

  .op-beyond strong {
    margin: 4px 0;
    font-size: 8px;
  }

  .op-beyond small {
    color: rgba(255, 255, 255, 0.68);
    font-size: 6px;
  }

  .op-footer {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 14px;
    margin: 8px 0.12in 0;
    padding-top: 7px;
    border-top: 1px solid #e5ded0;
    color: #686a70;
    font-size: 5.5px;
    line-height: 1.35;
  }

  .op-footer b {
    color: #00205c;
  }

  .report-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 17px 20px;
    color: #fff;
    background: #00205c;
  }

  .report-header img {
    width: 175px;
    height: auto;
  }

  .report-header div {
    text-align: right;
  }

  .report-header span,
  .report-header strong {
    display: block;
  }

  .report-header span {
    margin-bottom: 4px;
    color: #ffce64;
    font-size: 8px;
    font-weight: 800;
    letter-spacing: 0.15em;
  }

  .report-header strong {
    font-family: var(--sva-roi-sans);
    font-size: 16px;
    font-weight: 500;
  }

  .report-cover {
    min-height: 8.4in;
    position: relative;
    padding: 0.65in 0.35in 0.4in;
    border-bottom: 12px solid #fbac00;
  }

  .report-cover + .report-section {
    break-before: page;
  }

  .report-cover h1 {
    margin: 0.12in 0 0.18in;
    color: #00205c;
    font-family: var(--sva-roi-sans);
    font-size: 48px;
    font-weight: 500;
    line-height: 0.98;
    letter-spacing: -0.04em;
  }

  .report-cover > p {
    max-width: 5.2in;
    color: #686a70;
    font-size: 13px;
    line-height: 1.55;
  }

  .report-cover > small {
    position: absolute;
    left: 0.35in;
    bottom: 0.35in;
    color: #686a70;
    font-size: 9px;
  }

  .report-eyebrow {
    color: #0058fc;
    font-size: 8px;
    font-weight: 800;
    letter-spacing: 0.16em;
  }

  .report-hero-metrics {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-top: 0.55in;
  }

  .report-hero-metrics div {
    min-height: 1.05in;
    padding: 18px;
    border-radius: 9px;
    color: #fff;
    background: #00205c;
  }

  .report-hero-metrics div:nth-child(1),
  .report-hero-metrics div:nth-child(4) {
    background: #0058fc;
  }

  .report-hero-metrics span,
  .report-hero-metrics strong {
    display: block;
  }

  .report-hero-metrics span {
    margin-bottom: 9px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 9px;
  }

  .report-hero-metrics strong {
    font-family: var(--sva-roi-sans);
    font-size: 27px;
    font-weight: 500;
  }

  .report-section {
    padding: 0.42in 0.22in 0.2in;
  }

  .report-section h2 {
    margin: 0.08in 0 0.2in;
    color: #00205c;
    font-family: var(--sva-roi-sans);
    font-size: 27px;
    font-weight: 500;
  }

  .report-section > p {
    margin: 0 0 0.13in;
    color: #2b2c2f;
    font-size: 10px;
    line-height: 1.6;
  }

  .report-callout {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 4px 20px;
    margin-top: 0.22in;
    padding: 16px 18px;
    color: #fff;
    background: #00205c;
    border-left: 6px solid #fbac00;
  }

  .report-callout span,
  .report-callout small {
    font-size: 9px;
  }

  .report-callout small {
    color: rgba(255, 255, 255, 0.65);
  }

  .report-callout strong {
    grid-row: span 2;
    font-family: var(--sva-roi-sans);
    font-size: 24px;
    font-weight: 500;
  }

  .page-break {
    break-before: page;
  }

  .report-input-groups {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

  .report-group {
    break-inside: avoid;
    padding: 13px 15px;
    border: 1px solid #e5ded0;
    border-radius: 7px;
  }

  .report-group h3,
  .report-formulas h3,
  .report-subheading,
  .report-method-note h3 {
    margin: 0 0 9px;
    color: #00205c;
    font-size: 10px;
  }

  .report-row {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 12px;
    padding: 5px 0;
    border-top: 1px solid #eee9df;
    font-size: 8px;
  }

  .report-row span {
    color: #686a70;
  }

  .report-row strong {
    color: #2b2c2f;
    text-align: right;
  }

  .report-formulas {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .report-formulas > div {
    break-inside: avoid;
    padding: 14px;
    border-left: 4px solid #fbac00;
    background: #fff7e6;
  }

  .report-formulas code,
  .report-formulas strong {
    display: block;
  }

  .report-formulas code {
    min-height: 27px;
    color: #686a70;
    font-family: var(--sva-roi-sans);
    font-size: 8px;
    line-height: 1.45;
  }

  .report-formulas strong {
    margin-top: 7px;
    color: #00205c;
    font-family: var(--sva-roi-sans);
    font-size: 15px;
  }

  .report-subheading {
    margin-top: 0.25in;
  }

  .report-table {
    border: 1px solid #e5ded0;
    padding: 7px 12px;
  }

  .report-year-table {
    border: 1px solid #e5ded0;
  }

  .report-year-table > div {
    display: grid;
    grid-template-columns: 0.65fr repeat(4, 1fr);
    gap: 12px;
    padding: 11px 13px;
    border-top: 1px solid #e5ded0;
    font-size: 9px;
    text-align: right;
  }

  .report-year-table > div > :first-child {
    text-align: left;
  }

  .report-year-table .report-year-head {
    border-top: 0;
    color: #fff;
    background: #00205c;
    font-size: 8px;
    font-weight: 800;
  }

  .report-method-note {
    margin-top: 0.28in;
    padding: 17px 18px;
    border-left: 5px solid #0058fc;
    background: #fff7e6;
  }

  .report-method-note p {
    margin: 0 0 8px;
    color: #2b2c2f;
    font-size: 8px;
    line-height: 1.55;
  }

  .report-footer {
    display: flex;
    justify-content: space-between;
    margin-top: 0.3in;
    padding-top: 10px;
    border-top: 2px solid #fbac00;
    color: #00205c;
    font-size: 8px;
    font-weight: 800;
  }

  body:not(.printing-report) .pdf-report {
    display: none !important;
  }

  body:not(.printing-report) .progress-panel,
  body:not(.printing-report) .question-header,
  body:not(.printing-report) .question-footer,
  body:not(.printing-report) .formula-map,
  body:not(.printing-report) .modal-backdrop {
    display: none !important;
  }

  body:not(.printing-report) .app-shell {
    display: block;
  }

  body:not(.printing-report) .top-summary {
    break-inside: avoid;
  }

  body:not(.printing-report) .questionnaire {
    padding: 20px;
  }

  body:not(.printing-report) .content-card {
    box-shadow: none;
  }
}
