:root {
  --bg: #020405;
  --bg-soft: #070a0c;
  --ink: #f4f6f7;
  --muted: #a9afb4;
  --dim: #6d747a;
  --line: rgba(255, 255, 255, 0.15);
  --line-soft: rgba(255, 255, 255, 0.08);
  --silver: #e8edf0;
  --panel: rgba(7, 10, 12, 0.78);
  --max: 1280px;
  --side: 64px;
  --grid-columns: 12;
  --grid-gutter: 32px;
  --space-1: 8px;
  --space-2: 16px;
  --space-3: 24px;
  --space-4: 32px;
  --space-5: 40px;
  --space-6: 48px;
  --space-7: 56px;
  --space-8: 64px;
  --space-9: 72px;
  --section-title-size: clamp(25px, 2.3vw, 34px);
  --section-title-weight: 520;
  --font: "Inter", "Manrope", "Arial", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
  background: var(--bg);
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 50% -10%, rgba(255, 255, 255, 0.08), transparent 34rem),
    linear-gradient(180deg, #030505 0%, #020405 100%);
  font-family: var(--font);
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
  background-size: 96px 96px;
  mask-image: linear-gradient(180deg, transparent, #000 24%, #000 74%, transparent);
}

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

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

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

.page-shell {
  width: min(100% - var(--side) * 2, var(--max));
  margin-inline: auto;
}

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 30;
  display: grid;
  grid-template-columns: 200px minmax(0, 1fr) auto;
  align-items: center;
  column-gap: var(--grid-gutter);
  min-height: 76px;
  padding-block: 0;
  padding-inline: max(var(--side), calc((100vw - var(--max)) / 2));
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, rgba(2, 4, 5, 0.86), rgba(2, 4, 5, 0.34));
  backdrop-filter: blur(16px);
}

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

.brand__logo {
  display: block;
  width: clamp(118px, 10vw, 150px);
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(12px, 1.25vw, 24px);
}

.site-nav a,
.header-phone,
.header-cta {
  color: rgba(255, 255, 255, 0.82);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
  transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.site-nav a:hover,
.header-phone:hover {
  color: #fff;
}

.header-actions {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 14px;
}

.header-phone {
  display: inline-flex;
  align-items: center;
  min-height: 45px;
  color: #fff;
  font-size: 14px;
  font-weight: 900;
  text-transform: none;
  white-space: nowrap;
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 190px;
  min-height: 45px;
  border: 1px solid rgba(255, 255, 255, 0.44);
  background: rgba(0, 0, 0, 0.28);
}

.header-cta:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.menu-toggle {
  display: none;
  justify-self: end;
  width: 48px;
  height: 42px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 1px;
  margin: 6px auto;
  background: #fff;
}

.contact-dock {
  position: fixed;
  top: 50%;
  right: clamp(12px, 2.2vw, 28px);
  z-index: 28;
  display: grid;
  gap: 10px;
  padding: 9px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)),
    rgba(2, 4, 5, 0.72);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    0 22px 54px rgba(0, 0, 0, 0.42);
  transform: translateY(-50%);
  backdrop-filter: blur(18px);
  transition: opacity 0.2s ease, visibility 0.2s ease;
}

body.request-in-view .contact-dock {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
}

.contact-dock__link {
  display: grid;
  width: 64px;
  height: 64px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.03);
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.contact-dock__link:hover,
.contact-dock__link:focus-visible {
  border-color: rgba(255, 255, 255, 0.46);
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-1px);
}

.contact-dock__link:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.72);
  outline-offset: 4px;
}

.contact-dock__link img {
  width: 58px;
  height: 58px;
  object-fit: contain;
  filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.3));
}

.hero {
  position: relative;
  min-height: min(760px, 100svh);
  isolation: isolate;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.hero__video,
.hero__veil {
  position: absolute;
  inset: 0;
}

.hero__video {
  z-index: -3;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.02) contrast(1.02);
}

.hero__veil {
  z-index: -2;
  background: linear-gradient(90deg, rgba(2, 4, 5, 0.44) 0%, rgba(2, 4, 5, 0.2) 36%, transparent 68%);
}

.hero__content {
  display: grid;
  grid-template-columns: repeat(var(--grid-columns), minmax(0, 1fr));
  column-gap: var(--grid-gutter);
  align-content: start;
  min-height: min(760px, 100svh);
  padding-top: clamp(132px, 15vh, 170px);
  padding-bottom: var(--space-7);
}

.hero__wordmark,
.hero h1,
.hero__lead,
.hero__swatches,
.hero__actions {
  grid-column: 1 / span 6;
}

.hero__wordmark {
  display: block;
  width: min(610px, 100%);
  height: auto;
  margin: 0 0 var(--space-3);
  fill: #f5f7f8;
  filter: drop-shadow(0 18px 34px rgba(0, 0, 0, 0.48));
}

.hero h1 {
  max-width: 560px;
  margin: 0;
  color: #f2f4f5;
  font-size: clamp(34px, 4.1vw, 54px);
  font-weight: 450;
  letter-spacing: 0;
  line-height: 1.06;
}

.hero__lead {
  margin: var(--space-3) 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(17px, 1.7vw, 22px);
  line-height: 1.42;
}

.hero__swatches {
  display: grid;
  grid-template-columns: repeat(4, minmax(95px, 132px));
  gap: var(--space-2);
  margin-top: var(--space-4);
}

.hero__swatches a {
  min-height: 64px;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.17);
  background: rgba(3, 6, 7, 0.42);
  backdrop-filter: blur(10px);
}

.hero__swatches span {
  display: block;
  margin-bottom: 9px;
  color: #fff;
  font-size: 13px;
  font-weight: 750;
  letter-spacing: 0.03em;
}

.swatch {
  display: block;
  width: 100%;
  height: 28px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: inset 0 0 24px rgba(255, 255, 255, 0.18);
}

