:root {
  color-scheme: light;
  --paper: #f7f5ef;
  --paper-subtle: #efece2;
  --paper-deep: #e6e2d4;
  --surface: #ffffff;
  --surface-tint: #fcfbfa;
  --ink: #141712;
  --ink-soft: #30342b;
  --muted: #62675b;
  --line: #dad5c7;
  --line-light: #eae6db;
  --signal: #cb3d24;
  --signal-dark: #a62e19;
  --signal-subtle: #fbeee9;
  --amber: #cb8e18;
  --green: #257a5e;
  --grey: #808579;
  --white: #ffffff;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --shadow-subtle: 0 4px 20px rgba(20, 23, 18, 0.04);
  --shadow-card: 0 12px 36px rgba(20, 23, 18, 0.06);
  --page: min(1180px, calc(100vw - 40px));
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  hyphens: none;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
}

svg {
  display: block;
}

p,
h1,
h2,
h3,
ul,
ol {
  margin-top: 0;
}

p:last-child,
ul:last-child {
  margin-bottom: 0;
}

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

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  transform: translateY(-160%);
  padding: 10px 16px;
  border-radius: var(--radius-sm);
  background: var(--ink);
  color: var(--white);
  font-size: 0.875rem;
  font-weight: 700;
  text-decoration: none;
}

.skip-link:focus {
  transform: translateY(0);
}

:focus-visible {
  outline: 2px solid var(--signal);
  outline-offset: 3px;
}

/* ==========================================================================
   Preview Band / Market Switcher
   ========================================================================== */
.preview-band {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 8px 24px;
  padding: 9px 16px;
  background: var(--ink);
  color: #c5c9be;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.preview-band nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.preview-band .offer-links {
  padding-left: 24px;
  border-left: 1px solid rgba(255, 255, 255, 0.16);
}

.preview-band a {
  color: #c5c9be;
  text-decoration: none;
  transition: color 150ms ease;
}

.preview-band a:hover,
.preview-band a:focus-visible {
  color: var(--white);
}

.preview-band a[aria-current="page"] {
  color: var(--white);
  text-decoration: underline;
  text-decoration-color: var(--signal);
  text-underline-offset: 4px;
}

@media (max-width: 600px) {
  .preview-band {
    gap: 8px;
    padding-inline: 12px;
  }

  .preview-band .market-links,
  .preview-band .offer-links {
    width: 100%;
  }

  .preview-band .offer-links {
    padding-top: 8px;
    padding-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    border-left: 0;
  }
}

/* ==========================================================================
   Header & Navigation
   ========================================================================== */
.site-header {
  width: var(--page);
  margin: 0 auto;
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-bottom: 1px solid var(--line);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  text-decoration: none;
}

.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 26px;
}

.brand-mark svg {
  width: 100%;
  height: auto;
  fill: none;
  stroke: var(--signal);
  stroke-linecap: square;
  stroke-linejoin: miter;
  stroke-width: 2.4;
}

.site-header nav {
  display: none;
  gap: 28px;
  margin-left: auto;
}

.site-header nav a,
footer nav a {
  color: var(--muted);
  font-size: 0.9375rem;
  font-weight: 600;
  text-decoration: none;
  transition: color 150ms ease;
}

.site-header nav a:hover,
footer nav a:hover {
  color: var(--ink);
}

/* ==========================================================================
   Buttons & Links
   ========================================================================== */
.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border: 1px solid var(--signal);
  border-radius: 999px;
  background: var(--signal);
  color: var(--white);
  font-size: 0.9375rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  text-decoration: none;
  transition: background-color 150ms ease, border-color 150ms ease, transform 150ms ease;
}

.button:hover {
  border-color: var(--signal-dark);
  background: var(--signal-dark);
  transform: translateY(-1px);
}

.button-small {
  display: none;
  min-height: 44px;
  padding-inline: 18px;
  font-size: 0.875rem;
}

.button-full {
  width: 100%;
}

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

.button-light:hover {
  border-color: var(--paper-deep);
  background: var(--paper-deep);
  color: var(--ink);
}

