:root {
  color-scheme: dark;
  --black: #020304;
  --carbon: #07090d;
  --panel: rgba(255, 255, 255, 0.052);
  --line: rgba(255, 255, 255, 0.12);
  --text: #f7f8fa;
  --muted: rgba(247, 248, 250, 0.66);
  --soft: rgba(247, 248, 250, 0.44);
  --cyan: #56ddff;
  --blue: #4677ff;
  --orange: #ff9a4b;
  --warm: #ffd1a0;
  --radius: 8px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --container: 1240px;
  --container-wide: 1360px;
  --section-x: clamp(22px, 5vw, 84px);
  --section-y: clamp(96px, 13vw, 176px);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    linear-gradient(180deg, #020304 0%, #05080c 42%, #020304 100%);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Segoe UI", sans-serif;
  letter-spacing: 0;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -2;
  content: "";
  background:
    linear-gradient(115deg, rgba(86, 221, 255, 0.055), transparent 34%),
    linear-gradient(245deg, rgba(255, 154, 75, 0.05), transparent 38%),
    #020304;
}

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

button,
input {
  font: inherit;
}

.page-shell {
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(2, 3, 4, 0.1), rgba(2, 3, 4, 0.82) 58%, #020304);
}

.site-header {
  position: fixed;
  top: 18px;
  left: 50%;
  z-index: 50;
  display: grid;
  width: min(1240px, calc(100% - 32px));
  min-height: 58px;
  grid-template-columns: auto 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 8px 12px 8px 18px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 999px;
  background: rgba(2, 3, 4, 0.46);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.32), 0 0 40px rgba(86, 221, 255, 0.035);
  transform: translateX(-50%);
  backdrop-filter: blur(22px);
  transition: border-color 400ms var(--ease), background 400ms var(--ease), transform 520ms var(--ease), opacity 520ms var(--ease), box-shadow 520ms var(--ease);
}

.site-header.is-scrolled {
  border-color: rgba(86, 221, 255, 0.18);
  background: rgba(2, 3, 4, 0.78);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.42), 0 0 46px rgba(86, 221, 255, 0.06);
}

.site-header.is-hidden {
  opacity: 0.04;
  transform: translate(-50%, -18px);
  pointer-events: none;
}

.brand {
  display: inline-flex;
  width: auto;
  min-width: 76px;
  height: 70px;
  align-items: center;
  justify-content: center;
  padding: 6px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.025);
}

.brand-logo {
  display: block;
  width: auto;
  height: 58px;
  max-width: none;
  object-fit: contain;
  object-position: center;
  filter: drop-shadow(0 0 10px rgba(86, 221, 255, 0.12));
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: clamp(14px, 2.1vw, 34px);
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.85rem;
}

.main-nav a {
  padding: 10px 2px;
  transition: color 300ms var(--ease);
}

.main-nav a:hover {
  color: white;
}

.header-action,
.button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-size: 0.86rem;
  font-weight: 650;
  white-space: nowrap;
  transition:
    transform 450ms var(--ease),
    border-color 450ms var(--ease),
    background 450ms var(--ease),
    box-shadow 450ms var(--ease);
}

.header-tools {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}

.mobile-menu-toggle,
.mobile-menu {
  display: none;
}

.icon-button,
.account-link {
  position: relative;
  display: inline-grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.045);
  color: rgba(255, 255, 255, 0.86);
  cursor: pointer;
  transition: border-color 350ms var(--ease), background 350ms var(--ease), transform 350ms var(--ease), box-shadow 350ms var(--ease);
}

.icon-button:hover,
.account-link:hover {
  border-color: rgba(86, 221, 255, 0.28);
  background: rgba(86, 221, 255, 0.08);
  box-shadow: 0 0 28px rgba(86, 221, 255, 0.08);
  transform: translateY(-1px);
}

.icon-button svg,
.account-link svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.cart-count {
  position: absolute;
  top: -4px;
  right: -4px;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  border: 1px solid rgba(2, 3, 4, 0.75);
  border-radius: 999px;
  background: var(--cyan);
  color: #020304;
  font-size: 0.68rem;
  font-weight: 800;
  line-height: 17px;
  text-align: center;
}

.header-action {
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.82);
  color: #050608;
}

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

.hero-section {
  position: relative;
  min-height: 94svh;
  display: flex;
  align-items: flex-end;
  padding: clamp(120px, 18vh, 210px) clamp(20px, 5vw, 84px) clamp(58px, 9vh, 92px);
  overflow: hidden;
  isolation: isolate;
}

.hero-section::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  background:
    radial-gradient(circle at 72% 44%, rgba(86, 221, 255, 0.13), transparent 22%),
    radial-gradient(circle at 92% 22%, rgba(255, 154, 75, 0.12), transparent 24%),
    linear-gradient(180deg, transparent 62%, rgba(2, 3, 4, 0.72));
  mix-blend-mode: screen;
  opacity: 0.34;
  pointer-events: none;
  animation: glowFloat 9s var(--ease) infinite alternate;
}

.hero-slider {
  display: block;
  min-height: 100svh;
  padding: 0;
  background: #020304;
}

.hero-slide {
  position: absolute;
  inset: 0;
  display: flex;
  min-height: 100svh;
  align-items: flex-end;
  padding: clamp(126px, 17vh, 210px) clamp(22px, 5vw, 88px) clamp(76px, 10vh, 118px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 1200ms var(--ease), transform 1400ms var(--ease);
  transform: scale(1.012);
}

.hero-slide.is-active {
  opacity: 1;
  pointer-events: auto;
  transform: scale(1);
}

.hero-slide .hero-bg {
  background-image: var(--hero-image);
  background-position: center;
  opacity: 0.98;
  transform: scale(1.06);
  transition: transform 8200ms var(--ease);
}

.hero-slide.is-active .hero-bg {
  transform: scale(1.015);
}

.hero-slide .hero-content {
  transform: translateY(24px) scale(0.985);
  opacity: 0;
  transition: opacity 920ms var(--ease), transform 920ms var(--ease);
}

.hero-slide.is-active .hero-content {
  transform: translateY(0) scale(1);
  opacity: 1;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.74;
  object-fit: cover;
  filter: brightness(0.74) saturate(0.95);
}

.hero-slide .hero-scrim {
  background:
    linear-gradient(90deg, rgba(2, 3, 4, 0.9) 0%, rgba(2, 3, 4, 0.58) 32%, rgba(2, 3, 4, 0.18) 68%, rgba(2, 3, 4, 0.36) 100%),
    linear-gradient(180deg, rgba(2, 3, 4, 0.18) 0%, rgba(2, 3, 4, 0.22) 50%, #020304 100%);
}

.hero-slider-controls {
  position: absolute;
  left: clamp(22px, 5vw, 88px);
  bottom: clamp(24px, 4vh, 42px);
  z-index: 3;
  display: flex;
  gap: 10px;
}

.hero-slider-controls button,
.product-carousel-controls button,
.premium-slider-controls button {
  display: inline-grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.055);
  color: rgba(255, 255, 255, 0.74);
  cursor: pointer;
  backdrop-filter: blur(16px);
  transition: transform 380ms var(--ease), border-color 380ms var(--ease), background 380ms var(--ease), box-shadow 380ms var(--ease);
}

.hero-slider-controls button {
  position: relative;
  width: clamp(42px, 6vw, 72px);
  height: 4px;
  overflow: hidden;
  border: 0;
  border-radius: 999px;
  padding: 0;
  background: rgba(255, 255, 255, 0.18);
  box-shadow: none;
}

.hero-slider-controls button::before {
  position: absolute;
  inset: 0;
  width: 100%;
  content: "";
  background: linear-gradient(90deg, rgba(86, 221, 255, 0.96), rgba(255, 255, 255, 0.78));
  box-shadow: 0 0 24px rgba(86, 221, 255, 0.28);
  opacity: 0;
  transform: scaleX(var(--hero-progress-start, 0));
  transform-origin: left center;
}

.hero-slider-controls button.is-active {
  background: rgba(86, 221, 255, 0.16);
}

.hero-slider-controls button.is-active::before {
  opacity: 1;
}

.hero-slider-controls button.is-progressing::before {
  animation: heroProgressFill var(--hero-progress-duration, 6000ms) linear forwards;
}

.hero-slider.is-paused .hero-slider-controls button.is-progressing::before {
  animation-play-state: paused;
}

.hero-slider-controls button:hover,
.product-carousel-controls button:hover,
.premium-slider-controls button:hover {
  border-color: rgba(86, 221, 255, 0.34);
  background: rgba(86, 221, 255, 0.18);
  box-shadow: 0 0 34px rgba(86, 221, 255, 0.14);
  transform: translateY(-1px);
}

.products-section {
  padding-top: clamp(96px, 11vw, 156px);
  padding-bottom: clamp(108px, 13vw, 180px);
}

.trust-strip {
  display: flex;
  width: min(1180px, calc(100% - 40px));
  margin: clamp(24px, 4vw, 46px) auto 0;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  justify-content: center;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.26);
  backdrop-filter: blur(18px);
}

.trust-strip span,
.trust-strip strong {
  padding: 9px 12px;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.78rem;
  font-weight: 720;
}

.trust-strip strong {
  border: 1px solid rgba(86, 221, 255, 0.18);
  background: rgba(86, 221, 255, 0.055);
  color: rgba(255, 255, 255, 0.86);
}

.products-grid {
  display: grid;
  width: min(1480px, 100%);
  margin: 0 auto;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(26px, 2.8vw, 42px);
}

.products-carousel-shell {
  position: relative;
  width: min(1580px, 100%);
  margin: 0 auto;
}

.product-carousel-controls {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin: 0 0 22px;
}

.products-grid.products-carousel {
  width: 100%;
  grid-auto-columns: minmax(390px, calc((100% - 72px) / 3));
  grid-auto-flow: column;
  grid-template-columns: none;
  gap: clamp(28px, 3vw, 48px);
  overflow-x: auto;
  overscroll-behavior-x: contain;
  padding: 4px 4px 30px;
  scroll-padding-inline: 4px;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.products-grid.products-carousel::-webkit-scrollbar {
  display: none;
}

.products-grid.products-carousel .product-card {
  min-height: clamp(840px, 66vw, 960px);
  scroll-snap-align: start;
}

.product-card {
  position: relative;
  display: grid;
  min-height: clamp(780px, 62vw, 900px);
  grid-template-rows: auto 1fr;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.105);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.062), rgba(255, 255, 255, 0.022) 52%, rgba(86, 221, 255, 0.018)),
    #05070a;
  box-shadow:
    0 38px 120px rgba(0, 0, 0, 0.38),
    inset 0 1px 0 rgba(255, 255, 255, 0.055);
  transition: transform 650ms var(--ease), border-color 650ms var(--ease), box-shadow 650ms var(--ease), background 650ms var(--ease);
}

.product-card::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(135deg, rgba(86, 221, 255, 0.28), transparent 20%, transparent 76%, rgba(255, 154, 75, 0.22)),
    radial-gradient(circle at 50% 24%, rgba(86, 221, 255, 0.18), transparent 36%),
    radial-gradient(circle at 86% 9%, rgba(255, 154, 75, 0.11), transparent 30%);
  opacity: 0.34;
  transition: opacity 650ms var(--ease);
  mask: linear-gradient(#000, #000) content-box, linear-gradient(#000, #000);
  mask-composite: exclude;
  padding: 1px;
  pointer-events: none;
}

.product-card:hover {
  border-color: rgba(86, 221, 255, 0.34);
  box-shadow:
    0 50px 150px rgba(0, 0, 0, 0.58),
    0 0 54px rgba(86, 221, 255, 0.13),
    inset 0 1px 0 rgba(255, 255, 255, 0.075);
  transform: translateY(-6px);
}

.product-card:hover::before {
  opacity: 1;
}

.product-card-featured {
  border-color: rgba(255, 154, 75, 0.42);
  background:
    linear-gradient(180deg, rgba(255, 154, 75, 0.095), rgba(255, 255, 255, 0.026) 54%, rgba(86, 221, 255, 0.04)),
    #05070a;
  box-shadow:
    0 46px 150px rgba(0, 0, 0, 0.54),
    0 0 64px rgba(255, 154, 75, 0.11),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transform: translateY(-6px);
}

.product-card-locked {
  border-color: rgba(255, 255, 255, 0.085);
  cursor: pointer;
}

.product-card-locked::after {
  position: absolute;
  inset: clamp(20px, 2vw, 28px) clamp(20px, 2vw, 28px) auto;
  height: clamp(430px, 34vw, 520px);
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.52));
  content: "";
  pointer-events: none;
  z-index: 2;
}

.product-card-locked .product-media img,
.product-hero-media-locked img {
  filter: blur(2.5px) saturate(0.75) opacity(0.74) drop-shadow(0 34px 58px rgba(0, 0, 0, 0.58));
}

.product-image-badge {
  position: absolute;
  top: clamp(16px, 2vw, 24px);
  left: clamp(16px, 2vw, 24px);
  z-index: 3;
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  padding: 9px 13px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 780;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
  backdrop-filter: blur(14px);
}

.badge-orange {
  border: 1px solid rgba(255, 154, 75, 0.38);
  background: rgba(255, 154, 75, 0.14);
  color: #ffd3af;
  box-shadow: 0 0 28px rgba(255, 154, 75, 0.12);
}

.badge-cyan {
  border: 1px solid rgba(86, 221, 255, 0.18);
  background: rgba(86, 221, 255, 0.07);
  color: rgba(205, 244, 255, 0.82);
  box-shadow: 0 0 22px rgba(86, 221, 255, 0.055);
}

.badge-muted {
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.72);
  box-shadow: 0 0 24px rgba(255, 255, 255, 0.045);
}

.product-media {
  position: relative;
  display: grid;
  min-height: clamp(430px, 34vw, 520px);
  place-items: center;
  margin: clamp(20px, 2vw, 28px) clamp(20px, 2vw, 28px) 0;
  padding: clamp(28px, 3vw, 46px);
  overflow: hidden;
  border-radius: 16px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.072), rgba(255, 255, 255, 0.014)),
    radial-gradient(circle at 50% 44%, rgba(86, 221, 255, 0.18), transparent 42%),
    radial-gradient(circle at 68% 22%, rgba(255, 154, 75, 0.09), transparent 28%),
    #080a0e;
}

.product-media::before {
  position: absolute;
  inset: 9%;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(86, 221, 255, 0.24), transparent 58%),
    radial-gradient(circle at 72% 36%, rgba(255, 154, 75, 0.14), transparent 54%);
  content: "";
  filter: blur(24px);
  opacity: 0.7;
  transform: translateY(14px);
  transition: opacity 650ms var(--ease), transform 650ms var(--ease);
}

.product-media::after {
  position: absolute;
  right: 13%;
  bottom: 10%;
  left: 13%;
  height: 30px;
  border-radius: 50%;
  background: linear-gradient(90deg, rgba(86, 221, 255, 0.18), rgba(255, 154, 75, 0.12));
  filter: blur(22px);
  content: "";
}

.product-media img {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 420px;
  height: clamp(350px, 30vw, 430px);
  object-fit: contain;
  filter: contrast(1.05) saturate(0.96) drop-shadow(0 34px 58px rgba(0, 0, 0, 0.64));
  transition: transform 650ms var(--ease), filter 650ms var(--ease);
}

.product-card:hover .product-media img {
  transform: translateY(-8px) scale(1.025);
  filter: contrast(1.07) saturate(1) drop-shadow(0 42px 68px rgba(0, 0, 0, 0.72));
}

.product-card-locked:hover .product-media img {
  transform: translateY(-8px) scale(1.025);
  filter: blur(2.5px) saturate(0.75) opacity(0.74) drop-shadow(0 34px 58px rgba(0, 0, 0, 0.58));
}

.product-card:hover .product-media::before {
  opacity: 0.9;
  transform: translateY(0);
}

