:root {
  color-scheme: light;
  --bg: #f7f8fb;
  --surface: #fcfcfe;
  --surface-2: #eef0f6;
  --surface-3: #e4e7ef;
  --ink: #090d18;
  --ink-2: #273043;
  --muted: #667085;
  --line: #d9dde7;
  --line-strong: #aeb5c4;
  --brand: #ff5a1a;
  --brand-hover: #d33b00;
  --brand-text: #c63a00;
  --brand-soft: #fff0e9;
  --night: #101026;
  --night-2: #18153b;
  --on-night: #f5f4fb;
  --on-night-muted: #b7b5ca;
  --shadow: 0 24px 70px rgba(23, 20, 61, 0.12);
  --shadow-soft: 0 12px 36px rgba(23, 20, 61, 0.08);
  --radius-control: 12px;
  --radius-card: 22px;
  --radius-media: 28px;
  --container: min(1320px, calc(100% - 48px));
  --header-height: 72px;
}

[data-theme="dark"] {
  color-scheme: dark;
  --bg: #0c0e16;
  --surface: #131621;
  --surface-2: #1b1f2c;
  --surface-3: #262b39;
  --ink: #f4f5f8;
  --ink-2: #d7dbe4;
  --muted: #9ba3b2;
  --line: #2e3442;
  --line-strong: #4a5365;
  --brand-soft: #2b1812;
  --brand-text: #ff7a45;
  --night: #10111c;
  --night-2: #1a1834;
  --on-night: #f5f4fb;
  --on-night-muted: #b7b5ca;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.3);
  --shadow-soft: 0 12px 36px rgba(0, 0, 0, 0.22);
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) {
    color-scheme: dark;
    --bg: #0c0e16;
    --surface: #131621;
    --surface-2: #1b1f2c;
    --surface-3: #262b39;
    --ink: #f4f5f8;
    --ink-2: #d7dbe4;
    --muted: #9ba3b2;
    --line: #2e3442;
    --line-strong: #4a5365;
    --brand-soft: #2b1812;
    --brand-text: #ff7a45;
    --night: #10111c;
    --night-2: #1a1834;
    --on-night: #f5f4fb;
    --on-night-muted: #b7b5ca;
    --shadow: 0 24px 70px rgba(0, 0, 0, 0.3);
    --shadow-soft: 0 12px 36px rgba(0, 0, 0, 0.22);
  }
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 20px);
}

body {
  min-width: 320px;
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: "TT Interphases Pro", Manrope, "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

body.is-locked {
  overflow: hidden;
}

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

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

button {
  color: inherit;
}

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

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

h1,
h2,
h3,
h4,
p,
figure,
dl,
dd {
  margin-top: 0;
}

h1,
h2,
h3,
h4,
strong {
  font-weight: 680;
}

h1,
h2,
h3 {
  text-wrap: balance;
}

h1,
h2 {
  letter-spacing: -0.045em;
}

h1 {
  max-width: 860px;
  margin-bottom: 24px;
  font-size: clamp(44px, 5.5vw, 78px);
  line-height: 0.98;
}

h2 {
  max-width: 900px;
  margin-bottom: 18px;
  font-size: clamp(34px, 4vw, 58px);
  line-height: 1.02;
}

h3 {
  margin-bottom: 12px;
  font-size: clamp(21px, 2vw, 30px);
  line-height: 1.12;
  letter-spacing: -0.025em;
}

p {
  color: var(--muted);
}

ul {
  margin: 0;
  padding-left: 20px;
}

li + li {
  margin-top: 7px;
}

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

[hidden] {
  display: none !important;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 120;
  transform: translateY(-150%);
  border-radius: var(--radius-control);
  background: var(--ink);
  color: var(--bg);
  padding: 10px 14px;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  border-bottom: 1px solid color-mix(in srgb, var(--line) 72%, transparent);
  background: color-mix(in srgb, var(--bg) 90%, transparent);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  min-height: var(--header-height);
  gap: 24px;
}

.brand-lockup {
  display: flex;
  align-items: center;
  min-width: max-content;
  height: var(--header-height);
}

.corporate-brand,
.vendor-brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.corporate-brand {
  position: relative;
  padding: 9px 0;
}

.corporate-logo {
  width: 178px;
  height: auto;
}

.corporate-logo-white {
  display: none;
}

[data-theme="dark"] .corporate-logo-color {
  display: none;
}

[data-theme="dark"] .corporate-logo-white {
  display: block;
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) .corporate-logo-color {
    display: none;
  }

  :root:not([data-theme="light"]) .corporate-logo-white {
    display: block;
  }
}

.brand-divider {
  width: 1px;
  height: 34px;
  margin: 0 8px 0 16px;
  background: var(--line);
}

.vendor-brand {
  min-height: var(--header-height);
  padding: 20px;
}

.vendor-logo-full {
  width: 140px;
  height: auto;
}

.vendor-logo-mark {
  display: none;
  width: 30px;
  height: 30px;
}

.desktop-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(18px, 2.5vw, 36px);
  min-width: 0;
  white-space: nowrap;
}

.desktop-nav a {
  position: relative;
  color: var(--ink-2);
  font-size: 14px;
  font-weight: 640;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  transform: scaleX(0);
  transform-origin: right;
  background: var(--brand);
  content: "";
  transition: transform 180ms ease;
}

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

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

