:root {
  --ink: #181b1e;
  --muted: #59636c;
  --line: #e3e7ea;
  --soft: #f7f9fa;
  --accent: #2d5878;
  --danger: #9d2f2f;
  --ok: #2e7d53;
  --warn: #96630e;
  --shell: 1160px;
}

/* Product detail and shared customer-facing refinements */
.product-card__variant,
.line-variant {
  color: #66707b;
  font-size: 12px;
}
.product-page {
  padding-top: 34px;
}
.product-detail > div:first-child {
  min-width: 0;
}
.product-media-note {
  display: flex;
  justify-content: space-between;
  margin: 10px 2px 0;
  color: #89929a;
  font-family: "IBM Plex Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.product-kicker {
  display: flex;
  align-items: center;
  gap: 12px;
}
.product-kicker > span {
  border-left: 1px solid #cdd3d8;
  padding-left: 12px;
  color: #6d7780;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.variant-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-top: 30px;
  padding-bottom: 11px;
}
.variant-heading h2 {
  margin: 5px 0 0;
  font-size: 20px;
}
.variant-heading > span {
  color: #7d8790;
  font-size: 11px;
}
.variant-row > div:first-child strong {
  font-size: 14px;
}
.product-order-notes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 25px;
  background: var(--soft);
  border: 1px solid var(--line);
}
.product-order-notes div {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 15px;
}
.product-order-notes div + div {
  border-left: 1px solid var(--line);
}
.product-order-notes strong {
  font-size: 12px;
}
.product-order-notes span {
  color: #717b84;
  font-size: 11px;
  line-height: 1.45;
}
.product-information {
  padding: clamp(50px, 7vw, 82px) 0;
  background: var(--soft);
  border-block: 1px solid var(--line);
}
.product-information__grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.75fr) minmax(0, 1.25fr);
  gap: clamp(40px, 8vw, 100px);
}
.product-information h2,
.product-help h2 {
  margin: 8px 0 14px;
  font-size: clamp(28px, 3.4vw, 40px);
  line-height: 1.12;
  letter-spacing: -0.025em;
}
.product-information p,
.product-help p {
  max-width: 58ch;
  color: var(--muted);
  line-height: 1.65;
}
.specification-list {
  margin: 0;
  border-top: 1px solid #dce1e5;
}
.specification-list div {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  padding: 14px 0;
  border-bottom: 1px solid #dce1e5;
}
.specification-list dt {
  color: #68737c;
  font-size: 13px;
}
.specification-list dd {
  margin: 0;
  font-weight: 600;
  text-align: right;
}
.product-help {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
  border: 1px solid var(--line);
  padding: clamp(26px, 4vw, 44px);
}
.product-help h2 {
  margin-bottom: 7px;
}
.product-help p {
  margin: 0;
}
.product-help .button {
  flex: 0 0 auto;
}
@media (max-width: 860px) {
  .product-information__grid {
    grid-template-columns: 1fr;
  }
  .product-order-notes {
    grid-template-columns: 1fr;
  }
  .product-order-notes div + div {
    border-top: 1px solid var(--line);
    border-left: 0;
  }
}
@media (max-width: 600px) {
  .variant-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }
  .product-media-note {
    align-items: flex-start;
    flex-direction: column;
    gap: 3px;
  }
  .specification-list div {
    grid-template-columns: 1fr;
  }
  .specification-list dd {
    text-align: left;
  }
  .product-help {
    align-items: flex-start;
    flex-direction: column;
  }
  .product-help .button {
    width: 100%;
  }
}
* {
  box-sizing: border-box;
}
html {
  -webkit-text-size-adjust: 100%;
}
body {
  margin: 0;
  background: #fff;
  color: var(--ink);
  font-family: "IBM Plex Sans", Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}
