@font-face {
  font-family: "Onest";
  src: url("assets/fonts/onest-400.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Onest";
  src: url("assets/fonts/onest-500.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Onest";
  src: url("assets/fonts/onest-600.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Onest";
  src: url("assets/fonts/onest-700.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Onest";
  src: url("assets/fonts/onest-800.ttf") format("truetype");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

:root {
  color-scheme: dark;
  --surface: #0b0c0e;
  --surface-raised: #141518;
  --surface-muted: #1b1d21;
  --surface-soft: #24262b;
  --text: #f3f1ed;
  --text-muted: #aaa9a6;
  --line: rgba(243, 241, 237, 0.14);
  --line-strong: rgba(243, 241, 237, 0.26);
  --accent: #f47a1f;
  --accent-ink: #19100a;
  --accent-soft: rgba(244, 122, 31, 0.14);
  --shadow: 0 28px 80px rgba(3, 4, 6, 0.36);
  --card-radius: 20px;
  --control-radius: 10px;
  --button-radius: 8px;
  --header-height: 72px;
  --page-width: 1440px;
}

html[data-theme="light"] {
  color-scheme: light;
  --surface: #f2f1ee;
  --surface-raised: #faf9f6;
  --surface-muted: #e8e6e1;
  --surface-soft: #dedbd4;
  --text: #151619;
  --text-muted: #5f6063;
  --line: rgba(21, 22, 25, 0.13);
  --line-strong: rgba(21, 22, 25, 0.24);
  --accent: #df6814;
  --accent-ink: #170d06;
  --accent-soft: rgba(223, 104, 20, 0.12);
  --shadow: 0 28px 80px rgba(66, 56, 47, 0.14);
}

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

html {
  scroll-behavior: smooth;
  background: var(--surface);
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--surface);
  color: var(--text);
  font-family: "Onest", "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
  transition: background-color 240ms ease, color 240ms ease;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: 20;
  content: "";
  pointer-events: none;
  opacity: 0.055;
  background-image:
    radial-gradient(circle at 18% 12%, var(--text) 0 0.6px, transparent 0.8px),
    radial-gradient(circle at 72% 61%, var(--text) 0 0.55px, transparent 0.75px);
  background-size: 7px 7px, 11px 11px;
}

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

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

button,
input,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button:focus-visible,
a:focus-visible,
input:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 10px 14px;
  border-radius: var(--button-radius);
  background: var(--accent);
  color: var(--accent-ink);
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  height: var(--header-height);
  border-bottom: 1px solid var(--line);
  background: color-mix(in srgb, var(--surface) 86%, transparent);
  backdrop-filter: blur(18px) saturate(135%);
  -webkit-backdrop-filter: blur(18px) saturate(135%);
}

.nav-shell {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 36px;
  width: min(calc(100% - 64px), var(--page-width));
  height: 100%;
  margin-inline: auto;
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 214px;
}

.brand-logo {
  width: 214px;
  height: auto;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  width: max-content;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 2.4vw, 38px);
  white-space: nowrap;
}

.nav-catalog {
  display: flex;
  align-items: center;
  height: var(--header-height);
}

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

.catalog-nav-trigger::after {
  width: 7px;
  height: 7px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  content: "";
  transform: translateY(-2px) rotate(45deg);
  transition: transform 180ms ease;
}

.catalog-mega {
  position: absolute;
  top: 100%;
  right: 0;
  left: 0;
  visibility: hidden;
  padding-block: 22px 28px;
  border-bottom: 1px solid var(--line);
  background: color-mix(in srgb, var(--surface) 96%, transparent);
  box-shadow: 0 34px 80px rgba(3, 4, 6, 0.34);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition: opacity 160ms ease, transform 180ms ease, visibility 180ms ease;
  backdrop-filter: blur(18px) saturate(135%);
  -webkit-backdrop-filter: blur(18px) saturate(135%);
}

.nav-catalog:hover .catalog-mega,
.nav-catalog:focus-within .catalog-mega {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.nav-catalog:hover .catalog-nav-trigger::after,
.nav-catalog:focus-within .catalog-nav-trigger::after {
  transform: translateY(2px) rotate(225deg);
}

.catalog-mega-shell {
  display: grid;
  gap: 20px;
}

.catalog-mega-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}

.catalog-mega-head > div {
  display: grid;
  gap: 3px;
}

.catalog-mega-head strong {
  font-size: 18px;
}

.catalog-mega-head span,
.catalog-mega-head > a {
  color: var(--text-muted);
  font-size: 12px;
}

.catalog-mega-head > a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 5px;
}

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

.catalog-mega-link {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  min-height: 72px;
  padding: 10px;
  border-radius: var(--control-radius);
  transition: background-color 160ms ease, transform 160ms ease;
}

.catalog-mega-link:hover {
  background: var(--surface-muted);
  transform: translateY(-1px);
}

.catalog-mega-icon,
.category-overview-icon {
  display: grid;
  place-items: center;
  border: 1px solid color-mix(in srgb, var(--accent) 42%, var(--line));
  background: var(--accent-soft);
}

.catalog-mega-icon {
  width: 42px;
  height: 42px;
  border-radius: 9px;
}

.catalog-mega-copy,
.category-overview-copy {
  display: grid;
  gap: 3px;
  min-width: 0;
}

.catalog-mega-copy strong {
  color: var(--text);
  font-size: 13px;
  line-height: 1.25;
  white-space: normal;
}

.catalog-mega-copy small {
  color: var(--text-muted);
  font-size: 10px;
  white-space: normal;
}

.main-nav a,
.text-button,
.text-link {
  color: var(--text-muted);
  font-size: 14px;
  font-weight: 600;
  transition: color 180ms ease;
}

.main-nav a:hover,
.text-button:hover,
.text-link:hover {
  color: var(--text);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.text-button,
.text-link {
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--text);
  text-decoration-line: underline;
  text-decoration-color: var(--line-strong);
  text-underline-offset: 5px;
}

.text-link span {
  color: var(--accent);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: var(--button-radius);
  background: var(--accent);
  color: var(--accent-ink);
  font-weight: 750;
  white-space: nowrap;
  box-shadow: 0 14px 34px rgba(244, 122, 31, 0.18);
  transition: transform 180ms ease, background-color 180ms ease, box-shadow 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
  background: color-mix(in srgb, var(--accent) 88%, #f3f1ed);
  box-shadow: 0 18px 42px rgba(244, 122, 31, 0.24);
}

.button:active {
  transform: translateY(1px) scale(0.98);
}

.button-small {
  min-height: 40px;
  padding-inline: 16px;
  font-size: 13px;
}

.menu-toggle {
  display: none;
}

.hero {
  position: relative;
  min-height: calc(100dvh - var(--header-height));
  overflow: hidden;
  background: #0b0c0e;
  color: #f3f1ed;
}

.hero-media,
.hero-scrim {
  position: absolute;
  inset: 0;
}

.hero-media {
  background-image: url("assets/images/hero-network-rack.webp");
  background-position: center;
  background-size: cover;
}

.hero-scrim {
  background:
    linear-gradient(90deg, rgba(11, 12, 14, 0.98) 0%, rgba(11, 12, 14, 0.93) 34%, rgba(11, 12, 14, 0.28) 62%, rgba(11, 12, 14, 0.04) 100%),
    linear-gradient(0deg, rgba(11, 12, 14, 0.5), transparent 46%);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 1.08fr);
  align-items: center;
  min-height: calc(100dvh - var(--header-height));
  padding-block: 64px 72px;
}

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

.eyebrow {
  margin: 0 0 20px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 12ch;
  margin: 0;
  font-size: clamp(48px, 6.4vw, 98px);
  line-height: 0.95;
  letter-spacing: -0.055em;
  text-wrap: balance;
}

.hero-lead {
  max-width: 560px;
  margin: 30px 0 0;
  color: rgba(243, 241, 237, 0.76);
  font-size: clamp(18px, 1.45vw, 22px);
  line-height: 1.45;
  text-wrap: pretty;
}

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

.hero .text-link,
.hero .text-link:hover {
  color: #f3f1ed;
}

.section {
  padding-block: clamp(92px, 10vw, 160px);
}

.section-heading,
.catalog-heading {
  display: grid;
  gap: 20px;
  max-width: 820px;
  margin-bottom: 52px;
}

.section h2 {
  margin: 0;
  font-size: clamp(40px, 5.1vw, 72px);
  line-height: 1;
  letter-spacing: -0.052em;
  text-wrap: balance;
}

.section-heading p,
.catalog-heading p,
.documents-title > p:last-child,
.platform-copy > p {
  max-width: 64ch;
  margin: 0;
  color: var(--text-muted);
  font-size: 18px;
  line-height: 1.62;
}

.solution-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr 1fr;
  grid-auto-rows: minmax(300px, auto);
  gap: 18px;
}

