@font-face {
  font-family: "Cinzel";
  src: url("/fonts/Cinzel-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Cinzel";
  src: url("/fonts/Cinzel-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Roboto Flex";
  src: url("/fonts/RobotoFlex.woff2") format("woff2");
  font-weight: 100 1000;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg: #f7f9fc;
  --bg-alt: #eff3fa;
  --ink: #10131a;
  --ink-soft: #48526a;
  --line: #dbe3f2;
  --panel: #ffffff;
  --accent: #1748b9;
  --accent-soft: #d9e5ff;
  --ok: #0f766e;
  --shadow: 0 20px 54px rgba(12, 30, 74, 0.14);
  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-sm: 12px;
  --content-w: 1160px;
  --space-2: 10px;
  --space-3: 14px;
  --space-4: 18px;
  --space-5: 24px;
  --space-6: 32px;
  --space-7: 44px;
  --space-8: 56px;
  --topbar-h: 66px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
}

html {
  scroll-behavior: smooth;
  background: var(--bg);
}

body {
  font-family: "Roboto Flex", "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 8% 2%, rgba(23, 72, 185, 0.11), transparent 34%),
    radial-gradient(circle at 90% 3%, rgba(14, 130, 110, 0.09), transparent 28%),
    var(--bg);
  line-height: 1.46;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: -999px;
}

.skip-link:focus {
  left: 12px;
  top: 12px;
  z-index: 9999;
  background: #fff;
  padding: 8px 10px;
  border-radius: 8px;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 60;
  height: var(--topbar-h);
  backdrop-filter: blur(8px);
  background: rgba(247, 249, 252, 0.84);
  border-bottom: 1px solid rgba(127, 145, 186, 0.22);
}

.topbar__inner {
  max-width: var(--content-w);
  margin: 0 auto;
  height: 100%;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-5);
}

.topbar__brand-wrap {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-width: 0;
}

.topbar__logos {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.topbar__logo {
  display: block;
  width: auto;
  height: 16px;
}

.topbar__logo--ssw {
  height: 16px;
}

.topbar__logo--jinko {
  height: 32px;
}

.topbar__nav {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.topbar__nav a {
  text-decoration: none;
  color: #2b3650;
  font-size: 13px;
  font-weight: 560;
  padding: 6px 10px;
  border-radius: 999px;
  transition: background 0.2s ease, color 0.2s ease;
}

.topbar__nav a:hover,
.topbar__nav a.is-active {
  background: rgba(23, 72, 185, 0.11);
  color: #0e2f7b;
}

.page {
  display: block;
}

.container {
  width: min(var(--content-w), calc(100% - 32px));
  margin: 0 auto;
}

.section {
  position: relative;
  padding: var(--space-8) 0;
}

.section--alt {
  background: linear-gradient(180deg, rgba(240, 244, 252, 0.84), rgba(242, 246, 254, 0.64));
  border-top: 1px solid rgba(135, 151, 182, 0.18);
  border-bottom: 1px solid rgba(135, 151, 182, 0.18);
}

.section--hero {
  min-height: calc(100svh - var(--topbar-h));
  display: flex;
  align-items: center;
}

.grid-2 {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: var(--space-7);
  align-items: start;
}

.grid-2--equal {
  grid-template-columns: 1fr 1fr;
}

.hero-copy {
  padding-right: 8px;
}

.eyebrow {
  margin: 0 0 10px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #2f4b84;
  font-size: 12px;
  font-weight: 680;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.08;
}

h1 {
  font-family: "Cinzel", serif;
  font-weight: 700;
  font-size: clamp(34px, 5.5vw, 64px);
  letter-spacing: 0.02em;
  max-width: 12.5ch;
}

h2 {
  font-family: "Cinzel", serif;
  font-size: clamp(28px, 3.4vw, 44px);
  font-weight: 700;
  letter-spacing: 0.01em;
}

h3 {
  font-size: clamp(21px, 2.2vw, 28px);
  font-weight: 660;
}

.lead {
  margin: 18px 0 0;
  font-size: clamp(17px, 2vw, 23px);
  color: #23314f;
  max-width: 55ch;
}

.meta {
  margin-top: var(--space-5);
  color: var(--ink-soft);
  font-size: 14px;
}

.chip-list {
  list-style: none;
  margin: var(--space-5) 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.chip-list li {
  background: #ffffff;
  border: 1px solid #ccd8f0;
  border-radius: 999px;
  padding: 9px 14px;
  font-size: 13px;
  font-weight: 580;
  color: #23375f;
}

.hero-visual {
  position: relative;
  min-height: 380px;
}

.geo-card {
  position: relative;
  background: var(--panel);
  border: 1px solid rgba(155, 174, 212, 0.45);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.geo-card__caption {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #4b6295;
  padding: 14px 16px 0;
  font-weight: 680;
}

.geo-card__map {
  padding: 10px;
}

.geo-card svg {
  display: block;
  width: 100%;
  height: auto;
}

.orb {
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
  filter: blur(0.5px);
}

.orb--a {
  right: -26px;
  top: -24px;
  width: 130px;
  height: 130px;
  background: radial-gradient(circle, rgba(33, 88, 210, 0.27), rgba(33, 88, 210, 0));
}

.orb--b {
  left: -30px;
  bottom: -25px;
  width: 170px;
  height: 170px;
  background: radial-gradient(circle, rgba(0, 142, 113, 0.22), rgba(0, 142, 113, 0));
}

.section-head {
  margin-bottom: var(--space-5);
}

.section-head p {
  margin: 12px 0 0;
  max-width: 70ch;
  color: var(--ink-soft);
  font-size: 18px;
}

.summary-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-5);
}

.summary-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 20px;
  box-shadow: 0 12px 28px rgba(14, 28, 63, 0.07);
}

.summary-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.summary-card p {
  margin: 0;
  color: #32405f;
  font-size: 16px;
}

.table-wrap {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: 0 10px 26px rgba(18, 36, 79, 0.08);
  overflow: auto;
}

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

.data-table th,
.data-table td {
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid #e4e9f5;
  padding: 12px 14px;
}

.data-table th {
  background: #f7f9ff;
  color: #23375f;
  font-size: 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

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

.data-table td strong {
  font-size: 18px;
  color: #12326f;
}

.data-table .cell-note {
  display: block;
  margin-top: 4px;
  font-size: 12px;
  color: #596683;
}

.data-table--dense {
  font-size: 13px;
}

.data-table tfoot th {
  background: #f3f7ff;
  border-bottom: none;
}

.notes {
  margin: 15px 0 0;
  padding: 0 0 0 18px;
  display: grid;
  gap: 8px;
  color: #34425f;
  font-size: 14px;
}

.footnote {
  margin: 14px 0 0;
  font-size: 12px;
  color: #5b6a89;
}

.funnel-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 20px;
  box-shadow: 0 12px 30px rgba(15, 36, 80, 0.09);
}

.funnel-card h3 {
  margin-bottom: 12px;
}

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

.funnel-row {
  display: grid;
  grid-template-columns: 130px minmax(0, 1fr) 64px;
  align-items: center;
  gap: 12px;
}

.funnel-row__label {
  font-size: 12px;
  font-weight: 620;
  color: #425171;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.funnel-row__bar-wrap {
  position: relative;
  height: 13px;
  border-radius: 99px;
  background: #e8eefb;
  overflow: hidden;
}

.funnel-row__bar {
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #1748b9, #3f7afd);
  width: 0;
  transition: width 0.9s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.funnel-row__value {
  font-weight: 700;
  color: #173d98;
  text-align: right;
}

.evidence-grid {
  display: grid;
  gap: var(--space-5);
  grid-template-columns: 1fr;
}

.evidence-card {
  grid-column: 1 / -1;
  border-radius: var(--radius-md);
  background: #ffffff;
  border: 1px solid var(--line);
  overflow: hidden;
  box-shadow: 0 12px 28px rgba(15, 34, 74, 0.09);
}

.evidence-media {
  position: relative;
  display: grid;
  place-items: center;
  padding: 10px;
  background: #f1f4fb;
}

.evidence-media img {
  width: min(100%, 640px);
  height: auto;
  max-width: 100%;
  object-fit: contain;
  display: block;
  margin-inline: auto;
}

.evidence-card.is-missing .evidence-media::before {
  content: "Screenshot file is missing in /presentation/assets/evidence";
  position: absolute;
  inset: auto 14px 14px;
  z-index: 3;
  padding: 8px 10px;
  background: rgba(12, 17, 29, 0.8);
  color: #fff;
  font-size: 12px;
  border-radius: 8px;
}

.evidence-content {
  padding: 14px 16px 16px;
}

.evidence-content p {
  margin: 0;
  color: #334261;
  font-size: 14px;
}

.evidence-meta {
  margin-top: 8px;
  color: #5b6887;
  font-size: 12px;
}

.segment-tag {
  display: inline-flex;
  padding: 4px 9px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.segment-end-customer {
  background: #d8e6ff;
  color: #123f9b;
}

.segment-channel {
  background: #d7f4ea;
  color: #0f6a51;
}

.segment-specifier {
  background: #f5ead8;
  color: #7b4d13;
}

.segment-utility {
  background: #ece9ff;
  color: #48308f;
}

.segment-strategic,
.segment-partner {
  background: #e5e9f2;
  color: #33456b;
}

.thread-list {
  display: grid;
  gap: 14px;
}

.thread-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 16px;
  box-shadow: 0 8px 24px rgba(16, 35, 74, 0.08);
}

.thread-item h3 {
  font-size: 20px;
  margin-bottom: 8px;
}

.thread-item p {
  margin: 0;
  color: #344261;
  font-size: 15px;
}

.thread-item .condition {
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px dashed #ccd6ec;
  font-weight: 580;
  color: #1f3566;
}

.threads-diagram {
  margin-top: 20px;
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  background: #fff;
  padding: 18px;
  min-height: 310px;
  box-shadow: 0 10px 28px rgba(16, 34, 71, 0.08);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.diagram-node {
  border: 1px solid #d1ddf5;
  border-radius: 12px;
  background: linear-gradient(180deg, #fcfdff, #f2f7ff);
  padding: 12px;
  position: relative;
}

.diagram-node::before {
  content: "";
  position: absolute;
  width: 22px;
  height: 2px;
  background: #86a2de;
  right: -17px;
  top: 50%;
}

.diagram-node:nth-child(even)::before {
  display: none;
}

.diagram-node strong {
  display: block;
  font-size: 14px;
  color: #193d8d;
  margin-bottom: 7px;
}

.diagram-node span {
  font-size: 13px;
  color: #445578;
}

.formula {
  margin-top: 10px;
  border: 1px solid #cad9fb;
  border-radius: var(--radius-sm);
  background: linear-gradient(180deg, #f8fbff, #edf3ff);
  color: #163b8b;
  padding: 16px;
  font-weight: 680;
  font-size: 18px;
  line-height: 1.35;
}

.model-explainer {
  margin-top: 16px;
  padding: 16px;
  border: 1px solid #d2def6;
  border-radius: var(--radius-sm);
  background: linear-gradient(180deg, #fcfdff, #f4f8ff);
}

.model-explainer__title {
  margin: 0;
  font-size: 22px;
  color: #173b8b;
  font-weight: 700;
}

.model-explainer__intro {
  margin: 10px 0 0;
  color: #314362;
  font-size: 16px;
  line-height: 1.5;
}

.model-steps {
  list-style: none;
  margin: 14px 0 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.model-step {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 10px;
  align-items: start;
}

.model-step__index {
  width: 24px;
  height: 24px;
  border-radius: 999px;
  border: 1px solid #9fb9ef;
  background: #eaf1ff;
  color: #1744a2;
  font-size: 13px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.model-step__body strong {
  display: block;
  color: #173b8d;
  font-size: 15px;
}

.model-step__body p {
  margin: 4px 0 0;
  color: #364a6e;
  font-size: 15px;
  line-height: 1.45;
}

.model-example {
  margin-top: 14px;
  border: 1px dashed #afc4ee;
  border-radius: 12px;
  background: #fff;
  padding: 12px 14px;
}

.model-example h4,
.model-audit h4 {
  margin: 0;
  font-size: 15px;
  font-weight: 700;
  color: #1a3f93;
}

.model-example ol {
  margin: 9px 0 0;
  padding: 0 0 0 20px;
  display: grid;
  gap: 6px;
}

.model-example li {
  color: #334867;
  font-size: 15px;
  line-height: 1.45;
}

.model-audit {
  margin-top: 14px;
}

.model-audit-points {
  margin: 9px 0 0;
  padding: 0 0 0 18px;
  display: grid;
  gap: 6px;
}

.model-audit-points li {
  color: #334867;
  font-size: 15px;
  line-height: 1.45;
}

.scenario-cards {
  display: grid;
  gap: var(--space-5);
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.scenario-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 18px;
  box-shadow: 0 12px 28px rgba(14, 34, 80, 0.08);
}

.scenario-card h3 {
  font-size: 22px;
  margin-bottom: 6px;
}

.scenario-card .primary {
  font-size: 37px;
  font-weight: 760;
  color: #1646b1;
}

.scenario-card .secondary {
  margin-top: 6px;
  color: #344667;
  font-size: 15px;
}

.commitment {
  margin: var(--space-5) 0;
  background: #102a61;
  color: #f2f6ff;
  border-radius: var(--radius-md);
  padding: 18px 20px;
  font-size: 17px;
  box-shadow: 0 15px 32px rgba(8, 29, 77, 0.26);
}

.split-wrap {
  margin-top: 8px;
}

.execution-plan {
  margin-top: var(--space-6);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 20px;
  box-shadow: 0 12px 30px rgba(15, 34, 74, 0.09);
}

.execution-plan__head h3 {
  margin: 0;
  font-size: clamp(24px, 2.5vw, 32px);
  color: #153b8f;
}

.execution-plan__head p {
  margin: 8px 0 0;
  color: #344667;
  font-size: 16px;
}

.execution-scope {
  margin-top: 14px;
  padding: 14px 16px;
  border: 1px solid #cddaf4;
  border-radius: 12px;
  background: linear-gradient(180deg, #f9fbff, #eef4ff);
}

.execution-scope h4 {
  margin: 0;
  color: #173f96;
  font-size: 16px;
  font-weight: 700;
}

.execution-scope p {
  margin: 7px 0 0;
  color: #33496e;
  font-size: 15px;
  line-height: 1.48;
}

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

.execution-card {
  background: #fff;
  border: 1px solid #d7e1f5;
  border-radius: 12px;
  padding: 14px;
}

.execution-card h4 {
  margin: 0;
  color: #153c8f;
  font-size: 18px;
  line-height: 1.3;
}

.execution-card__objective,
.execution-card__output {
  margin: 9px 0 0;
  color: #33496f;
  font-size: 15px;
  line-height: 1.45;
}

.execution-card__actions {
  margin: 9px 0 0;
  padding: 0 0 0 18px;
  display: grid;
  gap: 6px;
}

.execution-card__actions li {
  color: #33496f;
  font-size: 15px;
  line-height: 1.45;
}

.execution-kpis {
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.execution-kpis li {
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid #c9d8f7;
  background: #f6f9ff;
  color: #1f437f;
  font-size: 14px;
  font-weight: 620;
}

.execution-success {
  margin-top: 14px;
  border: 1px solid #d4e0f6;
  border-radius: 12px;
  background: #fbfcff;
  padding: 14px;
}

.execution-success h4 {
  margin: 0;
  color: #153c90;
  font-size: 16px;
  font-weight: 700;
}

.execution-success ul {
  margin: 8px 0 0;
  padding: 0 0 0 18px;
  display: grid;
  gap: 6px;
}

.execution-success li {
  color: #34496d;
  font-size: 15px;
  line-height: 1.45;
}

.execution-guardrail {
  margin: 12px 0 0;
  border-left: 3px solid #1947aa;
  padding: 8px 0 8px 11px;
  color: #2f456f;
  font-size: 14px;
  line-height: 1.45;
}

.range-bars {
  display: grid;
  gap: 12px;
  margin-top: 8px;
}

.range-row {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 12px;
}

.range-row__head {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 8px;
  color: #203459;
  font-size: 14px;
  font-weight: 600;
}

.range-track {
  height: 12px;
  border-radius: 999px;
  background: #e8eefc;
  position: relative;
  overflow: hidden;
}

.range-fill {
  position: absolute;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #1748b9, #3c77f3);
}

.closing {
  margin-top: var(--space-6);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 22px;
  box-shadow: 0 10px 24px rgba(16, 35, 72, 0.08);
}

.closing p {
  margin: 12px 0 0;
  font-size: 16px;
  color: #334565;
}

.closing-contact {
  font-weight: 650;
  color: #132e67;
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

body.no-motion .reveal {
  transition: none;
  transform: none;
  opacity: 1;
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    transition: none;
    transform: none;
    opacity: 1;
  }
}

@media (max-width: 1180px) {
  .container {
    width: min(var(--content-w), calc(100% - 24px));
  }

  .grid-2,
  .grid-2--equal {
    grid-template-columns: 1fr;
    gap: var(--space-5);
  }

  .hero-visual {
    min-height: 280px;
  }

  .summary-grid,
  .scenario-cards {
    grid-template-columns: 1fr;
  }

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

  .evidence-card {
    grid-column: 1 / -1;
  }
}

@media (max-width: 860px) {
  :root {
    --space-8: 48px;
    --space-7: 34px;
    --topbar-h: 58px;
  }

  .topbar__inner {
    padding: 0 12px;
  }

  .topbar__logo--ssw {
    height: 14px;
  }

  .topbar__logo--jinko {
    height: 28px;
  }

  .topbar__nav {
    display: none;
  }

  .section-head p {
    font-size: 16px;
  }

  .lead {
    font-size: 18px;
  }

  .data-table {
    min-width: 520px;
  }

  .funnel-row {
    grid-template-columns: 104px minmax(0, 1fr) 54px;
  }

  .model-explainer {
    padding: 14px;
  }

  .model-steps {
    gap: 8px;
  }

  .model-step {
    gap: 8px;
  }

  .model-step__body strong,
  .model-step__body p,
  .model-example li,
  .model-audit-points li {
    font-size: 16px;
  }

  .execution-plan {
    padding: 16px;
  }

  .execution-scope p,
  .execution-card__objective,
  .execution-card__output,
  .execution-card__actions li,
  .execution-success li {
    font-size: 16px;
  }

}

@media (max-width: 560px) {
  .section {
    padding: 40px 0;
  }

  .container {
    width: calc(100% - 20px);
  }

  h1 {
    letter-spacing: 0.01em;
  }

  .chip-list li {
    font-size: 12px;
  }

  .data-table {
    min-width: 460px;
  }

  .summary-card,
  .scenario-card,
  .thread-item,
  .closing,
  .funnel-card {
    padding: 14px;
  }

  .formula {
    font-size: 16px;
    padding: 12px;
  }

  .model-explainer {
    margin-top: 12px;
    padding: 12px;
  }

  .model-explainer__title {
    font-size: 20px;
  }

  .model-explainer__intro {
    font-size: 16px;
  }

  .model-step {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .model-step__index {
    width: 22px;
    height: 22px;
    font-size: 12px;
  }

  .model-step__body strong,
  .model-step__body p,
  .model-example li,
  .model-audit-points li {
    font-size: 16px;
  }

  .execution-plan {
    margin-top: var(--space-5);
    padding: 14px;
  }

  .execution-plan__head h3 {
    font-size: 22px;
  }

  .execution-card,
  .execution-success,
  .execution-scope {
    padding: 12px;
  }

  .execution-kpis li {
    font-size: 13px;
  }

  .evidence-media {
    padding: 8px;
  }

  .evidence-content p,
  .thread-item p,
  .closing p,
  .summary-card p {
    font-size: 16px;
  }
}

body.is-print {
  background: #fff;
}

body.is-print .topbar {
  position: static;
  border-bottom: 1px solid #d5deef;
  background: #fff;
  backdrop-filter: none;
}

body.is-print .section {
  padding: 28px 0;
  break-inside: avoid;
  page-break-inside: avoid;
}

body.is-print .section--alt {
  background: #fff;
}

body.is-print .orb,
body.is-print .skip-link {
  display: none;
}

@media print {
  body {
    background: #fff;
    color: #000;
  }

  .topbar {
    position: static;
    background: #fff;
    border-bottom: 1px solid #cfd9ee;
    box-shadow: none;
  }

  .topbar__nav {
    display: none;
  }

  .section {
    padding: 18px 0;
    break-inside: avoid;
    page-break-inside: avoid;
  }

  .section + .section {
    page-break-before: auto;
  }

  .summary-card,
  .scenario-card,
  .table-wrap,
  .evidence-card,
  .thread-item,
  .closing,
  .funnel-card,
  .formula,
  .execution-plan,
  .execution-card,
  .execution-success,
  .execution-scope,
  .model-explainer,
  .model-example,
  .geo-card {
    box-shadow: none;
  }
}