.swatch--silver {
  background: linear-gradient(135deg, #363a3c 0%, #f4f7f8 48%, #7a8287 52%, #141719 100%);
}

.swatch--gold {
  background: linear-gradient(135deg, #34230c 0%, #d7bd70 44%, #fff1b8 53%, #61440f 100%);
}

.swatch--blue {
  background: linear-gradient(135deg, #102132 0%, #7fa6c9 42%, #d6ecff 52%, #15293c 100%);
}

.swatch--bronze {
  background: linear-gradient(135deg, #301b0f 0%, #a66b3e 42%, #e8b078 55%, #3c2114 100%);
}

.shield-mini {
  display: block;
  width: 33px;
  height: 33px;
  margin-top: 1px;
  color: rgba(255, 255, 255, 0.86);
}

.shield-mini svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  margin-top: var(--space-5);
}

.hero__actions .main-cta {
  margin-top: 0;
}

.main-cta {
  display: inline-grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: var(--space-3);
  min-width: 245px;
  min-height: 56px;
  margin-top: var(--space-5);
  padding: 0 var(--space-3);
  border: 1px solid rgba(255, 255, 255, 0.64);
  border-radius: 3px;
  color: #080a0b;
  background: linear-gradient(180deg, #f8fbfd, #aeb6bc);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    0 18px 44px rgba(0, 0, 0, 0.38);
  font-size: 13px;
  font-weight: 750;
  letter-spacing: 0;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.main-cta--secondary {
  color: #f4f6f7;
  background: rgba(3, 6, 7, 0.58);
  border-color: rgba(255, 255, 255, 0.42);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 18px 44px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(12px);
}

.main-cta__arrow {
  display: inline-grid;
  width: 22px;
  height: 22px;
  place-items: center;
  font-size: 22px;
  font-weight: 900;
  line-height: 1;
  transform: translateY(-1px);
}

.main-cta:hover {
  transform: translateY(-1px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    0 24px 52px rgba(0, 0, 0, 0.46);
}

.main-cta--secondary:hover {
  border-color: rgba(255, 255, 255, 0.72);
  background: rgba(10, 14, 16, 0.74);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    0 24px 52px rgba(0, 0, 0, 0.42);
}

.section {
  border-bottom: 1px solid var(--line-soft);
  background: rgba(2, 4, 5, 0.95);
}

.section h2 {
  margin: 0;
  color: #f4f6f7;
  font-size: var(--section-title-size);
  font-weight: var(--section-title-weight);
  line-height: 1.1;
}

.section--benefits {
  padding: var(--space-6) 0 var(--space-7);
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(var(--grid-columns), minmax(0, 1fr));
  gap: var(--space-4) var(--grid-gutter);
  margin-top: var(--space-4);
}

.benefit,
.metric {
  grid-column: span 4;
  min-height: 158px;
  padding: var(--space-4);
  border: 1px solid var(--line-soft);
  background: rgba(255, 255, 255, 0.018);
}

.benefit:first-child {
  padding-left: var(--space-4);
}

.benefit {
  display: grid;
  grid-column: span 4;
  grid-template-rows: 54px 50px auto;
  justify-items: center;
  align-content: start;
  row-gap: var(--space-1);
  text-align: center;
}

.benefit-icon {
  display: block;
  width: 54px;
  height: 54px;
  margin: 0 auto;
  color: rgba(235, 238, 240, 0.84);
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
  vector-effect: non-scaling-stroke;
}

.benefit-icon text {
  fill: currentColor;
  stroke: none;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0;
}

.benefit h3 {
  margin: 0;
  color: #f3f5f6;
  font-size: clamp(18px, 1.6vw, 23px);
  font-weight: 520;
  line-height: 1.18;
}

.benefit h3 {
  display: grid;
  min-height: 50px;
  place-items: center;
}

.benefit p,
.metric p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}

.benefit p {
  max-width: 230px;
}

.result {
  padding: var(--space-6) 0 var(--space-7);
}

.result__frame {
  --result-position: 50%;
  position: relative;
  height: clamp(280px, 26vw, 420px);
  margin-top: var(--space-4);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #070a0c;
  cursor: ew-resize;
  touch-action: pan-y;
  user-select: none;
}

.result__frame::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(4, 6, 7, 0.1), transparent 18%, transparent 76%, rgba(4, 6, 7, 0.5)),
    linear-gradient(180deg, rgba(3, 4, 5, 0.1), transparent 48%, rgba(3, 4, 5, 0.16));
}

.result__image {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.result__before-image {
  filter: none;
}

.result__after-panel {
  position: absolute;
  inset: 0;
  clip-path: inset(0 0 0 var(--result-position));
}

.result__after-image {
  filter: none;
}

.result__divider {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--result-position);
  z-index: 3;
  width: 1px;
  background: rgba(255, 255, 255, 0.58);
  transform: translateX(-0.5px);
}

.result__handle {
  position: absolute;
  top: 50%;
  left: var(--result-position);
  z-index: 4;
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 50%;
  color: #fff;
  background: rgba(30, 34, 36, 0.74);
  transform: translate(-50%, -50%);
  backdrop-filter: blur(12px);
  cursor: ew-resize;
}

.result__handle:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.8);
  outline-offset: 4px;
}

.result__handle span {
  position: relative;
  z-index: 1;
  color: rgba(255, 255, 255, 0.9);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0;
  transform: scaleX(1.18);
}

.lineup {
  padding: var(--space-6) 0 var(--space-7);
}

.lineup__grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: var(--grid-gutter);
  margin-top: var(--space-4);
}

.lineup__card {
  position: relative;
  display: grid;
  grid-template-rows: auto 1fr;
  min-height: 380px;
  overflow: hidden;
  padding: var(--space-4) var(--space-3) 0;
  border: 1px solid var(--line);
  background: #050708;
}

.lineup__copy {
  position: relative;
  z-index: 2;
  min-height: 104px;
}

.lineup__card h3 {
  margin: 0;
  color: #fff;
  font-size: 23px;
  font-weight: 620;
  letter-spacing: 0.02em;
}

.lineup__card p {
  margin: 13px 0 0;
  color: #c5c9cc;
  font-size: 16px;
  font-weight: 460;
  line-height: 1.34;
}

.lineup__media {
  position: relative;
  z-index: 1;
  display: grid;
  align-self: end;
  aspect-ratio: 1 / 1;
  place-items: end center;
  margin: 0 calc(var(--space-3) * -1);
  overflow: hidden;
  background: #050708;
}

.lineup__visual {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  opacity: 0.98;
}

.quality {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: var(--space-6) 0;
  background:
    radial-gradient(circle at 43% 48%, rgba(232, 237, 240, 0.105), transparent 30%),
    linear-gradient(115deg, rgba(255, 255, 255, 0.022), transparent 44%),
    #030506;
}

.quality::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  pointer-events: none;
  background:
    linear-gradient(rgba(232, 237, 240, 0.026) 1px, transparent 1px),
    linear-gradient(90deg, rgba(232, 237, 240, 0.022) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(90deg, transparent, #000 16%, #000 84%, transparent);
}

.quality__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(var(--grid-columns), minmax(0, 1fr));
  gap: var(--space-4) var(--grid-gutter);
  align-items: stretch;
}

.quality__media {
  position: relative;
  grid-column: span 6;
  aspect-ratio: 3 / 2;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: #030506;
  box-shadow: 0 34px 80px rgba(0, 0, 0, 0.42);
}

.quality__media::after {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background:
    linear-gradient(180deg, transparent 55%, rgba(2, 4, 5, 0.34)),
    linear-gradient(110deg, rgba(255, 255, 255, 0.05), transparent 28%);
}

.quality__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.34) contrast(1.07) brightness(1.04) grayscale(0.18);
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.quality__media:hover .quality__image,
.quality__media.motion-in .quality__image {
  transform: scale(1.018);
}

.quality__badge {
  position: absolute;
  bottom: var(--space-3);
  left: var(--space-3);
  z-index: 2;
  display: grid;
  width: 112px;
  height: 112px;
  place-content: center;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
  color: #f4f6f7;
  background: rgba(5, 8, 10, 0.7);
  text-align: center;
  backdrop-filter: blur(12px);
}

.quality__badge strong {
  font-size: 18px;
  font-weight: 760;
  letter-spacing: 0.12em;
}

.quality__badge span {
  margin-top: 7px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 620;
  letter-spacing: 0.09em;
}

.quality__copy {
  grid-column: span 6;
}

.quality__panel {
  position: relative;
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: center;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.055), transparent 42%),
    rgba(7, 11, 13, 0.82);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.055),
    -28px 0 80px rgba(232, 237, 240, 0.045),
    0 30px 70px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(14px);
}

.quality__panel::before {
  position: absolute;
  top: 12%;
  bottom: 12%;
  left: -2px;
  width: 2px;
  content: "";
  background: linear-gradient(180deg, transparent, rgba(232, 237, 240, 0.64), transparent);
  box-shadow: 0 0 28px rgba(232, 237, 240, 0.22);
}

.quality__statement {
  max-width: 640px;
  margin: 18px 0 0;
  color: #b8bdc1;
  font-size: clamp(18px, 1.55vw, 21px);
  font-weight: 400;
  line-height: 1.48;
}

.quality__points {
  display: grid;
  gap: 10px;
  margin-top: var(--space-3);
}

.quality__point {
  position: relative;
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr);
  min-height: 76px;
  align-items: start;
  gap: 16px;
  overflow: hidden;
  padding: 13px 50px 13px 13px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 6px;
  background:
    linear-gradient(105deg, rgba(255, 255, 255, 0.045), transparent 58%),
    rgba(255, 255, 255, 0.018);
  transition: border-color 0.22s ease, background 0.22s ease, transform 0.22s ease;
}

.quality__point:hover,
.quality__point.motion-in {
  border-color: rgba(232, 237, 240, 0.25);
  background:
    linear-gradient(105deg, rgba(232, 237, 240, 0.07), transparent 58%),
    rgba(255, 255, 255, 0.026);
}

.quality__point:hover {
  transform: translateX(3px);
}

.quality__point-index {
  position: absolute;
  top: 12px;
  right: 14px;
  color: rgba(232, 237, 240, 0.26);
  font-size: 11px;
  font-weight: 720;
  letter-spacing: 0.16em;
}