.solution-card {
  position: relative;
  min-height: 330px;
  overflow: hidden;
  border-radius: var(--card-radius);
  background: var(--surface-raised);
  box-shadow: var(--shadow);
  isolation: isolate;
  transition: transform 240ms cubic-bezier(0.16, 1, 0.3, 1), box-shadow 240ms ease;
}

.solution-card-wide {
  grid-column: span 2;
}

.solution-card:nth-child(4) {
  min-height: 380px;
}

.solution-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms cubic-bezier(0.16, 1, 0.3, 1);
}

.solution-card::after {
  position: absolute;
  inset: 0;
  z-index: 0;
  content: "";
  background: linear-gradient(180deg, transparent 32%, rgba(7, 8, 10, 0.9) 100%);
}

.solution-card-copy {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  padding: 28px;
  color: #f3f1ed;
}

.solution-card h3 {
  margin: 0;
  font-size: clamp(23px, 2.25vw, 34px);
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.solution-card p {
  max-width: 46ch;
  margin: 12px 0 0;
  color: rgba(243, 241, 237, 0.75);
  font-size: 14px;
}

.solution-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 36px 90px rgba(3, 4, 6, 0.46);
}

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

.solution-card:active {
  transform: translateY(1px) scale(0.99);
}

.catalog-section {
  border-block: 1px solid var(--line);
  background: var(--surface-raised);
}

.category-overview {
  scroll-margin-top: calc(var(--header-height) + 24px);
  margin-bottom: clamp(84px, 9vw, 132px);
}

.category-overview-heading {
  display: grid;
  gap: 18px;
  max-width: 760px;
  margin-bottom: 34px;
}

.category-overview-heading h2 {
  margin: 0;
}

.category-overview-heading p {
  max-width: 60ch;
  margin: 0;
  color: var(--text-muted);
  font-size: 17px;
}

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

.category-overview-card {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  align-items: center;
  gap: 16px;
  min-height: 118px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--surface);
  transition: border-color 180ms ease, background-color 180ms ease, transform 180ms ease;
}

.category-overview-card:first-child {
  grid-column: span 2;
}

.category-overview-card:hover {
  border-color: color-mix(in srgb, var(--accent) 56%, var(--line));
  background: color-mix(in srgb, var(--surface) 88%, var(--accent-soft));
  transform: translateY(-3px);
}

.category-overview-card:active {
  transform: translateY(1px) scale(0.99);
}

.category-overview-icon {
  width: 58px;
  height: 58px;
  border-radius: 12px;
}

.category-overview-icon img {
  width: 34px;
  height: 34px;
}

.category-overview-copy strong {
  font-size: 16px;
  line-height: 1.22;
}

.category-overview-copy small {
  color: var(--text-muted);
  font-size: 11px;
}

#catalog-list {
  scroll-margin-top: calc(var(--header-height) + 24px);
}

.catalog-controls {
  display: grid;
  grid-template-columns: 1fr;
  align-items: start;
  gap: 20px 28px;
  margin-bottom: 32px;
}

.search-field {
  display: grid;
  gap: 9px;
  color: var(--text-muted);
  font-size: 13px;
  font-weight: 600;
}

.search-field input {
  width: 100%;
  min-height: 56px;
  padding-inline: 18px;
  border: 1px solid var(--line-strong);
  border-radius: var(--control-radius);
  background: var(--surface);
  color: var(--text);
  caret-color: var(--accent);
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.search-field input::placeholder {
  color: color-mix(in srgb, var(--text-muted) 86%, transparent);
}

.search-field input:hover {
  border-color: color-mix(in srgb, var(--accent) 58%, var(--line-strong));
}

.search-field input:focus-visible {
  border-color: var(--accent);
  box-shadow: 0 0 0 4px var(--accent-soft);
  outline: 0;
}

.filter-group {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 8px;
}

.filter-button {
  min-height: 42px;
  padding: 0 15px;
  border: 1px solid var(--line);
  border-radius: var(--button-radius);
  background: var(--surface);
  color: var(--text-muted);
  font-size: 13px;
  font-weight: 650;
  cursor: pointer;
  transition: color 180ms ease, border-color 180ms ease, background-color 180ms ease, transform 180ms ease;
}

.filter-button:hover {
  border-color: var(--line-strong);
  color: var(--text);
}

.filter-button.is-active {
  border-color: var(--accent);
  background: var(--accent-soft);
  color: var(--text);
}

.filter-button:active {
  transform: scale(0.97);
}

.result-count {
  margin: 0;
  color: var(--text-muted);
  font-size: 13px;
  font-variant-numeric: tabular-nums;
}

.catalog-workspace {
  display: grid;
  grid-template-columns: minmax(230px, 280px) minmax(0, 1fr);
  gap: 22px;
  align-items: start;
}

.catalog-sidebar {
  position: sticky;
  top: calc(var(--header-height) + 18px);
  max-height: calc(100dvh - var(--header-height) - 36px);
  overflow: auto;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--surface);
  scrollbar-width: thin;
}

.catalog-sidebar-head {
  position: sticky;
  top: 0;
  z-index: 1;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  padding: 18px;
  border-bottom: 1px solid var(--line);
  background: color-mix(in srgb, var(--surface) 94%, transparent);
  backdrop-filter: blur(12px);
}

.catalog-sidebar-head > div {
  min-width: 0;
}

