:root {
  --font-body: "Inter", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-display: "Playfair Display", Georgia, "Times New Roman", serif;

  --bg: #031017;
  --bg-deep: #020a0f;
  --bg-2: #071923;
  --surface: rgba(9, 26, 36, 0.84);
  --surface-strong: rgba(4, 16, 24, 0.94);
  --surface-soft: rgba(255, 255, 255, 0.055);
  --paper: #f4f3ee;
  --paper-2: #e9ece8;
  --steel: #eef2f1;
  --steel-2: #e4e9e8;
  --steel-3: #d7dfde;
  --ink: #0c151c;
  --ink-soft: rgba(12, 21, 28, 0.72);
  --text: #f5f7f3;
  --muted: rgba(224, 235, 233, 0.72);
  --muted-strong: rgba(244, 247, 244, 0.84);
  --muted-dark: rgba(12, 21, 28, 0.66);
  --faint: rgba(224, 235, 233, 0.48);
  --line: rgba(184, 211, 214, 0.18);
  --line-dark-soft: rgba(12, 21, 28, 0.12);
  --line-strong: rgba(222, 183, 101, 0.38);
  --card-light: rgba(255, 255, 255, 0.74);
  --card-light-strong: rgba(255, 255, 255, 0.9);
  --brass: #d5a653;
  --brass-2: #f0c76c;
  --cyan: #55d6ce;
  --danger: #f09b7c;

  --radius-xs: 4px;
  --radius-sm: 6px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.34);
  --focus: 0 0 0 3px rgba(240, 199, 108, 0.22);

  --container: 1180px;
  --container-wide: 1360px;
  --gutter: clamp(20px, 4vw, 48px);
  --section-y: clamp(68px, 8vw, 112px);
  --section-y-tight: clamp(46px, 6vw, 76px);

  --step--1: clamp(0.82rem, 0.78rem + 0.18vw, 0.94rem);
  --step-0: clamp(1rem, 0.96rem + 0.22vw, 1.13rem);
  --step-1: clamp(1.16rem, 1.08rem + 0.44vw, 1.42rem);
  --step-2: clamp(1.38rem, 1.22rem + 0.82vw, 1.86rem);
  --step-3: clamp(2rem, 1.55rem + 2.15vw, 3.15rem);
  --step-4: clamp(2.6rem, 1.85rem + 3.5vw, 4.75rem);
  --step-5: clamp(2.65rem, 1.7rem + 3.35vw, 4.25rem);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 0;
}

html,
body {
  overflow-x: hidden;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.62;
  letter-spacing: 0;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body:not(.is-home) {
  background: var(--paper);
  color: var(--ink);
}

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

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  font: inherit;
  letter-spacing: 0;
}

button,
select {
  cursor: pointer;
}

:focus-visible {
  outline: none;
  box-shadow: var(--focus);
}

.container {
  width: min(var(--container), calc(100% - var(--gutter)));
  margin: 0 auto;
}

.site-header {
  position: fixed;
  z-index: 50;
  inset: 0 0 auto;
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 10px clamp(18px, 3vw, 34px);
  color: #fff;
  background: rgba(2, 12, 18, 0.76);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(18px);
}

.site-header.is-scrolled,
body:not(.is-home) .site-header {
  background: rgba(2, 12, 18, 0.96);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  color: #fff;
  font-size: 1rem;
  font-weight: 760;
}

.brand-mark,
.brand-mark svg {
  width: 32px;
  height: 32px;
}

.brand-mark {
  display: inline-grid;
  flex: 0 0 auto;
  place-items: center;
  color: #fff;
}

.brand-mark svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 2.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 2px;
}

.site-nav a {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 11px;
  border-radius: var(--radius-sm);
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.8rem;
  font-weight: 650;
  line-height: 1;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a[aria-current="page"] {
  color: #fff;
  background: rgba(255, 255, 255, 0.09);
}

.site-nav .nav-action {
  margin-left: 8px;
  padding-inline: 16px;
  color: #081018;
  background: linear-gradient(180deg, #f6d37b, var(--brass));
  box-shadow: 0 14px 34px rgba(213, 166, 83, 0.26);
}

.nav-toggle {
  display: none;
}

.future-hero {
  position: relative;
  min-height: clamp(560px, 72svh, 760px);
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 104px 0 52px;
  background: var(--bg-deep);
}

.hero-media,
.hero-media img,
.hero-video,
.future-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-media img,
.hero-video {
  object-fit: cover;
}

.hero-media {
  z-index: 0;
}

.hero-video {
  z-index: 0;
  opacity: 0.62;
  filter: saturate(0.8) contrast(1.08) brightness(0.82);
  pointer-events: none;
}

.static-preview .hero-video {
  display: none;
}

.future-overlay {
  z-index: 1;
  background:
    radial-gradient(circle at 82% 18%, rgba(85, 214, 206, 0.11), transparent 32%),
    radial-gradient(circle at 18% 78%, rgba(213, 166, 83, 0.14), transparent 28%),
    linear-gradient(180deg, rgba(2, 10, 15, 0.46), rgba(2, 10, 15, 0.74) 58%, #020a0f 100%),
    linear-gradient(90deg, rgba(2, 10, 15, 0.9), rgba(2, 10, 15, 0.28) 58%, rgba(2, 10, 15, 0.72));
}

.future-overlay::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.043) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.032) 1px, transparent 1px);
  background-size: 96px 96px;
  mask-image: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.72) 15%, rgba(0, 0, 0, 0.58) 80%, transparent);
}

.hero-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.34fr);
  gap: clamp(34px, 8vw, 96px);
  align-items: center;
}

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

.eyebrow {
  margin: 0 0 14px;
  color: var(--brass-2);
  font-size: 0.78rem;
  font-weight: 720;
  line-height: 1.2;
  text-transform: uppercase;
}

.future-title {
  max-width: 920px;
  margin: 0;
  color: #fff;
  font-family: var(--font-body);
  font-size: clamp(2.55rem, 1.62rem + 3.05vw, 3.9rem);
  font-weight: 720;
  line-height: 1;
  letter-spacing: 0;
  text-shadow: 0 26px 72px rgba(0, 0, 0, 0.62);
}

.future-title span {
  display: inline;
}

.future-title .hero-desktop-line {
  display: block;
}

.future-title .hero-mobile-line {
  display: none;
}

.future-title br {
  display: block;
}

.future-title .hero-mobile-break {
  display: none;
}