.quality__check {
  width: 40px;
  height: 40px;
  color: rgba(232, 237, 240, 0.82);
  fill: rgba(255, 255, 255, 0.055);
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

.quality__point h3 {
  margin: 1px 0 0;
  color: #f4f6f7;
  font-size: 17px;
  font-weight: 620;
  line-height: 1.25;
}

.quality__point p {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.quality__media.motion-in {
  animation: luxGlowPulse 0.95s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.quality__point.motion-in .quality__check,
.quality__point:hover .quality__check {
  animation: luxIconPlay 0.85s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.marketplaces {
  padding: var(--space-7) 0 var(--space-8);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.035), transparent 32%, rgba(255, 255, 255, 0.025)),
    rgba(2, 4, 5, 0.97);
}

.marketplaces__grid {
  display: grid;
  grid-template-columns: repeat(var(--grid-columns), minmax(0, 1fr));
  gap: var(--space-4) var(--grid-gutter);
  align-items: center;
}

.marketplaces__copy {
  grid-column: span 5;
}

.section-kicker {
  margin: 0 0 13px;
  color: rgba(232, 237, 240, 0.66);
  font-size: 12px;
  font-weight: 760;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.marketplaces__copy p {
  max-width: 820px;
  margin: 18px 0 0;
  color: #b8bdc1;
  font-size: 17px;
  line-height: 1.6;
}

.marketplaces__actions {
  display: grid;
  grid-column: 7 / span 6;
  grid-template-columns: repeat(var(--grid-columns), minmax(0, 1fr));
  gap: var(--space-2) var(--grid-gutter);
  width: 100%;
}

.marketplace-button {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: 74px minmax(0, 1fr) 28px;
  min-height: 112px;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-2) var(--space-3);
  border: 1px solid rgba(255, 255, 255, 0.27);
  border-radius: 6px;
  color: #f4f6f7;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.025)),
    rgba(6, 8, 10, 0.86);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.14),
    0 20px 52px rgba(0, 0, 0, 0.34);
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.marketplace-button:hover,
.marketplace-button:focus-visible {
  border-color: rgba(255, 255, 255, 0.58);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.035)),
    rgba(9, 12, 14, 0.94);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.2),
    0 26px 60px rgba(0, 0, 0, 0.44);
  transform: translateY(-1px);
}

.marketplace-button:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.72);
  outline-offset: 4px;
}

.marketplace-button__logo {
  width: 74px;
  height: 74px;
  object-fit: contain;
  filter: drop-shadow(0 12px 20px rgba(0, 0, 0, 0.36));
}

.marketplace-button span:not(.marketplace-button__arrow) {
  min-width: 0;
  color: #f6f8f9;
  font-size: clamp(22px, 1.8vw, 26px);
  font-weight: 720;
  line-height: 1.08;
  white-space: nowrap;
}

.marketplace-button__arrow {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  color: rgba(244, 246, 247, 0.88);
  font-size: 24px;
  font-weight: 850;
  line-height: 1;
  transform: translateY(-1px);
}

.warehouses {
  position: relative;
  padding: var(--space-7) 0 var(--space-8);
  overflow: hidden;
  background:
    radial-gradient(circle at 80% 22%, rgba(232, 237, 240, 0.08), transparent 24rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.025), rgba(2, 4, 5, 0) 38%),
    rgba(2, 4, 5, 0.97);
}

.warehouses__head {
  max-width: 760px;
}

.warehouses__head p:not(.section-kicker) {
  margin: 18px 0 0;
  color: #b8bdc1;
  font-size: 17px;
  line-height: 1.6;
}

.warehouses__grid {
  display: grid;
  grid-template-columns: repeat(var(--grid-columns), minmax(0, 1fr));
  gap: var(--space-4) var(--grid-gutter);
  align-items: start;
  margin-top: var(--space-5);
}

.warehouse-map {
  position: relative;
  grid-column: span 8;
  min-height: 0;
  overflow: visible;
}

.warehouse-map::before,
.warehouse-map::after {
  display: none;
}

.warehouse-map__image {
  width: 100%;
  height: auto;
  aspect-ratio: 1650 / 953;
  object-fit: contain;
  padding: 0;
  filter:
    drop-shadow(0 22px 38px rgba(0, 0, 0, 0.34))
    contrast(1.04)
    brightness(0.96);
}

.warehouse-city {
  position: absolute;
  top: var(--y);
  left: var(--x);
  z-index: 3;
  display: grid;
  width: 22px;
  height: 22px;
  place-items: center;
  padding: 0;
  border: 0;
  color: #fff;
  background: transparent;
  transform: translate(-50%, -50%);
  cursor: pointer;
}

.warehouse-city__dot {
  position: relative;
  display: block;
  width: 14px;
  height: 14px;
  border: 3px solid rgba(255, 255, 255, 0.96);
  border-radius: 50%;
  background: #ff2330;
  box-shadow:
    0 0 0 7px rgba(255, 35, 48, 0.16),
    0 12px 28px rgba(255, 35, 48, 0.34);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.warehouse-city__label {
  position: absolute;
  top: 50%;
  left: 22px;
  min-height: 30px;
  padding: 6px 11px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  color: #f6f8f9;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.04)),
    rgba(5, 7, 8, 0.74);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.16),
    0 12px 32px rgba(0, 0, 0, 0.36);
  font-size: 12px;
  font-weight: 780;
  line-height: 1.3;
  white-space: nowrap;
  transform: translateY(calc(-50% + var(--label-y, 0px)));
  backdrop-filter: blur(14px);
  transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.warehouse-city--label-left .warehouse-city__label {
  right: 22px;
  left: auto;
}

.warehouse-city:hover .warehouse-city__dot,
.warehouse-city:focus-visible .warehouse-city__dot,
.warehouse-city--active .warehouse-city__dot {
  box-shadow:
    0 0 0 9px rgba(255, 35, 48, 0.2),
    0 14px 34px rgba(255, 35, 48, 0.42);
  transform: scale(1.12);
}

.warehouse-city:hover .warehouse-city__label,
.warehouse-city:focus-visible .warehouse-city__label,
.warehouse-city--active .warehouse-city__label {
  border-color: rgba(255, 255, 255, 0.48);
  color: #fff;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.17), rgba(255, 255, 255, 0.055)),
    rgba(8, 11, 13, 0.9);
}

.warehouse-city:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.78);
  outline-offset: 8px;
}

.warehouse-panel {
  display: grid;
  grid-column: span 4;
  align-self: start;
  align-content: space-between;
  min-height: 0;
  padding: var(--space-3);
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 6px;
  background:
    radial-gradient(circle at 96% 100%, rgba(255, 35, 48, 0.12), transparent 13rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.026)),
    rgba(6, 8, 10, 0.78);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.15),
    0 26px 70px rgba(0, 0, 0, 0.36);
}

.warehouse-picker {
  display: none;
}

.warehouse-picker__button {
  min-height: 36px;
  padding: 8px 11px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  color: #c8ced2;
  background: rgba(255, 255, 255, 0.035);
  font-size: 12px;
  font-weight: 720;
  line-height: 1.2;
}

.warehouse-picker__button.is-active {
  border-color: rgba(255, 255, 255, 0.5);
  color: #fff;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.035)),
    rgba(255, 35, 48, 0.13);
}

.warehouse-picker__button:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.72);
  outline-offset: 3px;
}

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