a {
  color: var(--accent);
  text-decoration: none;
}
a:hover {
  color: #1c3d56;
}
img {
  max-width: 100%;
  display: block;
}
input,
select,
textarea,
button {
  font: inherit;
}
input,
select,
textarea {
  width: 100%;
  border: 1px solid #c9cfd5;
  border-radius: 0;
  background: #fff;
  color: var(--ink);
  padding: 12px 13px;
}
textarea {
  min-height: 100px;
  resize: vertical;
}
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}
.skip-link {
  position: fixed;
  left: 12px;
  top: -80px;
  z-index: 200;
  background: #fff;
  padding: 10px;
}
.skip-link:focus {
  top: 12px;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
.shell {
  width: min(100%, var(--shell));
  margin-inline: auto;
  padding-inline: clamp(16px, 4vw, 40px);
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid #e7eaed;
}
.header-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0 8px;
}
.brand {
  color: var(--ink);
  font-weight: 700;
  font-size: 19px;
  letter-spacing: -0.01em;
  white-space: nowrap;
}
.brand-group {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}
.admin-tag {
  font-family: "IBM Plex Mono", monospace;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid #b6c6d2;
  background: #f2f6f9;
  padding: 3px 7px;
  white-space: nowrap;
}
.brand span {
  font-weight: 600;
}
.brand span,
.eyebrow {
  color: var(--accent);
}
.header-actions,
.main-nav {
  display: flex;
  align-items: center;
}
.header-actions {
  gap: 10px;
}
.main-nav {
  gap: 6px;
}
.header-actions > a:not(.button) {
  padding: 8px 10px;
  color: #3a4147;
}
.main-nav {
  overflow: auto;
  margin-inline: -12px;
  padding-inline: 4px;
}
.main-nav a {
  white-space: nowrap;
  padding: 12px;
  color: #3a4147;
  font-size: 14.5px;
  font-weight: 500;
  border-bottom: 2px solid transparent;
}
.main-nav a.active {
  color: var(--ink);
  font-weight: 600;
  border-bottom-color: var(--accent);
}
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4px;
  width: 42px;
  height: 38px;
  padding: 0;
  border: 1px solid #c9cfd5;
  background: #fff;
  cursor: pointer;
  flex: none;
}
.nav-toggle span {
  display: block;
  width: 17px;
  height: 2px;
  background: var(--ink);
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.nav-toggle--close span:first-child {
  transform: translateY(3px) rotate(45deg);
}
.nav-toggle--close span:last-child {
  transform: translateY(-3px) rotate(-45deg);
}
.mobile-menu {
  display: none;
}
html.js .mobile-menu:not([hidden]) {
  display: block;
  position: fixed;
  inset: 0;
  z-index: 120;
  background: #fff;
  overflow-y: auto;
}
.mobile-menu__in {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding-bottom: 24px;
}
.mobile-menu__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 62px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 8px;
}
html.js .mobile-menu .nav-toggle {
  display: flex;
}
.mobile-menu nav {
  display: flex;
  flex-direction: column;
}
.mobile-menu nav a {
  padding: 16px 2px;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  font-size: 18px;
  font-weight: 500;
}
.mobile-menu nav a.active {
  color: var(--accent);
  font-weight: 600;
}
.mobile-menu__foot {
  margin-top: auto;
  padding-top: 28px;
  display: grid;
  gap: 10px;
}
.mobile-menu__foot form {
  margin: 0;
  display: grid;
}
body.menu-open {
  overflow: hidden;
}
@media (min-width: 601px) {
  /* The overlay is a mobile-only surface: never render it on desktop,
     even if a resize happens while it is open. */
  html.js .mobile-menu:not([hidden]) {
    display: none;
  }
  body.menu-open {
    overflow: auto;
  }
}
.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  padding: 11px 18px;
  border: 1px solid #c9cfd5;
  border-radius: 0;
  background: #fff;
  color: #24292e;
  font-weight: 600;
  cursor: pointer;
}
.button--dark {
  background: #1b1e22;
  border-color: #1b1e22;
  color: #fff;
}
.button--dark:hover {
  background: #2e3338;
  color: #fff;
}
.button--outline:hover {
  border-color: #8f9aa3;
  color: var(--ink);
}
.button--small {
  min-height: 38px;
  padding: 8px 14px;
  font-size: 14px;
}
.button--large {
  min-height: 52px;
  padding: 14px 24px;
}
.button--block {
  width: 100%;
}
.page-head {
  border-bottom: 1px solid #edf0f2;
  background: #fff;
}
.page-head .shell {
  padding-block: clamp(40px, 6vw, 72px);
}
.page-head h1,
.product-detail h1,
.success-card h1 {
  font-size: clamp(30px, 4.6vw, 49px);
  line-height: 1.1;
  letter-spacing: -0.025em;
  margin: 10px 0 14px;
}
.page-head p,
.lead {
  max-width: 68ch;
  color: #4a5158;
  font-size: 17px;
  line-height: 1.6;
  margin: 0;
}
.eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}
.section {
  padding: clamp(36px, 5vw, 68px) 0;
}
.narrow-copy {
  max-width: var(--shell);
}
.narrow-copy > h1,
.narrow-copy > h2,
.narrow-copy > p,
.narrow-copy > ul,
.narrow-copy > ol {
  max-width: 790px;
}
.filter-bar {
  display: grid;
  grid-template-columns: minmax(240px, 2fr) minmax(180px, 1fr) auto;
  align-items: end;
  gap: 12px;
  padding: 18px;
  background: var(--soft);
  border: 1px solid var(--line);
}
label > span,
.filter-bar label span {
  display: block;
  margin-bottom: 6px;
  font-size: 13px;
  font-weight: 600;
}
.result-summary {
  margin: 24px 0 14px;
  color: var(--muted);
  font-size: 14px;
}
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 255px), 1fr));
  gap: 16px;
}
.product-card {
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.product-image {
  aspect-ratio: 4/3;
  background: #f7f8f9;
  border-bottom: 1px solid #edf0f2;
  display: grid;
  place-items: center;
  overflow: hidden;
}
.product-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 18px;
  mix-blend-mode: multiply;
}
.product-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 8px;
  padding: 16px;
}
.product-card h2 {
  font-size: 15.5px;
  line-height: 1.4;
  margin: 0;
}
.product-card h2 a {
  color: var(--ink);
}
code {
  font-family: "IBM Plex Mono", monospace;
  font-size: 12px;
  color: #66707b;
  overflow-wrap: anywhere;
}
.product-card__foot {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 10px;
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid #eff1f3;
}
.product-card__foot strong {
  font-size: 14px;
}
.product-card__foot .product-card__na {
  color: #8a939b;
  font-size: 13px;
}
.product-card__avail {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 12.5px;
  color: #3a4147;
}
.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex: none;
  background: #66707b;
}
.dot--in_stock {
  background: var(--ok);
}
.dot--order_only {
  background: var(--warn);
}
.dot--unavailable {
  background: var(--danger);
}
.product-card__foot a {
  white-space: nowrap;
  font-weight: 600;
  font-size: 13.5px;
}
.empty-state,
.success-card {
  max-width: 720px;
  border: 1px solid var(--line);
  padding: clamp(28px, 5vw, 54px);
}
.empty-state h2,
.info-card h2,
.summary-card h2 {
  margin-top: 0;
}
.product-detail {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(28px, 5vw, 70px);
}
.product-detail__media {
  background: #f7f8f9;
  border: 1px solid var(--line);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  position: sticky;
  top: 130px;
  align-self: start;
}
.product-detail__media img {
  max-width: 88%;
  max-height: 88%;
  mix-blend-mode: multiply;
}
.facts {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  border: 1px solid var(--line);
  margin: 24px 0;
}
.facts div {
  padding: 14px;
  border-right: 1px solid var(--line);
}
.facts dt {
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 4px;
}
.facts dd {
  font-weight: 600;
  margin: 0;
}
.variant-list {
  border-top: 1px solid var(--line);
}
.variant-row {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}
.variant-row > div:first-child {
  display: grid;
  gap: 6px;
}
.variant-row__action {
  text-align: right;
}
.variant-row__action form {
  display: flex;
  gap: 8px;
  align-items: center;
  margin-top: 10px;
}
.quantity {
  width: 76px;
}
.status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--accent);
  border: 1px solid color-mix(in srgb, currentColor 32%, transparent);
  background: color-mix(in srgb, currentColor 7%, transparent);
  padding: 3px 9px;
  white-space: nowrap;
}
.status--in_stock {
  color: var(--ok);
}
.status--order_only {
  color: var(--warn);
}
.status--unavailable {
  color: var(--danger);
}
.status--check_required,
.status--muted {
  color: var(--muted);
}
.status--plain {
  border: 0;
  background: none;
  padding: 0;
}
.help-box,
.notice {
  border: 1px solid var(--line);
  background: var(--soft);
  padding: 20px;
  margin-top: 24px;
}
.help-box p {
  color: var(--muted);
}
.checkout-layout,
.admin-detail,
.account-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
  gap: 28px;
  align-items: start;
}
.cart-line {
  display: grid;
  grid-template-columns: 100px minmax(0, 1fr) auto;
  gap: 18px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}