.hero-lede {
  max-width: 760px;
  margin: 20px 0 0;
  color: rgba(244, 247, 244, 0.86);
  font-size: clamp(1rem, 0.96rem + 0.24vw, 1.16rem);
  font-weight: 460;
  line-height: 1.5;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.btn {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  font-weight: 760;
  line-height: 1;
  cursor: pointer;
}

.btn-primary {
  color: #071018;
  background: linear-gradient(180deg, #f7d984, var(--brass));
  box-shadow: 0 22px 58px rgba(213, 166, 83, 0.27);
}

.btn-secondary {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(16px);
}

.hero-brief {
  display: grid;
  gap: 16px;
  padding: 22px;
  border: 1px solid rgba(196, 220, 220, 0.18);
  border-radius: var(--radius-md);
  background: rgba(5, 18, 27, 0.74);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.hero-brief span,
.trust-ledger span,
.proof-board span,
.coverage-grid span,
.maker-list li::before {
  color: var(--brass-2);
}

.hero-brief span,
.trust-ledger span,
.coverage-grid span,
.site-footer span {
  display: block;
  font-size: 0.72rem;
  font-weight: 800;
  line-height: 1.2;
  text-transform: uppercase;
}

.hero-brief ol {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.hero-brief li {
  padding-top: 10px;
  border-top: 1px solid rgba(196, 220, 220, 0.14);
  color: rgba(244, 247, 244, 0.84);
  font-size: 0.92rem;
  font-weight: 700;
}

.hero-command {
  gap: 14px;
  padding: 20px;
  background:
    linear-gradient(180deg, rgba(6, 22, 32, 0.82), rgba(3, 14, 22, 0.78)),
    rgba(5, 18, 27, 0.74);
}

.command-topline {
  display: grid;
  gap: 6px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(196, 220, 220, 0.14);
}

.command-topline strong {
  color: #fff;
  font-size: clamp(1.05rem, 1.35vw, 1.28rem);
  line-height: 1.1;
}

.hero-command ol {
  gap: 0;
}

.hero-command li {
  display: grid;
  grid-template-columns: 30px 1fr;
  gap: 4px 10px;
  padding: 11px 0;
}

.hero-command li span {
  grid-row: span 2;
  width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(240, 199, 108, 0.34);
  border-radius: 999px;
  color: var(--brass-2);
  font-size: 0.62rem;
}

.hero-command li strong {
  color: rgba(244, 247, 244, 0.92);
  font-size: 0.9rem;
  line-height: 1.18;
}

.hero-command li em {
  color: rgba(224, 235, 233, 0.62);
  font-size: 0.76rem;
  font-style: normal;
  line-height: 1.35;
}

.hero-command p {
  margin: 0;
  padding-top: 14px;
  border-top: 1px solid rgba(196, 220, 220, 0.14);
  color: rgba(244, 247, 244, 0.74);
  font-size: 0.78rem;
  line-height: 1.5;
}

.trust-ledger {
  position: relative;
  z-index: 3;
  padding: 11px 0;
  color: var(--ink);
  background: linear-gradient(180deg, #f7f8f5, var(--steel));
  border-bottom: 1px solid rgba(12, 21, 28, 0.1);
}

.trust-ledger-inner {
  display: grid;
  grid-template-columns: minmax(220px, 1.25fr) repeat(3, minmax(140px, 0.8fr)) minmax(240px, 1.35fr);
  overflow: hidden;
  border: 1px solid rgba(12, 21, 28, 0.14);
  border-radius: var(--radius-sm);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(247, 249, 247, 0.82)),
    var(--steel);
  box-shadow: 0 12px 34px rgba(12, 21, 28, 0.07);
}

.trust-ledger a,
.trust-ledger div,
.trust-support {
  min-width: 0;
  min-height: 54px;
  display: grid;
  align-content: center;
  gap: 4px;
  padding: 10px 14px;
  border-right: 1px solid rgba(12, 21, 28, 0.095);
}

.trust-ledger a:last-child,
.trust-ledger div:last-child,
.trust-support:last-child {
  border-right: 0;
}

.trust-ledger strong {
  color: var(--ink);
  font-size: 0.86rem;
  font-weight: 750;
  line-height: 1.25;
  overflow-wrap: anywhere;
}

.trust-ledger span {
  color: rgba(12, 21, 28, 0.5);
}

.trust-support {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.8rem;
  line-height: 1.45;
}

.early-rfq {
  color: #071018;
  background: linear-gradient(180deg, #f7f2e8, #eee8dc);
  border-top: 1px solid rgba(12, 21, 28, 0.08);
  border-bottom: 1px solid rgba(12, 21, 28, 0.14);
}

.early-rfq-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 74px;
}

.early-rfq p {
  margin: 0;
  color: rgba(12, 21, 28, 0.78);
  font-size: clamp(0.94rem, 0.9rem + 0.2vw, 1.04rem);
  font-weight: 620;
  line-height: 1.45;
}

.early-rfq .btn {
  flex: 0 0 auto;
  box-shadow: none;
}

.early-rfq-actions {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 14px;
}

.early-rfq-link {
  color: #503a10;
  font-size: 0.86rem;
  font-weight: 800;
  text-decoration: none;
  border-bottom: 1px solid rgba(80, 58, 16, 0.35);
}

.early-rfq-link:hover,
.early-rfq-link:focus-visible {
  color: #061318;
  border-bottom-color: currentColor;
}

.proof-desk {
  position: relative;
  overflow: hidden;
  padding: var(--section-y-tight) 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 8% 16%, rgba(85, 214, 206, 0.08), transparent 26%),
    linear-gradient(180deg, #f8f8f4 0%, var(--paper) 58%, var(--steel) 100%);
  border-bottom: 1px solid rgba(12, 21, 28, 0.1);
}

.proof-desk::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(12, 21, 28, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(12, 21, 28, 0.026) 1px, transparent 1px);
  background-size: 96px 96px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.46), transparent 88%);
}

.proof-desk > .container {
  position: relative;
  z-index: 1;
}

.proof-desk-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(28px, 5vw, 68px);
  align-items: start;
}

.proof-desk .section-head h2 {
  max-width: 620px;
  font-family: var(--font-body);
  font-size: clamp(2rem, 3vw, 3.35rem);
  font-weight: 730;
  line-height: 1.04;
}

.proof-route {
  display: grid;
  gap: 14px;
}

.proof-route-caption {
  min-height: 54px;
  display: grid;
  grid-template-columns: auto minmax(80px, 1fr) auto;
  align-items: center;
  gap: 14px;
  padding: 13px 16px;
  border: 1px solid rgba(12, 21, 28, 0.13);
  border-radius: var(--radius-md);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.76), rgba(244, 247, 243, 0.58)),
    rgba(255, 255, 255, 0.72);
  box-shadow: 0 16px 42px rgba(12, 21, 28, 0.07);
}

.proof-route-caption span,
.proof-route-caption strong {
  color: var(--ink);
  font-size: 0.72rem;
  font-weight: 820;
  letter-spacing: 0.04em;
  line-height: 1.1;
  text-transform: uppercase;
}

.proof-route-caption strong {
  color: #6f4a0b;
  text-align: right;
}

.proof-route-caption i {
  position: relative;
  height: 1px;
  background: linear-gradient(90deg, rgba(12, 21, 28, 0.18), rgba(213, 166, 83, 0.72), rgba(12, 21, 28, 0.18));
}

.proof-route-caption i::before,
.proof-route-caption i::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 7px;
  height: 7px;
  border: 1px solid rgba(213, 166, 83, 0.78);
  border-radius: 999px;
  background: var(--paper);
  transform: translateY(-50%);
}

.proof-route-caption i::before {
  left: 0;
}

.proof-route-caption i::after {
  right: 0;
}

.proof-board {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.proof-board article {
  position: relative;
  min-height: 150px;
  display: grid;
  align-content: start;
  gap: 10px;
  padding: clamp(18px, 2vw, 24px);
  border: 1px solid rgba(12, 21, 28, 0.13);
  border-radius: var(--radius-md);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(246, 248, 245, 0.68)),
    var(--card-light);
  box-shadow: 0 18px 48px rgba(12, 21, 28, 0.08);
}

.proof-board article::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 3px;
  border-radius: var(--radius-md) 0 0 var(--radius-md);
  background: linear-gradient(180deg, rgba(213, 166, 83, 0.86), rgba(85, 214, 206, 0.34));
}

.proof-board span {
  width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(213, 166, 83, 0.38);
  border-radius: 999px;
  color: #8a5f13;
  font-size: 0.72rem;
  font-weight: 800;
}

.proof-board strong {
  color: var(--ink);
  font-size: var(--step-1);
  line-height: 1.14;
}

.proof-board p {
  margin: 0;
  color: var(--muted-dark);
  font-size: 0.94rem;
  line-height: 1.52;
}

.section {
  position: relative;
  scroll-margin-top: 86px;
  padding: var(--section-y) 0;
}

.anchor-target {
  display: block;
  height: 0;
  scroll-margin-top: 86px;
}

.section-head {
  max-width: 780px;
}