.header-search-trigger {
  display: inline-grid;
  place-items: center;
  width: 42px;
  min-width: 42px;
  height: 42px;
  border: 1px solid transparent;
  border-radius: var(--radius-control);
  background: transparent;
  padding: 0;
  color: var(--ink-2);
  cursor: pointer;
  transition: color 180ms ease, border-color 180ms ease, background-color 180ms ease;
}

.header-search-trigger:hover,
.header-search-trigger:focus-visible,
.site-header.is-search-open .header-search-trigger {
  border-color: transparent;
  background: var(--surface-2);
  color: var(--brand-text);
}

.header-search-icon,
.header-search-leading-icon {
  display: grid;
  place-items: center;
  color: currentColor;
}

.header-search-icon svg,
.header-search-leading-icon svg {
  display: block;
  width: 27px;
  height: 27px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.header-search-layer {
  position: absolute;
  z-index: 65;
  top: 100%;
  right: 0;
  left: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: color-mix(in srgb, var(--surface) 96%, transparent);
  box-shadow: 0 26px 64px color-mix(in srgb, var(--night) 18%, transparent);
  backdrop-filter: blur(18px) saturate(1.08);
}

.header-search-inner {
  padding: 18px 0 22px;
}

.header-search-form {
  position: relative;
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr) auto 40px;
  gap: 8px;
  align-items: center;
  width: 100%;
  margin: 0;
}

.header-search-leading-icon {
  width: 34px;
  height: 40px;
  color: var(--muted);
}

.header-search-leading-icon svg {
  width: 24px;
  height: 24px;
}

.header-search-form label {
  min-width: 0;
}

.header-search-form input {
  width: 100%;
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface-2);
  padding: 0 14px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 600;
  outline: none;
}

.header-search-form input::placeholder {
  color: var(--muted);
}

.header-search-form input:focus {
  border-color: color-mix(in srgb, var(--brand) 62%, var(--line));
  background: var(--surface);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--brand) 12%, transparent);
}

.header-search-submit {
  min-height: 44px;
  border: 1px solid var(--brand);
  border-radius: 8px;
  background: var(--brand);
  padding: 0 18px;
  color: #1a0d07;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
}

.header-search-submit:hover,
.header-search-submit:focus-visible {
  border-color: var(--brand-hover);
  background: var(--brand-hover);
  color: #fff;
}

.header-search-close {
  position: relative;
  width: 40px;
  height: 40px;
  border: 1px solid transparent;
  border-radius: 8px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
}

.header-search-close::before,
.header-search-close::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 18px;
  height: 1.5px;
  border-radius: 2px;
  background: currentColor;
  content: "";
}

.header-search-close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.header-search-close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.header-search-close:hover,
.header-search-close:focus-visible {
  border-color: var(--line);
  background: var(--surface-2);
  color: var(--ink);
}

.header-quick-results {
  position: absolute;
  z-index: 2;
  top: calc(100% + 10px);
  right: 48px;
  left: 42px;
  display: grid;
  gap: 4px;
  max-height: min(58dvh, 520px);
  overflow: auto;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--surface);
  box-shadow: var(--shadow);
  padding: 8px;
}

.header-quick-results .search-result {
  grid-template-columns: 64px minmax(0, 1fr) auto;
  gap: 12px;
  border: 0;
  border-radius: 8px;
  padding: 8px;
}

.header-quick-results .search-result:hover,
.header-quick-results .search-result:focus-visible {
  background: var(--surface-2);
}

.header-quick-results .search-result img {
  width: 64px;
  height: 44px;
  border-radius: 6px;
}

.header-quick-results .search-result h3 {
  margin: 2px 0 0;
  font-size: 14px;
}

.header-quick-results .search-result p {
  display: none;
}

.header-quick-results .search-result > span {
  padding-right: 4px;
}

.header-quick-results > .button {
  justify-content: flex-start;
  min-height: 42px;
  margin-top: 4px;
}

.theme-switch {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 52px;
  min-height: 42px;
  border: 1px solid transparent;
  border-radius: var(--radius-control);
  background: transparent;
  padding: 0 4px;
  color: var(--ink-2);
  cursor: pointer;
  transition: color 180ms ease, border-color 180ms ease, background-color 180ms ease, box-shadow 180ms ease;
}

.theme-switch:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 2px;
}

.theme-switch-label,
.theme-switch-state {
  display: none;
}

.theme-switch-track {
  position: relative;
  display: block;
  flex: 0 0 40px;
  width: 40px;
  height: 22px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: var(--surface-3);
  box-shadow: inset 0 1px 2px rgba(23, 20, 61, 0.12);
  transition: border-color 200ms ease, background-color 200ms ease, box-shadow 200ms ease;
}

.theme-switch-knob {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 1px 4px rgba(16, 18, 32, 0.28);
  transition: transform 220ms cubic-bezier(0.22, 0.8, 0.24, 1), background-color 200ms ease, box-shadow 200ms ease;
}

.theme-switch.is-dark .theme-switch-track {
  border-color: #3f4556;
  background: #171a24;
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.36);
}

.theme-switch.is-dark .theme-switch-knob {
  transform: translateX(18px);
  background: var(--brand);
  box-shadow: 0 1px 7px color-mix(in srgb, var(--brand) 46%, transparent);
}

