:root {
  --orange: #f15a12;
  --orange-dark: #c94308;
  --navy: #173c8f;
  --ink: #0b0d0f;
  --charcoal: #1a1e20;
  --warm-white: #f5f4f0;
  --surface: #ffffff;
  --muted: #626966;
  --line: #d9ddd9;
  --success: #1d6b46;
  --container: 1240px;
  --reading: 760px;
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 28px;
  --shadow: 0 16px 42px rgba(11, 13, 15, 0.08);
  --header-total: 112px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--warm-white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
}

button,
input,
select {
  font: inherit;
}

button {
  color: inherit;
}

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

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 1000;
  padding: 10px 16px;
  color: #fff;
  background: var(--ink);
  border-radius: var(--radius-sm);
  transform: translateY(-160%);
}

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

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.reading-width {
  width: min(100%, var(--reading));
}

.section {
  padding-block: 88px;
}

.section--surface {
  background: var(--surface);
}

.section--dark {
  color: #fff;
  background: var(--ink);
}

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

.section-heading > div {
  max-width: 760px;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--orange-dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.section--dark .eyebrow,
.hero .eyebrow {
  color: #ff9a66;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.08;
  letter-spacing: -0.035em;
}

h1 {
  font-size: clamp(2.25rem, 5vw, 4.3rem);
}

h2 {
  font-size: clamp(1.85rem, 3.3vw, 2.9rem);
}

h3 {
  font-size: clamp(1.15rem, 2vw, 1.45rem);
}

.lede {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.8vw, 1.25rem);
}

.section--dark .lede,
.hero .lede {
  color: rgba(255, 255, 255, 0.82);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
}

.utility-bar {
  min-height: 36px;
  color: #fff;
  background: var(--ink);
  font-size: 0.82rem;
}

.utility-inner {
  display: flex;
  min-height: 36px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.utility-inner p {
  margin: 0;
}

.utility-link {
  color: #fff;
  font-weight: 750;
}

.main-nav {
  min-height: 76px;
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid rgba(11, 13, 15, 0.1);
  backdrop-filter: blur(12px);
}

.nav-inner {
  display: grid;
  min-height: 76px;
  grid-template-columns: 235px 1fr auto;
  align-items: center;
  gap: 28px;
}

.brand-link {
  display: inline-flex;
  width: 210px;
  align-items: center;
}

.brand-link img {
  width: 100%;
  height: 54px;
  object-fit: contain;
  object-position: left center;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 2.4vw, 36px);
}

.desktop-nav > a,
.desktop-nav summary {
  padding-block: 25px;
  font-weight: 720;
  text-decoration: none;
  cursor: pointer;
  list-style: none;
}

.desktop-nav summary::-webkit-details-marker {
  display: none;
}

.desktop-nav a:hover,
.desktop-nav summary:hover,
.desktop-nav a[aria-current="page"] {
  color: var(--orange-dark);
}

.product-menu {
  position: relative;
}

.product-menu summary::after {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  margin: 0 0 3px 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
}

.product-menu[open] summary::after {
  transform: rotate(225deg) translate(-2px, -2px);
}

.mega-panel {
  position: fixed;
  top: var(--header-total);
  left: 50%;
  width: min(calc(100vw - 40px), var(--container));
  padding: 28px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 0 0 var(--radius-md) var(--radius-md);
  box-shadow: var(--shadow);
  transform: translateX(-50%);
}

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

.mega-grid a {
  display: block;
  padding: 13px 14px;
  background: var(--warm-white);
  border-radius: var(--radius-sm);
  font-weight: 680;
  text-decoration: none;
}

.mega-grid a:hover {
  color: #fff;
  background: var(--orange-dark);
}

.nav-cta {
  white-space: nowrap;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 10px;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  background: var(--ink);
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
  display: none;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 22px;
  color: #fff;
  background: var(--orange-dark);
  border: 2px solid var(--orange-dark);
  border-radius: var(--radius-sm);
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition: background 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.button:hover {
  color: #fff;
  background: #a83705;
  border-color: #a83705;
  transform: translateY(-1px);
}

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

.button--dark:hover {
  background: #292d30;
  border-color: #292d30;
}

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

.button--outline:hover {
  color: #fff;
  background: var(--ink);
  border-color: var(--ink);
}

.section--dark .button--outline,
.hero .button--outline,
.page-hero--dark .button--outline {
  color: #fff;
  border-color: #fff;
}

.section--dark .button--outline:hover,
.hero .button--outline:hover,
.page-hero--dark .button--outline:hover {
  color: var(--ink);
  background: #fff;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.hero {
  position: relative;
  display: grid;
  min-height: min(760px, calc(100vh - 112px));
  align-items: end;
  color: #fff;
  background-color: var(--ink);
  background-position: center;
  background-size: cover;
  isolation: isolate;
}

.hero::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, rgba(5, 7, 9, 0.86) 0%, rgba(5, 7, 9, 0.65) 36%, rgba(5, 7, 9, 0.08) 72%);
}