.section-head h2,
.contact-copy h2 {
  margin: 0;
  color: inherit;
  font-family: var(--font-display);
  font-size: var(--step-4);
  font-weight: 700;
  line-height: 1.04;
  letter-spacing: 0;
}

.scope-theatre .section-head h2 {
  font-family: var(--font-body);
  font-size: clamp(2rem, 2.65vw, 3rem);
  font-weight: 720;
  line-height: 1.02;
}

.section-head p:not(.eyebrow),
.contact-copy p,
.coverage-grid p,
.faq-list p,
.process-list p {
  color: var(--muted);
  font-size: var(--step-0);
  line-height: 1.68;
}

.section-head p:not(.eyebrow) {
  max-width: 690px;
  margin: 18px 0 0;
}

.process-section .section-head h2,
.makers-section .section-head h2,
.coverage-section .section-head h2 {
  font-size: clamp(2.45rem, 3.4vw, 4rem);
}

.makers-section .section-head h2 {
  font-family: var(--font-body);
  font-size: clamp(2.05rem, 2.85vw, 3.35rem);
  font-weight: 720;
  line-height: 1.05;
}

.scope-theatre {
  overflow: hidden;
  color: var(--ink);
  background:
    radial-gradient(circle at 80% 10%, rgba(213, 166, 83, 0.12), transparent 28%),
    linear-gradient(180deg, var(--steel) 0%, var(--paper) 48%, var(--steel-2) 100%);
  border-top: 1px solid rgba(12, 21, 28, 0.08);
  border-bottom: 1px solid rgba(12, 21, 28, 0.1);
}

.scope-theatre::before,
.process-section::before,
.proof-desk::before,
.faq-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(12, 21, 28, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(12, 21, 28, 0.032) 1px, transparent 1px);
  background-size: 96px 96px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.5), transparent 86%);
}

.contact-command::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.032) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.024) 1px, transparent 1px);
  background-size: 96px 96px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.66), transparent 86%);
}

.scope-theatre > .container,
.process-section > .container,
.proof-desk > .container,
.contact-command > .container,
.faq-section > .container {
  position: relative;
  z-index: 1;
}

.supply-showcase {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(0, 0.9fr) minmax(0, 0.9fr);
  grid-template-areas:
    "pump gas thermo"
    "pump sensor sensor";
  gap: 14px;
  margin-top: clamp(34px, 5vw, 64px);
}

.supply-tile {
  position: relative;
  min-width: 0;
  min-height: clamp(260px, 22vw, 340px);
  overflow: hidden;
  border: 1px solid rgba(12, 21, 28, 0.12);
  border-radius: var(--radius-sm);
  background: var(--card-light-strong);
  box-shadow: 0 18px 54px rgba(12, 21, 28, 0.12);
}

.supply-tile-feature {
  grid-area: pump;
  min-height: clamp(500px, 40vw, 600px);
}

.supply-tile:nth-child(2) {
  grid-area: gas;
}

.supply-tile:nth-child(3) {
  grid-area: thermo;
}

.supply-tile:nth-child(4) {
  grid-area: sensor;
}

.supply-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(180deg, transparent 0%, transparent 58%, rgba(244, 243, 238, 0.12) 76%, rgba(244, 243, 238, 0.58) 100%);
}

.supply-tile img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
  filter: saturate(1.02) contrast(1.04) brightness(1.01);
  transform: scale(1.02);
  transition: transform 900ms cubic-bezier(0.2, 0.72, 0.14, 1), filter 900ms ease;
}

.supply-tile:nth-child(2) img {
  object-position: 50% 52%;
}

.supply-tile:nth-child(3) img {
  object-position: 50% 42%;
  filter: saturate(1.02) contrast(1.07) brightness(1.06);
}

.supply-tile:nth-child(4) img {
  object-position: 50% 50%;
  filter: saturate(1) contrast(1.05) brightness(1);
}

.supply-tile:hover img {
  filter: saturate(1.04) contrast(1.06) brightness(1);
  transform: scale(1.045);
}

.supply-tile div {
  position: absolute;
  z-index: 2;
  left: clamp(12px, 1.4vw, 18px);
  right: clamp(12px, 1.4vw, 18px);
  bottom: clamp(12px, 1.4vw, 18px);
  display: grid;
  max-width: min(390px, calc(100% - 24px));
  gap: 6px;
  padding: clamp(12px, 1.15vw, 16px);
  border: 1px solid rgba(12, 21, 28, 0.12);
  border-radius: var(--radius-sm);
  background: rgba(248, 249, 246, 0.88);
  box-shadow: 0 14px 34px rgba(12, 21, 28, 0.13);
  backdrop-filter: blur(10px);
}

@media (min-width: 641px) {
  .supply-tile-feature div {
    max-width: min(360px, calc(100% - 36px));
  }
}

.supply-tile span {
  color: #8a5f13;
  font-size: 0.72rem;
  font-weight: 800;
  line-height: 1.2;
  text-transform: uppercase;
}

.supply-tile h3 {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-body);
  font-size: clamp(1.36rem, 1.45vw, 1.9rem);
  font-weight: 780;
  line-height: 1.02;
  letter-spacing: 0;
}

.supply-tile-feature h3 {
  font-size: clamp(1.75rem, 2.65vw, 2.8rem);
}

.supply-tile p {
  max-width: 430px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.94rem;
  line-height: 1.5;
}

.evidence-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin: 2px 0 0;
  padding: 0;
  list-style: none;
}

.evidence-chips li {
  min-height: 22px;
  display: inline-flex;
  align-items: center;
  padding: 4px 8px;
  border: 1px solid rgba(12, 21, 28, 0.12);
  border-radius: 999px;
  color: rgba(12, 21, 28, 0.68);
  background: rgba(255, 255, 255, 0.54);
  font-size: 0.66rem;
  font-weight: 760;
  line-height: 1;
}

.route-finder-section {
  position: relative;
  scroll-margin-top: 82px;
  overflow: hidden;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 18%, rgba(85, 214, 206, 0.07), transparent 26%),
    linear-gradient(180deg, var(--steel-2) 0%, #f8f8f4 48%, var(--paper) 100%);
  border-top: 1px solid rgba(12, 21, 28, 0.1);
  border-bottom: 1px solid rgba(12, 21, 28, 0.1);
}

.route-finder-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(12, 21, 28, 0.036) 1px, transparent 1px),
    linear-gradient(90deg, rgba(12, 21, 28, 0.028) 1px, transparent 1px);
  background-size: 112px 112px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.58), transparent 88%);
}

.route-finder-section > .container {
  position: relative;
  z-index: 1;
}

.route-finder-layout {
  display: grid;
  gap: clamp(28px, 4.4vw, 58px);
}

.route-finder-head {
  max-width: 820px;
}

.route-finder-head h2 {
  font-family: var(--font-body);
  font-size: clamp(2.2rem, 3.2vw, 4.25rem);
  font-weight: 740;
  line-height: 1.04;
}

.route-finder-head p:not(.eyebrow) {
  color: var(--muted-dark);
}

.route-finder-shell {
  display: grid;
  grid-template-columns: minmax(260px, 0.86fr) minmax(0, 1.14fr);
  gap: clamp(18px, 2.6vw, 34px);
  align-items: stretch;
}

.route-selector {
  display: grid;
  gap: 8px;
  align-content: start;
  padding: 10px;
  border: 1px solid rgba(12, 21, 28, 0.12);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.48);
  box-shadow: 0 18px 42px rgba(12, 21, 28, 0.08);
}