.warehouse-card__kicker {
  margin: 0;
  color: rgba(255, 35, 48, 0.92);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.warehouse-card h3 {
  margin: 18px 0 0;
  color: #f6f8f9;
  font-size: clamp(30px, 2.6vw, 38px);
  font-weight: 720;
  letter-spacing: 0;
  line-height: 1.04;
}

.warehouse-card__count {
  margin: 10px 0 0;
  color: #c5cbd0;
  font-size: 17px;
  font-weight: 780;
}

.warehouse-card__addresses {
  display: grid;
  gap: 10px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.warehouse-card__addresses li {
  position: relative;
  padding-left: 18px;
  color: #aeb5ba;
  font-size: 14px;
  line-height: 1.36;
}

.warehouse-card__addresses li::before {
  position: absolute;
  top: 0.58em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  content: "";
  background: #ff2330;
  box-shadow: 0 0 0 4px rgba(255, 35, 48, 0.1);
}

.warehouse-panel__footer {
  display: grid;
  gap: 10px;
  margin-top: 20px;
}

.warehouse-panel__cta {
  width: 100%;
  min-width: 0;
  min-height: 48px;
  margin-top: 0;
  padding: 0 18px;
}

.warehouse-panel__footer p {
  margin: 0;
  color: #8e969c;
  font-size: 13px;
  line-height: 1.45;
}

.warehouse-panel__footer a:not(.main-cta) {
  color: #eef2f4;
  text-decoration: underline;
  text-decoration-color: rgba(238, 242, 244, 0.32);
  text-underline-offset: 3px;
}

.metrics {
  padding: var(--space-6) 0 var(--space-7);
}

.metrics__grid {
  display: grid;
  grid-template-columns: repeat(var(--grid-columns), minmax(0, 1fr));
  gap: var(--space-4) var(--grid-gutter);
  margin-top: var(--space-4);
}

.metric {
  display: grid;
  grid-column: span 4;
  min-height: 118px;
  align-content: start;
  justify-items: center;
  gap: 0;
  padding: var(--space-3);
  border: 1px solid var(--line-soft);
  text-align: center;
}

.metric:first-child {
  padding-left: var(--space-3);
}

.metric:nth-last-child(-n + 2) {
  grid-column: span 6;
}

.metric__head {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  min-height: 48px;
  align-items: end;
  justify-content: center;
  column-gap: 14px;
}

.metric-icon {
  width: 44px;
  height: 44px;
  justify-self: center;
  color: rgba(255, 255, 255, 0.78);
}

.metric-icon * {
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
  vector-effect: non-scaling-stroke;
}

.metric h3 {
  margin: 0;
  color: #f3f5f6;
  font-size: clamp(17px, 1.35vw, 20px);
  font-weight: 520;
  line-height: 1.18;
  white-space: nowrap;
}

.metric p {
  width: 100%;
  max-width: 220px;
  margin: 4px auto 0;
  color: var(--muted);
  font-size: 15px;
  font-weight: 450;
  line-height: 1.55;
}

.trust {
  position: relative;
  padding: var(--space-7) 0 var(--space-8);
  overflow: hidden;
  background:
    radial-gradient(circle at 74% 28%, rgba(255, 255, 255, 0.09), transparent 26rem),
    linear-gradient(180deg, rgba(7, 10, 12, 0.98), rgba(2, 4, 5, 0.98));
}

.trust::before {
  position: absolute;
  top: 0;
  right: max(var(--side), calc((100vw - var(--max)) / 2));
  left: max(var(--side), calc((100vw - var(--max)) / 2));
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(232, 237, 240, 0.34), transparent);
}

.trust__head {
  max-width: none;
}

.trust__head p {
  max-width: none;
  margin: var(--space-2) 0 0;
  color: var(--muted);
  font-size: clamp(16px, 1.25vw, 18px);
  line-height: 1.55;
}

@media (min-width: 1200px) {
  .trust__head h2,
  .trust__head p {
    white-space: nowrap;
  }
}

.trust__viewport {
  position: relative;
  isolation: isolate;
  margin-top: var(--space-5);
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.trust__viewport::before,
.trust__viewport::after {
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 3;
  width: clamp(82px, 10vw, 150px);
  content: "";
  pointer-events: none;
}

.trust__viewport::before {
  left: 0;
  background: linear-gradient(90deg, #020405 0%, rgba(2, 4, 5, 0.96) 34%, rgba(2, 4, 5, 0) 100%);
}

.trust__viewport::after {
  right: 0;
  background: linear-gradient(270deg, #020405 0%, rgba(2, 4, 5, 0.96) 34%, rgba(2, 4, 5, 0) 100%);
}

.trust__track {
  display: flex;
  width: max-content;
  animation: trustMarquee 42s linear infinite;
  will-change: transform;
}

.trust__set {
  display: flex;
  flex: 0 0 auto;
  gap: var(--space-2);
  padding-right: var(--space-2);
}

.trust-card {
  position: relative;
  display: grid;
  flex: 0 0 clamp(260px, 18vw, 340px);
  height: 132px;
  min-height: 132px;
  place-items: center;
  padding: var(--space-3);
  overflow: hidden;
  border: 1px solid rgba(232, 237, 240, 0.2);
  border-radius: 6px;
  background: rgba(2, 4, 5, 0.92);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.16),
    0 22px 48px rgba(0, 0, 0, 0.28);
}

.trust-card::before {
  position: absolute;
  top: 0;
  left: var(--space-3);
  width: min(104px, 42%);
  height: 3px;
  content: "";
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.95), rgba(168, 179, 185, 0.55));
}

.trust-card::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    radial-gradient(circle at 50% 54%, rgba(255, 255, 255, 0.13), transparent 58%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.12), transparent 38%);
  opacity: 0.74;
  pointer-events: none;
}

.trust-card__logo {
  position: relative;
  z-index: 1;
  width: auto;
  max-width: 90%;
  max-height: 96px;
  object-fit: contain;
  filter: drop-shadow(0 10px 18px rgba(0, 0, 0, 0.34));
}

@keyframes trustMarquee {
  to {
    transform: translateX(-50%);
  }
}

/* Noticeable motion layer: glow, sweep, icon play. Layout-safe only. */
@keyframes luxSweep {
  0%,
  56%,
  100% {
    opacity: 0;
    transform: translateX(-145%) skewX(-18deg);
  }

  64% {
    opacity: 0.72;
  }

  78% {
    opacity: 0;
    transform: translateX(145%) skewX(-18deg);
  }
}

@keyframes luxIconPlay {
  0% {
    transform: translateY(0) scale(1) rotate(0deg);
  }

  36% {
    transform: translateY(-3px) scale(1.08) rotate(-4deg);
  }

  70% {
    transform: translateY(1px) scale(0.98) rotate(3deg);
  }

  100% {
    transform: translateY(0) scale(1) rotate(0deg);
  }
}

@keyframes luxGlowPulse {
  0%,
  100% {
    transform: translateZ(0) scale(1);
  }

  50% {
    transform: translateZ(0) scale(1.018);
  }
}

@keyframes luxBorderTrace {
  0% {
    opacity: 0;
    background-position: 0% 50%;
  }

  36% {
    opacity: 0.7;
  }

  100% {
    opacity: 0;
    background-position: 160% 50%;
  }
}

@keyframes luxDockPulse {
  0%,
  100% {
    opacity: 0.22;
    transform: scale(0.94);
  }

  50% {
    opacity: 0.9;
    transform: scale(1.04);
  }
}

.main-cta,
.header-cta,
.hero__swatches a,
.marketplace-button,
.warehouse-picker__button,
.contact-dock__link {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  contain: paint;
}

.main-cta > *,
.header-cta > *,
.marketplace-button > *,
.contact-dock__link > * {
  position: relative;
  z-index: 1;
}

.main-cta::after,
.header-cta::after,
.hero__swatches a::after,
.marketplace-button::after {
  position: absolute;
  top: -60%;
  bottom: -60%;
  left: 0;
  z-index: 0;
  width: 42%;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.68), transparent);
  opacity: 0;
  transform: translateX(-145%) skewX(-18deg);
  pointer-events: none;
}

.main-cta--secondary::after,
.header-cta::after,
.marketplace-button::after {
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.34), transparent);
}

.main-cta:hover::after,
.main-cta:focus-visible::after,
.header-cta:hover::after,
.header-cta:focus-visible::after,
.hero__swatches a:hover::after,
.hero__swatches a:focus-visible::after,
.marketplace-button.motion-in::after,
.marketplace-button:hover::after,
.marketplace-button:focus-visible::after {
  animation: luxSweep 1.1s ease-out both;
}

.hero__swatches a {
  transition:
    border-color 0.22s ease,
    background 0.22s ease,
    box-shadow 0.22s ease,
    transform 0.22s ease;
}

.hero__swatches a:hover,
.hero__swatches a:focus-visible {
  border-color: rgba(255, 255, 255, 0.48);
  background: rgba(7, 10, 12, 0.64);
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.32);
  transform: translateY(-2px);
}

.swatch {
  position: relative;
  overflow: hidden;
}

.swatch::after {
  position: absolute;
  inset: -45% -30%;
  content: "";
  background: linear-gradient(100deg, transparent 30%, rgba(255, 255, 255, 0.72), transparent 62%);
  opacity: 0;
  transform: translateX(-130%) skewX(-16deg);
  pointer-events: none;
}

.hero__swatches a:hover .swatch::after,
.hero__swatches a:focus-visible .swatch::after {
  animation: luxSweep 1.15s ease-out both;
}

.benefit,
.metric,
.lineup__card,
.warehouse-panel,
.warehouse-card {
  position: relative;
  overflow: hidden;
}

.benefit::after,
.metric::after,
.lineup__card::after,
.warehouse-panel::after,
.warehouse-card::after {
  position: absolute;
  inset: 0;
  z-index: 0;
  content: "";
  background: linear-gradient(120deg, transparent 18%, rgba(255, 255, 255, 0.28) 48%, transparent 74%);
  background-size: 220% 100%;
  opacity: 0;
  pointer-events: none;
}

.benefit > *,
.metric > *,
.lineup__card > *,
.warehouse-panel > *,
.warehouse-card > *,
.trust-card__logo {
  position: relative;
  z-index: 1;
}