.hero-content {
  max-width: 760px;
  padding-block: 110px 88px;
}

.hero h1 {
  max-width: 720px;
  font-size: clamp(3rem, 7vw, 6rem);
  text-transform: uppercase;
}

.hero .lede {
  max-width: 640px;
}

.proof-strip {
  color: #fff;
  background: var(--charcoal);
}

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

.proof-item {
  padding: 28px 30px;
  border-right: 1px solid rgba(255, 255, 255, 0.14);
}

.proof-item:last-child {
  border-right: 0;
}

.proof-item strong {
  display: block;
  margin-bottom: 4px;
  color: #ff8d53;
  font-size: 1.1rem;
}

.proof-item span {
  color: rgba(255, 255, 255, 0.78);
}

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

.category-card {
  position: relative;
  min-height: 220px;
  padding: 26px;
  color: #fff;
  background: var(--charcoal);
  border-radius: var(--radius-md);
  overflow: hidden;
  text-decoration: none;
  transition: transform 180ms ease, background 180ms ease;
}

.category-card::after {
  position: absolute;
  right: -34px;
  bottom: -62px;
  width: 170px;
  height: 170px;
  content: "";
  background: linear-gradient(135deg, var(--orange), var(--navy));
  border-radius: 50%;
  opacity: 0.7;
}

.category-card:hover {
  background: var(--ink);
  transform: translateY(-4px);
}

.category-card span {
  position: relative;
  z-index: 1;
  display: block;
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.72);
}

.category-card .card-link {
  position: absolute;
  z-index: 1;
  bottom: 26px;
  left: 26px;
  font-weight: 800;
}

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

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

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

.product-card-media {
  position: relative;
  display: block;
  aspect-ratio: 1 / 1;
  background: #f4f3ef;
  overflow: hidden;
}

.product-card-media img {
  width: 100%;
  height: 100%;
  padding: 16px;
  object-fit: contain;
}

.product-card-content {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 24px;
}

.product-card-content p {
  margin: 12px 0 20px;
  color: var(--muted);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  color: var(--orange-dark);
  font-weight: 800;
  text-decoration: none;
}

.text-link::after {
  content: "→";
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 30px;
}

.filter-button {
  min-height: 42px;
  padding: 8px 16px;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-weight: 700;
  cursor: pointer;
}

.filter-button[aria-pressed="true"],
.filter-button:hover {
  color: #fff;
  background: var(--ink);
  border-color: var(--ink);
}

.product-card[hidden] {
  display: none;
}

.page-hero {
  padding-block: 78px 64px;
  background: #fff;
  border-bottom: 1px solid var(--line);
}

.page-hero--dark {
  color: #fff;
  background: var(--ink);
}

.page-hero--dark .lede {
  color: rgba(255, 255, 255, 0.75);
}

.breadcrumbs {
  padding-block: 18px;
  color: var(--muted);
  background: #fff;
  border-bottom: 1px solid var(--line);
  font-size: 0.92rem;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.breadcrumbs li:not(:last-child)::after {
  margin-left: 8px;
  content: "/";
  color: #9ca19e;
}

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

.product-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  gap: clamp(38px, 6vw, 84px);
  align-items: start;
}

.product-gallery {
  min-width: 0;
}

.gallery-main {
  display: grid;
  aspect-ratio: 1 / 1;
  place-items: center;
  background: #f4f3ef;
  border-radius: var(--radius-md);
  overflow: hidden;
}

.gallery-main img {
  width: 100%;
  height: 100%;
  padding: clamp(10px, 2vw, 22px);
  object-fit: contain;
}

.gallery-thumbnails {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
  margin-top: 12px;
}

.gallery-thumbnail {
  height: 78px;
  padding: 4px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  cursor: pointer;
  overflow: hidden;
}