.route-option {
  width: 100%;
  min-height: 66px;
  display: grid;
  grid-template-columns: 38px 1fr;
  grid-template-areas:
    "num title"
    "num meta";
  gap: 2px 12px;
  align-items: center;
  padding: 12px 14px;
  border: 1px solid transparent;
  border-radius: calc(var(--radius-sm) - 2px);
  color: rgba(12, 21, 28, 0.76);
  background: transparent;
  text-align: left;
  font: inherit;
  cursor: pointer;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.route-option:hover,
.route-option:focus-visible {
  border-color: rgba(12, 21, 28, 0.18);
  background: rgba(255, 255, 255, 0.62);
  outline: none;
}

.route-option.is-active {
  border-color: rgba(213, 166, 83, 0.58);
  color: var(--ink);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(244, 243, 238, 0.78));
  box-shadow: 0 10px 26px rgba(12, 21, 28, 0.1);
}

.route-option span {
  grid-area: num;
  color: var(--brass);
  font-size: 0.78rem;
  font-weight: 840;
}

.route-option strong {
  grid-area: title;
  font-size: 1rem;
  font-weight: 780;
  line-height: 1.12;
}

.route-option small {
  grid-area: meta;
  color: var(--muted-dark);
  font-size: 0.78rem;
  font-weight: 650;
  line-height: 1.25;
}

.route-dossier {
  min-width: 0;
  border: 1px solid rgba(12, 21, 28, 0.12);
  border-radius: var(--radius-sm);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.82), rgba(244, 243, 238, 0.72));
  box-shadow: 0 24px 64px rgba(12, 21, 28, 0.12);
  overflow: hidden;
}

.route-panel {
  display: none;
  min-height: 100%;
  padding: clamp(22px, 3vw, 34px);
}

.route-panel.is-active {
  display: grid;
  gap: clamp(18px, 2vw, 26px);
}

.route-kicker {
  color: var(--brass);
  font-size: 0.78rem;
  font-weight: 840;
  letter-spacing: 0;
}

.route-panel h3 {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-body);
  font-size: clamp(2rem, 3.1vw, 3.8rem);
  font-weight: 760;
  line-height: 0.98;
}

.route-evidence-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(12, 21, 28, 0.12);
  border-radius: var(--radius-sm);
  background: rgba(12, 21, 28, 0.12);
}

.route-evidence-grid div {
  display: grid;
  gap: 8px;
  padding: clamp(15px, 1.6vw, 22px);
  background: rgba(255, 255, 255, 0.74);
}

.route-evidence-grid strong {
  color: var(--ink);
  font-size: 0.88rem;
  font-weight: 820;
}

.route-evidence-grid p {
  margin: 0;
  color: var(--muted-dark);
  font-size: 0.94rem;
  line-height: 1.5;
}

.route-rfq-link {
  width: fit-content;
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border: 1px solid rgba(12, 21, 28, 0.14);
  border-radius: var(--radius-sm);
  color: var(--ink);
  background: linear-gradient(135deg, #e5b666, var(--brass));
  font-size: 0.9rem;
  font-weight: 820;
  text-decoration: none;
  box-shadow: 0 14px 30px rgba(12, 21, 28, 0.13);
}

.route-rfq-link:hover,
.route-rfq-link:focus-visible {
  transform: translateY(-1px);
  outline: 2px solid rgba(213, 166, 83, 0.34);
  outline-offset: 3px;
}

.supplier-handoff-section {
  position: relative;
  overflow: hidden;
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(248, 248, 244, 0.96), rgba(235, 238, 235, 0.92)),
    radial-gradient(circle at 88% 18%, rgba(213, 166, 83, 0.14), transparent 28%);
  border-top: 1px solid rgba(12, 21, 28, 0.1);
  border-bottom: 1px solid rgba(12, 21, 28, 0.1);
}

.supplier-handoff-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  gap: clamp(22px, 3vw, 42px);
  align-items: center;
  padding-top: clamp(28px, 4vw, 46px);
  padding-bottom: clamp(28px, 4vw, 46px);
}

.supplier-handoff-card::before {
  content: "";
  position: absolute;
  inset: clamp(18px, 3vw, 30px);
  z-index: 0;
  pointer-events: none;
  border: 1px solid rgba(12, 21, 28, 0.12);
  border-radius: var(--radius-sm);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.68), rgba(244, 243, 238, 0.46));
  box-shadow: 0 22px 58px rgba(12, 21, 28, 0.08);
}

.supplier-handoff-copy,
.supplier-handoff-evidence {
  position: relative;
  z-index: 1;
}

.supplier-handoff-copy {
  display: grid;
  gap: 14px;
  max-width: 690px;
}

.supplier-handoff-copy h2 {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-body);
  font-size: clamp(1.86rem, 2.9vw, 3.25rem);
  font-weight: 740;
  line-height: 1.02;
}

.supplier-handoff-copy p:not(.eyebrow) {
  margin: 0;
  color: var(--muted-dark);
  font-size: clamp(1rem, 1.2vw, 1.12rem);
  line-height: 1.62;
}

.supplier-handoff-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-top: 4px;
}

.supplier-handoff-link {
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 760;
  text-decoration: none;
  border-bottom: 1px solid rgba(12, 21, 28, 0.26);
}

.supplier-handoff-link:hover,
.supplier-handoff-link:focus-visible {
  color: #8a5f16;
  outline: none;
  border-bottom-color: rgba(213, 166, 83, 0.78);
}

.supplier-handoff-evidence {
  display: grid;
  gap: 14px;
  padding: clamp(18px, 2.2vw, 26px);
  border: 1px solid rgba(12, 21, 28, 0.12);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.64);
}

.supplier-handoff-route {
  margin: 0;
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 780;
  line-height: 1.42;
}

.supplier-handoff-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.supplier-handoff-chips li {
  padding: 8px 10px;
  border: 1px solid rgba(12, 21, 28, 0.12);
  border-radius: 999px;
  color: rgba(12, 21, 28, 0.74);
  background: rgba(255, 255, 255, 0.66);
  font-size: 0.78rem;
  font-weight: 760;
  line-height: 1;
}

.supplier-handoff-verification {
  margin: 0;
  padding-top: 12px;
  border-top: 1px solid rgba(12, 21, 28, 0.12);
  color: rgba(12, 21, 28, 0.66);
  font-size: 0.82rem;
  font-weight: 650;
  line-height: 1.48;
}

.process-section {
  color: #071018;
  background:
    radial-gradient(circle at 84% 18%, rgba(213, 166, 83, 0.14), transparent 28%),
    linear-gradient(180deg, var(--paper-2), var(--paper));
}

.process-section .section-head p:not(.eyebrow),
.scope-theatre .section-head p:not(.eyebrow),
.proof-desk .section-head p:not(.eyebrow),
.makers-section .section-head p:not(.eyebrow),
.faq-section .section-head p:not(.eyebrow),
.faq-list p,
.process-list p,
.coverage-grid p {
  color: var(--muted-dark);
}

.process-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(32px, 6vw, 82px);
  align-items: start;
}

.process-list {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(7, 16, 24, 0.16);
}

.process-list li {
  display: grid;
  grid-template-columns: 72px 0.45fr 1fr;
  gap: 22px;
  padding: 24px 0;
  border-bottom: 1px solid rgba(7, 16, 24, 0.16);
}

.process-list span {
  color: var(--brass);
  font-size: 0.82rem;
  font-weight: 800;
}

.process-list strong {
  color: #071018;
  font-size: var(--step-1);
  line-height: 1.18;
}

.process-list p {
  margin: 0;
}

.makers-section {
  color: var(--ink);
  background:
    radial-gradient(circle at 18% 20%, rgba(85, 214, 206, 0.08), transparent 26%),
    linear-gradient(180deg, var(--steel-2), var(--steel));
}

.makers-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(34px, 6vw, 86px);
  align-items: start;
}

.maker-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line-dark-soft);
}

.maker-list li {
  position: relative;
  min-height: 56px;
  display: flex;
  align-items: center;
  padding: 14px 18px 14px 28px;
  border-bottom: 1px solid var(--line-dark-soft);
  color: rgba(12, 21, 28, 0.78);
  font-size: clamp(1rem, 1.15vw, 1.24rem);
  font-weight: 720;
}

