:root {
  --ink: #17263d;
  --ink-soft: #45566a;
  --teal: #bd0018;
  --teal-dark: #910012;
  --mint: #f5f5f5;
  --paper: #f6f6f6;
  --paper-light: #ffffff;
  --line: #dedede;
  --white: #fff;
  --orange: #b00018;
  --shadow: 0 30px 80px rgba(23, 38, 61, .16);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper-light);
  color: var(--ink);
  font-family: Inter, "Avenir Next", "Segoe UI", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; }
img { max-width: 100%; }
.skip-link { position: fixed; top: 12px; left: 12px; z-index: 20; padding: 10px 14px; background: var(--ink); color: #fff; transform: translateY(-150%); }
.skip-link:focus { transform: none; }

.site-header {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1440px;
  margin: 0 auto;
  padding: 24px clamp(24px, 5vw, 76px);
}
.brand { display: inline-flex; align-items: center; gap: 12px; color: var(--ink); font-size: 22px; font-weight: 760; letter-spacing: -.045em; text-decoration: none; }
.brand > span:last-child > span { color: var(--teal); }
.brand-mark { display: inline-grid; width: 42px; height: 42px; place-items: center; border: 1px solid var(--ink); border-radius: 10px; font-size: 11px; font-weight: 800; letter-spacing: -.03em; }
.header-nav { display: flex; align-items: center; gap: clamp(18px, 2.5vw, 38px); font-size: 14px; font-weight: 650; }
.header-nav a { text-decoration: none; }
.header-nav a:not(.portal-link):hover { color: var(--teal); }
.portal-link { padding: 12px 16px; border: 1px solid #b9c1c7; border-radius: 8px; background: rgba(255,255,255,.72); }
.portal-link:hover { border-color: var(--teal); }

.hero {
  display: grid;
  grid-template-columns: minmax(0, .88fr) minmax(520px, 1.12fr);
  min-height: 720px;
  max-width: 1440px;
  margin: 0 auto;
  padding: 58px clamp(24px, 5vw, 76px) 96px;
  align-items: center;
  gap: clamp(52px, 7vw, 112px);
  overflow: hidden;
}
.eyebrow { margin: 0 0 20px; color: var(--teal); font-size: 12px; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
h1, h2, h3, p { overflow-wrap: break-word; }
h1 { max-width: 760px; margin: 0; font-size: clamp(46px, 5.1vw, 76px); font-weight: 660; letter-spacing: -.062em; line-height: .99; }
h1 em { color: var(--ink); font-family: inherit; font-style: normal; font-weight: inherit; }
.hero-intro { max-width: 650px; margin: 30px 0; color: var(--ink-soft); font-size: clamp(17px, 1.35vw, 20px); line-height: 1.65; }
.button-row { display: flex; flex-wrap: wrap; gap: 12px; }
.button { display: inline-flex; min-height: 52px; align-items: center; justify-content: center; gap: 10px; padding: 13px 19px; border: 1px solid transparent; border-radius: 8px; font-size: 14px; font-weight: 750; text-decoration: none; transition: transform .2s ease, background-color .2s ease, border-color .2s ease; }
.button:hover { transform: translateY(-2px); }
.button:focus-visible, a:focus-visible { outline: 3px solid var(--orange); outline-offset: 4px; }
.button-primary { background: var(--teal); color: #fff; }
.button-primary:hover { background: var(--teal-dark); }
.button-secondary { border-color: #bdc7cc; background: rgba(255,255,255,.76); color: var(--ink); }
.button-secondary:hover { border-color: var(--teal); background: #fff; }
.hero-note { margin: 18px 0 0; color: #71808f; font-size: 12px; }
.hero-note span { margin-right: 7px; color: var(--teal); font-size: 8px; }

.hero-visual { position: relative; min-width: 0; padding: 48px 0 34px; }
.hero-visual::before { content: ""; position: absolute; inset: -100px -180px -130px -80px; z-index: -3; border-radius: 50%; background: radial-gradient(circle at 50% 45%, #f0f0f0 0, #f8f8f8 43%, rgba(255,255,255,0) 70%); }
.visual-orbit { position: absolute; z-index: -1; border: 1px solid rgba(80,80,80,.2); border-radius: 50%; }
.visual-orbit-one { inset: -7% -20% -7% -14%; transform: rotate(-9deg); }
.visual-orbit-two { inset: 5% -8% 4% -25%; transform: rotate(13deg); }
.preview-window { position: relative; overflow: hidden; border: 1px solid rgba(23,38,61,.16); border-radius: 17px; background: #fff; box-shadow: var(--shadow); transform: rotate(1.2deg); }
.preview-window a { display: block; }
.preview-window img { display: block; width: 100%; height: auto; }
.preview-bar { display: flex; height: 42px; align-items: center; gap: 6px; padding: 0 15px; border-bottom: 1px solid #dfe4e5; background: #f5f7f7; }
.preview-bar span { width: 8px; height: 8px; border-radius: 50%; background: #c7cecf; }
.preview-bar p { flex: 1; margin: 0; color: #7a888d; font-size: 10px; text-align: center; }
.floating-card { position: absolute; display: flex; align-items: center; gap: 10px; padding: 13px 15px; border: 1px solid rgba(23,38,61,.1); border-radius: 11px; background: rgba(255,255,255,.94); box-shadow: 0 14px 34px rgba(23,38,61,.13); backdrop-filter: blur(10px); }
.floating-card strong, .floating-card small { display: block; }
.floating-card strong { font-size: 13px; }
.floating-card small { margin-top: 3px; color: #71808f; font-size: 10px; }
.floating-card-top { top: 16px; right: -30px; }
.floating-card-bottom { bottom: 3px; left: -38px; }
.status-dot { width: 10px; height: 10px; border-radius: 50%; background: var(--teal); box-shadow: 0 0 0 5px #f5eeee; }

.trust-strip { display: grid; grid-template-columns: repeat(4, 1fr); max-width: 1440px; margin: 0 auto; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.trust-strip p { margin: 0; padding: 23px clamp(18px, 3vw, 40px); border-right: 1px solid var(--line); color: var(--ink-soft); font-size: 13px; font-weight: 650; }
.trust-strip p:last-child { border-right: 0; }
.trust-strip span { margin-right: 12px; color: var(--teal); font-size: 10px; }

.platform-section { max-width: 1320px; margin: 0 auto; padding: 130px clamp(24px, 5vw, 70px); }
.section-heading { display: grid; grid-template-columns: .75fr 1.45fr .8fr; gap: 48px; align-items: start; margin-bottom: 62px; }
.section-heading h2, .guidance-copy h2, .demo-section h2 { margin: 0; font-size: clamp(34px, 4vw, 58px); font-weight: 620; letter-spacing: -.05em; line-height: 1.08; }
.section-heading > p:last-child, .guidance-copy > p, .demo-section > div:last-child > p { margin: 0; color: var(--ink-soft); font-size: 16px; line-height: 1.7; }
.feature-grid { display: grid; grid-template-columns: 1.25fr .75fr; gap: 16px; }
.feature-card { position: relative; display: flex; min-height: 310px; flex-direction: column; justify-content: space-between; overflow: hidden; padding: 28px; border: 1px solid var(--line); border-radius: 14px; background: #fff; }
.feature-card-large { grid-row: span 2; min-height: 636px; background: var(--mint); }
.feature-card-dark { border-color: var(--ink); background: var(--ink); color: #fff; }
.feature-number { margin: 0; color: var(--teal); font-size: 11px; font-weight: 800; }
.feature-card-dark .feature-number { color: #ffffff; }
.feature-card h3 { max-width: 480px; margin: 0 0 12px; font-size: clamp(25px, 2.7vw, 40px); font-weight: 620; letter-spacing: -.04em; }
.feature-card p:last-child { max-width: 520px; margin: 0; color: var(--ink-soft); font-size: 15px; line-height: 1.65; }
.feature-card-dark p:last-child { color: #c4ccd6; }
.map-motif { position: absolute; inset: 90px 22px 170px; opacity: .85; }
.map-line { position: absolute; display: block; height: 1px; background: rgba(80,80,80,.35); transform-origin: left; }
.line-a { top: 35%; left: 4%; width: 82%; transform: rotate(18deg); }
.line-b { top: 69%; left: 10%; width: 74%; transform: rotate(-25deg); }
.line-c { top: 13%; left: 52%; width: 54%; transform: rotate(77deg); }
.map-pin { position: absolute; width: 18px; height: 18px; border: 5px solid #fff; border-radius: 50%; background: var(--teal); box-shadow: 0 3px 12px rgba(23,38,61,.18); }
.pin-a { top: 28%; left: 20%; }.pin-b { top: 52%; left: 62%; }.pin-c { top: 76%; left: 34%; }

.guidance-section { display: grid; grid-template-columns: .8fr 1.2fr; gap: 80px; padding: 120px max(24px, calc((100vw - 1180px)/2)); background: var(--paper); }
.guidance-label { display: flex; align-items: flex-start; gap: 15px; }
.guidance-label p { margin: 11px 0; font-size: 14px; font-weight: 750; }
.monogram { display: grid; width: 46px; height: 46px; place-items: center; border: 1px solid var(--ink); border-radius: 10px; font-family: Georgia, serif; font-size: 25px; }
.guidance-copy > p { max-width: 700px; margin: 28px 0 24px; }
.guidance-copy .eyebrow { margin: 0 0 20px; }
.text-link { display: inline-flex; gap: 12px; align-items: center; padding-bottom: 4px; border-bottom: 1px solid var(--teal); color: var(--teal); font-size: 14px; font-weight: 750; text-decoration: none; }

.demo-section { display: grid; grid-template-columns: 1.15fr .85fr; gap: 80px; padding: 110px max(24px, calc((100vw - 1180px)/2)); background: var(--teal); color: #fff; }
.demo-section .eyebrow { color: #ffffff; }
.demo-section > div:last-child { display: flex; flex-direction: column; align-items: flex-start; justify-content: flex-end; }
.demo-section > div:last-child > p { margin-bottom: 26px; color: #ffffff; }
.button-light { background: #fff; color: var(--teal-dark); }

.site-footer { display: grid; grid-template-columns: 1fr 1fr 1fr; align-items: center; gap: 30px; max-width: 1440px; margin: 0 auto; padding: 42px clamp(24px, 5vw, 76px); }
.site-footer > p { margin: 0; color: var(--ink-soft); font-size: 12px; text-align: center; }
.site-footer nav { display: flex; justify-content: flex-end; gap: 22px; font-size: 12px; }
.site-footer nav a { color: var(--ink-soft); text-decoration: none; }
.site-footer nav a:hover { color: var(--teal); }

.error-page { display: grid; min-height: 100vh; place-items: center; padding: 24px; background: var(--paper); }
.error-card { width: min(620px, 100%); padding: 44px; border: 1px solid var(--line); border-radius: 16px; background: #fff; box-shadow: var(--shadow); }
.error-card .eyebrow { margin-top: 55px; }
.error-card h1 { font-size: clamp(38px, 7vw, 64px); }
.error-card > p:not(.eyebrow) { margin: 22px 0 30px; color: var(--ink-soft); font-size: 17px; }

@media (max-width: 1050px) {
  .hero { grid-template-columns: 1fr; padding-top: 70px; }
  .hero-copy { max-width: 820px; }
  .hero-visual { width: min(780px, 94%); margin: 0 auto; }
  .section-heading { grid-template-columns: 1fr 1.6fr; }
  .section-heading > p:last-child { grid-column: 2; }
}
@media (max-width: 760px) {
  .site-header { padding-top: 18px; padding-bottom: 18px; }
  .header-nav > a:not(.portal-link) { display: none; }
  .portal-link { padding: 10px 12px; }
  .hero { min-height: auto; padding-top: 48px; padding-bottom: 74px; gap: 44px; }
  h1 { font-size: clamp(42px, 12vw, 64px); }
  .floating-card-top { right: -12px; }
  .floating-card-bottom { left: -12px; }
  .trust-strip { grid-template-columns: 1fr 1fr; }
  .trust-strip p:nth-child(2) { border-right: 0; }
  .trust-strip p:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .section-heading, .feature-grid, .guidance-section, .demo-section, .site-footer { grid-template-columns: 1fr; }
  .section-heading > p:last-child { grid-column: auto; }
  .feature-card-large { min-height: 520px; }
  .guidance-section, .demo-section { gap: 44px; padding-top: 84px; padding-bottom: 84px; }
  .site-footer { text-align: left; }
  .site-footer > p { text-align: left; }
  .site-footer nav { justify-content: flex-start; flex-wrap: wrap; }
}
@media (max-width: 480px) {
  .brand { font-size: 19px; }
  .brand-mark { width: 36px; height: 36px; }
  .portal-link { font-size: 12px; }
  .button-row { flex-direction: column; }
  .button { width: 100%; }
  .hero-visual { width: 100%; }
  .preview-bar { height: 34px; }
  .floating-card { display: none; }
  .trust-strip { grid-template-columns: 1fr; }
  .trust-strip p { border-right: 0; border-bottom: 1px solid var(--line); }
  .platform-section { padding-top: 84px; padding-bottom: 84px; }
  .feature-card { min-height: 300px; }
  .feature-card-large { min-height: 460px; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .button { transition: none; }
}

/* Bauwerk24 service model: shared navigation, comparison and access pages. */
html { scroll-padding-top: 24px; }
.header-nav { flex-wrap: wrap; justify-content: flex-end; gap: 16px 22px; }
.header-nav a { min-height: 36px; display: inline-flex; align-items: center; }
.header-nav [aria-current="page"] { color: var(--teal-dark); text-decoration: underline; text-underline-offset: 7px; text-decoration-thickness: 2px; }
.site-header { gap: 24px; }
.site-header .brand { flex-shrink: 0; }
.site-footer nav { flex-wrap: wrap; gap: 14px 20px; }
.hero { grid-template-columns: minmax(0, 1fr) minmax(420px, 1fr); min-height: 660px; gap: clamp(40px, 5vw, 80px); }
.hero h1 { font-size: clamp(46px, 4.8vw, 69px); line-height: 1.06; }
.hero-note { color: var(--ink-soft); line-height: 1.7; }
.hero-note a { color: var(--teal-dark); text-underline-offset: 3px; }
.map-motif { bottom: 290px; }
.feature-card > div:not(.map-motif) { position: relative; z-index: 1; }

.content-width { width: min(1180px, calc(100% - 96px)); margin-right: auto; margin-left: auto; }
.content-section { max-width: 1320px; margin: 0 auto; padding: 88px clamp(24px, 5vw, 70px); }
.section-intro { max-width: 800px; margin-bottom: 36px; }
.section-intro h2, .next-step h2, .safety-note h2 { margin: 0 0 18px; font-size: clamp(31px, 3.7vw, 49px); font-weight: 620; line-height: 1.12; letter-spacing: -.045em; }
.section-intro > p:last-child, .next-step p:not(.eyebrow) { margin: 0; color: var(--ink-soft); font-size: 16px; line-height: 1.75; }
.expansion-section { padding-top: 0; }
.plan-overview { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 14px; }
.plan-card { display: flex; flex-direction: column; align-items: flex-start; padding: 24px; border: 1px solid var(--line); border-radius: 12px; background: var(--white); text-decoration: none; }
.plan-card:hover { border-color: var(--teal); }
.plan-card h3 { margin: 22px 0 12px; font-size: 23px; letter-spacing: -.035em; hyphens: auto; }
.plan-card p { margin: 0 0 24px; font-size: 14px; color: var(--ink-soft); line-height: 1.7; }
.plan-card-base { background: var(--mint); border-color: #dddddd; }
.card-link { margin-top: auto; font-size: 12px; font-weight: 750; color: var(--teal-dark); line-height: 1.6; }
.status-label { display: inline-block; padding: 5px 8px; border-radius: 5px; background: #f1f1f1; color: #333333; font-size: 11px; line-height: 1.35; font-weight: 750; }
.status-planned { background: #f5f5f5; color: #444444; }
.fine-print { max-width: 880px; margin: 24px 0; font-size: 13px; line-height: 1.7; color: var(--ink-soft); }
.page-hero { max-width: 1320px; margin: 0 auto; padding: 68px clamp(24px, 5vw, 70px) 54px; }
.page-hero h1 { max-width: 980px; font-size: clamp(42px, 5vw, 65px); line-height: 1.07; }
.page-hero .hero-intro { max-width: 860px; }
.phase-note { padding: 22px 26px; border: 1px solid #dddddd; border-left: 4px solid var(--teal); border-radius: 8px; background: #fafafa; }
.phase-note strong { font-size: 15px; }
.phase-note p { margin: 9px 0 0; font-size: 13px; color: var(--ink-soft); line-height: 1.75; }
.matrix-section { padding-bottom: 56px; }
.table-help { margin: 0 0 14px; color: var(--ink-soft); font-size: 13px; line-height: 1.7; }
.matrix-scroll { overflow-x: auto; border: 1px solid #dddddd; border-radius: 12px; background: var(--white); }
.matrix-scroll:focus-visible { outline: 3px solid var(--orange); outline-offset: 4px; }
.feature-matrix { width: 100%; min-width: 980px; border-spacing: 0; table-layout: fixed; font-size: 12px; }
.feature-matrix caption { text-align: left; padding: 15px 20px; border-bottom: 1px solid #dddddd; background: #fafafa; color: var(--ink-soft); font-size: 12px; }
.feature-matrix .matrix-label { width: 27%; }
.feature-matrix th, .feature-matrix td { padding: 16px 13px; border-bottom: 1px solid #e7e7e7; vertical-align: middle; text-align: center; line-height: 1.6; overflow-wrap: break-word; hyphens: auto; }
.feature-matrix th:first-child { text-align: left; }
.feature-matrix thead th { padding-top: 23px; padding-bottom: 23px; background: var(--ink); color: #fff; font-size: 15px; vertical-align: top; }
.feature-matrix thead th:first-child { vertical-align: middle; }
.feature-matrix thead th a { color: #fff; text-decoration-thickness: 1px; text-underline-offset: 4px; }
.feature-matrix thead th:nth-child(2) { background: var(--teal-dark); }
.feature-matrix tbody td:nth-child(2) { background: #fafafa; }
.feature-matrix tbody th { font-weight: 550; color: var(--ink); background: #fff; }
.feature-matrix small { display: block; margin-top: 8px; font-size: 11px; font-weight: 450; line-height: 1.5; }
.feature-matrix thead small { color: #ffffff; }
.feature-matrix .matrix-step { display: block; margin-bottom: 9px; color: #ffffff; font-size: 10px; }
.feature-matrix .matrix-price td { font-weight: 700; }
.feature-matrix .matrix-price td small { font-weight: 450; color: var(--ink-soft); }
.feature-matrix .matrix-price strong { font-size: 29px; color: var(--teal-dark); }
.feature-matrix .matrix-group-start > * { border-top: 2px solid #dddddd; }
.feature-matrix tr:last-child > * { border-bottom: 0; }
.included { display: inline-block; padding: 2px 7px; border-radius: 4px; background: #f3f3f3; color: #333333; font-size: 11px; font-weight: 700; }
.not-included { color: #777777; }
.matrix-footnotes { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; margin-top: 20px; }
.matrix-footnotes p { margin: 0; font-size: 13px; line-height: 1.75; color: var(--ink-soft); }
.matrix-footnotes strong { color: var(--ink); }
.module-section { padding-top: 35px; }
.module-nav { display: flex; flex-wrap: wrap; gap: 9px; margin-bottom: 30px; }
.module-nav a { padding: 9px 12px; border: 1px solid var(--line); border-radius: 6px; color: var(--teal-dark); font-size: 12px; text-decoration: none; line-height: 1.5; }
.module-nav a:hover { background: var(--mint); }
.module-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.module-card { min-width: 0; padding: 30px; border: 1px solid var(--line); border-radius: 13px; background: var(--white); scroll-margin-top: 24px; }
.module-card-base { margin-bottom: 18px; border-color: #dddddd; background: #fafafa; }
.module-heading { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 10px; align-items: center; }
.module-heading .eyebrow { margin: 0; font-size: 10px; }
.module-card h3 { margin: 22px 0 15px; font-size: 31px; font-weight: 650; letter-spacing: -.045em; line-height: 1.15; hyphens: auto; }
.module-intro { margin: 0 0 24px; color: var(--ink-soft); font-size: 16px; line-height: 1.65; }
.module-facts { margin: 0; }
.module-facts > div { padding: 15px 0; border-top: 1px solid #e5e5e5; }
.module-facts dt { margin-bottom: 6px; font-size: 12px; font-weight: 750; color: var(--ink); }
.module-facts dd { margin: 0; font-size: 13px; line-height: 1.75; color: var(--ink-soft); }
.module-note { margin: 12px 0 23px; padding: 15px 16px; border-left: 2px solid #cccccc; background: #fafafa; color: var(--ink-soft); font-size: 12px; line-height: 1.75; }
.module-card-base .module-facts { display: grid; grid-template-columns: 1.3fr 1fr 1fr; gap: 25px; }
.module-card-base .module-intro { max-width: 880px; }
.module-card-base .module-note { background: #f2f2f2; }
.next-step { display: flex; align-items: center; justify-content: space-between; gap: 32px; padding-top: 72px; padding-bottom: 72px; }
.next-step > div:first-child { max-width: 680px; }
.next-step .button-row { min-width: 205px; flex-direction: column; flex-shrink: 0; }
.next-step > .button { flex-shrink: 0; }
.next-step h2 { font-size: clamp(28px, 3vw, 38px); }
.access-section { padding-top: 18px; }
.access-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.access-card { padding: 34px; border: 1px solid var(--line); border-radius: 13px; background: #fff; }
.access-card-primary { background: #fafafa; border-color: #dddddd; }
.step-number { display: inline-grid; place-items: center; width: 35px; height: 35px; border: 1px solid #dddddd; border-radius: 50%; color: var(--teal-dark); font-size: 11px; font-weight: 750; }
.access-card h3 { margin: 23px 0 17px; font-size: 28px; font-weight: 650; letter-spacing: -.035em; line-height: 1.2; }
.access-card p { color: var(--ink-soft); font-size: 14px; line-height: 1.8; }
.access-card .text-link { margin-top: 12px; }
.access-questions { padding-top: 0; }
.question-card { border-top: 1px solid var(--line); padding: 21px 0; }
.question-card:last-child { border-bottom: 1px solid var(--line); }
.question-card summary { cursor: pointer; padding: 4px 0; color: var(--ink); font-size: 17px; font-weight: 650; line-height: 1.5; }
.question-card summary:focus-visible { outline: 3px solid var(--orange); outline-offset: 4px; }
.question-card p { max-width: 880px; margin: 18px 0 0; font-size: 15px; line-height: 1.8; color: var(--ink-soft); }
.safety-note { padding: 26px 30px; border-radius: 10px; background: var(--paper); border: 1px solid var(--line); }
.safety-note h2 { font-size: 24px; margin-bottom: 12px; }
.safety-note p { max-width: 950px; margin: 0; color: var(--ink-soft); line-height: 1.8; font-size: 14px; }

@media (max-width: 1100px) {
  .site-header { flex-wrap: wrap; padding-top: 20px; padding-bottom: 20px; }
  .header-nav { gap: 12px 19px; }
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .plan-overview { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 900px) {
  .site-header { gap: 15px; }
  .header-nav { width: 100%; justify-content: flex-start; gap: 6px 23px; }
  .header-nav .portal-link { margin-left: auto; }
  .module-card-base .module-facts { grid-template-columns: 1fr; gap: 0; }
  .next-step { align-items: flex-start; flex-direction: column; }
  .next-step .button-row { flex-direction: row; }
}
@media (max-width: 760px) {
  .header-nav > a:not(.portal-link) { display: inline-flex; }
  .header-nav { font-size: 13px; gap: 5px 17px; }
  .header-nav .portal-link { margin-left: 0; }
  .content-width { width: calc(100% - 48px); }
  .content-section { padding-top: 62px; padding-bottom: 62px; }
  .expansion-section, .access-questions { padding-top: 0; }
  .page-hero { padding-top: 45px; padding-bottom: 40px; }
  .page-hero h1 { font-size: clamp(39px, 8vw, 58px); }
  .hero h1 { font-size: clamp(42px, 9vw, 64px); }
  .module-grid, .access-grid, .matrix-footnotes { grid-template-columns: 1fr; }
  .module-card, .access-card { padding: 25px; }
  .module-card-base .module-facts { display: block; }
  .module-card h3 { font-size: 29px; }
  .module-heading { align-items: flex-start; flex-direction: column; }
  .phase-note { padding: 19px 20px; }
  .matrix-section { padding-bottom: 30px; }
  .module-section { padding-top: 20px; }
  .matrix-footnotes { gap: 17px; }
  .next-step { padding-top: 55px; padding-bottom: 45px; }
  .map-motif { bottom: 265px; }
  .safety-note { padding: 24px; }
}
@media (max-width: 480px) {
  .site-header { padding-left: 20px; padding-right: 20px; }
  .header-nav { gap: 3px 16px; }
  .header-nav a { min-height: 38px; }
  .header-nav .portal-link { padding: 8px 11px; font-size: 13px; }
  .hero h1 { font-size: 43px; }
  .hero .hero-intro, .page-hero .hero-intro { font-size: 17px; }
  .plan-overview { grid-template-columns: 1fr; }
  .plan-card { padding: 22px; }
  .plan-card h3 { margin-top: 15px; }
  .plan-card p { margin-bottom: 18px; }
  .next-step .button-row { width: 100%; flex-direction: column; min-width: 0; }
  .module-nav { gap: 7px; }
  .module-nav a { font-size: 11px; padding: 8px 10px; }
  .module-card, .access-card { padding: 22px; }
  .module-card h3 { font-size: 28px; }
  .text-link { font-size: 13px; line-height: 1.6; }
  .feature-card-large { min-height: 460px; }
  .map-motif { bottom: 235px; }
}

/* Clear white surface, restrained Kaiser-red accents. */
.demo-section{background:var(--ink)}
.feature-matrix thead th:nth-child(2){background:var(--ink);box-shadow:inset 0 4px 0 var(--teal)}
.feature-matrix .matrix-price strong{color:var(--ink)}
.feature-matrix .matrix-price td small a{color:var(--teal-dark);font-weight:700;text-underline-offset:3px}
.hero-visual::before{background:none}