.product-content {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 380px;
  flex-direction: column;
  padding: 18px clamp(28px, 2.7vw, 42px) clamp(34px, 3vw, 50px);
}

.product-topline {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  align-items: end;
  margin-bottom: 24px;
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.83rem;
  text-transform: uppercase;
}

.product-topline p {
  width: fit-content;
  margin: 0;
  max-width: none;
  padding: 8px 12px;
  border: 1px solid rgba(86, 221, 255, 0.18);
  border-radius: 999px;
  background: rgba(86, 221, 255, 0.055);
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.72rem;
  font-weight: 720;
  letter-spacing: 0.095em;
  line-height: 1.28;
}

.product-price-card {
  display: grid;
  justify-items: start;
  min-width: max-content;
  padding: 0;
  color: white;
  text-align: left;
  white-space: nowrap;
}

.product-price-card b {
  display: block;
  color: white;
  font-size: clamp(2.75rem, 4vw, 4.35rem);
  font-weight: 760;
  line-height: 0.96;
  letter-spacing: 0;
  text-shadow: 0 0 28px rgba(86, 221, 255, 0.16), 0 22px 58px rgba(0, 0, 0, 0.46);
  white-space: nowrap;
}

.product-price-card span {
  display: block;
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.38);
  font-size: 0.7rem;
  font-weight: 720;
  letter-spacing: 0.2em;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}

.product-budget {
  width: fit-content;
  margin: -8px 0 22px;
  padding: 9px 13px;
  border: 1px solid rgba(86, 221, 255, 0.14);
  border-radius: 999px;
  background: rgba(86, 221, 255, 0.055);
  color: rgba(220, 246, 255, 0.82);
  font-size: 0.82rem;
  font-weight: 680;
  letter-spacing: 0.01em;
  line-height: 1.15;
}

.product-range-explain {
  margin: 0 0 24px;
  max-width: 48ch;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.95rem;
  line-height: 1.72;
}

.product-tagline {
  margin: -2px 0 14px;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(1.08rem, 1.1vw, 1.2rem);
  font-weight: 720;
  line-height: 1.38;
}

.product-use {
  min-height: 88px;
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.72;
}

.product-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 30px 0 30px;
  padding: 0;
  list-style: none;
}

.product-specs li {
  padding: 10px 13px;
  border: 1px solid rgba(255, 255, 255, 0.115);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.045);
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.84rem;
  font-weight: 620;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.035);
}

.product-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: auto;
  padding-top: 34px;
}

.product-actions .button {
  flex: 1 1 158px;
  min-width: 0;
  min-height: 50px;
  justify-content: center;
  white-space: nowrap;
}

.section-cta {
  display: flex;
  justify-content: center;
  margin-top: 34px;
}

.why-grid {
  display: grid;
  width: min(1380px, 100%);
  margin: 0 auto;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(24px, 3vw, 42px);
}

.reassurance-section {
  padding-block: clamp(112px, 14vw, 190px);
}

.reassurance-grid {
  width: min(1380px, 100%);
  gap: clamp(28px, 3.4vw, 48px);
  align-items: stretch;
}

.reassurance-grid .why-card-wide {
  grid-column: span 3;
}

.why-card-wide {
  grid-column: span 3;
}

.why-card {
  position: relative;
  min-height: 274px;
  padding: clamp(36px, 3.9vw, 56px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.018)),
    #05070a;
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.28);
  transition: transform 620ms var(--ease), border-color 620ms var(--ease), box-shadow 620ms var(--ease), background 620ms var(--ease);
}

.why-card::before {
  position: absolute;
  inset: -1px;
  content: "";
  background:
    radial-gradient(circle at 16% 14%, rgba(86, 221, 255, 0.12), transparent 32%),
    radial-gradient(circle at 86% 90%, rgba(255, 154, 75, 0.08), transparent 34%);
  opacity: 0;
  transition: opacity 620ms var(--ease);
}

.why-card:hover {
  border-color: rgba(86, 221, 255, 0.2);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.024)),
    #05070a;
  box-shadow: 0 34px 100px rgba(0, 0, 0, 0.42), 0 0 34px rgba(86, 221, 255, 0.07);
  transform: translateY(-5px);
}

.why-card:hover::before {
  opacity: 1;
}

.why-card span {
  position: relative;
  display: block;
  margin-bottom: clamp(28px, 3.2vw, 46px);
  color: var(--cyan);
  font-size: 0.8rem;
  font-weight: 760;
  letter-spacing: 0.14em;
}

.why-card h3 {
  position: relative;
  margin: 0 0 18px;
  font-size: clamp(1.18rem, 1.34vw, 1.56rem);
  line-height: 1.18;
  overflow-wrap: normal;
  text-wrap: balance;
  word-break: normal;
}

.why-card p {
  position: relative;
  color: var(--muted);
  line-height: 1.86;
}

.reassurance-section .why-card {
  min-height: 292px;
}

.build-section,
.feeling-section {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.012), transparent 36%),
    radial-gradient(circle at 14% 8%, rgba(86, 221, 255, 0.045), transparent 36%);
}

.build-layout {
  display: grid;
  width: min(1240px, 100%);
  margin: 0 auto;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: 18px;
}

.build-main,
.build-steps article,
.feeling-card,
.noise-panel,
.mode-card,
.optimization-compare,
.recommendation-bar,
.story-card,
.setup-gallery-card {
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.045);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.28);
}

.build-main {
  overflow: hidden;
}

.build-visual {
  display: grid;
  min-height: clamp(360px, 46vw, 620px);
  place-items: center;
  background:
    radial-gradient(circle at 50% 40%, rgba(86, 221, 255, 0.14), transparent 38%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.016)),
    #05070a;
}

.build-visual img {
  width: min(72%, 520px);
  height: min(48vh, 500px);
  object-fit: contain;
  filter: drop-shadow(0 36px 70px rgba(0, 0, 0, 0.62));
}

.build-copy {
  padding: clamp(24px, 4vw, 42px);
}

.build-copy span,
.story-card span,
.setup-gallery-card span {
  color: var(--cyan);
  font-size: 0.76rem;
  font-weight: 820;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.build-copy p,
.build-steps p,
.feeling-card p,
.noise-panel p,
.mode-card p,
.story-card p,
.setup-gallery-card p {
  color: var(--muted);
  line-height: 1.7;
}

.build-steps {
  display: grid;
  gap: 14px;
}

.build-steps article {
  padding: 24px;
  transition: transform 560ms var(--ease), border-color 560ms var(--ease), box-shadow 560ms var(--ease);
}

.build-steps article:hover,
.feeling-card:hover,
.setup-gallery-card:hover {
  border-color: rgba(86, 221, 255, 0.2);
  box-shadow: 0 34px 100px rgba(0, 0, 0, 0.42), 0 0 34px rgba(86, 221, 255, 0.07);
  transform: translateY(-5px) rotateX(1deg);
}

.build-steps span {
  color: var(--orange);
  font-size: 0.78rem;
  font-weight: 820;
  letter-spacing: 0.12em;
}

.feeling-grid {
  display: grid;
  width: min(var(--container), 100%);
  margin: 0 auto;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.feeling-card {
  min-height: 300px;
  padding: 28px;
  transition: transform 560ms var(--ease), border-color 560ms var(--ease), box-shadow 560ms var(--ease);
}

.feeling-card span {
  display: inline-flex;
  margin-bottom: 52px;
  color: rgba(86, 221, 255, 0.78);
  font-size: 0.78rem;
  font-weight: 820;
  text-transform: uppercase;
}

.noise-panel {
  position: relative;
  display: grid;
  width: min(var(--container-wide), 100%);
  margin: 0 auto;
  grid-template-columns: minmax(0, 0.96fr) minmax(380px, 0.84fr);
  gap: clamp(24px, 4vw, 58px);
  align-items: stretch;
  padding: clamp(36px, 5.4vw, 78px);
  background:
    radial-gradient(circle at 18% 18%, rgba(86, 221, 255, 0.13), transparent 34%),
    radial-gradient(circle at 92% 82%, rgba(255, 154, 75, 0.08), transparent 38%),
    rgba(255, 255, 255, 0.04);
}

.noise-panel::before {
  position: absolute;
  inset: 1px;
  z-index: -1;
  content: "";
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(86, 221, 255, 0.06), transparent 42%, rgba(255, 154, 75, 0.05));
  opacity: 0.82;
}

.noise-copy {
  display: flex;
  min-height: 360px;
  flex-direction: column;
  justify-content: center;
}

.noise-copy h2 {
  max-width: 760px;
}

.noise-copy p:not(.eyebrow) {
  max-width: 640px;
  font-size: 1.08rem;
}

.noise-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 32px;
}

.noise-proof span {
  padding: 10px 13px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.045);
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.82rem;
  font-weight: 720;
}

.mode-card {
  display: flex;
  min-height: 360px;
  flex-direction: column;
  justify-content: center;
  padding: clamp(26px, 3vw, 42px);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.018)),
    rgba(0, 0, 0, 0.24);
  transition: transform 560ms var(--ease), border-color 560ms var(--ease), box-shadow 560ms var(--ease);
}

.mode-card:hover {
  border-color: rgba(86, 221, 255, 0.22);
  box-shadow: 0 34px 110px rgba(0, 0, 0, 0.46), 0 0 42px rgba(86, 221, 255, 0.08);
  transform: translateY(-4px);
}

.mode-card > span {
  display: block;
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.62);
  font-weight: 760;
}

.mode-switch {
  display: grid;
  gap: 12px;
}

.mode-switch label {
  cursor: pointer;
}

.mode-switch input {
  position: absolute;
  opacity: 0;
}

.mode-switch span {
  display: flex;
  min-height: 56px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.035);
  color: rgba(255, 255, 255, 0.62);
  transition: border-color 360ms var(--ease), background 360ms var(--ease), color 360ms var(--ease), box-shadow 360ms var(--ease);
}

.mode-switch input:checked + span {
  border-color: rgba(86, 221, 255, 0.32);
  background: rgba(86, 221, 255, 0.08);
  color: white;
  box-shadow: 0 0 28px rgba(86, 221, 255, 0.08);
}

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

.hero-bg {
  background-image: url("/public/homepage/hero-homepage-final.png");
  background-position: 54% center;
  background-size: cover;
  transform: scale(1.02);
  animation: heroDrift 24s var(--ease) infinite alternate;
}

.hero-scrim {
  background:
    linear-gradient(90deg, rgba(2, 3, 4, 0.86) 0%, rgba(2, 3, 4, 0.52) 28%, rgba(2, 3, 4, 0.1) 55%, rgba(2, 3, 4, 0.18) 100%),
    linear-gradient(180deg, rgba(2, 3, 4, 0.2) 0%, rgba(2, 3, 4, 0.18) 56%, #020304 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(760px, 100%);
  text-shadow: 0 24px 80px rgba(0, 0, 0, 0.72);
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--cyan);
  font-size: 0.78rem;
  font-weight: 760;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 24px;
  font-size: clamp(3.15rem, 7.2vw, 7.2rem);
  font-weight: 720;
  line-height: 0.92;
}

h2 {
  margin-bottom: 22px;
  font-size: clamp(2.6rem, 6vw, 6.7rem);
  font-weight: 710;
  line-height: 0.94;
}

h3 {
  font-size: clamp(1.6rem, 2.6vw, 2.8rem);
  font-weight: 690;
  line-height: 1;
}

.hero-copy {
  max-width: 520px;
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(1.08rem, 2vw, 1.36rem);
  line-height: 1.55;
}

.hero-actions,
.setup-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.button {
  min-width: 172px;
  padding: 0 24px;
  border: 1px solid transparent;
}

.button-primary {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(205, 244, 255, 0.92)),
    radial-gradient(circle at 18% 12%, rgba(86, 221, 255, 0.45), transparent 42%);
  color: #050608;
  box-shadow: 0 20px 60px rgba(86, 221, 255, 0.18);
}

.button-primary:hover {
  box-shadow: 0 28px 78px rgba(86, 221, 255, 0.26), 0 0 22px rgba(255, 255, 255, 0.16) inset;
}

.whatsapp-button {
  gap: 9px;
}

.whatsapp-button::before {
  display: inline-block;
  width: 17px;
  height: 17px;
  flex: 0 0 auto;
  background: currentColor;
  content: "";
  mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12.04 2a9.91 9.91 0 0 0-8.46 15.05L2.45 22l5.07-1.08A9.96 9.96 0 1 0 12.04 2Zm0 1.8a8.15 8.15 0 0 1 6.94 12.43 8.16 8.16 0 0 1-10.99 2.86l-.32-.17-2.82.6.63-2.74-.19-.34A8.12 8.12 0 0 1 12.04 3.8Zm-3.3 4.3c-.2 0-.52.08-.8.38-.28.3-1.05 1.03-1.05 2.5s1.08 2.9 1.23 3.1c.15.2 2.1 3.36 5.2 4.58 2.58 1.02 3.1.82 3.66.77.56-.05 1.8-.74 2.05-1.45.25-.72.25-1.33.18-1.46-.08-.13-.28-.2-.58-.35-.3-.15-1.78-.88-2.05-.98-.28-.1-.48-.15-.68.15-.2.3-.78.98-.95 1.18-.18.2-.35.22-.65.07-.3-.15-1.27-.47-2.43-1.5-.9-.8-1.5-1.78-1.68-2.08-.17-.3-.02-.46.13-.61.13-.13.3-.35.45-.53.15-.17.2-.3.3-.5.1-.2.05-.38-.03-.53-.07-.15-.68-1.64-.93-2.25-.24-.58-.49-.5-.67-.5h-.58Z'/%3E%3C/svg%3E");
  mask-position: center;
  mask-repeat: no-repeat;
  mask-size: contain;
}

.back-to-top {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 49;
  display: inline-grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border: 1px solid rgba(86, 221, 255, 0.24);
  border-radius: 999px;
  background: rgba(2, 3, 4, 0.82);
  color: rgba(255, 255, 255, 0.92);
  font-size: 1.15rem;
  font-weight: 800;
  box-shadow: 0 24px 88px rgba(0, 0, 0, 0.46), 0 0 42px rgba(86, 221, 255, 0.11);
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px) scale(0.96);
  backdrop-filter: blur(18px);
  transition: opacity 380ms var(--ease), transform 380ms var(--ease), border-color 380ms var(--ease), box-shadow 380ms var(--ease);
}

.back-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.back-to-top:hover {
  border-color: rgba(86, 221, 255, 0.48);
  box-shadow: 0 28px 96px rgba(0, 0, 0, 0.52), 0 0 56px rgba(86, 221, 255, 0.18);
  transform: translateY(-3px) scale(1.02);
}

.button-ghost {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(18px);
}

.button-ghost:hover {
  border-color: rgba(86, 221, 255, 0.36);
  background: rgba(86, 221, 255, 0.07);
  box-shadow: 0 20px 58px rgba(86, 221, 255, 0.1);
}

.hero-meta {
  position: absolute;
  right: clamp(20px, 5vw, 84px);
  bottom: clamp(30px, 6vh, 72px);
  z-index: 2;
  display: flex;
  gap: 10px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.8rem;
}

.hero-meta span {
  padding: 10px 13px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(2, 3, 4, 0.36);
  backdrop-filter: blur(16px);
}

.section {
  position: relative;
  padding: var(--section-y) var(--section-x);
}

.section-heading,
.config-heading {
  width: min(920px, 100%);
  margin: 0 auto clamp(38px, 6vw, 76px);
  text-align: center;
}

.section-heading p:not(.eyebrow),
.config-heading p:not(.eyebrow) {
  margin-inline: auto;
  max-width: 640px;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.7;
}

.page-hero {
  display: grid;
  width: min(940px, 100%);
  margin: 0 auto clamp(42px, 6vw, 78px);
  justify-items: center;
  text-align: center;
}

