:root {
  --navy-950: #061726;
  --navy-900: #0a2035;
  --navy-800: #10314f;
  --blue-600: #0b6cf0;
  --blue-500: #1d80ff;
  --cyan-400: #38bdf8;
  --copper-500: #c87941;
  --copper-400: #e08b4e;
  --slate-700: #34495e;
  --slate-600: #53697c;
  --slate-400: #9aa9b7;
  --slate-200: #dce4eb;
  --slate-100: #edf2f6;
  --white: #ffffff;
  --page: min(1180px, calc(100% - 40px));
  --shadow: 0 20px 60px rgba(5, 24, 42, 0.12);
  --radius: 3px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--navy-950);
  background: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

body.nav-open {
  overflow: hidden;
}

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

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

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

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

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  transform: translateY(-160%);
  padding: 10px 16px;
  color: var(--white);
  background: var(--navy-950);
}

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

.container {
  width: var(--page);
  margin-inline: auto;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 18px;
  color: var(--blue-500);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  line-height: 1.3;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 38px;
  height: 2px;
  content: "";
  background: var(--copper-500);
}

.section {
  padding-block: 88px;
}

.section-soft {
  background: var(--slate-100);
}

.section-dark {
  color: var(--white);
  background:
    linear-gradient(rgba(28, 91, 150, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(28, 91, 150, 0.12) 1px, transparent 1px),
    var(--navy-950);
  background-size: 42px 42px;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 42px;
}

.section-heading h2 {
  margin: 0 0 14px;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.08;
  letter-spacing: -0.045em;
}

.section-heading p {
  margin: 0;
  color: var(--slate-600);
  font-size: 1.08rem;
}

.section-dark .section-heading p {
  color: #b8c7d6;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid rgba(6, 23, 38, 0.1);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(16px);
}

.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  min-height: 86px;
  gap: 34px;
}

.brand {
  display: inline-flex;
  flex-direction: column;
  color: var(--navy-950);
  text-decoration: none;
}

.brand strong {
  font-size: 1.42rem;
  font-weight: 900;
  letter-spacing: -0.035em;
  line-height: 1;
}

.brand span {
  margin-top: 7px;
  color: var(--slate-600);
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.19em;
  line-height: 1;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 30px;
}

.site-nav a {
  position: relative;
  font-size: 0.94rem;
  font-weight: 750;
  text-decoration: none;
}

.site-nav a:not(.button)::after {
  position: absolute;
  right: 0;
  bottom: -9px;
  left: 0;
  height: 2px;
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  background: var(--blue-600);
  transition: transform 180ms ease;
}

.site-nav a:hover::after,
.site-nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 42px;
  border: 1px solid var(--slate-200);
  color: var(--navy-950);
  background: var(--white);
}

.nav-toggle span,
.nav-toggle::before,
.nav-toggle::after {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  content: "";
  background: currentColor;
}

.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 48px;
  padding: 12px 21px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

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

.button-primary {
  color: var(--white);
  background: var(--blue-600);
  box-shadow: 0 10px 28px rgba(11, 108, 240, 0.24);
}

.button-primary:hover {
  background: #075ccc;
}

.button-outline {
  border-color: var(--copper-500);
  color: var(--copper-400);
  background: transparent;
}

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

.button-light {
  border-color: var(--slate-200);
  color: var(--navy-950);
  background: var(--white);
}

.hero {
  position: relative;
  min-height: 690px;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 75% 25%, rgba(29, 128, 255, 0.32), transparent 35%),
    linear-gradient(100deg, #061726 0%, #061d32 52%, #0b2e4c 100%);
}

