/* MapMyFranchise: one token system,independent of the reference extractions. */
:root {
  --canvas: #fff;
  --surface: #f8f8f5;
  --ink: #20231f;
  --muted: #62665f;
  --border: #dedfd8;
  --violet: #6554b1;
  --violet-light: #f0edf8;
  --green: #286b53;
  --green-light: #e9f1eb;
  --peach: #f7e6d8;
  --peach-ink: #854c30;
  --display: Georgia, "Times New Roman", serif;
  --sans: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --radius: 16px;
  --container: 1200px;
  --section-space: 104px;
  --shadow: 0 18px 55px -30px #26332245;
  --focus: #5746a3;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 105px;
}
body {
  margin: 0;
  color: var(--ink);
  background: var(--canvas);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
h1,
h2,
h3,
h4,
p {
  margin: 0;
}
h1,
h2,
h3,
h4 {
  line-height: 1.2;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input,
select {
  font: inherit;
}
button,
a,
input {
  touch-action: manipulation;
}
button {
  color: inherit;
  cursor: pointer;
}
button:disabled {
  cursor: not-allowed;
}
img {
  max-width: 100%;
  height: auto;
}
svg {
  flex-shrink: 0;
}
button {
  border: 0;
}
a,
button,
input,
summary {
  outline-offset: 5px;
}
a:focus-visible,
button:focus-visible,
input:focus-visible,
summary:focus-visible,
[tabindex]:focus-visible {
  outline: 3px solid var(--focus);
}
[hidden] {
  display: none !important;
}
::selection {
  background: #e1d9f2;
}
em {
  font-weight: inherit;
}
main:focus {
  outline: none;
}
.container {
  width: min(var(--container), calc(100% - 96px));
  margin-inline: auto;
}
.section {
  padding-block: var(--section-space);
}
.eyebrow {
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.13em;
  font-weight: 600;
  line-height: 1.6;
  margin-bottom: 23px;
  color: #555d52;
  display: flex;
  align-items: center;
  gap: 10px;
}
.eyebrow-line {
  height: 1px;
  width: 23px;
  background: var(--violet);
}
.section-heading {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(38px, 4.1vw, 56px);
  letter-spacing: -0.035em;
  line-height: 1.12;
}
.lede {
  font-size: 18px;
  color: var(--muted);
  max-width: 600px;
  line-height: 1.65;
  margin-top: 24px;
}
.section-top {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 365px);
  align-items: end;
  gap: 48px;
  margin-bottom: 48px;
}
.section-top > * {
  min-width: 0;
}
.section-top .section-heading {
  margin-bottom: 0;
  text-wrap: balance;
}
.section-top .section-intro {
  max-width: 365px;
  line-height: 1.65;
}
.section-intro {
  max-width: 365px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
  padding-bottom: 4px;
}
.muted,
.caption {
  color: var(--muted);
}
.caption {
  font-size: 12px;
  line-height: 1.6;
}
.tiny-label {
  font-size: 11px;
  letter-spacing: 0.09em;
  font-weight: 600;
  color: var(--muted);
  line-height: 1.6;
}
.icon {
  vertical-align: middle;
}
.button {
  min-height: 48px;
  display: inline-flex;
  gap: 14px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  padding: 13px 21px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
  transition:
    background 0.2s,
    transform 0.2s,
    border-color 0.2s;
}
.button:hover {
  transform: translateY(-2px);
}
.button-primary {
  background: var(--ink);
  color: #fff;
}
.button-primary:hover {
  background: #3a4135;
}
.button-secondary {
  background: transparent;
  border-color: #a3a79b;
}
.button-secondary:hover {
  background: var(--surface);
  border-color: var(--ink);
}
.button-small {
  min-height: 42px;
  padding: 11px 17px;
  font-size: 13px;
}
.button .icon {
  width: 17px;
  height: 17px;
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  font-weight: 500;
  font-size: 14px;
  padding-block: 12px;
  border-bottom: 1px solid #b9beb0;
  margin-top: 20px;
}
/* Links in action rows share the controls' center line. Standalone links keep
   their paragraph spacing; row layout owns the spacing between actions. */
.hero-actions > .text-link,
.button-row > .text-link,
.hero-workspace-top > .text-link,
.product-alternatives > .text-link {
  margin-top: 0;
}
.text-link:hover {
  color: var(--violet);
  border-color: var(--violet);
}
.tag {
  display: inline-flex;
  align-items: center;
  padding: 4px 9px;
  line-height: 1.5;
  border-radius: 5px;
  background: #f1f2ed;
  font-size: 11px;
  font-weight: 500;
  color: #565e51;
}
.violet {
  background: var(--violet-light);
  color: var(--violet);
}
.green {
  background: var(--green-light);
  color: var(--green);
}
.peach {
  background: var(--peach);
  color: var(--peach-ink);
}
.mini-icon {
  width: 38px;
  height: 38px;
  border-radius: 9px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.mini-icon .icon {
  width: 19px;
}
.skip-link {
  position: fixed;
  top: -100px;
  left: 16px;
  z-index: 100;
  background: var(--ink);
  color: white;
  padding: 12px 20px;
}
.skip-link:focus {
  top: 12px;
}
/* Navigation */
.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: #fffffff5;
  border-bottom: 1px solid #e9ebe5;
  backdrop-filter: blur(12px);
}
.header-inner {
  height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 21px;
  letter-spacing: -0.8px;
  font-weight: 600;
  white-space: nowrap;
}
.brand img {
  width: 29px;
  height: 35px;
  object-fit: contain;
}
.brand-period {
  color: var(--violet);
}
.main-navigation {
  display: flex;
  align-items: center;
  gap: 30px;
  flex: 1;
  justify-content: flex-end;
}
.nav-link {
  font-size: 13px;
  font-weight: 450;
  display: flex;
  align-items: center;
  gap: 5px;
  min-height: 44px;
  white-space: nowrap;
  background: transparent;
  padding: 0;
}
.nav-link:hover,
.nav-link[aria-current="page"] {
  color: var(--violet);
}
.nav-link .icon {
  width: 13px;
  height: 13px;
}
.nav-actions {
  display: flex;
  gap: 24px;
  align-items: center;
  margin-left: auto;
}
.nav-products {
  position: relative;
}
.products-menu {
  position: absolute;
  top: 49px;
  left: -20px;
  width: 325px;
  padding: 10px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: white;
  box-shadow: var(--shadow);
}
.products-menu a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 10px;
  border-radius: 8px;
}
.products-menu a:hover {
  background: var(--surface);
}
.products-menu strong {
  font-size: 14px;
  display: block;
}
.products-menu small {
  display: block;
  font-size: 12px;
  color: var(--muted);
  margin-top: 3px;
}
.menu-toggle {
  display: none;
  background: transparent;
  width: 44px;
  height: 44px;
  padding: 10px;
}
.menu-toggle span {
  height: 1.5px;
  width: 24px;
  background: var(--ink);
  display: block;
  margin: 6px 0;
  transition: transform 0.2s;
}
/* Opening: editorial copy paired with a usable analytical artifact. */
.hero {
  background: var(--surface);
  padding-top: 84px;
}
.hero .eyebrow {
  font-size: 11px;
  letter-spacing: 0.12em;
}
.hero h1 {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(51px, 5.4vw, 74px);
  line-height: 1.07;
  letter-spacing: -0.045em;
  max-width: 620px;
}
.hero h1 em {
  color: var(--violet);
}
.hero-description {
  max-width: 490px;
  margin-top: 28px;
  font-size: 17px;
  line-height: 1.75;
  color: var(--muted);
}
.hero-actions {
  display: flex;
  gap: 23px;
  align-items: center;
  margin-top: 32px;
  flex-wrap: wrap;
}
.hero-actions .button {
  font-size: 13px;
}

.hero-proof {
  display: grid;
  grid-template-columns: 1.38fr 1fr 1fr 1fr;
  border-top: 1px solid var(--border);
  margin-top: 50px;
  padding-block: 28px 31px;
  font-size: 12px;
  color: var(--muted);
  gap: 35px;
}
.hero-proof > span {
  font-size: 13px;
}
.hero-proof > span strong {
  font-weight: 500;
  color: var(--ink);
}
.hero-proof > div {
  border-left: 1px solid var(--border);
  padding-left: 38px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.hero-proof > div strong {
  font-size: 22px;
  font-weight: 400;
  color: var(--ink);
  letter-spacing: -0.5px;
}
.hero-proof > div span {
  font-size: 11px;
}
/* Product paths */
.product-paths {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.path-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 30px 32px 25px;
  transition: background 0.25s;
  position: relative;
}
.path-card + .path-card {
  border-left: 1px solid var(--border);
}
.path-primary {
  background: #f8f6fc;
}
.path-card:hover {
  background: var(--surface);
}
.path-card:hover .path-link .icon {
  transform: translateX(5px);
}
.path-number {
  font-size: 10px;
  letter-spacing: 0.1em;
  color: var(--muted);
  font-weight: 500;
}
.path-icon {
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  margin-block: 32px 20px;
}
.path-icon .icon {
  width: 23px;
  height: 23px;
}
.path-card h3 {
  font-size: 22px;
  line-height: 1.35;
  letter-spacing: -0.55px;
  font-weight: 450;
}
.path-card p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--muted);
  margin-top: 14px;
  max-width: 275px;
}
.path-link {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  font-weight: 500;
  margin-top: auto;
  padding-top: 30px;
}
.path-link .icon {
  width: 17px;
  transition: transform 0.25s;
}
.check-list {
  list-style: none;
  padding: 0;
  margin: 24px 0;
}
.check-list li {
  position: relative;
  padding-left: 24px;
  font-size: 13px;
  line-height: 1.6;
  color: var(--muted);
  margin: 12px 0;
}
.check-list li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--green);
  font-size: 14px;
}

.callout {
  padding: 20px;
  background: #eeefe8;
  border-radius: 10px;
  font-size: 14px;
  line-height: 1.65;
  margin-top: 26px;
}
.callout p {
  color: var(--muted);
  font-size: 14px;
  margin-top: 7px;
}

