:root {
  --bg: #181a1b;
  --surface: #222426;
  --text: #f4f1ea;
  --muted: #c4bdb1;
  --line: #4a4740;
  --paper: #f4f1ea;
  --ink: #141414;
  --accent: #d7ff38;
  --nav-hover: #ff3b30;
  --ok: #4adf8f;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    var(--bg);
  background-size: 48px 48px;
  line-height: 1.5;
  overflow-x: hidden;
}

a {
  color: inherit;
}

a:hover,
button:hover {
  color: var(--nav-hover);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  overflow: visible;
  background: rgba(24, 26, 27, 0.9);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

.nav,
.section-inner,
.footer-inner {
  width: min(1240px, calc(100% - 32px));
  margin: 0 auto;
}

.nav {
  width: min(1600px, calc(100% - 28px));
  min-height: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.brand {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 900;
  text-transform: uppercase;
}

.brand:hover {
  color: var(--nav-hover);
}

.brand:hover .brand-mark {
  border-color: var(--nav-hover);
  color: var(--nav-hover);
}

.brand-mark {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border: 0;
  overflow: hidden;
  background: transparent;
  color: var(--accent);
  font-size: 12px;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.nav-links {
  flex: 1 1 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  min-width: 0;
  padding-right: clamp(72px, 8vw, 150px);
  overflow-x: auto;
  scrollbar-width: none;
}

.nav-links::-webkit-scrollbar {
  display: none;
}

.nav-links a {
  min-height: 36px;
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  padding: 0 7px;
  border: 1px solid transparent;
  color: var(--muted);
  text-decoration: none;
  font-size: clamp(10px, 0.68vw, 12px);
  text-transform: uppercase;
  white-space: nowrap;
}

.nav-links a:hover {
  border-color: var(--line);
  color: var(--nav-hover);
}

.nav-links .home-icon-link {
  width: 38px;
  justify-content: center;
  padding: 0;
  color: var(--muted);
}

.home-icon-link svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.home-icon-link:hover,
.home-icon-link:focus-visible {
  color: var(--nav-hover);
}

.floating-home-link {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 900;
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 8px;
  background: rgba(244, 241, 247, 0.96);
  color: #ff2350;
  opacity: 0;
  pointer-events: none;
  text-decoration: none;
  transform: translateY(10px);
  transition: opacity 180ms ease, transform 180ms ease, background 180ms ease;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.18);
}

.floating-home-link.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.floating-home-link svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.floating-home-link:hover,
.floating-home-link:focus-visible {
  background: #fff;
  color: #ff003d;
}

.category-switcher,
.language-switcher {
  position: relative;
  z-index: 30;
}

.category-toggle,
.language-toggle {
  min-height: 36px;
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 0 7px;
  border: 1px solid transparent;
  background: transparent;
  color: var(--muted);
  font: inherit;
  font-size: clamp(10px, 0.68vw, 12px);
  text-transform: uppercase;
  white-space: nowrap;
  cursor: pointer;
}

.nav-links .button {
  min-height: 36px;
  padding: 0 8px;
}

.category-toggle:hover,
.category-switcher.is-open .category-toggle,
.language-toggle:hover,
.language-switcher.is-open .language-toggle {
  border-color: var(--line);
}

.category-toggle:hover,
.language-toggle:hover {
  color: var(--nav-hover);
}

.category-caret,
.language-icon,
.language-caret {
  color: var(--accent);
  font-size: 16px;
  line-height: 1;
}

.category-caret::before,
.language-caret::before {
  content: "^";
}

.language-current {
  display: none;
}

.category-menu,
.language-menu {
  position: fixed;
  top: 56px;
  left: 0;
  width: min(430px, calc(100vw - 32px));
  max-height: min(620px, calc(100vh - 92px));
  display: none;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 4px 18px;
  overflow-y: auto;
  padding: 8px;
  border: 1px solid var(--line);
  background: rgba(244, 241, 234, 0.98);
  color: var(--ink);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.35);
  z-index: 1000;
}

.category-menu {
  width: min(260px, calc(100vw - 20px));
  max-height: 420px;
  grid-template-columns: 1fr;
  gap: 0;
  overflow-x: hidden;
  padding: 8px;
  border-color: rgba(0, 0, 0, 0.08);
  border-radius: 10px;
  background: #fff;
  color: #050505;
  scrollbar-color: #8a8a8a transparent;
  scrollbar-width: thin;
}

.language-menu {
  left: auto;
  right: 0;
  width: min(420px, calc(100vw - 24px));
  max-height: min(460px, calc(100vh - 92px));
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 4px 8px;
  overflow-x: hidden;
  padding: 8px;
  border-color: rgba(0, 0, 0, 0.08);
  border-radius: 10px;
  background: #fff;
  color: #050505;
  scrollbar-color: #8a8a8a transparent;
  scrollbar-width: thin;
}

.language-menu::-webkit-scrollbar {
  width: 10px;
}

.language-menu::-webkit-scrollbar-track {
  background: transparent;
}

.language-menu::-webkit-scrollbar-thumb {
  min-height: 56px;
  border: 2px solid #fff;
  border-radius: 999px;
  background: #8a8a8a;
}

.category-menu::-webkit-scrollbar {
  width: 10px;
}

.category-menu::-webkit-scrollbar-track {
  background: transparent;
}

.category-menu::-webkit-scrollbar-thumb {
  min-height: 56px;
  border: 2px solid #fff;
  border-radius: 999px;
  background: #8a8a8a;
}

.category-switcher.is-open .category-menu,
.language-switcher.is-open .language-menu {
  display: grid;
}

.category-menu a,
.language-option {
  min-height: 40px;
  display: flex;
  align-items: center;
  padding: 0 12px;
  border: 1px solid transparent;
  background: transparent;
  color: #47546b;
  font: inherit;
  font-size: 14px;
  text-align: left;
  cursor: pointer;
}

.category-menu a {
  min-height: 56px;
  padding: 0 12px;
  white-space: normal;
  overflow-wrap: anywhere;
  color: #050505;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  text-transform: none;
}

.category-menu .category-catalogue {
  min-height: auto;
  align-items: flex-start;
  flex-direction: column;
  margin-bottom: 10px;
  padding: 10px 12px 12px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 0 0 8px 8px;
  color: #4d5964;
  font-weight: 700;
  line-height: 1.45;
}

.category-menu .category-catalogue span {
  display: block;
}

.category-menu a:hover,
.language-option:hover,
.language-option.is-active {
  background: rgba(215, 255, 56, 0.18);
}

.language-option.is-active {
  color: #566b00;
}

.category-menu a:hover {
  background: rgba(0, 0, 0, 0.04);
  color: var(--nav-hover);
}

.category-menu .category-catalogue:hover {
  background: rgba(0, 0, 0, 0.04);
  color: var(--nav-hover);
}

.google-translate-host,
.goog-te-banner-frame,
.goog-te-gadget,
.skiptranslate {
  display: none !important;
}

body {
  top: 0 !important;
}

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

  .nav-links {
    gap: 2px;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .nav-links::-webkit-scrollbar {
    display: none;
  }

  .nav-links a,
  .category-toggle,
  .language-toggle {
    padding: 0 7px;
    font-size: 12px;
  }

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

@media (max-width: 1480px) {
  .nav {
    width: min(100%, calc(100% - 20px));
  }

  .brand {
    gap: 8px;
  }

  .brand span:last-child {
    max-width: 118px;
    font-size: 18px;
    line-height: 1.1;
  }
}

@media (max-height: 860px) and (min-width: 901px) {
  .hero {
    padding: 22px 0 20px;
  }

  .hero h1 {
    max-width: min(100%, 900px);
    margin-top: 6px;
    font-size: clamp(30px, 2.75vw, 52px);
  }

  .hero-copy {
    max-width: 780px;
    margin-top: 8px;
    padding: 5px 12px;
    font-size: clamp(14px, 1vw, 16px);
    line-height: 1.3;
  }

  .hero-signals {
    margin-top: 12px;
  }

  .signal {
    min-height: 54px;
    padding: 8px 10px;
  }

  .signal strong {
    font-size: 18px;
  }

  .signal span {
    font-size: 10px;
  }

  .hero-search {
    margin-top: 14px;
  }

  .hero-search input,
  .hero-search button {
    min-height: 46px;
  }

  .hero .hero-actions {
    margin-top: 18px;
  }

  .hero .button {
    min-height: 46px;
    padding: 0 20px;
    font-size: 15px;
  }
}

.button {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  border: 1px solid var(--text);
  background: transparent;
  color: var(--text);
  text-decoration: none;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  white-space: nowrap;
}

.button.accent {
  border-color: var(--accent);
  background: var(--accent);
  color: var(--ink);
}

.button.secondary {
  border-color: var(--line);
  color: var(--muted);
}

.button-icon {
  width: 62px;
  height: 24px;
  margin-left: 8px;
  object-fit: contain;
  transform: scaleX(1.7);
  transform-origin: left center;
  transition: filter 160ms ease, transform 160ms ease;
}

.button:hover .button-icon {
  filter: invert(24%) sepia(99%) saturate(4917%) hue-rotate(350deg) brightness(102%) contrast(109%);
  transform: translateX(2px) scaleX(1.9);
}

.button:hover,
.row-link:hover {
  color: var(--nav-hover);
  transform: translateY(-1px);
}

.hero {
  position: relative;
  min-height: calc(100svh - 56px);
  display: flex;
  align-items: center;
  overflow: clip;
  padding: clamp(24px, 4vh, 42px) 0 clamp(18px, 3vh, 28px);
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(rgba(24, 26, 27, 0.2), rgba(24, 26, 27, 0.32)),
    url("assets/hero-shipping-port.png") center 28% / cover no-repeat;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 48px 48px;
}

.hero .section-inner {
  position: relative;
  z-index: 1;
}

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

.hero-content {
  display: grid;
  justify-items: center;
  text-align: center;
  min-height: 0;
  align-content: center;
}

.hero h1,
.hero-kicker,
.hero-copy {
  text-shadow:
    0 2px 8px rgba(0, 0, 0, 0.78),
    0 1px 1px rgba(0, 0, 0, 0.6);
}

.hero-copy {
  padding: 8px 16px;
  border-radius: 12px;
  background: rgba(16, 16, 16, 0.26);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(380px, 0.95fr);
  gap: 18px;
  align-items: stretch;
}

.command-panel,
.live-panel,
.tool-panel,
.compare-card,
.step,
.notice,
.article-card,
.product-card,
.tile {
  border: 1px solid var(--line);
  background: rgba(34, 36, 38, 0.88);
}

.command-panel {
  min-height: 530px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
  background: rgba(28, 30, 31, 0.5);
  backdrop-filter: blur(2px);
}

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

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.02;
  letter-spacing: 0;
}

h1 {
  max-width: 820px;
  font-size: clamp(48px, 8vw, 104px);
  text-transform: uppercase;
}

.hero h1 {
  max-width: min(100%, 980px);
  margin-top: 8px;
  font-size: clamp(32px, 3.15vw, 60px);
  line-height: 1.04;
  font-weight: 900;
  overflow-wrap: break-word;
  text-wrap: balance;
}

.hero-kicker {
  margin: 0;
  padding: 5px 12px;
  border-radius: 999px;
  background: rgba(16, 16, 16, 0.2);
  color: var(--accent);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

h2 {
  font-size: clamp(28px, 3.8vw, 46px);
  text-transform: uppercase;
}

h3 {
  font-size: 19px;
}

.hero-copy {
  max-width: 820px;
  margin: 10px 0 0;
  color: var(--text);
  font-size: clamp(15px, 1.15vw, 18px);
  font-weight: 700;
  line-height: 1.34;
}

.hero-search {
  position: relative;
  width: 100%;
  max-width: 980px;
  margin-top: 18px;
  padding: 0;
  border: 2px solid rgba(255, 255, 255, 0.96);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.18);
  overflow: hidden;
}

.hero-search label {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.hero-search-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(120px, 156px);
  gap: 0;
  align-items: stretch;
}

.hero-search input {
  width: 100%;
  min-height: 52px;
  padding: 0 22px;
  border: 0;
  background: transparent;
  color: #2a2a2a;
  font: inherit;
  font-size: 16px;
  outline: none;
}

.hero-search input:focus {
  box-shadow: none;
}

.hero-search input::placeholder {
  color: rgba(42, 42, 42, 0.58);
}

.hero-search button {
  min-height: 52px;
  padding: 0 22px;
  border: 0;
  border-left: 1px solid rgba(0, 0, 0, 0.12);
  background: var(--accent);
  color: var(--ink);
  font: inherit;
  font-size: 16px;
  font-weight: 900;
  cursor: pointer;
  box-shadow:
    0 0 22px rgba(215, 255, 56, 0.42),
    0 0 54px rgba(215, 255, 56, 0.24);
}

.hero-search button:hover {
  color: var(--ink);
  box-shadow:
    0 0 30px rgba(215, 255, 56, 0.58),
    0 0 78px rgba(215, 255, 56, 0.34);
}

.hero-actions,
.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.hero .hero-actions {
  justify-content: center;
  margin-top: 24px;
}

.hero .button {
  min-height: 50px;
  padding: 0 24px;
  border-radius: 999px;
  font-size: 16px;
  text-transform: none;
}

.hero .button.accent {
  border-color: var(--accent);
  background: var(--accent);
  color: var(--ink);
  box-shadow:
    0 0 22px rgba(215, 255, 56, 0.44),
    0 0 62px rgba(215, 255, 56, 0.26);
}

.hero .button.secondary {
  border-color: rgba(255, 255, 255, 0.96);
  background: rgba(12, 14, 15, 0.58);
  color: #fff;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.86);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.18) inset,
    0 12px 30px rgba(0, 0, 0, 0.22);
}

.hero-preview {
  width: min(100%, 1720px);
  margin-top: auto;
  padding-top: 30px;
}

.signal-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 22px;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.hero-signals {
  width: min(100%, 980px);
  margin-top: 16px;
  background: rgba(12, 14, 15, 0.58);
  backdrop-filter: blur(4px);
}

.page-signals {
  margin: 22px 0 4px;
}

.signal {
  min-height: 64px;
  padding: 10px 12px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(28, 30, 31, 0.2);
}

.signal strong {
  display: block;
  font-size: 20px;
  line-height: 1.1;
}

.signal span {
  color: var(--muted);
  font-size: 11px;
  text-transform: uppercase;
  overflow-wrap: anywhere;
}

.live-panel {
  display: flex;
  flex-direction: column;
  padding: 14px;
  background: rgba(28, 30, 31, 0.42);
  backdrop-filter: blur(2px);
}

.panel-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 8px 8px 16px;
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
}