.maker-list li:nth-child(odd) {
  border-right: 1px solid var(--line-dark-soft);
}

.maker-list li::before {
  content: "";
  position: absolute;
  left: 12px;
  width: 5px;
  height: 22px;
  border-radius: 999px;
  background: rgba(213, 166, 83, 0.8);
}

.coverage-section {
  color: #071018;
  background:
    linear-gradient(135deg, rgba(233, 238, 241, 0.96), rgba(250, 248, 242, 0.98) 44%, rgba(219, 227, 231, 0.9)),
    var(--paper);
  border-top: 1px solid rgba(12, 21, 28, 0.08);
  border-bottom: 1px solid rgba(12, 21, 28, 0.1);
}

.coverage-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: clamp(32px, 6vw, 76px);
  align-items: start;
}

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

.coverage-grid article {
  position: relative;
  overflow: hidden;
  padding: 22px;
  border: 1px solid rgba(12, 21, 28, 0.13);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 18px 44px rgba(8, 20, 30, 0.06);
}

.coverage-grid article::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, rgba(205, 153, 69, 0.92), rgba(33, 88, 101, 0.48));
}

.coverage-grid span {
  color: rgba(7, 16, 24, 0.55);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.68rem;
  font-weight: 700;
}

.coverage-grid strong {
  display: block;
  margin-top: 8px;
  color: #071018;
  font-size: var(--step-1);
  line-height: 1.2;
}

.coverage-grid p {
  margin: 8px 0 0;
}

.contact-command {
  overflow: hidden;
  scroll-margin-top: 0;
  color: #fff;
  background:
    radial-gradient(circle at 76% 16%, rgba(85, 214, 206, 0.12), transparent 28%),
    radial-gradient(circle at 22% 82%, rgba(213, 166, 83, 0.14), transparent 30%),
    #020d14;
}

.contact-command-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.76fr) minmax(0, 1.24fr);
  gap: clamp(34px, 6vw, 82px);
  align-items: start;
}

.contact-copy {
  position: sticky;
  top: 94px;
}

.contact-copy h2 {
  max-width: 560px;
  font-size: clamp(2.35rem, 4.4vw, 4rem);
}

.contact-copy p {
  max-width: 540px;
  margin: 18px 0 0;
}

.contact-direct {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.contact-direct a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  padding: 10px 13px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  color: #fff;
  background: rgba(255, 255, 255, 0.055);
  font-size: 0.92rem;
  font-weight: 800;
}

.rfq-form {
  display: grid;
  gap: 12px;
  padding: clamp(18px, 2.15vw, 24px);
  border: 1px solid rgba(196, 220, 220, 0.18);
  border-radius: var(--radius-md);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03)),
    rgba(6, 24, 35, 0.76);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

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

.rfq-form label {
  display: grid;
  gap: 6px;
}

.honeypot-field {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.rfq-form span {
  color: rgba(224, 235, 233, 0.76);
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1.25;
}

.rfq-form em {
  color: rgba(240, 199, 108, 0.92);
  font-style: normal;
  font-weight: 700;
}

.rfq-form input,
.rfq-form textarea,
.rfq-form select {
  width: 100%;
  min-height: 46px;
  border: 1px solid rgba(184, 211, 214, 0.18);
  border-radius: var(--radius-sm);
  padding: 11px 12px;
  color: #fff;
  background: rgba(3, 17, 26, 0.78);
}

.rfq-form textarea {
  min-height: 116px;
  resize: vertical;
}

.rfq-form input::placeholder,
.rfq-form textarea::placeholder {
  color: rgba(224, 235, 233, 0.38);
}

.rfq-form input:focus,
.rfq-form textarea:focus,
.rfq-form select:focus {
  border-color: rgba(213, 166, 83, 0.72);
  outline: none;
  box-shadow: var(--focus);
}

.form-wide,
.turnstile-shell,
.attachment-note,
.rfq-support-note,
.privacy-note,
.draft-preview,
.form-status,
.form-submit,
.mailto-fallback {
  grid-column: 1 / -1;
}

.turnstile-shell {
  min-height: 60px;
  display: flex;
  align-items: center;
}

.attachment-note {
  margin: 2px 0 0;
  color: rgba(224, 235, 233, 0.68);
  font-size: 0.92rem;
}

.rfq-support-note {
  margin: 0;
  padding: 12px 14px;
  color: rgba(246, 250, 248, 0.82);
  font-size: 0.92rem;
  line-height: 1.55;
  border: 1px solid rgba(233, 184, 86, 0.22);
  border-radius: var(--radius-sm);
  background: rgba(233, 184, 86, 0.08);
}

.rfq-support-note a {
  color: #f3c86e;
  font-weight: 800;
  text-decoration: none;
}

.rfq-support-note a:hover,
.rfq-support-note a:focus-visible {
  text-decoration: underline;
}

.privacy-note {
  margin: -2px 0 0;
  color: rgba(224, 235, 233, 0.58);
  font-size: 0.82rem;
  line-height: 1.5;
}

.privacy-note a {
  color: rgba(240, 199, 108, 0.92);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.draft-preview {
  min-height: 40px;
  display: block;
  padding: 11px 12px;
  border-left: 3px solid var(--brass);
  border-radius: var(--radius-sm);
  color: rgba(224, 235, 233, 0.78);
  background: rgba(3, 17, 26, 0.78);
  overflow-wrap: anywhere;
}

.form-status {
  min-height: 20px;
  margin: 0;
  color: var(--danger);
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.48;
}

.form-status.is-ok {
  color: var(--brass-2);
}

.form-status.is-error {
  color: var(--danger);
}

.form-submit {
  width: 100%;
}

.mailto-fallback {
  justify-self: center;
  color: rgba(224, 235, 233, 0.76);
  font-size: 0.9rem;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.faq-section {
  color: var(--ink);
  background:
    linear-gradient(180deg, var(--steel), #f7f7f3 72%, var(--paper));
  border-bottom: 1px solid rgba(12, 21, 28, 0.12);
}

.faq-section .section-head h2 {
  font-family: var(--font-body);
  font-size: clamp(2.05rem, 2.8vw, 3.3rem);
  font-weight: 720;
  line-height: 1.06;
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.76fr) minmax(0, 1.24fr);
  gap: clamp(32px, 6vw, 80px);
  align-items: start;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list article {
  padding: 20px 21px;
  border: 1px solid var(--line-dark-soft);
  border-radius: var(--radius-md);
  background: var(--card-light-strong);
}

.faq-list h3 {
  margin: 0;
  color: var(--ink);
  font-size: var(--step-1);
  line-height: 1.2;
}

.faq-list p {
  margin: 10px 0 0;
}

.site-footer {
  padding: 44px 0;
  color: #fff;
  background: #020a0f;
}

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

.site-footer strong {
  font-size: 1rem;
}

.site-footer p {
  max-width: 420px;
  margin: 10px 0 0;
  color: var(--muted);
}

.site-footer a {
  display: block;
  width: fit-content;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.86);
}

.js .reveal-on-scroll {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 620ms ease,
    transform 620ms cubic-bezier(0.2, 0.72, 0.14, 1);
}

.js .reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.page-hero {
  position: relative;
  min-height: 42svh;
  display: flex;
  align-items: end;
  overflow: hidden;
  padding: 118px 0 58px;
  color: #fff;
  background: var(--bg);
}

.page-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.38;
  filter: saturate(0.92) contrast(1.04);
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(3, 17, 26, 0.92), rgba(3, 17, 26, 0.64) 48%, rgba(3, 17, 26, 0.34)),
    linear-gradient(180deg, rgba(3, 17, 26, 0.18), rgba(3, 17, 26, 0.68));
}

.page-hero-copy {
  position: relative;
  z-index: 1;
  width: min(var(--container), calc(100% - var(--gutter)));
  margin: 0 auto;
}

.page-hero h1 {
  max-width: 760px;
  margin: 0;
  font-family: var(--font-body);
  font-size: clamp(2.35rem, 4vw, 4.25rem);
  font-weight: 720;
  line-height: 1.02;
}

.page-hero p {
  max-width: 700px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: var(--step-0);
}

body:not(.is-home) .section {
  background:
    linear-gradient(180deg, var(--steel), var(--paper));
  color: var(--ink);
}

body:not(.is-home) .section h2 {
  color: var(--ink);
  font-family: var(--font-body);
  font-size: clamp(1.9rem, 3vw, 3rem);
  font-weight: 720;
  line-height: 1.08;
}

body:not(.is-home) .section p,
body:not(.is-home) .evidence-list li,
body:not(.is-home) .verification-facts dt {
  color: #44515a;
}

.split-layout,
.contact-layout,
.verification-layout,
.guide-layout,
.legal-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(28px, 4vw, 44px);
  align-items: start;
}