.gallery-thumbnail[aria-pressed="true"] {
  border: 2px solid var(--orange-dark);
}

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

.product-summary {
  position: sticky;
  top: 142px;
}

.product-summary .lede {
  margin-bottom: 24px;
}

.product-kicker {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 6px 10px;
  color: #fff;
  background: var(--navy);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.variant-block {
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.variant-block h2 {
  font-size: 1rem;
  letter-spacing: 0;
}

.selected-option {
  margin: 7px 0 12px;
  color: var(--muted);
  font-size: 0.9rem;
}

.selected-asin {
  margin: -6px 0 14px;
  color: var(--muted);
  font-size: 0.82rem;
  letter-spacing: 0.02em;
}

.variant-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

.product-price-panel {
  display: grid;
  gap: 4px;
  margin: 0 0 20px;
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
}

.product-price {
  color: var(--ink);
  font-size: clamp(1.7rem, 3vw, 2.25rem);
  line-height: 1.05;
}

.product-price--fallback {
  font-size: 1.05rem;
  line-height: 1.35;
}

.price-availability {
  color: #166534;
  font-size: 0.9rem;
  font-weight: 700;
}

.price-checked {
  color: var(--muted);
  font-size: 0.78rem;
}

.variant-option {
  display: grid;
  gap: 3px;
  min-height: 40px;
  padding: 8px 12px;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  cursor: pointer;
  text-align: left;
}

.variant-option-label {
  font-weight: 800;
}

.variant-option small {
  color: var(--muted);
  font-size: 0.68rem;
  letter-spacing: 0.035em;
}

.variant-option[aria-pressed="true"] {
  color: #fff;
  background: var(--ink);
  border-color: var(--ink);
}

.variant-option[aria-pressed="true"] small {
  color: rgba(255, 255, 255, 0.7);
}

.purchase-note {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.86rem;
}

.product-fact-strip {
  color: #fff;
  background: var(--ink);
}

.product-fact-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.product-fact {
  display: grid;
  gap: 7px;
  min-width: 0;
  padding: 26px 22px;
  border-right: 1px solid rgba(255, 255, 255, 0.14);
}

.product-fact:last-child {
  border-right: 0;
}

.product-fact span {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.product-fact strong {
  overflow-wrap: anywhere;
  font-family: var(--font-display);
  font-size: clamp(1rem, 1.8vw, 1.22rem);
  line-height: 1.25;
}

.product-story:nth-child(even) {
  background: var(--surface);
}

.product-story-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.9fr);
  gap: clamp(34px, 7vw, 96px);
  align-items: center;
}

.product-story--reverse .product-story-media {
  order: 2;
}

.product-story-media {
  display: grid;
  aspect-ratio: 1 / 1;
  place-items: center;
  background: #f4f3ef;
  border-radius: var(--radius-md);
  overflow: hidden;
}

.product-story-media img {
  width: 100%;
  height: 100%;
  padding: clamp(12px, 2vw, 24px);
  object-fit: contain;
}

.product-story-copy .lede {
  margin-top: 20px;
}

.use-case-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  gap: clamp(38px, 7vw, 92px);
  align-items: start;
}

.purchase-check-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.purchase-check-list article {
  padding: 20px 22px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-left: 4px solid var(--orange);
  border-radius: var(--radius-sm);
}

.purchase-check-list h3 {
  color: #fff;
  font-size: 1rem;
}

.purchase-check-list p {
  margin: 7px 0 0;
  color: rgba(255, 255, 255, 0.7);
}

.spec-reference-note {
  color: var(--muted);
}

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

.feature-card {
  padding: 24px;
  background: #fff;
  border-top: 4px solid var(--orange);
  border-radius: var(--radius-sm);
}

.feature-card p {
  margin: 12px 0 0;
  color: var(--muted);
}

