:root {
  color-scheme: light;
  --ink: #11161a;
  --muted: #65717d;
  --soft: #eef3f6;
  --line: #dce5eb;
  --paper: #ffffff;
  --wash: #f6f9fb;
  --graphite: #111820;
  --graphite-2: #18222c;
  --cyan: #12b8c8;
  --cyan-dark: #078494;
  --green: #45b981;
  --amber: #c8912a;
  --radius: 8px;
  --shadow: 0 18px 48px rgba(17, 24, 32, 0.12);
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

.is-hidden {
  display: none !important;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--wash);
  color: var(--ink);
  font-family: Arial, "PingFang SC", "Microsoft YaHei", sans-serif;
  letter-spacing: 0;
}

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

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

button {
  cursor: pointer;
}

.shell {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 0 32px;
  background: rgba(255, 255, 255, 0.88);
  border-bottom: 1px solid rgba(220, 229, 235, 0.86);
  backdrop-filter: blur(18px);
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 360px;
}

.brand-logo {
  width: 96px;
  height: 52px;
  flex: 0 0 auto;
  object-fit: contain;
}

.brand-wording {
  min-width: 0;
}

.brand-wording strong,
.brand-wording small {
  display: block;
}

.brand-wording strong {
  font-size: 14px;
  line-height: 1.3;
}

.brand-wording small {
  max-width: 260px;
  margin-top: 3px;
  color: var(--muted);
  font-size: 9px;
  line-height: 1.25;
}

.nav-links {
  display: flex;
  align-self: stretch;
  align-items: center;
  justify-content: center;
  gap: 24px;
  color: #2b353d;
  font-size: 14px;
}

.nav-links a {
  padding: 8px 0;
}

.nav-links a:hover {
  color: var(--cyan-dark);
}

.nav-links .nav-sell {
  color: #2f745c;
  font-weight: 700;
}

.nav-links .nav-sell:hover,
.nav-links .nav-sell:focus-visible {
  color: #1f5945;
}

.nav-product-menu {
  position: relative;
  align-self: stretch;
  display: flex;
  align-items: center;
}

.nav-product-menu::after {
  position: absolute;
  top: 100%;
  right: -14px;
  left: -14px;
  height: 10px;
  content: "";
}

.nav-product-trigger {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.nav-product-trigger::after {
  width: 6px;
  height: 6px;
  margin-top: -3px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  content: "";
  transform: rotate(45deg);
  transition: transform 160ms ease;
}

.nav-product-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  z-index: 30;
  width: 248px;
  padding: 7px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow);
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -6px);
  transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
}

.nav-product-menu:hover .nav-product-dropdown,
.nav-product-menu:focus-within .nav-product-dropdown {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.nav-product-menu:hover .nav-product-trigger::after,
.nav-product-menu:focus-within .nav-product-trigger::after {
  margin-top: 3px;
  transform: rotate(225deg);
}

.nav-links .nav-product-option {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  align-items: center;
  min-height: 46px;
  padding: 7px 10px;
  border-radius: 4px;
}

.nav-product-option + .nav-product-option {
  border-top: 1px solid #edf1f3;
}

.nav-links .nav-product-option:hover,
.nav-links .nav-product-option:focus-visible {
  background: #eff8f9;
  color: var(--cyan-dark);
  outline: none;
}

.nav-product-option strong {
  color: var(--ink);
  font-size: 12px;
}

.nav-product-option span {
  color: var(--muted);
  font-size: 12px;
}

.about-band,
.products-band {
  scroll-margin-top: 72px;
}

.supplier-band {
  scroll-margin-top: 72px;
}

.nav-cta,
.primary-action,
.secondary-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 14px;
}

.nav-cta {
  padding: 0 18px;
  background: var(--graphite);
  color: #fff;
}

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

.language-switch {
  display: grid;
  grid-template-columns: repeat(2, 34px);
  gap: 2px;
  padding: 3px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--soft);
}