input[type="range"] {
  width: 100%;
  accent-color: var(--violet);
  height: 30px;
  margin: 15px 0 0;
  cursor: pointer;
}

/* Evidence and the report */
.methodology-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}
.methodology-layout .lede {
  font-size: 16px;
  max-width: 385px;
}
.methodology-layout .section-heading em {
  color: var(--violet);
}
.evidence-card {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
}
.evidence-card:first-child {
  padding-top: 0;
}
.evidence-index {
  font-size: 11px;
  color: #62665f;
  line-height: 2;
}
.evidence-card h3 {
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -0.3px;
}
.evidence-card p {
  font-size: 14px;
  color: var(--muted);
  margin-top: 10px;
  max-width: 330px;
  line-height: 1.65;
}
.evidence-card > .icon {
  width: 19px;
  margin-left: auto;
  color: var(--violet);
}
.evidence-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  color: var(--muted);
  padding-top: 24px;
  gap: 15px;
}
.evidence-bottom:hover {
  color: var(--violet);
}
.report-preview {
  background: #eef1e9;
}

.report-preview .lede {
  font-size: 16px;
  max-width: 440px;
}
/* Pricing,closing and footer */
.grid-3,
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 40px;
}
.pricing-card {
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  position: relative;
}
.pricing-card:first-child {
  background: #f8f6fc;
  border-color: #d7d0e7;
}
.pricing-card h3 {
  font-size: 23px;
  font-weight: 450;
  letter-spacing: -0.6px;
  margin: 16px 0 10px;
}
.pricing-card > p {
  font-size: 13px;
  color: var(--muted);
}
.pricing-card .price {
  font-size: 42px;
  line-height: 1.2;
  letter-spacing: -1.4px;
  font-weight: 400;
  margin: 26px 0 3px;
  font-variant-numeric: tabular-nums;
}
.price small,
.price span {
  font-size: 13px;
  letter-spacing: 0;
  color: var(--muted);
  font-weight: 400;
}
.pricing-footnote {
  font-size: 12px;
  color: var(--muted);
}
.pricing-card .check-list {
  margin-block: 17px 28px;
}
.pricing-card .check-list li {
  font-size: 12px;
  line-height: 1.6;
}
.pricing-card .button {
  margin-top: auto;
  width: 100%;
  font-size: 13px;
}
.pricing-card .pricing-footnote {
  margin-top: 15px;
  font-size: 11px;
}
.pricing-bottom-note {
  font-size: 12px;
  text-align: center;
  color: var(--muted);
  margin-top: 28px;
}
.pricing-bottom-note a {
  text-decoration: underline;
  text-underline-offset: 4px;
}
.final-cta {
  background: #f2eff8;
  border-block: 1px solid #e2ddeb;
  text-align: center;
  padding-block: 80px 75px;
}
.final-cta .eyebrow {
  justify-content: center;
  font-size: 10px;
}
.final-cta h2 {
  font-family: var(--display);
  font-size: clamp(38px, 4.5vw, 61px);
  font-weight: 400;
  letter-spacing: -2px;
  line-height: 1.13;
}
.final-cta h2 em {
  color: var(--violet);
}
.final-cta .button {
  margin-top: 32px;
}
.final-cta p:last-child {
  font-size: 11px;
  color: var(--muted);
  margin-top: 18px;
}
.site-footer {
  background: #fff;
  padding-top: 64px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2.1fr 1fr 1fr 1.7fr;
  gap: 50px;
}
.footer-brand p {
  font-size: 13px;
  color: var(--muted);
  margin-top: 18px;
  line-height: 1.7;
}
.footer-grid > div > h2 {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 550;
  margin: 8px 0 16px;
}
.footer-grid > div > a:not(.brand) {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  color: var(--muted);
  padding: 6px 0;
  min-height: 32px;
}
.footer-grid > div > a:hover {
  color: var(--violet);
}
.footer-grid > div > p {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.7;
}
.footer-grid .icon {
  width: 13px;
}
.footer-bottom {
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-block: 24px;
  font-size: 10px;
  color: var(--muted);
  margin-top: 50px;
}
.footer-bottom a {
  min-height: 26px;
}
.footer-note {
  margin-top: 40px;
  padding-top: 25px;
  border-top: 1px solid var(--border);
}
.footer-note p {
  max-width: 900px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.8;
}
.footer-note strong {
  color: var(--ink);
  font-weight: 500;
}
.footer-note + .footer-bottom {
  margin-top: 24px;
}
/* Inner pages share the same editorial rhythm and evidence treatment. */
.page-hero {
  padding-block: 76px 66px;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
}
.page-hero h1 {
  font: 400 clamp(42px, 5vw, 70px)/1.08 var(--display);
  letter-spacing: -0.04em;
  max-width: 850px;
}
.page-hero .lede {
  max-width: 750px;
}
.page-hero .eyebrow {
  margin-bottom: 22px;
}
.button-row {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 28px;
}
.detail-section {
  padding-block: 72px;
  border-bottom: 1px solid var(--border);
}
.section.detail-section {
  padding-block: var(--section-space);
}
.detail-section h2 {
  font: 400 42px/1.15 var(--display);
  letter-spacing: -1.2px;
  margin-bottom: 23px;
}
.detail-section h3 {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 13px;
}
.detail-section p {
  color: var(--muted);
  max-width: 800px;
  line-height: 1.7;
}
.detail-section .grid-3,
.detail-section .grid-2 {
  margin-top: 32px;
}
.feature-card {
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--surface);
}
.feature-card h3 {
  font-size: 20px;
  font-weight: 500;
  margin: 16px 0 13px;
  letter-spacing: -0.4px;
}
.feature-card p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.65;
}
.feature-card > .icon {
  color: var(--violet);
}
.feature-card .tag {
  font-size: 12px;
}
.steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  margin-top: 35px;
}
.step {
  border-top: 1px solid var(--border);
  padding-top: 22px;
}
.step h3 {
  font-size: 18px;
  margin: 20px 0 13px;
  font-weight: 500;
}
.step p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
}
.step-number {
  color: var(--violet);
  font-size: 12px;
}
.faq-list {
  max-width: 850px;
  margin-top: 36px;
}
.faq-list details {
  border-bottom: 1px solid var(--border);
  padding-block: 8px;
}
.faq-list summary {
  font-size: 17px;
  font-weight: 500;
  padding: 19px 34px 19px 0;
  cursor: pointer;
  position: relative;
  list-style: none;
}
.faq-list summary::-webkit-details-marker {
  display: none;
}
.faq-list summary:after {
  content: "+";
  position: absolute;
  right: 4px;
  top: 17px;
  font-size: 23px;
  font-weight: 300;
}
.faq-list details[open] summary:after {
  content: "−";
}
.faq-list details > p,
.faq-list details > div {
  font-size: 15px;
  line-height: 1.75;
  color: var(--muted);
  padding-bottom: 22px;
  max-width: 760px;
}
.faq-list a {
  text-decoration: underline;
}
.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--border);
  border-radius: 10px;
  margin-top: 25px;
  max-width: 100%;
}
table {
  border-collapse: collapse;
  width: 100%;
  font-size: 14px;
  text-align: left;
}
caption {
  text-align: left;
  padding: 18px;
  background: var(--surface);
  font-size: 13px;
  color: var(--muted);
}
th,
td {
  padding: 17px 20px;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
}
th {
  background: var(--surface);
  font-size: 12px;
  font-weight: 500;
  color: var(--muted);
}
tr:last-child td {
  border-bottom: 0;
}
table strong {
  font-weight: 550;
}
.table-wrap table {
  min-width: 620px;
}
.evidence-tag {
  display: inline-flex;
  padding: 5px 9px;
  border-radius: 5px;
  background: var(--green-light);
  color: var(--green);
  font-size: 12px;
  white-space: nowrap;
}
.report-sheet {
  max-width: 960px;
  margin: 55px auto;
  padding: 55px;
  background: #fffefa;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}
.report-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-block: 30px;
  padding-block: 22px;
  border-block: 1px solid var(--border);
  font-size: 13px;
  color: var(--muted);
}
.report-meta dt {
  font-size: 12px;
  color: var(--muted);
}
.report-meta dd {
  margin: 6px 0 0;
  color: var(--ink);
  font-weight: 500;
}
.report-section {
  padding-block: 28px;
}
.report-section h2 {
  font-family: var(--display);
  font-weight: 400;
  font-size: 31px;
  letter-spacing: -0.7px;
  margin-bottom: 18px;
}
.report-section h3 {
  font-size: 18px;
  font-weight: 500;
  margin: 20px 0 12px;
}
.report-section p,
.report-section li {
  font-size: 15px;
  line-height: 1.8;
  color: var(--muted);
}
.report-section ol,
.report-section ul {
  padding-left: 22px;
}
.report-section li {
  margin-block: 10px;
}
.report-id {
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--muted);
}
.report-reference {
  overflow-wrap: anywhere;
}
button.text-link {
  padding-inline: 0;
  background: transparent;
}
.report-hero .pricing-footnote {
  margin-top: 12px;
}
.report-reader {
  max-width: 960px;
  display: grid;
  grid-template-columns: 0.95fr 1.3fr;
  gap: 32px 64px;
  padding-block: 64px 0;
}
.report-reader-intro h2 {
  font: 400 34px/1.15 var(--display);
  letter-spacing: -0.03em;
}
.report-reader-intro > p:last-child {
  margin-top: 18px;
  color: var(--muted);
  font-size: 15px;
}
.report-reading-steps {
  list-style: none;
  margin: 0;
  padding: 0;
}
.report-reading-steps li {
  display: flex;
  gap: 18px;
  padding-block: 16px;
  border-top: 1px solid var(--border);
}
.report-reading-steps li > span {
  color: var(--violet);
  font-size: 12px;
  padding-top: 2px;
}
.report-reading-steps h3 {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.4;
}
.report-reading-steps p {
  margin-top: 7px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}