.hero::before {
  position: absolute;
  inset: 0;
  content: "";
  opacity: 0.58;
  background:
    linear-gradient(rgba(41, 127, 204, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(41, 127, 204, 0.12) 1px, transparent 1px);
  background-size: 50px 50px;
  mask-image: linear-gradient(to right, black, transparent 75%);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  align-items: center;
  min-height: 690px;
  gap: 54px;
}

.hero-copy {
  padding-block: 68px;
}

.hero h1 {
  max-width: 780px;
  margin: 0 0 24px;
  font-size: clamp(3rem, 6vw, 5.35rem);
  line-height: 0.98;
  letter-spacing: -0.065em;
}

.hero-copy > p:not(.eyebrow) {
  max-width: 660px;
  margin: 0 0 30px;
  color: #c8d6e4;
  font-size: clamp(1.08rem, 2vw, 1.32rem);
}

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

.hero-visual {
  position: relative;
  min-height: 540px;
  overflow: hidden;
  border-left: 1px solid rgba(56, 189, 248, 0.22);
  background:
    linear-gradient(90deg, rgba(6, 23, 38, 0.42), transparent 45%),
    url("/assets/hero-sensors.webp") center / cover no-repeat;
}

.sensor-orbit {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(460px, 90%);
  aspect-ratio: 1;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(56, 189, 248, 0.18);
  border-radius: 50%;
  box-shadow:
    0 0 0 50px rgba(56, 189, 248, 0.05),
    0 0 0 100px rgba(56, 189, 248, 0.03);
  opacity: 0.38;
}

.sensor-orbit::before,
.sensor-orbit::after {
  position: absolute;
  inset: 15%;
  border: 1px dashed rgba(56, 189, 248, 0.35);
  border-radius: 50%;
  content: "";
}

.sensor-orbit::after {
  inset: 37%;
  border-style: solid;
  background: radial-gradient(circle, #e9f4ff 0 21%, #8ea8bf 22% 31%, #0b2239 32% 47%, #b9ccda 48% 58%, #09233b 59%);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.42);
}

.spec-tag {
  position: absolute;
  padding: 9px 12px;
  border-left: 2px solid var(--copper-500);
  color: #c8d6e4;
  background: rgba(4, 19, 32, 0.76);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.74rem;
  letter-spacing: 0.05em;
}

.spec-a {
  top: 18%;
  right: 4%;
}

.spec-b {
  bottom: 19%;
  left: 3%;
}

.trust-strip {
  position: relative;
  z-index: 3;
  border-top: 1px solid rgba(200, 121, 65, 0.7);
  border-bottom: 1px solid rgba(200, 121, 65, 0.35);
  color: #c6d2df;
  background: rgba(2, 14, 25, 0.88);
}

.trust-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 0;
  padding: 20px 0;
  list-style: none;
}

.trust-list li {
  padding-inline: 26px;
  border-right: 1px solid rgba(200, 121, 65, 0.35);
  font-size: 0.92rem;
  font-weight: 700;
  text-align: center;
}

.trust-list li:first-child {
  padding-left: 0;
}

.trust-list li:last-child {
  padding-right: 0;
  border-right: 0;
}

.trust-list a {
  color: inherit;
  text-decoration-color: rgba(255, 255, 255, 0.36);
}

.quick-find {
  position: relative;
  z-index: 4;
  margin-top: 0;
}

.quick-find-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  padding: 26px;
  border-top: 3px solid var(--blue-600);
  background: var(--white);
  box-shadow: var(--shadow);
  gap: 18px;
}

.field-group {
  display: grid;
  gap: 7px;
}