.text-link {
  color: var(--ink);
  font-weight: 700;
  text-underline-offset: 4px;
  text-decoration-thickness: 1px;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero {
  width: var(--page);
  margin: 0 auto;
  padding: 44px 0 48px;
  border-top: none;
  display: grid;
  gap: 40px;
}

.eyebrow,
.section-kicker {
  margin-bottom: 16px;
  color: var(--signal);
  font-size: 0.875rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 800px;
  margin-bottom: 20px;
  font-size: clamp(2.35rem, 4.8vw, 3.85rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.06;
  text-wrap: balance;
}

.hero-lede {
  max-width: 660px;
  margin-bottom: 28px;
  color: var(--ink-soft);
  font-size: clamp(1.05rem, 1.8vw, 1.25rem);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}

.hero-visual,
.comparison-board {
  align-self: center;
  padding: 28px;
  border-radius: var(--radius-lg);
  background: var(--ink);
  color: var(--white);
  box-shadow: var(--shadow-card);
}

.visual-head {
  display: flex;
  justify-content: space-between;
  color: #9da296;
  font-size: 0.875rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.signal-plot {
  width: 100%;
  margin: 20px 0 12px;
}

.plot-grid {
  stroke: #2e3328;
  stroke-dasharray: 2 10;
  stroke-width: 1;
}

.plot-baseline {
  fill: none;
  stroke: #5d6356;
  stroke-dasharray: 6 8;
  stroke-width: 1.4;
}

.plot-signal {
  fill: none;
  stroke: #f3efe2;
  stroke-linecap: square;
  stroke-linejoin: miter;
  stroke-width: 3;
}

.plot-dot {
  stroke: var(--ink);
  stroke-width: 3;
}

.plot-dot-red {
  fill: var(--signal);
}

.plot-dot-amber {
  fill: var(--amber);
}

.plot-dot-green {
  fill: var(--green);
}

.visual-caption {
  display: grid;
  gap: 6px;
  padding-top: 16px;
  border-top: 1px solid #2e3328;
}

.visual-caption p {
  margin: 0;
  color: #e4e1d7;
  font-size: 0.9375rem;
}

.visual-caption span {
  color: #8c9184;
  font-size: 0.875rem;
  letter-spacing: 0.04em;
}

.offer-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin: 36px 0 0;
  padding: 20px 0 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.offer-strip li {
  min-width: 0;
  padding: 0 16px;
  border-left: 1px solid var(--line);
}

.offer-strip li:first-child {
  padding-left: 0;
  border-left: 0;
}

.offer-strip strong {
  display: block;
  margin-bottom: 2px;
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-weight: 800;
  line-height: 1;
}

.offer-strip span {
  display: block;
  color: var(--muted);
  font-size: 0.875rem;
  line-height: 1.35;
}

/* ==========================================================================
   Section Layout & Headings
   ========================================================================== */
.section {
  width: var(--page);
  margin: 0 auto;
  padding: 48px 0;
  border-top: 1px solid var(--line);
}

.section-heading {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 820px;
  margin-bottom: 36px;
}

.section-heading h2,
.case-intro h2,
.faq-layout > h2,
.boundary-grid h2,
.final-cta h2 {
  margin-bottom: 0;
  max-width: 780px;
  font-size: clamp(1.65rem, 5.5vw, 2.35rem);
  font-weight: 750;
  letter-spacing: -0.03em;
  line-height: 1.15;
  text-wrap: balance;
  overflow-wrap: break-word;
}

.section-heading > p {
  max-width: 660px;
  margin: 0;
  color: var(--muted);
  font-size: 1.0625rem;
  line-height: 1.55;
}

/* ==========================================================================
   Cards (Problem, Fit, Roles)
   ========================================================================== */
.three-cards {
  display: grid;
  gap: 16px;
}

.plain-card {
  padding: 28px;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface);
  box-shadow: var(--shadow-subtle);
}

.compact-card {
  padding: 24px 28px;
}

.card-index {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--signal);
  font-size: 0.875rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.plain-card h3,
.finding-card h3,
.deliverable-list h3,
.steps h3 {
  margin-bottom: 8px;
  font-size: 1.1875rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.3;
}

.plain-card p,
.finding-card p,
.deliverable-list p,
.steps p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9375rem;
  line-height: 1.55;
}

.role-grid {
  display: grid;
  gap: 16px;
}

.role-card {
  padding: 28px;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface);
  box-shadow: var(--shadow-subtle);
}

.role-card .card-index {
  margin-bottom: 12px;
}

.role-card h3 {
  margin-bottom: 8px;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.3;
}

.role-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9375rem;
  line-height: 1.55;
}