.verification-facts,
.verification-note,
.guide-side,
.legal-aside {
  padding: clamp(22px, 2.5vw, 30px);
  border: 1px solid rgba(14, 23, 32, 0.12);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 18px 44px rgba(14, 23, 32, 0.08);
}

.verification-facts dl {
  display: grid;
  gap: 12px;
  margin: 24px 0 0;
}

.verification-facts dl div {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 18px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(14, 23, 32, 0.12);
}

.verification-facts dd {
  margin: 0;
  color: var(--ink);
  font-weight: 800;
}

.guide-main {
  padding-right: 20px;
}

.evidence-list {
  display: grid;
  gap: 14px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.evidence-list li {
  padding: 16px 18px;
  border-left: 3px solid var(--brass);
  background: rgba(255, 255, 255, 0.82);
}

.guide-side {
  position: sticky;
  top: 96px;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.checklist-link-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 18px;
}

.checklist-link-card {
  min-height: 96px;
  display: grid;
  align-content: space-between;
  gap: 14px;
  padding: 16px;
  border: 1px solid rgba(14, 23, 32, 0.12);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.74);
  text-decoration: none;
}

.checklist-link-card:hover,
.checklist-link-card:focus-visible {
  border-color: rgba(213, 166, 83, 0.46);
  background: rgba(255, 255, 255, 0.94);
}

.checklist-link-card span {
  color: var(--brass);
  font-size: 0.7rem;
  font-weight: 850;
  letter-spacing: 0.04em;
  line-height: 1.1;
  text-transform: uppercase;
}

.checklist-link-card strong {
  color: var(--ink);
  font-size: 0.96rem;
  line-height: 1.18;
}

.checklist-hero .page-hero-copy {
  max-width: min(var(--container), calc(100% - var(--gutter)));
}

.checklist-intro {
  padding-bottom: clamp(34px, 5vw, 58px);
}

.checklist-section {
  background:
    linear-gradient(180deg, #eef3f4 0%, #f8faf9 48%, #e7eef0 100%);
}

.checklist-shell {
  display: grid;
  gap: clamp(24px, 4vw, 38px);
}

.checklist-tool {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(340px, 0.88fr);
  gap: clamp(18px, 3vw, 28px);
  align-items: start;
}

.checklist-panel {
  border: 1px solid rgba(14, 23, 32, 0.13);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 22px 54px rgba(14, 23, 32, 0.08);
}

.checklist-inputs {
  display: grid;
  gap: 20px;
  padding: clamp(20px, 3vw, 30px);
}

.checklist-results {
  position: sticky;
  top: 92px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(6, 26, 39, 0.98), rgba(8, 34, 48, 0.96));
  color: #fff;
}

.checklist-select-label,
.checklist-summary-label {
  display: grid;
  gap: 10px;
}

.checklist-select-label span,
.checklist-summary-label span,
.checklist-group h3,
.checklist-next h3 {
  margin: 0;
  color: var(--brass);
  font-size: 0.72rem;
  font-weight: 850;
  line-height: 1.15;
  text-transform: uppercase;
}

.checklist-select-label select {
  width: 100%;
  min-height: 48px;
  padding: 0 14px;
  border: 1px solid rgba(14, 23, 32, 0.16);
  border-radius: var(--radius-sm);
  background: #fff;
  color: var(--ink);
  font: inherit;
  font-weight: 720;
}

.checklist-group {
  display: grid;
  gap: 12px;
}

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

.checklist-option {
  min-height: 46px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 12px;
  border: 1px solid rgba(14, 23, 32, 0.12);
  border-radius: var(--radius-sm);
  background: rgba(248, 250, 249, 0.9);
  color: #22313a;
  cursor: pointer;
  transition: border-color 160ms ease, background 160ms ease, transform 160ms ease;
}

.checklist-option:hover {
  border-color: rgba(213, 166, 83, 0.44);
  background: #fff;
}

.checklist-option:has(input:focus-visible) {
  outline: 3px solid rgba(213, 166, 83, 0.28);
  outline-offset: 2px;
}

.checklist-option:has(input:checked) {
  border-color: rgba(22, 116, 125, 0.42);
  background: rgba(230, 246, 246, 0.92);
}

.checklist-option input {
  width: 17px;
  height: 17px;
  margin: 0;
  accent-color: #16747d;
}

.checklist-option span {
  font-size: 0.92rem;
  font-weight: 720;
  line-height: 1.2;
}

.checklist-score {
  display: grid;
  gap: 10px;
  padding: clamp(20px, 2.8vw, 28px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.checklist-score span {
  width: fit-content;
  padding: 7px 10px;
  border: 1px solid rgba(213, 166, 83, 0.34);
  border-radius: 999px;
  color: #f1d7a1;
  font-size: 0.76rem;
  font-weight: 850;
  line-height: 1;
}

.checklist-score strong {
  color: #fff;
  font-size: clamp(1.45rem, 2.5vw, 2rem);
  font-weight: 780;
  line-height: 1.04;
}

.checklist-score p,
.checklist-next p,
.checklist-next li,
.checklist-status {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.94rem;
  line-height: 1.58;
}

.checklist-score[data-tone="strong"] span {
  border-color: rgba(109, 214, 181, 0.48);
  color: #a9efd7;
}

.checklist-score[data-tone="usable"] span {
  border-color: rgba(213, 166, 83, 0.48);
  color: #f1d7a1;
}

.checklist-score[data-tone="clarify"] span {
  border-color: rgba(248, 180, 122, 0.48);
  color: #ffd0a7;
}

.checklist-next {
  display: grid;
  gap: 12px;
  padding: clamp(20px, 2.8vw, 28px);
}

.checklist-next h2 {
  margin: 0;
  color: #fff;
  font-family: var(--font-body);
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  font-weight: 760;
  line-height: 1.12;
}

.checklist-next ul {
  display: grid;
  gap: 7px;
  margin: 0;
  padding-left: 18px;
}

.checklist-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.checklist-links a {
  padding: 8px 10px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  color: #fff;
  font-size: 0.78rem;
  font-weight: 800;
  text-decoration: none;
}

.checklist-summary-label {
  padding: 0 clamp(20px, 2.8vw, 28px) clamp(18px, 2.5vw, 24px);
}

.checklist-summary {
  width: 100%;
  resize: vertical;
  min-height: 176px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.86);
  font: 0.86rem/1.52 ui-monospace, SFMono-Regular, Consolas, "Liberation Mono", monospace;
}

.checklist-action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0 clamp(20px, 2.8vw, 28px) 10px;
}

.checklist-status {
  min-height: 24px;
  padding: 0 clamp(20px, 2.8vw, 28px) clamp(20px, 2.8vw, 28px);
}