.lang-button {
  width: 34px;
  height: 30px;
  padding: 0;
  border: 0;
  border-radius: 4px;
  background: transparent;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.lang-button.is-active {
  background: #fff;
  color: var(--graphite);
  box-shadow: 0 1px 5px rgba(17, 24, 32, 0.12);
}

.lang-button:focus-visible,
.nav-links a:focus-visible,
.nav-cta:focus-visible {
  outline: 2px solid var(--cyan-dark);
  outline-offset: 2px;
}

.hero {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--graphite);
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
}

.hero-scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(9, 14, 19, 0.94) 0%, rgba(9, 14, 19, 0.72) 42%, rgba(9, 14, 19, 0.16) 74%),
    linear-gradient(0deg, rgba(9, 14, 19, 0.56), rgba(9, 14, 19, 0.08));
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 72px 0 86px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--cyan);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 690px;
  margin: 0;
  color: #fff;
  font-size: 46px;
  line-height: 1.12;
}

.hero-copy {
  max-width: 610px;
  margin: 26px 0 0;
  color: #c7d1d9;
  font-size: 17px;
  line-height: 1.8;
}

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

.primary-action {
  min-width: 132px;
  padding: 0 22px;
  background: var(--cyan);
  color: #061114;
}

.secondary-action {
  min-width: 132px;
  padding: 0 22px;
  border: 1px solid rgba(255, 255, 255, 0.36);
  color: #fff;
}

.overview-band {
  padding: 24px 0 36px;
  background: #eaf0f4;
}

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