.motion-in.benefit::after,
.motion-in.metric::after,
.motion-in.lineup__card::after,
.motion-in.warehouse-panel::after,
.motion-in.warehouse-card::after,
.benefit:hover::after,
.metric:hover::after,
.lineup__card:hover::after,
.warehouse-panel:hover::after,
.warehouse-card:hover::after {
  animation: luxBorderTrace 0.95s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.benefit-icon,
.metric-icon {
  transform-origin: center;
  will-change: transform;
}

.motion-in .benefit-icon,
.motion-in .metric-icon,
.benefit:hover .benefit-icon,
.metric:hover .metric-icon {
  animation: luxIconPlay 0.9s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.trust-card__logo {
  transform-origin: center;
  will-change: transform;
}

.motion-in .trust-card__logo,
.trust-card:hover .trust-card__logo {
  animation: luxIconPlay 0.85s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.lineup__card {
  transition:
    border-color 0.24s ease,
    box-shadow 0.24s ease,
    transform 0.24s ease;
}

.lineup__card:hover,
.lineup__card.motion-in {
  border-color: rgba(255, 255, 255, 0.36);
  box-shadow: 0 24px 62px rgba(0, 0, 0, 0.42);
}

.lineup__card:hover {
  transform: translateY(-3px);
}

.lineup__visual {
  transition: transform 0.28s ease;
}

.lineup__card:hover .lineup__visual,
.lineup__card.motion-in .lineup__visual {
  transform: translateY(-2px) scale(1.015);
}

.warehouse-picker__button {
  transition:
    border-color 0.22s ease,
    background 0.22s ease,
    box-shadow 0.22s ease,
    color 0.22s ease,
    transform 0.22s ease;
}

.warehouse-picker__button.is-active {
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.16),
    0 0 0 1px rgba(255, 255, 255, 0.08);
}

.marketplace-button.motion-in,
.warehouse-picker__button.motion-in {
  animation: luxGlowPulse 0.95s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.warehouse-picker__button:hover,
.warehouse-picker__button:focus-visible {
  transform: translateY(-1px);
}

.warehouse-city--active .warehouse-city__dot {
  transform: scale(1.12);
}

.contact-dock__link::after {
  position: absolute;
  inset: 8px;
  z-index: 0;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: inherit;
  content: "";
  opacity: 0;
  transform: scale(0.94);
  pointer-events: none;
}

.contact-dock__link:hover::after,
.contact-dock__link:focus-visible::after {
  animation: luxDockPulse 0.95s ease-out both;
}

.install {
  padding: var(--space-7) 0 var(--space-8);
  text-align: center;
}

.install h2 {
  text-align: left;
}

.install__timeline {
  --install-node-center: calc(var(--space-3) + 21px);
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: var(--grid-gutter);
  margin-top: var(--space-6);
}

.install__timeline article {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  min-width: 0;
  padding: var(--space-3);
  border: 1px solid var(--line-soft);
  text-align: center;
}

.install__timeline article:not(:last-child)::after {
  position: absolute;
  top: var(--install-node-center);
  left: 50%;
  width: calc(100% + var(--grid-gutter) + 2px);
  height: 1px;
  content: "";
  background: rgba(255, 255, 255, 0.32);
  pointer-events: none;
}

.install__timeline span {
  position: relative;
  z-index: 1;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 50%;
  color: #fff;
  background: var(--bg);
  font-size: 15px;
}

.install__timeline h3 {
  margin: var(--space-3) 0 0;
  color: #fff;
  font-size: 19px;
  font-weight: 520;
  line-height: 1.3;
}

.install__timeline p {
  margin: var(--space-2) 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.request {
  position: relative;
  padding: var(--space-8) 0 var(--space-9);
  overflow: hidden;
  border-bottom: 0;
  background:
    radial-gradient(circle at 84% 74%, rgba(255, 255, 255, 0.08), transparent 23rem),
    #020405;
}

.request__grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(var(--grid-columns), minmax(0, 1fr));
  gap: var(--space-5) var(--grid-gutter);
  align-items: start;
}

.request__copy h2 {
  margin: 0;
  color: #fff;
  font-size: var(--section-title-size);
  font-weight: var(--section-title-weight);
  line-height: 1.1;
  white-space: nowrap;
}

.request__copy {
  grid-column: span 5;
}

.request__copy p {
  margin: 24px 0 0;
  color: #c4c9cd;
  font-size: 19px;
  line-height: 1.55;
  text-wrap: balance;
}

.request__copy ul {
  display: grid;
  gap: var(--space-2);
  margin: var(--space-4) 0 0;
  padding: 0;
  color: #dfe3e5;
  font-size: 16px;
  list-style: none;
}

.request__copy li {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  column-gap: 14px;
  text-wrap: balance;
}

.request__copy .li-text {
  min-width: 0;
}

.request__copy .li-text span {
  display: inline-block;
}

.request__copy li::before {
  content: "✓";
  color: #fff;
}

.request-contacts {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  margin-top: var(--space-4);
}

.request-contact {
  display: inline-flex;
  align-items: center;
  min-height: 52px;
  gap: 10px;
  padding: 6px 14px 6px 7px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 3px;
  color: #f3f5f6;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.02)),
    rgba(6, 8, 10, 0.62);
  font-size: 14px;
  font-weight: 760;
  line-height: 1;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.request-contact:hover,
.request-contact:focus-visible {
  border-color: rgba(255, 255, 255, 0.48);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.03)),
    rgba(10, 13, 15, 0.8);
  transform: translateY(-1px);
}

.request-contact:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.72);
  outline-offset: 3px;
}

.request-contact img {
  width: 40px;
  height: 40px;
  flex: 0 0 auto;
  object-fit: contain;
}

.lead-form {
  display: grid;
  grid-column: 7 / span 6;
  gap: var(--space-2);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2);
}

.form-field {
  position: relative;
  display: grid;
}

.form-field__label {
  position: absolute;
  top: 18px;
  left: 20px;
  color: #7c8388;
  font-size: 14px;
  line-height: 1;
  pointer-events: none;
  transform-origin: left top;
  transition: transform 0.18s ease, color 0.18s ease;
}

.lead-form input,
.lead-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 2px;
  color: #fff;
  background: rgba(6, 8, 10, 0.7);
  outline: none;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.lead-form input {
  height: 64px;
  padding: 28px 18px 8px;
}

.lead-form textarea {
  min-height: 132px;
  resize: none;
  padding: 34px 18px 12px;
}

.lead-form input:focus,
.lead-form textarea:focus {
  border-color: rgba(255, 255, 255, 0.52);
  background: rgba(10, 13, 15, 0.9);
}

.form-field input:focus + .form-field__label,
.form-field input:not(:placeholder-shown) + .form-field__label,
.form-field input:-webkit-autofill + .form-field__label,
.form-field textarea:focus + .form-field__label,
.form-field textarea:not(:placeholder-shown) + .form-field__label {
  color: #c4c9cd;
  transform: translateY(-9px) scale(0.78);
}

.form-consent {
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  color: #a6adb2;
  font-size: 13px;
  line-height: 1.5;
}

.form-consent input {
  width: 24px;
  height: 24px;
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.34);
  accent-color: #f4f6f7;
  cursor: pointer;
}

.form-consent a {
  color: #eef2f4;
  text-decoration: underline;
  text-decoration-color: rgba(238, 242, 244, 0.38);
  text-underline-offset: 3px;
}

.form-consent a:hover,
.form-consent a:focus-visible {
  text-decoration-color: rgba(238, 242, 244, 0.9);
}

.main-cta--wide {
  width: 100%;
  margin-top: 0;
  border: 0;
}

.form-note {
  margin: 4px 0 0;
  color: #7f8589;
  font-size: 13px;
  line-height: 1.45;
}

.form-note a {
  color: #c9d0d4;
  text-decoration: underline;
  text-decoration-color: rgba(201, 208, 212, 0.34);
  text-underline-offset: 3px;
}

.site-footer {
  border-top: 1px solid var(--line-soft);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), transparent 48%),
    #020405;
}

.footer__grid {
  display: grid;
  grid-template-columns: repeat(var(--grid-columns), minmax(0, 1fr));
  gap: var(--space-4) var(--grid-gutter);
  padding: var(--space-6) 0;
}

.footer__company {
  grid-column: span 5;
}

.footer__nav {
  grid-column: span 2;
}

.footer__contacts {
  grid-column: span 3;
}

.footer__brand {
  display: block;
  width: min(220px, 100%);
  height: auto;
  margin: 0 0 14px;
}

.footer__company p:not(.footer__brand) {
  max-width: 420px;
  margin: 0;
  color: #aeb4b8;
  font-size: 14px;
  line-height: 1.55;
}

.footer__requisites {
  padding-top: 12px;
}

.footer__details {
  display: grid;
  gap: 9px;
  margin: 20px 0 0;
  color: #aab0b4;
  font-size: 13px;
  line-height: 1.45;
}