/* ==========================================================================
   Case / Musterfall Section (Cohesive Editorial Box)
   ========================================================================== */
.case-intro {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 820px;
  margin-bottom: 32px;
}

.case-disclosure {
  display: inline-flex;
  flex-direction: column;
  gap: 4px;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  background: var(--paper-subtle);
  border-left: 3px solid var(--signal);
  max-width: 660px;
}

.case-disclosure strong {
  font-size: 0.875rem;
  font-weight: 750;
  color: var(--ink);
}

.case-disclosure p {
  margin: 0;
  color: var(--muted);
  font-size: 0.875rem;
  line-height: 1.45;
}

.result-shell {
  padding: 20px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow-card);
}

.result-summary {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line-light);
}

.result-summary > div {
  min-width: 0;
}

.result-summary-standalone {
  padding: 24px 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow-subtle);
}

.metric {
  display: block;
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: 1;
}

.metric-red {
  color: var(--signal);
}

.metric-label {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.3;
  overflow-wrap: break-word;
}

.question-register {
  margin: 0;
  padding: 8px 0 0;
  list-style: none;
}

.question-register li {
  padding: 16px 0;
  display: grid;
  grid-template-columns: 32px minmax(0, 1fr);
  gap: 12px;
  border-bottom: 1px solid var(--line-light);
}

.question-register li:last-child {
  border-bottom: 0;
}

.question-register li > span {
  color: var(--signal);
  font-size: 0.875rem;
  font-weight: 800;
}

.question-register p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9375rem;
  line-height: 1.5;
}

.question-register strong {
  color: var(--ink);
}

.review-note {
  margin: 18px 0 0;
  padding-top: 14px;
  border-top: 1px solid var(--line-light);
  color: var(--muted);
  font-size: 0.875rem;
  line-height: 1.5;
}

.finding-grid {
  display: grid;
  gap: 16px;
  margin-top: 20px;
}

.finding-card {
  padding: 24px 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface);
  box-shadow: var(--shadow-subtle);
}

.finding-status {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--signal);
  font-size: 0.875rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.source-bar {
  margin-top: 20px;
  padding: 20px 24px;
  display: grid;
  gap: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--paper-subtle);
}

.source-bar strong {
  display: block;
  margin-bottom: 2px;
  font-size: 0.9375rem;
  font-weight: 700;
}

.source-bar span {
  color: var(--muted);
  font-size: 0.875rem;
}

.source-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 12px;
}

.source-links a {
  color: var(--ink);
  font-size: 0.875rem;
  font-weight: 700;
  text-underline-offset: 4px;
}

.source-tag {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--surface);
  color: var(--ink-soft);
  font-size: 0.875rem;
  font-weight: 650;
}

/* ==========================================================================
   Deliverables & Offer Section
   ========================================================================== */
.offer-layout {
  display: grid;
  gap: 28px;
}

.price-card {
  padding: 32px;
  border-radius: var(--radius-lg);
  background: var(--ink);
  color: var(--white);
  box-shadow: var(--shadow-card);
}