.catalog-sidebar-head span {
  color: var(--text-muted);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.catalog-sidebar .catalog-sidebar-head h2 {
  margin: 4px 0 0;
  font-size: 16px;
  line-height: 1.25;
  letter-spacing: normal;
  overflow-wrap: anywhere;
}

.catalog-clear-category {
  padding: 4px 0;
  border: 0;
  background: transparent;
  color: var(--accent);
  font-size: 11px;
  font-weight: 650;
  cursor: pointer;
}

.category-tree > p {
  margin: 0;
  padding: 18px;
  color: var(--text-muted);
  font-size: 12px;
}

.category-group {
  border-bottom: 1px solid var(--line);
}

.category-group:last-child {
  border-bottom: 0;
}

.category-group summary {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  color: var(--text);
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  list-style: none;
}

.category-group summary::-webkit-details-marker {
  display: none;
}

.category-group summary::before {
  grid-column: 1 / -1;
  width: 18px;
  height: 2px;
  content: "";
  background: var(--accent);
  transform: scaleX(0.45);
  transform-origin: left;
  transition: transform 180ms ease;
}

.category-group[open] summary::before {
  transform: scaleX(1);
}

.category-group summary small,
.category-leaf small {
  color: var(--text-muted);
  font-size: 10px;
  font-variant-numeric: tabular-nums;
  font-weight: 500;
}

.category-leaves {
  display: grid;
  padding: 0 8px 10px;
}

.category-leaf {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: start;
  gap: 10px;
  padding: 9px 10px;
  border: 0;
  border-radius: 7px;
  background: transparent;
  color: var(--text-muted);
  font-size: 11px;
  line-height: 1.35;
  text-align: left;
  cursor: pointer;
}

.category-leaf:hover,
.category-leaf.is-active {
  background: var(--accent-soft);
  color: var(--text);
}

.catalog-results {
  min-width: 0;
  scroll-margin-top: calc(var(--header-height) + 18px);
}

.catalog-toolbar {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  min-height: 56px;
  margin-bottom: 16px;
  padding: 0 2px 14px;
  border-bottom: 1px solid var(--line);
}

.catalog-sorters {
  display: flex;
  align-items: flex-end;
  gap: 10px;
}

.catalog-sorters label {
  display: grid;
  gap: 5px;
  color: var(--text-muted);
  font-size: 10px;
  font-weight: 600;
}

.catalog-sorters select {
  min-height: 38px;
  padding: 0 30px 0 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  color: var(--text);
  font-size: 11px;
}

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

.product-card {
  display: grid;
  grid-template-rows: 188px 1fr;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--surface);
  transition: transform 240ms cubic-bezier(0.16, 1, 0.3, 1), border-color 180ms ease, box-shadow 240ms ease;
}

.product-card:first-child {
  grid-column: auto;
  grid-template-columns: 1fr;
  grid-template-rows: 188px 1fr;
}

.product-card-media {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  padding: 18px;
  border: 0;
  background: #f0f0ee;
  cursor: pointer;
}

.product-card-media img {
  width: min(100%, 230px);
  height: min(100%, 160px);
  object-fit: contain;
  transition: transform 480ms cubic-bezier(0.16, 1, 0.3, 1);
}

.product-card-body {
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: 18px;
}

.product-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.product-brand {
  color: var(--accent);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.availability {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--text-muted);
  font-size: 10px;
  font-weight: 600;
  white-space: nowrap;
}

.availability::before {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  content: "";
  background: #777;
}

.availability-available::before {
  background: #43a66b;
}

.availability-order::before,
.availability-new::before,
.availability-special::before {
  background: var(--accent);
}

.product-meta {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.product-category,
.product-sku {
  margin: 0;
  color: var(--text-muted);
  font-size: 12px;
}

.product-sku {
  margin-top: 6px;
  font-variant-numeric: tabular-nums;
  overflow-wrap: anywhere;
}

.status-flag {
  display: inline-flex;
  padding: 5px 8px;
  border: 1px solid var(--accent);
  border-radius: 4px;
  color: var(--accent);
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  white-space: nowrap;
}

.product-card h3 {
  min-height: 4.8em;
  margin: 14px 0 0;
  overflow: hidden;
  font-size: 16px;
  line-height: 1.2;
  letter-spacing: -0.022em;
  text-wrap: pretty;
}

.product-title-button {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  text-align: left;
  cursor: pointer;
}

.product-title-button:hover {
  color: var(--accent);
}

.product-specs {
  display: grid;
  gap: 6px;
  margin: 16px 0 0;
}

.product-specs > div {
  display: grid;
  grid-template-columns: minmax(82px, auto) minmax(0, 1fr);
  gap: 8px;
  font-size: 10px;
  line-height: 1.35;
}

.product-specs dt {
  color: var(--text-muted);
}

.product-specs dd {
  margin: 0;
  overflow-wrap: anywhere;
}

.product-description {
  margin: 14px 0 0;
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.55;
}

.product-price {
  display: grid;
  gap: 2px;
  margin-top: auto;
  padding-top: 20px;
}

.product-price strong {
  font-size: 20px;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.025em;
}

.product-price span {
  color: var(--text-muted);
  font-size: 11px;
}

.product-link {
  justify-self: start;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--text);
  font-size: 10px;
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: var(--line-strong);
  text-underline-offset: 5px;
  white-space: nowrap;
  cursor: pointer;
}

.product-actions {
  display: grid;
  justify-items: stretch;
  gap: 10px;
  margin-top: 14px;
}