@keyframes theme-preview-light-track {
  to { border-color: #3f4556; background: #171a24; box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.36); }
}

@keyframes theme-preview-dark-track {
  to { border-color: var(--line-strong); background: var(--surface-3); box-shadow: inset 0 1px 2px rgba(23, 20, 61, 0.12); }
}

@keyframes theme-preview-light-knob {
  to { transform: translateX(18px); background: var(--brand); box-shadow: 0 1px 7px color-mix(in srgb, var(--brand) 46%, transparent); }
}

@keyframes theme-preview-dark-knob {
  to { transform: translateX(0); background: #fff; box-shadow: 0 1px 4px rgba(16, 18, 32, 0.28); }
}

@media (hover: hover) and (pointer: fine) {
  .theme-switch-header:not(.is-dark):hover .theme-switch-track {
    animation: theme-preview-light-track 1.7s ease-in-out infinite alternate;
  }

  .theme-switch-header:not(.is-dark):hover .theme-switch-knob {
    animation: theme-preview-light-knob 1.7s ease-in-out infinite alternate;
  }

  .theme-switch-header.is-dark:hover .theme-switch-track {
    animation: theme-preview-dark-track 1.7s ease-in-out infinite alternate;
  }

  .theme-switch-header.is-dark:hover .theme-switch-knob {
    animation: theme-preview-dark-knob 1.7s ease-in-out infinite alternate;
  }
}

.icon-button,
.menu-toggle {
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius-control);
  background: var(--surface);
  padding: 0 14px;
  color: var(--ink-2);
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
}

.menu-toggle {
  display: none;
}

.mobile-nav {
  display: none;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  border: 1px solid transparent;
  border-radius: var(--radius-control);
  padding: 0 22px;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
  cursor: pointer;
  transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease, color 180ms ease;
}

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

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

.button-primary {
  background: var(--brand);
  color: #19100b;
}

.button-primary:hover {
  background: var(--brand-hover);
  color: #fff7f3;
}

.button-secondary {
  border-color: var(--line-strong);
  background: var(--surface);
  color: var(--ink);
}

.button-dark {
  background: var(--on-night);
  color: #11101f;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-weight: 700;
}

.text-link span {
  color: var(--brand-text);
  transition: transform 180ms ease;
}

.text-link:hover span {
  transform: translateX(4px);
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 26px;
  color: var(--muted);
  font-size: 13px;
}

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

.eyebrow {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--brand-text);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero {
  padding: 34px 0 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(460px, 1.1fr);
  align-items: stretch;
  min-height: calc(100dvh - var(--header-height) - 34px);
  border-radius: var(--radius-media);
  overflow: hidden;
  background: var(--night);
  color: var(--on-night);
  box-shadow: var(--shadow);
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(40px, 6vw, 86px);
}

.hero .eyebrow {
  margin-bottom: 20px;
}

.hero h1 {
  max-width: 690px;
  margin-bottom: 22px;
}

.hero-lead {
  max-width: 520px;
  margin-bottom: 32px;
  color: var(--on-night-muted);
  font-size: clamp(18px, 1.6vw, 22px);
  line-height: 1.48;
}

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

.hero .button-secondary {
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.06);
  color: var(--on-night);
}

.hero-media {
  min-height: 520px;
  margin: 0;
  overflow: hidden;
  background: #09111d;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 60% center;
}

.hero-media picture {
  display: block;
  width: 100%;
  height: 100%;
}

.fact-strip {
  padding: 28px 0 0;
}

.fact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.fact-grid > div {
  padding: 28px clamp(12px, 2.3vw, 30px);
}

.fact-grid > div + div {
  border-left: 1px solid var(--line);
}

.fact-grid strong,
.fact-grid span {
  display: block;
}

.fact-grid strong {
  margin-bottom: 7px;
  font-size: clamp(22px, 2.1vw, 31px);
  letter-spacing: -0.035em;
}

.fact-grid span {
  color: var(--muted);
  font-size: 13px;
}

.section {
  padding: clamp(86px, 10vw, 148px) 0;
}

.section-compact {
  padding: clamp(62px, 7vw, 92px) 0;
}

.section-heading {
  margin-bottom: clamp(36px, 5vw, 64px);
}

.section-heading p {
  max-width: 660px;
  margin-bottom: 0;
  font-size: 18px;
}

.task-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.65fr) minmax(0, 1.35fr);
  gap: 20px;
}

.task-tabs {
  display: grid;
  gap: 8px;
  align-self: start;
}

.task-tab {
  min-height: 54px;
  border: 1px solid transparent;
  border-radius: var(--radius-control);
  background: transparent;
  padding: 0 18px;
  color: var(--muted);
  text-align: left;
  font-weight: 700;
  cursor: pointer;
}

.task-tab:hover {
  background: var(--surface-2);
  color: var(--ink);
}

.task-tab.is-active {
  border-color: color-mix(in srgb, var(--brand) 38%, var(--line));
  background: var(--brand-soft);
  color: var(--ink);
}

.task-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(230px, 0.85fr);
  gap: 34px;
  min-height: 390px;
  border-radius: var(--radius-card);
  background: var(--night);
  color: var(--on-night);
  padding: clamp(28px, 4vw, 56px);
}