.report-contents {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 4px 22px;
  padding-block: 15px;
  border-block: 1px solid var(--border);
  font-size: 13px;
}
.report-contents > span {
  color: var(--muted);
}
.report-contents a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  text-decoration: underline;
  text-decoration-color: var(--border);
  text-underline-offset: 5px;
}
.report-contents a:hover,
.report-notes a:hover {
  color: var(--violet);
}
.report-section .report-method-steps {
  list-style: none;
  padding: 0;
  margin-block: 30px;
}
.report-method-steps li {
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr);
  gap: 18px;
  padding-block: 20px;
  border-top: 1px solid var(--border);
}
.report-method-steps .tag {
  align-self: start;
  margin-top: 2px;
}
.report-method-steps h3 {
  margin-top: 0;
  color: var(--ink);
}
.report-notes {
  padding-top: 28px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.8;
}
.report-notes h2 {
  color: var(--ink);
  font: 500 15px/1.5 var(--sans);
  margin-bottom: 12px;
}
.report-notes p + p {
  margin-top: 12px;
}
.report-notes a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  margin: 10px 24px 0 0;
  text-decoration: underline;
  text-underline-offset: 4px;
}
.analysis-process {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
}
.method-scope-note {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 40px;
  padding-top: 28px;
  margin-top: 40px;
  border-top: 1px solid var(--border);
}
.method-scope-note p {
  max-width: 690px;
  font-size: 14px;
  color: var(--muted);
}
.method-scope-note .text-link {
  margin-top: 0;
}
@media (max-width: 760px) {
  .report-reader {
    grid-template-columns: 1fr;
    padding-top: 44px;
    gap: 28px;
  }
  .report-reader-intro h2 {
    font-size: 30px;
  }
  .report-method-steps li {
    grid-template-columns: 24px minmax(0, 1fr);
    gap: 12px;
  }
  .method-scope-note {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .method-scope-note .text-link {
    justify-self: start;
  }
}
.score-cell {
  font-variant-numeric: tabular-nums;
  font-weight: 600;
}
.score-cell small {
  font-weight: 400;
  color: var(--muted);
}
.report-sheet .callout {
  font-size: 14px;
}
.report-sheet .callout p {
  font-size: 14px;
}
/* Image viewer */
body:has(dialog[open]) {
  overflow: hidden;
}
.image-dialog {
  width: min(1200px, calc(100% - 36px));
  max-height: 90dvh;
  padding: 0;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: white;
  box-shadow: var(--shadow);
}
.image-dialog::backdrop {
  background: #11160fd1;
  backdrop-filter: blur(4px);
}
.dialog-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 17px 23px;
  background: white;
  position: sticky;
  top: 0;
  border-bottom: 1px solid var(--border);
}
.dialog-top h2 {
  font-size: 16px;
  font-weight: 500;
}
.image-dialog > img {
  width: 100%;
  height: auto;
  display: block;
}
.image-dialog > .caption {
  padding: 15px 25px;
}
@media (min-width: 1600px) {
  :root {
    --container: 1280px;
  }
  .hero {
    padding-top: 100px;
  }
  .hero h1 {
    font-size: 80px;
  }
  .hero-proof {
    margin-top: 66px;
  }
}
@media (max-width: 1100px) {
  .container {
    width: calc(100% - 64px);
  }
  .header-inner {
    gap: 25px;
  }
  .brand {
    font-size: 19px;
  }
  .main-navigation {
    gap: 23px;
  }
  .nav-actions {
    margin-left: 5px;
  }
  .hero h1 {
    font-size: 58px;
  }
  .hero-actions {
    gap: 14px;
  }
  .hero-actions .button {
    font-size: 12px;
  }

  .hero-proof > div {
    padding-left: 25px;
  }
  .path-card {
    padding: 28px 25px;
  }
  .path-card h3 {
    font-size: 20px;
  }
  .methodology-layout {
    gap: 65px;
  }
  .pricing-card {
    padding: 25px;
  }
  .footer-grid {
    gap: 32px;
  }
  .footer-brand .brand {
    font-size: 17px;
  }
}
@media (max-width: 900px) {
  :root {
    --section-space: 80px;
  }
  .header-inner {
    height: 74px;
  }
  .main-navigation {
    gap: 19px;
  }
  .main-navigation > .nav-link {
    font-size: 12px;
  }
  .nav-actions .button {
    font-size: 12px;
    padding: 10px 13px;
  }
  .brand {
    font-size: 18px;
  }
  .hero {
    padding-top: 60px;
  }
  .hero h1 {
    font-size: 48px;
  }
  .hero-description {
    font-size: 16px;
  }
  .hero .eyebrow {
    font-size: 10px;
    letter-spacing: 0.08em;
  }
  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
  }

  .tiny-label {
    font-size: 10px;
  }
  .hero-proof {
    gap: 18px;
  }
  .hero-proof > div {
    padding-left: 20px;
  }
  .hero-proof > div span {
    font-size: 10px;
  }
  .section-top {
    gap: 35px;
  }
  .section-intro {
    max-width: 300px;
    font-size: 16px;
  }
  .path-number {
    font-size: 8px;
  }
  .path-card {
    padding: 24px 20px;
  }
  .path-card h3 {
    font-size: 18px;
  }
  .path-card p {
    font-size: 13px;
  }
  .path-link {
    font-size: 12px;
    gap: 12px;
  }
  .methodology-layout {
    gap: 42px;
  }

  .pricing-card {
    padding: 22px;
  }
  .pricing-card .price {
    font-size: 35px;
  }
  .footer-grid {
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 35px;
  }
  .footer-grid > div:last-child {
    grid-column: 1/-1;
    display: flex;
    align-items: center;
    gap: 25px;
    border-top: 1px solid var(--border);
    padding-top: 20px;
  }
  .footer-grid > div:last-child h2 {
    margin: 0;
  }
  .footer-grid > div:last-child a {
    margin-left: auto;
  }
  .footer-bottom {
    margin-top: 25px;
  }
  .steps {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 760px) {
  :root {
    --section-space: 64px;
  }
  .container {
    width: calc(100% - 48px);
  }
  .header-inner {
    height: 72px;
    gap: 16px;
  }
  .brand {
    font-size: 20px;
  }
  .menu-toggle {
    display: block;
    margin-left: auto;
  }
  .main-navigation {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 71px;
    padding: 15px 24px 24px;
    background: white;
    border-bottom: 1px solid var(--border);
    box-shadow: 0 15px 20px -20px #2225;
    align-items: stretch;
  }
  .main-navigation.is-open {
    display: flex;
    flex-direction: column;
    gap: 4px;
  }
  .main-navigation > .nav-link,
  .products-toggle {
    min-height: 48px;
    font-size: 15px;
    padding: 0;
  }
  .nav-actions {
    margin: 14px 0 0;
    justify-content: space-between;
    gap: 20px;
  }
  .nav-actions .button {
    font-size: 14px;
    width: 100%;
    min-height: 46px;
  }
  .nav-actions .nav-link {
    font-size: 14px;
  }
  .products-menu {
    position: static;
    width: 100%;
    box-shadow: none;
    border: 0;
    border-radius: 0;
    padding: 0 0 9px;
  }
  .products-menu a {
    padding: 12px 4px;
  }
  .products-menu strong {
    font-size: 14px;
  }
  .products-menu small {
    font-size: 12px;
  }
  .hero {
    padding-top: 48px;
  }
  .hero h1 {
    font-size: clamp(45px, 8.5vw, 68px);
    letter-spacing: -0.044em;
    max-width: 650px;
  }
  .hero .eyebrow {
    font-size: 10px;
    letter-spacing: 0.1em;
    margin-bottom: 23px;
  }
  .hero-description {
    font-size: 16px;
    margin-top: 23px;
    max-width: 510px;
  }
  .hero-actions {
    flex-direction: row;
    align-items: center;
    margin-top: 26px;
    gap: 20px;
  }
  .hero-actions .button {
    font-size: 12px;
  }

  .tiny-label {
    font-size: 11px;
  }

  .hero-proof {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    margin-top: 25px;
    padding-block: 24px;
  }
  .hero-proof > span {
    grid-column: 1/-1;
    font-size: 12px;
    margin-bottom: 15px;
  }
  .hero-proof > span br {
    display: none;
  }
  .hero-proof > div {
    padding-left: 14px;
  }
  .hero-proof > div:nth-child(2) {
    border: 0;
    padding-left: 0;
  }
  .hero-proof > div strong {
    font-size: 20px;
  }
  .hero-proof > div span {
    font-size: 10px;
  }
  .section-top {
    display: block;
    margin-bottom: 32px;
  }
  .section-heading {
    font-size: 43px;
  }
  .section-intro {
    margin-top: 22px;
    max-width: 510px;
    font-size: 16px;
  }
  .eyebrow {
    font-size: 10px;
    margin-bottom: 18px;
  }
  .product-paths {
    grid-template-columns: 1fr;
  }
  .path-card {
    padding: 25px 27px;
    min-height: 310px;
  }
  .path-card + .path-card {
    border-left: 0;
    border-top: 1px solid var(--border);
  }
  .path-number {
    font-size: 10px;
  }
  .path-icon {
    margin-block: 24px 17px;
  }
  .path-card h3 {
    font-size: 25px;
  }
  .path-card p {
    font-size: 15px;
    max-width: 400px;
    margin-top: 12px;
  }
  .path-link {
    font-size: 14px;
    margin-top: 25px;
    padding: 0;
    min-height: 30px;
  }

  .methodology-layout {
    grid-template-columns: 1fr;
    gap: 42px;
  }
  .methodology-layout .lede {
    max-width: 500px;
  }
  .evidence-card {
    gap: 19px;
    padding-block: 25px;
  }
  .evidence-card p {
    font-size: 14px;
    max-width: 490px;
  }
  .evidence-card h3 {
    font-size: 18px;
  }

  .report-preview .lede {
    font-size: 16px;
  }
  .grid-3,
  .pricing-grid,
  .grid-2 {
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .pricing-card {
    padding: 28px;
  }
  .pricing-card h3 {
    font-size: 25px;
  }
  .pricing-card > p {
    font-size: 14px;
  }
  .pricing-card .price {
    font-size: 42px;
  }
  .pricing-card .check-list li {
    font-size: 14px;
  }
  .pricing-card .pricing-footnote {
    font-size: 12px;
  }
  .pricing-card .button {
    font-size: 14px;
  }
  .pricing-bottom-note {
    text-align: left;
    font-size: 12px;
    line-height: 1.8;
  }
  .final-cta {
    padding-block: 62px;
  }
  .final-cta h2 {
    font-size: 40px;
    letter-spacing: -1.6px;
  }
  .final-cta .eyebrow {
    font-size: 9px;
    letter-spacing: 0.06em;
  }
  .final-cta p:last-child {
    font-size: 11px;
  }
  .site-footer {
    padding-top: 44px;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }
  .footer-brand {
    grid-column: 1/-1;
  }
  .footer-brand .brand {
    font-size: 21px;
  }
  .footer-grid > div > h2 {
    font-size: 13px;
    margin-bottom: 12px;
  }
  .footer-grid > div > a:not(.brand) {
    font-size: 13px;
    min-height: 40px;
  }
  .footer-grid > div:last-child {
    display: block;
    padding-top: 20px;
  }
  .footer-grid > div:last-child h2 {
    margin-bottom: 15px;
  }
  .footer-grid > div:last-child p {
    font-size: 13px;
  }
  .footer-grid > div:last-child a {
    font-size: 12px;
    margin-top: 10px;
  }
  .footer-bottom {
    display: flex;
    flex-wrap: wrap;
    font-size: 10px;
    gap: 14px;
    justify-content: space-between;
  }
  .footer-bottom span:nth-child(2) {
    order: 3;
    width: 100%;
  }
  .page-hero {
    padding-block: 49px;
  }
  .page-hero h1 {
    font-size: 43px;
  }
  .page-hero .lede {
    font-size: 16px;
  }
  .detail-section {
    padding-block: 55px;
  }
  .detail-section h2 {
    font-size: 35px;
  }
  .detail-section .grid-3,
  .detail-section .grid-2 {
    margin-top: 27px;
  }
  .feature-card {
    padding: 25px;
  }
  .feature-card p {
    font-size: 15px;
  }
  .steps {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .step h3 {
    margin-top: 12px;
  }
  .step p {
    font-size: 15px;
  }
  .faq-list summary {
    font-size: 16px;
    line-height: 1.6;
  }
  .faq-list details > p {
    font-size: 15px;
  }
  .report-sheet {
    padding: 26px 22px;
    margin: 28px auto;
  }
  .report-meta {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  .report-section h2 {
    font-size: 28px;
  }
  .report-section p,
  .report-section li {
    font-size: 14px;
  }
  .report-section {
    padding-block: 22px;
  }
  .report-sheet .table-wrap {
    margin-inline: -9px;
    max-width: calc(100% + 18px);
  }
  th,
  td {
    padding: 15px;
  }
  .button-row {
    gap: 12px;
  }
  .button-row .button {
    font-size: 13px;
  }
  .callout {
    padding: 19px;
    font-size: 14px;
  }
  .dialog-top {
    padding: 11px 16px;
  }
  .dialog-top h2 {
    font-size: 14px;
  }
  .image-dialog {
    width: calc(100% - 20px);
  }
  .image-dialog > .caption {
    padding: 15px;
  }
}
@media (max-width: 380px) {
  .container {
    width: calc(100% - 36px);
  }
  .brand {
    font-size: 18px;
  }
  .hero h1 {
    font-size: 42px;
  }
  .hero-actions {
    gap: 10px;
  }
  .hero-actions .button-primary {
    padding-inline: 15px;
    font-size: 11px;
  }
  .hero-actions .button-primary .icon {
    width: 14px;
  }
  .section-heading {
    font-size: 37px;
  }
  .hero-proof > div {
    padding-left: 10px;
  }
  .hero-proof > div strong {
    font-size: 18px;
  }
  .hero-proof > div span {
    font-size: 9px;
  }
  .final-cta h2 {
    font-size: 34px;
  }

  .page-hero h1 {
    font-size: 39px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *:before,
  *:after {
    animation: none !important;
    transition: none !important;
  }
  .button:hover {
    transform: none;
  }
}
@media print {
  .site-header,
  .site-footer,
  .button-row,
  .skip-link,
  .final-cta,
  button,
  [data-print] {
    display: none !important;
  }
  body {
    font-size: 11pt;
    background: white;
    color: #111;
  }
  .container {
    width: 100%;
  }
  .page-hero {
    background: white;
    padding: 0 0 20px;
    border: 0;
  }
  .page-hero h1 {
    font-size: 29pt;
  }
  .page-hero .lede {
    font-size: 11pt;
  }
  .report-sheet {
    border: 0;
    box-shadow: none;
    padding: 0;
    margin: 0;
    max-width: none;
  }
  .report-meta {
    grid-template-columns: repeat(3, 1fr);
  }
  .report-section {
    break-inside: auto;
    padding-block: 15px;
  }
  .report-section h2,
  .report-section h3,
  .report-section .eyebrow {
    break-inside: avoid;
    break-after: avoid;
  }
  .report-sheet tr,
  .report-sheet .callout,
  .report-sheet .grid-2,
  .report-sheet .grid-3 {
    break-inside: avoid;
  }
  .report-next {
    display: none;
  }
  .report-reader,
  .report-notes a {
    display: none;
  }
  .report-notes,
  .report-method-steps li,
  .report-questions details {
    break-inside: avoid;
  }
  .report-questions details > :not(summary) {
    display: block;
  }
  .report-questions details::details-content {
    content-visibility: visible;
  }
  .report-questions summary::after,
  .report-questions details[open] summary::after {
    content: none;
  }
  .report-questions summary {
    padding-block: 12px;
    outline: none;
  }
  .report-sheet .table-wrap {
    outline: none;
  }
  .report-section h2 {
    font-size: 19pt;
  }
  .report-section p,
  .report-section li {
    font-size: 10pt;
  }
  .table-wrap {
    overflow: visible;
  }
  .table-wrap table {
    min-width: 0;
    font-size: 9pt;
  }
  th,
  td {
    padding: 8px;
  }
  .report-section .callout {
    background: white;
    border: 1px solid #aaa;
  }
  .section {
    padding-block: 20px;
  }
  a[href]:after {
    content: none;
  }
  @page {
    margin: 18mm;
  }
}

/* Shared inner-page compositions and final legibility adjustments. */
div.section-heading {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0;
  margin-bottom: 36px;
}
div.section-heading h2 {
  font: 400 clamp(38px, 4.1vw, 56px)/1.12 var(--display);
  letter-spacing: -0.035em;
  max-width: 940px;
}
div.section-heading > p:not(.eyebrow) {
  font: 400 17px/1.7 var(--sans);
  color: var(--muted);
  letter-spacing: 0;
  max-width: 700px;
  margin-top: 23px;
}
div.section-heading .eyebrow {
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.13em;
}
.section-tint {
  background: var(--surface);
}
.process-list {
  list-style: none;
  padding: 0;
  margin: 38px 0 0;
}
.process-step {
  border-top: 1px solid var(--border);
  padding-top: 23px;
}
.process-step h3 {
  font-size: 20px;
  margin: 20px 0 15px;
}
.process-step p {
  font-size: 16px;
}
.scope-list {
  padding-left: 20px;
  margin: 22px 0;
  font-size: 15px;
  color: var(--muted);
}
.scope-list li {
  margin-block: 12px;
}
.scope-grid {
  align-items: start;
}
.evidence-note .text-link {
  font-size: 14px;
}
.detail-section .container.grid-2 {
  margin-top: 0;
}
.pricing-card-heading {
  display: flex;
  align-items: center;
  gap: 12px;
}
.pricing-card-heading h3 {
  margin: 0 !important;
}
.pricing-card-heading > .product-icon {
  color: var(--violet);
}
.pricing-card-heading + p {
  margin-top: 12px;
  min-height: 45px;
}
.pricing-card .plan-scope {
  font-size: 14px;
  color: var(--ink);
  font-weight: 500;
  border-block: 1px solid var(--border);
  padding-block: 17px;
  margin-top: 20px;
  min-height: 80px;
  display: flex;
  align-items: center;
}
.pricing-card .price {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 8px;
  color: var(--ink);
}
.pricing-card .price span {
  font-size: 12px;
  font-weight: 400;
  white-space: nowrap;
}
.pricing-card > .pricing-footnote {
  font-size: 12px;
  margin-top: 12px;
}
.pricing-card .check-list li {
  font-size: 14px;
}
.pricing-card .check-list li:before {
  font-size: 14px;
}
.pricing-card .button {
  font-size: 14px;
}
.pricing-card > p.muted {
  font-size: 14px;
}
.page-hero > .container > .muted {
  font-size: 14px;
  margin-top: 20px;
}
.feature-card p + p {
  margin-top: 15px;
}
.detail-section h4 {
  font-size: 17px;
  margin-bottom: 12px;
}
.detail-section > .muted {
  margin-top: 24px;
}
.detail-section > p + p {
  margin-top: 15px;
}
.report-sheet > header > h2 {
  font: 400 43px/1.15 var(--display);
  letter-spacing: -1px;
  margin-block: 17px;
}
.report-meta {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.report-section .price {
  font-size: 30px;
  color: var(--ink);
  font-variant-numeric: tabular-nums;
}
.report-section .steps {
  list-style: none;
  padding: 0;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.report-section.detail-section {
  border-bottom: 1px solid var(--border);
  padding-block: 35px;
}
.report-section.detail-section:last-child {
  border-bottom: 0;
}
.report-section .grid-3 {
  gap: 12px;
}
.report-section .grid-3 .feature-card {
  padding: 19px;
}
.report-section .grid-3 .eyebrow {
  font-size: 10px;
}
.report-section .report-table th[scope="row"] {
  font-size: 14px;
  color: var(--ink);
  background: #fafbf5;
}
.report-section > p + .table-wrap {
  margin-bottom: 24px;
}
.report-section > p + p {
  margin-top: 16px;
}
.steps {
  list-style: none;
  padding-left: 0;
}
.steps .step {
  margin: 0;
}
.table-wrap + .muted {
  margin-top: 22px;
}
.section > .container > .pricing-footnote {
  margin-top: 25px;
}
.nav-link,
.main-navigation > .nav-link {
  font-size: 14px;
}
.button-small,
.hero-actions .button,
.path-link,
.text-link {
  font-size: 14px;
}
.path-card p,
.evidence-card p {
  font-size: 16px;
}
.check-list li {
  font-size: 14px;
}
.hero-proof > div span,
.hero-proof > div span,
.hero-proof > div > span,
.path-number,
.tiny-label,
.pricing-bottom-note,
.pricing-bottom-note a,
.footer-bottom,
.final-cta p:last-child {
  font-size: 12px;
}

.footer-grid > div > a:not(.brand),
.footer-grid > div > p,
.footer-brand p {
  font-size: 14px;
}
.hero-proof > div {
  padding-left: 32px;
}
.hero-proof > div:first-of-type {
  padding-left: 32px;
}
.hero-proof {
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
}
.hero h1 {
  font-size: clamp(51px, 5.4vw, 74px);
}
@media (max-width: 1100px) {
  .main-navigation {
    gap: 22px;
  }
  .header-inner {
    gap: 26px;
  }
  .nav-link,
  .main-navigation > .nav-link {
    font-size: 13px;
  }
  .hero h1 {
    font-size: 59px;
  }
  .hero-proof > div {
    padding-left: 23px;
  }
  .path-number {
    font-size: 10px;
  }
  .pricing-card .price {
    font-size: 36px;
  }
  .pricing-card .plan-scope {
    min-height: 90px;
  }
}
@media (max-width: 900px) and (min-width: 761px) {
  .main-navigation {
    gap: 14px;
  }
  .header-inner {
    gap: 20px;
  }
  .nav-actions {
    margin-left: 0;
  }
  .main-navigation > .nav-link,
  .products-toggle {
    font-size: 12px;
  }
  .brand {
    font-size: 17px;
  }
  .hero h1 {
    font-size: 48px;
  }
  .hero-actions .button {
    font-size: 13px;
  }
  .path-card p {
    font-size: 14px;
  }

  .hero-proof {
    gap: 14px;
  }
  .hero-proof > div {
    padding-left: 18px;
  }
  .hero-proof > div:first-of-type {
    padding-left: 18px;
  }
  .hero-proof > div span {
    font-size: 11px;
  }
}
@media (max-width: 760px) {
  div.section-heading h2 {
    font-size: 39px;
  }
  div.section-heading > p:not(.eyebrow) {
    font-size: 16px;
  }
  div.section-heading .eyebrow {
    font-size: 11px;
  }
  .hero h1 {
    font-size: clamp(43px, 8.7vw, 68px);
  }
  .nav-link,
  .main-navigation > .nav-link {
    font-size: 15px;
  }
  .hero-actions .button {
    font-size: 13px;
  }
  .path-number {
    font-size: 11px;
  }
  .path-card p {
    font-size: 16px;
  }
  .path-link {
    font-size: 14px;
  }
  .path-card {
    min-height: 330px;
  }
  .hero-proof {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
  }
  .hero-proof > div,
  .hero-proof > div:first-of-type {
    padding-left: 10px;
  }
  .hero-proof > div:first-of-type {
    padding-left: 0;
  }
  .hero-proof > div span {
    font-size: 11px;
  }
  .hero-proof > span {
    margin-top: 8px;
  }

  .report-meta {
    grid-template-columns: 1fr;
  }
  .report-section .steps {
    grid-template-columns: 1fr;
  }
  .report-section .grid-3 .eyebrow {
    font-size: 11px;
  }
  .pricing-card .plan-scope {
    min-height: 0;
  }
  .pricing-card-heading + p {
    min-height: 0;
  }
  .pricing-card .price {
    font-size: 42px;
  }
  .footer-grid > div > a:not(.brand) {
    min-height: 44px;
  }
  .button-small {
    min-height: 44px;
  }
  .report-section .grid-3 {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    font-size: 11px;
  }
  .final-cta p:last-child {
    font-size: 12px;
  }
}
@media (max-width: 380px) {
  .hero h1 {
    font-size: 42px;
  }
  .hero-actions {
    gap: 16px;
  }
  .hero-actions .button {
    font-size: 12px;
  }
  .hero-actions .button-primary {
    padding-inline: 14px;
  }
  .hero-proof > div span {
    font-size: 10px;
  }
}
@media print {
  .report-sheet .text-link {
    display: none;
  }
  .report-sheet > header > h2 {
    font-size: 25pt;
  }
  .report-section .grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }
  .report-section .grid-3 .eyebrow {
    font-size: 8pt;
  }
  .report-section .price {
    font-size: 17pt;
  }
  .report-section.detail-section {
    padding-block: 15px;
  }
  .report-meta {
    grid-template-columns: repeat(2, 1fr);
  }
  .report-section .steps {
    grid-template-columns: repeat(2, 1fr);
  }
  .report-section .feature-card {
    padding: 15px;
  }
  .report-section p,
  .report-section li {
    font-size: 10pt;
  }
}

/* Responsive table treatments. */
.table-scroll-hint {
  display: none;
}
@media (max-width: 900px) {
  .table-scroll-hint {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: 25px;
    color: var(--violet);
    font-size: 12px;
    line-height: 1.6;
    font-family: var(--sans);
    letter-spacing: 0;
  }
  .table-scroll-hint + .table-wrap {
    margin-top: 9px;
  }
  .report-section .table-scroll-hint {
    font-size: 12px;
    color: var(--violet);
    line-height: 1.6;
  }
}
@media (max-width: 760px) {
  .policy-table-wrap {
    overflow: visible;
  }
  .policy-table-wrap .policy-table {
    min-width: 0;
    width: 100%;
  }
  .policy-table thead {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip-path: inset(50%);
    white-space: nowrap;
  }
  .policy-table tbody {
    display: block;
  }
  .policy-table tr {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    border-bottom: 1px solid var(--border);
  }
  .policy-table tr:last-child {
    border-bottom: 0;
  }
  .policy-table th[scope="row"] {
    padding: 17px 19px 3px;
    border: 0;
    background: var(--surface);
    font-size: 15px;
    color: var(--ink);
  }
  .policy-table td {
    padding: 7px 19px 19px;
    border: 0;
    background: var(--surface);
    font-size: 14px;
    line-height: 1.7;
  }
  .policy-table caption {
    display: block;
  }
}
@media print {
  .table-scroll-hint {
    display: none !important;
  }
}
/* Product evidence: one focal image, original pixels available on demand. */
.browser-screen {
  margin: 0;
  min-width: 0;
  background: var(--canvas);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}
.browser-bar {
  display: flex;
  align-items: center;
  gap: 16px;
  min-height: 42px;
  padding: 9px 16px;
  background: #f2f3ef;
  border-bottom: 1px solid var(--border);
  font-size: 12px;
  color: var(--muted);
}
.browser-dots {
  display: flex;
  gap: 5px;
  flex: none;
}
.browser-dots i {
  width: 7px;
  height: 7px;
  border: 1px solid #bcc0b5;
  border-radius: 50%;
}
.browser-title {
  display: flex;
  gap: 9px;
  flex-wrap: wrap;
  line-height: 1.5;
}
.browser-title > span {
  color: #a8aca2;
}
.browser-status {
  margin-left: auto;
  font-size: 11px;
  white-space: nowrap;
}
.screen-image-link {
  display: block;
  color: inherit;
  text-decoration: none;
}
.screen-stage {
  display: block;
  position: relative;
  overflow: hidden;
  aspect-ratio: var(--stage-ratio, 1.17);
  background: #f4f6fa;
}
.screen-stage img {
  display: block;
  width: 100%;
  height: auto;
  transform: translateY(var(--trim, 0));
}
.screen-stage-focused img {
  position: absolute;
  max-width: none;
  width: var(--image-width);
  left: var(--image-left);
  top: var(--image-top);
  transform: none;
}
.screen-image-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 12px 18px;
  font-size: 12px;
  color: var(--muted);
  border-top: 1px solid var(--border);
  min-height: 46px;
}
.screen-image-actions strong {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--violet);
  font-weight: 500;
}
.screen-image-actions .icon {
  width: 15px;
  height: 15px;
}
.screen-image-link:hover .screen-image-actions strong {
  text-decoration: underline;
  text-underline-offset: 4px;
}
.browser-screen figcaption {
  padding: 12px 18px 14px;
  font-size: 12px;
  line-height: 1.6;
  color: var(--muted);
  border-top: 1px solid #eceee6;
}

/* Broad opening; the map, not its surrounding app navigation, carries the story. */
.showcase-hero {
  padding: 64px 0 56px;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
}
.showcase-intro {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 64px;
  align-items: end;
  margin-bottom: 42px;
}
.showcase-intro h1 {
  font: 400 clamp(44px, 5.8vw, 76px)/1.06 var(--display);
  letter-spacing: -2px;
}
.showcase-intro h1 em {
  color: var(--violet);
}
.showcase-intro-copy .hero-description {
  margin: 0;
  font-size: 17px;
  line-height: 1.7;
  max-width: 46ch;
}
.showcase-intro-copy .hero-actions {
  margin-top: 25px;
  gap: 24px;
}
.hero-workspace {
  display: grid;
  gap: 14px;
}
.hero-workspace-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  font-size: 13px;
}
.hero-workspace-top > span {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
}
.hero-workspace-top strong {
  color: var(--ink);
}
.hero-workspace-top .icon {
  color: var(--violet);
  width: 17px;
}
.hero-workspace .browser-screen {
  box-shadow: 0 18px 40px -30px #25322055;
}
.showcase-hero .hero-proof {
  margin-top: 32px;
  padding-top: 28px;
}
.showcase-hero .hero-proof > div span {
  max-width: 24ch;
  font-size: 12px;
}

/* A short guided sample on the home page; the complete tours live on products. */
.home-workspaces {
  background: #fff;
}
.home-product-switcher {
  display: grid;
  gap: 32px;
}
.home-product-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom: 1px solid var(--border);
}
.home-product-tabs button {
  padding: 18px 22px;
  text-align: left;
  background: transparent;
  display: grid;
  gap: 6px;
  border-bottom: 3px solid transparent;
}
.home-product-tabs button span {
  color: var(--muted);
  font-size: 12px;
}
.home-product-tabs button strong {
  font-weight: 500;
  font-size: 16px;
}
.home-product-tabs button[aria-selected="true"] {
  background: var(--violet-light);
  border-color: var(--violet);
}
.home-product-tabs button[aria-selected="true"] span {
  color: var(--violet);
}
.home-workspace-panel {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  column-gap: 42px;
  row-gap: 26px;
  align-items: start;
}
.home-workspace-description {
  display: grid;
  gap: 20px;
  align-self: center;
}
.home-workspace-description h3 {
  font: 400 clamp(28px, 3vw, 38px)/1.15 var(--display);
  letter-spacing: -0.7px;
}
.home-workspace-description .eyebrow {
  margin-bottom: 14px;
  font-size: 11px;
}
.home-workspace-description p:not(.eyebrow) {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 18px;
}
.home-workspace-description .text-link {
  font-size: 14px;
}
.home-capabilities {
  grid-column: 1/-1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  padding-top: 22px;
  border-top: 1px solid var(--border);
}
.home-capabilities > span {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: 13px;
  color: var(--muted);
}
.home-capabilities .icon {
  width: 16px;
  height: 16px;
  margin-top: 3px;
  color: var(--green);
}
.delivery-preview {
  background: #edf1e9;
}
.delivery-screens {
  display: grid;
  gap: 20px;
}
.delivery-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.delivery-tabs button {
  min-height: 44px;
  padding: 9px 18px;
  border: 1px solid #cbd2c4;
  border-radius: 7px;
  background: transparent;
  font-size: 13px;
}
.delivery-tabs button[aria-selected="true"] {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}
.delivery-panel {
  max-width: 100%;
}
.delivery-facts {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  margin-top: 25px;
  font-size: 13px;
  color: var(--muted);
}
.home-pricing {
  background: var(--surface);
  border-top: 1px solid var(--border);
}

/* Product tours: compact navigation keeps attention on the selected chapter. */
.workspace-section {
  padding: 72px 0 80px;
  background: var(--surface);
  border-block: 1px solid var(--border);
}
.workspace-heading {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 70px;
  align-items: end;
  margin-bottom: 42px;
}
.workspace-heading h2 {
  font: 400 clamp(32px, 4vw, 46px)/1.12 var(--display);
  letter-spacing: -1px;
}
.workspace-heading > p {
  max-width: 43ch;
  color: var(--muted);
  line-height: 1.7;
}
.workspace-explorer {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
  gap: 42px;
  align-items: start;
}
.screen-navigation {
  position: sticky;
  top: 112px;
}
.screen-nav-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: var(--muted);
  margin-bottom: 16px;
}
.screen-tabs {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.screen-tabs button {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 46px;
  padding: 11px 12px;
  text-align: left;
  background: transparent;
  color: var(--muted);
  border-radius: 7px;
  font-size: 13px;
  line-height: 1.5;
  border: 1px solid transparent;
}
.screen-tabs button:hover {
  background: #eeefe9;
}
.screen-tabs button[aria-selected="true"] {
  color: var(--violet);
  border-color: #d8d1e9;
  background: var(--violet-light);
  font-weight: 600;
}
.screen-tab-number {
  font-size: 11px;
  font-variant-numeric: tabular-nums;
  color: inherit;
}
.screen-nav-footnote {
  font-size: 12px;
  line-height: 1.6;
  color: var(--muted);
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}
.screen-panels {
  min-width: 0;
}
.screen-panel {
  min-width: 0;
}
.workspace-explorer .screen-panel {
  display: grid;
  gap: 24px;
}
.screen-story .eyebrow {
  font-size: 11px;
  margin-bottom: 12px;
}
.screen-story h3 {
  font: 400 clamp(28px, 3vw, 36px)/1.15 var(--display);
  letter-spacing: -0.7px;
  max-width: 30ch;
}
.screen-story > p:last-child {
  color: var(--muted);
  max-width: 68ch;
  line-height: 1.7;
  margin-top: 16px;
  font-size: 16px;
}
.screen-takeaways {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.screen-takeaways li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 13px;
  line-height: 1.6;
  color: var(--muted);
}
.screen-takeaways .icon {
  width: 16px;
  height: 16px;
  margin-top: 3px;
  color: var(--green);
}
.workspace-scope-note {
  display: flex;
  gap: 10px;
  padding-top: 28px;
  margin-top: 28px;
  border-top: 1px solid var(--border);
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}
.workspace-scope-note .icon {
  color: var(--green);
  flex: none;
  width: 18px;
}

/* Product introductions and a single relevant closing offer. */
.product-intro {
  padding: 56px 0 32px;
}
.breadcrumb {
  color: var(--muted);
  font-size: 12px;
  margin-bottom: 26px;
}
.product-intro-grid {
  display: grid;
  grid-template-columns: 1.45fr 0.7fr;
  gap: 72px;
  align-items: start;
}
.product-intro-grid h1 {
  font: 400 clamp(38px, 4.5vw, 60px)/1.08 var(--display);
  letter-spacing: -1.4px;
  max-width: 22ch;
}
.product-intro-grid .eyebrow {
  font-size: 11px;
  margin-bottom: 20px;
  gap: 9px;
  flex-wrap: wrap;
}
.product-intro-grid .product-icon {
  width: 22px;
  height: 22px;
}
.intro-audience {
  color: var(--muted);
  font-size: 10px;
  letter-spacing: 0.06em;
}
.product-intro-grid .lede {
  margin-top: 22px;
  max-width: 62ch;
  font-size: 17px;
}
.product-delivery-note {
  margin-top: 18px;
  max-width: 64ch;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}
.product-preparation .section-heading {
  max-width: 20ch;
}
.preparation-group {
  border-top: 1px solid var(--border);
  padding-top: 24px;
}
.preparation-group h3 {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 16px;
}
.preparation-group ul {
  padding-left: 18px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
}
.preparation-group li + li {
  margin-top: 10px;
}
.preparation-note {
  max-width: 92ch;
  margin-top: 28px;
  font-size: 14px;
  line-height: 1.75;
  color: var(--muted);
}
.product-questions {
  display: grid;
  grid-template-columns: 0.8fr 1.4fr;
  gap: 64px;
}
.product-faq {
  border-block: 1px solid var(--border);
  background: var(--surface);
}
.product-questions h2 {
  font: 400 32px/1.2 var(--display);
  letter-spacing: -0.025em;
}
.product-questions .faq-list {
  margin-top: 0;
  max-width: none;
}
.catalogue-sources {
  margin-top: 40px;
}
.catalogue-sources h3 {
  margin-bottom: 24px;
}
.catalogue-sources dt {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 10px;
}
.catalogue-sources dd {
  margin: 0;
  font-size: 15px;
  color: var(--muted);
  line-height: 1.75;
}
.catalogue-source-section .catalogue-sources {
  margin-top: 0;
}
.field-verification-grid {
  align-items: start;
}
.field-verification .callout,
.pricing-readiness .callout {
  margin-top: 0;
}
.field-verification h2,
.pricing-boundaries h2 {
  max-width: 24ch;
}
.field-verification {
  background: var(--surface);
  border-block: 1px solid var(--border);
}
.evidence-source-tiers,
.pricing-boundaries {
  background: var(--surface);
}
.product-intro-aside {
  padding: 26px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--surface);
}
.intro-scope {
  font-size: 15px;
  font-weight: 500;
  margin-top: 9px;
}
.intro-price {
  font-size: 26px;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.5px;
  margin: 17px 0 20px;
}
.intro-price > span {
  display: block;
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0;
  margin-top: 3px;
}
.product-intro-aside .button {
  width: 100%;
}
.product-intro-aside .text-link {
  font-size: 13px;
  margin-top: 18px;
}
.product-section-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  padding-top: 22px;
  margin-top: 34px;
  border-top: 1px solid var(--border);
}
.product-section-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  gap: 8px;
  font-size: 13px;
}
.product-section-nav a span {
  color: var(--muted);
  font-size: 11px;
}
.product-section-nav a:hover {
  color: var(--violet);
}
.brand-catalogue {
  border-block: 1px solid var(--border);
  background: var(--surface);
}
.brand-catalogue .browser-screen {
  max-width: 1000px;
  margin: auto;
}
.brand-context-note {
  margin-top: 22px;
  color: var(--muted);
  font-size: 14px;
  max-width: 75ch;
}
.brand-benefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
}
.brand-benefits h3 {
  font-size: 18px;
  margin-bottom: 12px;
}
.brand-benefits p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
}
.decision-pack {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.decision-pack h2 {
  font: 400 clamp(32px, 3.5vw, 44px)/1.12 var(--display);
  letter-spacing: -0.8px;
}
.decision-pack .lede {
  margin: 20px 0;
}
.decision-pack .button-row {
  margin-top: 25px;
}
.decision-pack .price {
  font-size: 36px;
}
.decision-pack .price > span {
  font-size: 12px;
  color: var(--muted);
}
.pack-inclusions {
  padding: 30px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
}
.pack-inclusions h3 {
  font-size: 16px;
  margin-bottom: 22px;
}
.pack-inclusions .pricing-footnote {
  margin-top: 24px;
}
.product-alternatives {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px;
  border-top: 1px solid var(--border);
  margin-top: 40px;
  padding-top: 24px;
  color: var(--muted);
  font-size: 14px;
}

/* Native viewer: controls remain visible while the image scrolls. */
.image-dialog {
  width: calc(100vw - 48px);
  max-width: 1600px;
  height: calc(100dvh - 48px);
  max-height: none;
  overflow: hidden;
}
.image-dialog[open] {
  display: flex;
  flex-direction: column;
}
.dialog-top {
  flex: none;
  padding: 12px 20px;
  position: static;
}
.dialog-top h2 {
  font-size: 15px;
}
.dialog-close {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  padding: 8px 14px;
  border: 1px solid var(--border);
  border-radius: 7px;
  background: var(--surface);
  font-size: 13px;
}
.image-dialog-controls {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  padding: 10px 20px;
  flex: none;
}
.image-size-controls {
  display: flex;
  padding: 3px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
}
.image-size-controls button {
  min-height: 44px;
  padding: 8px 14px;
  background: transparent;
  border-radius: 5px;
  font-size: 13px;
}
.image-size-controls button[aria-pressed="true"] {
  color: #fff;
  background: var(--ink);
}
.image-dialog-controls > a {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--violet);
  min-height: 44px;
}
.image-dialog-controls > a:hover {
  text-decoration: underline;
}
.image-dialog-hint {
  margin-left: auto;
  font-size: 12px;
  color: var(--muted);
}
.image-dialog-stage {
  flex: 1;
  min-height: 0;
  overflow: auto;
  overscroll-behavior: contain;
  background: #edf0e9;
  padding: 16px;
}
.image-dialog-stage img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  margin: 0;
}
.image-dialog.is-zoomed .image-dialog-stage img {
  width: auto;
  height: auto;
  max-width: none;
  max-height: none;
}
.image-dialog-stage:focus-visible {
  outline-offset: -4px;
}
.image-dialog > .caption {
  flex: none;
  padding: 12px 20px;
  border-top: 1px solid var(--border);
  font-size: 12px;
  line-height: 1.5;
  margin: 0;
}
.pricing-card-featured {
  border-color: #c8bddf;
}
.pricing-card-featured .pricing-card-heading {
  color: var(--violet);
}