.cart-line img {
  width: 100px;
  height: 80px;
  object-fit: contain;
  background: var(--soft);
}
.cart-line h2 {
  margin: 0 0 6px;
  font-size: 17px;
}
.cart-line p {
  color: var(--muted);
  font-size: 13px;
}
.cart-line form {
  display: flex;
  align-items: end;
  gap: 8px;
}
.summary-card {
  border: 1px solid var(--line);
  padding: 22px;
  position: sticky;
  top: 130px;
}
.summary-card dl {
  margin: 18px 0;
}
.summary-card dl div,
.summary-line {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 10px 0;
  border-bottom: 1px solid #eff1f3;
}
.summary-card dt,
.summary-card dd {
  margin: 0;
}
.summary-card p {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.5;
}
.summary-total {
  font-weight: 700;
  font-size: 17px;
}
.summary-line span {
  min-width: 0;
}
.summary-line small {
  display: block;
  color: var(--muted);
  margin-top: 3px;
}
.stack-form {
  display: grid;
  gap: 20px;
}
.stack-form > .button:not(.button--block) {
  justify-self: start;
  min-width: 220px;
}
.grid-note {
  margin: 20px 0 0;
  color: #8a939b;
  font-size: 13px;
}
.stack-form fieldset {
  border: 1px solid var(--line);
  padding: 20px;
  margin: 0;
}
.stack-form legend {
  font-size: 18px;
  font-weight: 600;
  padding: 0 8px;
}
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.form-grid label,
.stack-form > label,
.summary-card label {
  display: grid;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
}
.span-2 {
  grid-column: span 2;
}
.choice,
.checkbox {
  display: flex !important;
  align-items: flex-start;
  gap: 10px;
  margin: 10px 0;
  font-weight: 400 !important;
}
.choice input,
.checkbox input {
  width: auto;
  margin-top: 3px;
}
.choice small {
  display: block;
  color: var(--muted);
  margin-top: 4px;
}
.is-disabled {
  opacity: 0.55;
}
.notice--sdf {
  border-color: #aec0ce;
  background: #f5f9fc;
}
.form-shell {
  max-width: 860px;
}
.form-note {
  color: var(--muted);
  font-size: 13px;
}
.two-cards,
.three-cards {
  display: grid;
  gap: 16px;
}
.two-cards {
  grid-template-columns: repeat(2, 1fr);
}
.three-cards {
  grid-template-columns: repeat(3, 1fr);
}
.info-card {
  border: 1px solid var(--line);
  padding: 24px;
}
.info-card p,
.prose p {
  color: var(--muted);
  line-height: 1.65;
}
.site-footer {
  border-top: 1px solid #e7eaed;
  margin-top: 40px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 32px;
  padding-block: 48px;
}
.footer-lang {
  color: #3a4147;
  font-size: 14px;
}
.footer-lang--soon {
  color: #8a939b;
  font-size: 13px;
}
.footer-grid p {
  color: #66707b;
  max-width: 50ch;
}
.footer-grid > div {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-grid a {
  color: #3a4147;
}
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 8px 16px;
  border-top: 1px solid var(--line);
  padding: 18px 0;
  color: #8a939b;
  font-size: 12px;
}
.flash-wrap {
  position: relative;
  z-index: 20;
}
.flash {
  width: min(var(--shell), calc(100% - 32px));
  margin: 12px auto 0;
  padding: 12px 14px;
  border: 1px solid #b8c8d3;
  background: #f4f8fb;
}
.flash--error {
  border-color: #d5aaaa;
  background: #fff7f7;
  color: #7d2525;
}
.flash--success {
  border-color: #a6cdb8;
  background: #f4fbf7;
  color: #205b3d;
}
.metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-bottom: 28px;
}
.metrics article {
  border: 1px solid var(--line);
}
.metrics article > a,
.metrics article > .metric-body {
  display: block;
  padding: 16px 18px;
  color: inherit;
  text-decoration: none;
  height: 100%;
}
.metrics article > a:hover {
  border-color: transparent;
  background: var(--soft);
  color: inherit;
}
.metrics span {
  display: block;
  color: var(--muted);
  font-size: 13px;
}
.metrics strong {
  display: block;
  font-size: 28px;
  margin-top: 6px;
}
.metric--attn {
  border-left: 3px solid var(--warn);
  background: #fffaf0;
}
.metric--attn strong {
  color: var(--warn);
}
.metric--ok strong {
  color: var(--muted);
  font-weight: 600;
}
.metric-groups {
  display: grid;
  gap: 22px;
  margin-bottom: 28px;
}
.metric-group > h3 {
  margin: 0 0 10px;
  font-family: "IBM Plex Mono", monospace;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--muted);
}
.metric-group .metrics {
  margin-bottom: 0;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
}
.table-card {
  border: 1px solid var(--line);
  overflow: auto;
}
.table-sticky th:first-child,
.table-sticky td:first-child {
  position: sticky;
  left: 0;
  background: #fff;
  z-index: 1;
}
.table-sticky th:first-child {
  background: var(--soft);
}
.table-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px;
}
.table-head h2 {
  margin: 0;
}
table {
  width: 100%;
  border-collapse: collapse;
  min-width: 720px;
}
th,
td {
  text-align: left;
  padding: 12px 14px;
  border-top: 1px solid var(--line);
  font-size: 13px;
  vertical-align: top;
}
th {
  background: var(--soft);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.admin-stack {
  display: grid;
  gap: 18px;
}
.admin-product {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 24px;
  border: 1px solid var(--line);
  padding: 20px;
}
.admin-variants {
  min-width: 0;
}
.admin-product h2 {
  font-size: 18px;
}
.admin-variant + .admin-variant {
  margin-top: 18px;
  border-top: 1px solid var(--line);
  padding-top: 16px;
}
.admin-variant__head {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 6px 12px;
  margin-bottom: 12px;
}
.admin-variant__head code {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
}
.admin-variant__head span {
  color: var(--muted);
  font-size: 12px;
}
.admin-product__form {
  display: grid;
  grid-template-columns: repeat(4, minmax(120px, 1fr));
  gap: 12px 14px;
  align-items: start;
  padding-bottom: 4px;
}
.admin-product__form label {
  font-size: 12px;
  align-self: start;
}
.admin-product__form input,
.admin-product__form select {
  min-height: 44px;
}
.admin-product__toggles {
  grid-column: span 3;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4px 18px;
  align-self: center;
  min-height: 44px;
}
.admin-product__toggles .checkbox {
  margin: 0;
  font-size: 13px;
  white-space: nowrap;
}
.admin-product__form > .button {
  justify-self: end;
  align-self: center;
}
.admin-product__form small,
.table-subline,
.readiness-list small {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 11px;
}
.admin-stock {
  display: grid;
  gap: 2px;
  align-self: start;
  padding: 6px 0 0;
}
.admin-stock strong {
  font-size: 16px;
  line-height: 44px;
}
.admin-stock span,
.admin-price-list > span {
  color: var(--muted);
  font-size: 12px;
}
.admin-price-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 16px;
  padding: 14px 0 4px;
  font-size: 12px;
}
.metrics--admin {
  grid-template-columns: repeat(auto-fit, minmax(145px, 1fr));
}
.admin-readiness {
  margin: 0 0 28px;
}
.shipment-form {
  margin-top: 16px;
}
.login-card {
  width: min(100%, 460px);
  margin-inline: auto;
  padding: clamp(24px, 4vw, 40px);
  border: 1px solid var(--line);
  background: #fff;
}
.admin-body .header-actions form {
  margin: 0;
}
.readiness-list,
.timeline {
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}
.readiness-list li {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 6px 16px;
  padding: 10px 0;
  border-top: 1px solid var(--line);
  font-size: 13px;
}
.readiness-list small {
  flex-basis: 100%;
  overflow-wrap: anywhere;
}
.timeline li {
  display: grid;
  gap: 4px;
  padding: 0 0 18px 18px;
  border-left: 1px solid var(--line);
}
.timeline li::before {
  width: 7px;
  height: 7px;
  margin: 5px 0 -11px -22px;
  background: var(--accent);
  border-radius: 50%;
  content: "";
}
.timeline span {
  color: var(--muted);
  font-size: 12px;
}
.timeline p {
  margin: 3px 0 0;
}
.table-head--flush {
  padding: 0 0 10px;
}
.inline-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  min-width: 290px;
}
.inline-actions label {
  width: 68px;
}
.inline-actions input {
  min-height: 38px;
  padding: 7px 9px;
}
.summary-card > .button {
  margin-top: 12px;
}
.notice--draft {
  margin: 0 0 18px;
  border-color: #d9bd81;
  background: #fffaf0;
}
.notice--draft p {
  margin-bottom: 0;
}
.proforma-wrap {
  background: var(--soft);
}
.proforma-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}
.proforma {
  max-width: 980px;
  margin-inline: auto;
  padding: clamp(28px, 5vw, 62px);
  background: #fff;
  border: 1px solid var(--line);
}
.proforma__header,
.proforma__parties,
.proforma__payment {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(28px, 6vw, 70px);
}
.proforma__header {
  padding-bottom: 28px;
  border-bottom: 2px solid var(--ink);
}
.proforma__header h1 {
  margin: 8px 0 0;
  font-size: clamp(30px, 5vw, 52px);
}
.proforma dl {
  margin: 0;
}
.proforma__header dl div,
.proforma__totals dl div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 7px 0;
  border-bottom: 1px solid var(--line);
}
.proforma dt,
.proforma dd {
  margin: 0;
}
.proforma dt {
  color: var(--muted);
}
.proforma__parties {
  padding: 30px 0;
}
.proforma__parties h2 {
  margin: 8px 0;
  font-size: 18px;
}
.proforma__parties p,
.proforma__payment p {
  color: #4f5962;
  line-height: 1.6;
}
.proforma__table {
  overflow-x: visible;
}
.proforma__table table {
  min-width: 0;
}
.proforma__totals {
  display: flex;
  justify-content: flex-end;
  padding: 26px 0;
}
.proforma__totals dl {
  width: min(100%, 430px);
}
.proforma__grand-total {
  padding-top: 14px !important;
  border-bottom: 0 !important;
  font-size: 18px;
  font-weight: 700;
}
.proforma__payment {
  padding-top: 26px;
  border-top: 2px solid var(--ink);
}
.proforma__payment > p:last-child {
  font-size: 12px;
}
.admin-body .site-footer {
  display: none;
}
.analytics-consent {
  position: fixed;
  z-index: 300;
  left: 16px;
  right: 16px;
  bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  max-width: 820px;
  margin: auto;
  padding: 16px 18px;
  border: 1px solid #b9c2ca;
  background: #fff;
  box-shadow: 0 12px 36px rgba(24, 27, 30, 0.18);
}
.analytics-consent p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 13px;
}
.analytics-consent > div:last-child {
  display: flex;
  gap: 8px;
}
.analytics-consent button {
  padding: 9px 13px;
  border: 1px solid #c9cfd5;
  background: #fff;
  font-weight: 600;
  white-space: nowrap;
}
.analytics-consent [data-analytics-accept] {
  background: #1b1e22;
  color: #fff;
  border-color: #1b1e22;
}
@media (max-width: 860px) {
  .product-detail,
  .checkout-layout,
  .admin-detail,
  .account-layout,
  .admin-product {
    grid-template-columns: 1fr;
  }
  .product-detail__media,
  .summary-card {
    position: static;
  }
  .three-cards,
  .metrics {
    grid-template-columns: repeat(2, 1fr);
  }
  .admin-product__form {
    grid-template-columns: repeat(2, 1fr);
  }
  .cart-line {
    grid-template-columns: 80px 1fr;
  }
  .cart-line form {
    grid-column: 2;
  }
}
@media (max-width: 600px) {
  .header-top {
    align-items: flex-start;
  }
  body:not(.admin-body) .header-actions > a:not(.button) {
    display: none;
  }
  .main-nav {
    -webkit-mask-image: linear-gradient(90deg, #000 calc(100% - 32px), transparent);
    mask-image: linear-gradient(90deg, #000 calc(100% - 32px), transparent);
  }
  /* With JavaScript the scroll-row nav becomes a burger + full-screen menu. */
  html.js .site-header .main-nav {
    display: none;
  }
  html.js .site-header .nav-toggle {
    display: flex;
  }
  html.js body:not(.admin-body) .header-actions .header-login {
    display: none;
  }
  html.js .admin-body .header-top .header-actions {
    display: none;
  }
  html.js .site-header .header-top {
    padding-bottom: 12px;
  }
  .filter-bar,
  .form-grid,
  .two-cards,
  .three-cards,
  .footer-grid,
  .admin-product__form {
    grid-template-columns: 1fr;
  }
  .metrics,
  .metric-group .metrics {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .metrics strong {
    font-size: 22px;
  }
  .admin-product__toggles {
    grid-column: auto;
  }
  .admin-product__form > .button {
    justify-self: stretch;
  }
  .span-2 {
    grid-column: auto;
  }
  .variant-row {
    flex-direction: column;
  }
  .variant-row__action {
    text-align: left;
  }
  .cart-line {
    grid-template-columns: 64px 1fr;
    gap: 12px;
  }
  .cart-line form {
    grid-column: 1/-1;
  }
  .page-head .shell,
  .section {
    padding-block: 34px;
  }
  .footer-grid {
    padding-block: 36px;
  }
  .main-nav {
    padding-bottom: 1px;
  }
  .admin-body .brand {
    font-size: 17px;
  }
  .admin-body .header-top {
    flex-wrap: wrap;
    gap: 8px 16px;
  }
  .analytics-consent {
    align-items: stretch;
    flex-direction: column;
  }
  .analytics-consent > div:last-child {
    justify-content: flex-end;
  }
  .proforma__header,
  .proforma__parties,
  .proforma__payment {
    grid-template-columns: 1fr;
  }
  .proforma-actions {
    align-items: stretch;
    flex-direction: column;
  }
  .proforma__table {
    overflow-x: auto;
  }
  .proforma__table table {
    min-width: 680px;
  }
}
@media (max-width: 360px) {
  .header-top {
    gap: 8px;
  }
  .brand {
    font-size: 17px;
  }
  .header-actions {
    gap: 4px;
  }
  .header-actions .button--small {
    min-height: 36px;
    padding-inline: 9px;
    font-size: 13px;
  }
}

.compact-section {
  padding-top: 0;
}
.plain-checklist {
  display: grid;
  gap: 9px;
  margin: 20px 0 24px;
  padding: 0;
  list-style: none;
}
.plain-checklist li {
  border-top: 1px solid var(--line);
  padding-top: 9px;
  color: #46515a;
  font-size: 13px;
}
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.9fr);
  gap: 22px;
}
.contact-panel,
.request-guide,
.access-card,
.legal-placeholder,
.legal-toc,
.sdf-explainer {
  border: 1px solid var(--line);
  padding: clamp(24px, 4vw, 38px);
}
.contact-panel {
  background: var(--soft);
}
.contact-panel h2,
.request-guide h2,
.access-card h2,
.legal-placeholder h2,
.sdf-explainer h2 {
  margin: 8px 0 12px;
  font-size: clamp(22px, 2.6vw, 30px);
  letter-spacing: -0.02em;
}
.contact-panel p,
.request-guide p,
.access-card p,
.legal-placeholder p,
.sdf-explainer p {
  color: var(--muted);
  line-height: 1.65;
}
.contact-panel dl {
  margin: 24px 0 0;
  border-top: 1px solid var(--line);
}
.contact-panel dl div {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}
.contact-panel dt,
.contact-panel dd {
  margin: 0;
  font-size: 13px;
}
.contact-panel dt {
  color: var(--muted);
}
.contact-panel dd {
  text-align: right;
  font-weight: 600;
}
.request-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 350px);
  gap: 28px;
  align-items: start;
}
.request-guide {
  position: sticky;
  top: 130px;
  background: var(--soft);
}
.request-guide ol,
.legal-toc ol {
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}
.request-guide li {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 12px;
  border-top: 1px solid var(--line);
  padding: 14px 0;
}
.request-guide li > span,
.solution-index {
  color: var(--accent);
  font-family: "IBM Plex Mono", monospace;
  font-size: 11px;
  font-weight: 600;
}
.request-guide li p {
  margin: 0;
  font-size: 13px;
}
.solution-list {
  display: grid;
  border-top: 1px solid var(--line);
}
.solution-row {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr) auto;
  gap: clamp(18px, 4vw, 46px);
  align-items: center;
  border-bottom: 1px solid var(--line);
  padding: clamp(24px, 4vw, 40px) 0;
}
.solution-row h2 {
  margin: 6px 0 8px;
  font-size: clamp(22px, 3vw, 34px);
  letter-spacing: -0.025em;
}
.solution-row p {
  max-width: 72ch;
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}
.solution-row .button {
  min-width: 140px;
}
.sdf-explainer {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
  background: var(--soft);
}
.sdf-explainer .status {
  flex: 0 0 auto;
}
.access-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.access-card {
  display: flex;
  flex-direction: column;
}
.access-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.legal-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
  gap: 22px;
}
.legal-placeholder {
  min-height: 360px;
}
.legal-placeholder .status {
  display: inline-block;
  margin-bottom: 28px;
}
.legal-toc {
  background: var(--soft);
}
.legal-toc li {
  border-top: 1px solid var(--line);
  padding: 11px 0;
  color: #4f5962;
  font-size: 13px;
}
@media (max-width: 860px) {
  .contact-grid,
  .request-layout,
  .access-grid,
  .legal-layout {
    grid-template-columns: 1fr;
  }
  .request-guide {
    position: static;
  }
}
@media (max-width: 600px) {
  .solution-row {
    grid-template-columns: 34px 1fr;
  }
  .solution-row .button {
    grid-column: 2;
    width: 100%;
  }
  .sdf-explainer {
    flex-direction: column;
  }
}

