:root {
  --ink: #111815;
  --ink-2: #0e3b31;
  --paper: #f7f8f6;
  --paper-2: #ffffff;
  --paper-3: #eef1ee;
  --signal: #1ba66f;
  --signal-dark: #147f57;
  --mineral: #0e3b31;
  --muted: #5f6b65;
  --line: #dce2de;
  --line-dark: #36584f;
  --white: #ffffff;
  --danger: #a63d38;
  --warning: #9a6517;
  --info: #1e6378;
  --font-display: "Manrope", Arial, sans-serif;
  --font-ui: "Manrope", Arial, sans-serif;
  --font-editorial: "Source Serif 4", Georgia, serif;
  --font-mono: "Manrope", Arial, sans-serif;
  --step--1: clamp(0.75rem, 0.73rem + 0.08vw, 0.8rem);
  --step-0: clamp(0.92rem, 0.9rem + 0.08vw, 0.98rem);
  --step-1: clamp(1.05rem, 1.01rem + 0.18vw, 1.16rem);
  --step-2: clamp(1.38rem, 1.25rem + 0.5vw, 1.72rem);
  --step-3: clamp(1.85rem, 1.62rem + 0.9vw, 2.5rem);
  --step-4: clamp(2.35rem, 1.98rem + 1.48vw, 3.35rem);
  --step-5: clamp(2.8rem, 2.28rem + 2vw, 4rem);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --shadow-soft: 0 8px 28px rgb(17 24 21 / 0.07);
  --shadow-float: 0 18px 46px rgb(17 24 21 / 0.15);
  --content: 1280px;
  --reading: 760px;
  --header-height: 68px;
  color-scheme: light;
}

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

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 24px);
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-ui);
  font-size: var(--step-0);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

body.is-locked {
  overflow: hidden;
}

button,
input,
select,
textarea {
  color: inherit;
  font: inherit;
}

button,
a {
  touch-action: manipulation;
}

button {
  border: 0;
}

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

img,
svg {
  display: block;
  max-width: 100%;
}

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

h1,
h2,
h3 {
  text-wrap: balance;
}

::selection {
  background: var(--signal);
  color: var(--ink);
}

:focus-visible {
  outline: 3px solid var(--mineral);
  outline-offset: 4px;
}

.section-dark :focus-visible,
.site-footer :focus-visible,
.compare-tray :focus-visible,
.success-panel :focus-visible,
.lead-story:focus-visible,
.procurement-feature:focus-visible {
  outline-color: var(--signal);
}

.skip-link {
  position: fixed;
  z-index: 2000;
  top: 10px;
  left: 10px;
  padding: 12px 16px;
  transform: translateY(-150%);
  background: var(--signal);
  color: var(--ink);
  font-weight: 700;
}

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

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

.site-header {
  position: sticky;
  z-index: 1000;
  top: 0;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  min-height: var(--header-height);
  padding: 10px max(20px, calc((100vw - var(--content)) / 2));
  border-bottom: 1px solid rgb(201 204 195 / 0.84);
  background: rgb(243 241 232 / 0.9);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  color: inherit;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 10px;
  background: var(--signal);
  color: var(--ink);
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: -0.04em;
}

.brand-wordmark {
  display: grid;
  font-size: 0.88rem;
  line-height: 1.08;
}

.brand-wordmark strong {
  font-size: 1rem;
  letter-spacing: -0.04em;
}

.brand-wordmark span:last-child {
  color: var(--muted);
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 2.6vw, 36px);
  font-size: 0.9rem;
  font-weight: 600;
}

.desktop-nav a,
.text-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  color: inherit;
  text-decoration: none;
}

.desktop-nav a::after,
.text-link::after {
  position: absolute;
  right: 0;
  bottom: 7px;
  left: 0;
  height: 2px;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  background: currentColor;
  transition: transform 180ms ease;
}

.desktop-nav a:hover::after,
.desktop-nav a[aria-current="page"]::after,
.text-link:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}

.button,
.icon-button,
.chip,
.filter-chip {
  cursor: pointer;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 11px 18px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.1;
  text-decoration: none;
  transition:
    background-color 180ms ease,
    color 180ms ease,
    border-color 180ms ease,
    transform 180ms ease;
}

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

.button-primary {
  background: var(--signal);
  color: var(--ink);
}

.button-primary:hover {
  background: #ccff55;
}

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

.button-dark:hover {
  background: var(--ink-2);
}

.button-outline {
  border-color: var(--ink);
  background: transparent;
  color: var(--ink);
}

.button-outline:hover {
  background: var(--ink);
  color: var(--white);
}

.button-quiet {
  border-color: var(--line);
  background: transparent;
  color: var(--ink);
}

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

.button-small {
  min-height: 44px;
  padding: 9px 14px;
  font-size: 0.82rem;
}

.button:disabled {
  cursor: not-allowed;
  opacity: 0.5;
  transform: none;
}

.icon-button {
  display: inline-grid;
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  place-items: center;
  border: 1px solid var(--muted);
  border-radius: 50%;
  background: transparent;
  color: var(--ink);
  transition:
    border-color 180ms ease,
    background 180ms ease;
}

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

.icon-button svg,
.search-field svg,
.button svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.menu-trigger {
  display: none;
}

.mobile-nav {
  position: fixed;
  z-index: 990;
  top: var(--header-height);
  right: 0;
  bottom: 0;
  left: 0;
  padding: 26px 20px max(30px, env(safe-area-inset-bottom));
  overflow-y: auto;
  background: var(--paper);
}

.mobile-nav[hidden] {
  display: none;
}

.mobile-nav a:not(.button) {
  display: flex;
  min-height: 58px;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 600;
  text-decoration: none;
}

.mobile-nav .button {
  width: 100%;
  margin-top: 24px;
}

main {
  min-height: 70vh;
}

.page-shell,
.section-shell {
  width: min(calc(100% - 40px), var(--content));
  margin-inline: auto;
}

.section-shell {
  padding-block: clamp(72px, 10vw, 132px);
}

.section-shell + .section-shell {
  border-top: 1px solid var(--line);
}

.section-dark {
  width: 100%;
  background: var(--ink);
  color: var(--white);
}

.section-dark .section-shell {
  border-color: var(--line-dark);
}

.section-signal {
  background: var(--signal);
  color: var(--ink);
}

.eyebrow,
.kicker,
.meta-label,
.footer-label {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-mono);
  font-size: 0.69rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1.35;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--signal);
  content: "";
}

.section-signal .eyebrow::before {
  background: var(--ink);
}

.display-title {
  max-width: 12ch;
  margin-bottom: 24px;
  font-family: var(--font-display);
  font-size: var(--step-5);
  font-weight: 500;
  letter-spacing: -0.065em;
  line-height: 0.88;
}

.page-title {
  max-width: 15ch;
  margin-bottom: 18px;
  font-family: var(--font-display);
  font-size: var(--step-4);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 0.96;
}

.section-title {
  max-width: 18ch;
  margin-bottom: 0;
  font-family: var(--font-display);
  font-size: var(--step-3);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 1;
}

.section-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.58fr);
  gap: 40px;
  align-items: end;
  margin-bottom: clamp(40px, 6vw, 74px);
}

.section-intro p,
.page-dek {
  max-width: 58ch;
  margin-bottom: 0;
  color: var(--muted);
  font-size: var(--step-1);
}

.section-dark .section-intro p,
.section-dark .page-dek {
  color: #b7c2bc;
}

.home-hero {
  position: relative;
  display: grid;
  min-height: min(800px, calc(100svh - var(--header-height)));
  align-items: end;
  overflow: hidden;
  background: #111c17;
  color: var(--white);
  isolation: isolate;
}

.hero-media,
.hero-media picture,
.hero-media img {
  position: absolute;
  z-index: -2;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-media img {
  object-fit: cover;
  object-position: center;
}

.hero-media::after {
  position: absolute;
  z-index: -1;
  inset: 0;
  background:
    linear-gradient(90deg, rgb(5 12 9 / 0.94) 0%, rgb(5 12 9 / 0.78) 38%, rgb(5 12 9 / 0.18) 70%),
    linear-gradient(0deg, rgb(5 12 9 / 0.78) 0%, transparent 48%);
  content: "";
}

.hero-content {
  width: min(calc(100% - 40px), var(--content));
  margin-inline: auto;
  padding-block: clamp(72px, 11vw, 140px) 46px;
}

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

.hero-copy .eyebrow {
  margin-bottom: 22px;
  color: var(--signal);
}

.hero-copy .eyebrow::before {
  background: currentColor;
}

.hero-copy h1 {
  max-width: 9.4ch;
  margin-bottom: 24px;
  font-family: var(--font-display);
  font-size: var(--step-5);
  font-weight: 500;
  letter-spacing: -0.07em;
  line-height: 0.86;
}

.hero-copy > p {
  max-width: 52ch;
  margin-bottom: 30px;
  color: #dce3df;
  font-size: var(--step-1);
}

.hero-search {
  display: grid;
  grid-template-columns: auto 1fr auto;
  width: min(100%, 690px);
  min-height: 66px;
  align-items: center;
  gap: 12px;
  padding: 8px 8px 8px 20px;
  border-radius: 999px;
  background: var(--paper-2);
  color: var(--ink);
  box-shadow: var(--shadow-float);
}

.hero-search svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-width: 1.8;
}

.hero-search input {
  min-width: 0;
  height: 50px;
  border: 0;
  outline: 0;
  background: transparent;
  font-size: 1rem;
}

.hero-search:focus-within {
  outline: 3px solid var(--signal);
  outline-offset: 4px;
}

.hero-search .button {
  min-width: 132px;
}

.popular-searches {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.popular-searches > span {
  margin-right: 4px;
  align-self: center;
  color: #aebbb4;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.chip,
.filter-chip {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  padding: 7px 12px;
  border: 1px solid currentColor;
  border-radius: 999px;
  background: transparent;
  color: inherit;
  font-size: 0.78rem;
  font-weight: 600;
  text-decoration: none;
  transition:
    background 180ms ease,
    color 180ms ease;
}

.home-hero .chip {
  border-color: rgb(255 255 255 / 0.34);
}

.home-hero .chip:hover {
  border-color: var(--signal);
  background: var(--signal);
  color: var(--ink);
}

.hero-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: clamp(48px, 8vh, 92px);
  padding-top: 20px;
  border-top: 1px solid rgb(255 255 255 / 0.22);
  color: #b7c2bc;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero-foot a {
  color: var(--white);
}

.evidence-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  width: min(calc(100% - 40px), var(--content));
  margin: -1px auto 0;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--paper-2);
}

.evidence-stat {
  min-height: 126px;
  padding: 24px;
  border-left: 1px solid var(--line);
}

.evidence-stat strong {
  display: block;
  margin: 8px 0 2px;
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 600;
  letter-spacing: -0.05em;
  line-height: 1;
}

.evidence-stat span:last-child {
  color: var(--muted);
  font-size: 0.78rem;
}

.signal-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(320px, 0.8fr);
  gap: clamp(34px, 6vw, 84px);
}

.lead-story {
  display: grid;
  align-content: space-between;
  min-height: 500px;
  padding: clamp(28px, 5vw, 58px);
  border-radius: var(--radius-lg);
  background: var(--ink);
  color: var(--white);
  text-decoration: none;
  transition: transform 240ms ease;
}

.lead-story:hover {
  transform: translateY(-3px);
}

.lead-story h3 {
  max-width: 12ch;
  margin: 36px 0 20px;
  font-family: var(--font-display);
  font-size: var(--step-3);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 1;
}

.lead-story p {
  max-width: 50ch;
  color: #bbc5c0;
}

.story-meta,
.model-meta,
.source-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  align-items: center;
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.lead-story .story-meta {
  color: #dbe4df;
}

.story-index {
  border-top: 1px solid var(--line);
}

.story-row {
  display: grid;
  grid-template-columns: 72px 1fr auto;
  gap: 16px;
  align-items: start;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
  color: inherit;
  text-decoration: none;
}

.story-row:hover h3 {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.story-row time {
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 0.68rem;
}

.story-row h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.story-row svg,
.arrow-link svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-width: 1.6;
}

.section-action {
  margin-top: 32px;
}

.procurement-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-lg);
  background: var(--line-dark);
}

.procurement-feature {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 180px;
  min-height: 390px;
  gap: 24px;
  padding: clamp(28px, 4vw, 48px);
  background: var(--ink-2);
  color: var(--white);
  text-decoration: none;
}

.procurement-feature:hover .model-visual {
  transform: translateY(-5px);
}

.procurement-feature h3 {
  margin: 24px 0 12px;
  font-family: var(--font-display);
  font-size: var(--step-2);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1;
}

.procurement-feature p {
  color: #b9c4be;
  font-size: 0.94rem;
}

.model-visual {
  position: relative;
  display: grid;
  min-height: 230px;
  align-self: stretch;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgb(255 255 255 / 0.12);
  border-radius: 999px 999px 24px 24px;
  background:
    radial-gradient(circle at 50% 20%, rgb(184 242 58 / 0.25), transparent 28%),
    linear-gradient(180deg, #263a31, #121d18);
  transition: transform 240ms ease;
}

.model-visual::before {
  width: 62px;
  height: 72px;
  border: 2px solid var(--signal);
  border-radius: 48% 48% 40% 40%;
  box-shadow:
    0 82px 0 16px #192720,
    -32px 96px 0 -23px var(--signal),
    32px 96px 0 -23px var(--signal),
    -20px 170px 0 -17px var(--signal),
    20px 170px 0 -17px var(--signal);
  content: "";
}

.model-visual::after {
  position: absolute;
  right: 14px;
  bottom: 12px;
  padding: 4px 7px;
  border: 1px solid rgb(255 255 255 / 0.16);
  color: #bbc7c0;
  content: attr(data-code);
  font-family: var(--font-mono);
  font-size: 0.58rem;
  letter-spacing: 0.08em;
}

.status-pill {
  display: inline-flex;
  width: fit-content;
  min-height: 28px;
  align-items: center;
  gap: 7px;
  padding: 5px 9px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--paper-2);
  color: var(--ink);
  font-family: var(--font-mono);
  font-size: 0.61rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 1.2;
  text-transform: uppercase;
}