.page-kicker {
  margin: 0 0 18px;
  color: var(--cyan);
  font-size: 0.8rem;
  font-weight: 780;
  letter-spacing: 0.18em;
  text-align: center;
  text-transform: uppercase;
}

.page-title {
  width: min(880px, 100%);
  margin: 0 auto;
  text-align: center;
  line-height: 0.96;
}

.page-subtitle {
  width: min(660px, 100%);
  margin: 24px auto 0;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.72;
  text-align: center;
}

.premium-slider-section {
  position: relative;
  padding: clamp(72px, 9vw, 132px) var(--section-x) clamp(86px, 11vw, 150px);
  overflow: hidden;
}

.premium-slider-section::before {
  position: absolute;
  inset: 4% -12% auto;
  height: 56%;
  content: "";
  background:
    radial-gradient(circle at 22% 22%, rgba(86, 221, 255, 0.14), transparent 34%),
    radial-gradient(circle at 82% 28%, rgba(255, 154, 75, 0.1), transparent 32%);
  filter: blur(18px);
  opacity: 0.9;
  pointer-events: none;
}

.premium-slider-shell {
  position: relative;
  width: min(1500px, 100%);
  margin: 0 auto;
}

.premium-slider-header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: end;
  margin-bottom: clamp(28px, 4vw, 46px);
}

.premium-slider-header h2 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(2.4rem, 5vw, 5.8rem);
  line-height: 0.94;
}

.premium-slider-header p {
  max-width: 580px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.7;
}

.premium-slider-controls {
  display: flex;
  gap: 10px;
}

.premium-slider-track {
  display: grid;
  grid-auto-columns: minmax(min(86vw, 980px), 1fr);
  grid-auto-flow: column;
  gap: clamp(18px, 2vw, 30px);
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scroll-padding-inline: 2px;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.premium-slider-track::-webkit-scrollbar {
  display: none;
}

.premium-slide {
  position: relative;
  display: grid;
  min-height: clamp(460px, 34vw, 620px);
  align-content: end;
  overflow: hidden;
  padding: clamp(30px, 4vw, 58px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.026)),
    radial-gradient(circle at 16% 18%, rgba(86, 221, 255, 0.12), transparent 30%),
    #05070a;
  box-shadow:
    0 44px 150px rgba(0, 0, 0, 0.42),
    inset 0 1px 0 rgba(255, 255, 255, 0.07);
  scroll-snap-align: start;
  transform: scale(0.985);
  transition: transform 680ms var(--ease), border-color 680ms var(--ease), box-shadow 680ms var(--ease);
}

.premium-slide::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(135deg, rgba(86, 221, 255, 0.16), transparent 46%),
    radial-gradient(circle at 82% 22%, rgba(255, 154, 75, 0.1), transparent 32%);
  opacity: 0.55;
  transition: opacity 680ms var(--ease);
  pointer-events: none;
}

.premium-slide.is-active,
.premium-slide:hover {
  border-color: rgba(86, 221, 255, 0.28);
  box-shadow:
    0 54px 170px rgba(0, 0, 0, 0.58),
    0 0 68px rgba(86, 221, 255, 0.09),
    inset 0 1px 0 rgba(255, 255, 255, 0.09);
  transform: translateY(-4px) scale(1);
}

.premium-slide.is-active::before,
.premium-slide:hover::before {
  opacity: 0.9;
}

.premium-slide-content {
  position: relative;
  z-index: 1;
  max-width: 680px;
}

.premium-slide-content h3 {
  margin: 0;
  font-size: clamp(2.15rem, 4.3vw, 5.1rem);
  line-height: 0.96;
}

.premium-slide-content p {
  max-width: 560px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(1rem, 1.2vw, 1.18rem);
  line-height: 1.7;
}

.premium-slide-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.premium-slide-accent {
  position: absolute;
  right: clamp(22px, 4vw, 58px);
  top: clamp(22px, 4vw, 54px);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 78px;
  min-height: 42px;
  padding: 10px 16px;
  border: 1px solid rgba(86, 221, 255, 0.2);
  border-radius: 999px;
  background: rgba(86, 221, 255, 0.07);
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  backdrop-filter: blur(18px);
}

.premium-trust-section {
  padding-top: clamp(94px, 10vw, 156px);
  padding-bottom: clamp(94px, 10vw, 166px);
}

.premium-trust-grid {
  display: grid;
  width: min(1460px, 100%);
  margin: 0 auto;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 28px);
}

.premium-trust-card {
  position: relative;
  min-height: 250px;
  overflow: hidden;
  padding: clamp(26px, 2.5vw, 40px);
  border: 1px solid rgba(255, 255, 255, 0.095);
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.064), rgba(255, 255, 255, 0.024)),
    #05070a;
  box-shadow: 0 34px 110px rgba(0, 0, 0, 0.34);
  transition: transform 520ms var(--ease), border-color 520ms var(--ease), box-shadow 520ms var(--ease);
}

.premium-trust-card::after {
  position: absolute;
  inset: auto 18px 18px;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, rgba(86, 221, 255, 0.55), transparent);
  opacity: 0.35;
}

.premium-trust-card:hover {
  border-color: rgba(86, 221, 255, 0.25);
  box-shadow: 0 44px 132px rgba(0, 0, 0, 0.48), 0 0 44px rgba(86, 221, 255, 0.075);
  transform: translateY(-6px);
}

.premium-trust-card span {
  display: inline-flex;
  margin-bottom: 34px;
  color: rgba(86, 221, 255, 0.76);
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.16em;
}

.premium-trust-card h3 {
  margin: 0;
  font-size: clamp(1.35rem, 1.8vw, 2.05rem);
  line-height: 1.05;
}

.premium-trust-card p {
  margin: 18px 0 0;
  color: var(--muted);
  line-height: 1.65;
}

.trust-visual-row {
  display: grid;
  width: min(1460px, 100%);
  margin: clamp(24px, 3vw, 42px) auto 0;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(18px, 2vw, 30px);
}

.trust-visual-card {
  position: relative;
  display: grid;
  min-height: clamp(420px, 35vw, 560px);
  align-content: end;
  overflow: hidden;
  padding: clamp(30px, 4vw, 54px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  background: #05070a;
  box-shadow: 0 42px 138px rgba(0, 0, 0, 0.42);
}

.trust-visual-card::before {
  position: absolute;
  inset: 0;
  background-image: var(--trust-image);
  background-position: center;
  background-size: cover;
  content: "";
  filter: brightness(0.82) saturate(0.95);
  transform: scale(1.03);
  transition: transform 900ms var(--ease), filter 900ms var(--ease);
}

.trust-visual-card::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(2, 3, 4, 0.78), rgba(2, 3, 4, 0.24)),
    linear-gradient(180deg, transparent 24%, rgba(2, 3, 4, 0.88));
  content: "";
}

.trust-visual-card:hover::before {
  filter: brightness(0.94) saturate(1);
  transform: scale(1.07);
}

.trust-visual-card > * {
  position: relative;
  z-index: 1;
}

.trust-visual-card span {
  margin-bottom: 18px;
  color: var(--cyan);
  font-size: 0.76rem;
  font-weight: 820;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.trust-visual-card h3 {
  max-width: 620px;
  margin: 0;
  font-size: clamp(2rem, 3.8vw, 4.4rem);
}

.trust-visual-card p {
  max-width: 520px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.7;
}

.product-setup-upsell {
  display: grid;
  width: min(1480px, 100%);
  margin: clamp(28px, 4vw, 58px) auto 0;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  padding: clamp(26px, 3vw, 44px);
  border: 1px solid rgba(86, 221, 255, 0.16);
  border-radius: 24px;
  background:
    radial-gradient(circle at 14% 12%, rgba(86, 221, 255, 0.12), transparent 34%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.028)),
    #05070a;
  box-shadow: 0 34px 120px rgba(0, 0, 0, 0.38);
}

.product-setup-upsell h3 {
  margin: 0;
  font-size: clamp(1.8rem, 3vw, 3.6rem);
  line-height: 0.98;
}

.product-setup-upsell p {
  max-width: 680px;
  margin: 16px 0 0;
  color: var(--muted);
  line-height: 1.65;
}

.product-setup-upsell-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}

.account-grid {
  display: grid;
  width: min(1320px, 100%);
  margin: 0 auto;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: clamp(20px, 3vw, 38px);
}

.account-panel,
.timeline-panel {
  position: relative;
  overflow: hidden;
  padding: clamp(28px, 3vw, 46px);
  border: 1px solid rgba(255, 255, 255, 0.095);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.064), rgba(255, 255, 255, 0.024)),
    #05070a;
  box-shadow: 0 38px 128px rgba(0, 0, 0, 0.42);
}

.account-panel h2,
.timeline-panel h2 {
  margin: 0;
  font-size: clamp(1.9rem, 3vw, 3.4rem);
  line-height: 1;
}

.account-panel p,
.timeline-panel p {
  color: var(--muted);
  line-height: 1.7;
}

.account-actions,
.order-status-grid {
  display: grid;
  gap: 14px;
  margin-top: 26px;
}

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

.order-status-card {
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.035);
}

.order-status-card span {
  color: rgba(86, 221, 255, 0.78);
  font-size: 0.72rem;
  font-weight: 820;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.order-status-card strong {
  display: block;
  margin-top: 10px;
  font-size: 1.08rem;
}

.order-timeline {
  display: grid;
  gap: 20px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.order-timeline li {
  position: relative;
  padding-left: 30px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.55;
}

.order-timeline li::before {
  position: absolute;
  left: 0;
  top: 0.35em;
  width: 10px;
  height: 10px;
  border: 1px solid rgba(86, 221, 255, 0.45);
  border-radius: 50%;
  background: rgba(86, 221, 255, 0.18);
  box-shadow: 0 0 24px rgba(86, 221, 255, 0.24);
  content: "";
}

.fps-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  width: min(1320px, 100%);
  margin: 0 auto;
}

.performance-tabs {
  display: flex;
  width: min(760px, 100%);
  margin: -28px auto 24px;
  padding: 6px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(18px);
}

.performance-tabs button {
  flex: 1;
  min-height: 46px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: rgba(255, 255, 255, 0.58);
  cursor: pointer;
  font: inherit;
  font-weight: 760;
  transition: color 420ms var(--ease), background 420ms var(--ease), box-shadow 420ms var(--ease);
}

.performance-tabs button.is-active {
  background:
    linear-gradient(135deg, rgba(86, 221, 255, 0.16), rgba(255, 154, 75, 0.12)),
    rgba(255, 255, 255, 0.08);
  color: white;
  box-shadow: 0 0 34px rgba(86, 221, 255, 0.12);
}

.performance-context {
  width: min(760px, 100%);
  margin: 0 auto clamp(28px, 4vw, 44px);
  text-align: center;
}

.performance-context span {
  color: rgba(86, 221, 255, 0.72);
  font-size: 0.78rem;
  font-weight: 820;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.performance-context h2 {
  margin-top: 10px;
  font-size: clamp(1.8rem, 4vw, 3.3rem);
}

.performance-context p {
  margin: 12px auto 0;
  max-width: 620px;
  color: var(--muted);
  line-height: 1.65;
}

.fps-card {
  position: relative;
  min-height: 392px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: var(--radius);
  background: #05070a;
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.035);
  isolation: isolate;
  transition:
    transform 700ms var(--ease),
    border-color 700ms var(--ease),
    box-shadow 700ms var(--ease);
}

.fps-card::before {
  position: absolute;
  inset: 0;
  z-index: -2;
  content: "";
  background-image: var(--bg);
  background-position: center;
  background-size: cover;
  filter: saturate(0.92) contrast(1.02);
  transform: scale(1.03);
  transition: transform 1100ms var(--ease), filter 900ms var(--ease);
}

.fps-card::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background:
    linear-gradient(180deg, rgba(2, 3, 4, 0.14), rgba(2, 3, 4, 0.62) 52%, rgba(2, 3, 4, 0.9)),
    linear-gradient(90deg, rgba(2, 3, 4, 0.28), transparent 60%),
    linear-gradient(0deg, color-mix(in srgb, var(--accent) 24%, transparent), transparent 48%);
}

.fps-card:hover {
  border-color: color-mix(in srgb, var(--accent) 42%, rgba(255, 255, 255, 0.12));
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.42), 0 0 38px color-mix(in srgb, var(--accent) 20%, transparent);
  transform: translateY(-8px);
}

.fps-card:hover::before {
  filter: saturate(1.08) contrast(1.08);
  transform: scale(1.095);
}

.fps-card-content {
  position: absolute;
  inset: auto 0 0;
  padding: 26px;
}

.game-tag {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 8px 11px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.72rem;
  font-weight: 720;
  text-transform: uppercase;
  backdrop-filter: blur(14px);
}

.fps-card h3 {
  margin-bottom: 10px;
}

.fps-card p {
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.72);
}

.fps-card strong {
  display: inline-block;
  color: white;
  font-size: 2.9rem;
  line-height: 0.8;
  text-shadow: 0 0 28px color-mix(in srgb, var(--accent) 34%, transparent);
  transition: transform 620ms var(--ease), text-shadow 620ms var(--ease);
}

.fps-card:hover strong {
  transform: translateY(-2px);
  text-shadow: 0 0 38px color-mix(in srgb, var(--accent) 52%, transparent);
}

.fps-card a {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  border-bottom: 1px solid color-mix(in srgb, var(--accent) 70%, white);
  color: white;
  font-size: 0.9rem;
  font-weight: 680;
}

.setup-section {
  padding: clamp(74px, 9vw, 118px) 0;
}

.setup-visual {
  position: relative;
  width: 100%;
  min-height: clamp(620px, 78svh, 820px);
  overflow: hidden;
  background: #050608;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06), inset 0 -1px 0 rgba(255, 255, 255, 0.05);
  isolation: isolate;
}

.setup-visual::before {
  position: absolute;
  inset: 0;
  z-index: -2;
  content: "";
  background-image: url("/public/setup-offer/setup-offer-100-v1.png");
  background-position: 62% center;
  background-size: cover;
  filter: saturate(0.94) contrast(1.04) brightness(0.86);
  transform: scale(1.018);
}

.setup-visual::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background:
    radial-gradient(circle at 18% 42%, rgba(86, 221, 255, 0.12), transparent 34%),
    linear-gradient(90deg, #020304 0%, rgba(2, 3, 4, 0.98) 34%, rgba(2, 3, 4, 0.72) 54%, rgba(2, 3, 4, 0.24) 100%),
    linear-gradient(180deg, #020304 0%, rgba(2, 3, 4, 0.04) 22%, rgba(2, 3, 4, 0.18) 68%, #020304 100%);
}

.setup-copy {
  position: relative;
  display: flex;
  width: min(620px, calc(100% - 36px));
  min-height: inherit;
  flex-direction: column;
  justify-content: center;
  margin-left: max(18px, calc((100vw - var(--container)) / 2));
  padding: clamp(36px, 7vw, 96px) 0;
}

.setup-copy h2 {
  max-width: 760px;
  font-size: clamp(2.75rem, 5.8vw, 5.9rem);
  line-height: 0.98;
  text-wrap: balance;
}

.setup-copy p:not(.eyebrow) {
  max-width: 540px;
  color: var(--muted);
  font-size: 1.12rem;
  line-height: 1.7;
}

.setup-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 480px;
  margin: 4px 0 28px;
}

.setup-badges span {
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 999px;
  background:
    linear-gradient(135deg, rgba(86, 221, 255, 0.08), rgba(255, 154, 75, 0.055)),
    rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.82rem;
  font-weight: 700;
  backdrop-filter: blur(14px);
}

.price-pulse {
  display: inline-block;
  margin-left: 4px;
  color: var(--warm);
  font-weight: 760;
  text-shadow: 0 0 28px rgba(255, 154, 75, 0.26);
}

.config-section {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.018), transparent 24%),
    linear-gradient(90deg, rgba(86, 221, 255, 0.035), transparent 48%, rgba(255, 154, 75, 0.035));
}