.task-panel h3 {
  max-width: 620px;
  font-size: clamp(31px, 4vw, 54px);
}

.task-panel > div > p {
  max-width: 580px;
  color: var(--on-night-muted);
  font-size: 18px;
}

.task-checks {
  align-self: end;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 22px;
}

.task-checks strong {
  display: block;
  margin-bottom: 12px;
  color: var(--brand-text);
  font-size: 13px;
}

.task-checks ul {
  color: var(--on-night-muted);
}

.task-products {
  display: grid;
  align-content: end;
  gap: 10px;
}

.task-product-link {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  padding: 15px 0;
  font-weight: 700;
}

.task-product-link span {
  color: var(--brand-text);
}

.task-product-link:hover {
  color: var(--brand-text);
}

.product-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.65fr);
  grid-template-rows: auto auto;
  gap: 18px;
}

.feature-product {
  position: relative;
  grid-row: 1 / span 2;
  min-height: 660px;
  border-radius: var(--radius-media);
  overflow: hidden;
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}

.feature-product img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feature-product-copy {
  position: absolute;
  right: 28px;
  bottom: 28px;
  left: 28px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius-card);
  background: rgba(14, 14, 32, 0.9);
  color: var(--on-night);
  padding: 28px;
  backdrop-filter: blur(18px);
}

.feature-product-copy p {
  max-width: 620px;
  color: var(--on-night-muted);
}

.feature-product-copy .text-link {
  color: var(--on-night);
}

.side-product {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  min-height: 320px;
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  overflow: hidden;
  background: var(--surface);
}

.side-product img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
}

.side-product-copy {
  padding: 28px;
}

.side-product-copy span,
.product-type {
  display: block;
  margin-bottom: 12px;
  color: var(--brand-text);
  font-size: 12px;
  font-weight: 800;
}

.side-product-copy p {
  font-size: 14px;
}

.workflow {
  border-top: 1px solid var(--line);
}

.workflow-list {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
}

.workflow-step {
  min-height: 260px;
  border-right: 1px solid var(--line);
  padding: 30px 22px 28px 0;
}

.workflow-step + .workflow-step {
  padding-left: 22px;
}

.workflow-step:last-child {
  border-right: 0;
}

.workflow-step strong {
  display: block;
  margin-bottom: 16px;
  color: var(--brand-text);
  font-size: 13px;
}

.workflow-step h3 {
  font-size: 20px;
}

.workflow-step p {
  margin-bottom: 0;
  font-size: 14px;
}

.article-feature-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(340px, 0.85fr);
  gap: 18px;
}

.article-feature,
.article-mini {
  border-radius: var(--radius-card);
  overflow: hidden;
  background: var(--surface);
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.article-feature:hover,
.article-mini:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-soft);
}

.article-feature img {
  width: 100%;
  aspect-ratio: 16 / 8.5;
  object-fit: cover;
}

.article-feature-copy {
  padding: 34px;
}

.meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  margin-bottom: 16px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.meta strong {
  color: var(--brand-text);
}

.article-mini-list {
  display: grid;
  gap: 18px;
}

.article-mini {
  display: grid;
  grid-template-columns: 150px 1fr;
  min-height: 162px;
}

.article-mini img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.article-mini-copy {
  padding: 22px;
}

.article-mini h3 {
  margin-bottom: 8px;
  font-size: 20px;
}

.article-mini p {
  margin-bottom: 0;
  font-size: 13px;
}

.cta-band {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) auto;
  align-items: end;
  gap: 40px;
  border-radius: var(--radius-media);
  background: var(--brand);
  padding: clamp(36px, 6vw, 76px);
  color: #1a0d07;
}

.cta-band h2 {
  max-width: 780px;
}

.cta-band p {
  max-width: 620px;
  margin-bottom: 0;
  color: #4b210f;
  font-size: 18px;
}

.site-footer {
  margin-top: 48px;
  background: var(--night);
  color: var(--on-night);
  padding: 58px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr repeat(3, 0.55fr);
  gap: 44px;
}

.footer-corporate-brand {
  display: inline-flex;
  padding-block: 4px;
}

.footer-corporate-brand img {
  width: 194px;
  height: auto;
}

.footer-company p {
  max-width: 380px;
  margin: 24px 0 0;
  color: var(--on-night-muted);
}

.footer-address {
  display: grid;
  gap: 4px;
  max-width: 430px;
  margin-top: 22px;
  color: var(--on-night-muted);
  font-size: 12px;
  font-style: normal;
}

.footer-address a {
  width: max-content;
  color: var(--on-night);
}

.footer-vendor-brand {
  display: flex;
  align-items: center;
  gap: 24px;
  width: max-content;
  margin-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  padding-top: 22px;
}

.footer-vendor-brand span {
  color: var(--on-night-muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-vendor-brand img {
  width: 140px;
  height: auto;
}

.footer-column strong {
  display: block;
  margin-bottom: 16px;
  color: var(--brand-text);
  font-size: 13px;
}

.footer-column a {
  display: block;
  margin-top: 10px;
  color: var(--on-night-muted);
  font-size: 14px;
}

.footer-column a:hover {
  color: var(--on-night);
}

.footer-policy {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  margin-top: 46px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  padding-top: 22px;
}

.footer-policy a {
  color: var(--on-night-muted);
  font-size: 12px;
}

.footer-policy a:hover {
  color: var(--on-night);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 22px;
  color: var(--on-night-muted);
  font-size: 12px;
}

.footer-bottom span:last-child {
  max-width: 720px;
}

.page-hero {
  padding: 62px 0 46px;
}

.page-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.55fr);
  gap: 50px;
  align-items: end;
}