.section-dark .status-pill {
  border-color: var(--line-dark);
  background: #223229;
  color: var(--white);
}

.status-pill::before {
  width: 7px;
  height: 7px;
  flex: 0 0 7px;
  border-radius: 50%;
  background: var(--signal);
  content: "";
}

.status-pill.status-watch::before {
  background: #e1a728;
}

.status-pill.status-enterprise::before {
  background: #6eb0c7;
}

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

.use-case-row {
  display: grid;
  grid-template-columns: minmax(190px, 0.6fr) minmax(0, 1fr) auto;
  gap: 30px;
  align-items: center;
  min-height: 128px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
  color: inherit;
  text-decoration: none;
}

.use-case-row h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: var(--step-2);
  font-weight: 500;
  letter-spacing: -0.04em;
}

.use-case-row p {
  max-width: 58ch;
  margin: 0;
  color: var(--muted);
}

.use-case-row .row-number {
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 0.7rem;
}

.use-case-row:hover h3 {
  color: var(--mineral);
}

.trust-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--line);
}

.trust-step {
  min-height: 300px;
  padding: 30px;
  background: var(--paper-2);
}

.trust-step .step-number {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  background: var(--ink);
  color: var(--white);
  font-family: var(--font-mono);
  font-size: 0.7rem;
}

.trust-step h3 {
  margin: 82px 0 12px;
  font-family: var(--font-display);
  font-size: 1.65rem;
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 1.05;
}

.trust-step p {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.newsletter-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.75fr);
  gap: 60px;
  align-items: end;
}

.newsletter-panel h2 {
  max-width: 12ch;
  margin: 16px 0 20px;
  font-family: var(--font-display);
  font-size: var(--step-4);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 0.95;
}

.newsletter-form {
  display: grid;
  gap: 14px;
}

.newsletter-inline {
  display: grid;
  grid-template-columns: 1fr auto;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--ink);
}

.newsletter-inline input {
  min-width: 0;
  height: 54px;
  border: 0;
  outline: 0;
  background: transparent;
  font-size: 1.08rem;
}

.newsletter-inline:focus-within,
.search-field:focus-within {
  outline: 3px solid var(--mineral);
  outline-offset: 4px;
}

.check-row {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: var(--muted);
  font-size: 0.76rem;
}

.check-row input {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  margin-top: 2px;
  accent-color: var(--ink);
}

.page-hero {
  padding-block: clamp(60px, 9vw, 118px) clamp(46px, 7vw, 86px);
  border-bottom: 1px solid var(--line);
}

.page-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.55fr);
  gap: 60px;
  align-items: end;
}

.page-hero .eyebrow {
  margin-bottom: 22px;
}

.page-hero-note {
  padding: 22px;
  border-left: 3px solid var(--signal-dark);
  background: var(--paper-2);
}

.page-hero-note strong {
  display: block;
  margin-bottom: 7px;
  font-size: 0.88rem;
}

.page-hero-note p {
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
}

.reviewed-listings-band {
  padding-block: clamp(48px, 7vw, 84px);
  border-bottom: 1px solid var(--line);
  background: var(--paper-2);
}

.owner-listing-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.owner-listing-card,
.listing-empty {
  padding: clamp(24px, 4vw, 38px);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--paper);
}

.owner-listing-card h3 {
  margin: 22px 0 5px;
  font-family: var(--font-display);
  font-size: var(--step-2);
  font-weight: 500;
  letter-spacing: -0.04em;
}

.owner-listing-card > p {
  color: var(--muted);
  font-size: 0.86rem;
}

.owner-listing-provider {
  color: var(--ink) !important;
  font-weight: 600;
}

.owner-listing-card .tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.owner-listing-card .tag-row span {
  padding: 7px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.04em;
  line-height: 1.2;
  text-transform: uppercase;
}

.listing-evidence {
  display: grid;
  gap: 4px;
  margin-block: 24px;
  padding-block: 16px;
  border-block: 1px solid var(--line);
  font-size: 0.76rem;
}

.listing-evidence span,
.listing-actions > span {
  color: var(--muted);
}

.listing-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  font-size: 0.7rem;
}

.listing-empty {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
}

.listing-empty p {
  margin: 0;
  color: var(--muted);
}

.marketplace-layout {
  display: grid;
  grid-template-columns: 270px minmax(0, 1fr);
  gap: clamp(32px, 5vw, 70px);
  padding-block: 52px 110px;
}

.filter-panel {
  position: sticky;
  top: calc(var(--header-height) + 22px);
  align-self: start;
}

.filter-panel-head,
.results-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.filter-panel h2,
.results-head h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 600;
  letter-spacing: -0.035em;
}

.filter-group {
  margin-top: 24px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.filter-group > label,
.field-label {
  display: block;
  margin-bottom: 8px;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.input,
.select,
.textarea {
  width: 100%;
  min-height: 48px;
  padding: 11px 13px;
  border: 1px solid var(--muted);
  border-radius: var(--radius-sm);
  outline: 0;
  background: var(--paper-2);
  color: var(--ink);
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.textarea {
  min-height: 112px;
  resize: vertical;
}

.input:focus,
.select:focus,
.textarea:focus {
  border-color: var(--mineral);
  box-shadow: 0 0 0 3px rgb(49 92 82 / 0.18);
}

.input:focus-visible,
.select:focus-visible,
.textarea:focus-visible {
  outline: 3px solid var(--mineral);
  outline-offset: 2px;
}

.field-help {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.73rem;
}

.filter-actions {
  display: grid;
  gap: 8px;
  margin-top: 28px;
}

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

.results-head {
  min-height: 48px;
  margin-bottom: 22px;
}

.results-head p {
  margin: 0;
  color: var(--muted);
  font-size: 0.8rem;
}

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

.model-card {
  display: grid;
  grid-template-columns: 154px minmax(0, 1fr) 220px;
  gap: 28px;
  align-items: stretch;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}

.model-card-visual {
  min-height: 200px;
}

.model-card-main {
  min-width: 0;
}

.model-card h3 {
  margin: 13px 0 10px;
  font-family: var(--font-display);
  font-size: var(--step-2);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1;
}

.model-card h3 a {
  text-decoration: none;
}

.model-card h3 a:hover {
  text-decoration: underline;
  text-underline-offset: 5px;
}

.model-card-main > p {
  max-width: 58ch;
  color: var(--muted);
  font-size: 0.9rem;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.tag {
  display: inline-flex;
  min-height: 27px;
  align-items: center;
  padding: 4px 8px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 0.59rem;
  line-height: 1.2;
  text-transform: uppercase;
}

.model-card-side {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
  padding-left: 24px;
  border-left: 1px solid var(--line);
}

.path-summary strong {
  display: block;
  margin: 6px 0;
  font-size: 0.85rem;
}

.path-summary p {
  margin: 0;
  color: var(--muted);
  font-size: 0.75rem;
}

.model-actions {
  display: grid;
  gap: 8px;
}

.compare-control {
  display: flex;
  min-height: 44px;
  align-items: center;
  gap: 9px;
  font-size: 0.76rem;
  font-weight: 600;
}

.compare-control input {
  width: 18px;
  height: 18px;
  accent-color: var(--mineral);
}

.empty-state {
  padding: 70px 24px;
  text-align: center;
}

.empty-state h3 {
  font-family: var(--font-display);
  font-size: var(--step-2);
}

.empty-state p {
  max-width: 48ch;
  margin-inline: auto;
  color: var(--muted);
}

.tracker-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 26px;
}

.tracker-toolbar .search-field {
  width: min(100%, 420px);
}

.tracker-wrap {
  overflow-x: auto;
  border-top: 1px solid var(--ink);
}

.tracker-table {
  width: 100%;
  min-width: 850px;
  border-collapse: collapse;
  text-align: left;
}

.tracker-table th,
.tracker-table td {
  padding: 17px 14px;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}

.tracker-table th {
  font-family: var(--font-mono);
  font-size: 0.63rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.tracker-table td {
  font-size: 0.82rem;
}

.tracker-table .model-cell a {
  display: block;
  margin-bottom: 3px;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  text-decoration: none;
}

.tracker-table .model-cell span {
  color: var(--muted);
  font-size: 0.7rem;
}

.model-detail-hero {
  padding-block: clamp(52px, 8vw, 100px);
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-bottom: 40px;
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 0.66rem;
  text-transform: uppercase;
}

.breadcrumbs a {
  color: inherit;
}

.model-detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.72fr);
  gap: clamp(40px, 7vw, 96px);
}

.model-detail-copy h1 {
  margin: 22px 0 24px;
  font-family: var(--font-display);
  font-size: var(--step-5);
  font-weight: 500;
  letter-spacing: -0.065em;
  line-height: 0.86;
}

.model-detail-copy .maker-line {
  margin-bottom: 8px;
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  text-transform: uppercase;
}

.model-detail-copy .page-dek {
  max-width: 54ch;
}

.model-detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.detail-visual {
  min-height: 580px;
  border-radius: 999px 999px 40px 40px;
}

.detail-visual::before {
  transform: scale(1.7);
}

.detail-columns {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.62fr);
  gap: clamp(44px, 7vw, 90px);
}

.detail-section {
  padding-block: 42px;
  border-top: 1px solid var(--line);
}

.detail-section h2 {
  margin-bottom: 24px;
  font-family: var(--font-display);
  font-size: var(--step-2);
  font-weight: 600;
  letter-spacing: -0.04em;
}

.fit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.fit-grid h3 {
  margin-bottom: 14px;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.plain-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.plain-list li {
  position: relative;
  padding: 10px 0 10px 18px;
  border-top: 1px solid var(--line);
  font-size: 0.86rem;
}

.plain-list li::before {
  position: absolute;
  top: 17px;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--mineral);
  content: "";
}

.spec-list {
  margin: 0;
}

.spec-row {
  display: grid;
  grid-template-columns: minmax(130px, 0.8fr) 1fr;
  gap: 18px;
  padding: 13px 0;
  border-top: 1px solid var(--line);
}

.spec-row dt {
  color: var(--muted);
  font-size: 0.72rem;
}

.spec-row dd {
  margin: 0;
  font-family: var(--font-mono);
  font-size: 0.72rem;
}

.evidence-card {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--paper-2);
}

.evidence-card + .evidence-card {
  margin-top: 12px;
}

.evidence-card h3 {
  margin: 11px 0 8px;
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
}

.evidence-card p {
  color: var(--muted);
  font-size: 0.8rem;
}

.evidence-card a {
  font-size: 0.76rem;
  font-weight: 700;
}

.news-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.75fr);
  gap: clamp(40px, 7vw, 88px);
}

.news-lead h2 {
  max-width: 11ch;
  margin: 20px 0;
  font-family: var(--font-display);
  font-size: var(--step-4);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 0.96;
}

.news-lead h2 a {
  text-decoration: none;
}

.news-lead p {
  max-width: 58ch;
  color: var(--muted);
}

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

.news-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
}

.filter-chip {
  border-color: var(--line);
}

.filter-chip:hover,
.filter-chip.is-active {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--white);
}

.article-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0 30px;
  border-top: 1px solid var(--line);
}

.article-card {
  display: flex;
  min-height: 340px;
  flex-direction: column;
  justify-content: space-between;
  padding: 25px 0;
  border-bottom: 1px solid var(--line);
  color: inherit;
  text-decoration: none;
}

.article-card h3 {
  margin: 20px 0 12px;
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1.04;
}

.article-card p {
  color: var(--muted);
  font-size: 0.82rem;
}

.article-card:hover h3 {
  text-decoration: underline;
  text-underline-offset: 5px;
}

.article-shell {
  width: min(calc(100% - 40px), var(--reading));
  margin-inline: auto;
  padding-block: clamp(60px, 9vw, 110px);
}

.article-shell h1 {
  margin: 22px 0 28px;
  font-family: var(--font-display);
  font-size: var(--step-4);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 0.96;
}

.article-dek {
  margin-bottom: 34px;
  color: var(--muted);
  font-family: var(--font-display);
  font-size: var(--step-1);
  line-height: 1.35;
}

.article-byline {
  display: flex;
  flex-wrap: wrap;
  gap: 9px 20px;
  padding: 18px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 0.67rem;
  text-transform: uppercase;
}

.article-body {
  padding-block: 42px;
}

.article-body p {
  margin-bottom: 26px;
  font-family: var(--font-display);
  font-size: clamp(1.18rem, 1.1rem + 0.3vw, 1.4rem);
  line-height: 1.65;
}

.article-callout {
  margin: 20px 0 40px;
  padding: 28px;
  border-left: 3px solid var(--signal-dark);
  background: var(--paper-2);
}