.config-layout {
  display: grid;
  width: min(1180px, 100%);
  margin: 0 auto;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.74fr);
  gap: 18px;
  align-items: stretch;
}

.configurator,
.config-result,
.review-card {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.045);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(20px);
}

.configurator {
  display: grid;
  gap: 24px;
  padding: clamp(22px, 4vw, 38px);
}

.budget-slider {
  display: grid;
  gap: 18px;
}

.budget-value {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
}

.budget-value span,
.budget-scale {
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.82rem;
}

.budget-value strong {
  color: white;
  font-size: clamp(2rem, 5vw, 3.8rem);
  line-height: 1;
}

.budget-slider input[type="range"] {
  width: 100%;
  accent-color: var(--cyan);
}

.budget-scale {
  display: flex;
  justify-content: space-between;
}

fieldset {
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}

legend {
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.92rem;
  font-weight: 720;
}

.segmented,
.swatches {
  display: grid;
  gap: 10px;
}

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

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

.segmented label,
.swatches label {
  cursor: pointer;
}

.segmented input,
.swatches input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.segmented span,
.swatches span {
  display: flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  background: rgba(0, 0, 0, 0.24);
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.92rem;
  font-weight: 650;
  transition: border-color 350ms var(--ease), background 350ms var(--ease), color 350ms var(--ease);
}

.segmented input:checked + span {
  border-color: rgba(86, 221, 255, 0.45);
  background: rgba(86, 221, 255, 0.1);
  color: white;
}

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

.swatches span::before {
  width: 18px;
  height: 18px;
  margin-right: 9px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  background: var(--swatch);
  content: "";
}

.swatches input:checked + span {
  border-color: rgba(255, 154, 75, 0.5);
  background: rgba(255, 154, 75, 0.09);
  color: white;
}

.setup-toggle {
  position: relative;
  display: grid;
  gap: 10px;
  isolation: isolate;
}

.setup-toggle::before {
  position: absolute;
  inset: 22px -10px -10px;
  z-index: -1;
  border-radius: calc(var(--radius) + 18px);
  background:
    radial-gradient(circle at 18% 42%, rgba(86, 221, 255, 0.2), transparent 42%),
    radial-gradient(circle at 84% 54%, rgba(255, 154, 75, 0.14), transparent 46%);
  content: "";
  filter: blur(18px);
  opacity: 0;
  transition: opacity 560ms var(--ease);
}

.setup-toggle:has(input[value="pack"]:checked)::before {
  opacity: 1;
}

.setup-toggle-option {
  cursor: pointer;
}

.setup-toggle-option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.setup-toggle-option span {
  display: grid;
  gap: 4px;
  min-height: 70px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  background: rgba(0, 0, 0, 0.24);
  color: rgba(255, 255, 255, 0.72);
  transition:
    border-color 520ms var(--ease),
    background 520ms var(--ease),
    box-shadow 520ms var(--ease),
    transform 520ms var(--ease);
}

.setup-toggle-option strong {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.94rem;
}

.setup-toggle-option small {
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.82rem;
  line-height: 1.45;
}

.setup-toggle-option input:checked + span {
  border-color: rgba(86, 221, 255, 0.42);
  background:
    linear-gradient(135deg, rgba(86, 221, 255, 0.11), rgba(255, 154, 75, 0.075)),
    rgba(255, 255, 255, 0.055);
  box-shadow: 0 0 34px rgba(86, 221, 255, 0.12), 0 18px 60px rgba(0, 0, 0, 0.24);
  transform: translateY(-1px);
}

.setup-toggle-option input[value="pc-only"]:checked + span {
  border-color: rgba(255, 255, 255, 0.13);
  background: rgba(255, 255, 255, 0.035);
  box-shadow: none;
}

.range-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 14px;
  align-items: center;
  color: rgba(255, 255, 255, 0.62);
}

input[type="range"] {
  width: 100%;
  accent-color: var(--cyan);
}

.config-result {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(24px, 4vw, 42px);
  background:
    linear-gradient(145deg, rgba(86, 221, 255, 0.095), transparent 46%),
    linear-gradient(335deg, rgba(255, 154, 75, 0.11), transparent 55%),
    rgba(255, 255, 255, 0.052);
}

.result-kicker {
  color: var(--cyan);
  font-size: 0.78rem;
  font-weight: 760;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.config-result h3 {
  margin: 18px 0;
  font-size: clamp(2rem, 4vw, 4rem);
}

.config-result p {
  color: var(--muted);
  line-height: 1.7;
}

.config-result dl {
  display: grid;
  gap: 12px;
  margin: 28px 0;
}

.recommendation-bar {
  margin: 0 0 22px;
  padding: 14px 16px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.92rem;
  font-weight: 720;
  line-height: 1.45;
  background:
    linear-gradient(135deg, rgba(86, 221, 255, 0.1), rgba(255, 154, 75, 0.06)),
    rgba(255, 255, 255, 0.04);
}

.config-result dl div {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: baseline;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
}

.config-result dt {
  color: rgba(255, 255, 255, 0.46);
}

.config-result dd {
  margin: 0;
  justify-self: end;
  color: white;
  text-align: right;
}

.reviews-grid {
  display: grid;
  width: min(1240px, 100%);
  margin: 0 auto;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.review-card {
  position: relative;
  min-height: 260px;
  overflow: hidden;
  padding: 18px;
  transition: transform 500ms var(--ease), border-color 500ms var(--ease), background 500ms var(--ease), box-shadow 500ms var(--ease);
}

.review-card video {
  display: block;
  width: 100%;
  height: clamp(430px, 45vw, 650px);
  margin-bottom: 22px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: var(--radius);
  background: #020304;
  object-fit: contain;
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.36);
}

.review-card:hover {
  border-color: rgba(86, 221, 255, 0.24);
  background: rgba(255, 255, 255, 0.062);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.42), 0 0 38px rgba(86, 221, 255, 0.075);
  transform: translateY(-5px);
}

.review-card p {
  margin: 0 12px 18px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1rem, 1.35vw, 1.16rem);
  line-height: 1.58;
}

.review-card span {
  display: inline-flex;
  margin: 0 12px 12px;
  padding: 8px 11px;
  border: 1px solid rgba(86, 221, 255, 0.18);
  border-radius: 999px;
  background: rgba(86, 221, 255, 0.06);
  color: rgba(255, 255, 255, 0.46);
  font-size: 0.78rem;
  font-weight: 760;
  text-transform: uppercase;
}

.video-placeholder {
  display: grid;
  min-height: clamp(320px, 42vw, 520px);
  margin-bottom: 24px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(86, 221, 255, 0.08), transparent),
    linear-gradient(335deg, rgba(255, 154, 75, 0.08), transparent),
    rgba(255, 255, 255, 0.03);
  color: rgba(255, 255, 255, 0.42);
  font-size: 0.78rem;
  font-weight: 760;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.social-proof-stack {
  display: grid;
  min-height: clamp(430px, 45vw, 650px);
  align-content: center;
  gap: 14px;
  margin-bottom: 22px;
  padding: clamp(18px, 3vw, 30px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 20% 12%, rgba(86, 221, 255, 0.14), transparent 35%),
    radial-gradient(circle at 84% 90%, rgba(255, 154, 75, 0.09), transparent 34%),
    rgba(0, 0, 0, 0.22);
}

.social-proof-stack div {
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.052);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.24);
}

.social-proof-stack span {
  margin: 0 0 10px;
  color: rgba(86, 221, 255, 0.74);
  background: transparent;
  border: 0;
  padding: 0;
}

.social-proof-stack p {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.96rem;
}

.optimization-layout {
  display: grid;
  width: min(1120px, 100%);
  margin: 0 auto;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.62fr);
  gap: 18px;
  align-items: stretch;
}

.optimization-copy {
  display: grid;
  align-content: center;
  gap: 24px;
  padding: clamp(28px, 5vw, 54px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 12% 18%, rgba(86, 221, 255, 0.09), transparent 32%),
    rgba(255, 255, 255, 0.04);
}

.optimization-compare {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: var(--radius);
  background: rgba(0, 0, 0, 0.18);
}

.optimization-compare div {
  padding: 22px;
}

.optimization-compare div + div {
  border-left: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(circle at 20% 0%, rgba(86, 221, 255, 0.1), transparent 40%),
    rgba(255, 255, 255, 0.035);
}

.optimization-compare span {
  display: block;
  margin-bottom: 14px;
  color: var(--cyan);
  font-size: 0.76rem;
  font-weight: 820;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.optimization-compare p {
  margin: 0;
  padding: 10px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.7);
}

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

.optimization-metrics div {
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 20% 10%, rgba(86, 221, 255, 0.1), transparent 34%),
    rgba(0, 0, 0, 0.18);
}

.optimization-metrics span {
  color: rgba(86, 221, 255, 0.74);
  font-size: 0.75rem;
  font-weight: 820;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.optimization-metrics strong {
  display: block;
  margin: 12px 0 8px;
  color: white;
  font-size: clamp(1.4rem, 2.5vw, 2.4rem);
  line-height: 1;
}

.optimization-metrics p {
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  line-height: 1.55;
}

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

.optimization-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 48px;
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.085);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.035);
  color: rgba(255, 255, 255, 0.78);
  font-weight: 680;
}

.optimization-list span {
  color: var(--orange);
  font-size: 0.76rem;
  letter-spacing: 0.1em;
}

.optimization-review {
  min-height: auto;
}

.footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 24px;
  align-items: center;
  padding: 42px clamp(20px, 5vw, 84px);
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  color: rgba(255, 255, 255, 0.48);
}

.footer-brand p,
.footer-note {
  margin: 8px 0 0;
}

.footer-logo {
  height: 44px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
}

.footer-links a {
  transition: color 300ms var(--ease);
}

.footer-links a:hover {
  color: white;
}

.footer-note {
  justify-self: end;
}

.cart-backdrop {
  position: fixed;
  inset: 0;
  z-index: 70;
  background: rgba(0, 0, 0, 0.46);
  opacity: 0;
  pointer-events: none;
  transition: opacity 420ms var(--ease);
  backdrop-filter: blur(4px);
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 80;
  display: grid;
  width: min(430px, 100%);
  height: 100svh;
  grid-template-rows: auto 1fr auto;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  background:
    linear-gradient(145deg, rgba(86, 221, 255, 0.08), transparent 38%),
    linear-gradient(335deg, rgba(255, 154, 75, 0.08), transparent 48%),
    rgba(3, 4, 6, 0.96);
  box-shadow: -36px 0 90px rgba(0, 0, 0, 0.54);
  transform: translateX(100%);
  transition: transform 620ms var(--ease);
  backdrop-filter: blur(24px);
}

.cart-open .cart-backdrop {
  opacity: 1;
  pointer-events: auto;
}

.cart-open .cart-drawer {
  transform: translateX(0);
}

.cart-header,
.cart-footer {
  padding: 28px;
}

.cart-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.cart-header h2 {
  margin: 10px 0 0;
  font-size: 2.2rem;
}

.cart-close {
  flex: 0 0 auto;
}

.cart-lines {
  display: grid;
  align-content: start;
  gap: 12px;
  overflow: auto;
  padding: 22px 20px;
}

.cart-empty {
  margin: 0;
  padding: 26px 10px;
  color: rgba(255, 255, 255, 0.5);
  text-align: center;
}

.cart-line {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.04);
  transition: border-color 360ms var(--ease), background 360ms var(--ease), transform 360ms var(--ease);
}

.cart-line:hover {
  border-color: rgba(86, 221, 255, 0.2);
  background: rgba(255, 255, 255, 0.058);
  transform: translateX(-2px);
}

.cart-line h3 {
  margin: 0 0 6px;
  font-size: 1.05rem;
}

.cart-line p {
  margin: 0;
  color: rgba(255, 255, 255, 0.54);
  font-size: 0.88rem;
}

.quantity-control {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
}

.quantity-control button {
  width: 28px;
  height: 28px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: white;
  cursor: pointer;
  transition: border-color 300ms var(--ease), background 300ms var(--ease), transform 300ms var(--ease);
}

.quantity-control button:hover {
  border-color: rgba(86, 221, 255, 0.32);
  background: rgba(86, 221, 255, 0.09);
  transform: translateY(-1px);
}

.quantity-control span {
  min-width: 20px;
  color: white;
  text-align: center;
}

.quantity-control .remove-line {
  border-color: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.58);
}

.cart-footer {
  display: grid;
  gap: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.cart-total-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.64);
}

.cart-total-row strong {
  color: white;
  font-size: clamp(2rem, 5vw, 3rem);
  line-height: 1;
  text-shadow: 0 0 26px rgba(86, 221, 255, 0.12);
}

.setup-product-hero {
  min-height: 100svh;
  padding-top: clamp(136px, 15vw, 190px);
  background:
    radial-gradient(circle at 70% 28%, rgba(86, 221, 255, 0.13), transparent 36%),
    radial-gradient(circle at 16% 72%, rgba(255, 154, 75, 0.08), transparent 38%);
}

.setup-hero-layout {
  display: grid;
  width: min(var(--container-wide), 100%);
  margin: 0 auto;
  grid-template-columns: minmax(0, 0.86fr) minmax(420px, 1fr);
  gap: clamp(36px, 6vw, 96px);
  align-items: center;
}

.setup-hero-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.setup-hero-copy h1 {
  max-width: 820px;
  font-size: clamp(4rem, 8.4vw, 8.8rem);
}

.setup-hero-copy p:not(.eyebrow) {
  max-width: 620px;
  color: var(--muted);
  font-size: 1.16rem;
  line-height: 1.8;
}

.setup-hero-price {
  display: flex;
  width: min(460px, 100%);
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin: 28px 0;
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.045);
}

.setup-hero-price span,
.setup-benefit-grid span,
.setup-experience-grid span {
  color: var(--cyan);
  font-size: 0.74rem;
  font-weight: 820;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.setup-hero-price strong {
  color: white;
  font-size: clamp(2.3rem, 5vw, 4rem);
  line-height: 0.92;
  text-shadow: 0 0 34px rgba(255, 154, 75, 0.24);
  white-space: nowrap;
}

.setup-hero-media,
.setup-main-frame,
.monitor-card,
.setup-accessory-media,
.setup-final-panel,
.setup-benefit-grid article,
.setup-experience-grid article {
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.016)),
    #05070a;
  box-shadow: 0 34px 110px rgba(0, 0, 0, 0.34);
}

.setup-hero-gallery {
  display: grid;
  gap: 16px;
}

.setup-hero-media {
  display: grid;
  min-height: clamp(520px, 58vw, 740px);
  place-items: center;
  overflow: hidden;
  margin: 0;
  background:
    radial-gradient(ellipse at 50% 68%, rgba(86, 221, 255, 0.18), transparent 38%),
    radial-gradient(circle at 50% 42%, rgba(86, 221, 255, 0.1), transparent 36%),
    radial-gradient(circle at 82% 18%, rgba(255, 154, 75, 0.07), transparent 34%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.016)),
    #05070a;
}

.setup-hero-media img,
.setup-accessory-media img {
  width: min(88%, 720px);
  max-height: 640px;
  object-fit: contain;
  filter: drop-shadow(0 42px 70px rgba(0, 0, 0, 0.58)) drop-shadow(0 0 34px rgba(86, 221, 255, 0.12));
  transition: opacity 240ms var(--ease), transform 700ms var(--ease), filter 700ms var(--ease);
}

.setup-hero-media:hover img,
.setup-accessory-media:hover img {
  filter: drop-shadow(0 46px 86px rgba(0, 0, 0, 0.66)) drop-shadow(0 0 44px rgba(86, 221, 255, 0.14));
  transform: scale(1.025);
}

.setup-accessory-media img {
  width: min(82%, 640px);
}

.setup-hero-thumbnails {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.setup-hero-thumbnails button {
  display: grid;
  min-height: 104px;
  cursor: pointer;
  place-items: center;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.68);
  transition: transform 420ms var(--ease), border-color 420ms var(--ease), box-shadow 420ms var(--ease), background 420ms var(--ease), color 420ms var(--ease);
}