.page-hero p {
  max-width: 650px;
  margin-bottom: 0;
  font-size: 19px;
}

.page-hero-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  overflow: hidden;
  background: var(--line);
}

.page-hero-stats div {
  background: var(--surface);
  padding: 24px;
}

.page-hero-stats strong,
.page-hero-stats span {
  display: block;
}

.page-hero-stats strong {
  font-size: 30px;
  letter-spacing: -0.04em;
}

.page-hero-stats span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
}

.catalog-layout {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 40px;
  padding-bottom: 120px;
}

.filters {
  position: sticky;
  top: calc(var(--header-height) + 24px);
  align-self: start;
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  background: var(--surface);
  padding: 22px;
}

.filter-group + .filter-group {
  margin-top: 22px;
}

.filter-group label,
.filter-group > span {
  display: block;
  margin-bottom: 8px;
  color: var(--ink-2);
  font-size: 13px;
  font-weight: 750;
}

.field,
.select,
.textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-control);
  background: var(--bg);
  color: var(--ink);
  padding: 0 14px;
}

.textarea {
  min-height: 110px;
  padding-block: 12px;
  resize: vertical;
}

.field::placeholder,
.textarea::placeholder {
  color: color-mix(in srgb, var(--muted) 85%, var(--ink));
}

.filter-reset {
  width: 100%;
  margin-top: 22px;
}

.catalog-toolbar {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 24px;
}

.catalog-status {
  color: var(--muted);
}

.catalog-status strong {
  color: var(--ink);
}

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

.product-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  overflow: hidden;
  background: var(--surface);
  transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
}

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

.product-card-media {
  position: relative;
  display: grid;
  place-items: center;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #e8e9f0;
}

[data-theme="dark"] .product-card-media {
  background: #202330;
}

.product-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-card-media img[src*="device-"] {
  object-fit: contain;
  padding: 18px;
}

.product-card-copy {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 26px;
}

.product-card-copy h3 {
  font-size: 25px;
}

.product-card-copy p {
  font-size: 14px;
}

.product-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  margin: auto 0 20px;
  color: var(--muted);
  font-size: 12px;
}

.product-card .text-link {
  justify-content: space-between;
  border-top: 1px solid var(--line);
  padding-top: 17px;
}

.empty-state {
  grid-column: 1 / -1;
  border: 1px dashed var(--line-strong);
  border-radius: var(--radius-card);
  padding: 64px 28px;
  text-align: center;
}

.empty-state h3 {
  font-size: 28px;
}

.product-hero {
  padding: 42px 0 74px;
}

.product-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(480px, 1.1fr);
  align-items: center;
  gap: 60px;
}

.product-hero-copy h1 {
  font-size: clamp(44px, 5.2vw, 72px);
}

.product-hero-copy > p {
  max-width: 620px;
  font-size: 19px;
}

.product-labels {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 22px;
}

.product-label {
  border: 1px solid var(--line);
  border-radius: var(--radius-control);
  background: var(--surface);
  padding: 7px 10px;
  color: var(--ink-2);
  font-size: 12px;
  font-weight: 700;
}

.product-hero-media {
  display: grid;
  place-items: center;
  min-height: 520px;
  border-radius: var(--radius-media);
  overflow: hidden;
  background: #e8e9f0;
}

[data-theme="dark"] .product-hero-media {
  background: #202330;
}

.product-hero-media img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: contain;
}

.product-hero-media img[src*="device-"] {
  object-fit: contain;
  padding: 42px;
}

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

.spec-highlight {
  min-height: 190px;
  border-radius: var(--radius-card);
  background: var(--surface);
  padding: 26px;
}

.spec-highlight dt {
  margin-bottom: 22px;
  color: var(--muted);
  font-size: 13px;
}

.spec-highlight dd {
  margin: 0;
  font-size: clamp(22px, 2.2vw, 34px);
  line-height: 1.1;
  letter-spacing: -0.035em;
}

.product-gallery-section {
  padding-top: 34px;
}

.static-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: start;
  gap: 16px;
}

.static-gallery figure {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius-card);
  background: var(--surface);
}

.static-gallery img {
  display: block;
  width: 100%;
  height: clamp(210px, 22vw, 300px);
  object-fit: contain;
  background: #e8e9f0;
}

[data-theme="dark"] .static-gallery img {
  background: #202330;
}

.static-gallery figcaption {
  padding: 14px 16px 16px;
  color: var(--muted);
  font-size: 14px;
}

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

.seo-faq article {
  border-top: 1px solid var(--line);
  padding: 24px 0 8px;
}

.seo-faq h3 {
  margin-bottom: 10px;
  font-size: clamp(20px, 2vw, 27px);
}

.seo-faq p {
  max-width: 65ch;
  margin: 0;
  color: var(--muted);
}

@media (max-width: 760px) {
  .static-gallery,
  .seo-faq {
    grid-template-columns: 1fr;
  }
}