.product-request {
  width: 100%;
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid var(--accent);
  border-radius: var(--button-radius);
  background: var(--accent-soft);
  color: var(--text);
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  transition: background-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.product-request:hover {
  background: var(--accent);
  color: var(--accent-ink);
}

.product-request:active {
  transform: translateY(1px) scale(0.98);
}

.button[data-store-action="cart"].is-active,
.product-request.is-active {
  border-color: var(--accent);
  background: var(--surface-raised);
  color: var(--accent);
  box-shadow: none;
}

.button[data-store-action="cart"].is-active:hover,
.product-request.is-active:hover {
  background: var(--accent-soft);
  color: var(--text);
}

.product-card:hover {
  border-color: color-mix(in srgb, var(--accent) 48%, var(--line));
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

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

.product-card:active {
  transform: translateY(1px) scale(0.995);
}

.product-dialog {
  width: min(1180px, calc(100% - 40px));
  max-height: calc(100dvh - 40px);
  padding: 0;
  overflow: auto;
  border: 1px solid var(--line-strong);
  border-radius: var(--card-radius);
  background: var(--surface-raised);
  color: var(--text);
  box-shadow: 0 34px 120px rgba(3, 4, 6, 0.64);
}

.product-dialog::backdrop {
  background: rgba(4, 5, 7, 0.78);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.product-dialog-shell {
  position: relative;
  padding: clamp(22px, 4vw, 48px);
}

.product-dialog-close {
  position: sticky;
  top: 16px;
  z-index: 2;
  display: block;
  min-height: 38px;
  margin: 0 0 16px auto;
  padding: 0 14px;
  border: 1px solid var(--line-strong);
  border-radius: var(--button-radius);
  background: var(--surface);
  color: var(--text);
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
}

.product-dialog-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
}

.product-dialog-gallery {
  display: grid;
  gap: 12px;
}

.product-dialog-gallery > img {
  width: 100%;
  height: min(52vw, 520px);
  padding: clamp(24px, 5vw, 64px);
  border-radius: 14px;
  background: #f0f0ee;
  object-fit: contain;
}

.product-dialog-thumbs {
  display: flex;
  gap: 8px;
  overflow-x: auto;
}

.product-dialog-thumb {
  flex: 0 0 72px;
  width: 72px;
  height: 58px;
  padding: 5px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f0f0ee;
  cursor: pointer;
}

.product-dialog-thumb.is-active {
  border-color: var(--accent);
}

.product-dialog-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.product-dialog-summary {
  display: grid;
  align-content: center;
  gap: 14px;
}

.product-dialog-brand {
  margin: 0;
  color: var(--accent);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.product-dialog-summary h2 {
  margin: 0;
  font-size: clamp(28px, 3.4vw, 48px);
  line-height: 1.06;
  letter-spacing: -0.04em;
}

.product-dialog-sku,
.product-dialog-availability {
  margin: 0;
  color: var(--text-muted);
  font-size: 13px;
}

.product-dialog-price {
  margin-top: 10px;
  font-size: 26px;
  font-weight: 750;
  font-variant-numeric: tabular-nums;
}

.product-dialog-request {
  justify-self: start;
  margin-top: 8px;
}

.product-dialog-content {
  display: grid;
  gap: 48px;
  margin-top: clamp(48px, 7vw, 84px);
}

.product-dialog-content section {
  display: grid;
  gap: 18px;
}

.product-dialog-content h3 {
  margin: 0;
  font-size: 24px;
}

#product-dialog-description {
  max-width: 80ch;
  color: var(--text-muted);
  line-height: 1.7;
}

.product-dialog-specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin: 0;
}

.product-dialog-specs > div {
  display: grid;
  gap: 5px;
  min-height: 92px;
  padding: 16px;
  border-radius: var(--control-radius);
  background: var(--surface);
}

.product-dialog-specs dt {
  color: var(--text-muted);
  font-size: 11px;
}

.product-dialog-specs dd {
  margin: 0;
  font-size: 14px;
  font-weight: 650;
}

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

.product-material {
  display: grid;
  gap: 5px;
  min-height: 94px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--control-radius);
  background: var(--surface);
  transition: border-color 180ms ease, transform 180ms ease;
}

.product-material:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
}

.product-material strong {
  font-size: 14px;
}

.product-material span {
  color: var(--text-muted);
  font-size: 11px;
}

.product-skeleton {
  min-height: 540px;
  border-radius: 14px;
  background:
    linear-gradient(100deg, transparent 0%, rgba(243, 241, 237, 0.08) 46%, transparent 62%),
    var(--surface-muted);
  background-size: 220% 100%, 100% 100%;
}

.empty-state,
.error-state {
  padding: 72px 24px;
  border: 1px dashed var(--line-strong);
  border-radius: var(--card-radius);
  text-align: center;
}

.empty-state h3,
.error-state h3 {
  margin: 0;
  font-size: 28px;
}

.empty-state p,
.error-state p {
  margin: 10px 0 22px;
  color: var(--text-muted);
}

.catalog-pagination {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 7px;
  margin-top: 28px;
}

.catalog-pagination button {
  min-width: 38px;
  min-height: 38px;
  padding: 0 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  color: var(--text-muted);
  font-size: 11px;
  font-weight: 650;
  cursor: pointer;
}

.catalog-pagination button:hover:not(:disabled),
.catalog-pagination button.is-active {
  border-color: var(--accent);
  background: var(--accent-soft);
  color: var(--text);
}

.catalog-pagination button:disabled {
  cursor: not-allowed;
  opacity: 0.42;
}

.pagination-ellipsis {
  padding-inline: 4px;
  color: var(--text-muted);
}

.platform {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(440px, 1.18fr);
  align-items: center;
  gap: clamp(52px, 8vw, 120px);
}

.platform-copy h2 {
  max-width: 12ch;
}

.platform-copy > p {
  margin-top: 26px;
}