.setup-hero-thumbnails button:hover,
.setup-hero-thumbnails button.is-active {
  border-color: rgba(86, 221, 255, 0.36);
  background: rgba(86, 221, 255, 0.075);
  color: white;
  box-shadow: 0 18px 55px rgba(0, 0, 0, 0.28), 0 0 30px rgba(86, 221, 255, 0.09);
  transform: translateY(-3px);
}

.setup-hero-thumbnails img {
  width: 100%;
  height: 68px;
  object-fit: contain;
  filter: drop-shadow(0 14px 20px rgba(0, 0, 0, 0.48)) drop-shadow(0 0 16px rgba(86, 221, 255, 0.08));
  transition: transform 420ms var(--ease);
}

.setup-hero-thumbnails button:hover img {
  transform: scale(1.06);
}

.setup-hero-thumbnails span {
  font-size: 0.74rem;
  font-weight: 760;
}

.setup-page-gallery {
  display: grid;
  width: min(var(--container-wide), 100%);
  margin: 0 auto;
  grid-template-columns: minmax(0, 1fr) minmax(210px, 0.24fr);
  gap: clamp(18px, 2.5vw, 34px);
  align-items: stretch;
}

.setup-main-frame {
  display: grid;
  min-height: clamp(520px, 58vw, 760px);
  place-items: center;
  margin: 0;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 50% 70%, rgba(86, 221, 255, 0.16), transparent 40%),
    radial-gradient(circle at 50% 42%, rgba(86, 221, 255, 0.09), transparent 38%),
    #05070a;
}

.setup-main-frame img {
  width: 86%;
  height: 86%;
  object-fit: contain;
  filter: drop-shadow(0 42px 70px rgba(0, 0, 0, 0.58)) drop-shadow(0 0 34px rgba(86, 221, 255, 0.1));
  transition: opacity 240ms var(--ease), transform 620ms var(--ease), filter 620ms var(--ease);
}

.setup-main-frame:hover img {
  filter: drop-shadow(0 44px 90px rgba(0, 0, 0, 0.64)) drop-shadow(0 0 34px rgba(86, 221, 255, 0.08));
  transform: scale(1.03);
}

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

.setup-page-thumbnails button {
  display: grid;
  min-height: 132px;
  cursor: pointer;
  place-items: center;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.72);
  transition: transform 420ms var(--ease), border-color 420ms var(--ease), box-shadow 420ms var(--ease), background 420ms var(--ease), color 420ms var(--ease);
}

.setup-page-thumbnails button:hover,
.setup-page-thumbnails button.is-active {
  border-color: rgba(86, 221, 255, 0.24);
  background: rgba(86, 221, 255, 0.07);
  color: white;
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.28), 0 0 28px rgba(86, 221, 255, 0.07);
  transform: translateY(-3px);
}

.setup-page-thumbnails img {
  width: 100%;
  height: 82px;
  object-fit: contain;
  filter: drop-shadow(0 14px 20px rgba(0, 0, 0, 0.48));
}

.setup-page-thumbnails span {
  font-size: 0.8rem;
  font-weight: 740;
}

.monitor-grid {
  display: grid;
  width: min(var(--container-wide), 100%);
  margin: 0 auto;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 2vw, 26px);
}

.monitor-card {
  display: grid;
  min-height: 380px;
  place-items: center;
  padding: clamp(18px, 2.4vw, 30px);
  overflow: hidden;
  transition: transform 560ms var(--ease), border-color 560ms var(--ease), box-shadow 560ms var(--ease);
}

.monitor-card:hover,
.setup-benefit-grid article:hover,
.setup-experience-grid article:hover {
  border-color: rgba(86, 221, 255, 0.2);
  box-shadow: 0 34px 100px rgba(0, 0, 0, 0.42), 0 0 34px rgba(86, 221, 255, 0.07);
  transform: translateY(-5px);
}

.monitor-card img {
  width: 100%;
  height: 280px;
  object-fit: contain;
  filter: drop-shadow(0 28px 46px rgba(0, 0, 0, 0.5)) drop-shadow(0 0 26px rgba(86, 221, 255, 0.08));
  transition: transform 560ms var(--ease);
}

.monitor-card:hover img {
  transform: scale(1.045);
}

.monitor-card span {
  color: rgba(255, 255, 255, 0.72);
  font-weight: 720;
}

.setup-accessory-layout {
  display: grid;
  width: min(var(--container-wide), 100%);
  margin: 0 auto;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.82fr);
  gap: clamp(34px, 5vw, 82px);
  align-items: center;
}

.setup-accessory-media {
  display: grid;
  min-height: clamp(520px, 58vw, 760px);
  place-items: center;
  overflow: hidden;
}

.setup-accessory-copy p:not(.eyebrow),
.setup-benefit-grid p,
.setup-experience-grid p,
.setup-final-panel p {
  color: var(--muted);
  line-height: 1.82;
}

.setup-benefit-grid,
.setup-experience-grid {
  display: grid;
  gap: 16px;
}

.setup-benefit-grid {
  margin-top: 34px;
}

.setup-benefit-grid article,
.setup-experience-grid article {
  padding: clamp(24px, 3vw, 36px);
  transition: transform 560ms var(--ease), border-color 560ms var(--ease), box-shadow 560ms var(--ease);
}

.setup-benefit-grid h3,
.setup-experience-grid h3 {
  margin: 26px 0 10px;
}

.setup-experience-grid {
  width: min(var(--container), 100%);
  margin: 0 auto;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.setup-final-panel {
  width: min(980px, 100%);
  margin: 0 auto;
  padding: clamp(38px, 6vw, 82px);
  text-align: center;
  background:
    radial-gradient(circle at 50% 0%, rgba(86, 221, 255, 0.13), transparent 40%),
    radial-gradient(circle at 80% 100%, rgba(255, 154, 75, 0.09), transparent 42%),
    rgba(255, 255, 255, 0.045);
}

.setup-final-panel p:not(.eyebrow) {
  max-width: 620px;
  margin-inline: auto;
}

.setup-final-panel .button {
  width: min(280px, 100%);
  margin-top: 18px;
}

.product-hero {
  display: grid;
  min-height: 92svh;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.82fr);
  gap: clamp(42px, 7vw, 104px);
  align-items: center;
  padding-top: clamp(148px, 16vw, 204px);
  overflow: visible;
}

.product-page-enter {
  opacity: 0;
  transform: translateY(24px) scale(0.985);
  transition: opacity 620ms var(--ease), transform 620ms var(--ease);
  will-change: opacity, transform;
}

.product-page-enter.is-loaded {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.product-page-enter .product-hero-media img {
  animation: productImageEnter 720ms var(--ease) 80ms both;
}

.product-hero-media {
  display: grid;
  min-height: 560px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 50% 45%, rgba(86, 221, 255, 0.12), transparent 38%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.018)),
    #05070a;
}

.product-hero-media img {
  width: 88%;
  max-width: 560px;
  height: min(62vh, 520px);
  object-fit: contain;
  filter: drop-shadow(0 40px 70px rgba(0, 0, 0, 0.62));
}

.product-hero-copy h1 {
  max-width: 780px;
  margin-bottom: 24px;
  overflow: visible;
  font-size: clamp(3.4rem, 6.8vw, 7.2rem);
  line-height: 0.94;
  overflow-wrap: normal;
  text-wrap: balance;
}

.product-hero-copy {
  overflow: visible;
}

.product-hero-copy .hero-copy {
  max-width: 620px;
}

.product-price {
  display: grid;
  gap: 8px;
  margin: 0 0 28px;
  color: white;
  font-size: clamp(1.7rem, 3vw, 2.7rem);
  font-weight: 720;
}

.product-price span {
  color: rgba(255, 255, 255, 0.44);
  font-size: 0.72rem;
  font-weight: 760;
  letter-spacing: 0.18em;
  line-height: 1;
  text-transform: uppercase;
}

.budget-line {
  margin: -14px 0 18px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.98rem;
  line-height: 1.55;
}

.product-service-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.82rem;
}

.product-service-row span {
  padding: 9px 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
}

.product-gallery {
  display: grid;
  width: min(1160px, 100%);
  margin: 0 auto;
  grid-template-columns: 1.35fr 0.8fr;
  gap: 16px;
}

.gallery-main,
.gallery-tile {
  display: grid;
  min-height: 280px;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 50% 20%, rgba(86, 221, 255, 0.1), transparent 36%),
    rgba(255, 255, 255, 0.035);
}

.gallery-main {
  grid-row: span 2;
  min-height: 560px;
}

.gallery-main img,
.gallery-tile img {
  width: 78%;
  max-width: 520px;
  height: min(52vh, 480px);
  object-fit: contain;
  filter: drop-shadow(0 32px 70px rgba(0, 0, 0, 0.56));
}

.gallery-note {
  align-content: end;
  justify-items: start;
  padding: 28px;
}

.gallery-note span {
  color: var(--cyan);
  font-size: 0.75rem;
  text-transform: uppercase;
}

.gallery-note p {
  max-width: 320px;
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.6;
}

.components-grid {
  display: grid;
  width: min(1120px, 100%);
  margin: 0 auto;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.components-grid div {
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.04);
}

.components-grid span {
  display: block;
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.46);
}

.components-grid strong {
  color: white;
  font-size: 1.15rem;
}

.detail-list,
.faq-list {
  display: grid;
  width: min(1180px, 100%);
  margin: clamp(26px, 4vw, 48px) auto 0;
  gap: clamp(14px, 1.6vw, 20px);
}

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

.detail-list article,
.faq-list details,
.audience-panel {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.22);
}

.faq-list details {
  overflow: hidden;
  padding: clamp(22px, 2.6vw, 34px);
  transition: border-color 420ms var(--ease), background 420ms var(--ease), box-shadow 420ms var(--ease);
}

.faq-list details[open] {
  border-color: rgba(86, 221, 255, 0.2);
  background:
    radial-gradient(circle at 8% 0%, rgba(86, 221, 255, 0.08), transparent 30%),
    rgba(255, 255, 255, 0.052);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.32), 0 0 28px rgba(86, 221, 255, 0.055);
}

.faq-list summary {
  display: flex;
  cursor: pointer;
  list-style: none;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: white;
  font-size: clamp(1rem, 1.35vw, 1.24rem);
  font-weight: 760;
  line-height: 1.32;
}

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

.faq-list summary::after {
  display: grid;
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid rgba(86, 221, 255, 0.2);
  border-radius: 999px;
  color: var(--cyan);
  content: "+";
  font-size: 1.1rem;
  transition: transform 360ms var(--ease), background 360ms var(--ease);
}

.faq-list details[open] summary::after {
  background: rgba(86, 221, 255, 0.08);
  content: "-";
  transform: rotate(180deg);
}

.faq-list details p {
  margin: clamp(18px, 2vw, 24px) 0 0;
  max-width: 860px;
}

.detail-list article {
  padding: 24px;
}

.detail-list span {
  color: var(--cyan);
  font-size: 0.76rem;
  text-transform: uppercase;
}

.detail-list h3 {
  margin: 14px 0 10px;
  font-size: 1.25rem;
}

.detail-list p,
.faq-list p,
.audience-panel p {
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.7;
}

.product-tags {
  display: flex;
  width: min(1120px, 100%);
  margin: clamp(24px, 3vw, 36px) auto clamp(28px, 4vw, 48px);
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.product-tags-centered {
  justify-content: center;
}

.range-notice {
  max-width: 680px;
  margin: -12px 0 26px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 1rem;
  line-height: 1.7;
}

.product-range-gallery {
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(18px, 2.4vw, 30px);
}

.product-range-gallery .gallery-main {
  min-height: clamp(520px, 48vw, 760px);
}

.product-range-gallery .gallery-main img {
  width: min(760px, 100%);
  height: clamp(440px, 42vw, 680px);
  object-fit: contain;
}

.product-showcase-stack {
  display: grid;
  width: min(1280px, 100%);
  margin: 0 auto;
  gap: clamp(22px, 3vw, 42px);
}

.product-showcase-main {
  min-height: clamp(500px, 46vw, 680px);
  border-color: rgba(255, 255, 255, 0.075);
  background:
    radial-gradient(circle at 50% 34%, rgba(86, 221, 255, 0.12), transparent 36%),
    radial-gradient(circle at 72% 18%, rgba(255, 154, 75, 0.055), transparent 26%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.014)),
    #05070a;
  box-shadow: 0 36px 120px rgba(0, 0, 0, 0.34);
}

.product-showcase-main img {
  width: min(760px, 90%);
  height: clamp(360px, 38vw, 560px);
  object-fit: contain;
}

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

.product-showcase-frame {
  display: grid;
  min-height: clamp(300px, 24vw, 380px);
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.075);
  border-radius: 22px;
  background:
    radial-gradient(circle at 50% 28%, rgba(86, 221, 255, 0.085), transparent 36%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.044), rgba(255, 255, 255, 0.014)),
    #05070a;
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.28);
  transition: border-color 360ms var(--ease), box-shadow 360ms var(--ease), transform 360ms var(--ease);
}

.product-showcase-frame:hover {
  border-color: rgba(86, 221, 255, 0.18);
  box-shadow: 0 34px 100px rgba(0, 0, 0, 0.34), 0 0 28px rgba(86, 221, 255, 0.055);
  transform: translateY(-3px);
}

.product-showcase-frame img {
  width: min(520px, 88%);
  height: clamp(250px, 22vw, 330px);
  object-fit: contain;
  filter: drop-shadow(0 28px 56px rgba(0, 0, 0, 0.54));
}

.setup-option-choice {
  width: min(520px, 100%);
  margin: clamp(22px, 3vw, 34px) 0;
  padding: clamp(18px, 2.4vw, 24px);
  border: 1px solid rgba(86, 221, 255, 0.16);
  border-radius: 18px;
  background:
    radial-gradient(circle at 0% 0%, rgba(86, 221, 255, 0.1), transparent 35%),
    rgba(255, 255, 255, 0.045);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.setup-option-choice label {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  color: white;
  font-weight: 760;
}

.setup-option-choice input {
  width: 22px;
  height: 22px;
  accent-color: var(--cyan);
}

.setup-option-choice p {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.92rem;
}

.product-hero-elite {
  min-height: 100svh;
}

.gallery-thumbs {
  display: flex;
  justify-content: center;
  gap: 12px;
  overflow-x: auto;
  padding: 4px 4px 10px;
}

.gallery-thumbs button {
  display: grid;
  width: 112px;
  height: 92px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.045);
  cursor: pointer;
  transition: border-color 360ms var(--ease), transform 360ms var(--ease), box-shadow 360ms var(--ease);
}

.gallery-thumbs button.is-active,
.gallery-thumbs button:hover {
  border-color: rgba(86, 221, 255, 0.46);
  box-shadow: 0 0 28px rgba(86, 221, 255, 0.1);
  transform: translateY(-2px);
}

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

.coming-soon-modal {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(0, 0, 0, 0.68);
  opacity: 0;
  backdrop-filter: blur(0);
  transition: opacity 250ms var(--ease), backdrop-filter 250ms var(--ease);
}

.coming-soon-modal.is-visible {
  opacity: 1;
  backdrop-filter: blur(18px);
}

.coming-soon-panel {
  width: min(560px, 100%);
  padding: clamp(32px, 5vw, 56px);
  border: 1px solid rgba(86, 221, 255, 0.22);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 16% 0%, rgba(86, 221, 255, 0.13), transparent 34%),
    #05070a;
  box-shadow: 0 40px 140px rgba(0, 0, 0, 0.62), 0 0 48px rgba(86, 221, 255, 0.1);
  text-align: center;
  opacity: 0;
  transform: translateY(12px) scale(0.975);
  transition: opacity 250ms var(--ease), transform 250ms var(--ease);
}