.product-gallery {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 250px;
  align-items: start;
  gap: 16px;
}

.gallery-stage {
  margin: 0;
  border-radius: var(--radius-media);
  overflow: hidden;
  background: var(--surface);
}

.gallery-stage-media {
  display: grid;
  place-items: center;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #e8e9f0;
}

[data-theme="dark"] .gallery-stage-media,
[data-theme="dark"] .gallery-thumbnail-media {
  background: #202330;
}

.gallery-stage-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: opacity 180ms ease, transform 260ms cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-stage:hover .gallery-stage-media img {
  transform: scale(1.015);
}

.gallery-stage figcaption {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  min-height: 68px;
  padding: 14px 20px;
  color: var(--muted);
  font-size: 13px;
}

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

.gallery-thumbnail {
  display: grid;
  grid-template-columns: 96px 1fr;
  align-items: center;
  gap: 14px;
  min-height: 96px;
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  overflow: hidden;
  background: var(--surface);
  padding: 8px;
  color: var(--muted);
  text-align: left;
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, background-color 180ms ease, color 180ms ease;
}

.gallery-thumbnail:hover {
  transform: translateY(-2px);
  border-color: var(--line-strong);
  color: var(--ink);
}

.gallery-thumbnail:active {
  transform: translateY(1px) scale(0.99);
}

.gallery-thumbnail.is-active {
  border-color: var(--brand);
  background: var(--brand-soft);
  color: var(--ink);
}

.gallery-thumbnail-media {
  display: grid;
  place-items: center;
  width: 96px;
  height: 78px;
  border-radius: 14px;
  overflow: hidden;
  background: #e8e9f0;
}

.gallery-thumbnail-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.gallery-thumbnail strong {
  padding-right: 6px;
  font-size: 13px;
  line-height: 1.3;
}

.product-content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
  gap: 68px;
}

.content-block + .content-block {
  margin-top: 70px;
}

.content-block h2 {
  font-size: clamp(31px, 3.5vw, 48px);
}

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

.capability {
  min-height: 120px;
  border-top: 1px solid var(--line);
  padding: 20px 14px 20px 0;
  font-weight: 700;
}

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

.use-case {
  border-radius: var(--radius-card);
  background: var(--surface-2);
  padding: 22px;
}

.use-case strong {
  display: block;
}

.product-sidebar {
  align-self: start;
}

.sidebar-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  background: var(--surface);
  padding: 26px;
}

.sidebar-panel + .sidebar-panel {
  margin-top: 18px;
}

.sidebar-panel h3 {
  font-size: 22px;
}

.sidebar-panel li {
  color: var(--muted);
}

.sidebar-panel .button {
  width: 100%;
  margin-top: 22px;
}

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

.related-link {
  min-height: 190px;
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  background: var(--surface);
  padding: 26px;
}

.related-link span {
  display: block;
  margin-bottom: 16px;
  color: var(--brand-text);
  font-size: 12px;
  font-weight: 700;
}

.related-link strong {
  font-size: 22px;
}

.articles-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 34px;
}

.category-button {
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius-control);
  background: var(--surface);
  padding: 0 15px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
}

.category-button.is-active {
  border-color: var(--brand);
  background: var(--brand-soft);
  color: var(--ink);
}

.articles-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 18px;
  padding-bottom: 120px;
}

.article-card {
  grid-column: span 4;
  border-radius: var(--radius-card);
  overflow: hidden;
  background: var(--surface);
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.article-card:nth-child(1),
.article-card:nth-child(5) {
  grid-column: span 8;
}

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

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

.article-card-copy {
  padding: 26px;
}

.article-card h2 {
  font-size: clamp(24px, 2.5vw, 36px);
}

.article-card p {
  margin-bottom: 0;
}

.article-hero {
  padding: 54px 0 42px;
}

.article-hero-copy {
  max-width: 1020px;
}

.article-hero h1 {
  max-width: 1020px;
  font-size: clamp(46px, 6vw, 82px);
}

.article-hero .lead {
  max-width: 760px;
  font-size: 20px;
}

.article-cover {
  width: var(--container);
  height: min(62vw, 700px);
  margin: 0 auto;
  border-radius: var(--radius-media);
  overflow: hidden;
}

.article-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.article-body {
  display: grid;
  grid-template-columns: 220px minmax(0, 760px) 1fr;
  gap: 50px;
  padding: 76px 0 120px;
}

.article-toc {
  position: sticky;
  top: calc(var(--header-height) + 28px);
  align-self: start;
}

.article-toc strong {
  display: block;
  margin-bottom: 14px;
  color: var(--brand-text);
  font-size: 12px;
}

.article-toc a {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-size: 13px;
}

.article-content section + section {
  margin-top: 70px;
}

.article-content h2 {
  font-size: clamp(32px, 3.5vw, 46px);
}

.article-content p,
.article-content li {
  color: var(--ink-2);
  font-size: 18px;
  line-height: 1.72;
}

.article-content ul {
  margin-top: 24px;
  border-radius: var(--radius-card);
  background: var(--surface-2);
  padding: 26px 26px 26px 48px;
}

.article-aside {
  align-self: start;
  border-left: 1px solid var(--line);
  padding-left: 30px;
}

.article-aside p {
  font-size: 14px;
}

.search-page {
  min-height: 70dvh;
  padding: 64px 0 120px;
}

.search-page-form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  max-width: 900px;
  margin-bottom: 44px;
}