.benefit-list {
  display: grid;
  gap: 0;
  margin: 42px 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.benefit-list li {
  display: grid;
  grid-template-columns: minmax(140px, 0.65fr) 1fr;
  gap: 22px;
  padding-block: 22px;
  border-bottom: 1px solid var(--line);
}

.benefit-list strong {
  font-size: 14px;
}

.benefit-list span {
  color: var(--text-muted);
  font-size: 14px;
}

.platform-visual {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  border-radius: var(--card-radius);
  background: #0b0c0e;
  box-shadow: var(--shadow);
}

.platform-visual > img {
  width: 100%;
  height: 100%;
  min-height: 620px;
  object-fit: cover;
  object-position: 62% center;
}

.visual-note {
  position: absolute;
  right: 22px;
  bottom: 22px;
  display: grid;
  gap: 4px;
  width: min(290px, calc(100% - 44px));
  padding: 20px;
  border: 1px solid rgba(243, 241, 237, 0.18);
  border-radius: 14px;
  background: rgba(15, 16, 18, 0.8);
  color: #f3f1ed;
  box-shadow: inset 0 1px 0 rgba(243, 241, 237, 0.1);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.visual-note strong {
  color: var(--accent);
  font-size: 34px;
  letter-spacing: -0.04em;
}

.visual-note span {
  color: rgba(243, 241, 237, 0.72);
  font-size: 13px;
}

.request-section {
  border-top: 1px solid var(--line);
  background: var(--surface-raised);
}

.request-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(520px, 1.28fr);
  gap: clamp(56px, 8vw, 130px);
  align-items: start;
}

.request-intro {
  position: sticky;
  top: calc(var(--header-height) + 40px);
}

.request-intro h2 {
  max-width: 11ch;
}

.request-intro > p:not(.eyebrow) {
  max-width: 58ch;
  margin: 26px 0 0;
  color: var(--text-muted);
  font-size: 17px;
  line-height: 1.65;
}

.request-contacts {
  display: grid;
  gap: 0;
  margin-top: 42px;
  border-top: 1px solid var(--line);
}

.request-contacts a {
  display: grid;
  gap: 5px;
  padding-block: 18px;
  border-bottom: 1px solid var(--line);
}

.request-contacts span {
  color: var(--text-muted);
  font-size: 12px;
}

.request-contacts strong {
  font-size: 17px;
  font-weight: 650;
}

.request-contacts a:hover strong {
  color: var(--accent);
}

.project-request-form {
  display: grid;
  gap: 24px;
  padding: clamp(26px, 4vw, 46px);
  border: 1px solid var(--line);
  border-radius: var(--card-radius);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.project-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.project-request-form > label,
.project-form-grid label {
  display: grid;
  gap: 8px;
  color: var(--text-muted);
  font-size: 13px;
  font-weight: 600;
}

.project-request-form input:not([type="checkbox"]),
.project-request-form textarea {
  width: 100%;
  min-height: 52px;
  padding: 13px 15px;
  border: 1px solid var(--line-strong);
  border-radius: var(--control-radius);
  background: var(--surface-raised);
  color: var(--text);
  resize: vertical;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.project-request-form textarea {
  min-height: 168px;
  line-height: 1.55;
}

.project-request-form input[type="file"] {
  color: var(--text-muted);
  font-size: 12px;
}

.project-request-form input[type="file"]::file-selector-button {
  margin-right: 12px;
  padding: 8px 10px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: var(--surface-muted);
  color: var(--text);
  font: inherit;
  cursor: pointer;
}

.project-request-form input:not([type="checkbox"]):focus-visible,
.project-request-form textarea:focus-visible {
  border-color: var(--accent);
  box-shadow: 0 0 0 4px var(--accent-soft);
  outline: 0;
}

.project-request-form small {
  color: var(--text-muted);
  font-size: 11px;
  font-weight: 400;
}

.consent-check {
  display: grid !important;
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 10px !important;
  font-weight: 400 !important;
  line-height: 1.5;
}

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

.consent-check a {
  color: var(--text);
  text-decoration: underline;
  text-underline-offset: 3px;
}

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

.project-form-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.project-form-actions p {
  margin: 0;
  color: var(--text-muted);
  font-size: 12px;
}

.project-form-actions p.is-error {
  color: #e06f62;
}

.documents-section {
  border-top: 1px solid var(--line);
  background: var(--surface-raised);
}

.documents-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(430px, 1.2fr);
  gap: clamp(54px, 9vw, 140px);
}

.documents-title h2 {
  max-width: 10ch;
}

.documents-title > p:last-child {
  margin-top: 26px;
}

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

.document-list a {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 24px;
  min-height: 104px;
  padding: 18px 6px;
  border-bottom: 1px solid var(--line);
  transition: color 180ms ease, padding 220ms cubic-bezier(0.16, 1, 0.3, 1), background-color 180ms ease;
}

.document-list span {
  font-size: 19px;
  font-weight: 650;
}

.document-list strong {
  color: var(--text-muted);
  font-size: 13px;
  font-weight: 500;
  text-align: right;
}

.document-list a:hover {
  padding-inline: 16px;
  background: var(--accent-soft);
  color: var(--accent);
}

.document-list a:active {
  transform: translateY(1px);
}

.site-footer {
  padding-block: clamp(64px, 8vw, 104px) 34px;
  border-top: 1px solid var(--line);
  background: #090a0c;
  color: #f3f1ed;
}

.footer-shell {
  display: grid;
  gap: 42px;
}

.footer-top {
  display: grid;
  grid-template-columns: minmax(280px, 1.45fr) repeat(3, minmax(150px, 0.72fr));
  gap: 36px clamp(24px, 3vw, 52px);
  align-items: start;
}

.footer-company {
  max-width: 440px;
}

.footer-company > p {
  max-width: 55ch;
  margin: 24px 0 0;
  color: rgba(243, 241, 237, 0.66);
  font-size: 13px;
  line-height: 1.65;
}

.footer-address {
  display: grid;
  gap: 5px;
  margin-top: 22px;
  color: rgba(243, 241, 237, 0.66);
  font-size: 12px;
  font-style: normal;
  line-height: 1.5;
}

.footer-address a {
  width: max-content;
  color: #f3f1ed;
  font-weight: 600;
}

.footer-address a:first-of-type {
  margin-top: 8px;
}

.footer-address a:hover,
.footer-column a:hover,
.footer-policy a:hover,
.footer-socials a:hover,
.footer-license a:hover {
  color: var(--accent);
}

.footer-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 22px;
}

.footer-badges span {
  padding: 6px 8px;
  border: 1px solid rgba(243, 241, 237, 0.15);
  border-radius: 5px;
  color: rgba(243, 241, 237, 0.74);
  font-size: 10px;
  font-weight: 650;
}

.footer-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  margin-top: 20px;
  color: rgba(243, 241, 237, 0.66);
  font-size: 11px;
  font-weight: 600;
}

.footer-column h2 {
  margin: 0 0 18px;
  color: #f3f1ed;
  font-size: 13px;
  font-weight: 700;
}

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

.footer-column a {
  color: rgba(243, 241, 237, 0.62);
  font-size: 12px;
  line-height: 1.45;
  transition: color 180ms ease;
}

.footer-manufacturer {
  grid-column: 2 / -1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  padding: 22px 24px;
  border: 1px solid rgba(243, 241, 237, 0.14);
  border-radius: 14px;
  background: rgba(243, 241, 237, 0.035);
}

.footer-manufacturer > p {
  margin: 0;
  color: rgba(243, 241, 237, 0.55);
  font-size: 11px;
}

.footer-manufacturer-mark {
  display: flex;
  align-items: center;
  gap: 24px;
}

.footer-manufacturer img {
  width: 150px;
  height: auto;
}

.footer-manufacturer span {
  color: rgba(243, 241, 237, 0.72);
  font-size: 11px;
  font-weight: 600;
}

.footer-license {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 30px;
  padding: 24px 0;
  border-block: 1px solid rgba(243, 241, 237, 0.14);
}

.footer-license > div {
  display: grid;
  gap: 5px;
}

.footer-license span,
.footer-license p {
  color: rgba(243, 241, 237, 0.55);
  font-size: 11px;
}

.footer-license strong {
  font-size: 15px;
}

.footer-license p {
  margin: 0;
}

.footer-license nav {
  font-size: 13px;
  font-weight: 600;
}

.footer-license nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 14px 24px;
}

.footer-policy {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  color: rgba(243, 241, 237, 0.58);
  font-size: 11px;
}

.footer-bottom {
  display: grid;
  grid-template-columns: auto minmax(300px, 1fr);
  align-items: start;
  gap: 28px 60px;
  color: rgba(243, 241, 237, 0.43);
  font-size: 10px;
  line-height: 1.55;
}

.footer-bottom span:last-child {
  max-width: 110ch;
  justify-self: end;
  text-align: right;
}

.js .reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 620ms cubic-bezier(0.16, 1, 0.3, 1), transform 620ms cubic-bezier(0.16, 1, 0.3, 1);
}

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

@media (prefers-reduced-motion: no-preference) {
  .product-skeleton {
    animation: shimmer 1.5s linear infinite;
  }
}

@keyframes shimmer {
  to {
    background-position: -160% 0, 0 0;
  }
}