.article-callout strong {
  display: block;
  margin-bottom: 8px;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.article-callout p {
  margin: 0;
  font-family: var(--font-ui);
  font-size: 0.92rem;
}

.source-box {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
}

.source-box h2 {
  margin: 12px 0 8px;
  font-family: var(--font-display);
  font-size: 1.5rem;
}

.source-box p {
  color: var(--muted);
  font-size: 0.82rem;
}

.compare-tray {
  position: fixed;
  z-index: 850;
  right: 20px;
  bottom: 20px;
  left: 20px;
  display: flex;
  width: min(calc(100% - 40px), 820px);
  min-height: 72px;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-inline: auto;
  padding: 12px 14px 12px 20px;
  border: 1px solid #42544a;
  border-radius: 18px;
  background: var(--ink);
  color: var(--white);
  box-shadow: var(--shadow-float);
}

.compare-tray[hidden] {
  display: none;
}

.compare-tray .button-quiet,
.success-panel .button-quiet {
  border-color: #617269;
  color: var(--white);
}

.compare-tray .button-quiet:hover,
.success-panel .button-quiet:hover {
  border-color: var(--white);
  background: var(--ink-2);
  color: var(--white);
}

.compare-selected {
  display: flex;
  min-width: 0;
  gap: 8px;
  align-items: center;
}

.compare-selected span {
  max-width: 130px;
  overflow: hidden;
  padding: 6px 9px;
  border: 1px solid #42544a;
  border-radius: 999px;
  color: #d8e2dc;
  font-size: 0.7rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.compare-tray-actions {
  display: flex;
  flex: 0 0 auto;
  gap: 8px;
}

.compare-table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
  table-layout: fixed;
  border-top: 1px solid var(--ink);
  border-left: 1px solid var(--line);
}

.compare-scroll {
  overflow-x: auto;
}

.compare-cell {
  padding: 18px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--paper-2);
  font-size: 0.8rem;
  text-align: left;
  vertical-align: top;
}

.compare-cell.compare-label {
  width: 190px;
  background: var(--paper-3);
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 0.66rem;
  text-transform: uppercase;
}

.compare-cell.compare-head h2 {
  margin: 12px 0 6px;
  font-family: var(--font-display);
  font-size: 1.5rem;
}

.wizard-shell {
  width: min(calc(100% - 40px), 1000px);
  margin-inline: auto;
  padding-block: clamp(50px, 8vw, 100px);
}

.wizard-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  gap: 42px;
  align-items: end;
  margin-bottom: 42px;
}

.wizard-head h1 {
  margin: 18px 0 0;
  font-family: var(--font-display);
  font-size: var(--step-4);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 0.96;
}

.wizard-truth {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--paper-2);
  font-size: 0.78rem;
}

.wizard-truth strong {
  display: block;
  margin-bottom: 4px;
}

.wizard-progress {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  margin-bottom: 30px;
}

.progress-step {
  min-height: 52px;
  padding: 10px 12px;
  border-top: 3px solid var(--line);
  color: var(--muted);
  font-size: 0.7rem;
}

.progress-step strong {
  display: block;
  margin-bottom: 2px;
  font-family: var(--font-mono);
  font-size: 0.62rem;
}

.progress-step.is-active,
.progress-step.is-complete {
  border-color: var(--mineral);
  color: var(--ink);
}

.progress-step.is-active {
  border-color: var(--signal-dark);
}

.wizard-card {
  padding: clamp(26px, 5vw, 52px);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--paper-2);
  box-shadow: var(--shadow-soft);
}

.wizard-step[hidden] {
  display: none;
}

.wizard-step h2 {
  margin-bottom: 8px;
  font-family: var(--font-display);
  font-size: var(--step-2);
  font-weight: 600;
  letter-spacing: -0.04em;
}

.wizard-step > p {
  max-width: 60ch;
  margin-bottom: 30px;
  color: var(--muted);
  font-size: 0.88rem;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.field {
  min-width: 0;
}

.field-full {
  grid-column: 1 / -1;
}

.field-error {
  display: block;
  min-height: 18px;
  margin-top: 5px;
  color: var(--danger);
  font-size: 0.72rem;
}

.field [aria-invalid="true"] {
  border-color: var(--danger);
}

.checkbox-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.checkbox-card {
  display: flex;
  min-height: 58px;
  align-items: flex-start;
  gap: 10px;
  padding: 12px;
  border: 1px solid var(--muted);
  border-radius: var(--radius-sm);
  cursor: pointer;
}

.checkbox-card:has(input:checked) {
  border-color: var(--mineral);
  background: rgb(49 92 82 / 0.08);
}

.checkbox-card:has(input:focus-visible) {
  outline: 3px solid var(--mineral);
  outline-offset: 2px;
}

.checkbox-card input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--mineral);
}

.checkbox-card strong {
  display: block;
  font-size: 0.8rem;
}

.checkbox-card span {
  display: block;
  color: var(--muted);
  font-size: 0.68rem;
}

.wizard-actions {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 34px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.error-summary {
  margin-bottom: 24px;
  padding: 18px;
  border-left: 4px solid var(--danger);
  background: #fff1ef;
  color: #641414;
  font-size: 0.8rem;
}

.error-summary:empty {
  display: none;
}

.error-summary strong {
  display: block;
  margin-bottom: 5px;
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

.review-block {
  padding: 20px;
  background: var(--paper);
}

.review-block span {
  display: block;
  margin-bottom: 7px;
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 0.63rem;
  text-transform: uppercase;
}

.review-block strong {
  font-size: 0.88rem;
}

.success-panel {
  padding: clamp(30px, 6vw, 68px);
  border-radius: var(--radius-lg);
  background: var(--ink);
  color: var(--white);
  text-align: left;
}

.success-mark {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border-radius: 50%;
  background: var(--signal);
  color: var(--ink);
}

.success-mark svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

.success-panel h2 {
  max-width: 12ch;
  margin: 34px 0 16px;
  font-family: var(--font-display);
  font-size: var(--step-3);
  font-weight: 500;
  letter-spacing: -0.05em;
}

.success-panel p {
  max-width: 55ch;
  color: #b8c4be;
}

.private-link-note {
  margin-bottom: 12px;
  font-size: 0.74rem;
}

.status-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(28px, 6vw, 80px);
  align-items: start;
}

.status-form,
.status-card {
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--paper-2);
}

.status-form {
  display: grid;
  gap: 20px;
}

.status-card h2 {
  margin: 18px 0 8px;
  font-family: var(--font-display);
  font-size: var(--step-3);
  font-weight: 500;
  letter-spacing: -0.04em;
}

.status-card > p {
  color: var(--muted);
}

.status-match-list {
  display: grid;
  gap: 1px;
  margin-top: 28px;
  background: var(--line);
}

.status-match-list article,
.status-match-list > p {
  margin: 0;
  padding: 22px;
  background: var(--paper);
}

.status-match-list h3 {
  margin: 12px 0 6px;
  font-family: var(--font-display);
  font-size: 1.35rem;
}

.status-match-list p,
.status-match-list span {
  color: var(--muted);
  font-size: 0.78rem;
}

.confirmation-id {
  display: inline-flex;
  margin: 10px 0 26px;
  padding: 8px 12px;
  border: 1px solid #405148;
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 0.7rem;
}

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

.trust-guide {
  display: grid;
  grid-template-columns: 60px minmax(0, 0.85fr) minmax(280px, 0.7fr);
  gap: 34px;
  padding: 34px 0;
  border-bottom: 1px solid var(--line);
}

.trust-guide-number {
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 0.7rem;
}

.trust-guide h2 {
  margin-bottom: 12px;
  font-family: var(--font-display);
  font-size: var(--step-2);
  font-weight: 600;
  letter-spacing: -0.04em;
}

.trust-guide p {
  margin: 0;
  color: var(--muted);
  font-size: 0.86rem;
}

.trust-guide-action {
  padding-left: 24px;
  border-left: 1px solid var(--line);
}

.trust-guide-action strong {
  display: block;
  margin-bottom: 8px;
  font-family: var(--font-mono);
  font-size: 0.64rem;
  text-transform: uppercase;
}

.trust-guide-action a {
  display: inline-block;
  margin-top: 14px;
  font-size: 0.76rem;
  font-weight: 700;
}

.search-field {
  display: flex;
  min-height: 48px;
  align-items: center;
  gap: 10px;
  padding: 0 13px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--paper-2);
}

.search-field input {
  width: 100%;
  min-width: 0;
  height: 46px;
  border: 0;
  outline: 0;
  background: transparent;
}

.search-field svg {
  flex: 0 0 20px;
}

.search-dialog {
  width: min(calc(100% - 28px), 860px);
  max-height: min(760px, calc(100dvh - 40px));
  padding: 0;
  overflow: hidden;
  border: 1px solid var(--line-dark);
  border-radius: 24px;
  background: var(--paper);
  color: var(--ink);
  box-shadow: var(--shadow-float);
}

.search-dialog::backdrop {
  background: rgb(5 12 9 / 0.74);
  backdrop-filter: blur(6px);
}

.dialog-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  padding: 28px 30px 20px;
}

.dialog-head h2 {
  margin: 8px 0 0;
  font-family: var(--font-display);
  font-size: var(--step-2);
  font-weight: 600;
  letter-spacing: -0.04em;
}

.search-field-large {
  margin: 0 30px 20px;
  border-color: var(--ink);
  border-radius: 999px;
}

.search-field-large kbd {
  padding: 3px 6px;
  border: 1px solid var(--line);
  border-radius: 5px;
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 0.62rem;
}

.search-results {
  max-height: 500px;
  padding: 0 30px 30px;
  overflow-y: auto;
}

.search-group + .search-group {
  margin-top: 26px;
}

.search-group-title {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 0.64rem;
  text-transform: uppercase;
}

.search-result {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 14px;
  min-height: 54px;
  align-items: center;
  padding: 10px 0;
  border-top: 1px solid var(--line);
  color: inherit;
  text-decoration: none;
}

.search-result strong {
  display: block;
  font-size: 0.86rem;
}

.search-result span {
  color: var(--muted);
  font-size: 0.7rem;
}

.search-result:hover strong {
  text-decoration: underline;
}

.toast-region {
  position: fixed;
  z-index: 2000;
  right: 20px;
  bottom: 20px;
  display: grid;
  width: min(calc(100% - 40px), 360px);
  gap: 8px;
  pointer-events: none;
}

.toast {
  padding: 14px 16px;
  border: 1px solid #41544a;
  border-radius: 12px;
  background: var(--ink);
  color: var(--white);
  box-shadow: var(--shadow-float);
  font-size: 0.8rem;
  animation: toast-in 220ms ease both;
}

@keyframes toast-in {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
}

.loading-screen {
  display: grid;
  width: min(calc(100% - 40px), var(--content));
  min-height: 60vh;
  align-content: center;
  margin-inline: auto;
}

.loading-line {
  width: min(100%, 540px);
  height: 2px;
  margin-top: 20px;
  overflow: hidden;
  background: var(--line);
}

.loading-line::after {
  display: block;
  width: 42%;
  height: 100%;
  background: var(--mineral);
  content: "";
  animation: loading 1s ease-in-out infinite alternate;
}

@keyframes loading {
  to {
    transform: translateX(140%);
  }
}

.site-footer {
  padding: clamp(54px, 8vw, 90px) max(20px, calc((100vw - var(--content)) / 2)) 24px;
  border-top: 1px solid #38473f;
  background: var(--ink);
  color: var(--white);
}

.footer-lead {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: end;
  padding-bottom: 48px;
  border-bottom: 1px solid #38473f;
}

.footer-brand .brand-wordmark span:last-child {
  color: #99a8a0;
}

.footer-lead p {
  max-width: 19ch;
  margin: 0;
  font-family: var(--font-display);
  font-size: var(--step-2);
  letter-spacing: -0.04em;
  line-height: 1;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 40px;
  padding-block: 48px 70px;
}

.footer-links > div {
  display: grid;
  align-content: start;
  gap: 9px;
}

.footer-label {
  margin-bottom: 10px;
  color: #8f9d96;
}

.footer-links a,
.footer-links span:not(.footer-label) {
  color: #d2dcd7;
  font-size: 0.82rem;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 20px;
  border-top: 1px solid #38473f;
  color: #899890;
  font-family: var(--font-mono);
  font-size: 0.61rem;
  text-transform: uppercase;
}

.noscript {
  position: fixed;
  z-index: 3000;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 14px 20px;
  background: var(--danger);
  color: white;
  text-align: center;
}