.search-page-form .field {
  min-height: 58px;
  font-size: 18px;
}

.search-results {
  display: grid;
  gap: 12px;
  max-width: 980px;
}

.search-result {
  display: grid;
  grid-template-columns: 150px 1fr auto;
  align-items: center;
  gap: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  background: var(--surface);
  padding: 18px;
}

.search-result img {
  width: 150px;
  height: 100px;
  border-radius: 14px;
  object-fit: cover;
}

.search-result h3 {
  font-size: 21px;
}

.search-result p {
  margin-bottom: 0;
  font-size: 13px;
}

.search-result > span {
  color: var(--brand-text);
  font-weight: 800;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(7, 8, 15, 0.74);
}

.modal-panel {
  width: min(640px, 100%);
  max-height: calc(100dvh - 40px);
  overflow: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius-media);
  background: var(--surface);
  box-shadow: var(--shadow);
  padding: clamp(28px, 5vw, 48px);
}

.modal-top {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 26px;
}

.modal-top h2 {
  margin-bottom: 8px;
  font-size: 38px;
}

.modal-close {
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  border: 1px solid var(--line);
  border-radius: var(--radius-control);
  background: var(--surface-2);
  cursor: pointer;
}

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

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

.form-field label {
  font-size: 13px;
  font-weight: 700;
}

.form-field-wide {
  grid-column: 1 / -1;
}

.form-help {
  color: var(--muted);
  font-size: 12px;
}

.form-message {
  margin-top: 16px;
  border-radius: var(--radius-control);
  background: var(--brand-soft);
  padding: 14px;
  color: var(--ink-2);
  font-size: 13px;
}

.modal .button {
  margin-top: 20px;
}

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

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

.skeleton {
  min-height: 160px;
  border-radius: var(--radius-card);
  background: linear-gradient(90deg, var(--surface-2), var(--surface-3), var(--surface-2));
  background-size: 200% 100%;
  animation: skeleton 1.3s ease-in-out infinite;
}

@keyframes skeleton {
  to { background-position: -200% 0; }
}

@media (max-width: 1120px) {
  .vendor-brand {
    padding-inline: 14px;
  }

  .vendor-logo-full {
    display: none;
  }

  .vendor-logo-mark {
    display: block;
  }

  .desktop-nav {
    gap: 18px;
  }

  .desktop-nav a:nth-child(4) {
    display: none;
  }

  .hero-grid {
    grid-template-columns: 0.92fr 1.08fr;
  }

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

  .feature-product {
    grid-column: 1 / -1;
    grid-row: auto;
    min-height: 560px;
  }

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

  .workflow-step:nth-child(3) {
    border-right: 0;
  }

  .workflow-step:nth-child(n + 4) {
    border-top: 1px solid var(--line);
  }

  .product-content-grid {
    gap: 36px;
  }

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

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

  .gallery-thumbnail {
    grid-template-columns: 1fr;
    align-content: start;
    min-height: 0;
  }

  .gallery-thumbnail-media {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 10;
  }

  .article-body {
    grid-template-columns: 190px minmax(0, 1fr);
  }

  .article-aside {
    display: none;
  }
}