/* A quiet reference layer. Consequential facts remain available at a readable
   measure; native disclosures work with keyboard input and without JavaScript. */
.guide-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
  gap: 72px;
  align-items: start;
}
.guide-intro > p:not(.eyebrow) {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
  max-width: 38ch;
  margin-top: 24px;
}
.guide-intro .section-heading {
  font-size: clamp(36px, 3.4vw, 46px);
}
.reference-details {
  min-width: 0;
}
.reference-details details,
details.reference-details {
  border-top: 1px solid var(--border);
}
.reference-details > details:last-child,
.reference-questions > details:last-child {
  border-bottom: 1px solid var(--border);
}
.reference-details summary {
  position: relative;
  padding: 23px 34px 23px 0;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.5;
  list-style: none;
  cursor: pointer;
}
.reference-details summary::-webkit-details-marker {
  display: none;
}
.reference-details summary::after {
  content: "+";
  position: absolute;
  right: 4px;
  top: 22px;
  font-size: 21px;
  font-weight: 400;
  color: var(--muted);
}
.reference-details details[open] > summary::after,
details.reference-details[open] > summary::after {
  content: "−";
}
.reference-details summary > span {
  display: block;
  margin-top: 5px;
  font-size: 13px;
  font-weight: 400;
  color: var(--muted);
}
.reference-details summary:hover {
  color: var(--violet);
}
.disclosure-body {
  padding-bottom: 28px;
  font-size: 16px;
  line-height: 1.75;
  color: var(--muted);
}
.disclosure-body > p,
.disclosure-body > ul,
.disclosure-body dd {
  max-width: 72ch;
}
.disclosure-body > p + p,
.disclosure-body > p + .table-wrap {
  margin-top: 20px;
}
.disclosure-body h3,
.disclosure-body h4 {
  color: var(--ink);
  font-size: 18px;
  font-weight: 500;
  margin: 24px 0 12px;
}
.disclosure-body > h3:first-child {
  margin-top: 0;
}
.disclosure-body .preparation-groups {
  display: grid;
  gap: 20px;
  margin-top: 24px;
}
.disclosure-body .preparation-group {
  padding-top: 0;
  border: 0;
}
.disclosure-body .preparation-group h3 {
  margin-top: 0;
}
.disclosure-body .preparation-group ul {
  margin: 0;
}
.disclosure-body .text-link {
  margin-top: 12px;
}
.disclosure-body .section-heading,
.disclosure-body .section-top {
  margin-bottom: 24px;
}
.disclosure-body .report-table {
  font-size: 15px;
}
.disclosure-body .feature-card {
  background: transparent;
}
.product-guide,
.evidence-reference {
  border-top: 1px solid var(--border);
}
.pricing-card-compact .plan-scope {
  min-height: 56px;
}
.pricing-card-compact .check-list {
  flex: 1;
}
.report-reader-compact {
  display: block;
  padding-block: 24px;
}
.report-reader-compact .report-contents {
  margin: 0 0 16px;
  padding-block: 12px;
}
.report-reader-compact .reference-details summary {
  font-size: 15px;
  padding-block: 16px;
}
.report-reader-compact .reference-details summary::after {
  top: 14px;
}
.report-reader-compact .report-reading-steps {
  margin-top: 12px;
}
.report-context-note {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
  max-width: 80ch;
  margin-top: 18px;
}
.report-sheet details.reference-details > summary {
  font: 400 28px/1.3 var(--display);
  letter-spacing: -0.025em;
  padding-block: 28px;
}
.report-sheet details.reference-details > .disclosure-body {
  color: var(--ink);
}
.report-sheet > header > details.reference-details > summary {
  font-family: inherit;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: normal;
  padding-block: 18px;
}
.report-sheet > header > details.reference-details > summary::after {
  top: 16px;
}
.report-section > p,
.report-section > ol,
.report-section > ul,
.report-notes > p {
  max-width: 76ch;
}
.report-section > p,
.report-section > ol > li,
.report-section > ul > li {
  font-size: 16px;
}
.report-sheet details.reference-details .report-section {
  padding-top: 0;
  border-bottom: 0;
}
.method-reference .evidence-source-tiers {
  background: transparent;
}
.method-integrity p,
.field-verification p {
  max-width: 76ch;
}
.pricing-reference .disclosure-body .grid-2 {
  grid-template-columns: 1fr;
  gap: 20px;
}
.pricing-reference .disclosure-body .feature-card {
  border: 0;
  padding: 0;
}
.pricing-reference .disclosure-body .feature-card h3 {
  margin-top: 0;
}
.delivery-summary {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
  margin: 0;
}
.delivery-summary dt {
  font-size: 20px;
  color: var(--ink);
  margin-bottom: 12px;
}
.delivery-summary dd {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}
.policy-definitions {
  margin: 0;
}
.policy-definitions > div {
  padding-block: 18px;
  border-top: 1px solid var(--border);
}
.policy-definitions dt {
  color: var(--ink);
  font-weight: 500;
  margin-bottom: 8px;
}
.policy-definitions dd {
  margin: 0;
}
@media (max-width: 760px) {
  .guide-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .guide-intro .section-heading {
    font-size: 36px;
  }
  .guide-intro > p:not(.eyebrow) {
    margin-top: 18px;
  }
  .reference-details summary {
    font-size: 16px;
    padding-block: 20px;
  }
  .disclosure-body {
    font-size: 16px;
  }
  .delivery-summary {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .report-sheet details.reference-details > summary {
    font-size: 25px;
  }
}
@media print {
  .report-reader-compact {
    display: none;
  }
  .reference-details summary::after {
    display: none;
  }
  .reference-details details::details-content,
  details.reference-details::details-content {
    content-visibility: visible;
  }
  .reference-details .disclosure-body {
    display: block;
  }
  .reference-details details,
  details.reference-details {
    break-inside: auto;
  }
  .report-section > p,
  .report-section > ol > li,
  .report-section > ul > li {
    font-size: 10pt;
  }
  .report-sheet details.reference-details > summary {
    font-size: 19pt;
    padding-block: 14px;
    break-after: avoid;
  }
  .report-sheet .disclosure-body {
    padding-bottom: 12px;
  }
  .report-sheet .report-meta {
    margin-block: 12px;
    padding-block: 12px;
  }
}

/* Keep the editorial grid on laptops; large product evidence may continue
   below the fold. Its source dimensions, not viewport height, set its scale. */
@media (min-width: 1000px) {
  .showcase-intro h1 {
    font-size: clamp(54px, 5vw, 72px);
  }
  .workspace-explorer {
    grid-template-columns: 172px minmax(0, 1fr);
    gap: 36px;
  }
  .home-workspace-panel {
    grid-template-columns: minmax(0, 0.65fr) minmax(0, 1.35fr);
  }
  .section > .container > div.section-heading:has(> p:not(.eyebrow)) {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 365px);
    column-gap: 48px;
    align-items: end;
  }
  .section > .container > div.section-heading > .eyebrow {
    grid-column: 1 / -1;
  }
  .section > .container > div.section-heading > p:not(.eyebrow) {
    margin-top: 0;
  }
  .faq-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.4fr);
    gap: 64px;
    align-items: start;
  }
  .faq-layout .faq-list {
    margin-top: 0;
  }
}
@media (min-width: 1000px) and (max-height: 900px) {
  :root {
    --section-space: 64px;
  }
  .section-top {
    margin-bottom: 32px;
  }
  .section-heading,
  div.section-heading h2 {
    font-size: 44px;
  }
  .eyebrow {
    margin-bottom: 16px;
  }
  .section-intro {
    font-size: 16px;
  }
  .showcase-hero {
    padding: 48px 0;
  }
  .showcase-hero .hero-proof {
    margin-top: 20px;
    padding-top: 20px;
    padding-bottom: 0;
  }
  .page-hero {
    padding-block: 48px;
  }
  .page-hero h1 {
    font-size: 56px;
  }
  .product-intro {
    padding-block: 32px 24px;
  }
  .product-intro-grid h1 {
    font-size: 52px;
  }
  .product-section-nav {
    padding-top: 14px;
    margin-top: 24px;
  }
  .workspace-section {
    padding: 56px 0;
  }
  .workspace-scope-note {
    margin-top: 20px;
    padding-top: 16px;
  }
  .product-preparation .section-heading {
    max-width: 22ch;
  }
  .preparation-group {
    padding-top: 18px;
  }
  .preparation-group ul {
    margin-bottom: 0;
  }
  .product-questions .eyebrow {
    margin-bottom: 14px;
  }
  .home-product-switcher {
    gap: 20px;
  }
  .home-product-tabs button {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    padding: 10px 16px;
    gap: 6px 16px;
  }
  .home-workspace-panel {
    grid-template-columns: minmax(0, 0.65fr) minmax(0, 1.35fr);
    row-gap: 24px;
  }
  .home-workspace-description h3 {
    font-size: 30px;
  }
  .home-workspace-description {
    gap: 16px;
  }
  .home-workspace-description p:not(.eyebrow) {
    margin-bottom: 0;
  }
  .home-workspace-description .text-link {
    margin-top: 16px;
  }
  .home-workspaces,
  .method-examples {
    padding-block: 64px;
  }
  .method-examples > .container > .button-row {
    margin-top: 20px;
  }
  .home-capabilities {
    grid-template-columns: 1fr;
    gap: 12px;
    padding-top: 16px;
  }
  .delivery-preview > .container {
    display: grid;
    grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
    gap: 28px 48px;
    align-items: center;
  }
  .delivery-preview .section-top {
    display: block;
    margin-bottom: 0;
  }
  .delivery-preview .section-intro {
    margin-top: 22px;
  }
  .delivery-facts {
    grid-column: 1 / -1;
    margin-top: 0;
    padding-top: 20px;
    border-top: 1px solid #d5ddcd;
  }
  .pricing-card {
    padding: 24px;
  }
  .pricing-card-heading + p {
    min-height: 24px;
  }
  .pricing-card .price {
    margin-top: 18px;
    font-size: 36px;
  }
  .pricing-card .plan-scope {
    min-height: 64px;
    margin-top: 16px;
    padding-block: 12px;
  }
  .pricing-card .check-list {
    margin-block: 18px 22px;
  }
  .pricing-card .check-list li {
    margin-block: 9px;
  }
  .detail-section:not(.section):not(.report-section) {
    padding-block: 32px;
  }
  .faq-list summary {
    padding-block: 15px;
  }
}