.footer__details div {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 10px;
}

.footer__details dt {
  color: #737a80;
}

.footer__details dd {
  margin: 0;
}

.footer__nav,
.footer__contacts {
  display: grid;
  align-content: start;
  gap: 10px;
}

.footer__nav h2,
.footer__contacts h2 {
  margin: 0 0 7px;
  color: #f3f5f6;
  font-size: 13px;
  font-weight: 760;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer__nav a,
.footer__contacts a {
  width: max-content;
  max-width: 100%;
  color: #9fa6ab;
  font-size: 13px;
  line-height: 1.35;
  transition: color 0.2s ease;
}

.footer__nav a:hover,
.footer__nav a:focus-visible,
.footer__contacts a:hover,
.footer__contacts a:focus-visible {
  color: #fff;
}

.legal-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at 78% 12%, rgba(255, 255, 255, 0.08), transparent 23rem),
    #020405;
}

.legal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 28px 0;
}

.legal-header__brand {
  color: #f5f7f8;
  font-size: 22px;
  font-weight: 760;
  letter-spacing: 0.08em;
}

.legal-header__back {
  color: #d9dee1;
  font-size: 13px;
  font-weight: 720;
  text-decoration: underline;
  text-decoration-color: rgba(217, 222, 225, 0.36);
  text-underline-offset: 4px;
}

.legal-doc {
  max-width: 980px;
  padding: 28px 0 72px;
}

.legal-doc h1 {
  margin: 0;
  color: #f4f6f7;
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 520;
  line-height: 1.08;
}

.legal-doc h2 {
  margin: 34px 0 0;
  color: #eef2f4;
  font-size: 21px;
  font-weight: 620;
  line-height: 1.25;
}

.legal-doc p,
.legal-doc li {
  color: #b5bbc0;
  font-size: 16px;
  line-height: 1.68;
}

.legal-doc p {
  margin: 16px 0 0;
}

.legal-doc ul {
  display: grid;
  gap: 8px;
  margin: 16px 0 0;
  padding-left: 20px;
}

.legal-doc a {
  color: #fff;
  text-decoration: underline;
  text-decoration-color: rgba(255, 255, 255, 0.42);
  text-underline-offset: 4px;
}

/* Customer revision: architectural landing blocks */
.hero__swatches {
  grid-template-columns: repeat(5, minmax(95px, 132px));
}

.swatch--illusion {
  background:
    linear-gradient(135deg, #050607 0%, #0d0f11 30%, #f0f4f6 48%, #111417 55%, #000 100%),
    #050607;
}

.marquee {
  overflow: hidden;
  padding: clamp(20px, 2.8vw, 34px) 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.035), transparent);
  mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}

.marquee__track {
  display: flex;
  width: max-content;
  align-items: center;
  animation: luxtonMarquee 42s linear infinite;
  will-change: transform;
}

.marquee:hover .marquee__track {
  animation-play-state: paused;
}

.marquee__item {
  white-space: nowrap;
  padding: 0 clamp(18px, 2.4vw, 38px);
  color: #f4f6f7;
  font-size: clamp(20px, 3.2vw, 42px);
  font-weight: 780;
  line-height: 1;
  text-transform: uppercase;
}

.marquee__item--outline {
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.34);
}

.marquee__sep {
  color: rgba(255, 255, 255, 0.44);
  font-size: clamp(13px, 1.4vw, 18px);
  animation: marqueeSepPulse 7s cubic-bezier(0.22, 1, 0.36, 1) infinite;
}

@keyframes luxtonMarquee {
  to {
    transform: translateX(-50%);
  }
}

@keyframes marqueeSepPulse {
  0%,
  100% {
    transform: translateY(0) scale(1);
    opacity: 0.44;
  }

  42% {
    transform: translateY(-3px) scale(1.08);
    opacity: 0.72;
  }
}

.benefit {
  grid-template-rows: 150px 64px auto;
  justify-items: stretch;
  min-height: 326px;
  padding: 0;
  overflow: hidden;
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.048), rgba(255, 255, 255, 0.016)),
    #050708;
  text-align: left;
}

.benefit img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.88) contrast(1.04) brightness(0.86);
  transition: transform 0.32s ease, filter 0.32s ease;
}

.benefit:hover img,
.benefit.motion-in img {
  transform: scale(1.035);
  filter: saturate(1) contrast(1.06) brightness(0.94);
}

.benefit h3 {
  display: flex;
  min-height: 64px;
  align-items: flex-start;
  margin: 18px var(--space-3) 0;
  text-align: left;
}

.benefit p {
  max-width: none;
  margin: 6px var(--space-3) var(--space-3);
  text-align: left;
}

.showcase {
  position: relative;
  display: grid;
  min-height: min(720px, 78svh);
  align-items: center;
  isolation: isolate;
  overflow: hidden;
  border-bottom: 1px solid var(--line-soft);
  background: #020405;
}

.showcase__poster,
.showcase__video,
.showcase__scrim {
  position: absolute;
  inset: 0;
}

.showcase__poster,
.showcase__video {
  z-index: -3;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.showcase__video {
  opacity: 0;
  transition: opacity 0.8s ease;
}

.showcase__video.is-ready {
  opacity: 1;
}

.showcase__scrim {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(2, 4, 5, 0.94), rgba(2, 4, 5, 0.58) 54%, rgba(2, 4, 5, 0.2)),
    linear-gradient(0deg, #020405, transparent 30%, transparent 64%, #020405);
}

.showcase__content {
  padding-block: var(--space-8);
}

.showcase h2 {
  max-width: 780px;
  margin: 0;
  font-size: clamp(34px, 4.6vw, 58px);
  font-weight: 560;
  line-height: 1.06;
}

.showcase h2 span {
  color: #fff;
}

.showcase p {
  max-width: 620px;
  margin: var(--space-3) 0 0;
  color: #b7bec3;
  font-size: clamp(17px, 1.5vw, 20px);
  line-height: 1.55;
}

.showcase__stats {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3) var(--space-5);
  margin-top: var(--space-5);
}

.showcase__stats div {
  display: grid;
  gap: 8px;
}

.showcase__stats strong {
  color: #f4f6f7;
  font-size: clamp(32px, 3.2vw, 46px);
  font-weight: 760;
  line-height: 1;
}

.showcase__stats span {
  max-width: 170px;
  color: #a8afb4;
  font-size: 14px;
  line-height: 1.35;
}

.shatter {
  position: relative;
  overflow: hidden;
  padding: var(--space-7) 0 var(--space-8);
  background:
    radial-gradient(circle at 76% 36%, rgba(232, 237, 240, 0.08), transparent 25rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.025), rgba(2, 4, 5, 0) 42%),
    #030506;
}

.shatter::before {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background:
    linear-gradient(rgba(255, 255, 255, 0.024) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
  background-size: 82px 82px;
  mask-image: linear-gradient(180deg, transparent, #000 18%, #000 86%, transparent);
}

.shatter__grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(var(--grid-columns), minmax(0, 1fr));
  gap: var(--space-4) var(--grid-gutter);
  align-items: stretch;
}

.shatter__copy {
  grid-column: 7 / span 6;
}

.shatter__panel {
  position: relative;
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.055), transparent 42%),
    rgba(7, 11, 13, 0.82);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.055),
    -28px 0 80px rgba(232, 237, 240, 0.045),
    0 30px 70px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(14px);
}

.shatter__panel::before {
  position: absolute;
  top: 12%;
  bottom: 12%;
  left: -2px;
  width: 2px;
  content: "";
  background: linear-gradient(180deg, transparent, rgba(232, 237, 240, 0.64), transparent);
  box-shadow: 0 0 28px rgba(232, 237, 240, 0.22);
}

.shatter__statement {
  max-width: 640px;
  margin: 18px 0 0;
  color: #b8bdc1;
  font-size: clamp(18px, 1.55vw, 21px);
  font-weight: 400;
  line-height: 1.48;
}

.shatter__points {
  display: grid;
  gap: 10px;
  margin-top: var(--space-3);
}

.shatter__point {
  position: relative;
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr);
  min-height: 76px;
  align-items: start;
  gap: 16px;
  padding: 13px 50px 13px 13px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 6px;
  background:
    linear-gradient(105deg, rgba(255, 255, 255, 0.045), transparent 58%),
    rgba(255, 255, 255, 0.018);
  transition: border-color 0.22s ease, background 0.22s ease, transform 0.22s ease;
}

.shatter__point:hover,
.shatter__point.motion-in {
  border-color: rgba(232, 237, 240, 0.25);
  background:
    linear-gradient(105deg, rgba(232, 237, 240, 0.07), transparent 58%),
    rgba(255, 255, 255, 0.026);
}