.coming-soon-modal.is-visible .coming-soon-panel {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.coming-soon-panel h2 {
  margin: 18px 0 18px;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1;
}

.coming-soon-panel p:not(.eyebrow) {
  margin: 0 0 28px;
  color: var(--muted);
  line-height: 1.78;
}

.elite-panel {
  width: min(580px, 100%);
  border-color: rgba(86, 221, 255, 0.2);
  border-radius: 24px;
  background:
    radial-gradient(circle at 50% 0%, rgba(86, 221, 255, 0.12), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.052), rgba(255, 255, 255, 0.016)),
    #040608;
  box-shadow: 0 44px 140px rgba(0, 0, 0, 0.64), 0 0 42px rgba(86, 221, 255, 0.085);
}

.elite-lock {
  display: grid;
  width: 76px;
  height: 76px;
  place-items: center;
  margin: 0 auto 22px;
  border: 1px solid rgba(86, 221, 255, 0.18);
  border-radius: 24px;
  background:
    radial-gradient(circle, rgba(86, 221, 255, 0.12), transparent 68%),
    rgba(255, 255, 255, 0.035);
  box-shadow:
    0 0 34px rgba(86, 221, 255, 0.09),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.elite-lock svg {
  width: 34px;
  height: 34px;
  fill: none;
  stroke: rgba(221, 248, 255, 0.82);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.35;
}

.elite-subtitle {
  margin: -6px 0 22px !important;
  color: rgba(221, 248, 255, 0.72) !important;
  font-size: 0.92rem;
  font-weight: 720;
  letter-spacing: 0.12em;
  line-height: 1.2 !important;
  text-transform: uppercase;
}

.elite-popup-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 30px;
}

.elite-popup-actions .button {
  min-width: 150px;
}

.product-tags span {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  padding: 9px 13px;
  border: 1px solid rgba(86, 221, 255, 0.18);
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(86, 221, 255, 0.07), rgba(255, 255, 255, 0.028)),
    rgba(2, 3, 4, 0.42);
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.82rem;
  font-weight: 680;
  line-height: 1;
  white-space: nowrap;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.045), 0 0 20px rgba(86, 221, 255, 0.045);
}

.audience-panel {
  position: relative;
  z-index: 1;
  display: flex;
  width: min(1240px, 100%);
  min-height: clamp(500px, 42vw, 620px);
  flex-direction: column;
  justify-content: center;
  margin: 0 auto;
  padding: clamp(54px, 6vw, 92px) clamp(34px, 7vw, 112px);
  overflow: visible;
}

.audience-panel h2 {
  position: relative;
  z-index: 2;
  max-width: 1060px;
  margin: 0 0 clamp(30px, 4vw, 48px);
  overflow: visible;
  font-size: clamp(46px, 6vw, 92px);
  line-height: 1.02;
  letter-spacing: 0;
  overflow-wrap: normal;
  word-break: normal;
  text-wrap: balance;
}

.audience-panel p {
  position: relative;
  z-index: 1;
  max-width: 920px;
  margin: 0;
  font-size: clamp(1.05rem, 1.35vw, 1.22rem);
  line-height: 1.86;
}

.commerce-grid {
  display: grid;
  width: min(1120px, 100%);
  margin: 0 auto;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.faq-list p {
  margin-bottom: 0;
}

.mobile-sticky-buy {
  position: fixed;
  right: 14px;
  bottom: 14px;
  left: 14px;
  z-index: 48;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  background: rgba(2, 3, 4, 0.82);
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.42);
  backdrop-filter: blur(18px);
}

.mobile-sticky-buy span {
  padding-left: 10px;
  color: white;
  font-size: 0.9rem;
  font-weight: 650;
}

.product-fps-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  position: relative;
  transition: opacity 260ms var(--ease), transform 260ms var(--ease);
}

.product-fps-grid::before {
  position: absolute;
  inset: -28px;
  z-index: -1;
  border-radius: 28px;
  background: radial-gradient(circle at 50% 0%, color-mix(in srgb, var(--config-accent, var(--cyan)) 14%, transparent), transparent 52%);
  content: "";
  filter: blur(14px);
  opacity: 0.7;
  pointer-events: none;
}

.product-fps-card {
  min-height: 340px;
}

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

.custom-page-hero {
  padding-top: clamp(130px, 15vw, 180px);
}

.custom-page-hero > .page-hero {
  margin-inline: auto;
}

.page-hero-spacious {
  width: min(1020px, 100%);
  margin-bottom: clamp(58px, 8vw, 104px);
}

.page-hero-spacious .page-kicker {
  margin-bottom: 24px;
}

.page-hero-spacious .page-title {
  width: min(860px, 100%);
  line-height: 1;
}

.page-hero-spacious .page-subtitle {
  width: min(720px, 100%);
  margin-top: 30px;
  line-height: 1.86;
}

.story-layout,
.setup-gallery {
  display: grid;
  width: min(var(--container), 100%);
  margin: 0 auto;
  gap: clamp(20px, 2.4vw, 32px);
}

.story-layout {
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
}

.why-story-section {
  padding-bottom: clamp(96px, 11vw, 150px);
}

.why-page-hero {
  padding-top: clamp(190px, 19vw, 250px);
}

.why-page-hero > .page-hero {
  width: min(1040px, 100%);
  margin-bottom: clamp(72px, 8vw, 118px);
}

.why-page-hero .page-title {
  width: min(980px, 100%);
  max-width: 980px;
  line-height: 1;
}

.why-page-hero .page-subtitle {
  width: min(760px, 100%);
  margin-top: 34px;
}

.story-layout-balanced {
  width: min(1380px, 100%);
  grid-template-columns: minmax(0, 1.12fr) minmax(500px, 0.88fr);
  gap: clamp(34px, 5vw, 78px);
  align-items: stretch;
}

.story-stack {
  display: grid;
  gap: clamp(26px, 3.2vw, 42px);
}

.story-card,
.setup-gallery-card {
  padding: clamp(38px, 4.6vw, 70px);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.045);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.28);
}

.story-card-large {
  display: flex;
  min-height: clamp(360px, 30vw, 440px);
  flex-direction: column;
  justify-content: flex-start;
  padding-top: clamp(58px, 6.5vw, 96px);
  background:
    radial-gradient(circle at 18% 8%, rgba(86, 221, 255, 0.12), transparent 34%),
    rgba(255, 255, 255, 0.045);
}

.story-card-large h2 {
  margin: clamp(32px, 4vw, 54px) 0 26px;
}

.story-layout-balanced .story-card {
  min-height: auto;
}

.story-card h2 {
  max-width: 820px;
  margin: clamp(54px, 6vw, 82px) 0 26px;
  font-size: clamp(2.25rem, 3.8vw, 4.05rem);
  line-height: 1.06;
  text-wrap: balance;
}

.story-card h3 {
  max-width: 620px;
  margin: clamp(36px, 4vw, 58px) 0 20px;
  font-size: clamp(1.42rem, 1.75vw, 1.95rem);
  line-height: 1.18;
}

.story-card span,
.setup-gallery-card span {
  color: var(--cyan);
  font-size: 0.76rem;
  font-weight: 820;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.story-card p,
.setup-gallery-card p {
  max-width: 760px;
  color: var(--muted);
  font-size: 1.03rem;
  line-height: 1.92;
}

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

.setups-clients-page.custom-page-hero {
  padding-top: clamp(108px, 10vw, 142px);
  padding-bottom: clamp(74px, 8vw, 118px);
}

.setups-clients-page .section-heading {
  width: min(860px, 100%);
  margin-bottom: clamp(34px, 4vw, 56px);
}

.setups-clients-page .section-heading h1 {
  width: min(760px, 100%);
  margin-inline: auto;
  font-size: clamp(2.55rem, 5.4vw, 5.65rem);
  line-height: 0.98;
}

.setups-clients-page .section-heading p:not(.eyebrow) {
  width: min(640px, 100%);
  margin-top: 22px;
  line-height: 1.72;
}

.setups-clients-page .setup-gallery {
  width: min(1500px, 100%);
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(26px, 3.2vw, 46px);
  align-items: stretch;
}

.setups-clients-page .setup-gallery-card {
  min-height: auto;
  padding: clamp(28px, 3vw, 44px);
  border-radius: calc(var(--radius) + 4px);
}

.setups-clients-page .setup-gallery-card p {
  line-height: 1.88;
}

.setups-clients-page .setup-proof-card {
  grid-column: 1 / -1;
}

.setups-clients-page .social-proof-stack {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 2vw, 28px);
}

.setups-clients-page .social-proof-stack div {
  min-height: 170px;
  padding: clamp(24px, 3vw, 36px);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 16% 12%, rgba(86, 221, 255, 0.09), transparent 34%),
    rgba(255, 255, 255, 0.04);
}

.setups-clients-page .setup-gallery-card video {
  display: block;
  width: 100%;
  height: clamp(560px, 56vw, 760px);
  margin: clamp(20px, 2vw, 28px) 0;
}

.setup-gallery-card video {
  display: block;
  width: 100%;
  height: clamp(360px, 42vw, 580px);
  margin: 18px 0;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  background: #020304;
  object-fit: contain;
}

.custom-form {
  display: grid;
  width: min(920px, 100%);
  margin: 0 auto;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: clamp(22px, 4vw, 38px);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.045);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.32);
}

.custom-form label,
.inline-choice {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  border: 0;
}

.custom-form span,
.inline-choice legend {
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.9rem;
  font-weight: 700;
}

.custom-form input,
.custom-form select,
.custom-form textarea {
  width: 100%;
  min-height: 52px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  background: rgba(0, 0, 0, 0.24);
  color: white;
  padding: 13px 14px;
  outline: none;
}

.custom-form textarea {
  resize: vertical;
}

.inline-choice {
  align-content: start;
  color: rgba(255, 255, 255, 0.66);
}

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

.checkout-section {
  padding-top: clamp(126px, 14vw, 188px);
}

.checkout-layout {
  display: grid;
  width: min(1240px, 100%);
  margin: 0 auto;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: clamp(22px, 4vw, 54px);
  align-items: start;
}

.checkout-form {
  width: 100%;
}

.checkout-summary {
  position: sticky;
  top: 120px;
  padding: clamp(28px, 4vw, 46px);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(86, 221, 255, 0.055), rgba(255, 255, 255, 0.03)),
    rgba(255, 255, 255, 0.045);
  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.34);
}

.checkout-summary h2 {
  margin: 10px 0 24px;
  font-size: clamp(2.1rem, 4vw, 4.2rem);
}

.checkout-lines {
  display: grid;
  gap: 10px;
  margin-bottom: 22px;
}

.checkout-line {
  display: flex;
  gap: 14px;
  align-items: center;
  justify-content: space-between;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  background: rgba(0, 0, 0, 0.18);
}

.checkout-summary p {
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.65;
}

.has-js .reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 1000ms var(--ease), transform 1000ms var(--ease), filter 1000ms var(--ease);
  filter: blur(8px);
}

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

@keyframes heroDrift {
  from {
    transform: scale(1.015) translate3d(0, 0, 0);
  }

  to {
    transform: scale(1.045) translate3d(-8px, 0, 0);
  }
}

@keyframes glowFloat {
  from {
    opacity: 0.22;
    transform: translate3d(0, 0, 0);
  }

  to {
    opacity: 0.42;
    transform: translate3d(-10px, 8px, 0);
  }
}

@keyframes heroProgressFill {
  from {
    transform: scaleX(var(--hero-progress-start, 0));
  }

  to {
    transform: scaleX(1);
  }
}