@media (max-width: 1080px) {
  .desktop-nav {
    display: none;
  }

  .site-header {
    grid-template-columns: 1fr auto;
  }

  .menu-trigger {
    display: inline-grid;
  }

  .header-list-link {
    display: none;
  }

  .trust-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .model-card {
    grid-template-columns: 140px minmax(0, 1fr);
  }

  .model-card-side {
    grid-column: 2;
    flex-direction: row;
    padding: 18px 0 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

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

@media (max-width: 820px) {
  .status-layout {
    grid-template-columns: 1fr;
  }

  .owner-listing-grid {
    grid-template-columns: 1fr;
  }

  .listing-empty {
    grid-template-columns: 1fr;
  }

  :root {
    --header-height: 68px;
  }

  .site-header {
    padding-inline: 16px;
  }

  .header-request-link {
    display: none;
  }

  .brand-mark {
    width: 40px;
    height: 40px;
  }

  .page-shell,
  .section-shell,
  .hero-content,
  .evidence-strip,
  .article-shell,
  .wizard-shell {
    width: min(calc(100% - 32px), var(--content));
  }

  .section-intro,
  .page-hero-grid,
  .signal-grid,
  .newsletter-panel,
  .news-hero-grid,
  .model-detail-grid,
  .detail-columns,
  .wizard-head,
  .footer-lead {
    grid-template-columns: 1fr;
  }

  .home-hero {
    min-height: calc(100svh - var(--header-height));
  }

  .hero-media::after {
    background:
      linear-gradient(0deg, rgb(5 12 9 / 0.98) 0%, rgb(5 12 9 / 0.76) 56%, rgb(5 12 9 / 0.18) 100%),
      linear-gradient(90deg, rgb(5 12 9 / 0.65), transparent);
  }

  .hero-media img {
    object-position: right center;
  }

  .hero-copy h1 {
    max-width: 10ch;
  }

  .hero-foot {
    align-items: flex-start;
  }

  .evidence-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

  .use-case-row p {
    grid-column: 1 / -1;
  }

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

  .filter-panel {
    position: static;
    padding: 20px;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: var(--paper-2);
  }

  .filter-fields {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }

  .filter-group {
    margin: 0;
    padding: 0;
    border: 0;
  }

  .filter-actions {
    grid-template-columns: 1fr 1fr;
  }

  .detail-visual {
    min-height: 460px;
    order: -1;
  }

  .wizard-truth {
    max-width: 520px;
  }

  .trust-guide {
    grid-template-columns: 42px 1fr;
  }

  .trust-guide-action {
    grid-column: 2;
    padding: 18px 0 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .site-footer {
    padding-inline: 20px;
  }
}

@media (max-width: 620px) {
  .brand-wordmark {
    display: none;
  }

  .header-actions {
    gap: 7px;
  }

  .section-shell {
    padding-block: 72px;
  }

  .home-hero {
    min-height: max(680px, calc(100svh - var(--header-height)));
  }

  .hero-content {
    padding-block: 60px 30px;
  }

  .hero-copy .eyebrow {
    margin-bottom: 16px;
  }

  .hero-copy > p {
    font-size: 1rem;
  }

  .hero-search {
    grid-template-columns: auto 1fr;
    min-height: 58px;
    padding: 5px 14px;
    border-radius: 16px;
  }

  .hero-search .button {
    grid-column: 1 / -1;
    width: 100%;
  }

  .hero-foot {
    display: grid;
    margin-top: 44px;
  }

  .evidence-strip {
    width: 100%;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border-right: 0;
  }

  .evidence-stat {
    min-height: 110px;
    padding: 18px 16px;
  }

  .evidence-stat strong {
    font-size: 2.1rem;
  }

  .lead-story {
    min-height: 430px;
  }

  .story-row {
    grid-template-columns: 60px 1fr;
  }

  .story-row svg {
    display: none;
  }

  .procurement-feature {
    grid-template-columns: 1fr 120px;
    min-height: 330px;
    padding: 24px;
  }

  .model-visual::before {
    transform: scale(0.8);
  }

  .trust-steps {
    grid-template-columns: 1fr;
  }

  .trust-step {
    min-height: 250px;
  }

  .trust-step h3 {
    margin-top: 48px;
  }

  .newsletter-inline {
    grid-template-columns: 1fr;
    gap: 10px;
    border: 0;
  }

  .newsletter-inline input {
    padding: 0 12px;
    border-bottom: 2px solid var(--ink);
  }

  .page-hero {
    padding-block: 52px 42px;
  }

  .filter-fields {
    grid-template-columns: 1fr;
  }

  .model-card {
    grid-template-columns: 100px minmax(0, 1fr);
    gap: 18px;
  }

  .model-card-visual {
    min-height: 160px;
  }

  .model-card-main > p,
  .model-card-main .tag-list {
    grid-column: 1 / -1;
  }

  .model-card h3 {
    font-size: 1.5rem;
  }

  .model-card-side {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1fr;
  }

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

  .article-card {
    min-height: 280px;
  }

  .detail-visual {
    min-height: 380px;
  }

  .fit-grid,
  .form-grid,
  .checkbox-card-grid,
  .review-grid {
    grid-template-columns: 1fr;
  }

  .field-full {
    grid-column: auto;
  }

  .wizard-progress {
    gap: 4px;
  }

  .progress-step {
    min-height: 43px;
    padding: 7px 3px;
    font-size: 0.58rem;
  }

  .progress-step strong {
    font-size: 0.52rem;
  }

  .wizard-card {
    padding: 24px 18px;
    border-radius: 18px;
  }

  .wizard-actions {
    align-items: stretch;
  }

  .wizard-actions .button {
    flex: 1;
  }

  .trust-guide {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .trust-guide-action {
    grid-column: 1;
  }

  .compare-tray {
    right: 10px;
    bottom: 10px;
    left: 10px;
    width: calc(100% - 20px);
    align-items: stretch;
  }

  .compare-selected span:nth-child(n + 2) {
    display: none;
  }

  .compare-tray-actions .button-quiet {
    display: none;
  }

  .search-dialog {
    width: 100%;
    max-height: 100dvh;
    height: 100dvh;
    border: 0;
    border-radius: 0;
  }

  .dialog-head,
  .search-results {
    padding-inline: 18px;
  }

  .search-field-large {
    margin-inline: 18px;
  }

  .footer-links {
    grid-template-columns: 1fr 1fr;
  }

  .footer-links > div {
    gap: 0;
  }

  .footer-links a {
    display: flex;
    min-height: 44px;
    align-items: center;
  }

  .breadcrumbs a {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media print {
  .site-header,
  .site-footer,
  .compare-tray,
  .wizard-progress,
  .wizard-actions,
  .button,
  .toast-region {
    display: none !important;
  }

  body {
    background: white;
  }

  .wizard-card,
  .success-panel {
    border: 0;
    box-shadow: none;
  }

  .success-panel {
    background: white;
    color: black;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Marketplace redesign v2
   Restrained European industrial marketplace system. */

:root {
  --ink: #111815;
  --ink-2: #0e3b31;
  --paper: #f7f8f6;
  --paper-2: #ffffff;
  --paper-3: #eef1ee;
  --signal: #1ba66f;
  --signal-dark: #147f57;
  --mineral: #0e3b31;
  --muted: #5f6b65;
  --line: #dce2de;
  --line-dark: #36584f;
  --white: #ffffff;
  --danger: #a63d38;
  --warning: #9a6517;
  --info: #1e6378;
  --font-display: "Manrope", Arial, sans-serif;
  --font-ui: "Manrope", Arial, sans-serif;
  --font-editorial: "Source Serif 4", Georgia, serif;
  --font-mono: "Manrope", Arial, sans-serif;
  --step--1: clamp(0.75rem, 0.73rem + 0.08vw, 0.8rem);
  --step-0: clamp(0.92rem, 0.9rem + 0.08vw, 0.98rem);
  --step-1: clamp(1.05rem, 1.01rem + 0.18vw, 1.16rem);
  --step-2: clamp(1.38rem, 1.25rem + 0.5vw, 1.72rem);
  --step-3: clamp(1.85rem, 1.62rem + 0.9vw, 2.5rem);
  --step-4: clamp(2.35rem, 1.98rem + 1.48vw, 3.35rem);
  --step-5: clamp(2.8rem, 2.28rem + 2vw, 4rem);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --shadow-soft: 0 8px 28px rgb(17 24 21 / 0.07);
  --shadow-float: 0 18px 46px rgb(17 24 21 / 0.15);
  --content: 1280px;
  --reading: 760px;
  --header-height: 68px;
}

html {
  scroll-padding-top: calc(var(--header-height) + 16px);
}

body {
  background: var(--paper);
  font-size: var(--step-0);
  line-height: 1.5;
}

::selection {
  background: #c9eedf;
  color: var(--ink);
}

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

.section-dark :focus-visible,
.site-footer :focus-visible,
.compare-tray :focus-visible,
.success-panel :focus-visible,
.lead-story:focus-visible,
.procurement-feature:focus-visible {
  outline-color: #54d49d;
}

.skip-link {
  border-radius: var(--radius-sm);
  background: var(--white);
  color: var(--ink-2);
  box-shadow: var(--shadow-float);
}

/* Header */

.site-header {
  min-height: var(--header-height);
  padding: 8px max(20px, calc((100vw - var(--content)) / 2));
  border-color: var(--line);
  background: var(--white);
  backdrop-filter: none;
}

.brand {
  gap: 10px;
  min-height: 44px;
}

.brand-mark {
  display: grid;
  width: 36px;
  height: 36px;
  grid-template-columns: 1fr 1fr;
  place-items: center;
  gap: 0;
  overflow: hidden;
  border-radius: 8px;
  background: var(--ink-2);
  color: var(--white);
  font-family: var(--font-ui);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.brand-mark > span {
  display: grid;
  width: 100%;
  height: 100%;
  place-items: center;
}

.brand-mark > span + span {
  background: var(--signal);
  color: #06271d;
}

.brand-wordmark {
  gap: 2px;
  font-size: 0.69rem;
  line-height: 1.08;
}

.brand-wordmark strong {
  font-size: 0.95rem;
  letter-spacing: -0.025em;
}

.brand-wordmark span:last-child {
  color: var(--muted);
}

.desktop-nav {
  gap: clamp(16px, 2vw, 28px);
  font-size: 0.8rem;
  font-weight: 600;
}

.desktop-nav a,
.text-link {
  min-height: 40px;
}

.desktop-nav a::after,
.text-link::after {
  bottom: 4px;
  height: 1px;
  background: var(--signal-dark);
}

.header-actions {
  gap: 8px;
}

.saved-link {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  gap: 7px;
  padding: 7px 10px;
  border-radius: var(--radius-sm);
  color: var(--ink-2);
  font-size: 0.78rem;
  font-weight: 700;
  text-decoration: none;
}

.saved-link:hover {
  background: var(--paper-3);
}

.saved-link span {
  display: inline-grid;
  min-width: 20px;
  height: 20px;
  place-items: center;
  padding-inline: 5px;
  border-radius: 999px;
  background: #e4f4ec;
  color: var(--ink-2);
  font-size: 0.66rem;
}

.button {
  min-height: 44px;
  padding: 10px 15px;
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  font-weight: 700;
  box-shadow: none;
}

.button:hover {
  transform: none;
}

.button-primary {
  background: var(--signal);
  color: #06271d;
}

.button-primary:hover {
  background: #159363;
  color: #041d16;
}

.button-dark {
  background: var(--ink-2);
  color: var(--white);
}

.button-dark:hover {
  background: #092d25;
}

.button-outline {
  border-color: #809089;
  background: var(--white);
  color: var(--ink-2);
}

.button-outline:hover {
  border-color: var(--ink-2);
  background: #edf3f0;
  color: var(--ink-2);
}

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

.button-quiet:hover {
  border-color: #99a69f;
  background: var(--paper-3);
}

.compare-tray .button-quiet,
.success-panel .button-quiet {
  border-color: #7b9188;
  background: transparent;
  color: var(--white);
}

.compare-tray .button-quiet:hover,
.success-panel .button-quiet:hover {
  border-color: var(--white);
  background: var(--white);
  color: var(--ink-2);
}

.button-small {
  min-height: 38px;
  padding: 8px 12px;
  font-size: 0.74rem;
}

.icon-button {
  width: 40px;
  height: 40px;
  flex-basis: 40px;
  border-color: var(--line);
  border-radius: var(--radius-sm);
  background: var(--white);
}

.icon-button:hover {
  border-color: #99a69f;
  background: var(--paper-3);
}

.mobile-nav {
  top: var(--header-height);
  background: var(--white);
}

.mobile-nav a:not(.button) {
  min-height: 52px;
  border-color: var(--line);
  font-family: var(--font-ui);
  font-size: 1rem;
  font-weight: 600;
}

/* Global page rhythm and typography */

.page-shell,
.section-shell {
  width: min(calc(100% - 40px), var(--content));
}

.section-shell {
  padding-block: clamp(52px, 6.5vw, 80px);
}

.section-shell + .section-shell {
  border-color: var(--line);
}

.section-dark {
  background: var(--ink-2);
  color: var(--white);
}

.section-dark .section-shell {
  border-color: var(--line-dark);
}

.section-signal {
  background: #e5f3ec;
  color: var(--ink);
}

.eyebrow,
.kicker,
.meta-label,
.footer-label {
  gap: 6px;
  color: var(--muted);
  font-family: var(--font-ui);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 5px;
  height: 5px;
  background: var(--signal);
}

.section-dark .eyebrow,
.section-dark .kicker,
.section-dark .meta-label {
  color: #b9c9c2;
}

.display-title,
.page-title,
.section-title,
.model-detail-copy h1,
.wizard-head h1,
.wizard-step h2,
.status-card h2,
.trust-guide h2,
.detail-section h2,
.evidence-card h3,
.source-box h2,
.compare-cell.compare-head h2,
.filter-panel h2,
.results-head h2,
.owner-listing-card h3,
.empty-state h3,
.newsletter-panel h2 {
  font-family: var(--font-ui);
  letter-spacing: -0.035em;
}

.display-title {
  max-width: 15ch;
  margin-bottom: 18px;
  font-size: var(--step-5);
  font-weight: 650;
  line-height: 1.02;
}

.page-title {
  max-width: 18ch;
  margin-bottom: 14px;
  font-size: var(--step-4);
  font-weight: 650;
  line-height: 1.06;
}

.section-title {
  max-width: 23ch;
  font-size: var(--step-3);
  font-weight: 650;
  line-height: 1.1;
}

.section-intro,
.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.55fr);
  gap: 28px;
  align-items: end;
  margin-bottom: 28px;
}

.section-heading > div,
.section-heading > header {
  min-width: 0;
}

.section-heading h2,
.section-heading h3 {
  margin: 5px 0 0;
  font-family: var(--font-ui);
  font-size: var(--step-3);
  font-weight: 650;
  letter-spacing: -0.035em;
  line-height: 1.1;
}

.section-heading p,
.section-intro p,
.page-dek {
  max-width: 62ch;
  margin-bottom: 0;
  color: var(--muted);
  font-size: var(--step-0);
}

.section-heading > a,
.section-heading > .button {
  justify-self: end;
}

.section-dark .section-intro p,
.section-dark .section-heading p,
.section-dark .page-dek {
  color: #becbc5;
}

.page-hero {
  padding-block: 50px 42px;
  border-color: var(--line);
  background: #edf2ef;
}

.page-hero-grid {
  grid-template-columns: minmax(0, 1.25fr) minmax(260px, 0.5fr);
  gap: 46px;
}

.page-hero .eyebrow {
  margin-bottom: 14px;
}

.page-hero-note {
  padding: 18px;
  border: 1px solid #d2dcd6;
  border-left: 3px solid var(--signal-dark);
  border-radius: var(--radius-sm);
  background: var(--white);
}

/* Search-first home hero */

.home-hero,
.market-hero {
  position: relative;
  display: grid;
  min-height: 550px;
  align-items: center;
  overflow: hidden;
  background: var(--ink-2);
  color: var(--white);
  isolation: isolate;
}

.home-hero .hero-media::after,
.market-hero .hero-media::after {
  background:
    linear-gradient(90deg, rgb(7 33 27 / 0.92) 0%, rgb(7 33 27 / 0.78) 44%, rgb(7 33 27 / 0.18) 76%),
    linear-gradient(0deg, rgb(7 33 27 / 0.56), transparent 60%);
}

.home-hero .hero-media img,
.market-hero .hero-media img {
  object-position: 62% center;
}

.hero-content,
.market-hero > .page-shell,
.market-hero > .section-shell {
  width: min(calc(100% - 40px), var(--content));
  margin-inline: auto;
}

.hero-content {
  padding-block: 52px 34px;
}

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

.hero-copy .eyebrow,
.market-hero .eyebrow {
  margin-bottom: 14px;
  color: #bce6d4;
}

.hero-copy h1,
.market-hero h1 {
  max-width: 13ch;
  margin-bottom: 14px;
  font-family: var(--font-ui);
  font-size: clamp(2.75rem, 2.28rem + 2vw, 3.75rem);
  font-weight: 650;
  letter-spacing: -0.045em;
  line-height: 1.02;
}

.hero-copy > p,
.market-hero .hero-dek,
.market-hero header > p {
  max-width: 58ch;
  margin-bottom: 22px;
  color: #d8e4df;
  font-size: 1rem;
}

.hero-search,
.market-search {
  display: block;
  width: min(100%, 920px);
  min-height: 0;
  padding: 12px;
  border: 1px solid rgb(255 255 255 / 0.25);
  border-radius: var(--radius-md);
  background: var(--white);
  color: var(--ink);
  box-shadow: 0 16px 40px rgb(0 16 11 / 0.2);
}

.hero-search {
  display: grid;
  grid-template-columns: auto 1fr auto;
  min-height: 58px;
  align-items: center;
  gap: 10px;
  padding: 6px 6px 6px 14px;
}

.hero-search input {
  height: 44px;
  font-size: 0.9rem;
}

.hero-search:focus-within,
.market-search:focus-within {
  outline: 3px solid var(--signal);
  outline-offset: 3px;
}

.search-grid {
  display: grid;
  grid-template-columns: minmax(180px, 1.4fr) repeat(3, minmax(130px, 0.8fr)) auto;
  gap: 8px;
  align-items: end;
}

.search-grid > label,
.search-grid > .field {
  display: grid;
  gap: 5px;
  min-width: 0;
  color: var(--muted);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.search-grid input,
.search-grid select {
  width: 100%;
  min-width: 0;
  min-height: 42px;
  padding: 8px 10px;
  border: 1px solid var(--line);
  border-radius: 7px;
  outline: none;
  background: var(--paper);
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
}

.search-grid input:focus,
.search-grid select:focus {
  border-color: var(--signal-dark);
  box-shadow: 0 0 0 3px rgb(27 166 111 / 0.14);
}

.search-grid .button {
  min-height: 42px;
  white-space: nowrap;
}

.popular-searches {
  gap: 7px;
  margin-top: 12px;
}

.popular-searches > span {
  color: #b6c8c0;
  font-family: var(--font-ui);
  font-size: 0.62rem;
  font-weight: 700;
}

.chip,
.filter-chip {
  min-height: 34px;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 0.7rem;
}

.home-hero .chip,
.market-hero .chip {
  border-color: rgb(255 255 255 / 0.38);
  color: #e4ece8;
}

.home-hero .chip:hover,
.market-hero .chip:hover {
  border-color: #8be0ba;
  background: rgb(255 255 255 / 0.1);
  color: var(--white);
}

.hero-proof,
.hero-foot {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  gap: 10px 22px;
  margin-top: 20px;
  padding-top: 14px;
  border-top: 1px solid rgb(255 255 255 / 0.2);
  color: #b9cac2;
  font-family: var(--font-ui);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
}

.hero-proof > span,
.hero-proof > li {
  position: relative;
  padding-left: 14px;
}

.hero-proof > span::before,
.hero-proof > li::before {
  position: absolute;
  top: 0.46em;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #54d49d;
  content: "";
}

.hero-foot a {
  margin-left: auto;
  color: var(--white);
}

.demo-disclosure {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  margin: 0;
  padding: 10px 12px;
  border: 1px solid #cfe4d9;
  border-radius: var(--radius-sm);
  background: #edf7f2;
  color: #38584b;
  font-size: 0.7rem;
  line-height: 1.45;
}

.demo-disclosure::before {
  width: 7px;
  height: 7px;
  flex: 0 0 7px;
  margin-top: 0.38em;
  border-radius: 50%;
  background: var(--signal-dark);
  content: "";
}

.market-hero .demo-disclosure,
.home-hero .demo-disclosure {
  width: fit-content;
  border-color: rgb(174 224 202 / 0.3);
  background: rgb(255 255 255 / 0.1);
  color: #dce8e3;
}

/* Home marketplace sections */

.home-featured {
  padding-block: 36px 62px;
  background: var(--paper);
}

.home-featured > .page-shell,
.home-featured > .section-shell {
  padding-block: 0;
}

.listing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.listing-card {
  position: relative;
  display: flex;
  min-width: 0;
  min-height: 0;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: 0 1px 0 rgb(17 24 21 / 0.02);
  transition:
    border-color 160ms ease,
    box-shadow 160ms ease,
    transform 160ms ease;
}

.listing-card:hover {
  border-color: #b9c5bf;
  box-shadow: var(--shadow-soft);
  transform: translateY(-2px);
}

.listing-media {
  position: relative;
  min-height: 178px;
  overflow: hidden;
  background: #dfe5e1;
}

.listing-media img,
.listing-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.listing-media img {
  position: absolute;
  inset: 0;
  transition: transform 320ms ease;
}

.listing-card:hover .listing-media img {
  transform: scale(1.025);
}

.listing-media::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 40%;
  background: linear-gradient(transparent, rgb(6 25 20 / 0.5));
  content: "";
  pointer-events: none;
}

.listing-media > .status-pill,
.listing-media > .media-label,
.listing-media > [class*="badge"] {
  position: absolute;
  z-index: 2;
  top: 12px;
  left: 12px;
  margin: 0;
  border-color: rgb(255 255 255 / 0.7);
  background: rgb(255 255 255 / 0.94);
  color: var(--ink-2);
}

.listing-media .image-credit,
.listing-media .media-caption {
  position: absolute;
  z-index: 2;
  right: 10px;
  bottom: 8px;
  color: rgb(255 255 255 / 0.9);
  font-size: 0.56rem;
}

.listing-media [data-save-listing],
.listing-media .save-button,
.listing-card > [data-save-listing] {
  position: absolute;
  z-index: 3;
  top: 10px;
  right: 10px;
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  padding: 0;
  border: 1px solid rgb(255 255 255 / 0.7);
  border-radius: 50%;
  background: rgb(255 255 255 / 0.94);
  color: var(--ink-2);
  cursor: pointer;
}

.listing-media [data-save-listing][aria-pressed="true"],
.listing-media .save-button.is-saved,
.listing-card > [data-save-listing][aria-pressed="true"] {
  border-color: #b8decf;
  background: #e4f4ec;
  color: #0d714c;
}

.listing-body {
  display: grid;
  flex: 1;
  gap: 10px;
  padding: 15px;
}

.listing-body > header,
.listing-body .listing-title-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.listing-body h2,
.listing-body h3 {
  margin: 0;
  font-family: var(--font-ui);
  font-size: 1.02rem;
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.3;
}

.listing-body h2 a,
.listing-body h3 a {
  text-decoration: none;
}

.listing-body h2 a::after,
.listing-body h3 a::after {
  position: absolute;
  inset: 0;
  content: "";
}

.listing-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 5px 12px;
  margin: 0;
  color: var(--muted);
  font-size: 0.74rem;
}

.listing-meta > span + span {
  position: relative;
}

.listing-meta > span + span::before {
  position: absolute;
  top: 50%;
  left: -7px;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: #9ba8a1;
  content: "";
}

.listing-price {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 8px;
  margin: 0;
  padding-top: 8px;
  border-top: 1px solid var(--line);
}

.listing-price strong {
  color: var(--ink);
  font-size: 1.08rem;
  font-weight: 750;
  letter-spacing: -0.025em;
}

.listing-price span,
.listing-price small {
  color: var(--muted);
  font-size: 0.65rem;
}

.provider-line,
.availability-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin: 0;
  color: var(--muted);
  font-size: 0.74rem;
  line-height: 1.4;
}

.listing-card .provider-line {
  flex-wrap: wrap;
}

.provider-line strong,
.availability-line strong {
  color: var(--ink);
  font-size: inherit;
  font-weight: 650;
}

.availability-line {
  padding: 8px 10px;
  border-radius: 7px;
  background: #edf7f2;
  color: #276148;
}

.listing-services {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.listing-services > span,
.listing-services > li {
  padding: 4px 7px;
  border: 1px solid var(--line);
  border-radius: 5px;
  background: var(--paper);
  color: #4f5c56;
  font-size: 0.7rem;
  font-weight: 600;
}

.listing-actions {
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7px;
  margin-top: auto;
  padding-top: 3px;
  font-size: 0.7rem;
}

.listing-actions > .button,
.listing-actions > a {
  width: 100%;
}

.listing-actions > span {
  grid-column: 1 / -1;
  color: var(--muted);
  font-size: 0.62rem;
  text-align: center;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.category-card {
  display: grid;
  min-height: 126px;
  align-content: space-between;
  gap: 18px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  color: var(--ink);
  text-decoration: none;
}

.category-card:hover {
  border-color: #9caca4;
  background: #f2f5f3;
}

.category-card h3 {
  margin: 0;
  font-size: 0.92rem;
  letter-spacing: -0.02em;
}

.category-card p,
.category-card span {
  margin: 0;
  color: var(--muted);
  font-size: 0.68rem;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.step-card {
  padding: 20px;
  border-top: 3px solid #a9d9c5;
  border-radius: 0 0 var(--radius-md) var(--radius-md);
  background: var(--white);
}

.step-card > span,
.step-card .step-number {
  display: block;
  margin-bottom: 24px;
  color: var(--signal-dark);
  font-size: 0.68rem;
  font-weight: 750;
}

.step-card h3 {
  margin: 0 0 7px;
  font-size: 1rem;
  letter-spacing: -0.025em;
}

.step-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.75rem;
}

.home-news-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.news-compact-card {
  display: grid;
  min-height: 208px;
  align-content: space-between;
  gap: 20px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  color: var(--ink);
  text-decoration: none;
}

.news-compact-card:hover {
  border-color: #9fada6;
}

.news-compact-card h3 {
  margin: 8px 0;
  font-family: var(--font-editorial);
  font-size: 1.22rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.news-compact-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.72rem;
}

.provider-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 32px;
  padding: clamp(28px, 4vw, 48px);
  border-radius: var(--radius-lg);
  background: var(--ink-2);
  color: var(--white);
}

.provider-cta h2,
.provider-cta h3 {
  max-width: 24ch;
  margin: 5px 0 8px;
  font-size: var(--step-2);
  letter-spacing: -0.03em;
}

.provider-cta p {
  max-width: 62ch;
  margin: 0;
  color: #bdcbc5;
  font-size: 0.8rem;
}

/* Marketplace results */

.market-layout,
.marketplace-layout {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 28px;
  padding-block: 32px 48px;
}

.filter-panel {
  position: sticky;
  top: calc(var(--header-height) + 16px);
  align-self: start;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
}

.filter-panel-head,
.results-head,
.market-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.filter-panel h2,
.results-head h2 {
  margin: 0;
  font-size: 1rem;
  font-weight: 700;
}

.filter-group {
  margin-top: 16px;
  padding-top: 15px;
  border-color: var(--line);
}

.filter-group > label,
.field-label {
  margin-bottom: 6px;
  color: #45534c;
  font-family: var(--font-ui);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.input,
.select,
.textarea {
  min-height: 44px;
  padding: 9px 11px;
  border-color: #abb7b1;
  border-radius: 7px;
  background: var(--white);
  font-size: 0.78rem;
}

.textarea {
  min-height: 104px;
}

.input:focus,
.select:focus,
.textarea:focus {
  border-color: var(--signal-dark);
  box-shadow: 0 0 0 3px rgb(27 166 111 / 0.13);
}

.field-help {
  color: var(--muted);
  font-size: 0.74rem;
}

.filter-actions {
  gap: 7px;
  margin-top: 18px;
}

.market-toolbar {
  min-height: 44px;
  margin-bottom: 14px;
}

.market-toolbar .select {
  width: auto;
  min-width: 150px;
}

.results-head {
  min-height: 0;
  margin-bottom: 14px;
}

.results-head p,
.result-count {
  margin: 0;
  color: var(--muted);
  font-size: 0.75rem;
}

.filter-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 14px;
}

.filter-chip-row:empty {
  display: none;
}

.filter-chip-row .filter-chip,
.filter-chip-row button {
  min-height: 30px;
  padding: 5px 9px;
  border: 1px solid #c7d0cb;
  border-radius: 999px;
  background: var(--white);
  color: #45534c;
  font-size: 0.65rem;
}

.filter-chip:hover,
.filter-chip.is-active,
.filter-chip-row button:hover {
  border-color: var(--ink-2);
  background: var(--ink-2);
  color: var(--white);
}

.market-layout .listing-grid,
.marketplace-layout .listing-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.market-layout .listing-media,
.marketplace-layout .listing-media {
  min-height: 160px;
}

.market-layout .listing-body,
.marketplace-layout .listing-body {
  padding: 14px;
}

.mobile-market-bar {
  display: none;
}

.empty-state {
  grid-column: 1 / -1;
  padding: 46px 22px;
  border: 1px dashed #b9c5bf;
  border-radius: var(--radius-md);
  background: var(--white);
  text-align: center;
}

.empty-state h3 {
  margin-bottom: 8px;
  font-size: 1.15rem;
}

.empty-state p {
  font-size: 0.78rem;
}

/* Listing detail */

.listing-detail {
  padding-block: 28px 72px;
}

.listing-detail > .page-shell,
.listing-detail.page-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(320px, 0.62fr);
  gap: 32px;
  align-items: start;
}

.listing-gallery {
  display: grid;
  min-height: 420px;
  grid-template-columns: minmax(0, 2fr) minmax(140px, 0.7fr);
  grid-template-rows: 1fr 1fr;
  gap: 8px;
  overflow: hidden;
  border-radius: var(--radius-md);
  background: #dfe5e1;
}

.listing-gallery > :first-child,
.listing-gallery > img:first-child,
.listing-gallery > picture:first-child {
  grid-row: 1 / -1;
}

.listing-gallery picture,
.listing-gallery figure {
  min-width: 0;
  min-height: 0;
  margin: 0;
  overflow: hidden;
}

.listing-summary {
  display: grid;
  gap: 22px;
  padding-top: 24px;
}

.listing-summary h1 {
  max-width: 20ch;
  margin: 6px 0 10px;
  font-family: var(--font-ui);
  font-size: clamp(2rem, 1.7rem + 1vw, 2.7rem);
  font-weight: 700;
  letter-spacing: -0.045em;
  line-height: 1.07;
}

.listing-summary > p {
  max-width: 70ch;
  color: var(--muted);
}

.booking-panel {
  position: sticky;
  top: calc(var(--header-height) + 16px);
  display: grid;
  gap: 14px;
  padding: 20px;
  border: 1px solid #cbd5d0;
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.booking-panel h2,
.booking-panel h3 {
  margin: 0;
  font-size: 1rem;
}

.booking-panel .listing-price {
  padding: 0 0 12px;
  border-top: 0;
  border-bottom: 1px solid var(--line);
}

.booking-panel .listing-price strong {
  font-size: 1.35rem;
}

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

.spec-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--line);
}

.spec-grid > div,
.spec-grid > article {
  min-width: 0;
  padding: 15px;
  background: var(--white);
}

.spec-grid span,
.spec-grid dt {
  display: block;
  margin-bottom: 5px;
  color: var(--muted);
  font-size: 0.62rem;
  font-weight: 650;
}

.spec-grid strong,
.spec-grid dd {
  margin: 0;
  font-size: 0.76rem;
  font-weight: 650;
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  border: 0;
  background: transparent;
}

.review-grid > article,
.review-card {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
}

.review-grid blockquote,
.review-card blockquote {
  margin: 10px 0;
  color: #334139;
  font-family: var(--font-ui);
  font-size: 1rem;
  line-height: 1.45;
}

/* Existing catalogue, news, trust and forms */

.evidence-strip {
  width: min(calc(100% - 40px), var(--content));
  border-color: var(--line);
  background: var(--white);
}

.evidence-stat {
  min-height: 102px;
  padding: 18px;
  border-color: var(--line);
}

.evidence-stat strong {
  margin: 7px 0 2px;
  font-family: var(--font-ui);
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: -0.035em;
}

.signal-grid {
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.8fr);
  gap: 32px;
}

.lead-story {
  min-height: 370px;
  padding: 30px;
  border-radius: var(--radius-lg);
  background: var(--ink-2);
}

.lead-story:hover,
.procurement-feature:hover {
  transform: translateY(-2px);
}

.lead-story h3,
.news-lead h2,
.article-card h3,
.article-shell h1,
.news-compact-card h3 {
  font-family: var(--font-editorial);
}

.article-dek,
.article-body p {
  font-family: var(--font-ui);
}

.lead-story h3 {
  max-width: 16ch;
  margin: 22px 0 12px;
  font-size: clamp(1.8rem, 1.6rem + 0.8vw, 2.35rem);
  letter-spacing: -0.025em;
  line-height: 1.08;
}

.story-meta,
.model-meta,
.source-meta {
  font-family: var(--font-ui);
  font-size: 0.62rem;
  font-weight: 650;
}

.story-row {
  grid-template-columns: 74px minmax(0, 1fr) 20px;
  padding: 14px 0;
}

.story-row h3 {
  font-family: var(--font-editorial);
  font-size: 1rem;
  line-height: 1.24;
}

.procurement-grid {
  gap: 14px;
}

.procurement-feature {
  min-height: 330px;
  padding: 24px;
  border: 1px solid #36584f;
  border-radius: var(--radius-md);
  background: #113e34;
}

.procurement-feature h3 {
  font-family: var(--font-ui);
  font-size: 1.6rem;
  letter-spacing: -0.035em;
}

.model-visual {
  border-radius: var(--radius-md);
  background:
    linear-gradient(135deg, rgb(27 166 111 / 0.18), transparent 52%),
    linear-gradient(160deg, #dfe7e2, #c8d3cd);
}

.section-dark .model-visual {
  background:
    linear-gradient(135deg, rgb(84 212 157 / 0.22), transparent 52%),
    linear-gradient(160deg, #214c41, #16382f);
}

.model-visual::before,
.model-visual::after {
  display: none;
}

.status-pill {
  min-height: 26px;
  padding: 4px 8px;
  border-color: #c6d0cb;
  border-radius: 999px;
  background: #f2f5f3;
  font-family: var(--font-ui);
  font-size: 0.59rem;
  font-weight: 700;
}

.status-pill::before {
  width: 5px;
  height: 5px;
  background: var(--signal-dark);
}

.use-case-row {
  min-height: 88px;
  padding: 17px 0;
}

.use-case-row h3 {
  font-family: var(--font-ui);
  font-size: 1rem;
}

.trust-steps {
  gap: 10px;
}

.trust-step {
  min-height: 210px;
  padding: 20px;
  border-color: var(--line);
}

.trust-step .step-number,
.trust-step h3 {
  font-family: var(--font-ui);
}

.trust-step h3 {
  margin-top: 42px;
  font-size: 1rem;
}

.newsletter-panel {
  gap: 28px;
}

.newsletter-panel h2 {
  max-width: 22ch;
  font-size: var(--step-2);
  line-height: 1.12;
}

.newsletter-inline {
  border-color: #9eaaa4;
  border-radius: var(--radius-sm);
}

.reviewed-listings-band {
  padding-block: 40px;
  border-color: var(--line);
  background: var(--white);
}

.owner-listing-grid {
  gap: 14px;
}

.owner-listing-card,
.listing-empty {
  padding: 24px;
  border-color: var(--line);
  border-radius: var(--radius-md);
  background: var(--paper);
}

.owner-listing-card h3 {
  margin: 14px 0 4px;
  font-size: 1.25rem;
}

.owner-listing-card .tag-row span,
.tag {
  font-family: var(--font-ui);
  font-size: 0.59rem;
  font-weight: 650;
  letter-spacing: 0;
}

.listing-evidence {
  margin-block: 16px;
  padding-block: 12px;
}

.model-card {
  grid-template-columns: 130px minmax(0, 1fr) 210px;
  gap: 20px;
  padding: 20px 0;
}

.model-card-visual {
  min-height: 164px;
}

.model-card h3 {
  margin: 8px 0 7px;
  font-family: var(--font-ui);
  font-size: 1.3rem;
  letter-spacing: -0.03em;
  line-height: 1.12;
}

.model-card-main > p {
  font-size: 0.78rem;
}

.model-card-side {
  gap: 14px;
  padding-left: 18px;
}

.path-summary strong {
  font-size: 0.78rem;
}

.path-summary p {
  font-size: 0.68rem;
}

.tracker-wrap {
  border-color: var(--line);
  border-radius: var(--radius-sm);
  background: var(--white);
}

.tracker-table th,
.tracker-table td {
  padding: 13px 12px;
  border-color: var(--line);
}

.tracker-table th {
  background: #f0f3f1;
  font-family: var(--font-ui);
  font-size: 0.6rem;
  font-weight: 700;
}

.tracker-table td {
  font-size: 0.74rem;
}

.tracker-table .model-cell a {
  font-family: var(--font-ui);
  font-size: 0.9rem;
}

.model-detail-hero {
  padding-block: 40px 56px;
  background: #edf2ef;
}

.breadcrumbs {
  margin-bottom: 24px;
  font-family: var(--font-ui);
  font-size: 0.62rem;
  font-weight: 650;
  text-transform: none;
}

.model-detail-grid {
  gap: 48px;
}

.model-detail-copy h1 {
  margin: 14px 0 16px;
  font-size: var(--step-4);
  font-weight: 700;
  line-height: 1.04;
}

.model-detail-copy .maker-line {
  font-family: var(--font-ui);
  font-size: 0.68rem;
  font-weight: 650;
}

.detail-visual {
  min-height: 380px;
  border-radius: var(--radius-lg);
}

.detail-columns {
  gap: 50px;
}

.detail-section {
  padding-block: 30px;
}

.detail-section h2 {
  margin-bottom: 18px;
  font-size: 1.35rem;
}

.spec-row dd,
.fit-grid h3 {
  font-family: var(--font-ui);
}

.evidence-card,
.source-box {
  padding: 18px;
  border-radius: var(--radius-md);
  background: var(--white);
}

.evidence-card h3,
.source-box h2 {
  font-size: 1rem;
}

.news-hero-grid {
  gap: 48px;
}

.news-lead h2 {
  max-width: 15ch;
  margin: 14px 0;
  font-size: clamp(2.2rem, 1.9rem + 1.15vw, 3rem);
  letter-spacing: -0.025em;
  line-height: 1.08;
}

.article-grid {
  gap: 14px;
  border: 0;
}

.article-card {
  min-height: 280px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
}

.section-dark .article-card {
  border-color: #36584f;
  background: #123e34;
}

.article-card h3 {
  margin: 14px 0 9px;
  font-size: 1.35rem;
  letter-spacing: -0.02em;
  line-height: 1.16;
}

.article-shell {
  padding-block: 56px 84px;
}

.article-shell h1 {
  margin: 16px 0 20px;
  font-size: var(--step-4);
  letter-spacing: -0.03em;
  line-height: 1.08;
}

.article-dek {
  font-size: 1.12rem;
}

.article-body p {
  font-size: clamp(1.05rem, 1.01rem + 0.18vw, 1.16rem);
  line-height: 1.7;
}

.article-callout {
  padding: 20px;
  border-color: var(--signal-dark);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  background: #edf5f1;
}

.compare-tray {
  min-height: 64px;
  border-color: #37584f;
  border-radius: var(--radius-md);
  background: var(--ink-2);
}

.compare-cell {
  background: var(--white);
}

.compare-cell.compare-label {
  background: var(--paper-3);
  font-family: var(--font-ui);
  font-weight: 650;
}

.wizard-shell {
  padding-block: 48px 72px;
}

.wizard-head {
  gap: 32px;
  margin-bottom: 28px;
}

.wizard-head h1 {
  margin-top: 12px;
  font-size: var(--step-4);
  font-weight: 700;
  line-height: 1.05;
}

.wizard-truth,
.wizard-card,
.status-form,
.status-card {
  border-color: var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
}

.wizard-card {
  padding: clamp(24px, 4vw, 40px);
  box-shadow: none;
}

.progress-step {
  border-top-width: 2px;
  font-size: 0.66rem;
}

.progress-step strong {
  font-family: var(--font-ui);
  font-size: 0.58rem;
}

.progress-step.is-active {
  border-color: var(--signal-dark);
}

.wizard-step h2 {
  font-size: 1.35rem;
}

.form-grid {
  gap: 18px;
}

.checkbox-card {
  border-color: #abb7b1;
  border-radius: 7px;
}

.checkbox-card:has(input:checked) {
  border-color: var(--signal-dark);
  background: #edf7f2;
}

.review-block {
  border-radius: var(--radius-sm);
  background: var(--white);
}

.review-block span {
  font-family: var(--font-ui);
  font-weight: 650;
}

.success-panel {
  border-radius: var(--radius-md);
  background: var(--ink-2);
}

.success-mark {
  background: #54d49d;
}

.success-panel h2 {
  font-family: var(--font-ui);
  font-size: var(--step-3);
  letter-spacing: -0.035em;
}

.status-layout {
  gap: 32px;
}

.status-card h2 {
  font-size: 1.5rem;
}

.status-match-list h3 {
  font-family: var(--font-ui);
  font-size: 1.05rem;
}

.trust-guide {
  grid-template-columns: 48px minmax(0, 0.9fr) minmax(260px, 0.62fr);
  gap: 26px;
  padding: 26px 0;
}

.trust-guide h2 {
  font-size: 1.25rem;
}

.search-dialog {
  width: min(calc(100% - 28px), 780px);
  border-color: var(--line);
  border-radius: var(--radius-md);
  background: var(--paper);
}

.search-dialog::backdrop {
  background: rgb(5 20 15 / 0.62);
  backdrop-filter: none;
}

.dialog-head {
  padding: 22px 24px 16px;
}

.dialog-head h2 {
  font-family: var(--font-ui);
  font-size: 1.25rem;
}

.search-field-large {
  margin: 0 24px 16px;
  border-color: #9aa8a1;
  border-radius: var(--radius-sm);
}

.search-results {
  padding: 0 24px 24px;
}

.search-group-title {
  font-family: var(--font-ui);
  font-weight: 700;
}

.toast {
  border-color: #37584f;
  border-radius: var(--radius-sm);
  background: var(--ink-2);
}

/* Footer */

.site-footer {
  padding: 48px max(20px, calc((100vw - var(--content)) / 2)) 22px;
  border-color: #36584f;
  background: #0a3028;
}

.footer-lead {
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  padding-bottom: 30px;
  border-color: #36584f;
}

.footer-lead p {
  max-width: 34ch;
  font-family: var(--font-ui);
  font-size: 1.15rem;
  letter-spacing: -0.025em;
  line-height: 1.35;
}

.footer-links {
  gap: 32px;
  padding-block: 32px 44px;
}

.footer-links a,
.footer-links span:not(.footer-label) {
  font-size: 0.75rem;
}

.footer-bottom {
  border-color: #36584f;
  font-family: var(--font-ui);
  font-size: 0.58rem;
  font-weight: 600;
}

@media (max-width: 1160px) {
  .market-layout .listing-grid,
  .marketplace-layout .listing-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .search-grid .button {
    grid-column: 1 / -1;
  }

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

@media (max-width: 900px) {
  :root {
    --header-height: 62px;
  }

  .site-header {
    padding-inline: 16px;
  }

  .saved-link {
    display: none;
  }

  .home-hero,
  .market-hero {
    min-height: 500px;
  }

  .market-layout,
  .marketplace-layout {
    grid-template-columns: 220px minmax(0, 1fr);
    gap: 20px;
  }

  .market-layout .listing-grid,
  .marketplace-layout .listing-grid {
    grid-template-columns: 1fr;
  }

  .listing-detail > .page-shell,
  .listing-detail.page-shell {
    grid-template-columns: minmax(0, 1fr) 300px;
    gap: 22px;
  }

  .listing-gallery {
    min-height: 350px;
  }

  .home-news-grid,
  .listing-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  :root {
    --header-height: 58px;
  }

  .site-header {
    min-height: var(--header-height);
    padding-block: 5px;
  }

  .brand {
    gap: 8px;
    min-height: 42px;
  }

  .brand-mark {
    width: 32px;
    height: 32px;
    border-radius: 7px;
    font-size: 0.58rem;
  }

  .brand-wordmark {
    display: grid;
  }

  .brand-wordmark strong {
    font-size: 0.84rem;
  }

  .brand-wordmark span:last-child {
    display: none;
  }

  .header-actions {
    gap: 5px;
  }

  .icon-button {
    width: 38px;
    height: 38px;
    flex-basis: 38px;
  }

  .header-request-link {
    display: none;
  }

  .page-shell,
  .section-shell,
  .hero-content,
  .evidence-strip,
  .article-shell,
  .wizard-shell,
  .market-hero > .page-shell,
  .market-hero > .section-shell {
    width: min(calc(100% - 28px), var(--content));
  }

  .section-shell {
    padding-block: 44px;
  }

  .section-intro,
  .section-heading,
  .page-hero-grid,
  .signal-grid,
  .provider-cta,
  .footer-lead {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .section-intro,
  .section-heading {
    margin-bottom: 20px;
  }

  .section-heading > a,
  .section-heading > .button {
    justify-self: start;
  }

  .section-heading h2,
  .section-heading h3,
  .section-title {
    font-size: 1.55rem;
  }

  .page-hero {
    padding-block: 32px 28px;
  }

  .page-title {
    font-size: 2rem;
  }

  .page-hero-note {
    padding: 14px;
  }

  .home-hero,
  .market-hero {
    min-height: 300px;
    align-items: center;
  }

  .home-hero .hero-media::after,
  .market-hero .hero-media::after {
    background: linear-gradient(90deg, rgb(7 33 27 / 0.94), rgb(7 33 27 / 0.68));
  }

  .home-hero .hero-media img,
  .market-hero .hero-media img {
    object-position: 70% center;
  }

  .hero-content {
    padding-block: 22px;
  }

  .hero-copy .eyebrow,
  .market-hero .eyebrow {
    margin-bottom: 8px;
  }

  .hero-copy h1,
  .market-hero h1 {
    max-width: 15ch;
    margin-bottom: 8px;
    font-size: clamp(2rem, 8.8vw, 2.5rem);
    letter-spacing: -0.04em;
  }

  .hero-copy > p,
  .market-hero .hero-dek,
  .market-hero header > p {
    max-width: 48ch;
    margin-bottom: 12px;
    font-size: 0.78rem;
  }

  .hero-search,
  .market-search {
    padding: 8px;
    border-radius: 9px;
  }

  .hero-search {
    grid-template-columns: auto minmax(0, 1fr) auto;
    min-height: 48px;
    padding: 4px 4px 4px 10px;
  }

  .hero-search input {
    height: 38px;
    font-size: 0.75rem;
  }

  .hero-search .button {
    grid-column: auto;
    width: auto;
    min-height: 38px;
  }

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

  .search-grid > label:first-child,
  .search-grid > .field:first-child {
    grid-column: 1 / -1;
  }

  .search-grid input,
  .search-grid select,
  .search-grid .button {
    min-height: 38px;
  }

  .search-grid .button {
    grid-column: 1 / -1;
  }

  .popular-searches,
  .hero-foot,
  .hero-proof {
    display: none;
  }

  .home-featured {
    padding-block: 22px 42px;
  }

  .home-featured .section-heading p {
    display: none;
  }

  .listing-grid,
  .home-news-grid,
  .category-grid,
  .steps-grid {
    grid-template-columns: 1fr;
  }

  .home-featured .listing-grid > .listing-card:nth-child(n + 4) {
    display: none;
  }

  .listing-card {
    max-height: 520px;
  }

  .listing-media,
  .market-layout .listing-media,
  .marketplace-layout .listing-media {
    min-height: 170px;
  }

  .category-grid {
    gap: 8px;
  }

  .category-card {
    min-height: 92px;
    gap: 10px;
    padding: 14px;
  }

  .steps-grid {
    gap: 8px;
  }

  .step-card {
    padding: 16px;
  }

  .step-card > span,
  .step-card .step-number {
    margin-bottom: 14px;
  }

  .provider-cta {
    padding: 24px;
  }

  .market-layout,
  .marketplace-layout {
    display: block;
    padding-block: 14px 58px;
  }

  .filter-panel {
    position: fixed;
    z-index: 1100;
    inset: var(--header-height) 0 0;
    display: none;
    overflow-y: auto;
    padding: 20px 16px max(24px, env(safe-area-inset-bottom));
    border: 0;
    border-radius: 0;
  }

  .filter-panel.is-open,
  .filter-panel[data-open="true"] {
    display: block;
  }

  .filter-fields {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
  }

  .market-toolbar {
    position: sticky;
    z-index: 40;
    top: var(--header-height);
    margin-inline: -14px;
    padding: 8px 14px;
    border-block: 1px solid var(--line);
    background: var(--paper);
  }

  .market-toolbar .select {
    min-width: 126px;
    min-height: 38px;
  }

  .mobile-market-bar {
    position: sticky;
    z-index: 45;
    top: var(--header-height);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 7px;
    margin-inline: -14px;
    padding: 8px 14px;
    border-block: 1px solid var(--line);
    background: var(--paper);
  }

  .mobile-market-bar .button,
  .mobile-market-bar button,
  .mobile-market-bar select {
    width: 100%;
    min-height: 38px;
  }

  .market-layout .listing-grid,
  .marketplace-layout .listing-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .market-layout .listing-grid > .listing-card:nth-child(n + 7),
  .marketplace-layout .listing-grid > .listing-card:nth-child(n + 7) {
    display: none;
  }

  .listing-detail {
    padding-block: 14px 52px;
  }

  .listing-detail > .page-shell,
  .listing-detail.page-shell {
    grid-template-columns: 1fr;
  }

  .listing-gallery {
    min-height: 270px;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr;
  }

  .listing-gallery > :not(:first-child) {
    display: none;
  }

  .listing-summary {
    gap: 16px;
    padding-top: 16px;
  }

  .listing-summary h1 {
    font-size: 2rem;
  }

  .booking-panel {
    position: static;
    padding: 16px;
    box-shadow: none;
  }

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

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

  .evidence-strip {
    width: 100%;
  }

  .evidence-stat {
    min-height: 88px;
    padding: 14px;
  }

  .lead-story {
    min-height: 320px;
    padding: 22px;
  }

  .procurement-feature {
    min-height: 270px;
  }

  .trust-step {
    min-height: 170px;
  }

  .model-card {
    grid-template-columns: 92px minmax(0, 1fr);
    gap: 14px;
    padding: 16px 0;
  }

  .model-card-visual {
    min-height: 126px;
  }

  .model-card h3 {
    font-size: 1.08rem;
  }

  .model-card-side {
    grid-column: 1 / -1;
  }

  .model-detail-grid,
  .detail-columns,
  .news-hero-grid,
  .status-layout,
  .trust-guide,
  .wizard-head {
    grid-template-columns: 1fr;
  }

  .detail-visual {
    min-height: 260px;
  }

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

  .article-card {
    min-height: 230px;
  }

  .form-grid,
  .checkbox-card-grid {
    grid-template-columns: 1fr;
  }

  .field-full {
    grid-column: auto;
  }

  .trust-guide {
    gap: 8px;
  }

  .trust-guide-action {
    grid-column: 1;
    padding: 14px 0 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .footer-links {
    grid-template-columns: 1fr 1fr;
    gap: 28px 18px;
  }

  .footer-lead p {
    max-width: 44ch;
    font-size: 0.92rem;
  }
}

@media (max-width: 430px) {
  .hero-copy h1,
  .market-hero h1 {
    font-size: 1.9rem;
  }

  .hero-search svg {
    display: none;
  }

  .hero-search {
    grid-template-columns: minmax(0, 1fr) auto;
  }

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

  .search-grid > label,
  .search-grid > .field {
    font-size: 0.57rem;
  }

  .listing-body {
    padding: 13px;
  }

  .listing-actions {
    grid-template-columns: 1fr;
  }

  .listing-actions > span {
    grid-column: auto;
  }

  .spec-grid,
  .footer-links {
    grid-template-columns: 1fr;
  }

  .footer-links > div + div {
    padding-top: 18px;
    border-top: 1px solid #36584f;
  }
}

/* Marketplace redesign v2 — markup alignment and interaction states */

.market-hero-grid {
  display: grid;
  min-height: 550px;
  grid-template-columns: minmax(0, 1.12fr) minmax(360px, 0.72fr);
  align-items: center;
  gap: clamp(28px, 5vw, 72px);
}

.market-hero-copy {
  min-width: 0;
  padding-block: 48px;
}

.market-hero-copy > p {
  max-width: 58ch;
  margin: 0 0 24px;
  color: #d8e4df;
  font-size: 1rem;
}

.market-hero-media {
  position: relative;
  height: 470px;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: #173f35;
}

.market-hero-media::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 58%, rgb(4 27 21 / 0.76));
  content: "";
  pointer-events: none;
}

.market-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.market-hero-media figcaption {
  position: absolute;
  z-index: 1;
  right: 14px;
  bottom: 12px;
  left: 14px;
  color: #e3ece8;
  font-size: 0.62rem;
}

.home-featured .section-heading > div:last-child,
.section-heading > div:last-child {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 10px;
}

.section-heading a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--ink-2);
  font-size: 0.76rem;
  font-weight: 700;
  text-decoration: none;
}

.section-heading a svg,
.category-card svg,
.news-source svg,
.provider-cta svg,
.market-route-callout svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.listing-card-compact {
  min-height: 490px;
}

.listing-media > a {
  position: absolute;
  inset: 0;
}

.listing-media .demo-badge,
.booking-panel .demo-badge {
  display: inline-flex;
  width: fit-content;
  padding: 5px 8px;
  border-radius: 999px;
  background: rgb(255 255 255 / 0.94);
  color: var(--ink-2);
  font-size: 0.6rem;
  font-weight: 750;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.listing-media .image-context {
  position: absolute;
  z-index: 2;
  right: 10px;
  bottom: 8px;
  color: #fff;
  font-size: 0.56rem;
}

.save-listing svg,
.save-detail svg {
  width: 17px;
  height: 17px;
  fill: transparent;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.save-listing.is-saved svg,
.save-detail.is-saved svg {
  fill: currentColor;
}

.listing-body h3 a::after {
  display: none;
}

.listing-provider {
  margin: -3px 0 0;
  color: var(--muted);
  font-size: 0.75rem;
}

.availability-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  flex: 0 0 7px;
  border-radius: 50%;
  background: var(--signal);
  box-shadow: 0 0 0 3px rgb(27 166 111 / 0.12);
}

.availability-line {
  justify-content: flex-start;
}

.listing-footer {
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 10px;
  margin-top: auto;
  padding-top: 10px;
  border-top: 1px solid var(--line);
}

.listing-footer .listing-price {
  display: grid;
  grid-template-columns: auto 1fr;
  justify-content: start;
  gap: 0 6px;
  padding: 0;
  border: 0;
}

.listing-footer .listing-price > span:first-child {
  grid-column: 1 / -1;
  font-size: 0.72rem;
}

.listing-footer .listing-price strong {
  font-size: 1.16rem;
}

.listing-footer .listing-price > span:last-child {
  grid-column: 1 / -1;
  padding: 1px 0 0;
  font-size: 0.72rem;
  line-height: 1.35;
}

.category-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.category-card {
  position: relative;
  min-height: 172px;
  align-content: start;
  gap: 10px;
}

.category-card > span {
  color: var(--signal-dark);
  font-size: 0.62rem;
  font-weight: 750;
}

.category-card strong {
  max-width: 16ch;
  font-size: 0.95rem;
  line-height: 1.25;
}

.category-card small {
  color: var(--muted);
  font-size: 0.67rem;
  line-height: 1.45;
}

.category-card svg {
  position: absolute;
  right: 16px;
  bottom: 16px;
}

.home-how {
  border-block: 1px solid var(--line);
  background: #edf2ef;
}

.home-news-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.news-source {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  color: var(--ink-2);
  font-size: 0.64rem;
  font-weight: 700;
}

.provider-cta > div:last-child {
  display: grid;
  justify-items: end;
  gap: 8px;
}

.provider-cta > div:last-child > span {
  color: #b9c9c2;
  font-size: 0.64rem;
}

/* Compact marketplace header */

.marketplace-hero {
  padding-block: 24px 30px;
  border-bottom: 1px solid var(--line);
  background: #e9efeb;
}

.market-tabs {
  display: flex;
  gap: 24px;
  margin-bottom: 22px;
  border-bottom: 1px solid #cbd5cf;
}

.market-tabs a,
.market-tabs span {
  position: relative;
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 700;
  text-decoration: none;
}

.market-tabs [aria-current="page"] {
  color: var(--ink-2);
}

.market-tabs [aria-current="page"]::after {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 2px;
  background: var(--signal-dark);
  content: "";
}

.marketplace-title-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 390px);
  align-items: end;
  gap: 32px;
}

.marketplace-title-row h1,
.listing-title-row h1 {
  margin: 6px 0 8px;
  font-family: var(--font-ui);
  font-size: clamp(2rem, 1.7rem + 1.1vw, 2.8rem);
  font-weight: 700;
  letter-spacing: -0.045em;
  line-height: 1.06;
}

.marketplace-title-row p {
  max-width: 64ch;
  margin: 0;
  color: var(--muted);
}

.marketplace-hero .market-search {
  width: 100%;
  margin-top: 22px;
  border-color: #c3cec8;
  box-shadow: 0 10px 28px rgb(17 24 21 / 0.07);
}

.market-results {
  min-width: 0;
}

.filter-fields {
  display: grid;
  gap: 14px;
  margin-top: 16px;
}

.filter-fields .filter-group {
  margin: 0;
  padding: 0;
  border: 0;
}

.filter-check {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  align-items: start;
  gap: 9px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  cursor: pointer;
}

.filter-check input {
  width: 17px;
  height: 17px;
  margin: 2px 0 0;
  accent-color: var(--signal-dark);
}

.filter-check span {
  display: grid;
  gap: 3px;
}

.filter-check strong {
  font-size: 0.76rem;
}

.filter-check small {
  color: var(--muted);
  font-size: 0.7rem;
  line-height: 1.4;
}

.filter-submit {
  display: none;
  width: 100%;
  margin-top: 18px;
}

.filter-note {
  margin-top: 18px;
  padding: 14px;
  border-radius: var(--radius-sm);
  background: #edf2ef;
}

.filter-note strong,
.filter-note a {
  color: var(--ink-2);
  font-size: 0.74rem;
  font-weight: 700;
}

.filter-note a {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.filter-note svg {
  width: 14px;
  height: 14px;
  flex: 0 0 14px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.filter-note p {
  margin: 4px 0 8px;
  color: var(--muted);
  font-size: 0.7rem;
}

.filter-close {
  display: none;
}

.sort-control {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 700;
}

.sort-control .select {
  width: auto;
  min-width: 156px;
}

.filter-chip-row > span {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  padding: 4px 9px;
  border: 1px solid #c7d0cb;
  border-radius: 999px;
  background: var(--white);
  color: #45534c;
  font-size: 0.7rem;
}

.load-more-wrap {
  display: grid;
  justify-items: center;
  gap: 8px;
  padding-top: 24px;
  color: var(--muted);
  font-size: 0.72rem;
}

.market-route-callout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 32px;
  border-top: 1px solid var(--line);
}

.market-route-callout h2 {
  margin: 5px 0 8px;
  font-size: var(--step-2);
}

.market-route-callout p {
  max-width: 70ch;
  margin: 0;
  color: var(--muted);
}

/* Listing detail alignment */

.listing-detail-head {
  padding-block: 24px 18px;
  border-bottom: 1px solid var(--line);
  background: #edf2ef;
}

.listing-detail-head .breadcrumbs {
  margin-bottom: 12px;
}

.listing-title-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 24px;
}

.listing-title-row h1 {
  max-width: 24ch;
}

.save-detail {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border: 1px solid #9ba9a2;
  border-radius: var(--radius-sm);
  background: var(--white);
  color: var(--ink-2);
  font-weight: 700;
}

.save-detail.is-saved {
  border-color: #91cbb3;
  background: #e4f4ec;
}

.listing-detail-main {
  min-width: 0;
}

.listing-gallery figure {
  position: relative;
}

.listing-gallery .gallery-main {
  grid-row: 1 / -1;
}

.listing-gallery .gallery-main figcaption {
  position: absolute;
  right: 10px;
  bottom: 10px;
  left: 10px;
  padding: 7px 9px;
  border-radius: 6px;
  background: rgb(5 29 23 / 0.76);
  color: #fff;
  font-size: 0.66rem;
}

.listing-overview .provider-line {
  padding: 0;
  background: transparent;
}

.listing-overview .provider-line a {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: var(--ink-2);
  font-weight: 700;
  text-decoration: none;
}

.listing-overview .provider-line svg {
  width: 14px;
  height: 14px;
  flex: 0 0 14px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.detail-lead {
  max-width: 70ch;
  color: #34423b;
  font-size: 1rem;
  line-height: 1.65;
}

.spec-grid h3 {
  margin: 0 0 6px;
  font-size: 0.9rem;
}

.spec-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 0.76rem;
}

.availability-list {
  display: grid;
  gap: 8px;
  margin-bottom: 14px;
}

.availability-list > div {
  display: grid;
  grid-template-columns: 10px minmax(160px, 0.7fr) minmax(0, 1fr);
  align-items: center;
  gap: 10px;
  padding: 12px;
  border: 1px solid #cfe0d7;
  border-radius: var(--radius-sm);
  background: #edf7f2;
  font-size: 0.76rem;
}

.provider-profile {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.7fr);
  gap: 32px;
}

.provider-profile dl,
.fact-list {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--white);
}

.provider-profile dl > div,
.fact-list > div {
  display: grid;
  grid-template-columns: minmax(100px, 0.45fr) minmax(0, 1fr);
  gap: 12px;
  padding: 10px 12px;
  border-bottom: 1px solid var(--line);
}

.provider-profile dl > div:last-child,
.fact-list > div:last-child {
  border-bottom: 0;
}

.provider-profile dt,
.fact-list span {
  color: var(--muted);
  font-size: 0.74rem;
}

.provider-profile dd,
.fact-list strong {
  margin: 0;
  font-size: 0.76rem;
  font-weight: 650;
}

.review-stars {
  color: #a66b13;
  letter-spacing: 0.08em;
}

.review-grid article > strong,
.review-grid article > span,
.review-grid article > small {
  display: block;
  font-size: 0.74rem;
}

.review-grid article > span,
.review-grid article > small {
  margin-top: 3px;
  color: var(--muted);
}

.booking-price {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 6px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}

.booking-price strong {
  font-size: 1.7rem;
  letter-spacing: -0.04em;
}

.booking-price span,
.booking-panel > p,
.booking-panel > small {
  color: var(--muted);
  font-size: 0.74rem;
}

.booking-facts {
  display: grid;
  gap: 8px;
  padding-block: 4px;
  color: #315d4a;
  font-size: 0.76rem;
  font-weight: 600;
}

.booking-panel-mobile {
  display: none;
}

/* CSP-safe image crops */
.media-stockholm-unitree-g1 { object-position: 50% 54%; }
.media-berlin-unitree-r1 { object-position: 50% 50%; }
.media-paris-ameca { object-position: 50% 44%; }
.media-amsterdam-ameca-desktop { object-position: 50% 50%; }
.media-copenhagen-unitree-h2 { object-position: 50% 50%; }
.media-barcelona-unitree-g1 { object-position: 42% 50%; }
.media-zurich-unitree-h2-plus { object-position: 50% 50%; }
.media-helsinki-neura-4ne1-mini { object-position: 58% 50%; }
.media-munich-pal-kangaroo { object-position: 34% 50%; }
.media-milan-figure-03 { object-position: 50% 50%; }
.media-vienna-digit { object-position: 64% 50%; }
.media-brussels-ameca-desktop { object-position: 50% 50%; }

@media (max-width: 1160px) {
  .market-hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(300px, 0.56fr);
    gap: 30px;
  }

  .category-grid,
  .home-news-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .market-hero-grid {
    min-height: 500px;
    grid-template-columns: minmax(0, 1fr) minmax(260px, 0.48fr);
  }

  .market-hero-media {
    height: 400px;
  }

  .category-grid,
  .home-news-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .market-hero-grid {
    display: block;
    min-height: 0;
  }

  .market-hero-copy {
    padding-block: 26px;
  }

  .market-hero-copy > p {
    margin-bottom: 14px;
    font-size: 0.78rem;
  }

  .market-hero-media {
    display: none;
  }

  .home-market-hero {
    min-height: 0;
  }

  .home-market-hero .search-grid > label:nth-child(4) {
    display: none;
  }

  .home-market-hero .search-grid > label:first-child,
  .marketplace-hero .search-grid > label:first-child {
    grid-column: auto;
  }

  .home-market-hero .search-grid .button,
  .marketplace-hero .search-grid .button {
    grid-column: auto;
    align-self: end;
  }

  .home-featured .section-heading > div:last-child .demo-disclosure {
    display: inline-flex;
  }

  .home-featured {
    padding-top: 16px;
  }

  .home-featured .section-heading {
    margin-bottom: 14px;
  }

  .home-featured .section-heading h2 {
    font-size: 1.35rem;
  }

  .home-featured .section-heading > div:last-child {
    display: flex;
  }

  .home-featured .section-heading > div:last-child a {
    display: none;
  }

  .home-featured .section-heading > div:last-child,
  .section-heading > div:last-child {
    justify-content: flex-start;
  }

  .listing-card-compact {
    min-height: 0;
  }

  .category-grid,
  .home-news-grid {
    grid-template-columns: 1fr;
  }

  .category-card {
    min-height: 112px;
  }

  .provider-cta > div:last-child {
    justify-items: start;
  }

  .marketplace-hero {
    padding-block: 12px 16px;
  }

  .market-tabs {
    margin-bottom: 8px;
  }

  .market-tabs a,
  .market-tabs span {
    min-height: 32px;
  }

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

  .marketplace-title-row h1 {
    margin-block: 4px;
    font-size: 1.55rem;
  }

  .marketplace-title-row p {
    display: none;
  }

  .marketplace-title-row .demo-disclosure {
    display: flex;
    padding: 6px 8px;
    font-size: 0.65rem;
    line-height: 1.3;
  }

  .marketplace-hero .market-search {
    margin-top: 8px;
  }

  .marketplace-hero .search-grid > label:nth-child(4) {
    display: none;
  }

  .mobile-market-bar {
    margin-bottom: 12px;
  }

  .filter-panel-head {
    position: sticky;
    z-index: 2;
    top: -20px;
    padding-block: 12px;
    background: var(--white);
  }

  .filter-close {
    display: inline-flex;
  }

  .filter-submit {
    display: inline-flex;
    min-height: 44px;
  }

  .results-head {
    align-items: flex-end;
  }

  .results-head h2 {
    font-size: 1rem;
  }

  .sort-control > span {
    display: none;
  }

  .sort-control .select {
    min-width: 130px;
    min-height: 38px;
  }

  .filter-chip-row {
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 4px;
  }

  .filter-chip-row > span {
    flex: 0 0 auto;
  }

  .market-route-callout,
  .listing-title-row,
  .provider-profile {
    grid-template-columns: 1fr;
  }

  .listing-detail-head {
    padding-block: 14px;
  }

  .listing-title-row h1 {
    font-size: 1.8rem;
  }

  .listing-title-row .demo-disclosure {
    font-size: 0.62rem;
  }

  .listing-title-row .save-detail {
    justify-self: start;
  }

  .booking-panel-desktop {
    display: none;
  }

  .booking-panel-mobile {
    position: static;
    display: grid;
    margin-top: 14px;
    box-shadow: none;
  }

  .availability-list > div {
    grid-template-columns: 10px 1fr;
  }

  .availability-list > div > span:last-child {
    grid-column: 2;
  }

  .listing-footer {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .site-header .icon-button,
  .site-header .menu-trigger {
    width: 44px;
    height: 44px;
    flex-basis: 44px;
  }

  .search-grid input,
  .search-grid select,
  .search-grid .button,
  .mobile-market-bar .button,
  .mobile-market-bar button,
  .mobile-market-bar select,
  .sort-control .select,
  .listing-footer .button,
  .save-detail {
    min-height: 44px;
  }

  .listing-media [data-save-listing],
  .listing-media .save-button,
  .listing-card > [data-save-listing] {
    width: 44px;
    height: 44px;
  }
}