.spec-table-wrap {
  margin-top: 28px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.spec-table {
  width: 100%;
  border-collapse: collapse;
}

.spec-table th,
.spec-table td {
  padding: 18px 20px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.spec-table tr:last-child th,
.spec-table tr:last-child td {
  border-bottom: 0;
}

.spec-table th {
  width: 34%;
  background: #fafaf8;
  font-weight: 800;
}

.variant-comparison-table thead th {
  color: #fff;
  background: var(--ink);
}

.spec-reference-note {
  margin: 16px 0 0;
}

.user-reviews-section {
  border-top: 1px solid var(--line);
}

.user-review-list {
  display: grid;
  gap: 16px;
}

.user-review {
  padding: clamp(22px, 4vw, 32px);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: 0 10px 28px rgba(11, 13, 15, 0.04);
}

.user-review-rating {
  display: flex;
  align-items: center;
  gap: 12px;
}

.review-stars {
  color: var(--orange-dark);
  font-size: 1.15rem;
  letter-spacing: 0.08em;
  line-height: 1;
}

.review-rating-text {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
}

.user-review h3 {
  margin-top: 16px;
  font-size: clamp(1.05rem, 2vw, 1.28rem);
  letter-spacing: -0.015em;
}

.user-review-body {
  margin: 14px 0 0;
  color: #343a37;
  overflow-wrap: anywhere;
}

.user-review-author {
  margin: 18px 0 0;
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 850;
}

.review-more {
  margin-top: 18px;
}

.review-more > summary {
  display: inline-flex;
  min-height: 44px;
  padding: 10px 16px;
  align-items: center;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-weight: 800;
  list-style: none;
}

.review-more > summary::-webkit-details-marker {
  display: none;
}

.review-more > summary::after {
  margin-left: 9px;
  content: "+";
}

.review-more[open] > summary::after {
  content: "−";
}

.review-more[open] > .user-review-list {
  margin-top: 16px;
}

.product-closing-cta .section-heading {
  margin-bottom: 0;
}

.product-closing-cta .lede,
.product-closing-cta .eyebrow {
  color: rgba(255, 255, 255, 0.72);
}

.product-closing-cta .button--outline {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.45);
}

.category-faq-list {
  display: grid;
  gap: 12px;
}

.category-faq-item {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--surface);
}

.category-faq-item summary {
  position: relative;
  padding: 20px 56px 20px 22px;
  cursor: pointer;
  list-style: none;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 750;
  line-height: 1.35;
}

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

.category-faq-item summary::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 22px;
  transform: translateY(-50%);
  font-size: 1.5rem;
  font-weight: 500;
}

.category-faq-item[open] summary::after {
  content: "−";
}

.category-faq-answer {
  padding: 0 22px 22px;
  border-top: 1px solid var(--line);
}

.category-faq-answer p {
  margin: 18px 0 0;
  color: var(--muted);
}

.brand-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: var(--ink);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.brand-split-media {
  min-height: 420px;
}

.brand-split-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand-split-content {
  display: flex;
  padding: clamp(38px, 6vw, 74px);
  color: #fff;
  flex-direction: column;
  justify-content: center;
}

.brand-split-content p {
  color: rgba(255, 255, 255, 0.78);
}

.legal-content {
  max-width: var(--reading);
}

.legal-updated {
  margin: 0 0 28px;
  color: var(--muted);
  font-size: 0.92rem;
}

.legal-section {
  padding-block: 28px;
  border-top: 1px solid var(--line);
}

.legal-section h2 {
  font-size: clamp(1.35rem, 2.4vw, 1.8rem);
  letter-spacing: -0.02em;
}

.legal-section p,
.legal-section ul {
  margin: 14px 0 0;
}

.legal-section li + li {
  margin-top: 6px;
}

.legal-section a {
  color: var(--orange-dark);
  font-weight: 700;
}

.legal-contact {
  margin-top: 18px;
  padding: 18px 20px;
  background: var(--warm-white);
  border-left: 4px solid var(--orange);
  border-radius: var(--radius-sm);
}

.site-footer {
  color: #fff;
  background: var(--ink);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 42px;
  padding-block: 64px 48px;
}

.footer-logo {
  width: 210px;
  height: 62px;
  padding: 6px;
  object-fit: contain;
  background: #fff;
  border-radius: var(--radius-sm);
}

.footer-intro p {
  max-width: 390px;
  color: rgba(255, 255, 255, 0.68);
}

.footer-column h2 {
  margin-bottom: 14px;
  font-size: 1rem;
  letter-spacing: 0;
}