@media (max-width: 900px) {
  :root {
    --container: min(100% - 32px, 720px);
    --header-height: 66px;
  }

  h1 {
    font-size: clamp(40px, 11vw, 62px);
  }

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

  .desktop-nav,
  .header-actions .button {
    display: none;
  }

  .theme-switch-header {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
    align-items: center;
  }

  .mobile-nav.is-open {
    display: grid;
    gap: 2px;
    width: var(--container);
    margin: 0 auto;
    border-top: 1px solid var(--line);
    padding: 10px 0 16px;
  }

  .mobile-nav a,
  .mobile-nav button {
    min-height: 46px;
    border: 0;
    border-radius: var(--radius-control);
    background: transparent;
    padding: 0 12px;
    text-align: left;
    font-weight: 700;
  }

  .mobile-nav a:hover,
  .mobile-nav button:hover {
    background: var(--surface-2);
  }

  .mobile-nav .theme-switch-mobile {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto 40px;
    gap: 10px;
    justify-content: initial;
    width: 100%;
    min-height: 54px;
    border: 1px solid var(--line);
    border-radius: var(--radius-control);
    background: var(--surface);
    padding: 0 12px;
  }

  .theme-switch-mobile .theme-switch-label,
  .theme-switch-mobile .theme-switch-state {
    display: block;
    min-width: 0;
    line-height: 1.2;
  }

  .theme-switch-mobile .theme-switch-label {
    color: var(--ink);
    font-size: 14px;
    font-weight: 750;
    text-align: left;
  }

  .theme-switch-mobile .theme-switch-state {
    color: var(--muted);
    font-size: 12px;
    font-weight: 600;
  }

  .header-search-inner {
    padding: 12px 0 16px;
  }

  .header-search-form {
    grid-template-columns: 28px minmax(0, 1fr) auto 38px;
    gap: 6px;
  }

  .header-search-leading-icon {
    width: 28px;
  }

  .header-search-form input {
    min-height: 44px;
    padding-inline: 11px;
    font-size: 16px;
  }

  .header-search-submit {
    padding-inline: 12px;
  }

  .header-quick-results {
    right: 0;
    left: 0;
    width: 100%;
    max-height: min(62dvh, 520px);
  }

  .hero {
    padding-top: 18px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .hero-copy {
    min-height: 520px;
    padding: 42px 28px;
  }

  .hero-media {
    min-height: 360px;
  }

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

  .fact-grid > div:nth-child(3) {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .fact-grid > div:nth-child(4) {
    border-top: 1px solid var(--line);
  }

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

  .task-tabs {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 6px;
  }

  .task-tab {
    min-width: max-content;
    scroll-snap-align: start;
  }

  .task-panel {
    grid-template-columns: 1fr;
  }

  .product-showcase,
  .article-feature-grid,
  .cta-band,
  .page-hero-grid,
  .product-hero-grid,
  .product-content-grid {
    grid-template-columns: 1fr;
  }

  .feature-product {
    min-height: 500px;
  }

  .side-product {
    grid-template-columns: 0.8fr 1.2fr;
  }

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

  .article-mini {
    grid-template-columns: 1fr;
  }

  .article-mini img {
    aspect-ratio: 16 / 9;
  }

  .cta-band {
    align-items: start;
  }

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

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

  .filters {
    position: static;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .filter-group + .filter-group {
    margin-top: 0;
  }

  .filter-reset {
    margin-top: 0;
    align-self: end;
  }

  .product-hero-media {
    order: -1;
    min-height: 400px;
  }

  .product-hero-media img {
    min-height: 400px;
  }

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

  .product-sidebar {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .sidebar-panel + .sidebar-panel {
    margin-top: 0;
  }

  .article-card,
  .article-card:nth-child(1),
  .article-card:nth-child(5) {
    grid-column: span 6;
  }

  .article-body {
    grid-template-columns: 1fr;
  }

  .article-toc {
    position: static;
    border-bottom: 1px solid var(--line);
    padding-bottom: 24px;
  }

  .article-toc a {
    display: inline-block;
    margin-right: 14px;
  }
}

@media (max-width: 620px) {
  :root {
    --container: calc(100% - 24px);
    --radius-card: 18px;
    --radius-media: 20px;
  }

  .corporate-logo {
    width: 142px;
  }

  .brand-divider {
    height: 30px;
    margin-right: 4px;
    margin-left: 8px;
  }

  .vendor-brand {
    padding-inline: 8px;
  }

  .header-actions {
    gap: 6px;
  }

  .header-actions .icon-button {
    display: none;
  }

  .hero-copy {
    min-height: 500px;
    padding: 34px 22px;
  }

  .hero-media {
    min-height: 280px;
  }

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

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

  .fact-grid > div + div,
  .fact-grid > div:nth-child(3) {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .section {
    padding: 76px 0;
  }

  .task-panel {
    min-height: 0;
    padding: 28px 22px;
  }

  .feature-product {
    min-height: 520px;
  }

  .feature-product-copy {
    right: 12px;
    bottom: 12px;
    left: 12px;
    padding: 22px;
  }

  .side-product,
  .article-mini-list,
  .footer-grid,
  .product-grid,
  .filters,
  .product-sidebar,
  .related-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .side-product img {
    min-height: 230px;
  }

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

  .workflow-step,
  .workflow-step + .workflow-step {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
    padding: 24px 0;
  }

  .article-mini-list {
    display: grid;
  }

  .article-mini {
    grid-template-columns: 120px 1fr;
  }

  .article-mini img {
    height: 100%;
  }

  .footer-bottom {
    display: grid;
  }

  .footer-policy {
    display: grid;
  }

  .page-hero {
    padding-top: 42px;
  }

  .page-hero-stats,
  .spec-highlight-grid,
  .capability-grid {
    grid-template-columns: 1fr;
  }

  .catalog-toolbar {
    display: grid;
  }

  .product-hero-media,
  .product-hero-media img {
    min-height: 300px;
  }

  .product-hero-media img[src*="device-"] {
    padding: 24px;
  }

  .gallery-stage figcaption {
    align-items: flex-start;
  }

  .gallery-thumbnails {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 6px;
  }

  .gallery-thumbnail {
    min-width: 168px;
    scroll-snap-align: start;
  }

  .article-card,
  .article-card:nth-child(1),
  .article-card:nth-child(5) {
    grid-column: 1 / -1;
  }

  .article-cover {
    height: 66vw;
  }

  .article-body {
    padding-top: 48px;
  }

  .article-content p,
  .article-content li {
    font-size: 17px;
  }

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

  .search-result {
    grid-template-columns: 100px 1fr;
  }

  .search-result img {
    width: 100px;
    height: 82px;
  }

  .search-result > span {
    display: none;
  }

  .form-field-wide {
    grid-column: auto;
  }
}

@media (max-width: 460px) {
  .header-search-leading-icon {
    display: none;
  }

  .header-search-form {
    grid-template-columns: minmax(0, 1fr) auto 38px;
  }

  .header-quick-results .search-result {
    grid-template-columns: 52px minmax(0, 1fr) auto;
  }

  .header-quick-results .search-result img {
    width: 52px;
    height: 40px;
  }
}

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

  .theme-switch,
  .theme-switch-track,
  .theme-switch-knob {
    animation: none !important;
    transition: none;
  }

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

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