@media (max-width: 1100px) {
  .theme-toggle {
    display: none;
  }

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

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

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

  .category-overview-card:first-child {
    grid-column: span 1;
  }

  .solution-card-wide {
    grid-column: span 1;
  }

  .solution-card:nth-child(1),
  .solution-card:nth-child(4) {
    grid-column: span 2;
  }

  .catalog-controls {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .filter-group {
    justify-content: flex-start;
  }

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

  .product-card:first-child {
    grid-column: auto;
  }

  .catalog-workspace {
    grid-template-columns: 1fr;
  }

  .catalog-sidebar {
    position: static;
    max-height: 460px;
  }

  .platform,
  .documents-layout,
  .request-layout {
    grid-template-columns: 1fr;
  }

  .request-intro {
    position: static;
  }

  .platform-copy h2,
  .documents-title h2,
  .request-intro h2 {
    max-width: 15ch;
  }

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

  .footer-company {
    grid-column: 1 / -1;
    max-width: 620px;
  }

  .footer-manufacturer {
    grid-column: 1 / -1;
  }
}

@media (max-width: 860px) {
  :root {
    --header-height: 64px;
  }

  .page-shell,
  .nav-shell {
    width: min(calc(100% - 36px), var(--page-width));
  }

  .nav-shell {
    grid-template-columns: auto 1fr;
  }

  .main-nav {
    position: absolute;
    top: calc(100% + 1px);
    right: 18px;
    left: 18px;
    display: none;
    align-items: stretch;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: var(--surface-raised);
    box-shadow: var(--shadow);
  }

  .main-nav.is-open {
    display: grid;
  }

  .main-nav a {
    padding: 12px;
    border-radius: var(--button-radius);
  }

  .main-nav a:hover {
    background: var(--surface-muted);
  }

  .nav-catalog {
    display: block;
    height: auto;
  }

  .catalog-nav-trigger {
    display: flex;
    justify-content: space-between;
  }

  .catalog-mega {
    display: none;
  }

  .nav-actions {
    justify-content: flex-end;
  }

  .nav-actions .button-small {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    align-items: end;
    min-height: calc(100dvh - var(--header-height));
    padding-block: 72px 52px;
  }

  .hero-media {
    background-position: 66% center;
  }

  .hero-scrim {
    background:
      linear-gradient(0deg, rgba(11, 12, 14, 0.98) 0%, rgba(11, 12, 14, 0.88) 42%, rgba(11, 12, 14, 0.22) 85%),
      linear-gradient(90deg, rgba(11, 12, 14, 0.7), transparent);
  }

  .hero h1 {
    max-width: 11ch;
    font-size: clamp(45px, 11vw, 76px);
  }

  .product-card:first-child {
    grid-template-columns: 1fr;
    grid-template-rows: 188px 1fr;
  }

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

  .product-dialog-gallery > img {
    height: min(72vw, 480px);
  }

  .platform-visual,
  .platform-visual > img {
    min-height: 520px;
  }
}

@media (max-width: 680px) {
  .page-shell,
  .nav-shell {
    width: min(calc(100% - 28px), var(--page-width));
  }

  .brand {
    min-width: 176px;
  }

  .brand-logo {
    width: 176px;
    height: auto;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 20px;
  }

  .hero .button {
    width: 100%;
  }

  .section {
    padding-block: 78px;
  }

  .section-heading,
  .catalog-heading {
    margin-bottom: 34px;
  }

  .category-overview-grid {
    grid-template-columns: 1fr;
  }

  .category-overview-card {
    min-height: 104px;
    padding: 16px;
  }

  .section h2 {
    font-size: clamp(38px, 11vw, 56px);
  }

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

  .solution-card,
  .solution-card:nth-child(1),
  .solution-card:nth-child(4),
  .solution-card-wide,
  .product-card:first-child {
    grid-column: span 1;
  }

  .solution-card {
    min-height: 310px;
  }

  .filter-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
  }

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

  .catalog-sorters {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .catalog-sorters select {
    width: 100%;
  }

  .product-card:first-child,
  .product-card {
    grid-template-columns: 1fr;
    grid-template-rows: 180px 1fr;
  }

  .product-actions {
    justify-items: stretch;
  }

  .product-card h3 {
    min-height: auto;
  }

  .product-dialog {
    width: calc(100% - 16px);
    max-height: calc(100dvh - 16px);
  }

  .product-dialog-shell {
    padding: 14px;
  }

  .product-dialog-gallery > img {
    height: 74vw;
    padding: 22px;
  }

  .product-dialog-summary h2 {
    font-size: 28px;
  }

  .product-dialog-specs,
  .product-dialog-materials {
    grid-template-columns: 1fr;
  }

  .product-dialog-request {
    width: 100%;
  }

  .platform {
    gap: 40px;
  }

  .benefit-list li {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .platform-visual,
  .platform-visual > img {
    min-height: 420px;
  }

  .platform-visual > img {
    object-position: 69% center;
  }

  .document-list a {
    grid-template-columns: 1fr;
    gap: 6px;
    min-height: 92px;
  }

  .document-list strong {
    text-align: left;
  }

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

  .project-form-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .project-form-actions .button {
    width: 100%;
  }

  .footer-top,
  .footer-license,
  .footer-bottom {
    grid-template-columns: 1fr;
  }

  .footer-company {
    grid-column: auto;
  }

  .footer-manufacturer {
    grid-column: auto;
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-manufacturer-mark {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
  }

  .footer-license nav {
    justify-content: flex-start;
  }

  .footer-bottom span:last-child {
    justify-self: start;
    text-align: left;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .js .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (prefers-reduced-transparency: reduce) {
  .site-header,
  .catalog-mega,
  .visual-note {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .site-header {
    background: var(--surface);
  }

  .catalog-mega {
    background: var(--surface);
  }

  .visual-note {
    background: #151619;
  }
}

/* Multi-page catalog architecture */

.store-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.store-nav-link {
  position: relative;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: var(--button-radius);
  background: var(--surface-raised);
  transition: border-color 160ms ease, background-color 160ms ease, transform 160ms ease;
}

.store-nav-link:hover {
  border-color: color-mix(in srgb, var(--accent) 56%, var(--line));
  background: var(--accent-soft);
  transform: translateY(-1px);
}

.store-nav-icon {
  width: 19px;
  height: 19px;
  background: currentColor;
  mask: var(--store-icon) center / contain no-repeat;
  -webkit-mask: var(--store-icon) center / contain no-repeat;
}

.store-nav-label {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}

.store-nav-count {
  position: absolute;
  top: -7px;
  right: -7px;
  display: grid;
  place-items: center;
  min-width: 19px;
  height: 19px;
  padding-inline: 4px;
  border: 2px solid var(--surface);
  border-radius: 999px;
  background: var(--accent);
  color: var(--accent-ink);
  font-size: 9px;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
}

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

.store-toast {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 40;
  max-width: min(360px, calc(100% - 32px));
  padding: 14px 18px;
  border: 1px solid color-mix(in srgb, var(--accent) 48%, var(--line));
  border-radius: var(--control-radius);
  background: var(--surface-raised);
  color: var(--text);
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.store-toast.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.home-hero,
.home-hero .hero-grid {
  min-height: min(700px, calc(100dvh - var(--header-height)));
}

.home-catalog,
.home-solutions {
  padding-block: clamp(72px, 8vw, 112px);
}

.home-final-cta {
  padding-block: 62px;
  border-block: 1px solid var(--line);
  background: var(--surface-raised);
}

.home-final-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 36px;
}

.home-final-layout h2 {
  margin: 0;
  font-size: clamp(34px, 4vw, 58px);
  line-height: 1;
  letter-spacing: -0.045em;
}

.home-final-layout p {
  max-width: 62ch;
  margin: 14px 0 0;
  color: var(--text-muted);
}

.solution-card h2,
.solution-card h3 {
  margin: 0;
  color: #f3f1ed;
  font-size: clamp(23px, 2.25vw, 34px);
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.inner-main {
  min-height: 70dvh;
}

.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 58px;
  color: var(--text-muted);
  font-size: 12px;
  overflow-x: auto;
  white-space: nowrap;
}

.breadcrumbs a:hover {
  color: var(--accent);
}

.breadcrumbs span[aria-current="page"] {
  color: var(--text);
}

.inner-hero {
  display: grid;
  gap: 22px;
  max-width: var(--page-width);
  padding-block: clamp(62px, 8vw, 118px);
}

.inner-hero h1,
.collection-heading h1,
.catalog-heading h1,
.request-intro h1 {
  max-width: 18ch;
  margin: 0;
  font-size: clamp(44px, 6vw, 86px);
  line-height: 0.98;
  letter-spacing: -0.052em;
  text-wrap: balance;
}

.inner-hero > p:last-of-type,
.collection-heading p,
.catalog-heading > p:last-child {
  max-width: 66ch;
  margin: 0;
  color: var(--text-muted);
  font-size: 18px;
}

.inner-hero .button {
  justify-self: start;
}

.catalog-page {
  padding-top: 36px;
}

.catalog-page .catalog-heading {
  margin-bottom: 70px;
}

.catalog-page .category-overview {
  margin-bottom: 72px;
}

.product-card-media-wrap {
  position: relative;
  min-width: 0;
  overflow: hidden;
  background: #f0f0ee;
}

.product-card-media {
  width: 100%;
  height: 100%;
}

.product-card-utilities {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 2;
  display: flex;
  gap: 6px;
}

.product-utility {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  padding: 0;
  border: 1px solid rgba(21, 22, 25, 0.18);
  border-radius: var(--button-radius);
  background: rgba(250, 249, 246, 0.9);
  color: #292a2d;
  cursor: pointer;
  transition: background-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.product-utility:hover,
.product-utility.is-active {
  background: var(--accent);
  color: var(--accent-ink);
  transform: translateY(-1px);
}

.product-utility-icon {
  width: 18px;
  height: 18px;
  background: currentColor;
  mask-position: center;
  mask-repeat: no-repeat;
  mask-size: contain;
  -webkit-mask-position: center;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: contain;
}

.product-utility-favorite .product-utility-icon {
  mask-image: url("assets/icons/heart.svg");
  -webkit-mask-image: url("assets/icons/heart.svg");
}

.product-utility-compare .product-utility-icon {
  mask-image: url("assets/icons/arrows-diff.svg");
  -webkit-mask-image: url("assets/icons/arrows-diff.svg");
}

.product-title-link {
  color: inherit;
  transition: color 160ms ease;
}

.product-title-link:hover {
  color: var(--accent);
}

.product-page {
  padding-block: 38px clamp(90px, 9vw, 140px);
}

.product-page-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(420px, 0.95fr);
  gap: clamp(40px, 6vw, 90px);
  align-items: start;
}

.product-page-gallery {
  position: sticky;
  top: calc(var(--header-height) + 28px);
}

.product-page-image-wrap {
  display: grid;
  place-items: center;
  min-height: 620px;
  padding: clamp(36px, 6vw, 86px);
  border-radius: var(--card-radius);
  background: #f0f0ee;
}

.product-page-image-wrap img {
  width: 100%;
  max-height: 500px;
  object-fit: contain;
}

.product-page-thumbs {
  display: flex;
  gap: 10px;
  margin-top: 12px;
  overflow-x: auto;
}

.product-page-thumb {
  width: 78px;
  height: 64px;
  padding: 7px;
  border: 1px solid var(--line);
  border-radius: var(--control-radius);
  background: #f0f0ee;
  cursor: pointer;
}

.product-page-thumb.is-active {
  border-color: var(--accent);
}

.product-page-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

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

.product-page-summary h1 {
  margin: 0;
  font-size: clamp(38px, 4.7vw, 68px);
  line-height: 0.98;
  letter-spacing: -0.052em;
  text-wrap: balance;
}

.product-page-summary.product-title-long h1 {
  font-size: clamp(32px, 3.35vw, 46px);
  line-height: 1.02;
}

.product-page-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  color: var(--text-muted);
  font-size: 14px;
}

.product-page-price {
  font-size: clamp(30px, 3.4vw, 48px);
  font-weight: 800;
  letter-spacing: -0.04em;
  font-variant-numeric: tabular-nums;
}

.product-page-actions {
  display: grid;
  grid-template-columns: auto minmax(180px, 1fr);
  gap: 12px;
  max-width: 520px;
}

.quantity-control {
  display: inline-grid;
  grid-template-columns: 42px 52px 42px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: var(--button-radius);
  background: var(--surface-raised);
  overflow: hidden;
}

.quantity-control button,
.quantity-control input,
.quantity-control span {
  display: grid;
  place-items: center;
  min-width: 0;
  height: 48px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--text);
  text-align: center;
  font-weight: 700;
}

.quantity-control button {
  cursor: pointer;
}

.quantity-control button:hover {
  background: var(--accent-soft);
}

.product-page-secondary-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.collection-action {
  min-height: 42px;
  padding: 0 15px;
  border: 1px solid var(--line);
  border-radius: var(--button-radius);
  background: var(--surface-raised);
  color: var(--text);
  font-weight: 650;
  cursor: pointer;
  transition: border-color 160ms ease, background-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.collection-action:hover,
.collection-action.is-active {
  border-color: var(--accent);
  background: var(--accent-soft);
  color: var(--accent);
  transform: translateY(-1px);
}

.product-delivery {
  display: grid;
  gap: 12px;
  margin: 4px 0 0;
  padding: 18px 0;
  border-block: 1px solid var(--line);
}

.product-delivery > div {
  display: grid;
  grid-template-columns: 110px minmax(0, 1fr);
  gap: 16px;
}

.product-delivery dt {
  color: var(--text-muted);
}

.product-delivery dd {
  margin: 0;
}

.product-page-content {
  display: grid;
  gap: 72px;
  max-width: 1120px;
  margin-top: clamp(76px, 10vw, 140px);
}

.product-page-content section {
  display: grid;
  gap: 24px;
}

.product-page-content h2 {
  margin: 0;
  font-size: clamp(30px, 4vw, 50px);
  line-height: 1;
  letter-spacing: -0.04em;
}

#product-page-description {
  max-width: 82ch;
  color: var(--text-muted);
  font-size: 18px;
  line-height: 1.7;
  white-space: pre-line;
}

.collection-page {
  padding-block: 44px clamp(90px, 10vw, 150px);
}

.collection-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 54px;
}

.collection-heading > div {
  display: grid;
  gap: 18px;
}

.collection-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 340px);
  gap: 24px;
  align-items: start;
}

.collection-layout > *,
body[data-collection="compare"] #collection-content {
  min-width: 0;
}