.field-group label {
  color: var(--navy-800);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.field-group input,
.field-group select,
.field-group textarea {
  width: 100%;
  min-height: 50px;
  border: 1px solid #bdc9d3;
  border-radius: 2px;
  padding: 11px 14px;
  color: var(--navy-950);
  background: var(--white);
}

.field-group textarea {
  min-height: 140px;
  resize: vertical;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.people-photo {
  margin: 32px 0 0;
  overflow: hidden;
  border: 1px solid var(--slate-200);
  background: var(--slate-100);
  box-shadow: var(--shadow);
}

.people-photo img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.people-photo-wide {
  margin-bottom: 32px;
}

.section-dark .people-photo {
  border-color: rgba(255, 255, 255, 0.14);
  box-shadow: 0 20px 52px rgba(0, 0, 0, 0.26);
}

.card {
  position: relative;
  min-height: 100%;
  padding: 30px;
  border: 1px solid var(--slate-200);
  border-top: 3px solid var(--blue-600);
  background: var(--white);
  box-shadow: 0 12px 40px rgba(5, 24, 42, 0.07);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.card-icon {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-bottom: 22px;
  border: 1px solid rgba(11, 108, 240, 0.28);
  color: var(--blue-600);
  background: #eff6ff;
  font-family: ui-monospace, monospace;
  font-weight: 900;
}

.card h3 {
  margin: 0 0 10px;
  font-size: 1.28rem;
  line-height: 1.25;
}

.card p {
  margin: 0 0 18px;
  color: var(--slate-600);
}

.text-link {
  color: var(--blue-600);
  font-weight: 850;
}

.split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 70px;
}

.metric-panel {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  padding: 28px;
  border: 1px solid rgba(56, 189, 248, 0.22);
  background: rgba(5, 31, 52, 0.78);
  gap: 1px;
}

.metric {
  min-height: 150px;
  padding: 24px;
  border: 1px solid rgba(56, 189, 248, 0.12);
}

.metric strong {
  display: block;
  margin-bottom: 6px;
  color: var(--cyan-400);
  font-size: 2.2rem;
  line-height: 1;
}

.metric span {
  color: #bdcad7;
  font-size: 0.9rem;
}

.cta-panel {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  padding: 42px;
  color: var(--white);
  background: var(--navy-800);
  gap: 28px;
}

.cta-panel h2 {
  margin: 0 0 8px;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.cta-panel p {
  margin: 0;
  color: #c6d5e3;
}

.site-footer {
  color: #c2cfda;
  background: #03111e;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  padding-block: 60px 44px;
  gap: 40px;
}

.footer-brand p {
  max-width: 360px;
  color: #9fb0be;
}

.footer-column h2 {
  margin: 0 0 15px;
  color: var(--white);
  font-size: 0.83rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-column ul {
  display: grid;
  margin: 0;
  padding: 0;
  list-style: none;
  gap: 9px;
}

.footer-column a {
  color: #b6c4d0;
  text-decoration: none;
}

.footer-column a:hover {
  color: var(--white);
  text-decoration: underline;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding-block: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #8296a7;
  font-size: 0.82rem;
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding-block: 76px 72px;
  color: var(--white);
  background:
    radial-gradient(circle at 85% 15%, rgba(29, 128, 255, 0.3), transparent 32%),
    linear-gradient(rgba(41, 127, 204, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(41, 127, 204, 0.1) 1px, transparent 1px),
    var(--navy-950);
  background-size: auto, 48px 48px, 48px 48px, auto;
}

.page-hero::after {
  position: absolute;
  top: -160px;
  right: -100px;
  width: 500px;
  height: 500px;
  border: 1px solid rgba(56, 189, 248, 0.2);
  border-radius: 50%;
  content: "";
  box-shadow: 0 0 0 56px rgba(56, 189, 248, 0.035), 0 0 0 112px rgba(56, 189, 248, 0.025);
}

.page-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 850px;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  margin: 0 0 22px;
  padding: 0;
  color: #9eb3c5;
  font-size: 0.78rem;
  font-weight: 750;
  letter-spacing: 0.06em;
  list-style: none;
  text-transform: uppercase;
  gap: 9px;
}

.breadcrumbs li:not(:last-child)::after {
  margin-left: 9px;
  color: var(--copper-400);
  content: "/";
}

.breadcrumbs a {
  color: inherit;
}

.page-hero h1 {
  margin: 0 0 18px;
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  line-height: 0.98;
  letter-spacing: -0.06em;
}

.page-hero p {
  max-width: 740px;
  margin: 0;
  color: #c4d2df;
  font-size: clamp(1.05rem, 2vw, 1.28rem);
}

.anchor-nav {
  position: sticky;
  z-index: 50;
  top: 86px;
  overflow-x: auto;
  border-bottom: 1px solid var(--slate-200);
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 5px 18px rgba(6, 23, 38, 0.05);
}

.anchor-nav-inner {
  display: flex;
  min-width: max-content;
}

.category-jump {
  display: none;
}

.anchor-nav a {
  padding: 15px 18px;
  color: var(--slate-700);
  font-size: 0.84rem;
  font-weight: 800;
  text-decoration: none;
}

.anchor-nav a:hover {
  color: var(--blue-600);
  background: #f5f9ff;
}

.catalog-tools {
  display: grid;
  grid-template-columns: 1.4fr repeat(2, minmax(170px, 0.5fr));
  margin-bottom: 28px;
  padding: 22px;
  border: 1px solid var(--slate-200);
  background: var(--slate-100);
  gap: 14px;
}

.result-count {
  margin: -10px 0 20px;
  color: var(--slate-600);
  font-size: 0.9rem;
}

.table-wrap {
  overflow-x: auto;
  margin-bottom: 34px;
  border: 1px solid var(--slate-200);
  background: var(--white);
  box-shadow: 0 10px 34px rgba(5, 24, 42, 0.06);
}

.spec-table {
  width: 100%;
  min-width: 860px;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.spec-table caption {
  padding: 20px;
  color: var(--navy-950);
  font-size: 1.1rem;
  font-weight: 850;
  text-align: left;
}

.spec-table th,
.spec-table td {
  padding: 13px 15px;
  border-bottom: 1px solid var(--slate-200);
  text-align: left;
  vertical-align: top;
}

.spec-table thead th {
  color: var(--white);
  background: var(--navy-800);
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.spec-table tbody tr:hover {
  background: #f5f9ff;
}

.spec-table tbody tr[hidden] {
  display: none;
}

.part-link {
  color: var(--blue-600);
  font-weight: 850;
}

.status {
  display: inline-flex;
  padding: 3px 8px;
  border: 1px solid #a9c7e8;
  color: #0b579e;
  background: #eaf4ff;
  font-size: 0.7rem;
  font-weight: 850;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.65fr);
  align-items: start;
  gap: 56px;
}

.detail-copy h2,
.prose h2 {
  margin: 50px 0 14px;
  font-size: clamp(1.8rem, 4vw, 2.7rem);
  line-height: 1.1;
  letter-spacing: -0.035em;
}

.detail-copy h2:first-child,
.prose h2:first-child {
  margin-top: 0;
}

.detail-copy h3,
.prose h3 {
  margin: 30px 0 10px;
  font-size: 1.25rem;
}

.detail-sidebar {
  position: sticky;
  top: 126px;
  padding: 28px;
  border-top: 3px solid var(--copper-500);
  background: var(--navy-950);
  color: var(--white);
  box-shadow: var(--shadow);
}

.detail-sidebar h2 {
  margin: 0 0 12px;
  font-size: 1.45rem;
}

.detail-sidebar p {
  color: #bac9d6;
}

.key-facts {
  margin: 22px 0;
  padding: 0;
  list-style: none;
}

.key-facts li {
  display: grid;
  grid-template-columns: 1fr auto;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  gap: 15px;
}

.key-facts span {
  color: #91a7b8;
}

.key-facts strong {
  text-align: right;
}

.check-list {
  display: grid;
  margin: 20px 0;
  padding: 0;
  list-style: none;
  gap: 10px;
}

.check-list li {
  position: relative;
  padding-left: 27px;
}

.check-list li::before {
  position: absolute;
  top: 0;
  left: 0;
  color: var(--blue-600);
  font-weight: 900;
  content: "✓";
}

.process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  counter-reset: process;
  gap: 18px;
}

.process-step {
  position: relative;
  padding: 28px 24px;
  border: 1px solid var(--slate-200);
  background: var(--white);
  counter-increment: process;
}

.process-step::before {
  display: block;
  margin-bottom: 18px;
  color: var(--copper-500);
  font-family: ui-monospace, monospace;
  font-size: 1.8rem;
  font-weight: 900;
  content: "0" counter(process);
}

.process-step h3 {
  margin: 0 0 8px;
  font-size: 1.05rem;
}

.process-step p {
  margin: 0;
  color: var(--slate-600);
  font-size: 0.92rem;
}

.resource-list {
  display: grid;
  border-top: 1px solid var(--slate-200);
}

.resource-item {
  display: grid;
  grid-template-columns: 90px 1fr auto;
  align-items: center;
  padding: 22px 0;
  border-bottom: 1px solid var(--slate-200);
  gap: 24px;
}

.resource-type {
  color: var(--blue-600);
  font-family: ui-monospace, monospace;
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.08em;
}

.resource-item h3 {
  margin: 0 0 3px;
  font-size: 1.05rem;
}

.resource-item p {
  margin: 0;
  color: var(--slate-600);
  font-size: 0.9rem;
}

.notice {
  margin: 26px 0;
  padding: 20px 22px;
  border-left: 4px solid var(--copper-500);
  color: var(--slate-700);
  background: #fff7f0;
}

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

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

.form-help {
  color: var(--slate-600);
  font-size: 0.82rem;
}

.form-status {
  display: none;
  margin-top: 22px;
  padding: 18px;
  border-left: 4px solid var(--blue-600);
  background: #eaf4ff;
}

.form-status.is-visible {
  display: block;
}

.faq {
  display: grid;
  gap: 10px;
}

.faq details {
  border: 1px solid var(--slate-200);
  background: var(--white);
}

.faq summary {
  padding: 18px 20px;
  cursor: pointer;
  font-weight: 850;
}

.faq details p {
  margin: 0;
  padding: 0 20px 20px;
  color: var(--slate-600);
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.contact-card {
  padding: 24px;
  border: 1px solid var(--slate-200);
  background: var(--white);
}

.contact-card span {
  display: block;
  margin-bottom: 6px;
  color: var(--slate-600);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-card a,
.contact-card strong {
  color: var(--navy-950);
  font-size: 1.05rem;
  font-weight: 850;
}

@media (max-width: 980px) {
  .site-header {
    background: var(--white);
    backdrop-filter: none;
  }

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

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    z-index: 99;
    top: 86px;
    right: 0;
    bottom: 0;
    left: 0;
    display: none;
    align-content: start;
    justify-content: stretch;
    overflow-y: auto;
    padding: 32px 20px;
    color: var(--navy-950);
    background: var(--white);
    box-shadow: 0 18px 40px rgba(5, 24, 42, 0.16);
    overscroll-behavior: contain;
  }

  .site-nav.is-open {
    display: grid;
    gap: 4px;
  }

  .site-nav a {
    padding: 14px;
    border-bottom: 1px solid var(--slate-200);
  }

  .site-nav .button {
    margin-top: 18px;
  }

  .hero-grid,
  .split {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    padding-top: 70px;
    padding-bottom: 20px;
  }

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

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

  .trust-list li {
    padding: 10px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(200, 121, 65, 0.25);
  }

  .trust-list li:last-child {
    border-bottom: 0;
  }

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

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

  .anchor-nav {
    top: 74px;
  }

  .catalog-tools,
  .detail-grid {
    grid-template-columns: 1fr;
  }

  .detail-sidebar {
    position: static;
  }

  .process,
  .contact-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 680px) {
  :root {
    --page: min(100% - 28px, 1180px);
  }

  .section {
    padding-block: 64px;
  }

  .header-inner {
    min-height: 74px;
  }

  .brand strong {
    font-size: 1.15rem;
  }

  .brand span {
    display: none;
  }

  .site-nav {
    top: 74px;
  }

  .hero-grid {
    min-height: auto;
  }

  .hero h1 {
    font-size: clamp(2.45rem, 11.5vw, 3.45rem);
    line-height: 1;
  }

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

  .hero-actions,
  .hero-actions .button {
    width: 100%;
  }

  .hero-visual {
    min-height: 210px;
  }

  .trust-list {
    padding-block: 10px;
  }

  .trust-list li {
    padding-block: 7px;
    font-size: 0.8rem;
  }

  .quick-find-inner,
  .cta-panel {
    grid-template-columns: 1fr;
  }

  .quick-find-inner .button {
    width: 100%;
  }

  .anchor-nav-inner {
    display: none;
  }

  .category-jump {
    display: grid;
    padding-block: 10px;
    gap: 4px;
  }

  .category-jump label {
    color: var(--slate-600);
    font-size: 0.68rem;
    font-weight: 850;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  .category-jump select {
    width: 100%;
    min-height: 44px;
    border: 1px solid var(--slate-200);
    padding: 8px 36px 8px 10px;
    color: var(--navy-950);
    background: var(--white);
    font-weight: 750;
  }

  .card-grid,
  .metric-panel,
  .footer-main {
    grid-template-columns: 1fr;
  }

  .metric {
    min-height: 120px;
  }

  .form-grid,
  .process,
  .contact-cards {
    grid-template-columns: 1fr;
  }

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

  .resource-item {
    grid-template-columns: 1fr;
    gap: 5px;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

/* Extended page components */
.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.brand:has(.brand-mark) {
  display: grid;
  grid-template-columns: 38px auto;
  align-items: center;
  column-gap: 10px;
}

.brand:has(.brand-mark) .brand-mark {
  display: grid;
  grid-row: 1 / span 2;
  place-items: center;
  width: 38px;
  height: 38px;
  margin: 0;
  color: var(--white);
  background: var(--blue-600);
  font-size: 1.1rem;
  font-weight: 900;
  letter-spacing: 0;
}

.brand:has(.brand-mark) > span:last-child {
  margin: 0;
  color: var(--navy-950);
  font-size: 1.05rem;
  font-weight: 900;
  letter-spacing: -0.025em;
  line-height: 1;
}

.brand:has(.brand-mark) small {
  display: block;
  margin-top: 5px;
  color: var(--slate-600);
  font-size: 0.5rem;
  letter-spacing: 0.15em;
}

.primary-nav {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 26px;
}

.primary-nav a {
  font-size: 0.9rem;
  font-weight: 750;
  text-decoration: none;
}

.button-small {
  min-height: 42px;
  padding: 10px 17px;
}

.narrow {
  position: relative;
  z-index: 2;
  max-width: 900px;
}

.product-hero .hero-actions {
  margin-top: 28px;
}

.spec-card {
  padding: 30px;
  border-top: 3px solid var(--copper-500);
  color: var(--white);
  background: var(--navy-950);
  box-shadow: var(--shadow);
}

.spec-card h2 {
  margin: 0 0 16px;
  color: var(--white);
}

.spec-list {
  margin: 0;
}

.spec-list div {
  display: grid;
  grid-template-columns: 1fr auto;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  gap: 20px;
}

.spec-list dt {
  color: #91a7b8;
}

.spec-list dd {
  margin: 0;
  text-align: right;
  font-weight: 800;
}

.feature-grid {
  display: grid;
  gap: 22px;
}

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

.feature-grid article {
  padding: 28px;
  border: 1px solid rgba(56, 189, 248, 0.18);
  background: rgba(5, 31, 52, 0.76);
}

.feature-grid h3 {
  margin-top: 0;
  color: var(--white);
}

.feature-grid p {
  margin-bottom: 0;
  color: #b8c7d6;
}

.cta-band {
  color: var(--white);
  background: var(--blue-700);
}

.cta-band > .container {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  min-height: 210px;
  gap: 30px;
}

.cta-band h2 {
  margin: 0;
  color: var(--white);
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1.08;
}

.cta-band .eyebrow {
  color: #b9dbff;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  padding-block: 60px 44px;
  gap: 40px;
}

.footer-grid h2 {
  margin: 0 0 15px;
  color: var(--white);
  font-size: 0.83rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

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

.footer-grid a {
  color: #b6c4d0;
  text-decoration: none;
}

.footer-grid a:hover {
  color: var(--white);
  text-decoration: underline;
}

.brand-footer:has(.brand-mark) > span:last-child {
  color: var(--white);
}

.catalog-table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
}

.catalog-table th,
.catalog-table td {
  padding: 16px;
  border-bottom: 1px solid var(--slate-200);
  text-align: left;
  vertical-align: top;
}

.catalog-table thead th {
  color: var(--white);
  background: var(--navy-800);
}

@media (max-width: 980px) {
  .primary-nav {
    position: fixed;
    z-index: 99;
    top: 86px;
    right: 0;
    bottom: 0;
    left: 0;
    display: none;
    align-content: start;
    justify-content: stretch;
    overflow-y: auto;
    padding: 32px 20px;
    color: var(--navy-950);
    background: var(--white);
    box-shadow: 0 18px 40px rgba(5, 24, 42, 0.16);
    overscroll-behavior: contain;
  }

  .primary-nav.is-open {
    display: grid;
    gap: 4px;
  }

  .primary-nav a {
    padding: 14px;
    border-bottom: 1px solid var(--slate-200);
  }

  .feature-grid.three {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 680px) {
  .cta-band > .container,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .cta-band > .container {
    padding-block: 54px;
  }
}

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

/* Expanded product catalog */
.catalog-intro {
  padding-bottom: 30px;
}

.catalog-source-note {
  padding: 18px 20px;
  border-left: 4px solid var(--copper-500);
  color: var(--slate-700);
  background: #fff8f1;
}

.catalog-section {
  padding-block: 64px 20px;
  scroll-margin-top: 150px;
}

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

.catalog-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--slate-200);
  background: var(--white);
  box-shadow: 0 10px 34px rgba(5, 24, 42, 0.07);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.catalog-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.catalog-card[hidden] {
  display: none;
}

.catalog-card-image {
  display: block;
  overflow: hidden;
  aspect-ratio: 32 / 21;
  background: #d5e2e1;
}

.catalog-card-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 250ms ease;
}

.catalog-card:hover .catalog-card-image img {
  transform: scale(1.025);
}

.catalog-card-body {
  display: flex;
  height: 100%;
  flex-direction: column;
  padding: 24px;
}

.catalog-card-type {
  margin: 0 0 7px;
  color: var(--blue-600);
  font-size: 0.7rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.catalog-card h3 {
  margin: 0 0 18px;
  font-size: 1.45rem;
  line-height: 1.12;
}

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

.catalog-card dl {
  display: grid;
  margin: 0 0 22px;
  gap: 0;
}

.catalog-card dl div {
  display: grid;
  grid-template-columns: 1fr auto;
  padding: 9px 0;
  border-bottom: 1px solid var(--slate-200);
  gap: 14px;
}

.catalog-card dt {
  color: var(--slate-600);
  font-size: 0.78rem;
}

.catalog-card dd {
  margin: 0;
  color: var(--navy-950);
  font-size: 0.8rem;
  font-weight: 800;
  text-align: right;
}

.catalog-card-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
  gap: 16px;
}

.catalog-card-choice-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.catalog-card-choice-actions .text-button.is-selected {
  color: var(--navy-950);
  background: #dcecff;
}

.catalog-card-choice-actions .text-button:disabled {
  cursor: not-allowed;
  opacity: 0.48;
}

.catalog-card-actions a:last-child {
  font-size: 0.8rem;
  font-weight: 800;
}

.catalog-card-compact {
  min-height: 250px;
  border-top: 3px solid var(--blue-600);
}

.product-detail-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.75fr) minmax(0, 1.25fr);
  align-items: start;
  gap: 56px;
}

.product-photo-panel {
  position: sticky;
  top: 126px;
  overflow: hidden;
  border: 1px solid var(--slate-200);
  background: var(--slate-100);
  box-shadow: var(--shadow);
}

.product-photo-panel img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 32 / 21;
  object-fit: cover;
}

.product-photo-panel p {
  margin: 0;
  padding: 12px 16px;
  color: var(--slate-600);
  font-size: 0.75rem;
}

.product-spec-table {
  min-width: 0;
}

.product-spec-table th {
  width: 48%;
  color: var(--slate-700);
}

@media (max-width: 1040px) {
  .catalog-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-detail-grid {
    grid-template-columns: 1fr;
  }

  .product-photo-panel {
    position: static;
    max-width: 680px;
  }
}

@media (max-width: 680px) {
  .catalog-card-grid {
    grid-template-columns: 1fr;
  }

  .catalog-section {
    padding-top: 48px;
  }

  .catalog-card-body {
    padding: 20px;
  }

  .catalog-card-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .catalog-card-choice-actions {
    justify-content: space-between;
  }
}

/* Product comparison */
body.has-comparison-tray {
  padding-bottom: 96px;
}

body.comparison-open {
  overflow: hidden;
}

.comparison-tray {
  position: fixed;
  z-index: 90;
  right: 20px;
  bottom: 20px;
  left: 20px;
  display: flex;
  max-width: 1180px;
  justify-content: space-between;
  align-items: center;
  margin-inline: auto;
  padding: 16px 18px;
  border: 1px solid rgba(56, 189, 248, 0.35);
  color: var(--white);
  background: rgba(6, 23, 38, 0.97);
  box-shadow: 0 18px 48px rgba(2, 14, 25, 0.28);
  gap: 20px;
}

.comparison-tray[hidden],
.comparison-dialog[hidden] {
  display: none;
}

.comparison-tray > div:first-child {
  display: grid;
}

.comparison-tray span {
  color: #b8c7d6;
  font-size: 0.82rem;
}

.comparison-tray-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.comparison-tray .text-button {
  color: var(--white);
}

.comparison-dialog {
  position: fixed;
  z-index: 250;
  inset: 0;
  overflow-y: auto;
  padding: 34px;
  background: rgba(2, 14, 25, 0.76);
  backdrop-filter: blur(8px);
}

.comparison-dialog-panel {
  width: min(1180px, 100%);
  margin: 0 auto;
  padding: 30px;
  background: var(--white);
  box-shadow: 0 24px 80px rgba(2, 14, 25, 0.38);
}

.comparison-dialog-heading {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
}

.comparison-dialog-heading h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1.05;
  letter-spacing: -0.045em;
}

.comparison-close {
  width: 48px;
  height: 48px;
  flex: 0 0 auto;
  border: 1px solid var(--slate-200);
  color: var(--navy-950);
  background: var(--white);
  font-size: 2rem;
  line-height: 1;
}

.comparison-guidance {
  max-width: 820px;
  margin: 18px 0 24px;
  color: var(--slate-600);
}

.comparison-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--slate-200);
}

.comparison-table {
  width: 100%;
  min-width: 820px;
  border-collapse: collapse;
}

.comparison-table th,
.comparison-table td {
  min-width: 180px;
  padding: 14px 16px;
  border-right: 1px solid var(--slate-200);
  border-bottom: 1px solid var(--slate-200);
  text-align: left;
  vertical-align: top;
}

.comparison-table thead th {
  color: var(--white);
  background: var(--navy-800);
}

.comparison-table thead th:first-child,
.comparison-table tbody th {
  position: sticky;
  left: 0;
}

.comparison-table thead th:first-child {
  z-index: 2;
}

.comparison-table tbody th {
  z-index: 1;
  min-width: 190px;
  color: var(--slate-700);
  background: var(--slate-100);
}

.comparison-table thead a {
  display: block;
  margin-bottom: 6px;
}

.comparison-remove {
  border: 0;
  padding: 0;
  color: #d6e9ff;
  background: transparent;
  font-size: 0.75rem;
  text-decoration: underline;
}

@media (max-width: 680px) {
  body.has-comparison-tray {
    padding-bottom: 152px;
  }

  .comparison-tray {
    right: 0;
    bottom: 0;
    left: 0;
    align-items: stretch;
    flex-direction: column;
    padding: 14px;
    gap: 10px;
  }

  .comparison-tray-actions {
    justify-content: space-between;
  }

  .comparison-dialog {
    padding: 0;
  }

  .comparison-dialog-panel {
    min-height: 100%;
    padding: 22px 14px;
  }

  .comparison-dialog-heading h2 {
    font-size: 2rem;
  }
}

/* RFQ basket, product documents, and sales operations */
.rfq-count {
  display: inline-grid;
  min-width: 1.55rem;
  height: 1.55rem;
  place-items: center;
  margin-left: 0.35rem;
  padding-inline: 0.35rem;
  border-radius: 999px;
  color: var(--navy-950);
  background: var(--white);
  font-size: 0.72rem;
  font-weight: 900;
}

.rfq-count[hidden] {
  display: none;
}

.catalog-card-labels,
.product-title-row,
.section-heading-inline,
.admin-toolbar,
.rfq-record-heading,
.rfq-basket-product {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 18px;
}

.catalog-card-actions button,
.text-button {
  padding: 0;
  border: 0;
  color: var(--blue-600);
  background: transparent;
  cursor: pointer;
  font: inherit;
  font-size: 0.8rem;
  font-weight: 850;
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

[data-rfq-add].is-added {
  color: #0d7048;
  border-color: #71bb98;
  background: #e9f8f0;
  box-shadow: none;
}

.status-badge {
  display: inline-flex;
  flex: 0 0 auto;
  padding: 5px 9px;
  border: 1px solid #80c4a2;
  border-radius: 999px;
  color: #0d7048;
  background: #e9f8f0;
  font-size: 0.66rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.status-legacy {
  border-color: #e2b782;
  color: #85501c;
  background: #fff4e5;
}

.product-primary-actions,
.document-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin: 26px 0;
  gap: 14px;
}

.document-panel {
  margin-top: 22px;
  padding: 24px;
  border: 1px solid var(--slate-200);
  border-top: 4px solid var(--blue-600);
  background: var(--white);
  box-shadow: 0 10px 34px rgba(5, 24, 42, 0.06);
}

.document-panel h2 {
  margin: 4px 0 10px;
  font-size: 1.35rem;
}

.document-summary-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  align-items: start;
  gap: 28px;
}

.document-download-card {
  padding: 30px;
  border: 1px solid var(--slate-200);
  border-top: 4px solid var(--blue-600);
  background: var(--white);
  box-shadow: var(--shadow);
}

.document-download-card h2 {
  margin: 5px 0 22px;
}

.document-download-card dl,
.rfq-project-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 0 0 24px;
  gap: 14px;
}