@keyframes productImageEnter {
  from {
    opacity: 0;
    transform: translateY(18px) scale(0.94);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.product-fps-grid.is-swapping {
  opacity: 0.42;
  transform: translateY(10px);
  transition: opacity 240ms var(--ease), transform 240ms var(--ease);
}

@media (max-width: 1120px) {
  .premium-trust-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-setup-upsell,
  .account-grid {
    grid-template-columns: 1fr;
  }

  .trust-visual-row {
    grid-template-columns: 1fr;
  }

  .product-setup-upsell-actions {
    justify-content: flex-start;
  }

  .fps-grid,
  .products-grid:not(.products-carousel),
  .why-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .why-card-wide,
  .reassurance-grid .why-card-wide {
    grid-column: span 2;
  }

  .build-layout,
  .feeling-grid,
  .noise-panel,
  .story-layout,
  .story-layout-balanced,
  .setup-gallery {
    grid-template-columns: 1fr;
  }

  .story-layout-balanced {
    width: min(940px, 100%);
  }

  .story-card h2 {
    margin-top: 64px;
  }

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

  .product-hero,
  .setup-hero-layout,
  .setup-page-gallery,
  .setup-accessory-layout,
  .checkout-layout,
  .components-grid,
  .product-gallery,
  .detail-list,
  .commerce-grid,
  .optimization-layout,
  .product-fps-grid,
  .similar-grid {
    grid-template-columns: 1fr;
  }

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

  .hero-meta {
    display: none;
  }
}

@media (max-width: 760px) {
  html,
  body {
    max-width: 100%;
    overflow-x: hidden;
  }

  .premium-slider-section {
    padding-top: 58px;
    padding-bottom: 76px;
  }

  .premium-slider-header {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .premium-slider-controls {
    justify-content: flex-start;
  }

  .premium-slider-track {
    grid-auto-columns: minmax(86vw, 1fr);
    gap: 16px;
    padding-right: 14px;
  }

  .premium-slide {
    min-height: 480px;
    padding: 26px;
    border-radius: 20px;
  }

  .premium-slide-accent {
    position: static;
    width: fit-content;
    margin-bottom: 46px;
  }

  .premium-slide-actions,
  .product-setup-upsell-actions,
  .account-actions {
    width: 100%;
  }

  .premium-slide-actions .button,
  .product-setup-upsell-actions .button,
  .account-actions .button {
    width: 100%;
  }

  .premium-trust-grid,
  .trust-visual-row,
  .order-status-grid {
    grid-template-columns: 1fr;
  }

  .premium-trust-card {
    min-height: auto;
  }

  .product-setup-upsell,
  .account-panel,
  .timeline-panel {
    border-radius: 20px;
  }

  .site-header {
    top: 10px;
    width: calc(100% - 20px);
    min-height: 54px;
    grid-template-columns: auto 1fr;
    gap: 10px;
    padding: 6px 8px 6px 10px;
    border-radius: 24px;
  }

  .brand {
    min-width: 58px;
    height: 52px;
    padding: 4px;
  }

  .brand-logo {
    height: 46px;
  }

  .main-nav {
    display: none;
  }

  .header-tools {
    gap: 7px;
  }

  .icon-button,
  .account-link {
    width: 40px;
    height: 40px;
  }

  .icon-button svg,
  .account-link svg {
    width: 17px;
    height: 17px;
  }

  .account-link {
    display: none;
  }

  .header-action {
    justify-self: end;
    min-height: 40px;
    padding: 0 12px;
    font-size: 0.78rem;
  }

  .hero-section {
    min-height: 88svh;
    padding: 104px 20px 36px;
  }

  .hero-slider,
  .hero-slide {
    min-height: 92svh;
  }

  .hero-slide {
    padding: 104px 20px 70px;
  }

  .hero-slide .hero-bg {
    background-position: 64% center;
  }

  .hero-slider-controls {
    left: 20px;
    bottom: 26px;
  }

  .hero-slider-controls button {
    width: 34px;
  }

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

  .hero-scrim {
    background:
      linear-gradient(90deg, rgba(2, 3, 4, 0.9), rgba(2, 3, 4, 0.54) 58%, rgba(2, 3, 4, 0.16)),
      linear-gradient(180deg, rgba(2, 3, 4, 0.12), rgba(2, 3, 4, 0.84) 100%);
  }

  h1 {
    max-width: 360px;
    margin-bottom: 18px;
    font-size: clamp(2.75rem, 13vw, 4.35rem);
    line-height: 0.96;
  }

  h2 {
    font-size: clamp(2.2rem, 11vw, 3.65rem);
    line-height: 0.98;
  }

  .page-hero {
    width: 100%;
    margin-bottom: clamp(34px, 10vw, 54px);
  }

  .page-title {
    max-width: 360px;
    font-size: clamp(2.65rem, 12vw, 4.15rem);
    line-height: 0.98;
  }

  .page-subtitle {
    max-width: 340px;
    margin-top: 18px;
    font-size: 1rem;
  }

  .page-hero-spacious {
    margin-bottom: clamp(42px, 12vw, 64px);
  }

  .page-hero-spacious .page-kicker {
    margin-bottom: 20px;
  }

  .page-hero-spacious .page-subtitle {
    margin-top: 22px;
  }

  .why-page-hero {
    padding-top: 134px;
  }

  .why-page-hero .page-title {
    max-width: 390px;
    font-size: clamp(2.5rem, 11vw, 4rem);
    line-height: 1.02;
  }

  .why-page-hero .page-subtitle {
    max-width: 360px;
    margin-top: 24px;
  }

  .hero-copy {
    margin-bottom: 24px;
    font-size: 1.02rem;
  }

  .section {
    padding: clamp(76px, 18vw, 104px) 18px;
  }

  .hero-actions,
  .setup-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
    min-height: 46px;
  }

  .performance-tabs {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border-radius: var(--radius);
  }

  .why-card-wide,
  .reassurance-grid .why-card-wide {
    grid-column: auto;
  }

  .fps-grid,
  .products-grid:not(.products-carousel),
  .why-grid,
  .feeling-grid,
  .build-layout,
  .noise-panel,
  .setup-hero-layout,
  .setup-page-gallery,
  .setup-page-thumbnails,
  .setup-hero-thumbnails,
  .monitor-grid,
  .setup-accessory-layout,
  .setup-experience-grid,
  .story-layout,
  .setup-gallery,
  .commerce-grid,
  .detail-list,
  .product-gallery,
  .optimization-layout,
  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .product-carousel-controls {
    justify-content: flex-start;
  }

  .products-section {
    overflow-x: hidden;
  }

  .products-carousel-shell {
    max-width: 100%;
    overflow: visible;
  }

  .products-grid.products-carousel {
    display: flex;
    width: 100%;
    max-width: 100vw;
    gap: 16px;
    margin-inline: 0;
    overflow-x: auto;
    overflow-y: visible;
    overscroll-behavior-x: contain;
    overscroll-behavior-y: auto;
    padding: 4px 16px 22px;
    scroll-padding-inline: 16px;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    touch-action: pan-y;
    -webkit-overflow-scrolling: touch;
  }

  .products-grid.products-carousel .product-card {
    flex: 0 0 88%;
    min-height: auto;
    width: 88%;
    max-width: 88%;
    min-width: 0;
    margin: 0;
    scroll-snap-align: center;
    scroll-snap-stop: always;
  }

  .products-grid.products-carousel .product-card:hover,
  .products-grid.products-carousel .product-card-featured {
    transform: none;
  }

  .products-grid.products-carousel .product-card:hover .product-media img,
  .products-grid.products-carousel .product-card-locked:hover .product-media img {
    transform: none;
  }

  .back-to-top {
    right: 16px;
    bottom: 16px;
    width: 48px;
    height: 48px;
    font-size: 1rem;
  }

  .setup-product-hero {
    min-height: auto;
    padding-top: 118px;
  }

  .setup-hero-copy {
    align-items: center;
    text-align: center;
  }

  .setup-hero-copy h1 {
    max-width: 360px;
    font-size: clamp(3.05rem, 14vw, 4.7rem);
  }

  .setup-hero-price {
    align-items: center;
  }

  .setup-hero-media,
  .setup-main-frame,
  .setup-accessory-media {
    min-height: 390px;
  }

  .setup-hero-gallery {
    order: -1;
  }

  .setup-hero-thumbnails {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding: 2px 2px 8px;
    scroll-snap-type: x proximity;
  }

  .setup-hero-thumbnails button {
    min-width: 112px;
    min-height: 102px;
    scroll-snap-align: start;
  }

  .setup-hero-media img,
  .setup-accessory-media img {
    width: 94%;
    max-height: 360px;
  }

  .setup-page-gallery-section,
  .monitor-section,
  .setup-accessory-section,
  .setup-experience-section,
  .setup-final-cta {
    padding-block: clamp(82px, 20vw, 116px);
  }

  .setup-main-frame img {
    width: 94%;
    height: auto;
    max-height: 360px;
  }

  .setup-page-thumbnails button {
    min-height: 108px;
  }

  .monitor-card {
    min-height: 300px;
  }

  .monitor-card img {
    height: 220px;
  }

  .gallery-main {
    min-height: 380px;
  }

  .product-media {
    min-height: 360px;
    margin: 16px 16px 0;
    padding: 24px;
  }

  .product-media img {
    max-width: 330px;
    height: 310px;
  }

  .product-content {
    min-height: auto;
    padding: 14px 22px 36px;
  }

  .product-topline {
    grid-template-columns: 1fr;
    gap: 14px;
    align-items: start;
    margin-bottom: 22px;
  }

  .product-topline p {
    max-width: none;
    font-size: 0.68rem;
  }

  .product-price-card {
    padding-left: 0;
  }

  .product-price-card b {
    font-size: clamp(3rem, 14vw, 4rem);
    white-space: nowrap;
  }

  .product-price-card span {
    font-size: 0.62rem;
    letter-spacing: 0.12em;
  }

  .product-use {
    min-height: auto;
  }

  .product-specs {
    gap: 9px;
    margin: 26px 0 24px;
  }

  .product-specs li {
    padding: 9px 11px;
    font-size: 0.8rem;
  }

  .why-card {
    min-height: auto;
    padding: 28px;
  }

  .story-layout-balanced {
    gap: 22px;
  }

  .story-stack {
    gap: 22px;
  }

  .story-card,
  .setup-gallery-card {
    padding: 30px;
  }

  .story-card-large {
    padding-top: 34px;
  }

  .story-card h2 {
    margin-top: 38px;
    font-size: clamp(2rem, 9.5vw, 3.15rem);
    line-height: 1.08;
  }

  .story-card-large h2 {
    margin-top: 28px;
  }

  .story-card h3 {
    margin-top: 30px;
    font-size: clamp(1.32rem, 6.5vw, 1.75rem);
  }

  .story-card p {
    font-size: 0.98rem;
    line-height: 1.82;
  }

  .why-card span {
    margin-bottom: 28px;
  }

  .optimization-metrics {
    grid-template-columns: 1fr;
  }

  .trust-strip {
    width: calc(100% - 28px);
    justify-content: flex-start;
    border-radius: var(--radius);
  }

  .build-visual {
    min-height: 320px;
  }

  .feeling-card {
    min-height: auto;
    padding: 28px;
  }

  .feeling-card span {
    margin-bottom: 30px;
  }

  .optimization-compare {
    grid-template-columns: 1fr;
  }

  .optimization-compare div + div {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-left: 0;
  }

  .product-hero {
    min-height: auto;
    gap: 34px;
    padding-top: 118px;
  }

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

  .product-hero-copy h1 {
    max-width: 360px;
    font-size: clamp(2.75rem, 13vw, 4.35rem);
    line-height: 0.98;
  }

  .product-hero-copy .hero-copy {
    max-width: 100%;
    font-size: 1rem;
  }

  .product-tags {
    gap: 8px;
    margin-top: 22px;
  }

  .product-tags span {
    min-height: 34px;
    padding: 8px 11px;
    font-size: 0.78rem;
  }

  .audience-panel {
    min-height: auto;
    justify-content: flex-start;
    padding: 38px 24px;
  }

  .audience-panel h2 {
    max-width: 100%;
    margin-bottom: 28px;
    font-size: clamp(2.25rem, 10vw, 3.8rem);
    line-height: 1.04;
  }

  .audience-panel p {
    max-width: 100%;
    line-height: 1.78;
  }

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

  .checkout-summary {
    position: static;
  }

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

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

  .review-card {
    padding: 14px;
  }

  .review-card video,
  .social-proof-stack,
  .video-placeholder {
    height: min(70vh, 580px);
    min-height: 420px;
  }

  .setup-section {
    padding: 58px 0;
  }

  .setup-visual {
    min-height: 660px;
  }

  .setup-visual::before {
    background-position: 70% center;
  }

  .setup-visual::after {
    background:
      linear-gradient(180deg, #020304 0%, rgba(2, 3, 4, 0.96) 42%, rgba(2, 3, 4, 0.42) 100%),
      linear-gradient(90deg, rgba(2, 3, 4, 0.72), rgba(2, 3, 4, 0.1));
  }

  .setup-copy {
    width: min(100% - 36px, 560px);
    justify-content: flex-start;
    margin-inline: auto;
    padding-top: 44px;
  }

  .noise-copy,
  .mode-card {
    min-height: auto;
  }

  .noise-proof span {
    width: 100%;
    text-align: center;
  }

  .segmented,
  .swatches {
    grid-template-columns: 1fr;
  }

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

  .config-result dl div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .config-result dd {
    justify-self: start;
    text-align: left;
  }

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

  .footer-links {
    justify-content: flex-start;
  }

  .footer-note {
    justify-self: start;
  }

  .cart-drawer {
    width: 100%;
  }

  .cart-header,
  .cart-footer {
    padding: 22px;
  }

  .cart-lines {
    padding: 18px 14px;
  }

  .cart-line {
    grid-template-columns: 1fr;
  }

  .quantity-control {
    justify-content: flex-start;
  }

  .mobile-sticky-buy {
    display: flex;
  }
}

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


.buy-page-hero {
  background:
    radial-gradient(circle at 18% 22%, rgba(86, 221, 255, 0.08), transparent 34%),
    radial-gradient(circle at 80% 4%, rgba(255, 154, 75, 0.06), transparent 30%);
}

.buy-timeline {
  display: grid;
  width: min(1180px, 100%);
  margin: 0 auto;
  gap: 16px;
}

.buy-timeline article,
.delivery-grid article {
  position: relative;
  overflow: hidden;
  padding: clamp(28px, 4.2vw, 54px);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 14% 10%, rgba(86, 221, 255, 0.1), transparent 32%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.048), rgba(255, 255, 255, 0.018)),
    #05070a;
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.3);
  transition: transform 560ms var(--ease), border-color 560ms var(--ease), box-shadow 560ms var(--ease);
}

.buy-timeline article:hover,
.delivery-grid article:hover {
  border-color: rgba(86, 221, 255, 0.22);
  box-shadow: 0 34px 100px rgba(0, 0, 0, 0.42), 0 0 40px rgba(86, 221, 255, 0.075);
  transform: translateY(-4px);
}

.buy-timeline span,
.delivery-grid span {
  display: inline-flex;
  margin-bottom: clamp(28px, 4vw, 44px);
  color: var(--cyan);
  font-size: 0.78rem;
  font-weight: 820;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.buy-timeline h2,
.delivery-grid h3 {
  max-width: 780px;
  margin: 0 0 16px;
  color: white;
  font-size: clamp(1.55rem, 2.4vw, 2.7rem);
  line-height: 1.08;
  text-wrap: balance;
}

.buy-timeline p,
.delivery-grid p {
  max-width: 760px;
  margin: 0;
  color: var(--muted);
  line-height: 1.82;
}

.delivery-section,
.trust-process-section {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.012), transparent 40%),
    radial-gradient(circle at 85% 10%, rgba(86, 221, 255, 0.045), transparent 34%);
}

.delivery-grid {
  display: grid;
  width: min(1180px, 100%);
  margin: 0 auto;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 24px);
}

main, section, article, div, p, h1, h2, h3, h4, span, a, li, summary, footer, header {
  caret-color: transparent;
}

input, textarea, select, [contenteditable="true"] {
  caret-color: auto;
}

@media (max-width: 900px) {
  .delivery-grid {
    grid-template-columns: 1fr;
  }

  .buy-timeline article,
  .delivery-grid article {
    padding: 28px;
  }
}


.performance-game-strip {
  display: flex;
  width: min(1120px, 100%);
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin: 26px auto 30px;
}

.performance-game-strip span {
  padding: 10px 13px;
  border: 1px solid rgba(86, 221, 255, 0.16);
  border-radius: 999px;
  background: rgba(86, 221, 255, 0.055);
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.84rem;
  font-weight: 760;
}

@media (max-width: 1120px) {
  .setups-clients-page .setup-gallery {
    grid-template-columns: 1fr;
  }

  .setups-clients-page .setup-gallery-card video {
    height: clamp(500px, 92vw, 700px);
  }

  .setups-clients-page .social-proof-stack {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .setups-clients-page.custom-page-hero {
    padding-top: 104px;
    padding-bottom: 72px;
  }

  .setups-clients-page .section-heading {
    margin-bottom: 30px;
  }

  .setups-clients-page .section-heading h1 {
    font-size: clamp(2.25rem, 12vw, 3.7rem);
  }

  .setups-clients-page .setup-gallery {
    gap: 22px;
  }

  .setups-clients-page .setup-gallery-card {
    padding: 22px;
  }

  .setups-clients-page .setup-gallery-card video {
    height: clamp(460px, 118vw, 620px);
  }

  .product-card-featured {
    transform: none;
  }

  .product-image-badge {
    top: 14px;
    left: 14px;
    min-height: 30px;
    padding: 8px 10px;
    font-size: 0.62rem;
    letter-spacing: 0.06em;
  }

  .product-price-card {
    white-space: normal;
  }

  .product-price-card b {
    font-size: clamp(2.1rem, 12vw, 3.05rem);
    white-space: normal;
  }

  .product-showcase-stack {
    gap: 16px;
  }

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

  .product-showcase-main,
  .product-showcase-frame {
    min-height: auto;
    padding: 22px 12px;
    border-radius: 18px;
  }

  .product-showcase-main img,
  .product-showcase-frame img {
    width: 94%;
    height: clamp(250px, 76vw, 340px);
  }

  .setup-option-choice {
    margin-inline: auto;
  }

  .product-card-locked::after {
    inset: 14px 14px auto;
    height: clamp(330px, 78vw, 440px);
  }
}

/* Final polish: mobile flow, product gallery and Elite modal */
.has-js .reveal {
  will-change: opacity, transform;
}

.is-ready .reveal:not(.is-visible) {
  opacity: 1;
  transform: none;
}

.product-carousel-controls button:disabled {
  opacity: 0.34;
  cursor: default;
  transform: none;
}

.products-grid.products-carousel {
  overscroll-behavior-inline: contain;
  scroll-padding-inline: clamp(16px, 4vw, 44px);
  touch-action: pan-x pan-y;
}

.products-grid.products-carousel .product-card {
  transition:
    transform 520ms var(--ease),
    border-color 520ms var(--ease),
    background 520ms var(--ease),
    box-shadow 520ms var(--ease),
    opacity 520ms var(--ease);
}

.products-grid.products-carousel .product-card.is-active {
  border-color: rgba(86, 221, 255, 0.2);
  box-shadow: 0 34px 110px rgba(0, 0, 0, 0.38), 0 0 40px rgba(86, 221, 255, 0.07);
}

.product-showcase-stack {
  align-items: center;
}

.product-showcase-main {
  position: relative;
  overflow: hidden;
}

.product-showcase-main::after {
  content: "";
  position: absolute;
  inset: auto 14% 8% 14%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.22), transparent);
}

.product-showcase-main img {
  transition: opacity 220ms var(--ease), transform 460ms var(--ease), filter 460ms var(--ease);
}

.product-showcase-main img.is-swapping {
  opacity: 0;
  transform: scale(0.985);
}

.product-showcase-thumbs {
  display: grid;
  width: min(920px, 100%);
  margin: 0 auto;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(10px, 1.5vw, 16px);
}