body[data-collection="favorites"] .collection-layout,
body[data-collection="compare"] .collection-layout {
  grid-template-columns: 1fr;
}

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

.collection-summary {
  position: sticky;
  top: calc(var(--header-height) + 24px);
  display: grid;
  gap: 18px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--card-radius);
  background: var(--surface-raised);
}

.collection-summary p {
  margin: 0;
  color: var(--text-muted);
  font-size: 13px;
}

.cart-summary-total {
  display: grid;
  gap: 8px;
}

.cart-summary-total span {
  color: var(--text-muted);
  font-size: 13px;
}

.cart-summary-total strong {
  font-size: 30px;
}

.collection-empty {
  display: grid;
  justify-items: start;
  gap: 16px;
  min-height: 360px;
  padding: clamp(32px, 6vw, 72px);
  border: 1px solid var(--line);
  border-radius: var(--card-radius);
  background: var(--surface-raised);
}

.collection-empty h2,
.collection-empty p {
  margin: 0;
}

.collection-empty p {
  max-width: 52ch;
  color: var(--text-muted);
}

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

.collection-card {
  display: grid;
  grid-template-rows: 220px 1fr;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--surface-raised);
}

.collection-card-image {
  display: grid;
  place-items: center;
  padding: 22px;
  background: #f0f0ee;
}