.price-label {
  display: block;
  margin-bottom: 16px;
  color: #ff8570;
  font-size: 0.875rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.price {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 14px;
}

.price strong {
  font-size: clamp(2.6rem, 5vw, 3.6rem);
  letter-spacing: -0.04em;
  line-height: 1;
  font-weight: 800;
}

.price span {
  color: #b7bab1;
  font-size: 0.9375rem;
}

.price-card p {
  color: #d2d5cd;
  font-size: 0.9375rem;
  line-height: 1.5;
  margin-bottom: 18px;
}

.price-card small {
  display: block;
  margin-top: 14px;
  color: #9da197;
  font-size: 0.875rem;
  line-height: 1.45;
}

.deliverable-list {
  border-top: 1px solid var(--line);
}

.deliverable-list article {
  padding: 18px 0;
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 14px;
  border-bottom: 1px solid var(--line);
}

.deliverable-list article > span {
  color: var(--signal);
  font-size: 0.875rem;
  font-weight: 800;
}

/* ==========================================================================
   Method Section (Dark Theme Container)
   ========================================================================== */
.section-dark {
  width: calc(100% - 24px);
  max-width: none;
  margin: 20px auto;
  padding-inline: max(20px, calc((100vw - 1180px) / 2));
  padding-block: 52px;
  border-radius: var(--radius-lg);
  border-top: none;
  background: var(--ink);
  color: var(--white);
}

.section-dark .section-kicker {
  color: #ff8570;
}

.section-dark .section-heading > p,
.section-dark .steps p {
  color: #aeb2a8;
}

.steps {
  margin: 0;
  padding: 0;
  border-top: 1px solid #2e3328;
  list-style: none;
}

.steps li {
  padding: 20px 0;
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 16px;
  border-bottom: 1px solid #2e3328;
}

.step-number {
  color: #ff8570;
  font-size: 0.875rem;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.steps li > div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

/* ==========================================================================
   FAQ Section
   ========================================================================== */
.faq-layout {
  display: grid;
  gap: 28px;
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  position: relative;
  padding: 18px 40px 18px 0;
  cursor: pointer;
  font-weight: 700;
  font-size: 1.0625rem;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  position: absolute;
  top: 16px;
  right: 0;
  color: var(--signal);
  font-size: 1.3rem;
  line-height: 1;
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list details p {
  max-width: 700px;
  margin: -4px 0 18px;
  color: var(--muted);
  font-size: 0.9375rem;
  line-height: 1.55;
}

/* ==========================================================================
   Final CTA
   ========================================================================== */
.final-cta {
  width: calc(100% - 24px);
  max-width: none;
  margin: 20px auto;
  padding-inline: max(24px, calc((100vw - 1180px) / 2));
  padding-block: 44px;
  display: grid;
  gap: 28px;
  border-radius: var(--radius-lg);
  border-top: none;
  background: var(--signal);
  color: var(--white);
}

.final-cta .eyebrow {
  color: #2b0c06;
}

.final-cta h2 {
  color: var(--white);
}

.final-cta :focus-visible {
  outline-color: var(--ink);
}

.final-action p {
  margin: 14px 0 0;
  color: #2b0c06;
  font-size: 0.875rem;
  font-weight: 600;
}

/* ==========================================================================
   Footer & Legal
   ========================================================================== */
footer {
  width: var(--page);
  margin: 0 auto;
  padding: 36px 0;
  border-top: 1px solid var(--line);
  display: grid;
  gap: 20px;
}

.footer-brand {
  width: fit-content;
}

footer p {
  margin: 0;
  color: var(--muted);
  font-size: 0.875rem;
}

footer nav {
  display: flex;
  gap: 20px;
}

.legal-page {
  width: min(780px, calc(100vw - 36px));
  margin: 0 auto;
  padding: 56px 0 80px;
}

.legal-page h1 {
  margin-bottom: 28px;
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  letter-spacing: -0.04em;
  line-height: 1.1;
}

.legal-page h2 {
  margin: 32px 0 12px;
  font-size: 1.25rem;
  letter-spacing: -0.02em;
}

.legal-page p,
.legal-page li {
  color: var(--ink-soft);
  font-size: 0.9375rem;
  line-height: 1.6;
}

.legal-page a {
  text-underline-offset: 4px;
}

.legal-back {
  display: inline-block;
  margin-bottom: 32px;
  color: var(--muted);
  font-size: 0.875rem;
  font-weight: 700;
}

/* ==========================================================================
   Comparison Matrix & Board (Hannover route)
   ========================================================================== */
.comparison-list {
  margin: 24px 0 20px;
  display: grid;
  gap: 14px;
}

.comparison-row {
  display: grid;
  grid-template-columns: minmax(72px, 0.85fr) minmax(64px, 1.4fr) auto;
  gap: 10px;
  align-items: center;
  color: #d9d9d2;
  font-size: 0.875rem;
}

.comparison-row i {
  position: relative;
  height: 8px;
  overflow: hidden;
  border-radius: 999px;
  background: #343830;
}

.comparison-row i::after {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: var(--level);
  border-radius: inherit;
  background: var(--signal);
}

.comparison-row .level-28 { --level: 28%; }
.comparison-row .level-42 { --level: 42%; }
.comparison-row .level-61 { --level: 61%; }
.comparison-row .level-78 { --level: 78%; }

.comparison-row b {
  color: #a2a79d;
  font-size: 0.875rem;
  font-weight: 700;
}

.matrix {
  margin-top: 24px;
  overflow-x: auto;
}

.matrix-header,
.matrix-row {
  width: 100%;
  min-width: 0;
  display: grid;
  grid-template-columns: minmax(70px, 1.5fr) repeat(12, minmax(12px, 1fr));
  gap: 4px;
  align-items: center;
}

.matrix-header {
  margin-bottom: 7px;
  color: var(--muted);
  font-size: 0.875rem;
  text-align: center;
}

.matrix-row + .matrix-row {
  margin-top: 7px;
}

.matrix-label {
  overflow: hidden;
  color: var(--muted);
  font-size: 0.875rem;
  font-weight: 700;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.cell {
  display: block;
  width: 100%;
  aspect-ratio: 1;
  border-radius: 3px;
  border: 1px solid rgba(23, 25, 21, 0.12);
}

.green { background: var(--green); }
.amber { background: var(--amber); }
.red { background: var(--signal); }
.excluded { background: repeating-linear-gradient(135deg, #9da197 0, #9da197 3px, #d7d8d1 3px, #d7d8d1 6px); }
.no-answer { border: 1px dashed var(--grey); background: transparent; }

.legend {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  color: var(--muted);
  font-size: 0.875rem;
}

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

.legend i {
  width: 12px;
  height: 12px;
  display: inline-block;
  border-radius: 2px;
}

.legend i.no-answer {
  border: 1px dashed var(--grey);
}

.boundary-grid {
  display: grid;
  gap: 36px;
}

.boundary-grid ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.boundary-grid li {
  position: relative;
  padding: 14px 0 14px 24px;
  border-bottom: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 0.9375rem;
  line-height: 1.5;
}

.boundary-grid li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--signal);
  font-weight: 800;
}

/* ==========================================================================
   Responsive Breakpoints
   ========================================================================== */
@media (min-width: 540px) {
  :root {
    --page: min(1180px, calc(100vw - 48px));
  }

  .button-small {
    display: inline-flex;
  }

  .comparison-row {
    grid-template-columns: minmax(92px, 0.85fr) minmax(100px, 1.4fr) auto;
    gap: 12px;
  }

  .hero-actions {
    flex-direction: row;
    align-items: center;
  }

  .result-shell,
  .hero-visual,
  .comparison-board,
  .price-card {
    padding: 32px;
  }

  .matrix-header,
  .matrix-row {
    grid-template-columns: minmax(82px, 1.7fr) repeat(12, minmax(17px, 1fr));
    gap: 6px;
  }
}

@media (max-width: 759px) {
  .matrix-header,
  .matrix-row {
    min-width: 430px;
    grid-template-columns: minmax(82px, 1.5fr) repeat(12, minmax(16px, 1fr));
  }
}

@media (min-width: 760px) {
  .section {
    padding-top: 52px;
    padding-bottom: 52px;
  }

  .hero {
    padding-top: 48px;
    padding-bottom: 52px;
  }

  .section-heading {
    margin-bottom: 32px;
  }

  .three-cards,
  .finding-grid {
    grid-template-columns: repeat(3, 1fr);
  }

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

  .plain-card,
  .finding-card {
    padding: 28px;
  }

  .steps li {
    grid-template-columns: 52px minmax(0, 1fr);
    padding: 22px 0;
  }

  .steps li > div {
    display: flex;
    flex-direction: column;
    gap: 6px;
  }

  .case-intro {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 840px;
    margin-bottom: 40px;
  }

  .source-bar {
    grid-template-columns: 1fr auto;
    align-items: center;
  }

  .offer-layout {
    grid-template-columns: minmax(280px, 0.85fr) minmax(360px, 1.15fr);
    gap: 36px;
    align-items: start;
  }

  .boundary-grid,
  .faq-layout {
    grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
    align-items: start;
  }

  .final-cta {
    grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
    align-items: center;
  }

  .final-action {
    align-self: center;
    justify-self: end;
  }

  footer {
    grid-template-columns: auto 1fr auto;
    align-items: center;
  }

  footer p {
    text-align: center;
  }
}

@media (min-width: 980px) {
  .hero {
    grid-template-columns: minmax(0, 1.15fr) minmax(380px, 0.85fr);
    align-items: center;
    padding-top: 52px;
    padding-bottom: 60px;
  }

  .result-shell {
    padding: 36px;
  }

  .matrix-header,
  .matrix-row {
    grid-template-columns: minmax(100px, 1.9fr) repeat(12, minmax(22px, 1fr));
    gap: 8px;
  }
}

@media (min-width: 1120px) {
  .site-header nav {
    display: flex;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .button {
    transition: none;
  }
}