.product-gallery-thumb {
  display: grid;
  min-height: clamp(116px, 12vw, 154px);
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  background:
    radial-gradient(circle at 50% 0%, rgba(86, 221, 255, 0.09), transparent 44%),
    rgba(255, 255, 255, 0.035);
  cursor: pointer;
  transition: transform 320ms var(--ease), border-color 320ms var(--ease), background 320ms var(--ease), box-shadow 320ms var(--ease);
}

.product-gallery-thumb:hover,
.product-gallery-thumb.is-active {
  border-color: rgba(86, 221, 255, 0.28);
  background:
    radial-gradient(circle at 50% 0%, rgba(86, 221, 255, 0.16), transparent 46%),
    rgba(255, 255, 255, 0.055);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.26), 0 0 26px rgba(86, 221, 255, 0.06);
  transform: translateY(-2px);
}

.product-gallery-thumb img {
  width: 86%;
  height: clamp(92px, 10vw, 126px);
  object-fit: contain;
  filter: drop-shadow(0 18px 34px rgba(0, 0, 0, 0.46));
}

.product-proof-card {
  display: grid;
  width: min(980px, 100%);
  margin: 0 auto;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 300px);
  gap: clamp(18px, 2.4vw, 30px);
  align-items: center;
  padding: clamp(16px, 2.4vw, 26px);
  border: 1px solid rgba(255, 255, 255, 0.085);
  border-radius: 22px;
  background:
    radial-gradient(circle at 14% 14%, rgba(86, 221, 255, 0.1), transparent 34%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.018));
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.28);
}

.product-proof-copy h2 {
  max-width: 560px;
  margin: 0 0 10px;
  font-size: clamp(1.45rem, 2.5vw, 2.35rem);
  line-height: 1.06;
}

.product-proof-copy p {
  max-width: 520px;
  margin: 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.95rem;
  line-height: 1.6;
}

.product-proof-points {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.product-proof-points span {
  padding: 8px 10px;
  border: 1px solid rgba(86, 221, 255, 0.14);
  border-radius: 999px;
  background: rgba(86, 221, 255, 0.055);
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.76rem;
}

.product-proof-video {
  min-width: 0;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  background: rgba(2, 3, 4, 0.62);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.product-proof-video video {
  display: block;
  width: 100%;
  height: clamp(210px, 24vw, 340px);
  border-radius: 14px;
  background: #020304;
  object-fit: contain;
}

.product-proof-video span {
  display: block;
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.product-setup-premium {
  min-height: auto;
  padding: clamp(34px, 5vw, 62px);
  border: 1px solid rgba(255, 255, 255, 0.09);
  background:
    linear-gradient(90deg, rgba(2, 3, 4, 0.92), rgba(2, 3, 4, 0.36)),
    url("/public/setup/setup-main.png.png") center right / min(760px, 56vw) no-repeat,
    radial-gradient(circle at 78% 28%, rgba(86, 221, 255, 0.1), transparent 34%);
}

.product-setup-copy {
  max-width: 700px;
}

.product-setup-accessories {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 28px 0;
}

.product-setup-accessories article {
  min-width: 0;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.085);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.05);
}

.product-setup-accessories span {
  color: rgba(86, 221, 255, 0.78);
  font-size: 0.76rem;
  font-weight: 800;
}

.product-setup-accessories h3 {
  margin: 10px 0 8px;
  font-size: 1rem;
}

.product-setup-accessories p {
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.88rem;
  line-height: 1.55;
}

.coming-soon-modal {
  transition: opacity 320ms var(--ease), backdrop-filter 320ms var(--ease);
}

.coming-soon-panel {
  transform: translateY(24px) scale(0.96);
  transition: opacity 340ms var(--ease), transform 420ms var(--ease), border-color 420ms var(--ease), box-shadow 420ms var(--ease);
}

.elite-panel {
  overflow: hidden;
  border-color: rgba(255, 255, 255, 0.16);
  background:
    radial-gradient(circle at 50% -10%, rgba(255, 255, 255, 0.16), transparent 32%),
    radial-gradient(circle at 8% 8%, rgba(86, 221, 255, 0.14), transparent 34%),
    linear-gradient(145deg, rgba(12, 15, 18, 0.96), rgba(2, 3, 4, 0.96));
}

.elite-popup-specs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin: 0 0 28px;
}

.elite-popup-specs span {
  padding: 10px 9px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.045);
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.76rem;
  text-align: center;
}

@media (max-width: 760px) {
  .site-header {
    grid-template-columns: auto auto;
    grid-template-areas:
      "brand tools"
      "nav nav";
    align-items: center;
  }

  .brand {
    grid-area: brand;
  }

  .header-tools {
    grid-area: tools;
    justify-content: end;
  }

  .main-nav {
    grid-area: nav;
    display: flex;
    justify-content: flex-start;
    gap: 16px;
    width: 100%;
    margin-top: 4px;
    padding: 2px 2px 4px;
    overflow-x: auto;
    color: rgba(255, 255, 255, 0.7);
    scrollbar-width: none;
    scroll-snap-type: x proximity;
    -webkit-overflow-scrolling: touch;
  }

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

  .main-nav a {
    flex: 0 0 auto;
    padding: 7px 0;
    scroll-snap-align: start;
    white-space: nowrap;
  }

  .products-carousel-shell {
    width: 100vw;
    margin-left: 50%;
    transform: translateX(-50%);
    overflow: hidden;
  }

  .products-grid.products-carousel {
    max-width: none;
    padding: 4px max(18px, calc((100vw - 430px) / 2)) 18px;
    gap: 14px;
    scroll-snap-type: x mandatory;
    scroll-padding-inline: max(18px, calc((100vw - 430px) / 2));
    -webkit-overflow-scrolling: touch;
  }

  .products-grid.products-carousel .product-card {
    flex: 0 0 min(86vw, 390px);
    width: min(86vw, 390px);
    max-width: min(86vw, 390px);
    scroll-snap-align: center;
    scroll-snap-stop: always;
  }

  .product-carousel-controls {
    padding: 0 18px;
    justify-content: flex-end;
  }

  .product-showcase-thumbs {
    display: flex;
    justify-content: flex-start;
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 8px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  .product-gallery-thumb {
    flex: 0 0 128px;
    min-height: 112px;
    scroll-snap-align: start;
  }

  .product-proof-card {
    grid-template-columns: 1fr;
    width: 100%;
    padding: 16px;
    border-radius: 20px;
  }

  .product-proof-copy h2 {
    font-size: clamp(1.5rem, 7vw, 2.35rem);
  }

  .product-proof-video video {
    height: clamp(240px, 72vw, 360px);
    min-height: 0;
  }

  .product-setup-premium {
    padding: 24px;
    background:
      linear-gradient(180deg, rgba(2, 3, 4, 0.94), rgba(2, 3, 4, 0.58)),
      url("/public/setup/setup-main.png.png") center bottom / 92% auto no-repeat;
  }

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

  .elite-popup-actions {
    grid-template-columns: 1fr;
  }

  .elite-popup-specs {
    grid-template-columns: 1fr;
  }
}

/* Mobile-only correction: centered Apple-like product carousel, no page overflow */
@media (max-width: 760px) {
  html,
  body,
  .page-shell {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }

  body {
    min-width: 0;
  }

  .site-header {
    grid-template-columns: auto 1fr;
    grid-template-areas: "brand tools";
    min-height: 58px;
    padding: 8px 10px;
    border-radius: 24px;
  }

  .brand {
    grid-area: brand;
    height: 48px;
    min-width: 70px;
  }

  .brand-logo {
    max-height: 48px;
  }

  .header-tools {
    grid-area: tools;
    min-width: 0;
    justify-content: flex-end;
    gap: 7px;
  }

  .main-nav {
    display: none;
  }

  .mobile-menu-toggle {
    display: inline-grid;
    width: 42px;
    height: 40px;
    place-items: center;
    gap: 0;
    border: 1px solid rgba(86, 221, 255, 0.18);
    border-radius: 999px;
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.105), rgba(255, 255, 255, 0.035)),
      rgba(4, 7, 10, 0.72);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.12),
      0 14px 34px rgba(0, 0, 0, 0.28),
      0 0 18px rgba(86, 221, 255, 0.035);
    color: rgba(255, 255, 255, 0.92);
    cursor: pointer;
    backdrop-filter: blur(16px);
    transition: border-color 260ms var(--ease), background 260ms var(--ease), box-shadow 260ms var(--ease), transform 260ms var(--ease);
  }

  .mobile-menu-toggle span {
    grid-area: 1 / 1;
    display: block;
    width: 17px;
    height: 1.4px;
    border-radius: 99px;
    background: currentColor;
    transition: transform 240ms var(--ease), opacity 240ms var(--ease);
  }

  .mobile-menu-toggle span:nth-child(1) {
    transform: translateY(-5px);
  }

  .mobile-menu-toggle span:nth-child(2) {
    width: 13px;
    transform: translateX(2px);
  }

  .mobile-menu-toggle span:nth-child(3) {
    transform: translateY(5px);
  }

  .mobile-menu-open .mobile-menu-toggle span:nth-child(1) {
    transform: translateY(0) rotate(45deg);
  }

  .mobile-menu-open .mobile-menu-toggle span:nth-child(2) {
    opacity: 0;
    transform: translateX(0) scaleX(0.6);
  }

  .mobile-menu-open .mobile-menu-toggle span:nth-child(3) {
    transform: translateY(0) rotate(-45deg);
  }

  .mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 88;
    display: block;
    opacity: 0;
    pointer-events: none;
    transition: opacity 260ms var(--ease);
  }

  .mobile-menu.is-visible {
    opacity: 1;
    pointer-events: auto;
  }

  .mobile-menu-backdrop {
    position: absolute;
    inset: 0;
    background:
      radial-gradient(circle at 50% 0%, rgba(86, 221, 255, 0.08), transparent 32%),
      rgba(0, 0, 0, 0.62);
    backdrop-filter: blur(18px);
  }

  .mobile-menu-panel {
    position: absolute;
    top: 82px;
    right: 14px;
    left: 14px;
    overflow: hidden;
    border: 1px solid rgba(86, 221, 255, 0.14);
    border-radius: 28px;
    background:
      radial-gradient(circle at 16% -4%, rgba(86, 221, 255, 0.16), transparent 34%),
      radial-gradient(circle at 92% 12%, rgba(255, 255, 255, 0.07), transparent 28%),
      linear-gradient(145deg, rgba(10, 13, 17, 0.98), rgba(2, 3, 4, 0.98));
    box-shadow:
      0 34px 120px rgba(0, 0, 0, 0.58),
      0 0 34px rgba(86, 221, 255, 0.045),
      inset 0 1px 0 rgba(255, 255, 255, 0.08);
    transform: translateY(-14px) scale(0.975);
    transition: transform 320ms var(--ease), opacity 320ms var(--ease);
  }

  .mobile-menu.is-visible .mobile-menu-panel {
    transform: translateY(0) scale(1);
  }

  .mobile-menu-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 18px 12px;
    color: rgba(255, 255, 255, 0.96);
    font-size: 0.82rem;
    font-weight: 850;
    letter-spacing: 0.12em;
    text-transform: uppercase;
  }

  .mobile-menu-close {
    display: inline-grid;
    width: 38px;
    height: 38px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.86);
    font-size: 1.25rem;
    line-height: 1;
    cursor: pointer;
    transition: background 220ms var(--ease), border-color 220ms var(--ease), transform 220ms var(--ease);
  }

  .mobile-menu-links {
    display: grid;
    gap: 6px;
    padding: 6px 12px 14px;
  }

  .mobile-menu-links a {
    display: flex;
    min-height: 54px;
    align-items: center;
    justify-content: space-between;
    padding: 0 14px;
    border: 1px solid rgba(255, 255, 255, 0.055);
    border-radius: 18px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.038), rgba(255, 255, 255, 0.012));
    color: rgba(255, 255, 255, 0.84);
    font-size: 0.98rem;
    font-weight: 700;
    transition: background 220ms var(--ease), border-color 220ms var(--ease), color 220ms var(--ease), transform 220ms var(--ease);
  }

  .mobile-menu-links a::after {
    content: "\203A";
    color: rgba(86, 221, 255, 0.64);
    font-size: 1.08rem;
  }

  .mobile-menu-links a:hover,
  .mobile-menu-links a:active {
    border-color: rgba(86, 221, 255, 0.16);
    background:
      radial-gradient(circle at 0% 50%, rgba(86, 221, 255, 0.1), transparent 38%),
      rgba(255, 255, 255, 0.055);
    color: white;
    transform: translateX(2px);
  }

  .mobile-menu-note {
    display: grid;
    gap: 4px;
    margin: 0;
    padding: 6px 18px 22px;
    color: rgba(255, 255, 255, 0.36);
    font-size: 0.74rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    text-align: center;
  }

  .mobile-menu-note strong {
    color: rgba(255, 255, 255, 0.64);
    font-size: 0.78rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
  }

  .mobile-menu-note span {
    color: rgba(255, 255, 255, 0.34);
  }

  .header-action {
    min-height: 40px;
    max-width: 132px;
    padding: 0 14px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    font-size: 0.78rem;
  }

  .products-section {
    overflow: hidden;
  }

  .products-carousel-shell {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    overflow: hidden;
    transform: none;
  }

  .product-carousel-controls {
    width: min(100%, 430px);
    margin: 0 auto 14px;
    padding: 0 14px;
    justify-content: flex-end;
  }

  .products-grid.products-carousel {
    display: flex;
    width: 100%;
    max-width: 100%;
    margin: 0;
    gap: 14px;
    overflow-x: auto;
    overflow-y: hidden;
    overscroll-behavior-x: contain;
    overscroll-behavior-y: none;
    padding: 4px calc((100% - min(86vw, 372px)) / 2) 24px;
    scroll-padding-inline: calc((100% - min(86vw, 372px)) / 2);
    scroll-snap-type: x mandatory;
    scroll-behavior: auto;
    scrollbar-width: none;
    touch-action: auto;
    -webkit-overflow-scrolling: auto;
  }

  .products-grid.products-carousel::-webkit-scrollbar {
    display: none;
  }

  .products-grid.products-carousel .product-card {
    flex: 0 0 min(86vw, 372px);
    width: min(86vw, 372px);
    max-width: min(86vw, 372px);
    min-width: 0;
    min-height: auto;
    margin: 0;
    scroll-snap-align: center;
    scroll-snap-stop: normal;
  }

  .products-grid.products-carousel .product-media {
    min-height: 310px;
    padding: 28px 14px 18px;
  }

  .products-grid.products-carousel .product-media img {
    width: 94%;
    max-width: 310px;
    height: 280px;
    object-fit: contain;
  }

  .products-grid.products-carousel .product-content {
    min-width: 0;
    padding: 22px 18px 20px;
  }

  .products-grid.products-carousel .product-content h3,
  .products-grid.products-carousel .product-use,
  .products-grid.products-carousel .product-range-explain {
    overflow-wrap: anywhere;
  }

  .products-grid.products-carousel .product-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
  }
}

@media (max-width: 430px) {
  .products-grid.products-carousel {
    padding-inline: calc((100% - min(86vw, 360px)) / 2);
    scroll-padding-inline: calc((100% - min(86vw, 360px)) / 2);
  }

  .products-grid.products-carousel .product-card {
    flex-basis: min(86vw, 360px);
    width: min(86vw, 360px);
    max-width: min(86vw, 360px);
  }
}

@media (max-width: 375px) {
  .header-action {
    display: none;
  }

  .products-grid.products-carousel {
    padding-inline: calc((100% - 86vw) / 2);
    scroll-padding-inline: calc((100% - 86vw) / 2);
  }

  .products-grid.products-carousel .product-card {
    flex-basis: 86vw;
    width: 86vw;
    max-width: 86vw;
  }

  .products-grid.products-carousel .product-media {
    min-height: 286px;
  }

  .products-grid.products-carousel .product-media img {
    height: 254px;
  }
}