.metric-card {
  min-height: 118px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

.metric-card span,
.metric-card small {
  display: block;
  color: var(--muted);
  font-size: 13px;
}

.metric-card strong {
  display: block;
  margin: 10px 0 8px;
  font-size: 30px;
  line-height: 1;
}

.about-band {
  padding: 88px 0 92px;
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.about-intro {
  display: grid;
  grid-template-columns: minmax(320px, 0.88fr) minmax(0, 1.12fr);
  gap: 84px;
  align-items: start;
}

.about-identity {
  position: relative;
  padding-right: 48px;
}

.about-identity::after {
  position: absolute;
  top: 0;
  right: -42px;
  width: 1px;
  height: 100%;
  background: var(--line);
  content: "";
}

.about-logo {
  display: block;
  width: 164px;
  height: 76px;
  margin-bottom: 28px;
  object-fit: contain;
  object-position: left center;
}

.about-identity h2 {
  max-width: 480px;
  margin: 0;
  font-size: 36px;
  line-height: 1.25;
}

.about-company-en {
  max-width: 430px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

.about-copy {
  padding-top: 38px;
}

.about-copy p {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.85;
}

.about-copy .about-lead {
  margin-top: 0;
  color: #25313a;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.65;
}

.about-facts {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 58px 0 0;
  padding: 22px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.about-facts div {
  min-width: 0;
  padding: 0 24px;
  border-left: 1px solid var(--line);
}

.about-facts div:first-child {
  padding-left: 0;
  border-left: 0;
}

.about-facts div:last-child {
  padding-right: 0;
}

.about-facts dt {
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.about-facts dd {
  margin: 9px 0 0;
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.55;
  overflow-wrap: anywhere;
}

.brands-heading {
  display: grid;
  grid-template-columns: minmax(260px, 0.7fr) minmax(0, 1.3fr);
  gap: 56px;
  align-items: end;
  margin-top: 72px;
}

.brands-heading h3 {
  margin: 0;
  font-size: 30px;
  line-height: 1.25;
}

.brands-heading > p {
  max-width: 680px;
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
}

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

.brand-item {
  --brand-accent: var(--cyan-dark);
  position: relative;
  min-height: 212px;
  padding: 22px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #f8fafb;
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.brand-item::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 3px;
  background: var(--brand-accent);
  content: "";
}

.brand-item:hover {
  border-color: color-mix(in srgb, var(--brand-accent) 35%, var(--line));
  box-shadow: 0 10px 24px rgba(17, 24, 32, 0.07);
  transform: translateY(-2px);
}

.brand-logo-stage {
  display: flex;
  align-items: center;
  height: 52px;
  margin-bottom: 18px;
}

.partner-brand-logo {
  display: block;
  width: auto;
  max-width: min(100%, 176px);
  height: auto;
  max-height: 48px;
  object-fit: contain;
  object-position: left center;
}

.brand-item[data-brand="amd"] .partner-brand-logo,
.brand-item[data-brand="supermicro"] .partner-brand-logo {
  max-height: 46px;
}

.brand-item-head span {
  display: block;
}

.brand-item-head span {
  color: var(--brand-accent);
  font-size: 11px;
  font-weight: 700;
  line-height: 1.4;
  text-transform: uppercase;
}

.brand-item p {
  margin: 15px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}

.brand-item[data-brand="amd"] { --brand-accent: #c9252c; }
.brand-item[data-brand="samsung"] { --brand-accent: #1428a0; }
.brand-item[data-brand="seagate"] { --brand-accent: #3b8d37; }
.brand-item[data-brand="supermicro"] { --brand-accent: #1768a5; }
.brand-item[data-brand="nvidia"] { --brand-accent: #4f7f16; }
.brand-item[data-brand="asus"] { --brand-accent: #245a91; }
.brand-item[data-brand="solidigm"] { --brand-accent: #557236; }
.brand-item[data-brand="broadcom"] { --brand-accent: #b3263b; }
.brand-item[data-brand="mellanox"] { --brand-accent: #267493; }
.brand-item[data-brand="intel"] { --brand-accent: #0068b5; }
.brand-item[data-brand="micron"] { --brand-accent: #3a4f9a; }
.brand-item[data-brand="skhynix"] { --brand-accent: #c83d29; }

.brand-note {
  margin: 18px 0 0;
  color: #7b8790;
  font-size: 11px;
  line-height: 1.6;
}

.products-band {
  padding: 78px 0 88px;
  background: var(--wash);
}

.section-heading {
  margin-bottom: 30px;
}

.section-heading h2 {
  margin: 0;
  font-size: 34px;
  line-height: 1.18;
}

.section-heading p:not(.eyebrow) {
  max-width: 690px;
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

.section-heading.compact {
  margin-bottom: 22px;
}

.product-browser {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr) 300px;
  gap: 18px;
  align-items: start;
}

.filter-panel,
.results-panel,
.detail-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: 0 10px 30px rgba(17, 24, 32, 0.05);
}

.filter-panel {
  position: sticky;
  top: 94px;
  padding: 16px;
}

.tabs {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 6px;
  padding: 4px;
  border-radius: 6px;
  background: var(--soft);
}

.tab {
  height: 38px;
  border: 0;
  border-radius: 4px;
  background: transparent;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.tab.is-active {
  background: var(--graphite);
  color: #fff;
}

.search-box {
  display: block;
  margin-top: 16px;
}

.search-box span,
.filter-title,
.sort-control span {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.search-box input,
.sort-control select {
  width: 100%;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
  color: var(--ink);
  outline: 0;
}

.search-box input {
  padding: 0 12px;
}

.search-box input:focus,
.sort-control select:focus {
  border-color: var(--cyan);
  box-shadow: 0 0 0 3px rgba(18, 184, 200, 0.16);
}

.filter-groups {
  margin-top: 18px;
}

.filter-group {
  padding: 16px 0;
  border-top: 1px solid var(--line);
}

.filter-group:first-child {
  border-top: 0;
  padding-top: 0;
}

.filter-options {
  display: grid;
  gap: 8px;
  max-height: 210px;
  overflow: auto;
  padding-right: 2px;
}

.filter-group[data-field="brand"] .filter-options,
.filter-group[data-field="capacityLabel"] .filter-options,
.filter-group[data-field="coreCount"] .filter-options {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 10px;
}

.check-row {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  align-items: center;
  gap: 8px;
  min-height: 26px;
  color: #2f3a43;
  font-size: 13px;
}

.check-row input {
  width: 16px;
  height: 16px;
  accent-color: var(--cyan-dark);
}

.check-row span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.clear-button {
  width: 100%;
  height: 40px;
  margin-top: 10px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: #fff;
  color: var(--graphite);
  font-weight: 700;
}

.clear-button:hover {
  border-color: var(--cyan);
  color: var(--cyan-dark);
}

.results-panel {
  min-height: 640px;
  overflow: hidden;
}

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

.result-count {
  font-size: 24px;
  font-weight: 700;
}

.result-caption {
  color: var(--muted);
  font-size: 13px;
}

.sort-control {
  width: 174px;
}

.sort-control select {
  padding: 0 10px;
}

.table-head,
.product-row {
  display: grid;
  grid-template-columns: minmax(135px, 1.15fr) 88px minmax(150px, 1.35fr) 78px;
  gap: 12px;
  align-items: center;
}

.table-head {
  padding: 12px 18px;
  background: #f1f5f8;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.product-list {
  max-height: 742px;
  overflow: auto;
}

.product-row {
  width: 100%;
  min-height: 92px;
  padding: 16px 18px;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: #fff;
  color: inherit;
  cursor: pointer;
  text-align: left;
}

.product-row:hover,
.product-row.is-selected {
  background: #f7fbfc;
}

.product-row.is-selected {
  box-shadow: inset 3px 0 0 var(--cyan);
}

.product-main strong,
.product-main small {
  display: block;
}

.product-main strong {
  font-size: 15px;
}

.product-main small,
.product-desc,
.usage-pill {
  color: var(--muted);
  font-size: 12px;
}

.product-main small {
  margin-top: 4px;
  overflow-wrap: anywhere;
}

.capacity {
  font-size: 15px;
  font-weight: 700;
}

.param-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.chip {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  max-width: 190px;
  padding: 0 8px;
  border: 1px solid #d5e4e8;
  border-radius: 4px;
  background: #eff7f8;
  color: #214048;
  font-size: 12px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.usage-pill {
  display: inline-flex;
  justify-content: center;
  min-width: 64px;
  padding: 6px 8px;
  border-radius: 4px;
  background: #f1f4f6;
}

.empty-state {
  padding: 80px 18px;
  color: var(--muted);
  text-align: center;
}

.detail-panel {
  position: sticky;
  top: 94px;
  min-height: 640px;
  overflow: hidden;
}

.detail-empty {
  min-height: 640px;
  display: grid;
  place-items: center;
  padding: 28px;
  color: var(--muted);
  text-align: center;
}

.detail-symbol {
  display: block;
  margin-bottom: 12px;
  color: var(--cyan-dark);
  font-size: 32px;
}

.detail-content {
  position: relative;
  max-height: calc(100vh - 112px);
  overflow-y: auto;
  padding: 24px;
}

.detail-empty.is-hidden,
.detail-content.is-hidden {
  display: none !important;
}

.detail-image-wrap {
  margin: 0 0 18px;
  padding: 14px;
  border: 1px solid #dfe8ed;
  border-radius: 8px;
  background: linear-gradient(180deg, #f8fbfc 0%, #eef5f7 100%);
}

.detail-image-wrap img {
  display: block;
  width: 100%;
  height: 154px;
  object-fit: contain;
}

.detail-image-wrap figcaption {
  margin-top: 10px;
  color: var(--muted);
  font-size: 11px;
  text-align: center;
}

.detail-image-wrap.is-hidden {
  display: none !important;
}

.icon-button {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 30px;
  height: 30px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #fff;
  color: var(--muted);
  font-size: 20px;
  line-height: 1;
}

.detail-content h3 {
  margin: 0;
  padding-right: 32px;
  font-size: 22px;
  line-height: 1.28;
}

.detail-desc {
  margin: 14px 0 20px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}

.spec-grid {
  display: grid;
  gap: 10px;
  margin: 0;
}

.spec-grid div {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 10px;
  padding: 10px 0;
  border-top: 1px solid var(--line);
}

.spec-grid dt {
  color: var(--muted);
  font-size: 12px;
}

.spec-grid dd {
  margin: 0;
  color: var(--ink);
  font-size: 13px;
  overflow-wrap: anywhere;
}

.detail-page-link {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-top: 20px;
  padding: 0 14px;
  border: 1px solid var(--graphite);
  border-radius: 6px;
  background: var(--graphite);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  text-align: center;
}

.detail-page-link:hover,
.detail-page-link:focus-visible {
  border-color: var(--cyan-dark);
  background: var(--cyan-dark);
}

.solutions-band {
  padding: 76px 0 88px;
  background: #fff;
}

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

.category-card {
  min-height: 164px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.category-card.is-ready {
  border-color: rgba(18, 184, 200, 0.45);
  background: #f3fbfc;
}

.category-card span {
  display: inline-flex;
  min-height: 24px;
  padding: 0 8px;
  align-items: center;
  border-radius: 4px;
  background: var(--graphite);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
}

.category-card strong {
  display: block;
  margin-top: 18px;
  font-size: 18px;
}

.category-card p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}

.supplier-band {
  padding: 82px 0;
  border-top: 1px solid #dce7e3;
  border-bottom: 1px solid #dce7e3;
  background: #edf4f2;
}

.supplier-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(380px, 1.05fr);
  gap: 72px;
  align-items: start;
}

.supplier-intro h2 {
  max-width: 560px;
  margin: 0;
  font-size: 34px;
  line-height: 1.2;
}

.supplier-intro > p:not(.eyebrow) {
  max-width: 590px;
  margin: 18px 0 0;
  color: #52625d;
  font-size: 15px;
  line-height: 1.8;
}

.supplier-intro .eyebrow {
  color: #2f745c;
}

.supplier-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 0;
  margin: 26px 0 0;
  padding: 0;
  color: #26342f;
  list-style: none;
}

.supplier-categories li {
  padding: 0 12px;
  border-right: 1px solid #b9cbc4;
  font-size: 12px;
  font-weight: 700;
}

.supplier-categories li:first-child {
  padding-left: 0;
}

.supplier-categories li:last-child {
  border-right: 0;
}

.supplier-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 34px;
}

.supplier-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 4px;
  background: var(--graphite);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
}

.supplier-action:hover,
.supplier-action:focus-visible {
  background: #265f4b;
  color: #fff;
}

.supplier-email {
  margin: 0;
}

.supplier-email span,
.supplier-email a {
  display: block;
}

.supplier-email span {
  color: #687872;
  font-size: 11px;
}

.supplier-email a {
  margin-top: 4px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
}

.supplier-requirements {
  border-top: 2px solid #2f745c;
}

.supplier-requirements h3 {
  margin: 0;
  padding: 18px 0;
  color: #26342f;
  font-size: 13px;
}

.supplier-requirements ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

.supplier-requirements li {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 14px;
  padding: 18px 0;
  border-top: 1px solid #cfded8;
}

.supplier-requirements li > span {
  color: #6c8179;
  font-size: 11px;
  font-weight: 700;
}

.supplier-requirements strong,
.supplier-requirements small {
  display: block;
}

.supplier-requirements strong {
  color: var(--ink);
  font-size: 14px;
}

.supplier-requirements small {
  margin-top: 6px;
  color: #66756f;
  font-size: 12px;
  line-height: 1.55;
}

.contact-band {
  padding: 76px 0;
  background: var(--graphite);
  color: #fff;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(380px, 430px);
  gap: 54px;
  align-items: center;
}

.contact-layout h2 {
  margin: 0;
  font-size: 32px;
}

.contact-layout p:not(.eyebrow) {
  max-width: 620px;
  color: #c6d0d8;
  line-height: 1.8;
}

.contact-card {
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
}

.contact-brand {
  display: grid;
  grid-template-columns: 104px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
}

.contact-logo-tile {
  width: 104px;
  height: 66px;
  display: grid;
  place-items: center;
  padding: 7px;
  border-radius: 6px;
  background: #fff;
}

.contact-logo-tile img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.contact-brand strong,
.contact-brand small {
  display: block;
}

.contact-brand strong {
  font-size: 15px;
  line-height: 1.45;
}

.contact-brand small {
  margin-top: 5px;
  color: #aebbc4;
  font-size: 10px;
  line-height: 1.45;
}

.contact-list {
  margin-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.contact-item {
  display: grid;
  grid-template-columns: 82px minmax(0, 1fr);
  gap: 14px;
  align-items: baseline;
  padding: 13px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-item > span {
  color: #91a1ac;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.contact-item strong,
.contact-item address {
  margin: 0;
  color: #e5f9fb;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.55;
  overflow-wrap: anywhere;
}

a.contact-item:hover strong {
  color: var(--cyan);
}

.contact-address {
  align-items: start;
  border-bottom: 0;
}

.contact-address address {
  color: #c6d0d8;
  font-size: 12px;
}

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

@media (max-width: 1120px) {
  .product-browser {
    grid-template-columns: 240px minmax(0, 1fr);
  }

  .detail-panel {
    grid-column: 1 / -1;
    position: static;
    min-height: 0;
  }

  .detail-content {
    max-height: none;
    overflow: visible;
  }

  .detail-empty {
    min-height: 170px;
  }

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

  .about-intro {
    gap: 60px;
  }

  .about-identity::after {
    right: -30px;
  }

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

@media (max-width: 820px) {
  body.detail-open {
    overflow: hidden;
  }

  .site-header {
    height: auto;
    min-height: 70px;
    flex-wrap: wrap;
    gap: 12px;
    padding: 12px 18px;
  }

  .brand-lockup {
    flex: 1 1 auto;
    min-width: 0;
  }

  .nav-links {
    order: 3;
    width: 100%;
    justify-content: flex-start;
    gap: 18px;
    overflow: visible;
    font-size: 13px;
  }

  .nav-product-menu {
    align-self: auto;
  }

  .nav-product-dropdown {
    top: calc(100% + 6px);
    left: 0;
    transform: translateY(-6px);
  }

  .nav-product-menu:hover .nav-product-dropdown,
  .nav-product-menu:focus-within .nav-product-dropdown {
    transform: translateY(0);
  }

  .about-band,
  .products-band {
    scroll-margin-top: 148px;
  }

  .supplier-band {
    scroll-margin-top: 148px;
  }

  .shell {
    width: min(100% - 28px, 1180px);
  }

  .hero {
    min-height: 540px;
  }

  .hero-image {
    object-position: 64% center;
  }

  .hero-scrim {
    background:
      linear-gradient(90deg, rgba(9, 14, 19, 0.96), rgba(9, 14, 19, 0.62)),
      linear-gradient(0deg, rgba(9, 14, 19, 0.68), rgba(9, 14, 19, 0.08));
  }

  .hero-content {
    padding: 58px 0 62px;
  }

  .hero h1 {
    font-size: 34px;
  }

  .hero-copy {
    font-size: 15px;
  }

  .overview-grid,
  .category-grid,
  .supplier-layout,
  .contact-layout,
  .product-browser,
  .about-intro,
  .brands-heading {
    grid-template-columns: 1fr;
  }

  .about-intro,
  .brands-heading {
    gap: 30px;
  }

  .about-identity {
    padding-right: 0;
  }

  .about-identity::after {
    display: none;
  }

  .about-copy {
    padding-top: 0;
  }

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

  .about-facts {
    padding: 0;
  }

  .about-facts div,
  .about-facts div:first-child,
  .about-facts div:last-child {
    padding: 20px;
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .about-facts div:nth-child(odd) {
    padding-left: 0;
    border-right: 1px solid var(--line);
  }

  .about-facts div:nth-child(even) {
    padding-right: 0;
  }

  .about-facts div:nth-child(-n + 2) {
    border-top: 0;
  }

  .brands-heading {
    align-items: start;
    margin-top: 56px;
  }

  .supplier-layout {
    gap: 42px;
  }

  .filter-panel {
    position: static;
  }

  .results-toolbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .sort-control {
    width: 100%;
  }

  .table-head {
    display: none;
  }

  .product-row {
    grid-template-columns: 1fr;
    gap: 10px;
    min-height: 0;
  }

  .product-list {
    max-height: none;
  }

  .detail-panel,
  .detail-empty {
    min-height: 0;
  }

  .detail-panel {
    position: fixed;
    inset: 0;
    z-index: 100;
    border: 0;
    border-radius: 0;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transform: translateX(100%);
    transition: transform 180ms ease, opacity 180ms ease, visibility 180ms ease;
  }

  .detail-panel.is-mobile-open {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    transform: translateX(0);
  }

  .detail-panel .detail-empty {
    display: none;
  }

  .detail-panel .detail-content {
    width: min(100%, 560px);
    height: 100dvh;
    max-height: 100dvh;
    margin: 0 auto;
    padding: 54px 22px 34px;
    overflow-y: auto;
  }

  .detail-panel .icon-button {
    position: fixed;
    top: 14px;
    right: 14px;
    z-index: 1;
  }

  .solutions-band,
  .about-band,
  .products-band,
  .supplier-band,
  .contact-band {
    padding: 58px 0;
  }
}

@media (max-width: 460px) {
  .nav-links {
    justify-content: space-between;
    gap: 12px;
  }

  .nav-links > a,
  .nav-product-trigger {
    white-space: nowrap;
  }

  .brand-logo {
    width: 78px;
    height: 46px;
  }

  .brand-wording strong {
    font-size: 12px;
  }

  .brand-wording small {
    display: none;
  }

  .language-switch {
    grid-template-columns: repeat(2, 30px);
  }

  .lang-button {
    width: 30px;
  }

  .contact-card {
    padding: 20px;
  }

  .supplier-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .supplier-action {
    width: 100%;
  }

  .contact-brand {
    grid-template-columns: 88px minmax(0, 1fr);
    gap: 12px;
  }

  .contact-logo-tile {
    width: 88px;
    height: 58px;
  }

  .contact-item {
    grid-template-columns: 88px minmax(0, 1fr);
    gap: 8px;
  }

  .hero h1,
  .about-identity h2,
  .section-heading h2,
  .contact-layout h2 {
    font-size: 28px;
  }

  .hero-actions {
    display: grid;
  }

  .primary-action,
  .secondary-action {
    width: 100%;
  }

  .metric-card {
    min-height: 102px;
  }

  .about-logo {
    width: 144px;
    height: 68px;
  }

  .about-copy .about-lead {
    font-size: 18px;
  }

  .about-facts,
  .brand-grid {
    grid-template-columns: 1fr;
  }

  .about-facts div,
  .about-facts div:first-child,
  .about-facts div:last-child,
  .about-facts div:nth-child(odd),
  .about-facts div:nth-child(even) {
    padding: 18px 0;
    border-top: 1px solid var(--line);
    border-right: 0;
  }

  .about-facts div:first-child {
    border-top: 0;
  }

  .brand-item {
    min-height: 0;
  }
}

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

  .nav-links {
    gap: 12px;
    font-size: 13px;
  }

  .nav-links > a,
  .nav-product-trigger {
    white-space: nowrap;
  }
}