.shatter__point:hover {
  transform: translateX(3px);
}

.shatter__point-index {
  position: absolute;
  top: 12px;
  right: 14px;
  color: rgba(232, 237, 240, 0.26);
  font-size: 11px;
  font-weight: 720;
  letter-spacing: 0.16em;
}

.shatter__check {
  width: 40px;
  height: 40px;
  color: rgba(232, 237, 240, 0.82);
  fill: rgba(255, 255, 255, 0.055);
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

.shatter__point h3 {
  margin: 1px 0 0;
  color: #f4f6f7;
  font-size: 17px;
  font-weight: 620;
  line-height: 1.25;
}

.shatter__point p {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.shatter__media {
  position: relative;
  grid-column: span 6;
  margin: 0;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: #070a0c;
  box-shadow: 0 34px 80px rgba(0, 0, 0, 0.42);
}

.shatter__media img,
.shatter__video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.88) contrast(1.06) brightness(0.9);
  transition: transform 0.34s ease, filter 0.34s ease;
}

.shatter__media:hover img,
.shatter__media.motion-in img,
.shatter__media:hover .shatter__video,
.shatter__media.motion-in .shatter__video {
  transform: scale(1.018);
  filter: saturate(0.96) contrast(1.07) brightness(0.94);
}

.result__before-image {
  filter: none;
}

.result__after-image {
  filter: none;
}

.lineup {
  padding: var(--space-7) 0 var(--space-8);
}

.lineup__lead {
  max-width: 760px;
  margin: var(--space-2) 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.6;
}

.lineup__row {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(260px, 310px);
  grid-template-columns: repeat(3, minmax(260px, 310px));
  grid-template-rows: repeat(2, 360px);
  gap: var(--space-3);
  width: min(100% - var(--side) * 2, var(--max));
  margin: var(--space-5) auto 0;
  padding: 8px 0 22px;
  overflow-x: auto;
  scroll-padding-inline: 0;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.38) rgba(255, 255, 255, 0.08);
}

.pcard {
  position: relative;
  display: flex;
  height: 360px;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  padding: var(--space-3);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: #050708;
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.34);
  scroll-snap-align: start;
  transition: transform 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease;
}

.pcard::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 2;
  height: 3px;
  content: "";
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.9), rgba(168, 179, 185, 0.44));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.24s ease;
}

.pcard::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  background:
    linear-gradient(180deg, rgba(2, 4, 5, 0.02), rgba(2, 4, 5, 0.2) 45%, rgba(2, 4, 5, 0.94) 76%, #020405),
    radial-gradient(circle at 50% 44%, rgba(255, 255, 255, 0.13), transparent 48%);
  pointer-events: none;
}

.pcard:hover,
.pcard.motion-in {
  border-color: rgba(255, 255, 255, 0.36);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.44);
}

.pcard:hover {
  transform: translateY(-4px);
}

.pcard:hover::before,
.pcard.motion-in::before {
  transform: scaleX(1);
}

.pcard__img {
  position: absolute;
  inset: 0;
  box-sizing: border-box;
  width: 100%;
  height: 100%;
  padding: 18px 16px 92px;
  object-fit: contain;
  object-position: center;
  filter: saturate(0.9) contrast(1.04) brightness(0.86);
  transition: transform 0.34s ease, filter 0.34s ease;
}

.pcard:hover .pcard__img {
  transform: scale(1.035);
  filter: saturate(1.04) contrast(1.06) brightness(0.92);
}

.pcard__cat,
.pcard__name,
.pcard__tag,
.pcard__go {
  position: relative;
  z-index: 2;
}

.pcard__cat {
  margin-bottom: auto;
  color: rgba(244, 246, 247, 0.78);
  font-size: 11px;
  font-weight: 820;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.pcard__name {
  color: #fff;
  font-size: clamp(21px, 1.8vw, 27px);
  font-weight: 760;
  line-height: 1.06;
}

.pcard__tag {
  margin-top: 9px;
  color: #aeb5ba;
  font-size: 13px;
  line-height: 1.42;
}

.pcard__go {
  margin-top: var(--space-3);
  color: #f4f6f7;
  font-size: 13px;
  font-weight: 760;
}

.applications {
  padding: var(--space-7) 0 var(--space-8);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.026), transparent 48%),
    #020405;
}

.applications__head {
  max-width: 780px;
}

.applications__head p {
  margin: var(--space-2) 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.6;
}

.applications__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: var(--space-3);
  margin-top: var(--space-5);
}

.app-card {
  position: relative;
  min-height: 440px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: #050708;
}

.app-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.9) brightness(0.78);
  transition: transform 0.36s ease, filter 0.36s ease;
}

.app-card:hover img,
.app-card.motion-in img {
  transform: scale(1.045);
  filter: saturate(1.02) brightness(0.88);
}

.app-card__body {
  position: absolute;
  inset: auto 0 0;
  z-index: 1;
  padding: var(--space-3);
  background: linear-gradient(0deg, rgba(2, 4, 5, 0.96), rgba(2, 4, 5, 0.62), transparent);
}

.app-card h3 {
  margin: 0;
  color: #fff;
  font-size: 22px;
  font-weight: 620;
}

.app-card p {
  margin: 8px 0 0;
  color: #b9c0c5;
  font-size: 14px;
  line-height: 1.45;
}

.trust__marquees {
  display: grid;
  gap: var(--space-2);
  margin-top: var(--space-5);
}

.trust__viewport {
  margin-top: 0;
}

.trust__track {
  --trust-duration: 48s;
}

.trust__track.is-ready {
  animation: trustMarquee var(--trust-duration) linear infinite;
}

.trust__track--reverse.is-ready {
  animation-name: trustMarqueeReverse;
}

.trust__viewport:hover .trust__track {
  animation-play-state: paused;
}

@keyframes trustMarqueeReverse {
  from {
    transform: translateX(-50%);
  }

  to {
    transform: translateX(0);
  }
}

.faq {
  padding: var(--space-7) 0 var(--space-8);
  background:
    radial-gradient(circle at 18% 18%, rgba(255, 255, 255, 0.07), transparent 20rem),
    #030506;
}

.faq__grid {
  display: grid;
  grid-template-columns: repeat(var(--grid-columns), minmax(0, 1fr));
  gap: var(--space-4) var(--grid-gutter);
  align-items: start;
}

.faq__head {
  grid-column: span 4;
}

.faq__head p {
  margin: var(--space-3) 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
}

.faq__cta {
  width: max-content;
}

.faq__list {
  display: grid;
  grid-column: 6 / span 7;
  gap: 12px;
}

.faq__item {
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.026);
  transition: border-color 0.2s ease, background 0.2s ease;
}

.faq__item[open] {
  border-color: rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.045);
}

.faq__item summary {
  display: flex;
  min-height: 68px;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-2);
  padding: 0 var(--space-3);
  color: #f4f6f7;
  font-size: 17px;
  font-weight: 620;
  cursor: pointer;
  list-style: none;
}

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

.faq__item summary::after {
  flex: 0 0 auto;
  content: "+";
  color: rgba(244, 246, 247, 0.76);
  font-size: 28px;
  font-weight: 300;
  transition: transform 0.2s ease;
}

.faq__item[open] summary::after {
  transform: rotate(45deg);
}

.faq__item p {
  max-width: 760px;
  margin: 0;
  padding: 0 var(--space-3) var(--space-3);
  color: #aeb5ba;
  font-size: 15px;
  line-height: 1.62;
}

@media (max-width: 1240px) {
  .header-actions {
    gap: 10px;
  }

  .header-phone {
    font-size: 13px;
  }

  .header-cta {
    min-width: 170px;
  }
}

@media (max-width: 1199px) {
  :root {
    --max: 960px;
    --side: 32px;
    --grid-columns: 8;
    --grid-gutter: 24px;
  }

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

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

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

  .install__timeline article {
    grid-template-columns: 42px minmax(0, 1fr);
    column-gap: var(--space-3);
    justify-items: start;
    text-align: left;
  }

  .install__timeline article:not(:last-child)::after {
    left: var(--install-node-center);
    width: 1px;
    height: calc(100% + var(--grid-gutter) + 2px);
  }

  .install__timeline span {
    grid-row: 1 / span 2;
    grid-column: 1;
  }

  .install__timeline h3 {
    grid-column: 2;
    margin-top: 0;
  }

  .install__timeline p {
    grid-column: 2;
    margin-top: var(--space-1);
  }

  .metric:nth-last-child(-n + 2) {
    grid-column: span 4;
  }

  .marketplaces__copy,
  .marketplaces__actions,
  .shatter__copy,
  .shatter__scene,
  .warehouse-map,
  .warehouse-panel,
  .faq__head,
  .faq__list,
  .request__copy,
  .lead-form,
  .footer__company,
  .footer__nav,
  .footer__contacts {
    grid-column: 1 / -1;
  }

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

  .faq__grid {
    gap: var(--space-4);
  }
}