.document-download-card dl div,
.rfq-project-meta div {
  padding: 14px;
  background: var(--slate-100);
}

.document-download-card dt,
.rfq-project-meta dt {
  color: var(--slate-600);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.document-download-card dd,
.rfq-project-meta dd {
  margin: 4px 0 0;
  overflow-wrap: anywhere;
  font-weight: 800;
}

.honeypot {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  clip-path: inset(50%) !important;
  white-space: nowrap !important;
}

.rfq-basket-section {
  padding-bottom: 34px;
  border-bottom: 1px solid var(--slate-200);
}

.rfq-basket {
  display: grid;
  margin-top: 24px;
  gap: 16px;
}

.rfq-basket-row {
  padding: 20px;
  border: 1px solid var(--slate-200);
  border-left: 4px solid var(--blue-600);
  background: var(--white);
  box-shadow: 0 8px 26px rgba(5, 24, 42, 0.05);
}

.rfq-basket-product h3 {
  margin: 0 0 16px;
  font-size: 1.18rem;
}

.rfq-basket-fields {
  display: grid;
  grid-template-columns: minmax(130px, 0.45fr) minmax(130px, 0.45fr) minmax(240px, 1.1fr);
  gap: 14px;
}

.rfq-basket-fields textarea {
  min-height: 72px;
}

.rfq-basket-empty {
  margin-top: 22px;
  padding: 22px;
  border: 1px dashed #9eb3c7;
  background: var(--slate-100);
}

.rfq-basket-empty[hidden] {
  display: none;
}

.form-section-heading {
  margin-top: 14px;
}

.form-section-heading h2,
.section-heading-inline h2 {
  margin: 3px 0 0;
}

.checkbox-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.checkbox-row input {
  width: auto;
  margin-top: 0.25rem;
}

.attachment-list {
  margin-top: 8px;
  color: var(--slate-700);
  font-size: 0.82rem;
}

.form-status.is-success {
  border-color: #24875b;
  color: #0d5b3b;
  background: #e9f8f0;
}

.form-status.is-error {
  border-color: #b54242;
  color: #812b2b;
  background: #fff0f0;
}

.security-note {
  margin: 24px 0;
  padding: 18px;
  border-left: 4px solid #24875b;
  background: #e9f8f0;
}

.security-note p {
  margin-bottom: 0;
}

.admin-hero {
  padding-bottom: 56px;
}

.admin-login {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr auto;
  align-items: end;
  max-width: none;
  gap: 24px;
}

.admin-login h2 {
  margin: 3px 0 8px;
}

.admin-login p {
  margin: 0;
}

.admin-dashboard[hidden] {
  display: none;
}

.admin-toolbar {
  margin: 24px 0;
}

.admin-toolbar h2 {
  margin: 3px 0 0;
}

.admin-email-status {
  margin: 0 0 24px;
}

.admin-email-status.is-success {
  border-color: #24875b;
  color: #0d5b3b;
  background: #e9f8f0;
}

.admin-email-status.is-error {
  border-color: #b54242;
  color: #812b2b;
  background: #fff0f0;
}

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

.metric-card {
  display: grid;
  padding: 24px;
  border: 1px solid var(--slate-200);
  background: var(--white);
  box-shadow: 0 10px 30px rgba(5, 24, 42, 0.06);
  gap: 5px;
}

.metric-card strong {
  color: var(--blue-600);
  font-size: clamp(1.8rem, 4vw, 2.7rem);
  line-height: 1;
}

.metric-card span {
  color: var(--slate-600);
  font-size: 0.82rem;
  font-weight: 800;
}

.admin-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 24px 0 56px;
  gap: 24px;
}