@media (max-width: 1100px) {
  .showcase-intro {
    gap: 36px;
  }
  .showcase-intro h1 {
    font-size: 58px;
  }
  .showcase-intro-copy .hero-actions {
    flex-wrap: wrap;
    gap: 12px;
  }
  .workspace-explorer {
    grid-template-columns: 160px minmax(0, 1fr);
    gap: 26px;
  }
  .home-workspace-panel {
    grid-template-columns: 0.85fr 1.15fr;
    gap: 28px;
  }
  .product-intro-grid {
    gap: 36px;
  }
  .intro-audience {
    display: block;
    width: 100%;
  }
  .decision-pack {
    gap: 36px;
  }
}
@media (max-width: 760px) {
  .showcase-hero {
    padding: 40px 0;
  }
  .showcase-intro {
    grid-template-columns: 1fr;
    gap: 26px;
    margin-bottom: 32px;
  }
  .showcase-intro h1 {
    font-size: clamp(40px, 10.6vw, 66px);
    letter-spacing: -1.5px;
  }
  .showcase-intro .eyebrow {
    font-size: 10px;
    margin-bottom: 20px;
  }
  .showcase-intro-copy .hero-description {
    font-size: 16px;
    max-width: 46ch;
  }
  .showcase-intro-copy .hero-actions {
    margin-top: 22px;
    gap: 16px;
  }
  .hero-workspace-top {
    font-size: 12px;
    gap: 10px;
    align-items: center;
  }
  .hero-workspace-top > span {
    flex-wrap: wrap;
    gap: 5px;
  }
  .hero-workspace-top > span > span {
    display: none;
  }
  .hero-workspace-top .text-link {
    font-size: 12px;
    white-space: nowrap;
  }
  .browser-bar {
    padding: 9px 12px;
    min-height: 38px;
    gap: 10px;
    font-size: 11px;
  }
  .browser-status {
    display: none;
  }
  .browser-screen {
    border-radius: 9px;
  }
  .screen-image-actions {
    padding: 10px 12px;
    gap: 8px;
    font-size: 11px;
  }
  .screen-image-actions > span {
    max-width: 45%;
  }
  .screen-image-actions strong {
    font-size: 11px;
  }
  .browser-screen figcaption {
    padding: 11px 13px;
    font-size: 11px;
    line-height: 1.6;
  }
  .home-product-tabs button {
    padding: 14px 13px;
  }
  .home-product-tabs button strong {
    font-size: 14px;
  }
  .home-product-tabs button span {
    font-size: 11px;
  }
  .home-workspace-panel {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .home-workspace-description {
    gap: 16px;
  }
  .home-workspace-description h3 {
    font-size: 30px;
    max-width: 24ch;
  }
  .home-workspace-description p:not(.eyebrow) {
    font-size: 15px;
  }
  .home-capabilities {
    grid-template-columns: 1fr;
    gap: 13px;
  }
  .delivery-facts {
    display: grid;
    gap: 10px;
    font-size: 12px;
  }
  .delivery-tabs {
    gap: 8px;
  }
  .delivery-tabs button {
    padding: 9px 12px;
    font-size: 12px;
  }
  .workspace-section {
    padding: 48px 0 56px;
  }
  .workspace-heading {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 28px;
  }
  .workspace-heading h2 {
    font-size: 34px;
  }
  .workspace-heading > p {
    font-size: 15px;
  }
  .workspace-explorer {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .screen-navigation {
    position: static;
  }
  .screen-tabs {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 6px;
  }
  .screen-tabs button {
    font-size: 12px;
    min-height: 44px;
    padding: 9px;
    border-color: var(--border);
    background: #fff;
  }
  .screen-nav-footnote {
    display: none;
  }
  .screen-nav-label {
    margin-bottom: 12px;
  }
  .screen-story h3 {
    font-size: 29px;
  }
  .screen-story > p:last-child {
    font-size: 15px;
  }
  .screen-takeaways {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .product-intro {
    padding: 32px 0 24px;
  }
  .breadcrumb {
    margin-bottom: 20px;
  }
  .product-intro-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .product-intro-grid h1 {
    font-size: 40px;
  }
  .product-intro-grid .lede {
    font-size: 16px;
    margin-top: 18px;
  }
  .product-questions {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .product-intro-grid .eyebrow {
    margin-bottom: 17px;
  }
  .intro-audience {
    display: none;
  }
  .product-intro-aside {
    padding: 20px;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 12px 20px;
  }
  .product-intro-aside .tiny-label {
    display: none;
  }
  .intro-scope {
    margin: 0;
    font-size: 13px;
  }
  .intro-price {
    font-size: 23px;
    margin: 0;
    text-align: right;
  }
  .intro-price > span {
    max-width: 17ch;
    font-size: 10px;
  }
  .product-intro-aside .button {
    min-height: 44px;
    font-size: 13px;
    padding-inline: 14px;
  }
  .product-intro-aside .text-link {
    margin: 0;
    font-size: 12px;
  }
  .product-section-nav {
    gap: 10px 22px;
    margin-top: 22px;
    padding-top: 14px;
  }
  .product-section-nav a {
    font-size: 12px;
  }
  .product-section-nav a span {
    display: none;
  }
  .decision-pack {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .pack-inclusions {
    padding: 24px;
  }
  .product-alternatives {
    gap: 14px 25px;
  }
  .product-alternatives > span {
    width: 100%;
  }
  .brand-benefits {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 32px;
  }
  .image-dialog {
    width: calc(100vw - 16px);
    height: calc(100dvh - 16px);
    border-radius: 9px;
  }
  .dialog-top {
    padding: 9px 12px;
    gap: 12px;
  }
  .dialog-top h2 {
    font-size: 13px;
    line-height: 1.5;
  }
  .dialog-close {
    padding: 8px 10px;
    font-size: 12px;
  }
  .dialog-close .icon {
    width: 17px;
  }
  .image-dialog-controls {
    gap: 6px 12px;
    padding: 8px 12px;
  }
  .image-dialog-hint {
    width: 100%;
    margin: 0;
    font-size: 11px;
  }
  .image-size-controls button {
    padding: 8px 11px;
    font-size: 12px;
  }
  .image-dialog-controls > a {
    font-size: 12px;
  }
  .image-dialog-stage {
    padding: 8px;
  }
  .image-dialog > .caption {
    font-size: 11px;
    padding: 10px 12px;
  }
}
@media (max-width: 360px) {
  .showcase-intro h1 {
    font-size: 36px;
  }
  .product-intro-grid h1 {
    font-size: 35px;
  }
  .product-intro-aside {
    gap: 12px;
    padding: 16px;
  }
  .screen-tabs button {
    gap: 7px;
    font-size: 11px;
  }
  .screen-image-actions {
    align-items: flex-start;
  }
  .screen-image-actions strong {
    gap: 5px;
  }
}
@media print {
  .screen-navigation,
  .product-section-nav {
    display: none;
  }
  .workspace-explorer {
    display: block;
  }
}

/* Methodology uses the same evidence component, with space before next actions. */
.method-examples {
  border-top: 1px solid var(--border);
  background: var(--surface);
}
.method-examples .button-row {
  margin-top: 36px;
}