.checklist-cta-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.compact-info-section {
  padding-top: 0;
}

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

.compliance-grid article,
.evidence-grid article {
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid rgba(14, 23, 32, 0.13);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 18px 44px rgba(14, 23, 32, 0.07);
}

.compliance-grid span,
.evidence-grid span,
.legal-aside span {
  display: block;
  margin-bottom: 10px;
  color: var(--brass);
  font-size: 0.78rem;
  font-weight: 850;
  line-height: 1.2;
  text-transform: uppercase;
}

.compliance-grid h2,
.evidence-grid h2 {
  margin: 0 0 16px;
  font-size: clamp(1.6rem, 2.2vw, 2.55rem);
}

.compliance-grid ul,
.evidence-grid ul,
.legal-content ul {
  display: grid;
  gap: 10px;
  margin: 16px 0 0;
  padding-left: 20px;
  color: #44515a;
}

.legal-section {
  padding-top: var(--section-y-tight);
}

.legal-aside {
  position: sticky;
  top: 96px;
}

.legal-aside strong {
  display: block;
  color: var(--ink);
  font-size: var(--step-2);
  line-height: 1.1;
}

.legal-aside p {
  margin: 14px 0 0;
}

.legal-content {
  padding: clamp(24px, 3.2vw, 44px);
  border: 1px solid rgba(14, 23, 32, 0.13);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 18px 44px rgba(14, 23, 32, 0.07);
}