.status-dot {
  width: 10px;
  height: 10px;
  display: inline-block;
  margin-right: 8px;
  background: var(--ok);
}

.preview-stack {
  display: grid;
  gap: 10px;
}

.preview-item {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
  min-height: 112px;
  padding: 12px 20px;
  border: 1px solid var(--line);
  background: rgba(16, 16, 16, 0.68);
}

.preview-item img {
  width: 112px;
  height: 88px;
  object-fit: cover;
}

.preview-item p {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.pill,
.tag {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 0 9px;
  border: 1px solid currentColor;
  color: var(--accent);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.mini-meta {
  margin: 8px 0 0;
  font-size: 13px;
}

.price-text {
  display: inline-block;
  white-space: nowrap;
  word-break: keep-all;
  overflow-wrap: normal;
  unicode-bidi: isolate;
}

section {
  padding: 58px 0;
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 520px);
  gap: 28px;
  align-items: end;
  margin-bottom: 22px;
}

.section-head p {
  margin: 0;
  color: var(--muted);
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  background: #202224;
}

.find-table {
  width: 100%;
  min-width: 860px;
  border-collapse: collapse;
}

.find-table th,
.find-table td {
  padding: 14px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: middle;
}

.find-table th {
  color: var(--muted);
  background: #2a2c2e;
  font-size: 11px;
  text-transform: uppercase;
}

.find-table th:nth-child(4),
.find-table th:nth-child(5),
.find-table .optional-column {
  display: none;
}

.find-table td {
  color: var(--text);
  font-size: 14px;
}

.thumb-cell {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 230px;
}

.thumb-cell img {
  width: 58px;
  height: 58px;
  object-fit: cover;
}

.thumb-cell .product-summary {
  color: var(--muted);
  font-size: 13px;
}

.preview-table th,
.preview-table td {
  padding: 12px;
}

.featured-table th:nth-child(4),
.featured-table th:nth-child(5),
.featured-table .optional-column {
  display: table-cell;
}

.featured-table th,
.featured-table td {
  padding: 12px;
}

.featured-table .thumb-cell {
  min-width: 260px;
}

.featured-table .product-summary {
  max-width: 290px;
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-height: 1.4;
}

.preview-table .thumb-cell {
  min-width: 260px;
}

.preview-table .thumb-cell img {
  width: 52px;
  height: 52px;
}

.preview-table .product-summary {
  max-width: 300px;
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-height: 1.4;
}

.table-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 14px;
}