.footer-links {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-links li + li {
  margin-top: 9px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
}

.footer-links a:hover {
  color: #fff;
  text-decoration: underline;
}

.footer-bottom {
  display: flex;
  padding-block: 20px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: rgba(255, 255, 255, 0.6);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.86rem;
}

@media (max-width: 1020px) {
  :root {
    --header-total: 100px;
  }

  .utility-bar,
  .utility-inner {
    min-height: 36px;
  }

  .utility-inner p:first-child {
    display: none;
  }

  .utility-inner {
    justify-content: center;
  }

  .main-nav,
  .nav-inner {
    min-height: 64px;
  }

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

  .brand-link {
    width: 180px;
  }

  .brand-link img {
    height: 46px;
  }

  .desktop-nav,
  .nav-cta {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .mobile-menu {
    position: fixed;
    z-index: 99;
    top: var(--header-total);
    right: 0;
    bottom: 0;
    left: 0;
    display: block;
    padding: 22px 20px 40px;
    background: #fff;
    overflow-y: auto;
    overscroll-behavior: contain;
    transform: translateX(100%);
    visibility: hidden;
    transition: transform 200ms ease, visibility 200ms ease;
  }

  .mobile-menu.is-open {
    transform: translateX(0);
    visibility: visible;
  }

  .mobile-menu > a,
  .mobile-products-toggle {
    display: flex;
    width: 100%;
    min-height: 52px;
    padding: 12px 4px;
    align-items: center;
    justify-content: space-between;
    color: var(--ink);
    background: transparent;
    border: 0;
    border-bottom: 1px solid var(--line);
    font-weight: 800;
    text-align: left;
    text-decoration: none;
  }

  .mobile-products-toggle::after {
    content: "+";
    font-size: 1.4rem;
  }

  .mobile-products-toggle[aria-expanded="true"]::after {
    content: "−";
  }

  .mobile-submenu {
    display: grid;
    gap: 6px;
    padding: 10px 0 16px 16px;
  }

  .mobile-submenu[hidden] {
    display: none;
  }

  .mobile-submenu a {
    padding: 10px 12px;
    color: var(--ink);
    background: var(--warm-white);
    border-radius: var(--radius-sm);
    font-weight: 680;
    text-decoration: none;
  }

  .mobile-store-link {
    margin-top: 18px;
    color: #fff !important;
    background: var(--orange-dark) !important;
    border: 0 !important;
    border-radius: var(--radius-sm);
    justify-content: center !important;
  }

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

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

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

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

  .product-fact:nth-child(3) {
    border-right: 0;
  }

  .product-fact:nth-child(n + 4) {
    border-top: 1px solid rgba(255, 255, 255, 0.14);
  }

  .product-story-grid,
  .use-case-layout {
    grid-template-columns: 1fr;
  }

  .product-story--reverse .product-story-media {
    order: 0;
  }

  .product-summary {
    position: static;
  }

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

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

  .footer-column:last-child {
    grid-column: 2 / -1;
  }
}

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

  .section {
    padding-block: 56px;
  }

  .section-heading {
    align-items: start;
    flex-direction: column;
    margin-bottom: 26px;
  }

  .hero {
    min-height: 650px;
    background-position: 42% center;
  }

  .hero::before {
    background: linear-gradient(0deg, rgba(5, 7, 9, 0.92) 0%, rgba(5, 7, 9, 0.7) 48%, rgba(5, 7, 9, 0.12) 100%);
  }

  .hero-content {
    padding-block: 100px 54px;
  }

  .hero h1 {
    font-size: clamp(2.7rem, 15vw, 4.2rem);
  }

  .button-row,
  .button-row .button {
    width: 100%;
  }

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

  .proof-item {
    padding: 20px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  }

  .proof-item:last-child {
    border-bottom: 0;
  }

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

  .category-card {
    min-height: 190px;
  }

  .page-hero {
    padding-block: 56px 48px;
  }

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

  .gallery-thumbnail {
    height: 66px;
  }

  .variant-option {
    flex: 1 1 calc(50% - 8px);
  }

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

  .product-fact,
  .product-fact:nth-child(3) {
    padding-inline: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    border-right: 0;
  }

  .product-fact:first-child {
    border-top: 0;
  }

  .use-case-layout {
    gap: 28px;
  }

  .spec-table,
  .spec-table tbody,
  .spec-table tr,
  .spec-table th,
  .spec-table td {
    display: block;
    width: 100%;
  }

  .spec-table th {
    padding-bottom: 6px;
    border-bottom: 0;
  }

  .spec-table td {
    padding-top: 6px;
  }

  .brand-split {
    grid-template-columns: 1fr;
  }

  .brand-split-media {
    min-height: 260px;
  }

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

  .footer-column:last-child {
    grid-column: auto;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