@media (max-width: 991px) {
  :root {
    --max: 736px;
    --side: 16px;
    --grid-columns: 8;
    --grid-gutter: 16px;
  }
}

@media (max-width: 1240px) {
  .site-header {
    min-height: 66px;
  }

  .menu-toggle {
    display: block;
    grid-column: 3;
  }

  .site-nav,
  .header-actions {
    position: fixed;
    right: var(--side);
    left: var(--side);
    display: none;
  }

  .site-nav {
    top: 78px;
    flex-direction: column;
    align-items: stretch;
    padding: 18px;
    border: 1px solid var(--line);
    background: rgba(2, 4, 5, 0.96);
  }

  .header-actions {
    top: 318px;
    width: auto;
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    justify-self: stretch;
  }

  .header-phone,
  .header-cta {
    width: 100%;
    min-height: 45px;
    justify-content: center;
  }

  body.nav-open .site-nav,
  body.nav-open .header-actions {
    display: flex;
  }
}

@media (max-width: 900px) {
  .contact-dock {
    top: 64%;
    right: 2px;
    bottom: auto;
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 6px;
    transform: translateY(-50%);
  }

  .contact-dock__link {
    width: 48px;
    height: 48px;
  }

  .contact-dock__link img {
    width: 43px;
    height: 43px;
  }

  .hero,
  .hero__content {
    min-height: 720px;
  }

  .hero__content {
    padding-top: 155px;
  }

  .benefit,
  .metric {
    min-height: auto;
    padding: var(--space-3);
  }

  .benefit {
    padding: 0;
  }

  .lineup__row {
    grid-auto-columns: minmax(250px, 300px);
    grid-template-columns: repeat(3, minmax(250px, 300px));
    grid-template-rows: repeat(2, 340px);
  }

  .pcard {
    height: 340px;
  }

  .result__frame {
    height: 300px;
  }

}

@media (max-width: 767px) {
  :root {
    --grid-columns: 4;
    --grid-gutter: 16px;
  }

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

  .quality {
    padding: var(--space-5) 0 var(--space-6);
  }

  .quality__grid {
    gap: var(--space-5);
  }

  .quality__media,
  .quality__copy {
    grid-column: 1 / -1;
  }

  .quality__panel {
    padding: var(--space-3);
  }

  .quality__panel::before {
    top: -2px;
    right: 12%;
    bottom: auto;
    left: 12%;
    width: auto;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(232, 237, 240, 0.64), transparent);
  }

  .quality__badge {
    bottom: 14px;
    left: 14px;
    width: 88px;
    height: 88px;
  }

  .quality__badge strong {
    font-size: 14px;
  }

  .quality__badge span {
    margin-top: 5px;
    font-size: 9px;
  }

  .quality__points {
    margin-top: var(--space-4);
  }

  .quality__point {
    min-height: 84px;
    padding: 14px 44px 14px 14px;
  }

  .quality__statement {
    font-size: 18px;
  }

  .hero__wordmark,
  .hero h1,
  .hero__lead,
  .hero__swatches,
  .hero__actions,
  .benefit,
  .marketplaces__copy,
  .marketplaces__actions,
  .metric,
  .metric:nth-last-child(-n + 2),
  .request__copy,
  .lead-form,
  .footer__company,
  .footer__nav,
  .footer__contacts {
    grid-column: 1 / -1;
  }

  .shatter__copy,
  .shatter__scene,
  .faq__head,
  .faq__list {
    grid-column: 1 / -1;
  }

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

  .app-card {
    min-height: 360px;
  }
}

@media (max-width: 640px) {
  .contact-dock {
    display: none;
  }

  .hero,
  .hero__content {
    min-height: auto;
  }

  .hero__content {
    padding-top: 112px;
    padding-bottom: var(--space-4);
  }

  .hero__wordmark {
    width: min(350px, 100%);
    margin-bottom: var(--space-2);
  }

  .hero__lead {
    margin-top: var(--space-2);
    font-size: 16px;
  }

  .hero__swatches,
  .form-row {
    grid-template-columns: 1fr;
  }

  .marquee {
    padding: 18px 0;
  }

  .showcase {
    min-height: 560px;
  }

  .showcase__content {
    padding-block: var(--space-6);
  }

  .showcase__stats {
    gap: var(--space-3);
  }

  .shatter {
    padding: var(--space-6) 0;
  }

  .shatter__scene {
    margin-top: var(--space-2);
  }

  .lineup__row {
    grid-auto-columns: minmax(242px, 78vw);
    grid-template-columns: repeat(6, minmax(242px, 78vw));
    grid-template-rows: 342px;
  }

  .pcard {
    height: 342px;
  }

  .hero__swatches {
    gap: var(--space-1);
    margin-top: var(--space-3);
  }

  .hero__swatches a {
    min-height: 56px;
    padding: var(--space-1) 10px;
  }

  .swatch {
    height: var(--space-3);
  }

  .hero__actions {
    margin-top: var(--space-3);
  }

  .marketplaces {
    padding: var(--space-6) 0 var(--space-7);
  }

  .marketplace-button {
    grid-template-columns: 50px minmax(0, 1fr) 20px;
    min-height: 82px;
    gap: 10px;
    padding: 12px;
  }

  .marketplace-button__logo {
    width: 50px;
    height: 50px;
  }

  .marketplace-button span:not(.marketplace-button__arrow) {
    font-size: clamp(18px, 5.4vw, 21px);
  }

  .marketplace-button__arrow {
    width: 20px;
    height: 20px;
    font-size: 20px;
  }

  .trust {
    padding: var(--space-6) 0 var(--space-7);
  }

  .trust__viewport {
    margin-top: 0;
  }

  .trust__track {
    animation-duration: 34s;
  }

  .trust__set {
    gap: 10px;
    padding-right: 10px;
  }

  .trust-card {
    flex-basis: 210px;
    height: 106px;
    min-height: 106px;
    padding: var(--space-2);
  }

  .trust-card::before {
    left: var(--space-2);
    width: min(76px, 48%);
  }

  .trust-card__logo {
    max-width: 90%;
    max-height: 76px;
  }

  .warehouses {
    padding: var(--space-6) 0 var(--space-7);
  }

  .warehouses__grid {
    margin-top: var(--space-4);
  }

  .warehouse-map__image {
    padding: 0;
  }

  .warehouse-city__label {
    display: none;
  }

  .warehouse-panel {
    padding: var(--space-3);
  }

  .warehouse-picker {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: var(--space-3);
  }

  .warehouse-card h3 {
    font-size: clamp(29px, 9vw, 38px);
  }

  .request__copy h2 {
    white-space: normal;
  }

  .lineup__card {
    min-height: 430px;
    padding: var(--space-4) var(--space-3) 0;
  }

  .faq {
    padding: var(--space-6) 0;
  }

  .faq__item summary {
    min-height: 62px;
    padding-inline: var(--space-2);
    font-size: 15px;
  }

  .faq__item p {
    padding-inline: var(--space-2);
  }

  .lineup__copy {
    min-height: 0;
  }

  .lineup__media {
    margin-inline: calc(var(--space-3) * -1);
  }

  .main-cta {
    width: 100%;
    min-width: 0;
  }

  .request-contacts {
    display: grid;
    grid-template-columns: 1fr;
  }

  .result__frame {
    height: clamp(220px, 58vw, 330px);
  }

  .result__handle {
    width: 42px;
    height: 42px;
  }

  .footer__grid {
    padding: var(--space-5) 0;
  }

  .footer__details div {
    grid-template-columns: 1fr;
    gap: 2px;
  }

  .legal-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .legal-doc {
    padding-bottom: 48px;
  }
}

@media (max-width: 359px) {
  :root {
    --max: 296px;
    --side: 12px;
    --grid-gutter: 12px;
  }
}

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

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

  .hero__video {
    display: none;
  }

  .showcase__video {
    display: none;
  }

  .marquee__track,
  .trust__track {
    animation: none !important;
  }

  .hero {
    background: url("../assets/img/hero-poster.webp") center / cover no-repeat;
  }
}