.admin-grid .card {
  max-width: none;
}

.ranked-list {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.ranked-list li {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid var(--slate-200);
  gap: 20px;
}

.rfq-record {
  margin-bottom: 22px;
  padding: 26px;
  border: 1px solid var(--slate-200);
  border-top: 4px solid var(--blue-600);
  background: var(--white);
  box-shadow: 0 10px 34px rgba(5, 24, 42, 0.06);
}

.rfq-record-heading h3 {
  margin: 3px 0 5px;
}

.rfq-record-heading p {
  margin: 0;
}

.rfq-record .table-wrap {
  margin: 20px 0;
  box-shadow: none;
}

.rfq-record .spec-table {
  min-width: 680px;
}

.rfq-files {
  padding-top: 16px;
  border-top: 1px solid var(--slate-200);
}

.rfq-notification-actions {
  display: flex;
  align-items: center;
  margin-top: 18px;
  gap: 14px;
}

.rfq-notification-actions .button {
  min-width: 150px;
}

.rfq-notification-actions span {
  color: var(--slate-600);
  font-size: 0.84rem;
  font-weight: 750;
}

.empty-state {
  color: var(--slate-600);
}

@media (max-width: 920px) {
  .document-summary-grid,
  .admin-grid {
    grid-template-columns: 1fr;
  }

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

  .rfq-basket-fields .field-wide {
    grid-column: 1 / -1;
  }

  .admin-login {
    grid-template-columns: 1fr;
    align-items: stretch;
  }

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

@media (max-width: 620px) {
  .catalog-card-labels,
  .product-title-row,
  .section-heading-inline,
  .admin-toolbar,
  .rfq-record-heading,
  .rfq-basket-product {
    flex-direction: column;
    align-items: stretch;
  }

  .rfq-basket-fields,
  .admin-metrics,
  .document-download-card dl,
  .rfq-project-meta {
    grid-template-columns: 1fr;
  }

  .product-primary-actions .button,
  .document-actions .button {
    width: 100%;
  }
}