.legal-content h2 {
  margin: 36px 0 0;
  font-family: var(--font-body);
  font-size: clamp(1.32rem, 1.55vw, 1.74rem);
  font-weight: 800;
  line-height: 1.14;
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content p {
  margin: 12px 0 0;
}

.legal-content a {
  color: #7b530e;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

@media (max-width: 1180px) {
  .trust-ledger-inner {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .trust-ledger a,
  .trust-ledger div,
  .trust-support {
    border-right: 1px solid rgba(12, 21, 28, 0.1);
    border-bottom: 1px solid rgba(12, 21, 28, 0.1);
  }

  .trust-support {
    grid-column: 1 / -1;
    min-height: 44px;
  }

  .supply-showcase {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-areas:
      "pump pump"
      "gas thermo"
      "sensor sensor";
  }

  .supply-tile-feature {
    min-height: clamp(420px, 46vw, 520px);
  }

  .route-finder-shell {
    grid-template-columns: 1fr;
  }

  .route-selector {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .route-option {
    min-height: 74px;
  }

  .route-evidence-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 980px) {
  .site-header {
    min-height: 58px;
    padding: 7px 16px;
  }

  .nav-toggle {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
  }

  .nav-toggle span {
    position: absolute;
    width: 18px;
    height: 2px;
    background: currentColor;
  }

  .nav-toggle span:nth-child(1) {
    transform: translateY(-6px);
  }

  .nav-toggle span:nth-child(3) {
    transform: translateY(6px);
  }

  .nav-toggle em {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
  }

  .site-nav {
    position: fixed;
    top: 58px;
    left: 16px;
    right: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: var(--radius-md);
    background: rgba(3, 17, 26, 0.98);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    justify-content: start;
    min-height: 46px;
    padding: 13px 14px;
    font-size: 0.96rem;
  }

  .site-nav .nav-action {
    margin-left: 0;
    justify-content: center;
  }

  .future-hero {
    min-height: 560px;
    align-items: center;
    padding: 76px 0 30px;
  }

  .future-title .hero-desktop-break {
    display: none;
  }

  .future-title .hero-mobile-break {
    display: block;
  }

  .hero-layout,
  .proof-desk-layout,
  .process-layout,
  .makers-layout,
  .coverage-layout,
  .contact-command-layout,
  .faq-layout,
  .split-layout,
  .contact-layout,
  .verification-layout,
  .guide-layout,
  .legal-layout,
  .checklist-tool,
  .compliance-grid,
  .evidence-grid {
    grid-template-columns: 1fr;
  }

  .checklist-results {
    position: static;
  }

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

  .hero-brief {
    display: none;
  }

  .contact-copy {
    position: static;
  }

  .process-list li {
    grid-template-columns: 58px 0.55fr 1fr;
  }

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

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

  .guide-side,
  .legal-aside {
    position: static;
  }
}

@media (max-width: 640px) {
  :root {
    --gutter: 22px;
    --section-y: 50px;
    --section-y-tight: 36px;
    --step-3: clamp(2rem, 8vw, 2.7rem);
    --step-4: clamp(2rem, 7.6vw, 2.38rem);
    --step-5: clamp(2.15rem, 8.4vw, 2.42rem);
  }

  html {
    scroll-padding-top: 0;
  }

  .brand-mark,
  .brand-mark svg {
    width: 21px;
    height: 21px;
  }

  .brand {
    gap: 9px;
    font-size: 0.88rem;
    font-weight: 680;
  }

  .nav-toggle {
    width: 34px;
    height: 34px;
    border-color: rgba(255, 255, 255, 0.18);
  }

  .nav-toggle span {
    width: 14px;
    height: 1.5px;
  }

  .nav-toggle span:nth-child(1) {
    transform: translateY(-5px);
  }

  .nav-toggle span:nth-child(3) {
    transform: translateY(5px);
  }

  .future-hero {
    min-height: auto;
    padding: 70px 0 18px;
  }

  .hero-video {
    display: none;
  }

  .hero-layout {
    gap: 14px;
  }

  .future-title {
    max-width: 360px;
    font-size: clamp(2rem, 7.2vw, 2.18rem);
    line-height: 1.03;
  }

  .future-title .hero-desktop-line {
    display: none;
  }

  .future-title .hero-mobile-line {
    display: block;
  }

  .future-title .hero-desktop-break {
    display: none;
  }

  .future-title .hero-mobile-break {
    display: block;
  }

  .eyebrow {
    margin-bottom: 8px;
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0;
  }

  .hero-lede {
    margin-top: 12px;
    font-size: clamp(0.97rem, 3.9vw, 1.05rem);
    line-height: 1.48;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-top: 16px;
  }

  .btn {
    width: auto;
    min-height: 40px;
    padding: 9px 11px;
    font-size: 0.78rem;
  }

  .checklist-grid,
  .checklist-cta-grid {
    grid-template-columns: 1fr;
  }

  .checklist-inputs {
    gap: 16px;
    padding: 16px;
  }

  .checklist-score,
  .checklist-next,
  .checklist-summary-label,
  .checklist-action-row,
  .checklist-status {
    padding-left: 16px;
    padding-right: 16px;
  }

  .checklist-option {
    min-height: 44px;
    padding: 10px 11px;
  }

  .checklist-option span {
    font-size: 0.88rem;
  }

  .checklist-summary {
    min-height: 150px;
    font-size: 0.78rem;
  }

  .hero-brief {
    display: none;
  }

  .trust-ledger {
    padding: 7px 0 8px;
  }

  .trust-ledger-inner {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 9px 12px;
    padding: 11px 12px;
    border: 1px solid rgba(12, 21, 28, 0.12);
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.82);
  }

  .trust-ledger a,
  .trust-ledger div,
  .trust-support {
    min-height: 0;
    display: grid;
    gap: 2px;
    padding: 0;
    border: 0;
  }

  .trust-ledger a:first-child {
    grid-column: 1 / -1;
  }

  .trust-support {
    grid-column: 1 / -1;
    padding-top: 8px;
    border-top: 1px solid rgba(12, 21, 28, 0.1);
    font-size: 0.76rem;
  }

  .trust-ledger span {
    font-size: 0.64rem;
  }

  .trust-ledger strong {
    font-size: 0.82rem;
  }

  .early-rfq-inner {
    min-height: 52px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 7px;
    padding-block: 8px;
  }

  .early-rfq p {
    max-width: none;
    font-size: 0.75rem;
    line-height: 1.28;
  }

  .early-rfq .btn {
    min-height: 31px;
    padding-inline: 8px;
    font-size: 0.72rem;
    white-space: nowrap;
  }

  .early-rfq-actions {
    width: 100%;
    justify-content: space-between;
    gap: 7px 10px;
  }

  .early-rfq-link {
    max-width: 15ch;
    font-size: 0.72rem;
    line-height: 1.2;
    text-align: right;
  }

  .proof-desk {
    padding-top: 24px;
    padding-bottom: 26px;
  }

  .proof-desk-layout {
    gap: 14px;
  }

  .proof-route {
    gap: 9px;
  }

  .proof-route-caption {
    min-height: 38px;
    grid-template-columns: auto minmax(28px, 1fr) auto;
    gap: 8px;
    padding: 9px 10px;
    border-radius: var(--radius-sm);
    box-shadow: 0 8px 22px rgba(12, 21, 28, 0.06);
  }

  .proof-route-caption span,
  .proof-route-caption strong {
    font-size: 0.56rem;
    letter-spacing: 0.02em;
  }

  .proof-route-caption i::before,
  .proof-route-caption i::after {
    width: 5px;
    height: 5px;
  }

  .proof-board {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .proof-board article {
    min-height: 0;
    grid-template-columns: 24px 1fr;
    align-content: center;
    gap: 5px 8px;
    padding: 10px;
    box-shadow: 0 10px 26px rgba(12, 21, 28, 0.06);
  }

  .proof-board span {
    grid-row: 1;
    width: 22px;
    height: 22px;
    font-size: 0.6rem;
  }

  .proof-board strong {
    align-self: center;
    font-size: 0.82rem;
    line-height: 1.12;
  }

  .proof-board p {
    display: none;
  }

  .proof-desk .section-head h2 {
    max-width: 340px;
    font-size: clamp(1.34rem, 5.6vw, 1.64rem);
    line-height: 1.08;
  }

  .proof-desk .section-head p:not(.eyebrow) {
    margin-top: 10px;
    font-size: 0.88rem;
    line-height: 1.42;
  }

  .section-head h2,
  .contact-copy h2 {
    line-height: 1.08;
  }

  .process-section .section-head h2,
  .makers-section .section-head h2,
  .coverage-section .section-head h2 {
    font-size: var(--step-4);
  }

  .contact-copy h2 {
    max-width: 340px;
    font-size: clamp(2rem, 8vw, 2.4rem);
  }

  .supply-showcase {
    grid-template-columns: 1fr;
    grid-template-areas:
      "pump"
      "gas"
      "thermo"
      "sensor";
    gap: 10px;
    margin-top: 20px;
  }

  .scope-theatre {
    padding-top: 42px;
  }

  .supply-tile,
  .supply-tile-feature {
    min-height: 280px;
  }

  .supply-tile-feature {
    min-height: 340px;
  }

  .supply-tile h3,
  .supply-tile-feature h3 {
    font-size: clamp(1.35rem, 6.4vw, 1.78rem);
  }

  .supply-tile div {
    left: 10px;
    right: 10px;
    bottom: 10px;
    gap: 5px;
    max-width: calc(100% - 20px);
    padding: 11px 12px;
  }

  .supply-tile span {
    font-size: 0.64rem;
  }

  .supply-tile p {
    font-size: 0.86rem;
    line-height: 1.38;
  }

  .evidence-chips {
    gap: 4px;
  }

  .evidence-chips li {
    min-height: 19px;
    padding: 3px 7px;
    font-size: 0.6rem;
  }

  .scope-theatre .section-head h2 {
    font-size: clamp(1.55rem, 6vw, 1.78rem);
    line-height: 1.06;
  }

  .scope-theatre .section-head p:not(.eyebrow) {
    margin-top: 12px;
    font-size: 0.94rem;
    line-height: 1.52;
  }

  .route-finder-section {
    scroll-margin-top: 66px;
    padding-top: clamp(58px, 12vw, 78px);
    padding-bottom: clamp(58px, 12vw, 78px);
  }

  .route-finder-layout {
    gap: 24px;
  }

  .route-finder-head h2 {
    font-size: clamp(1.72rem, 7.8vw, 2.08rem);
    line-height: 1.07;
  }

  .route-finder-head p:not(.eyebrow) {
    font-size: 0.96rem;
    line-height: 1.52;
  }

  .route-selector {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scroll-snap-type: x proximity;
    padding: 8px;
  }

  .route-option {
    min-width: 178px;
    min-height: 68px;
    padding: 11px 12px;
    scroll-snap-align: start;
  }

  .route-option strong {
    font-size: 0.95rem;
  }

  .route-option small {
    font-size: 0.74rem;
  }

  .route-panel {
    padding: 20px;
  }

  .route-panel h3 {
    font-size: clamp(1.9rem, 11vw, 2.55rem);
  }

  .route-evidence-grid p {
    font-size: 0.91rem;
  }

  .route-rfq-link {
    width: 100%;
  }

  .supplier-handoff-section {
    padding-top: 0;
    padding-bottom: 0;
  }

  .supplier-handoff-card {
    grid-template-columns: 1fr;
    gap: 18px;
    padding-top: 36px;
    padding-bottom: 36px;
  }

  .supplier-handoff-card::before {
    inset: 14px;
  }

  .supplier-handoff-copy {
    gap: 12px;
  }

  .supplier-handoff-copy h2 {
    font-size: clamp(1.55rem, 7.2vw, 2rem);
    line-height: 1.06;
  }

  .supplier-handoff-copy p:not(.eyebrow) {
    font-size: 0.94rem;
    line-height: 1.52;
  }

  .supplier-handoff-actions {
    display: grid;
    gap: 10px;
  }

  .supplier-handoff-actions .btn {
    width: 100%;
    min-height: 46px;
  }

  .supplier-handoff-link {
    width: fit-content;
    font-size: 0.88rem;
  }

  .supplier-handoff-evidence {
    padding: 16px;
    gap: 12px;
  }

  .supplier-handoff-route {
    font-size: 0.86rem;
  }

  .supplier-handoff-chips {
    gap: 7px;
  }

  .supplier-handoff-chips li {
    padding: 7px 9px;
    font-size: 0.72rem;
  }

  .supplier-handoff-verification {
    font-size: 0.76rem;
  }

  .process-list li {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 20px 0;
  }

  .maker-list {
    grid-template-columns: 1fr;
  }

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

  .maker-list li {
    min-height: 48px;
    border-right: 0;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .rfq-form {
    gap: 10px;
    padding: 15px;
  }

  .rfq-form input,
  .rfq-form textarea,
  .rfq-form select {
    min-height: 44px;
    font-size: 1rem;
  }

  .rfq-form textarea {
    min-height: 124px;
  }

  .faq-list article,
  .coverage-grid article {
    padding: 18px;
  }

  .page-hero {
    min-height: 38svh;
    padding: 92px 0 42px;
  }

  .page-hero h1 {
    font-size: clamp(2rem, 8vw, 2.55rem);
  }

  .page-hero p {
    margin-top: 12px;
    font-size: 0.98rem;
    line-height: 1.55;
  }

  .verification-facts,
  .verification-note,
  .guide-side,
  .legal-aside,
  .legal-content,
  .compliance-grid article,
  .evidence-grid article {
    padding: 20px;
  }

  .verification-facts dl div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .button-row {
    display: grid;
  }

  .privacy-note,
  .attachment-note {
    font-size: 0.82rem;
    line-height: 1.48;
  }

  .legal-content h2 {
    font-size: 1.22rem;
  }

  .compliance-grid h2,
  .evidence-grid h2 {
    font-size: 1.42rem;
  }
}

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