:root {
  --surface-base: #ebe9e1;
  --surface-raised: #f7f5ed;
  --surface-white: #fffefa;
  --ink: #181812;
  --muted: #65635a;
  --line: #d3d0c5;
  --accent: #780f2d;
  --positive: #1e6f4c;
  --font-ui: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-display: Bitter, Georgia, "Times New Roman", serif;
  --font-mono: "IBM Plex Mono", "SFMono-Regular", Consolas, monospace;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--surface-base);
  color: var(--ink);
  font-family: var(--font-ui);
  font-size: 16px;
  line-height: 1.5;
}

a {
  color: inherit;
}

.skip-link {
  position: fixed;
  left: 12px;
  top: -80px;
  z-index: 100;
  background: var(--ink);
  color: var(--surface-raised);
  padding: 10px 14px;
}

.skip-link:focus {
  top: 12px;
}

.site-header {
  min-height: 76px;
  padding: 0 clamp(20px, 5vw, 72px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  background: var(--surface-raised);
  border-bottom: 1px solid var(--line);
}

.brand {
  display: flex;
  align-items: baseline;
  gap: 12px;
  text-decoration: none;
}

.brand-name {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.brand-category {
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

nav {
  display: flex;
  align-items: center;
  gap: clamp(12px, 2vw, 26px);
}

nav a {
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
}

nav a:hover,
nav a:focus-visible {
  color: var(--ink);
}

nav .nav-contact {
  color: var(--surface-raised);
  background: var(--accent);
  border: 1px solid var(--accent);
  border-radius: 3px;
  padding: 9px 12px;
}

.hero {
  min-height: calc(100vh - 76px);
  padding: clamp(48px, 8vw, 112px) clamp(20px, 5vw, 72px);
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(560px, 1.18fr);
  align-items: center;
  gap: clamp(44px, 7vw, 104px);
}

.hero-copy {
  min-width: 0;
  max-width: 660px;
}

.eyebrow,
.section-index,
.workbench-kicker {
  margin: 0 0 18px;
  color: var(--accent);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

h1,
h2,
h3 {
  overflow-wrap: normal;
  hyphens: auto;
}

html[lang="en"] h1,
html[lang="en"] h2,
html[lang="en"] h3 {
  hyphens: none;
}

h1 {
  margin-bottom: 24px;
  font-family: var(--font-display);
  font-size: clamp(42px, 5.2vw, 70px);
  font-weight: 600;
  letter-spacing: -0.045em;
  line-height: 1.02;
  text-wrap: balance;
}

.hero-dek {
  max-width: 600px;
  margin-bottom: 30px;
  color: var(--muted);
  font-size: clamp(17px, 1.5vw, 21px);
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--accent);
  border-radius: 3px;
  padding: 10px 14px;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}

.button-primary {
  background: var(--accent);
  color: var(--surface-raised);
}

.button-secondary {
  background: transparent;
  color: var(--accent);
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button:focus-visible,
nav a:focus-visible,
.brand:focus-visible {
  outline: 3px solid rgba(120, 15, 45, 0.18);
  outline-offset: 3px;
}

.hero-note {
  margin: 18px 0 0;
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 10px;
}

.workbench {
  background: var(--surface-raised);
  border: 1px solid var(--line);
  box-shadow: 14px 16px 0 rgba(24, 24, 18, 0.05);
}

.workbench-head {
  padding: 18px 20px 16px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: flex-start;
  border-bottom: 1px solid var(--line);
}

.workbench-head h2 {
  margin: 5px 0 0;
  font-family: var(--font-display);
  font-size: 20px;
  line-height: 1.2;
}

.workbench-kicker {
  margin: 0;
  font-size: 9px;
}

.demo-badge {
  border: 1px solid var(--accent);
  border-radius: 999px;
  color: var(--accent);
  padding: 3px 8px;
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.search-strip {
  margin: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  background: var(--surface-white);
  border: 1px solid var(--line);
  border-radius: 3px;
  color: var(--muted);
  font-size: 12px;
  padding: 8px 8px 8px 11px;
}

.search-action {
  flex: 0 0 auto;
  background: var(--ink);
  color: var(--surface-raised);
  border-radius: 2px;
  padding: 6px 10px;
  font-weight: 600;
}

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

.opportunity-row {
  min-height: 94px;
  padding: 15px 18px;
  display: grid;
  grid-template-columns: 152px minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  border-bottom: 1px solid var(--line);
}

.source-id,
.opportunity-value {
  display: grid;
  gap: 4px;
}

.source-id strong {
  color: var(--accent);
  font-family: var(--font-mono);
  font-size: 10px;
}

.source-id span,
.opportunity-value span,
.opportunity-main p {
  margin: 0;
  color: var(--muted);
  font-size: 10px;
}

.opportunity-main h3 {
  margin: 0 0 5px;
  font-size: 13px;
  font-weight: 650;
  line-height: 1.35;
}

.opportunity-value {
  text-align: right;
  font-feature-settings: "tnum" 1;
}

.opportunity-value strong {
  font-size: 12px;
}

.opportunity-value span {
  color: var(--positive);
  font-weight: 700;
}

.workbench-foot {
  padding: 10px 18px;
  display: flex;
  justify-content: space-between;
  gap: 14px;
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 9px;
}

.product-intro {
  padding: 76px clamp(20px, 5vw, 72px);
  display: grid;
  grid-template-columns: minmax(150px, 0.35fr) minmax(0, 1fr);
  gap: 48px;
  background: var(--surface-raised);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.product-intro h2 {
  max-width: 780px;
  margin-bottom: 16px;
  font-family: var(--font-display);
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.product-intro p:not(.section-index) {
  max-width: 650px;
  color: var(--muted);
  font-size: 17px;
}

.workflow {
  padding: 0 clamp(20px, 5vw, 72px) 92px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: var(--surface-raised);
}

.workflow article {
  min-height: 300px;
  padding: 30px clamp(22px, 3vw, 42px) 26px 0;
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--accent);
}

.workflow article + article {
  padding-left: clamp(22px, 3vw, 42px);
  border-left: 1px solid var(--line);
}

.workflow-number {
  margin-bottom: 48px;
  color: var(--accent);
  font-family: var(--font-mono);
  font-size: 11px;
}

.workflow h3,
.enterprise-section h2,
.final-cta h2 {
  font-family: var(--font-display);
}

.workflow h3 {
  margin-bottom: 12px;
  font-size: 22px;
}

.workflow p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.workflow a,
.text-link {
  margin-top: auto;
  color: var(--accent);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}

.workflow a:hover,
.workflow a:focus-visible,
.text-link:hover,
.text-link:focus-visible {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.enterprise-section {
  padding: clamp(72px, 10vw, 132px) clamp(20px, 5vw, 72px);
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(460px, 1.1fr);
  gap: clamp(48px, 8vw, 120px);
}

.enterprise-copy h2,
.final-cta h2 {
  margin-bottom: 20px;
  font-size: clamp(34px, 4.5vw, 58px);
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 1.08;
}

.enterprise-copy > p:not(.section-index),
.final-cta > p:not(.section-index) {
  max-width: 670px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}

.enterprise-copy .text-link {
  display: inline-block;
  margin-top: 18px;
}

.enterprise-register {
  margin: 0;
  border-top: 1px solid var(--accent);
}

.enterprise-register div {
  padding: 24px 0;
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: 24px;
  border-bottom: 1px solid var(--line);
}

.enterprise-register dt {
  color: var(--accent);
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.enterprise-register dd {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
}

.final-cta {
  padding: clamp(76px, 10vw, 128px) clamp(20px, 5vw, 72px);
  background: var(--ink);
  color: var(--surface-raised);
}

.final-cta .section-index {
  color: #d9a8b7;
}

.final-cta > p:not(.section-index) {
  color: #c7c4bb;
}

.final-cta .button-primary {
  border-color: var(--surface-raised);
  background: var(--surface-raised);
  color: var(--ink);
}

.final-cta .button-secondary {
  border-color: #817e75;
  color: var(--surface-raised);
}

footer {
  min-height: 78px;
  padding: 24px clamp(20px, 5vw, 72px);
  display: flex;
  justify-content: space-between;
  gap: 24px;
  color: var(--muted);
  font-size: 12px;
}

footer a {
  color: var(--accent);
}

/* Clickable product demo */

.demo-page {
  min-height: 100vh;
  background: var(--surface-raised);
}

.demo-shell {
  max-width: 1600px;
  margin: 0 auto;
  padding: 46px clamp(20px, 4vw, 64px) 72px;
}

.demo-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 430px);
  gap: 42px;
  align-items: end;
  margin-bottom: 32px;
}

.demo-intro h1 {
  max-width: 820px;
  margin-bottom: 14px;
  font-size: clamp(38px, 5vw, 66px);
}

.demo-intro > div > p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
}

.demo-disclaimer {
  display: grid;
  gap: 7px;
  border-left: 3px solid var(--accent);
  background: var(--surface-base);
  padding: 16px 18px;
}

.demo-disclaimer strong {
  color: var(--accent);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.demo-disclaimer span {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.55;
}

.demo-layout {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  border: 1px solid var(--line);
  background: var(--surface-white);
  box-shadow: 10px 12px 0 rgba(24, 24, 18, 0.04);
}

.demo-steps {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0;
  background: var(--ink);
  padding: 0;
}

.demo-steps a {
  position: relative;
  display: grid;
  gap: 4px;
  min-height: 112px;
  padding: 19px 20px;
  color: #9e9b91;
  border-bottom: 1px solid #3d3c36;
  text-decoration: none;
}

.demo-steps a span {
  font-family: var(--font-mono);
  font-size: 9px;
}

.demo-steps a strong {
  color: var(--surface-raised);
  font-family: var(--font-display);
  font-size: 18px;
}

.demo-steps a small {
  font-size: 11px;
}

.demo-steps a[aria-selected="true"] {
  background: var(--accent);
  color: #e1b8c4;
}

.demo-steps a[aria-selected="true"]::after {
  position: absolute;
  right: -8px;
  top: 46px;
  width: 16px;
  height: 16px;
  background: var(--accent);
  content: "";
  transform: rotate(45deg);
}

.demo-steps a:focus-visible {
  z-index: 2;
  outline: 3px solid #d9a8b7;
  outline-offset: -5px;
}

.demo-stage {
  min-width: 0;
}

.demo-panel {
  min-height: 594px;
  outline: 0;
}

.demo-panel:focus-visible {
  box-shadow: inset 0 0 0 3px rgba(120, 15, 45, 0.2);
}

.panel-toolbar {
  min-height: 88px;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-bottom: 1px solid var(--line);
}

.panel-toolbar h2 {
  margin: 4px 0 0;
  font-family: var(--font-display);
  font-size: clamp(21px, 2.4vw, 31px);
  letter-spacing: -0.025em;
}

.panel-kicker {
  color: var(--accent);
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.confidence-mark,
.match-score,
.packet-state {
  flex: 0 0 auto;
  border: 1px solid var(--positive);
  border-radius: 999px;
  color: var(--positive);
  padding: 5px 9px;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
}

.filter-register {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 13px 20px;
  border-bottom: 1px solid var(--line);
  background: var(--surface-raised);
}

.filter-register span {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface-white);
  color: var(--muted);
  padding: 4px 9px;
  font-size: 10px;
}

.result-table {
  padding: 8px 20px 0;
}

.result-card {
  width: 100%;
  min-height: 100px;
  display: grid;
  grid-template-columns: 154px minmax(0, 1fr) 118px;
  gap: 20px;
  align-items: center;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  padding: 14px 4px;
  text-align: left;
}

.result-card:hover,
.result-card:focus-visible {
  background: var(--surface-raised);
}

.result-card:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: -2px;
}

.result-card > span {
  display: grid;
  gap: 5px;
}

.result-card strong {
  font-size: 13px;
}

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

.result-card .result-source {
  color: var(--accent);
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 600;
}

.result-card .result-price {
  text-align: right;
  font-feature-settings: "tnum" 1;
}

.result-card.is-selected {
  box-shadow: inset 3px 0 0 var(--accent);
  padding-left: 14px;
}

.panel-actions {
  min-height: 70px;
  padding: 13px 20px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  border-top: 1px solid var(--line);
  background: var(--surface-raised);
}

.panel-actions > span {
  margin-right: auto;
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 9px;
}

.panel-actions button {
  cursor: pointer;
}

.opportunity-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(370px, 1.1fr);
  min-height: 286px;
  border-bottom: 1px solid var(--line);
}

.asset-illustration {
  position: relative;
  overflow: hidden;
  display: grid;
  place-items: center;
  background: #e6e3d9;
  border-right: 1px solid var(--line);
}

.asset-illustration > span {
  position: absolute;
  left: 16px;
  bottom: 12px;
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 9px;
}

.forklift {
  position: relative;
  width: 240px;
  height: 150px;
}

.forklift-body,
.forklift-cab,
.forklift-mast,
.wheel {
  position: absolute;
  display: block;
}

.forklift-body {
  left: 30px;
  bottom: 39px;
  width: 128px;
  height: 58px;
  background: var(--accent);
  clip-path: polygon(0 35%, 68% 35%, 80% 0, 100% 0, 100% 100%, 0 100%);
}

.forklift-cab {
  left: 76px;
  bottom: 92px;
  width: 67px;
  height: 46px;
  border: 7px solid var(--ink);
  border-bottom: 0;
  transform: skew(-5deg);
}

.forklift-mast {
  left: 164px;
  bottom: 32px;
  width: 9px;
  height: 120px;
  background: var(--ink);
  box-shadow: 14px 0 0 var(--ink), 14px 111px 0 0 var(--ink), 58px 111px 0 0 var(--ink);
}

.wheel {
  bottom: 24px;
  width: 38px;
  height: 38px;
  border: 8px solid var(--ink);
  border-radius: 50%;
  background: var(--surface-raised);
}

.wheel-one { left: 43px; }
.wheel-two { left: 133px; }

.fact-sheet {
  padding: 20px 24px;
}

.fact-sheet dl {
  margin: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.fact-sheet dl div {
  padding: 0 16px 16px 0;
}

.fact-sheet dt {
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 9px;
  text-transform: uppercase;
}

.fact-sheet dd {
  margin: 5px 0 0;
  font-size: 13px;
  font-weight: 700;
}

.source-proof {
  display: grid;
  gap: 4px;
  border: 1px solid var(--line);
  padding: 12px 14px;
}

.source-proof strong {
  color: var(--accent);
  font-family: var(--font-mono);
  font-size: 9px;
  text-transform: uppercase;
}

.source-proof span { font-size: 12px; }
.source-proof small { color: var(--muted); font-size: 9px; }

.risk-register {
  padding: 18px 24px 12px;
}

.risk-register h3 {
  margin-bottom: 10px;
  font-size: 13px;
}

.risk-register ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.risk-register li {
  display: grid;
  grid-template-columns: 66px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  padding: 7px 0;
  border-top: 1px solid var(--line);
  font-size: 11px;
}

.status {
  width: max-content;
  border-radius: 2px;
  padding: 3px 6px;
  font-family: var(--font-mono);
  font-size: 8px;
  font-weight: 700;
  text-transform: uppercase;
}

.status-done { color: var(--positive); background: #e1efe8; }
.status-check { color: #79560d; background: #f5ebcb; }
.status-open { color: var(--accent); background: #f2dfe4; }

.radar-summary {
  min-height: 134px;
  display: grid;
  grid-template-columns: 160px minmax(0, 560px);
  align-items: center;
  gap: 28px;
  padding: 18px 24px;
  background: var(--surface-raised);
  border-bottom: 1px solid var(--line);
}

.radar-summary > div {
  display: grid;
  border-right: 1px solid var(--line);
}

.radar-summary strong {
  color: var(--accent);
  font-family: var(--font-display);
  font-size: 44px;
}

.radar-summary span {
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 9px;
  text-transform: uppercase;
}

.radar-summary p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}

.criteria-list {
  padding: 8px 24px;
}

.criteria-list article {
  min-height: 67px;
  display: grid;
  grid-template-columns: 60px minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  border-bottom: 1px solid var(--line);
}

.criterion-score {
  color: var(--accent);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
}

.criteria-list strong { font-size: 12px; }
.criteria-list p { margin: 3px 0 0; color: var(--muted); font-size: 10px; }

.packet-preview {
  width: min(740px, calc(100% - 48px));
  margin: 24px auto;
  border: 1px solid #bbb8ae;
  background: #fff;
  color: #171711;
  box-shadow: 7px 8px 0 rgba(24, 24, 18, 0.06);
  padding: 24px 28px 18px;
}

.packet-preview header,
.packet-preview footer {
  min-height: auto;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding: 0 0 14px;
  border-bottom: 1px solid #c7c4bb;
  color: #66645c;
  font-family: var(--font-mono);
  font-size: 8px;
}

.packet-preview header div { display: grid; gap: 2px; }
.packet-preview header strong { color: var(--ink); font-family: var(--font-display); font-size: 18px; }

.packet-title {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: 28px;
  align-items: center;
  padding: 22px 0;
}

.packet-title > div { display: grid; gap: 3px; }
.packet-title span { color: var(--accent); font-family: var(--font-mono); font-size: 8px; }
.packet-title > div strong { font-size: 13px; }
.packet-title h3 { margin: 0; font-family: var(--font-display); font-size: 23px; }

.packet-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 2px solid var(--ink);
  border-bottom: 1px solid #c7c4bb;
}

.packet-metrics div { display: grid; gap: 4px; padding: 12px 0; }
.packet-metrics div + div { padding-left: 18px; border-left: 1px solid #c7c4bb; }
.packet-metrics span { color: #66645c; font-family: var(--font-mono); font-size: 8px; text-transform: uppercase; }
.packet-metrics strong { font-size: 15px; }

.packet-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  padding: 18px 0 22px;
}

.packet-columns h4 { margin: 0 0 5px; color: var(--accent); font-family: var(--font-mono); font-size: 8px; text-transform: uppercase; }
.packet-columns p { margin: 0; color: #55534d; font-size: 10px; line-height: 1.55; }
.packet-preview footer { padding: 10px 0 0; border-top: 1px solid #c7c4bb; border-bottom: 0; }

.demo-endnote {
  margin: 26px 0 0;
  color: var(--muted);
  font-size: 12px;
  text-align: center;
}

.demo-endnote a { color: var(--accent); }

.packet-page {
  background: #dedbd2;
}

.print-packet {
  width: 210mm;
  min-height: 297mm;
  margin: 24px auto;
  padding: 16mm;
  background: #fff;
  color: #181812;
  box-shadow: 0 8px 34px rgba(24, 24, 18, 0.12);
}

.print-packet .packet-preview {
  width: 100%;
  margin: 0;
  border: 0;
  box-shadow: none;
  padding: 0;
}

.print-note {
  margin: 18px 0;
  border-left: 3px solid var(--accent);
  padding: 10px 14px;
  background: #f2efe7;
  color: #55534d;
  font-size: 11px;
}

.print-section {
  margin-top: 22px;
}

.print-section h2 {
  margin-bottom: 8px;
  color: var(--accent);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.print-section table {
  width: 100%;
  border-collapse: collapse;
  font-size: 11px;
}

.print-section th,
.print-section td {
  padding: 8px;
  border: 1px solid #d3d0c5;
  text-align: left;
  vertical-align: top;
}

.print-section th {
  width: 28%;
  background: #f2efe7;
}

@media print {
  @page { size: A4; margin: 0; }
  .packet-page { background: #fff; }
  .print-packet { margin: 0; box-shadow: none; }
}

@media (max-width: 1040px) {
  .hero {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    max-width: 800px;
  }

  .enterprise-section {
    grid-template-columns: 1fr;
  }

  .demo-intro {
    grid-template-columns: 1fr;
    gap: 22px;
  }

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

  .demo-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
  }

  .demo-steps a {
    min-height: 86px;
    padding: 14px;
    border-right: 1px solid #3d3c36;
  }

  .demo-steps a[aria-selected="true"]::after {
    right: calc(50% - 8px);
    top: auto;
    bottom: -8px;
  }
}

@media (max-width: 700px) {
  .site-header {
    padding-block: 15px;
    align-items: flex-start;
  }

  .brand {
    display: grid;
    gap: 0;
  }

  .brand-category {
    display: none;
  }

  nav {
    gap: 12px;
  }

  .site-header nav a:not(.nav-contact) {
    display: none;
  }

  .site-header nav a[lang] {
    display: inline-flex;
  }

  .hero {
    min-height: auto;
    padding-top: 58px;
    gap: 50px;
  }

  h1 {
    font-size: clamp(40px, 13vw, 58px);
  }

  .hero-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .opportunity-row {
    grid-template-columns: 1fr auto;
    gap: 12px;
  }

  .source-id {
    grid-column: 1 / -1;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--line);
  }

  .search-strip {
    align-items: stretch;
    flex-direction: column;
  }

  .search-action {
    text-align: center;
  }

  .workbench-foot,
  footer {
    flex-direction: column;
  }

  .product-intro {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .workflow {
    grid-template-columns: 1fr;
    padding-bottom: 60px;
  }

  .workflow article {
    min-height: 0;
    padding: 28px 0;
  }

  .workflow article + article {
    padding-left: 0;
    border-left: 0;
  }

  .workflow-number {
    margin-bottom: 28px;
  }

  .workflow a {
    margin-top: 20px;
  }

  .enterprise-section {
    gap: 42px;
  }

  .enterprise-register div {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .demo-shell {
    padding: 36px 12px 52px;
  }

  .demo-intro {
    padding-inline: 8px;
  }

  .demo-intro h1 {
    font-size: clamp(38px, 12vw, 52px);
  }

  .demo-steps {
    grid-template-columns: repeat(4, minmax(86px, 1fr));
    overflow-x: auto;
  }

  .demo-steps a {
    min-height: 72px;
    padding: 11px;
  }

  .demo-steps a small {
    display: none;
  }

  .demo-steps a strong {
    font-size: 13px;
  }

  .demo-panel {
    min-height: 0;
  }

  .panel-toolbar {
    align-items: flex-start;
    padding: 16px;
  }

  .panel-toolbar h2 {
    font-size: 21px;
  }

  .result-table {
    padding-inline: 14px;
  }

  .result-card {
    grid-template-columns: 1fr auto;
    gap: 10px;
  }

  .result-card .result-source {
    grid-column: 1 / -1;
  }

  .panel-actions {
    align-items: stretch;
    flex-direction: column-reverse;
    padding: 14px;
  }

  .panel-actions .button {
    width: 100%;
  }

  .panel-actions > span {
    margin: 4px 0 0;
    text-align: center;
  }

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

  .asset-illustration {
    min-height: 230px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .fact-sheet {
    padding: 18px 16px;
  }

  .fact-sheet dl {
    grid-template-columns: repeat(2, 1fr);
  }

  .risk-register,
  .criteria-list {
    padding-inline: 16px;
  }

  .radar-summary {
    grid-template-columns: 100px minmax(0, 1fr);
    gap: 18px;
    padding-inline: 16px;
  }

  .radar-summary strong {
    font-size: 35px;
  }

  .criteria-list article {
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 10px;
    padding: 10px 0;
  }

  .criteria-list article > .status {
    grid-column: 2;
  }

  .packet-preview {
    width: calc(100% - 24px);
    margin-block: 12px;
    padding: 16px;
  }

  .packet-title {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .packet-metrics {
    grid-template-columns: 1fr;
  }

  .packet-metrics div + div {
    padding-left: 0;
    border-top: 1px solid #c7c4bb;
    border-left: 0;
  }

  .packet-columns {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .packet-preview header,
  .packet-preview footer {
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