.table-controls p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.row-link {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  border: 1px solid var(--accent);
  background: var(--accent);
  color: var(--ink);
  text-decoration: none;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.tool-grid,
.category-grid,
.product-grid,
.article-grid,
.steps,
.compare-grid {
  display: grid;
  gap: 12px;
}

.tool-grid,
.steps,
.compare-grid,
.article-grid,
.product-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

.tool-panel,
.tile,
.step,
.compare-card,
.notice,
.article-card,
.product-body {
  padding: 18px;
}

.tool-panel {
  min-height: 210px;
}

.tool-panel strong,
.tile span,
.category-count,
.product-meta,
.article-card time,
.step span {
  color: var(--accent);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.tool-panel p,
.tile p,
.product-body p,
.article-card p,
.step p,
.compare-card p,
.notice p,
.text-page p,
.text-page li {
  color: var(--muted);
}

.category-count {
  display: inline-flex;
  width: max-content;
  min-height: 32px;
  align-items: center;
  margin-top: 4px;
  padding: 0 10px;
  border: 1px solid var(--accent);
  background: rgba(215, 255, 56, 0.08);
}

.band {
  padding-top: 18px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    #1b1d1e;
  background-size: 48px 48px;
  color: var(--text);
}

.band .section-head {
  align-items: center;
  margin-bottom: 18px;
}

.band .section-head h2 {
  max-width: 720px;
  font-size: clamp(30px, 3.5vw, 42px);
  line-height: 1.08;
}

.band .section-head p,
.band .product-body p,
.band .product-meta,
.band .tile p {
  color: var(--muted);
}

.band .eyebrow,
.band .tag {
  color: var(--accent);
}

.band .product-card,
.band .tile {
  background: rgba(34, 36, 38, 0.82);
  border-color: var(--line);
  color: var(--text);
}

.image-tile {
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 14px;
  overflow: hidden;
}

.image-tile img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: rgba(255, 255, 255, 0.06);
  transform: translateY(0) scale(1);
  transition: transform 180ms ease;
}

.image-tile:hover img,
.image-tile:focus-visible img {
  transform: translateY(-4px) scale(1.04);
}

.product-card {
  overflow: hidden;
}

.product-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.product-meta {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin: 14px 0;
}

.dark-band {
  background: #17191a;
  color: var(--text);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.article-card {
  min-height: 240px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-decoration: none;
}

.step span {
  display: block;
  margin-bottom: 14px;
}

.tile {
  min-height: 170px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-decoration: none;
}

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

.text-page .section-inner {
  max-width: 980px;
}

.text-page h1 {
  color: var(--text);
  font-size: clamp(38px, 6vw, 74px);
  text-transform: uppercase;
}

.text-page h2 {
  margin-top: 42px;
  font-size: 32px;
}

.text-page ul {
  padding-left: 20px;
}

.notice {
  margin-top: 28px;
}

.site-footer {
  padding: 30px 0;
  border-top: 1px solid var(--line);
  background: #17191a;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  color: var(--muted);
  font-size: 13px;
}

@media (max-height: 860px) and (min-width: 901px) {
  .hero {
    padding: 22px 0 20px;
  }

  .hero h1 {
    max-width: min(100%, 900px);
    margin-top: 6px;
    font-size: clamp(30px, 2.75vw, 52px);
  }

  .hero-copy {
    max-width: 780px;
    margin-top: 8px;
    padding: 5px 12px;
    font-size: clamp(14px, 1vw, 16px);
    line-height: 1.3;
  }

  .hero-signals {
    margin-top: 12px;
  }

  .signal {
    min-height: 54px;
    padding: 8px 10px;
  }

  .signal strong {
    font-size: 18px;
  }

  .signal span {
    font-size: 10px;
  }

  .hero-search {
    margin-top: 14px;
  }

  .hero-search input,
  .hero-search button {
    min-height: 46px;
  }

  .hero .hero-actions {
    margin-top: 18px;
  }

  .hero .button {
    min-height: 46px;
    padding: 0 20px;
    font-size: 15px;
  }
}

@media (max-width: 900px) {
  .hero {
    min-height: auto;
    padding: 36px 0 32px;
    background:
      linear-gradient(rgba(24, 26, 27, 0.22), rgba(24, 26, 27, 0.36)),
      url("assets/hero-shipping-port.png") 52% 24% / cover no-repeat;
  }

  .nav {
    width: min(100%, calc(100% - 24px));
    align-items: flex-start;
    flex-direction: column;
    padding: 12px 0;
  }

  .nav-links {
    width: 100%;
    overflow-x: auto;
    padding-right: 0;
    padding-bottom: 4px;
    justify-content: flex-start;
  }

  .category-switcher,
  .language-switcher {
    position: static;
  }

  .category-menu,
  .language-menu {
    position: fixed;
    top: 74px;
    left: 16px;
    right: 16px;
    width: auto;
  }

  .category-menu {
    right: auto;
    width: min(320px, calc(100vw - 20px));
    max-height: min(420px, calc(100vh - 96px));
    grid-template-columns: 1fr;
  }

  .language-menu {
    left: auto;
    right: 16px;
    width: min(420px, calc(100vw - 32px));
    max-height: min(420px, calc(100vh - 96px));
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-grid,
  .section-head,
  .tool-grid,
  .category-grid,
  .product-grid,
  .article-grid,
  .steps,
  .compare-grid {
    grid-template-columns: 1fr;
  }

  .command-panel {
    min-height: auto;
  }

  .hero-search {
    margin-top: 18px;
    border-radius: 24px;
    overflow: hidden;
  }

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

  .hero-preview {
    padding-top: 24px;
  }

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

  .hero-search-row {
    grid-template-columns: 1fr;
  }

  .hero-search input {
    min-height: 50px;
    padding: 0 16px;
  }

  .hero-search button {
    width: 100%;
    min-height: 50px;
    border-left: 0;
    border-top: 1px solid rgba(0, 0, 0, 0.12);
  }

  .preview-item {
    grid-template-columns: 76px 1fr;
  }

  .preview-item img {
    width: 76px;
    height: 76px;
  }

  .preview-item .pill {
    grid-column: 2;
    width: max-content;
  }

  h1 {
    font-size: clamp(42px, 14vw, 72px);
  }

  .hero h1 {
    max-width: 100%;
    font-size: clamp(26px, 8vw, 34px);
    line-height: 1.1;
    overflow-wrap: anywhere;
    word-break: normal;
  }

  .hero-copy {
    max-width: 100%;
    font-size: 15px;
  }

  .hero-signals {
    width: 100%;
  }

  .signal {
    min-height: 58px;
    padding: 8px;
  }

  .signal strong {
    font-size: 18px;
  }

  .signal span {
    font-size: 10px;
    line-height: 1.25;
  }

  .hero .hero-actions {
    width: 100%;
    margin-top: 18px;
  }

  .hero .button {
    width: 100%;
    min-height: 48px;
    padding: 0 16px;
    font-size: 15px;
  }

  section {
    padding: 44px 0;
  }

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

@media (max-width: 460px) {
  .nav,
  .section-inner,
  .footer-inner {
    width: min(100%, calc(100% - 24px));
  }

  .hero {
    padding: 32px 0 28px;
  }

  .hero h1 {
    max-width: calc(100vw - 24px);
    font-size: clamp(24px, 7vw, 28px);
    line-height: 1.12;
    text-wrap: wrap;
    word-break: break-word;
  }

  .hero-copy {
    padding: 8px 10px;
    font-size: 14px;
    line-height: 1.32;
  }

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

  .hero-search input {
    font-size: 15px;
  }

  .hero .button {
    font-size: 14px;
    white-space: normal;
    text-align: center;
  }

  .language-menu {
    grid-template-columns: 1fr;
  }
}