/* ---------- Homepage (port of the approved V5 design) ---------- */
.home-hero-band {
  border-bottom: 1px solid #edf0f2;
}
.home-hero {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(28px, 4vw, 56px);
  align-items: flex-start;
  padding-block: clamp(40px, 6vw, 72px) clamp(44px, 6vw, 80px);
}
.home-hero__main {
  flex: 1 1 520px;
  min-width: 0;
}
.home-hero h1 {
  margin: 12px 0 14px;
  font-size: clamp(30px, 4.6vw, 49px);
  line-height: 1.1;
  letter-spacing: -0.025em;
  text-wrap: balance;
}
.home-hero .lead {
  margin-bottom: 28px;
  max-width: 56ch;
  text-wrap: pretty;
}
.home-search {
  max-width: 620px;
}
.home-search > label {
  display: block;
  margin-bottom: 8px;
  font-size: 13px;
  font-weight: 600;
  color: #33393f;
}
.home-search__field {
  position: relative;
}
.home-search__field svg {
  position: absolute;
  left: 15px;
  top: 27px;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  pointer-events: none;
}
.home-search__field input {
  height: 54px;
  padding: 0 16px 0 44px;
  font-size: 16px;
  border-width: 1.5px;
}
.home-search__field input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(45, 88, 120, 0.13);
  outline: none;
}
.home-search__hint {
  margin: 8px 0 0;
  font-size: 12.5px;
  color: #8a939b;
}
.search-drop {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  z-index: 40;
  background: #fff;
  border: 1px solid #d6dbe0;
  box-shadow: 0 12px 32px rgba(24, 27, 30, 0.1);
  overflow: hidden;
}
.search-drop__label {
  font-size: 12px;
  color: #66707b;
  padding: 10px 16px 8px;
  border-bottom: 1px solid #eff1f3;
}
.search-drop a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 13px 16px;
  color: var(--ink);
  border-bottom: 1px solid #f3f5f6;
}
.search-drop a:hover,
.search-drop a.active {
  background: #f7f9fa;
  color: var(--ink);
}
.search-drop a strong {
  font-size: 14.5px;
  font-weight: 500;
  min-width: 0;
}
.search-drop a span {
  font-size: 12px;
  color: #66707b;
  white-space: nowrap;
}
.search-drop__empty {
  padding: 14px 16px 16px;
}
.search-drop__empty p {
  margin: 0 0 8px;
  font-size: 14px;
  color: #3a4147;
}
.search-drop__empty a {
  font-size: 14px;
  font-weight: 600;
}
.home-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}
.home-benefits {
  flex: 0 1 320px;
  min-width: 260px;
  background: var(--soft);
  border: 1px solid #e7eaed;
  padding: 22px;
}
.eyebrow--ink {
  color: #33393f;
}
.home-benefits ul {
  list-style: none;
  margin: 12px 0 0;
  padding: 0;
}
.home-benefits li {
  display: flex;
  gap: 10px;
  font-size: 14.5px;
  line-height: 1.5;
  color: #3a4147;
  padding: 7px 0;
}
.home-benefits li span {
  color: var(--ok);
  font-weight: 700;
}
.home-benefits > a {
  display: inline-block;
  margin-top: 12px;
  font-size: 14px;
  font-weight: 600;
}
.home-section-head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 28px;
}
.home-section-head h2,
.home-h2 {
  margin: 10px 0 8px;
  font-size: clamp(22px, 2.6vw, 30px);
  letter-spacing: -0.02em;
}
.home-section-head p,
.home-sub {
  margin: 0;
  font-size: 15px;
  color: #4a5158;
  max-width: 64ch;
}
.home-sub {
  margin-bottom: 26px;
}
.home-more-link {
  font-size: 14.5px;
  font-weight: 600;
  padding: 10px 0;
  white-space: nowrap;
}
.band-line-top {
  border-top: 1px solid #edf0f2;
}
.band-soft {
  background: #f8fafb;
  border-block: 1px solid #edf0f2;
}
.band-soft2 {
  background: #f4f6f7;
  border-block: 1px solid #edf0f2;
}
.home-h2-plain {
  margin: 0 0 20px;
  font-size: clamp(20px, 2.4vw, 26px);
  letter-spacing: -0.02em;
}
.home-categories {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 230px), 1fr));
}
.home-categories a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border: 1px solid var(--line);
  padding: 18px;
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  transition: border-color 0.15s;
}
.home-categories a:hover {
  border-color: #b9c2ca;
  color: var(--ink);
}
.home-categories a span {
  color: var(--accent);
}
.home-steps {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 230px), 1fr));
}
.step-card {
  background: #fff;
  border: 1px solid var(--line);
  padding: 20px;
}
.step-card code {
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
}
.step-card h3 {
  margin: 10px 0 6px;
  font-size: 15.5px;
}
.step-card p {
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
  color: #4a5158;
}
.home-center {
  max-width: 720px;
  margin-inline: auto;
  text-align: center;
  padding-block: clamp(8px, 1vw, 12px);
}
.home-center--narrow {
  max-width: 640px;
}
.home-sub--center {
  margin-inline: auto;
  margin-bottom: 24px;
  text-wrap: pretty;
}
.home-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin: 0 0 26px;
}
.home-chips span {
  font-size: 13px;
  color: #4a5158;
  background: var(--soft);
  border: 1px solid var(--line);
  padding: 6px 12px;
}
.home-banner {
  border: 1px solid var(--line);
  padding: clamp(20px, 3vw, 28px);
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: flex-start;
  justify-content: space-between;
}
.home-banner > div {
  flex: 1 1 480px;
  min-width: 0;
}
.home-banner h2 {
  margin: 12px 0 8px;
  font-size: clamp(19px, 2.2vw, 23px);
  letter-spacing: -0.015em;
}
.home-banner p {
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
  color: #4a5158;
  max-width: 70ch;
}
.home-banner > a {
  font-size: 14.5px;
  font-weight: 600;
  padding: 10px 0;
  white-space: nowrap;
}
.home-solutions {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 270px), 1fr));
}
.solution-card {
  background: #fff;
  border: 1px solid var(--line);
  padding: 22px;
  display: flex;
  flex-direction: column;
}
.solution-card h3 {
  margin: 0 0 8px;
  font-size: 16px;
}
.solution-card p {
  margin: 0 0 16px;
  font-size: 14px;
  line-height: 1.55;
  color: #4a5158;
  flex: 1;
}
.solution-card a {
  font-size: 14px;
  font-weight: 600;
  padding: 6px 0;
}

@media print {
  .site-header,
  .flash-wrap,
  .proforma-actions,
  .notice--draft {
    display: none !important;
  }
  .proforma-wrap,
  .section {
    padding: 0;
    background: #fff;
  }
  .proforma-wrap .shell {
    width: 100%;
    padding: 0;
  }
  .proforma {
    max-width: none;
    padding: 0;
    border: 0;
  }
  .proforma__table {
    overflow: visible;
  }
  .proforma__table table {
    min-width: 0;
  }
}