.collection-card-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.collection-card-body {
  display: flex;
  flex-direction: column;
  padding: 20px;
}

.collection-card-body h2 {
  margin: 8px 0 0;
  font-size: 18px;
  line-height: 1.22;
}

.collection-card-meta,
.collection-card-price {
  margin: 0;
  color: var(--text-muted);
  font-size: 12px;
}

.collection-card-price {
  margin-top: 16px;
  color: var(--text);
  font-size: 18px;
  font-weight: 750;
}

.collection-card-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: auto;
  padding-top: 22px;
}

.collection-remove {
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--text-muted);
  font-size: 12px;
  text-decoration: underline;
  text-underline-offset: 4px;
  cursor: pointer;
}

.collection-remove:hover {
  color: var(--accent);
}

.cart-list {
  display: grid;
  gap: 10px;
}

.cart-row {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr) auto minmax(120px, auto) auto;
  align-items: center;
  gap: 18px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--surface-raised);
}

.cart-row-image {
  display: grid;
  place-items: center;
  width: 120px;
  height: 100px;
  padding: 10px;
  border-radius: 10px;
  background: #f0f0ee;
}

.cart-row-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.cart-row-copy h2,
.cart-row-copy p {
  margin: 0;
}

.cart-row-copy h2 {
  margin-block: 6px;
  font-size: 15px;
  line-height: 1.25;
}

.cart-row-copy p:last-child {
  font-size: 12px;
  color: var(--text-muted);
}

.cart-row-total {
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

.compare-scroll {
  width: 100%;
  max-width: 100%;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  padding-bottom: 10px;
}

.compare-table {
  display: grid;
  grid-template-columns: minmax(170px, 0.72fr) repeat(var(--compare-count), minmax(240px, 1fr));
  min-width: max-content;
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
}

.compare-label,
.compare-value,
.compare-product {
  padding: 16px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.compare-label {
  color: var(--text-muted);
  background: var(--surface-raised);
  font-size: 12px;
  font-weight: 650;
}

.compare-value {
  background: var(--surface);
  font-size: 13px;
}

.compare-product {
  display: grid;
  align-content: start;
  gap: 10px;
  background: var(--surface-raised);
}

.compare-product img {
  width: 100%;
  height: 150px;
  padding: 14px;
  border-radius: 10px;
  background: #f0f0ee;
  object-fit: contain;
}

.compare-product > a {
  max-width: 28ch;
  font-size: 14px;
  font-weight: 700;
}

.compare-product small {
  color: var(--text-muted);
}

.request-page {
  padding-top: 44px;
}

.company-documents {
  padding-top: 20px;
}

@media (max-width: 1220px) {
  .nav-shell {
    gap: 18px;
  }

  .main-nav {
    gap: 18px;
  }

  .product-page-grid {
    grid-template-columns: minmax(0, 1fr) minmax(380px, 0.9fr);
    gap: 42px;
  }

  .product-page-image-wrap {
    min-height: 520px;
  }

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

  .collection-summary {
    position: static;
  }
}

@media (max-width: 1040px) {
  .nav-shell {
    grid-template-columns: auto 1fr;
    gap: 14px;
  }

  .main-nav {
    position: absolute;
    top: calc(100% + 1px);
    right: 18px;
    left: 18px;
    display: none;
    align-items: stretch;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: var(--surface-raised);
    box-shadow: var(--shadow);
  }

  .main-nav.is-open {
    display: grid;
  }

  .main-nav a {
    padding: 12px;
    border-radius: var(--button-radius);
  }

  .main-nav a:hover {
    background: var(--surface-muted);
  }

  .nav-catalog {
    display: block;
    height: auto;
  }

  .catalog-nav-trigger {
    display: flex;
    justify-content: space-between;
  }

  .catalog-mega {
    display: none;
  }

  .nav-actions {
    justify-content: flex-end;
  }

  .menu-toggle {
    display: inline-flex;
  }
}

@media (max-width: 860px) {
  .nav-shell {
    gap: 10px;
  }

  .store-nav-link {
    width: 36px;
    height: 36px;
  }

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

  .product-page-gallery {
    position: static;
  }

  .product-page-image-wrap {
    min-height: 480px;
  }

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

  .cart-row {
    grid-template-columns: 96px minmax(0, 1fr) auto;
  }

  .cart-row-image {
    width: 96px;
    height: 84px;
  }

  .cart-row .quantity-control,
  .cart-row-total {
    grid-column: 2;
  }

  .cart-row > .collection-remove {
    grid-column: 3;
    grid-row: 1;
  }
}

@media (max-width: 680px) {
  .nav-actions {
    gap: 8px;
  }

  .store-nav {
    gap: 2px;
  }

  .store-nav-link {
    width: 33px;
    height: 33px;
  }

  .store-nav-icon {
    width: 17px;
    height: 17px;
  }

  .menu-toggle {
    font-size: 12px;
  }

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

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

  .home-final-layout .button {
    width: 100%;
  }

  .breadcrumbs {
    width: calc(100% - 28px);
  }

  .inner-hero h1,
  .collection-heading h1,
  .catalog-heading h1,
  .request-intro h1 {
    font-size: clamp(38px, 11vw, 58px);
  }

  .collection-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .product-page {
    padding-top: 18px;
  }

  .product-page-image-wrap {
    min-height: 0;
    height: 92vw;
    padding: 26px;
  }

  .product-page-summary {
    padding-top: 0;
  }

  .product-page-summary h1 {
    font-size: clamp(34px, 10vw, 52px);
  }

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

  .product-page-actions .quantity-control {
    width: max-content;
  }

  .product-delivery > div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .cart-row {
    grid-template-columns: 78px minmax(0, 1fr);
    gap: 12px;
  }

  .cart-row-image {
    width: 78px;
    height: 72px;
  }

  .cart-row .quantity-control,
  .cart-row-total,
  .cart-row > .collection-remove {
    grid-column: 2;
  }

  .cart-row > .collection-remove {
    grid-row: auto;
    justify-self: start;
  }

  .collection-page {
    padding-top: 24px;
  }

  .compare-table {
    grid-template-columns: minmax(130px, 0.6fr) repeat(var(--compare-count), minmax(210px, 1fr));
  }
}
