:root {
  --ink: #111111;
  --muted: #6f6f6f;
  --line: #e8e3db;
  --paper: #fbfaf7;
  --soft: #f1eee8;
  --red: #1268d8;
  --yellow: #44d7ff;
  --blue: #1878d1;
  --green: #6fd38c;
  --top-blue: #1f4fa3;
  --hero-green: #043f27;
  --shadow: 0 24px 70px rgb(0 0 0 / 18%);
  --font-heading-family: Inter, sans-serif;
  --font-heading-weight: 700;
  --font-heading-line-height: 1;
  --font-heading-letter-spacing: -0.03em;
  --font-body-family: Inter, sans-serif;
  --font-body-weight: 400;
  --font-body-line-height: 1.2;
  --font-navigation-size: clamp(0.875rem, 0.748rem + 0.3174vw, 1.125rem);
  --font-button-size: clamp(0.875rem, 0.8115rem + 0.1587vw, 1rem);
  --font-product-size: clamp(1rem, 0.873rem + 0.3175vw, 1.25rem);
  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.25rem;
  --text-2xl: 1.5rem;
  --text-3xl: 1.875rem;
  --text-4xl: 2.25rem;
  --text-5xl: 3rem;
  --text-6xl: 3.75rem;
  --text-7xl: 4.5rem;
  --text-8xl: 6rem;
  --page-width: 1900px;
  --page-padding: 3rem;
  --page-container: min(calc(100vw - var(--page-padding) * 2), var(--page-width));
  --section-y: 4.5rem;
  --grid-gap: clamp(40px, 20vw, 60px);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body-family);
  font-size: var(--text-base);
  font-weight: var(--font-body-weight);
  line-height: var(--font-body-line-height);
  letter-spacing: 0;
  overflow-x: hidden;
}

body.is-loading {
  background: #02060d;
  overflow: hidden;
}

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

button,
input {
  font: inherit;
}

.noise {
  position: fixed;
  inset: 0;
  z-index: 30;
  pointer-events: none;
  opacity: 0.035;
  background-image: radial-gradient(#111 0.8px, transparent 0.8px);
  background-size: 4px 4px;
  mix-blend-mode: multiply;
}

.preloader {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: clamp(1.25rem, 4vw, 4rem);
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 48%, rgb(0 0 0 / 24%), rgb(0 0 0 / 68%) 62%, rgb(0 0 0 / 88%) 100%),
    linear-gradient(90deg, rgb(0 0 0 / 60%), rgb(0 14 46 / 25%) 44%, rgb(0 0 0 / 64%)),
    url("assets/loader-bg-engine-blue.png") center / cover no-repeat;
  color: white;
  transition: opacity 0.45s ease, visibility 0.45s ease;
}

.preloader::before,
.preloader::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.preloader::before {
  background:
    radial-gradient(circle at 1px 1px, rgb(255 255 255 / 58%) 1px, transparent 1.6px) 0 0 / 13px 13px,
    radial-gradient(circle at 50% 50%, transparent 0 36%, rgb(0 0 0 / 72%) 58%, transparent 72%);
  mask-image:
    linear-gradient(90deg, #000 0 13%, transparent 30% 70%, #000 87% 100%),
    linear-gradient(180deg, #000 0 11%, transparent 24% 76%, #000 89% 100%);
  mask-composite: intersect;
  opacity: 0.38;
  animation: loaderDots 3.2s steps(2, end) infinite;
}

.preloader::after {
  background:
    radial-gradient(circle at 50% 47%, transparent 0 23rem, rgb(0 0 0 / 30%) 40rem, rgb(0 0 0 / 64%) 100%);
  mix-blend-mode: normal;
}

.preloader.done {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-card {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  width: 100%;
  height: 100%;
}

.loader-video-wrap {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(48rem, 58vw, 94vh);
  min-width: 320px;
  aspect-ratio: 1600 / 684;
  margin: 0;
  overflow: visible;
  border: 0;
  background: transparent;
  box-shadow: none;
  pointer-events: none;
  transform: translate(-50%, -50%) translateY(12px) scale(0.96);
  animation: loaderVideoIn 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.18s both;
}

.loader-video-wrap::after {
  content: none;
}

.loader-video-wrap::before {
  content: none;
}

.loader-video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: transparent;
  filter: contrast(1.08) saturate(1.12);
  mix-blend-mode: screen;
  pointer-events: none;
}

.loader-mobile-loop {
  display: none;
}

.loader-video::-webkit-media-controls,
.loader-video::-webkit-media-controls-panel,
.loader-video::-webkit-media-controls-play-button,
.loader-video::-webkit-media-controls-start-playback-button {
  display: none !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.loader-copy {
  position: absolute;
  left: clamp(2rem, 5.2vw, 5rem);
  top: clamp(2rem, 7vh, 5rem);
  z-index: 25;
  display: block;
  width: auto;
  margin: 0;
  text-align: left;
  transform: none;
}

.loader-copy strong {
  display: block;
  color: white;
  font-size: clamp(2.35rem, 3.35vw, 4.15rem);
  font-weight: 700;
  line-height: 0.9;
  letter-spacing: -0.07em;
  white-space: nowrap;
}

.loader-copy span {
  display: none;
}

.loader-progress {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.loader-progress span {
  display: block;
  width: 1%;
  height: 100%;
  border-radius: inherit;
  background: white;
  transition: width 0.04s linear;
}

.loader-count {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.site-header {
  position: relative;
  top: 0;
  z-index: 20;
  background: white;
  backdrop-filter: none;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.site-header.scrolled {
  box-shadow: 0 12px 40px rgb(0 0 0 / 10%);
}

.announcement {
  background: var(--top-blue);
  color: white;
  font-size: clamp(0.875rem, 0.748rem + 0.3174vw, 1.125rem);
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
}

.topbar {
  display: grid;
  grid-template-columns: minmax(180px, 1fr) auto minmax(180px, 1fr);
  align-items: center;
  gap: 1rem;
  min-height: 76px;
  max-width: var(--page-width);
  margin: 0 auto;
  padding: 0 var(--page-padding);
}

.socials {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.socials a {
  color: white;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
}

.topbar-message {
  display: flex;
  align-items: center;
  gap: 6rem;
  text-align: center;
  white-space: nowrap;
}

.topbar button,
.region {
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
}

.topbar-message button {
  font-size: 2rem;
}

.region {
  justify-self: end;
  font-size: inherit;
  font-weight: 500;
}

.nav {
  display: grid;
  grid-template-columns: minmax(220px, 0.7fr) auto minmax(170px, 0.7fr);
  align-items: center;
  gap: 2rem;
  max-width: var(--page-width);
  margin: auto;
  min-height: 170px;
  padding: 0 var(--page-padding);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: max-content;
  color: var(--top-blue);
  font-size: clamp(2.05rem, 3vw, 3.9rem);
  font-weight: 700;
  letter-spacing: -0.08em;
  line-height: 1;
}

.brand-mark {
  display: grid;
  grid-template-columns: repeat(2, 12px);
  gap: 3px;
  rotate: -8deg;
}

.brand-mark span {
  width: 12px;
  height: 12px;
  border-radius: 3px;
  background: var(--red);
  box-shadow: inset 0 2px 0 rgb(255 255 255 / 42%);
}

.brand-mark span:nth-child(2) {
  background: #58c7ff;
}

.brand-mark span:nth-child(3) {
  background: #0f4ea8;
}

.brand-mark span:nth-child(4) {
  background: var(--ink);
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: clamp(1.25rem, 2.2vw, 4.25rem);
  font-size: var(--font-navigation-size);
  font-weight: 500;
}

.nav-links a {
  position: relative;
  padding: 0.25rem 0;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.2rem;
  width: 100%;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.25s ease;
}

.nav-links a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-actions {
  display: flex;
  justify-content: end;
  align-items: center;
  gap: clamp(0.7rem, 1.5vw, 1.7rem);
}

.icon-button,
.cart-button,
.button,
.quick-add,
.checkout,
.newsletter button {
  border: 0;
  cursor: pointer;
}

.icon-button {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.search-icon {
  width: 34px;
  height: 34px;
  border: 2px solid currentColor;
  border-radius: 50%;
  position: relative;
}

.search-icon::after {
  content: "";
  width: 14px;
  height: 2px;
  background: currentColor;
  position: absolute;
  right: -10px;
  bottom: 1px;
  rotate: 45deg;
}

.site-search {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: grid;
  place-items: start center;
  padding: clamp(6rem, 12vw, 8rem) var(--page-padding) 2rem;
  background: rgb(17 17 17 / 42%);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.site-search.open {
  opacity: 1;
  pointer-events: auto;
}

.site-search-panel {
  position: relative;
  display: grid;
  gap: 1rem;
  width: min(720px, 100%);
  border: 1px solid rgb(17 17 17 / 12%);
  border-radius: 8px;
  background: white;
  padding: clamp(1.1rem, 3vw, 1.6rem);
  box-shadow: 0 26px 70px rgb(0 0 0 / 24%);
}

.site-search-close {
  position: absolute;
  top: 0.65rem;
  right: 0.65rem;
  width: 38px;
  height: 38px;
  color: var(--ink);
  font-size: 1.8rem;
  line-height: 1;
}

.site-search label {
  display: grid;
  gap: 0.6rem;
  padding-right: 2.6rem;
}

.site-search label span {
  color: var(--top-blue);
  font-size: var(--text-xs);
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.site-search input {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #f8f9fb;
  padding: 0.9rem 1.05rem;
  color: var(--ink);
  font: inherit;
  outline: none;
}

.site-search input:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgb(18 104 216 / 12%);
}

.site-search-results {
  display: grid;
  gap: 0.55rem;
  max-height: min(52vh, 420px);
  overflow: auto;
}

.site-search-results a,
.site-search-results p {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  padding: 0.9rem 1rem;
  color: var(--ink);
  text-decoration: none;
}

.site-search-results a:hover,
.site-search-results a:focus-visible {
  border-color: var(--blue);
  background: rgb(18 104 216 / 7%);
}

.site-search-results strong {
  font-size: var(--text-base);
  line-height: 1.15;
}

.site-search-results span {
  flex: 0 0 auto;
  color: var(--muted);
  font-size: var(--text-sm);
  font-weight: 700;
  white-space: nowrap;
}

.user-icon,
.cart-icon {
  position: relative;
  display: block;
  width: 42px;
  height: 42px;
}

.user-icon::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  width: 18px;
  height: 18px;
  border: 2px solid currentColor;
  border-radius: 50%;
  transform: translateX(-50%);
}

.user-icon::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 34px;
  height: 20px;
  border: 2px solid currentColor;
  border-bottom: 0;
  border-radius: 22px 22px 0 0;
  transform: translateX(-50%);
}

.cart-icon::before {
  content: "";
  position: absolute;
  left: 8px;
  top: 8px;
  width: 28px;
  height: 22px;
  border: 2px solid currentColor;
  border-radius: 4px 4px 10px 10px;
  transform: skewX(-8deg);
}

.cart-icon::after {
  content: "";
  position: absolute;
  left: 6px;
  top: 3px;
  width: 30px;
  height: 12px;
  border-top: 2px solid currentColor;
  border-left: 2px solid currentColor;
  transform: rotate(8deg);
}

.cart-button {
  position: relative;
  color: var(--ink);
}

.cart-button [data-cart-count] {
  display: inline-grid;
  place-items: center;
  position: absolute;
  right: -2px;
  bottom: -2px;
  min-width: 20px;
  height: 20px;
  margin-left: 0;
  border-radius: 50%;
  background: var(--top-blue);
  color: white;
  font-size: 0.72rem;
  line-height: 1;
}

.mobile-menu-button {
  display: none;
}

.mobile-menu-close {
  display: none;
}

.hero {
  position: relative;
  min-height: auto;
  overflow: visible;
  background: white;
  padding: 0 var(--page-padding) 1.5rem;
}

.hero-slider,
.hero-slide {
  min-height: clamp(680px, calc(100svh - 270px), 940px);
}

.hero-slider {
  position: relative;
}

.hero-slide {
  position: absolute;
  inset: 0 var(--page-padding) 1.5rem;
  display: grid;
  grid-template-columns: 1fr;
  align-items: end;
  gap: 0;
  overflow: hidden;
  border-radius: 30px;
  padding: clamp(3rem, 5vw, 5rem) clamp(2.5rem, 5vw, 5.5rem) clamp(7.5rem, 9vw, 9.5rem);
  opacity: 0;
  visibility: hidden;
  transform: scale(1.03);
  transition: opacity 0.7s ease, visibility 0.7s ease, transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

.hero-slide.active {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}

.hero-slide[data-theme="red"] {
  background:
    radial-gradient(circle at 48% 58%, rgb(18 104 216 / 18%) 0 28%, transparent 54%),
    linear-gradient(90deg, rgb(0 9 28 / 82%) 0 32%, rgb(0 9 28 / 50%) 55%, rgb(0 9 28 / 78%) 100%),
    url("assets/loader-bg-engine-blue.png") center / cover no-repeat;
  color: white;
}

.hero-slide-2jz {
  background: #02060d;
}

.hero-slide-2jz::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgb(0 8 22 / 74%) 0 34%, rgb(0 8 22 / 24%) 58%, rgb(0 8 22 / 42%) 100%),
    linear-gradient(0deg, rgb(0 0 0 / 42%), transparent 54%);
}

.hero-slide[data-theme="black"] {
  background:
    linear-gradient(90deg, rgb(0 16 42 / 72%) 0 34%, rgb(0 16 42 / 28%) 58%, rgb(0 16 42 / 12%) 100%),
    linear-gradient(0deg, rgb(0 0 0 / 28%), rgb(0 0 0 / 10%)),
    url("assets/hero-vip-club-cover.png") center / cover no-repeat;
  color: white;
}

.hero-slide[data-theme="black"] .hero-visual-empty {
  display: none;
}

.hero-slide[data-theme="yellow"] {
  background: #051020;
  color: white;
}

.hero-cover-video {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: url("assets/hero-2jz-poster.png") center / cover no-repeat;
}

.hero-slide-2jz .hero-cover-video {
  background-image: url("assets/hero-collection-slide2-poster.png");
}

.hero-slide[data-theme="yellow"]::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgb(0 8 22 / 78%) 0 34%, rgb(0 8 22 / 36%) 60%, rgb(0 8 22 / 58%) 100%),
    linear-gradient(0deg, rgb(0 0 0 / 34%), transparent 48%);
}

.hero-slide[data-theme="yellow"] .hero-visual-empty {
  display: none;
}

.hero-copy {
  max-width: none;
  position: relative;
  z-index: 2;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin: 0 0 1rem;
  color: white;
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 8px;
  border-radius: 99px;
  background: currentColor;
}

.eyebrow.dark {
  color: var(--red);
}

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

h1 {
  max-width: min(1040px, 70%);
  font-family: var(--font-heading-family);
  font-size: clamp(var(--text-4xl), 4.4vw, var(--text-7xl));
  font-weight: var(--font-heading-weight);
  line-height: var(--font-heading-line-height);
  letter-spacing: var(--font-heading-letter-spacing);
  text-transform: none;
}

.hero .eyebrow,
.hero-copy p:not(.eyebrow) {
  display: none;
}

.hero-copy p:not(.eyebrow) {
  max-width: 560px;
  margin-top: 1.25rem;
  font-size: var(--text-lg);
  line-height: 1.6;
  opacity: 0.86;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  margin-top: 1.5rem;
  border-radius: 999px;
  padding: 0.75rem 1.5rem;
  font-size: var(--font-button-size);
  font-weight: 500;
  text-transform: uppercase;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.button:hover,
.quick-add:hover,
.checkout:hover,
.newsletter button:hover {
  transform: translateY(-2px);
}

.button-light {
  background: white;
  color: var(--ink);
}

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

.hero .button {
  position: absolute;
  right: clamp(3rem, 5vw, 5.5rem);
  bottom: clamp(8.4rem, 9vw, 10rem);
  z-index: 4;
  min-width: 290px;
  min-height: 74px;
  border: 4px solid white;
  background: rgb(20 26 22 / 82%);
  color: white;
  font-size: clamp(1rem, 1.2vw, 1.35rem);
  box-shadow: 0 0 0 1px rgb(255 255 255 / 38%);
}

.hero-slide-2jz .button {
  right: auto;
  left: clamp(2.5rem, 5vw, 5.5rem);
  bottom: clamp(10rem, 10vw, 12rem);
  min-width: clamp(260px, 18vw, 360px);
}

.hero-visual {
  position: absolute;
  right: 5vw;
  bottom: clamp(7rem, 8vw, 9rem);
  z-index: 1;
  width: min(900px, 52vw);
  min-height: 360px;
  perspective: 1100px;
}

.hero-video-media {
  position: absolute;
  inset: 50% auto auto 50%;
  display: block;
  width: min(960px, 54vw);
  aspect-ratio: 1080 / 588;
  max-height: min(620px, 58vh);
  object-fit: contain;
  background: url("assets/hero-2jz-poster.png") center / contain no-repeat;
  filter: drop-shadow(0 34px 42px rgb(0 0 0 / 28%));
  transform: translate(-50%, -50%);
}

.brick-scene,
.collector-box,
.engine-render {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
}

.model-car {
  position: relative;
  width: min(880px, 52vw);
  height: 210px;
  border-radius: 22px 76px 18px 18px;
  background: linear-gradient(#1b5f34, #0b361e);
  box-shadow: var(--shadow), inset 0 18px 0 rgb(255 255 255 / 20%);
  animation: carFloat 4s ease-in-out infinite;
  transform: rotateX(5deg) rotateY(-10deg);
}

.model-car::before {
  content: "";
  position: absolute;
  left: 15%;
  top: -72px;
  width: 44%;
  height: 92px;
  border-radius: 32px 52px 0 0;
  background: linear-gradient(135deg, #245f38, #082713);
}

.stud {
  position: absolute;
  top: 28px;
  width: 46px;
  height: 18px;
  border-radius: 99px;
  background: rgb(255 255 255 / 26%);
  box-shadow: inset 0 5px 0 rgb(255 255 255 / 22%);
}

.s1 { left: 50px; }
.s2 { left: 118px; }
.s3 { right: 90px; }

.window {
  position: absolute;
  left: 31%;
  top: -50px;
  width: 25%;
  height: 54px;
  border-radius: 18px 38px 8px 6px;
  background: linear-gradient(135deg, #d7f2ff, #4b94bd);
}

.stripe {
  position: absolute;
  left: 0;
  right: 0;
  top: 108px;
  height: 18px;
  background: white;
}

.wheel {
  position: absolute;
  bottom: -32px;
  width: 108px;
  height: 108px;
  border: 18px solid #101010;
  border-radius: 50%;
  background: radial-gradient(circle, #d8d8d8 0 28%, #353535 29% 100%);
  animation: wheelSpin 1.5s linear infinite;
}

.w1 { left: 76px; }
.w2 { right: 78px; }

.speed-line {
  position: absolute;
  width: 240px;
  height: 14px;
  border-radius: 99px;
  background: rgb(255 255 255 / 60%);
  animation: speed 1.6s linear infinite;
}

.line-a {
  top: 24%;
  left: 0;
}

.line-b {
  bottom: 20%;
  left: 8%;
  animation-delay: 0.5s;
}

.brick-stack {
  position: absolute;
  width: 130px;
  height: 56px;
  border-radius: 10px;
  background: var(--yellow);
  box-shadow: inset 0 10px 0 rgb(255 255 255 / 35%), 0 14px 25px rgb(0 0 0 / 22%);
}

.brick-stack::before,
.brick-stack::after {
  content: "";
  position: absolute;
  top: -12px;
  width: 28px;
  height: 18px;
  border-radius: 8px 8px 0 0;
  background: inherit;
}

.brick-stack::before { left: 24px; }
.brick-stack::after { right: 24px; }
.stack-a { right: 6%; bottom: 12%; animation: bob 3.4s ease-in-out infinite; }
.stack-b { left: 8%; bottom: 8%; background: var(--blue); animation: bob 3s ease-in-out infinite reverse; }

.collector-box {
  margin: auto;
  width: min(480px, 78vw);
  height: min(480px, 78vw);
  border-radius: 18px;
  background: linear-gradient(145deg, #262626, #090909);
  box-shadow: var(--shadow), inset 0 0 0 2px rgb(255 255 255 / 12%);
  transform: rotateX(11deg) rotateY(-18deg);
  animation: boxPulse 4s ease-in-out infinite;
}

.collector-box.big {
  position: relative;
  inset: auto;
  width: min(360px, 70vw);
  height: min(360px, 70vw);
}

.box-top {
  position: absolute;
  inset: 22px;
  border: 2px dashed rgb(255 255 255 / 22%);
  border-radius: 12px;
}

.box-logo {
  font-size: clamp(4rem, 10vw, 7rem);
  font-weight: 700;
  color: white;
}

.box-label {
  position: absolute;
  bottom: 36px;
  color: white;
  font-weight: 700;
  text-transform: uppercase;
}

.collector-box i {
  position: absolute;
  width: 58px;
  height: 28px;
  border-radius: 7px;
  background: var(--red);
  animation: orbit 6s linear infinite;
}

.collector-box i:nth-of-type(2) { background: var(--yellow); animation-delay: -1.5s; }
.collector-box i:nth-of-type(3) { background: var(--blue); animation-delay: -3s; }
.collector-box i:nth-of-type(4) { background: white; animation-delay: -4.5s; }

.engine-render {
  transform-style: preserve-3d;
  animation: engineTilt 5s ease-in-out infinite;
}

.engine-render span {
  position: absolute;
  display: block;
}

.engine-render .block {
  width: 390px;
  height: 190px;
  border-radius: 24px;
  background: linear-gradient(135deg, #2c2c2c, #0a0a0a);
  box-shadow: var(--shadow), inset 0 20px 0 rgb(255 255 255 / 12%);
}

.pipe {
  width: 56px;
  height: 270px;
  border-radius: 99px;
  background: linear-gradient(90deg, #d8d8d8, #777);
}

.p1 { rotate: 62deg; translate: -135px 16px; }
.p2 { rotate: -62deg; translate: 135px 16px; }

.fan {
  width: 116px;
  height: 116px;
  border: 17px solid #111;
  border-radius: 50%;
  background: conic-gradient(from 0deg, #fff 0 12%, #555 12% 25%, #fff 25% 37%, #555 37% 50%, #fff 50% 62%, #555 62% 75%, #fff 75% 87%, #555 87%);
  animation: wheelSpin 1s linear infinite;
}

.engine-render .base {
  width: 450px;
  height: 34px;
  border-radius: 8px;
  translate: 0 140px;
  background: #111;
}

.slider-controls {
  position: absolute;
  z-index: 5;
  left: calc(var(--page-padding) + clamp(2.5rem, 5vw, 5.5rem));
  right: calc(var(--page-padding) + clamp(2.5rem, 5vw, 5.5rem));
  bottom: clamp(3.4rem, 4vw, 4.8rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.9rem;
  transform: none;
  color: white;
}

.slider-controls::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -1.5rem;
  height: 1px;
  background: rgb(255 255 255 / 18%);
}

.slider-controls button {
  display: grid;
  place-items: center;
  width: 56px;
  height: 42px;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: inherit;
  font-size: 3rem;
  cursor: pointer;
  backdrop-filter: none;
}

.dots {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 1.3rem;
}

.dots button {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  background: currentColor;
  opacity: 0.42;
  transition: width 0.25s ease, opacity 0.25s ease;
}

.dots button.active {
  width: 10px;
  opacity: 1;
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgb(255 255 255 / 70%);
}

.section,
.community,
.video-wall,
.faq {
  max-width: var(--page-width);
  margin: auto;
  padding: var(--section-y) var(--page-padding);
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: var(--grid-gap);
  margin-bottom: 2.5rem;
}

.section-heading.compact {
  display: block;
  max-width: 760px;
}

h2 {
  font-family: var(--font-heading-family);
  font-size: clamp(var(--text-4xl), 4.6vw, var(--text-7xl));
  font-weight: var(--font-heading-weight);
  line-height: var(--font-heading-line-height);
  letter-spacing: var(--font-heading-letter-spacing);
  text-transform: uppercase;
}

.tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.tab {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: white;
  padding: 0.72rem 1rem;
  font-size: var(--font-button-size);
  font-weight: 500;
  text-transform: uppercase;
  cursor: pointer;
  transition: border-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.tab:hover:not(.active) {
  border-color: var(--blue);
  color: var(--blue);
  box-shadow: inset 0 -3px 0 var(--blue);
}

.tab.active {
  background: var(--ink);
  color: white;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.15rem;
}

.product-card {
  position: relative;
  min-width: 0;
  cursor: pointer;
  transform-style: preserve-3d;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.product-card:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 6px;
}

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

.product-card:hover {
  transform: translateY(-8px);
}

.home-catalog-cta {
  max-width: var(--page-width);
  margin: calc(var(--section-y) * -0.45) auto 0;
  padding: 0 var(--page-padding) clamp(1.6rem, 3vw, 2.4rem);
}

.home-catalog-card {
  display: grid;
  place-items: center;
  min-height: clamp(86px, 10vw, 132px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(135deg, rgb(16 16 16 / 96%), rgb(12 24 42 / 94%));
  color: white;
  text-decoration: none;
  box-shadow: 0 18px 55px rgb(20 68 130 / 12%);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.home-catalog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 70px rgb(20 68 130 / 18%);
}

.home-catalog-card span {
  color: inherit;
  font-family: var(--font-heading-family);
  font-size: clamp(2rem, 5vw, 4.4rem);
  font-weight: var(--font-heading-weight);
  line-height: 0.95;
  text-transform: uppercase;
}

.product-art {
  position: relative;
  display: grid;
  place-items: center;
  aspect-ratio: 1 / 1.08;
  overflow: hidden;
  border-radius: 8px;
  background: #eee;
  box-shadow: inset 0 0 0 1px rgb(0 0 0 / 6%);
}

.product-art:hover {
  cursor: pointer;
}

.product-art::before {
  content: "";
  position: absolute;
  inset: auto -20% -12% -20%;
  height: 38%;
  background: rgb(0 0 0 / 8%);
  border-radius: 50%;
  filter: blur(8px);
}

.product-art.red { background: linear-gradient(135deg, #f3f1ed, #d7ecff); }
.product-art.green { background: linear-gradient(135deg, #f3f1ed, #d9eadb); }
.product-art.blue { background: linear-gradient(135deg, #f3f1ed, #d8e8fa); }
.product-art.silver { background: linear-gradient(135deg, #f3f1ed, #e2e2e2); }

.product-card .product-art:has(.product-image) {
  background: white;
}

.product-card .product-art:has(.product-image)::before {
  display: none;
}

.badge {
  position: absolute;
  left: 0.8rem;
  top: 0.8rem;
  z-index: 2;
  border-radius: 5px;
  background: white;
  padding: 0.32rem 0.58rem;
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
}

.media-peek {
  position: absolute;
  right: 0.8rem;
  top: 0.8rem;
  z-index: 4;
  border: 1px solid rgb(255 255 255 / 82%);
  border-radius: 999px;
  background: rgb(17 17 17 / 88%);
  color: white;
  padding: 0.36rem 0.6rem;
  font-size: var(--text-xs);
  font-weight: 700;
  line-height: 1;
  box-shadow: 0 10px 24px rgb(0 0 0 / 18%);
  cursor: pointer;
}

.mini-car {
  position: relative;
  width: 74%;
  height: 28%;
  border-radius: 16px 42px 12px 12px;
  background: linear-gradient(#4ab8ff, #0d4fa8);
  box-shadow: 0 24px 36px rgb(0 0 0 / 18%), inset 0 11px 0 rgb(255 255 255 / 22%);
}

.mini-car::before {
  content: "";
  position: absolute;
  left: 22%;
  top: -48%;
  width: 38%;
  height: 58%;
  border-radius: 18px 32px 0 0;
  background: inherit;
}

.mini-car::after {
  content: "";
  position: absolute;
  left: 14%;
  right: 12%;
  bottom: -28%;
  height: 46%;
  background: radial-gradient(circle at 16% 50%, #111 0 17%, transparent 18%),
    radial-gradient(circle at 84% 50%, #111 0 17%, transparent 18%);
}

.mini-car.suv { background: linear-gradient(#3e9856, #175227); border-radius: 14px; height: 32%; }
.mini-car.wagon { background: linear-gradient(#347ec6, #103e72); border-radius: 13px 24px 12px 12px; }

.mini-engine {
  position: relative;
  width: 58%;
  height: 34%;
  border-radius: 18px;
  background: linear-gradient(135deg, #333, #0a0a0a);
  box-shadow: 0 24px 36px rgb(0 0 0 / 20%);
}

.mini-engine::before {
  content: "";
  position: absolute;
  inset: 28% auto auto 50%;
  width: 34%;
  aspect-ratio: 1;
  border: 10px solid #111;
  border-radius: 50%;
  background: #d9d9d9;
  transform: translate(-50%, -50%);
}

.product-image {
  position: relative;
  z-index: 1;
  display: block;
  width: 86%;
  max-height: 82%;
  object-fit: contain;
  filter: drop-shadow(0 24px 28px rgb(0 0 0 / 18%));
}

.product-card .product-art .product-image {
  width: 100%;
  height: 100%;
  max-height: none;
  object-fit: cover;
  filter: none;
}

.quick-add {
  position: absolute;
  left: 0.7rem;
  right: 0.7rem;
  bottom: 4.8rem;
  z-index: 4;
  border-radius: 999px;
  background: var(--ink);
  color: white;
  padding: 0.72rem 1rem;
  font-size: var(--font-button-size);
  font-weight: 500;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.product-card:hover .quick-add {
  opacity: 1;
  transform: translateY(0);
}

.product-card h3 {
  margin-top: 1rem;
  font-size: var(--font-product-size);
  font-weight: 700;
}

.product-card p {
  margin-top: 0.25rem;
  color: var(--muted);
  font-size: var(--text-sm);
  font-weight: 400;
}

.product-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 1.25rem;
  background: rgb(0 0 0 / 54%);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.media-modal {
  position: fixed;
  inset: 0;
  z-index: 85;
  display: grid;
  place-items: center;
  padding: 1.25rem;
  background: rgb(0 0 0 / 62%);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.media-modal.open {
  opacity: 1;
  visibility: visible;
}

.media-viewer {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 0.34fr);
  gap: 1rem;
  width: min(1080px, 100%);
  max-height: calc(100vh - 2.5rem);
  overflow: auto;
  border-radius: 8px;
  background: white;
  padding: clamp(1rem, 2.4vw, 1.5rem);
  box-shadow: 0 30px 90px rgb(0 0 0 / 34%);
}

.media-stage {
  display: grid;
  place-items: center;
  min-height: min(64vh, 640px);
  overflow: hidden;
  border-radius: 8px;
  background: #080808;
}

.media-stage img,
.media-stage video {
  display: block;
  max-width: 100%;
  max-height: min(64vh, 640px);
  object-fit: contain;
}

.media-info {
  align-self: end;
  display: grid;
  gap: 1rem;
}

.media-info h2 {
  color: var(--ink);
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 0.92;
}

.media-thumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.media-thumbs button {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: white;
  padding: 0.55rem 0.8rem;
  font-weight: 700;
}

.media-thumbs button.active {
  background: var(--ink);
  color: white;
}

.product-modal.open {
  opacity: 1;
  visibility: visible;
}

.product-detail {
  position: relative;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(1.5rem, 4vw, 3.5rem);
  width: min(980px, 100%);
  max-height: min(760px, calc(100vh - 2.5rem));
  overflow: auto;
  border-radius: 8px;
  background: white;
  padding: clamp(1.2rem, 3vw, 2.4rem);
  box-shadow: 0 30px 90px rgb(0 0 0 / 28%);
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 2;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--ink);
  color: white;
  font-size: 1.6rem;
}

.product-detail-art {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 420px;
  overflow: hidden;
  border-radius: 8px;
  background: linear-gradient(135deg, #f3f1ed, #d7ecff);
}

.product-detail-art.green { background: linear-gradient(135deg, #f3f1ed, #d9eadb); }
.product-detail-art.blue { background: linear-gradient(135deg, #f3f1ed, #d8e8fa); }
.product-detail-art.silver { background: linear-gradient(135deg, #f3f1ed, #e2e2e2); }

.product-detail-art .mini-car,
.product-detail-art .mini-engine {
  scale: 1.35;
}

.product-detail-copy {
  align-self: center;
  display: grid;
  gap: 1rem;
  color: var(--ink);
}

.product-detail-copy h2 {
  font-size: clamp(2.4rem, 6vw, 5rem);
  line-height: 0.95;
}

.product-detail-copy p {
  max-width: 42ch;
  color: var(--muted);
  font-size: var(--text-lg);
}

.product-detail-copy strong {
  font-size: var(--text-2xl);
}

.product-detail-copy .button {
  justify-self: start;
}

.catalog-main {
  background: var(--paper);
}

.catalog-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 0.42fr);
  gap: clamp(1.5rem, 4vw, 4rem);
  align-items: end;
  max-width: var(--page-width);
  margin: 0 auto;
  padding: clamp(3rem, 7vw, 7rem) var(--page-padding) clamp(2rem, 5vw, 4rem);
}

.catalog-hero h1 {
  max-width: 11ch;
  color: var(--top-blue);
  font-size: clamp(4rem, 9vw, 10rem);
  line-height: 0.82;
  letter-spacing: -0.08em;
}

.catalog-hero p {
  max-width: 54ch;
  margin-top: 1.25rem;
  color: var(--muted);
  font-size: var(--text-lg);
  line-height: 1.55;
}

.catalog-panel {
  display: grid;
  gap: 1rem;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
}

.catalog-panel strong {
  font-size: var(--text-2xl);
  line-height: 1;
}

.catalog-panel span {
  color: var(--muted);
  font-size: var(--text-sm);
}

.catalog-toolbar {
  display: grid;
  grid-template-columns: minmax(220px, 0.28fr) minmax(260px, 0.24fr) 1fr;
  gap: 1rem;
  align-items: center;
  max-width: var(--page-width);
  margin: 0 auto;
  padding: clamp(2rem, 4vw, 3.5rem) var(--page-padding) 1.25rem;
}

.catalog-search {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: white;
  padding: 0.9rem 1.15rem;
  font: inherit;
}

.catalog-price-filter {
  display: grid;
  gap: 0.55rem;
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  padding: 0.85rem 1rem;
}

.catalog-price-filter > div,
.catalog-price-filter p {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin: 0;
}

.catalog-price-filter .catalog-budget-help {
  display: block;
  color: var(--ink);
  font-size: clamp(0.82rem, 1.2vw, 0.95rem);
  font-weight: 700;
  line-height: 1.2;
  text-transform: none;
}

.catalog-price-filter span {
  color: var(--muted);
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
}

.catalog-price-filter strong {
  color: var(--top-blue);
  font-size: var(--text-sm);
  white-space: nowrap;
}

.catalog-price-filter input {
  width: 100%;
  accent-color: var(--blue);
}

.catalog-toolbar .tabs {
  justify-content: flex-end;
  margin: 0;
}

.catalog-section {
  max-width: var(--page-width);
  margin: 0 auto;
  padding: 0 var(--page-padding) var(--section-y);
}

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

.products-loading [data-products] {
  min-height: 520px;
  opacity: 0;
  visibility: hidden;
}

.products-ready [data-products] {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.2s ease;
}

.catalog-card-meta {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 0.75rem;
  color: var(--muted);
  font-size: var(--text-sm);
}

.catalog-card-meta span:last-child {
  font-weight: 700;
  color: var(--top-blue);
}

.product-main {
  background: white;
}

.product-load-status {
  max-width: var(--page-width);
  margin: 0 auto;
  padding: clamp(4rem, 8vw, 7rem) var(--page-padding);
  color: var(--muted);
  font-weight: 700;
}

.product-load-status a {
  color: var(--top-blue);
  text-decoration: underline;
}

.product-template {
  max-width: min(1500px, var(--page-width));
  margin: 0 auto;
  padding: clamp(1.5rem, 2.4vw, 3rem) var(--page-padding) var(--section-y);
}

.product-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  align-items: center;
  margin-bottom: 1rem;
  color: var(--muted);
  font-size: var(--text-sm);
  font-weight: 700;
  text-transform: uppercase;
}

.product-breadcrumb a {
  color: var(--top-blue);
}

.product-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.45fr) minmax(460px, 0.55fr);
  gap: clamp(1.5rem, 3vw, 3.5rem);
  align-items: start;
}

.product-gallery {
  display: grid;
  gap: 0.8rem;
}

.product-gallery-stage {
  position: relative;
  display: grid;
  place-items: center;
  min-height: min(58vh, 560px);
  overflow: hidden;
  border-radius: 8px;
  background: white;
  box-shadow: inset 0 0 0 1px var(--line);
}

.product-gallery-media {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
}

.product-gallery-media img,
.product-gallery-media video,
.product-gallery-stage img,
.product-gallery-stage video {
  display: block;
  width: 100%;
  height: min(58vh, 560px);
  object-fit: contain;
  padding: clamp(1rem, 2.4vw, 2.8rem);
}

.product-gallery-media video,
.product-gallery-stage video {
  background: #050505;
}

.product-gallery-nav {
  position: absolute;
  top: 50%;
  z-index: 3;
  display: grid;
  place-items: center;
  width: clamp(38px, 3.4vw, 50px);
  height: clamp(38px, 3.4vw, 50px);
  border: 0;
  border-radius: 50%;
  background: rgb(255 255 255 / 92%);
  color: var(--blue);
  cursor: pointer;
  font-size: clamp(1.9rem, 3.2vw, 2.8rem);
  line-height: 1;
  transform: translateY(-50%);
  box-shadow: 0 14px 36px rgb(0 0 0 / 12%);
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.product-gallery-nav.prev {
  left: clamp(0.8rem, 2vw, 1.4rem);
}

.product-gallery-nav.next {
  right: clamp(0.8rem, 2vw, 1.4rem);
}

.product-gallery-nav:hover {
  background: var(--blue);
  color: white;
  transform: translateY(-50%) scale(1.04);
}

.product-gallery-count {
  margin: 0;
  color: var(--muted);
  font-size: var(--text-sm);
  font-weight: 700;
  text-align: center;
}

.product-buybox {
  position: sticky;
  top: 1.5rem;
  display: grid;
  gap: clamp(1rem, 1.5vw, 1.45rem);
  padding-top: 0.15rem;
  background: transparent;
}

.product-rating {
  display: flex;
  gap: 0.7rem;
  align-items: center;
  color: #ecb300;
  font-size: clamp(0.95rem, 1vw, 1.15rem);
}

.product-rating strong {
  color: var(--ink);
  font-weight: 700;
}

.product-title-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(0.45rem, 1vw, 0.85rem);
  align-items: start;
}

.product-title-row h1 {
  max-width: 13ch;
  color: var(--ink);
  font-size: clamp(2.4rem, 3.4vw, 4.2rem);
  line-height: 0.95;
  letter-spacing: -0.06em;
}

.product-price-line {
  color: var(--ink);
  font-size: clamp(1.35rem, 1.7vw, 2rem);
  font-weight: 400;
  white-space: nowrap;
}

.product-stock-line {
  display: flex;
  gap: 0.9rem;
  align-items: center;
  color: #00a331;
  font-size: clamp(1rem, 1.1vw, 1.2rem);
  font-weight: 700;
}

.product-stock-line span {
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  background: #00a331;
  box-shadow: 0 0 0 0.38rem rgb(0 163 49 / 12%);
}

.product-feature-panel {
  display: grid;
  gap: 0.8rem;
  margin-top: clamp(0.5rem, 1.2vw, 1rem);
  border-radius: 10px;
  background: #f7f7f7;
  padding: clamp(0.8rem, 1.2vw, 1.1rem);
}

.product-feature {
  display: flex;
  gap: 0.8rem;
  align-items: center;
  min-height: clamp(3rem, 3.7vw, 4rem);
  border-radius: 8px;
  background: white;
  padding: 0.75rem clamp(0.9rem, 1.2vw, 1.2rem);
  color: var(--ink);
  font-size: clamp(0.95rem, 1vw, 1.12rem);
  font-weight: 400;
}

.product-feature span {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 30px;
  height: 30px;
  border: 2px solid var(--ink);
  border-radius: 50%;
  color: var(--ink);
  font-size: 1rem;
  font-weight: 700;
}

.product-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: clamp(0.4rem, 1vw, 0.9rem);
}

.button-light {
  background: white;
  color: var(--ink);
  box-shadow: inset 0 0 0 1px var(--line);
}

.product-actions .button {
  width: 100%;
  justify-content: center;
  min-height: clamp(3.1rem, 3.8vw, 4.2rem);
  border-radius: 999px;
  font-size: clamp(0.95rem, 1vw, 1.1rem);
  letter-spacing: 0;
}

.button-shop {
  background: #5532f4;
  color: white;
  box-shadow: none;
}

.more-payments {
  justify-self: center;
  color: var(--ink);
  font-size: clamp(0.9rem, 1vw, 1rem);
  text-decoration: underline;
}

.product-accordion {
  margin-top: clamp(0.8rem, 1.4vw, 1.2rem);
  border-radius: 8px;
  background: #f7f7f7;
  padding: 0 clamp(1rem, 1.6vw, 1.5rem);
}

.product-accordion summary {
  cursor: pointer;
  padding: clamp(0.85rem, 1.1vw, 1.05rem) 0;
  color: var(--ink);
  font-size: clamp(1rem, 1.1vw, 1.2rem);
  font-weight: 700;
}

.product-accordion p {
  max-width: 70ch;
  padding-bottom: 1.3rem;
  color: var(--muted);
  line-height: 1.55;
}

.product-story {
  display: grid;
  grid-template-columns: minmax(0, 0.58fr) minmax(0, 0.42fr);
  gap: clamp(1.5rem, 4vw, 4rem);
  align-items: end;
  margin-top: clamp(2.5rem, 7vw, 6rem);
  padding-top: clamp(2rem, 5vw, 4rem);
  border-top: 1px solid var(--line);
}

.product-story h2 {
  max-width: 13ch;
  color: var(--top-blue);
  font-size: clamp(3rem, 7vw, 8.5rem);
  line-height: 0.84;
  letter-spacing: -0.08em;
}

.product-story p {
  color: var(--muted);
  font-size: var(--text-lg);
  line-height: 1.55;
}

.product-specs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}

.product-specs article {
  display: grid;
  gap: 0.75rem;
  min-height: 150px;
  padding: 1.2rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
}

.product-specs strong {
  font-size: var(--text-xl);
}

.product-specs span {
  color: var(--muted);
  line-height: 1.45;
}

.product-video-feature {
  display: grid;
  grid-template-columns: minmax(260px, 0.34fr) minmax(0, 0.66fr);
  gap: clamp(1.25rem, 2.4vw, 2.5rem);
  align-items: center;
  max-width: 1280px;
  margin: clamp(1.6rem, 4vw, 3.5rem) auto 0;
  padding: clamp(1.5rem, 3vw, 2.5rem) clamp(1.25rem, 3vw, 2.5rem);
}

.product-video-feature[hidden] {
  display: none !important;
}

.product-video-copy h2 {
  max-width: 10ch;
  color: var(--ink);
  font-size: clamp(2.2rem, 3.6vw, 4.3rem);
  line-height: 0.94;
  letter-spacing: -0.045em;
}

.product-video-copy h2 > span {
  position: relative;
  z-index: 0;
  display: inline-block;
  padding: 0 0.08em;
}

.product-video-copy h2 > span::before {
  content: "";
  position: absolute;
  inset: 0.08em -0.08em 0.02em;
  z-index: -1;
  background: var(--blue);
  transform: rotate(2deg);
}

.product-video-copy p {
  max-width: 34ch;
  margin-top: 1rem;
  color: var(--muted);
  font-size: var(--text-base);
  line-height: 1.45;
}

.product-video-media {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(0.9rem, 1.6vw, 1.25rem);
  align-items: stretch;
}

.product-video-card {
  position: relative;
  display: grid;
  overflow: hidden;
  min-height: 360px;
  border-radius: 8px;
  background: #050505;
  color: white;
  aspect-ratio: 4 / 5;
}

.product-video-card.horizontal {
  align-self: center;
  aspect-ratio: 16 / 9;
}

.product-video-card.vertical {
  aspect-ratio: 4 / 5;
}

.product-video-card img,
.product-video-card video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-video-card.video-card video {
  object-fit: cover;
  background: #050505;
}

.product-video-card.video-card.vertical video {
  object-fit: cover;
}

.product-video-card.video-card.horizontal video {
  object-fit: contain;
}

.product-video-card > div {
  position: absolute;
  inset: auto 0 0;
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  min-height: 104px;
  padding: 1rem clamp(1rem, 1.5vw, 1.35rem);
  background: linear-gradient(180deg, transparent, rgb(0 0 0 / 86%) 32%, rgb(0 0 0 / 94%));
}

.product-video-card strong {
  max-width: 12ch;
  color: white;
  font-size: clamp(1.35rem, 2vw, 2rem);
  line-height: 0.95;
}

.product-video-card > div span {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: white;
  color: var(--ink);
  font-size: 1.9rem;
  line-height: 1;
}

.product-video-toggle {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: rgb(255 255 255 / 86%);
  color: var(--ink);
  font-size: 1.05rem;
  font-weight: 700;
  cursor: pointer;
}

.related-products {
  max-width: 1280px;
  margin: clamp(2rem, 5vw, 4.5rem) auto 0;
  padding: 0 clamp(1.25rem, 3vw, 2.5rem) clamp(1rem, 2vw, 2rem);
}

.related-products[hidden] {
  display: none !important;
}

.related-products-heading {
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.related-products-heading h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(2rem, 4vw, 4.1rem);
  line-height: 0.95;
  letter-spacing: 0;
}

.related-products-heading div {
  display: flex;
  gap: 0.7rem;
}

.related-products-heading button {
  display: grid;
  place-items: center;
  width: clamp(44px, 4vw, 58px);
  height: clamp(44px, 4vw, 58px);
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  background: white;
  color: var(--ink);
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
}

.related-products-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(240px, 1fr);
  gap: clamp(1rem, 1.6vw, 1.5rem);
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  padding-bottom: 0.8rem;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.related-products-track::-webkit-scrollbar {
  display: none;
}

.related-product-card {
  position: relative;
  display: grid;
  gap: 0.75rem;
  min-width: 0;
  color: var(--ink);
  text-align: center;
  text-decoration: none;
  scroll-snap-align: start;
}

.related-product-card a {
  display: grid;
  gap: 0.75rem;
  color: inherit;
  text-decoration: none;
}

.related-product-card > span {
  display: grid;
  place-items: center;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 8px;
  background: #f1f1f1;
}

.related-product-card > a > span {
  display: grid;
  place-items: center;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 8px;
  background: #f1f1f1;
}

.related-product-card img,
.related-product-card .product-page-fallback {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.related-product-card strong {
  display: block;
  padding-inline: 0.5rem;
  color: var(--ink);
  font-size: clamp(1.05rem, 1.4vw, 1.35rem);
  line-height: 1.1;
}

.related-product-card small {
  display: block;
  color: var(--muted);
  font-size: var(--text-base);
}

.home-motor-add {
  display: none;
}

.product-page-fallback {
  width: 100%;
  min-height: min(72vh, 820px);
  border-radius: 0;
}

.community {
  display: grid;
  grid-template-columns: 0.46fr 0.54fr;
  gap: var(--grid-gap);
  align-items: center;
}

.community-copy p,
.mystery-copy p,
.footer p {
  margin-top: 1rem;
  color: var(--muted);
  font-size: var(--text-base);
  line-height: 1.6;
}

.mystery-copy p {
  color: white;
}

.build-strip {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(180px, 1fr);
  gap: 0.8rem;
  overflow-x: auto;
  padding-bottom: 0.6rem;
  scroll-snap-type: x mandatory;
}

.build-strip a {
  position: relative;
  display: grid;
  align-content: end;
  min-height: 310px;
  overflow: hidden;
  border-radius: 8px;
  background: #ddd;
  color: white;
  scroll-snap-align: start;
}

.build-strip strong {
  position: relative;
  z-index: 2;
  padding: 1rem;
  font-weight: 700;
  text-shadow: 0 2px 14px rgb(0 0 0 / 45%);
}

.tile {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, #222, #777);
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.build-strip a:hover .tile {
  transform: scale(1.08);
}

.tile::before {
  content: "";
  position: absolute;
  inset: 22% 12% 28%;
  border-radius: 18px 46px 14px 14px;
  background: var(--red);
  box-shadow: 0 24px 40px rgb(0 0 0 / 30%);
}

.tile-1,
.tile-2,
.tile-3,
.tile-4,
.tile-5 {
  background:
    linear-gradient(180deg, rgb(0 0 0 / 0%) 42%, rgb(0 0 0 / 66%) 100%),
    linear-gradient(160deg, #061532, #1268d8);
}

.tile-1::before {
  inset: 22% 12% 28%;
  border-radius: 18px 46px 14px 14px;
  background: #d8d6d1 url("assets/community-johanna-a.png") center / cover no-repeat;
}

.tile-2::before {
  inset: 22% 12% 28%;
  border-radius: 18px 46px 14px 14px;
  background: #9a846b url("assets/community-guillermo-r.png") center / cover no-repeat;
}
.tile-3::before {
  background: #8fbf8b url("assets/community-jose-g.png") center / cover no-repeat;
}
.tile-4::before {
  background: #202020 url("assets/community-paolo-z.png") center / cover no-repeat;
}
.tile-5::before {
  background: #202020 url("assets/community-omar.png") center / cover no-repeat;
}

.video-wall {
  background: var(--ink);
  color: white;
  max-width: none;
}

.video-wall .section-heading,
.reel-grid {
  max-width: var(--page-width);
  margin-inline: auto;
}

.reel-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 210px;
  gap: 0.8rem;
  margin-top: 2rem;
}

.reel {
  position: relative;
  overflow: hidden;
  border: 1px solid rgb(255 255 255 / 14%);
  border-radius: 8px;
  background: #222;
  color: white;
  cursor: pointer;
}

.reel.tall {
  grid-row: span 2;
}

.reel.wide {
  grid-column: span 2;
}

.reel span {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 42%, rgb(255 255 255 / 20%), transparent 24%),
    linear-gradient(135deg, #1268d8, #111);
  transition: scale 0.45s ease;
}

.reel.reel-video {
  background: #111 url("assets/hero-2jz-poster.png") center / cover;
}

.reel.garage-reel span {
  background: linear-gradient(135deg, #1878d1, #111);
}

.reel.audi-rally-reel {
  background: #050505;
}

.reel.drop-monthly-reel {
  background: #050505;
}

.reel-video-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.reel.reel-video span {
  z-index: 1;
  background: linear-gradient(90deg, rgb(0 0 0 / 8%), rgb(0 0 0 / 58%));
}

.reel.audi-rally-reel span {
  background: linear-gradient(180deg, rgb(0 0 0 / 4%), rgb(0 0 0 / 72%));
}

.reel.drop-monthly-reel span {
  background: linear-gradient(180deg, rgb(0 0 0 / 8%), rgb(0 0 0 / 70%));
}

.reel::before {
  content: "";
  position: absolute;
  inset: 50% auto auto 50%;
  z-index: 2;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgb(255 255 255 / 85%);
  transform: translate(-50%, -50%);
}

.reel::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 3;
  border-left: 14px solid #111;
  border-top: 9px solid transparent;
  border-bottom: 9px solid transparent;
  transform: translate(-35%, -50%);
}

.reel:hover span {
  scale: 1.07;
}

.reel strong {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  z-index: 4;
  font-weight: 700;
  text-align: left;
}

.mystery {
  display: grid;
  grid-template-columns: minmax(260px, 0.95fr) minmax(260px, 1.05fr);
  align-items: center;
  gap: var(--grid-gap);
  padding: var(--section-y) var(--page-padding);
  background: linear-gradient(125deg, #111 0 48%, #1268d8 48% 100%);
  color: white;
  overflow: hidden;
}

.mystery-art {
  position: relative;
  min-height: 430px;
  display: grid;
  place-items: center;
}

.mystery-box-image {
  position: relative;
  z-index: 1;
  width: min(520px, 88vw);
  max-width: 100%;
  height: auto;
  filter: drop-shadow(0 28px 52px rgb(0 0 0 / 42%));
  animation: boxPulse 4s ease-in-out infinite;
}

.floating-bricks i {
  position: absolute;
  width: 82px;
  height: 38px;
  border-radius: 8px;
  background: var(--yellow);
  animation: floatBrick 5s ease-in-out infinite;
}

.floating-bricks i:nth-child(1) { left: 4%; top: 10%; }
.floating-bricks i:nth-child(2) { right: 8%; top: 8%; background: var(--red); animation-delay: -1s; }
.floating-bricks i:nth-child(3) { left: 16%; bottom: 16%; background: var(--blue); animation-delay: -2s; }
.floating-bricks i:nth-child(4) { right: 16%; bottom: 20%; background: white; animation-delay: -3s; }
.floating-bricks i:nth-child(5) { left: 48%; top: 2%; background: var(--green); animation-delay: -4s; }

.collection-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
}

.collection-grid a {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  background: white;
  padding: clamp(1.25rem, 2.526vw, 3rem);
  font-size: clamp(var(--text-lg), 2vw, var(--text-3xl));
  font-weight: 700;
  box-shadow: inset 0 0 0 1px var(--line);
}

/* REVERSIBLE: remove this block and the collection-card-classicos class in index.html to restore the plain Clasicos card. */
.collection-grid a.collection-card-classicos {
  color: white;
  background:
    linear-gradient(90deg, rgb(0 0 0 / 76%), rgb(0 0 0 / 22%) 58%, rgb(0 0 0 / 52%)),
    url("assets/classicos-porsche-vintage.png") center / cover no-repeat;
  text-shadow: 0 1px 14px rgb(0 0 0 / 58%);
  box-shadow: inset 0 0 0 1px rgb(255 255 255 / 18%);
}

.collection-grid a.collection-card-classicos::after {
  display: none;
}

.collection-grid a.collection-card-classicos:hover {
  color: white;
}

.collection-grid a::after {
  content: "";
  position: absolute;
  inset: auto -10% -80% -10%;
  height: 100%;
  background: currentColor;
  border-radius: 50%;
  transition: transform 0.35s ease;
  transform: translateY(100%);
  z-index: 0;
}

.collection-grid a:hover::after {
  transform: translateY(0);
}

.collection-grid a:hover {
  color: var(--blue);
}

.home-motor-carousel {
  max-width: var(--page-width);
  margin: clamp(2rem, 4vw, 4rem) auto;
  padding: 0 var(--page-padding);
}

.home-motor-carousel[hidden] {
  display: none !important;
}

.faq {
  display: grid;
  grid-template-columns: 0.45fr 0.55fr;
  gap: var(--grid-gap);
}

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

.accordion details:last-child {
  border-bottom: 1px solid var(--line);
}

.accordion summary {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.35rem 0;
  font-weight: 700;
  cursor: pointer;
}

.accordion summary::after {
  content: "+";
  font-size: 1.5rem;
}

.accordion details[open] summary::after {
  content: "-";
}

.accordion p {
  max-width: 650px;
  padding: 0 0 1.35rem;
  color: var(--muted);
  line-height: 1.6;
}

.cart-drawer {
  position: fixed;
  inset: 0;
  z-index: 40;
  display: grid;
  justify-items: end;
  background: rgb(0 0 0 / 45%);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.cart-drawer.open {
  opacity: 1;
  visibility: visible;
}

.cart-panel {
  width: min(420px, 100%);
  height: 100%;
  padding: 1.3rem;
  background: var(--paper);
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  overflow-y: auto;
}

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

.chat-bubble {
  position: fixed;
  right: 2rem;
  bottom: 2rem;
  z-index: 19;
  display: grid;
  place-items: center;
  width: 74px;
  height: 74px;
  border: 0;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 50%, var(--top-blue) 0 40%, #eef7ff 41% 100%);
  color: white;
  font-size: 1.5rem;
  font-weight: 700;
  box-shadow: 0 10px 30px rgb(0 0 0 / 22%);
  cursor: pointer;
}

.chat-assistant {
  position: fixed;
  right: 2rem;
  bottom: 6.8rem;
  z-index: 39;
  width: min(380px, calc(100vw - 2rem));
  opacity: 0;
  visibility: hidden;
  transform: translateY(16px);
  transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease;
}

.chat-assistant.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.chat-assistant-panel {
  overflow: hidden;
  border: 1px solid rgb(0 0 0 / 10%);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: 0 18px 48px rgb(0 0 0 / 24%);
}

.chat-assistant-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem;
  background: var(--ink);
  color: white;
}

.chat-assistant-head div {
  display: grid;
  gap: 0.2rem;
}

.chat-assistant-head strong {
  font-size: 1rem;
}

.chat-assistant-head span {
  color: rgb(255 255 255 / 72%);
  font-size: 0.78rem;
}

.chat-assistant-head button {
  width: 32px;
  height: 32px;
  border: 1px solid rgb(255 255 255 / 22%);
  border-radius: 50%;
  background: rgb(255 255 255 / 10%);
  color: white;
  font-size: 1rem;
}

.chat-assistant-messages {
  display: grid;
  gap: 0.55rem;
  max-height: 300px;
  padding: 1rem;
  overflow-y: auto;
}

.chat-message {
  width: fit-content;
  max-width: 88%;
  margin: 0;
  border-radius: 8px;
  padding: 0.7rem 0.8rem;
  background: #f0f3f7;
  color: var(--ink);
  white-space: pre-line;
  font-size: 0.88rem;
  line-height: 1.4;
}

.chat-message.user {
  justify-self: end;
  background: var(--top-blue);
  color: white;
}

.chat-link-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  justify-self: start;
  max-width: 100%;
  border-radius: 999px;
  padding: 0.68rem 0.9rem;
  background: var(--top-blue);
  color: white;
  font-size: 0.86rem;
  font-weight: 800;
  text-decoration: none;
}

.chat-assistant-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  padding: 0 1rem 1rem;
}

.chat-assistant-actions button,
.chat-assistant-form button {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: white;
  color: var(--ink);
  padding: 0.55rem 0.75rem;
  font-weight: 700;
}

.chat-assistant-actions [data-chat-option] {
  width: 100%;
  border-radius: 8px;
  text-align: left;
}

.chat-assistant-actions [data-chat-support],
.chat-assistant-form button {
  border-color: var(--top-blue);
  background: var(--top-blue);
  color: white;
}

.chat-assistant-form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.55rem;
  border-top: 1px solid var(--line);
  padding: 0.85rem 1rem 1rem;
}

.chat-assistant-form input {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.7rem 0.85rem;
  font: inherit;
}

.close-cart {
  float: right;
  font-size: 1.7rem;
}

.cart-panel h2 {
  margin-top: 2.2rem;
  font-size: 2rem;
}

.cart-panel ul {
  list-style: none;
  min-height: 190px;
  margin: 1.5rem 0;
  padding: 0;
}

.cart-panel li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  border-bottom: 1px solid var(--line);
  padding: 0.9rem 0;
  font-weight: 500;
}

.cart-line > div:first-child {
  display: grid;
  gap: 0.32rem;
}

.cart-line > div:last-child {
  display: grid;
  gap: 0.45rem;
  justify-items: end;
  text-align: right;
}

.cart-line span {
  color: var(--muted);
  font-size: 0.88rem;
}

.cart-line button {
  border: 0;
  background: transparent;
  color: var(--top-blue);
  font: inherit;
  font-size: 0.85rem;
  font-weight: 700;
  cursor: pointer;
}

.cart-line-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: flex-end;
}

.cart-panel .empty {
  color: var(--muted);
  font-weight: 600;
}

.cart-summary {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin: 0 0 1rem;
  padding: 1rem 0;
  border-top: 2px solid var(--ink);
  font-size: 1.1rem;
  font-weight: 800;
}

.cart-summary strong {
  color: var(--top-blue);
}

.shipping-meter {
  margin: 1rem 0;
}

.shipping-meter span {
  display: block;
  width: 100%;
  height: 8px;
  overflow: hidden;
  border-radius: 99px;
  background: var(--line);
}

.shipping-meter span::after {
  content: "";
  display: block;
  width: var(--progress, 12%);
  height: 100%;
  border-radius: inherit;
  background: var(--red);
  transition: width 0.25s ease;
}

.shipping-meter p {
  margin-top: 0.65rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.checkout {
  width: 100%;
  border-radius: 999px;
  background: var(--ink);
  color: white;
  padding: 1rem;
  font-size: var(--font-button-size);
  font-weight: 500;
  text-transform: uppercase;
}

.checkout:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.footer {
  background: white;
}

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

.benefits div {
  display: grid;
  gap: 0.3rem;
  min-height: 112px;
  padding: 1.4rem;
  border-right: 1px solid var(--line);
}

.benefits strong {
  font-weight: 700;
}

.benefits span {
  color: var(--muted);
  font-size: 0.9rem;
}

.footer-main {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  max-width: var(--page-width);
  margin: auto;
  padding: var(--section-y) var(--page-padding);
}

.footer-credit {
  max-width: var(--page-width);
  margin: 0 auto;
  border-top: 1px solid var(--line);
  padding: 1.1rem var(--page-padding) 1.4rem;
  color: var(--muted);
  font-size: var(--text-sm);
  font-weight: 700;
  text-align: center;
}

.newsletter {
  justify-self: end;
  width: min(520px, 100%);
}

.newsletter label {
  display: block;
  margin-bottom: 0.8rem;
  font-weight: 700;
}

.newsletter div {
  display: flex;
  border: 1px solid var(--line);
  border-radius: 999px;
  overflow: hidden;
  background: var(--paper);
}

.newsletter input {
  min-width: 0;
  flex: 1;
  border: 0;
  background: transparent;
  padding: 1rem 1.2rem;
  outline: 0;
}

.newsletter button {
  background: var(--red);
  color: white;
  padding: 0 1.2rem;
  font-size: var(--font-button-size);
  font-weight: 500;
  text-transform: uppercase;
}

.newsletter button:disabled {
  cursor: wait;
  opacity: 0.72;
}

.newsletter-message {
  margin-top: 0.8rem;
  color: #6b6b6b;
  font-size: 0.95rem;
  font-weight: 700;
}

.newsletter-message[data-state="success"] {
  color: var(--top-blue);
}

.newsletter-message[data-state="error"] {
  color: #b42318;
}

.member-page {
  background: #f7f9fd;
}

.nav-links a[aria-current="page"]::after {
  transform: scaleX(1);
  transform-origin: left;
  background: var(--top-blue);
}

.member-hero {
  display: none;
}

.member-hero-preview-disabled {
  display: grid;
  grid-template-columns: minmax(280px, 0.95fr) minmax(280px, 1.05fr);
  align-items: center;
  gap: clamp(2rem, 6vw, 7rem);
  min-height: min(650px, calc(100vh - 170px));
  padding: clamp(2.4rem, 5vw, 4.7rem) var(--page-padding);
  overflow: hidden;
  background:
    radial-gradient(circle at 86% 8%, rgb(68 215 255 / 22%), transparent 28%),
    linear-gradient(135deg, #ffffff 0 45%, #0c1c3c 45% 100%);
}

.member-hero-copy {
  max-width: 850px;
}

.member-hero h1 {
  margin: 1.2rem 0 1rem;
  font-size: clamp(3.5rem, 7vw, 7.8rem);
  font-weight: 700;
  line-height: 0.92;
  letter-spacing: 0;
  text-transform: uppercase;
}

.member-hero p {
  max-width: 720px;
  color: #444;
  font-size: clamp(1.1rem, 1.6vw, 1.55rem);
  line-height: 1.45;
}

.member-cta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  margin-top: 2rem;
}

.member-cta-row .button {
  background: var(--ink);
  color: white;
}

.member-cta-row span {
  color: var(--top-blue);
  font-weight: 700;
}

.member-hero-art {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 420px;
}

.member-hero-art::before {
  content: "";
  position: absolute;
  width: min(560px, 68vw);
  aspect-ratio: 1;
  border-radius: 999px;
  background: radial-gradient(circle, rgb(18 104 216 / 58%), rgb(31 79 163 / 16) 64%, transparent 70%);
  filter: blur(4px);
}

.member-hero-art img {
  position: relative;
  z-index: 1;
  width: min(520px, 82vw);
  filter: drop-shadow(0 34px 68px rgb(0 0 0 / 38%));
  animation: boxPulse 4s ease-in-out infinite;
}

.member-discovery {
  position: relative;
  min-height: clamp(520px, 53vw, 760px);
  margin: 0 var(--page-padding);
  border-radius: clamp(28px, 5vw, 72px);
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 50%, rgb(255 255 255 / 38%) 0 22%, rgb(255 255 255 / 20%) 34%, transparent 56%),
    #d9efff;
  box-shadow: none;
}

.member-discovery-shadow-backup {
  box-shadow: var(--shadow);
}

.member-discovery::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: radial-gradient(rgb(31 79 163 / 14%) 1px, transparent 1px);
  background-size: 12px 12px;
  opacity: 0.45;
  pointer-events: none;
}

.member-discovery-copy {
  position: absolute;
  z-index: 3;
  inset: 51% auto auto 50%;
  width: min(980px, calc(100% - 2rem));
  text-align: center;
  transform: translate(-50%, -50%);
}

.member-discovery-copy h2 {
  margin: 1rem 0 1rem;
  color: var(--top-blue);
  font-size: clamp(3.2rem, 6.6vw, 7.6rem);
  line-height: 0.95;
  letter-spacing: 0;
  text-transform: uppercase;
  background: linear-gradient(90deg, #1f4fa3 0%, #1268d8 42%, #44d7ff 100%);
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 16px 20px rgb(31 79 163 / 18%));
}

.member-discovery-copy .eyebrow {
  color: #5f6775;
}

.member-discovery-copy p {
  margin-inline: auto;
  max-width: 690px;
  color: #5f6775;
  font-size: clamp(1rem, 1.4vw, 1.25rem);
  line-height: 1.55;
}

.member-discovery-wall {
  position: absolute;
  inset: 0;
  z-index: 2;
}

.member-mobile-reel {
  display: none;
}

.member-drop-slot {
  position: absolute;
  display: grid;
  place-items: end start;
  width: clamp(92px, 10.5vw, 210px);
  aspect-ratio: 1;
  margin: 0;
  border: 1px solid rgb(255 255 255 / 70%);
  border-radius: clamp(14px, 1.4vw, 26px);
  background:
    linear-gradient(180deg, rgb(0 0 0 / 0%) 42%, rgb(0 26 71 / 32%) 100%),
    linear-gradient(145deg, #061532, #1268d8 58%, #44d7ff);
  box-shadow: 0 24px 70px rgb(31 79 163 / 20%);
  transform: translate3d(0, 0, 0);
  animation: floatSlot 7s ease-in-out infinite;
}

.member-drop-slot::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    linear-gradient(150deg, rgb(255 255 255 / 18%), rgb(255 255 255 / 0%) 52%),
    radial-gradient(circle at 38% 28%, rgb(68 215 255 / 76%), transparent 40%);
}

.member-drop-slot span {
  position: relative;
  z-index: 1;
  padding: 1rem;
  color: white;
  font-weight: 700;
}

.member-drop-slot.has-product-photo {
  place-items: stretch;
  background: white;
}

.member-drop-slot.has-product-photo::before {
  background:
    linear-gradient(150deg, rgb(255 255 255 / 16%), rgb(255 255 255 / 0%) 48%),
    linear-gradient(0deg, rgb(0 26 71 / 14%), transparent 42%);
  z-index: 1;
  pointer-events: none;
}

.member-drop-slot.has-product-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.04) contrast(1.02);
}

.slot-1 {
  left: 5%;
  top: -2%;
  width: clamp(120px, 11vw, 225px);
  aspect-ratio: 1.45;
}

.slot-2 {
  left: 24%;
  top: 5.5%;
  width: clamp(150px, 14vw, 275px);
  animation-delay: -1.2s;
}

.slot-3 {
  left: 48.5%;
  top: -4%;
  width: clamp(120px, 12vw, 235px);
  aspect-ratio: 0.86;
  animation-delay: -2.4s;
}

.slot-4 {
  right: 8%;
  top: -1%;
  width: clamp(150px, 14vw, 275px);
  aspect-ratio: 1.18;
  animation-delay: -3.1s;
}

.slot-5 {
  left: -0.5%;
  top: 29%;
  width: clamp(150px, 14vw, 275px);
  animation-delay: -0.6s;
}

.slot-6 {
  right: -1%;
  top: 37%;
  width: clamp(120px, 11vw, 215px);
  animation-delay: -4s;
}

.slot-7 {
  left: -2.2%;
  bottom: -2%;
  width: clamp(105px, 9.5vw, 190px);
  aspect-ratio: 0.72;
  animation-delay: -1.8s;
}

.slot-8 {
  left: 12.5%;
  bottom: 14%;
  width: clamp(110px, 10vw, 200px);
  animation-delay: -2.8s;
}

.slot-9 {
  left: 28%;
  bottom: -6%;
  width: clamp(145px, 13vw, 260px);
  aspect-ratio: 1.16;
  animation-delay: -3.6s;
}

.slot-10 {
  left: 51%;
  bottom: 2.5%;
  width: clamp(125px, 11vw, 220px);
  animation-delay: -4.4s;
}

.slot-11 {
  right: 8%;
  bottom: 13%;
  width: clamp(150px, 14vw, 275px);
  aspect-ratio: 1.18;
  animation-delay: -5.1s;
}

.slot-12 {
  right: -0.5%;
  bottom: -3%;
  width: clamp(105px, 9.5vw, 190px);
  aspect-ratio: 0.78;
  animation-delay: -5.8s;
}

.slot-13 {
  left: 39%;
  top: -9%;
  width: clamp(95px, 9vw, 165px);
  aspect-ratio: 1.9;
  animation-delay: -6.3s;
}

.slot-14 {
  right: 30%;
  bottom: -8%;
  width: clamp(130px, 12vw, 230px);
  aspect-ratio: 1.25;
  animation-delay: -6.8s;
}

.slot-15 {
  right: 2.5%;
  top: 8%;
  width: clamp(92px, 8vw, 155px);
  aspect-ratio: 1.85;
  animation-delay: -7.2s;
}

.member-benefits,
.member-steps {
  padding: var(--section-y) var(--page-padding);
}

.member-plan {
  display: none;
  position: relative;
  place-items: center;
  min-height: clamp(620px, 78vh, 980px);
  margin-top: var(--section-y);
  overflow: hidden;
  background:
    linear-gradient(180deg, rgb(0 0 0 / 18%), rgb(0 0 0 / 12%)),
    url("assets/member-plan-bg.jpg") center / cover no-repeat,
    #061532;
  color: white;
  text-align: center;
}

.member-plan::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgb(255 255 255 / 16%) 1px, transparent 1px);
  background-size: 12px 12px;
  opacity: 0.18;
}

.member-plan::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 44%, transparent 0 32%, rgb(0 0 0 / 14%) 74%),
    linear-gradient(90deg, rgb(0 0 0 / 22%), transparent 22% 78%, rgb(0 0 0 / 22%));
  pointer-events: none;
}

.member-plan-brand {
  position: absolute;
  z-index: 2;
  top: clamp(3rem, 7vh, 5rem);
  left: 50%;
  color: white;
  font-size: clamp(2rem, 3.2vw, 4.6rem);
  font-weight: 700;
  line-height: 1;
  transform: translateX(-50%);
}

.member-price-card {
  position: relative;
  z-index: 2;
  display: grid;
  justify-items: center;
  gap: clamp(1.1rem, 2.5vw, 2rem);
  width: min(1120px, calc(100% - 2rem));
  margin: clamp(4rem, 8vh, 7rem) auto 0;
  padding: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.member-price-card span {
  color: rgb(255 255 255 / 90%);
  font-size: clamp(1.1rem, 2vw, 1.8rem);
  font-weight: 700;
  text-transform: uppercase;
}

.member-price-card strong {
  display: block;
  max-width: 1000px;
  font-size: clamp(5rem, 13vw, 15rem);
  line-height: 0.86;
  letter-spacing: 0;
}

.member-price-card p {
  max-width: 900px;
  color: rgb(255 255 255 / 88%);
  font-size: clamp(1.25rem, 2.2vw, 2rem);
  font-weight: 700;
  line-height: 1.24;
}

.member-price-card .button {
  min-width: min(24rem, 86vw);
  margin-top: clamp(0.8rem, 2vw, 1.8rem);
  background: white;
  color: var(--ink);
  border-color: white;
  font-size: clamp(1rem, 1.7vw, 1.45rem);
}

.member-benefits {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
}

.member-benefits article,
.member-step-list div {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  padding: clamp(1.25rem, 3vw, 2rem);
}

.member-benefits span,
.member-step-list strong {
  color: var(--top-blue);
  font-weight: 700;
}

.member-benefits h3 {
  margin: 2.4rem 0 0.8rem;
  font-size: clamp(1.6rem, 2.4vw, 2.7rem);
  line-height: 1;
  letter-spacing: -0.03em;
}

.member-benefits p,
.member-step-list span {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.5;
}

.member-benefit-story {
  display: grid;
  grid-template-columns: minmax(320px, 0.95fr) minmax(360px, 1.05fr);
  align-items: center;
  gap: clamp(3rem, 7vw, 8rem);
  padding: clamp(3rem, 7vw, 7rem) var(--page-padding);
  background: white;
  overflow: hidden;
}

.member-benefit-photos {
  position: relative;
  min-height: clamp(470px, 45vw, 760px);
}

.member-benefit-photo {
  position: absolute;
  margin: 0;
  overflow: hidden;
  border-radius: clamp(20px, 2vw, 34px);
  background: #05070d;
  box-shadow: 0 30px 80px rgb(4 12 28 / 18%);
}

.member-benefit-photo.main {
  right: 2%;
  top: 0;
  width: min(72%, 520px);
  height: 88%;
  transform: rotate(3deg);
}

.member-benefit-photo.front {
  left: 2%;
  bottom: 7%;
  z-index: 2;
  width: min(48%, 360px);
  height: 55%;
  transform: rotate(-2deg);
}

.member-benefit-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.member-benefit-photo.main img {
  object-fit: contain;
  padding: clamp(1.4rem, 3vw, 3rem);
}

.member-benefit-content {
  display: grid;
  gap: clamp(2rem, 4vw, 3.5rem);
}

.member-benefit-content h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(2.8rem, 5.6vw, 6.7rem);
  line-height: 0.95;
  letter-spacing: -0.025em;
}

.member-benefit-content h2 span {
  position: relative;
  display: inline-block;
  color: var(--ink);
}

.member-benefit-content h2 span::after {
  content: "";
  position: absolute;
  left: 4%;
  right: 2%;
  bottom: -0.08em;
  height: 0.08em;
  border-radius: 999px;
  background: var(--top-blue);
}

.member-benefit-list {
  display: grid;
  gap: 0.85rem;
}

.member-benefit-list article {
  display: grid;
  gap: 0.35rem;
  padding: clamp(1rem, 2vw, 1.45rem);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
}

.member-benefit-list strong {
  color: var(--top-blue);
  font-size: clamp(1.05rem, 1.4vw, 1.35rem);
  line-height: 1.1;
}

.member-benefit-list p {
  margin: 0;
  color: var(--ink);
  font-size: clamp(0.98rem, 1.15vw, 1.16rem);
  line-height: 1.35;
}

.member-delivery {
  padding: clamp(2.2rem, 4.4vw, 3.6rem) 0 clamp(2.5rem, 4.6vw, 4rem);
  overflow: hidden;
  background: white;
}

.member-delivery-heading {
  width: min(960px, calc(100% - (var(--page-padding) * 2)));
  margin: 0 auto clamp(1.5rem, 3vw, 2.2rem);
  text-align: center;
}

.member-delivery-heading h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.95rem, 3.9vw, 4.1rem);
  line-height: 0.94;
  letter-spacing: -0.02em;
}

.member-delivery-heading h2 span {
  color: var(--top-blue);
}

.member-delivery-heading p {
  margin: clamp(0.75rem, 1.5vw, 1.05rem) auto 0;
  max-width: 760px;
  color: var(--ink);
  font-size: clamp(0.95rem, 1.05vw, 1.18rem);
  line-height: 1.25;
}

.member-delivery-heading p::first-line {
  font-weight: 700;
}

.member-delivery-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(190px, 18vw);
  gap: clamp(0.85rem, 1.1vw, 1.25rem);
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  padding: 0 var(--page-padding) 1rem;
  scroll-snap-type: x mandatory;
}

.member-delivery-track figure {
  position: relative;
  height: clamp(270px, 29vw, 430px);
  min-height: clamp(270px, 29vw, 430px);
  margin: 0;
  overflow: hidden;
  border-radius: clamp(18px, 1.8vw, 30px);
  background: #071022;
  scroll-snap-align: start;
}

.member-delivery-track figure::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgb(0 0 0 / 8%), transparent 38%),
    linear-gradient(0deg, rgb(0 0 0 / 20%), transparent 44%);
  pointer-events: none;
}

.member-delivery-track img,
.member-delivery-track video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.02) contrast(1.02);
  transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.member-delivery-track figure:hover img,
.member-delivery-track figure:hover video {
  transform: scale(1.045);
}

.member-steps {
  display: block;
  background: white;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  text-align: center;
}

.member-steps-heading {
  margin: 0 auto clamp(3.4rem, 7vw, 6rem);
}

.member-steps-heading h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(2.4rem, 5.4vw, 6.4rem);
  line-height: 0.95;
  letter-spacing: -0.02em;
}

.member-steps-heading h2 span {
  color: var(--top-blue);
}

.member-step-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(1.5rem, 4vw, 4rem);
}

.member-step-list div {
  display: grid;
  justify-items: center;
  gap: clamp(1.6rem, 3vw, 2.8rem);
  padding: 0;
  border: 0;
  background: transparent;
}

.member-step-list strong {
  display: block;
  color: var(--ink);
  font-size: clamp(4.2rem, 8.2vw, 9rem);
  line-height: 0.8;
  letter-spacing: -0.03em;
  background: transparent;
}

.member-step-list span {
  color: var(--ink);
  font-size: clamp(1.25rem, 2.2vw, 3rem);
  font-weight: 700;
  line-height: 1.05;
}

.member-subscribe-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  margin-top: clamp(2.8rem, 5vw, 4.6rem);
  padding: 0.95rem 2.2rem;
  border-radius: 999px;
  background: var(--top-blue);
  color: white;
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 18px 36px rgb(18 104 216 / 22%);
}

@media screen and (max-width: 860px) {
  .member-benefit-story {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .member-benefit-photos {
    min-height: 520px;
  }

  .member-benefit-photo.main {
    right: 6%;
    width: 72%;
  }

  .member-benefit-photo.front {
    left: 4%;
    width: 52%;
  }

  .member-step-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 3rem;
  }
}

@media screen and (max-width: 520px) {
  .member-benefit-story {
    padding-block: 3rem;
  }

  .member-benefit-photos {
    min-height: 390px;
  }

  .member-benefit-photo.main {
    width: 78%;
    height: 80%;
  }

  .member-benefit-photo.front {
    width: 58%;
    height: 52%;
  }

  .member-step-list {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

@media screen and (min-width: 1024px) {
  :root {
    --page-padding: 2.25rem;
  }
}

@media screen and (min-width: 1280px) {
  :root {
    --page-padding: 3rem;
  }
}

.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 0.65s ease, transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}

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

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

@keyframes floatSlot {
  0%,
  100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-14px) rotate(1deg); }
}

@keyframes loaderBlueSweep {
  to { background-position: 260px 0, 0 0, 0 0; }
}

@keyframes loaderVideoIn {
  from {
    opacity: 0;
    transform: translate(-50%, -50%) translateY(26px) scale(0.92);
  }
  to {
    opacity: 1;
    transform: translate(-50%, -50%) translateY(0) scale(1);
  }
}

@keyframes loaderMobileSweep {
  to {
    background-position: 160% 0;
  }
}

@keyframes loaderDots {
  0%, 100% { opacity: 0.34; }
  45% { opacity: 0.48; }
  70% { opacity: 0.26; }
}

@keyframes buildShadow {
  0%, 12% { opacity: 0; transform: scaleX(0.5); }
  34%, 100% { opacity: 1; transform: scaleX(1); }
}

@keyframes buildPlate {
  0%, 10% {
    opacity: 0;
    transform: translateY(24px) scaleX(0.86);
  }
  28%, 100% {
    opacity: 1;
    transform: translateY(0) scaleX(1);
  }
}

@keyframes buildBrickIn {
  0%, 18% {
    opacity: 0;
    transform: translateY(-72px) rotate(-4deg) scale(0.78);
  }
  34% {
    opacity: 1;
    transform: translateY(7px) rotate(1deg) scale(1.04);
  }
  44%, 100% {
    opacity: 1;
    transform: translateY(0) rotate(0) scale(1);
  }
}

@keyframes buildSideIn {
  0%, 30% {
    opacity: 0;
    transform: translateY(36px) scale(0.78);
  }
  48%, 100% {
    opacity: 0.92;
    transform: translateY(0) scale(1);
  }
}

@keyframes buildStudDrop {
  0%, 22% {
    opacity: 0;
    transform: translateY(-90px) scale(0.52);
  }
  38% {
    opacity: 1;
    transform: translateY(9px) scale(1.1);
  }
  52%, 100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes buildLineSweep {
  0%, 24% {
    opacity: 0;
    transform: scaleX(0);
  }
  42%, 72% {
    opacity: 1;
    transform: scaleX(1);
  }
  100% {
    opacity: 0.3;
    transform: scaleX(1);
  }
}

@keyframes buildStudPulse {
  0%, 100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
  50% {
    opacity: 0.82;
    transform: translateY(-7px) scale(1.04);
  }
}

@keyframes buildBrickPulse {
  0%, 100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
  50% {
    opacity: 0.9;
    transform: translateY(-5px) scale(1.015);
  }
}

@keyframes loaderImageSwap {
  0% {
    opacity: 0;
    clip-path: inset(0 100% 0 0);
  }
  100% {
    opacity: 1;
    clip-path: inset(0);
  }
}

@keyframes loaderImageDrift {
  from { transform: scale(1.18) translateX(-3%); }
  to { transform: scale(1.04) translateX(0); }
}

@keyframes loaderScan {
  0%, 32% {
    opacity: 0;
    clip-path: inset(0 100% 0 0);
  }
  54% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    clip-path: inset(0);
  }
}

@keyframes brickRise {
  from {
    opacity: 0;
    transform: translateY(22px) scaleX(0.88);
  }
  to {
    opacity: 1;
    transform: translateY(0) scaleX(1);
  }
}

@keyframes studBuild {
  0% {
    opacity: 0;
    transform: translateY(-42px) scale(0.65) rotate(-10deg);
  }
  72% {
    opacity: 1;
    transform: translateY(5px) scale(1.06) rotate(2deg);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1) rotate(0);
  }
}

@keyframes carFloat {
  0%, 100% { translate: 0 0; }
  50% { translate: 0 -18px; }
}

@keyframes wheelSpin {
  to { rotate: 360deg; }
}

@keyframes speed {
  from { transform: translateX(-160px); opacity: 0; }
  25% { opacity: 1; }
  to { transform: translateX(520px); opacity: 0; }
}

@keyframes bob {
  0%, 100% { transform: translateY(0) rotate(2deg); }
  50% { transform: translateY(-20px) rotate(-4deg); }
}

@keyframes boxPulse {
  0%, 100% { transform: rotateX(11deg) rotateY(-18deg) translateY(0); }
  50% { transform: rotateX(7deg) rotateY(-10deg) translateY(-18px); }
}

@keyframes orbit {
  from { transform: rotate(0deg) translateX(300px) rotate(0deg); }
  to { transform: rotate(360deg) translateX(300px) rotate(-360deg); }
}

@keyframes engineTilt {
  0%, 100% { transform: rotateX(10deg) rotateY(-15deg); }
  50% { transform: rotateX(2deg) rotateY(15deg); }
}

@keyframes floatBrick {
  0%, 100% { transform: translateY(0) rotate(0); }
  50% { transform: translateY(-28px) rotate(10deg); }
}

@media (max-width: 1160px) {
  :root {
    --page-padding: 1.25rem;
  }

  .loader-video-wrap {
    top: 52%;
    width: min(34rem, 62vw, 66vh);
    min-width: 280px;
  }

  .topbar {
    grid-template-columns: 1fr;
    justify-items: center;
    min-height: 76px;
    padding-block: 0.75rem;
  }

  .socials,
  .region {
    display: none;
  }

  .topbar-message {
    width: 100%;
    justify-content: space-between;
    gap: 1.5rem;
    font-size: var(--text-sm);
    overflow: hidden;
  }

  .topbar-message span {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .nav {
    grid-template-columns: 64px minmax(0, 1fr) auto;
    min-height: 116px;
  }

  .mobile-menu-button {
    grid-column: 1;
    grid-row: 1;
    display: grid;
    justify-self: start;
    color: var(--ink);
  }

  .mobile-menu-button span {
    width: 26px;
    height: 2px;
    background: currentColor;
    margin: 3px 0;
  }

  .brand {
    grid-column: 2;
    grid-row: 1;
    justify-self: center;
  }

  .nav-actions {
    grid-column: 3;
    grid-row: 1;
    justify-self: end;
    gap: 0.75rem;
  }

  .nav-links {
    position: fixed;
    left: 1rem;
    right: 1rem;
    top: 136px;
    display: grid;
    justify-content: stretch;
    gap: 0;
    padding: 0.8rem;
    border-radius: 8px;
    background: white;
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: 0.25s ease;
  }

  .mobile-menu-close {
    display: grid;
    place-items: center;
    justify-self: end;
    width: 38px;
    height: 38px;
    margin: 0 0 0.35rem;
    border: 0;
    border-radius: 50%;
    background: #101010;
    color: white;
    cursor: pointer;
    font: 700 1.5rem/1 var(--font-ui);
  }

  .nav-links.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .nav-links a {
    padding: 1rem;
    border-bottom: 1px solid var(--line);
  }

  .search-trigger {
    display: grid;
  }

  .user-trigger {
    display: none;
  }

  .hero-slide,
  .catalog-hero,
  .member-hero,
  .product-layout,
  .product-story,
  .community,
  .mystery,
  .member-steps,
  .faq,
  .footer-main {
    grid-template-columns: 1fr;
  }

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

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

  .product-video-card {
    width: 100%;
    max-width: 100%;
    min-height: 300px;
  }

  .product-video-card.horizontal {
    min-height: 0;
    aspect-ratio: 16 / 9;
  }

  .hero-slide {
    align-content: end;
  }

  .hero-visual {
    min-height: 260px;
    width: 70vw;
    right: 0.5rem;
    bottom: 7rem;
  }

  .hero-video-media {
    width: min(680px, 72vw);
    max-height: 360px;
  }

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

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

  .catalog-toolbar .tabs {
    justify-content: flex-start;
  }

  .product-buybox {
    position: static;
  }

  .product-gallery-stage,
  .product-page-fallback {
    min-height: min(56vh, 520px);
  }

  .product-gallery-stage img,
  .product-gallery-stage video {
    height: min(56vh, 520px);
  }

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

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

  .member-hero {
    min-height: auto;
    padding: clamp(3rem, 8vw, 5rem);
  }

  .member-hero-art {
    min-height: 420px;
  }

  .member-hero-art img {
    max-width: min(30rem, 88vw);
  }

  .member-discovery {
    min-height: 820px;
  }

  .member-discovery-copy {
    width: min(680px, calc(100% - 3rem));
  }

  .member-drop-slot {
    width: clamp(92px, 18vw, 210px);
  }

  .member-price-card {
    align-items: center;
    justify-items: center;
    text-align: center;
  }

  .member-benefits {
    grid-template-columns: 1fr;
  }

  .newsletter {
    justify-self: stretch;
  }
}

@media (max-width: 640px) {
  :root {
    --mobile-edge: clamp(0.95rem, 4vw, 1.25rem);
    --mobile-header-h: clamp(92px, 26vw, 118px);
  }

  .loader-video-wrap {
    top: 54%;
    width: min(27rem, 82vw);
    min-width: 0;
    aspect-ratio: 900 / 384;
    overflow: hidden;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .loader-video-wrap::before {
    content: none;
  }

  .loader-mobile-loop {
    position: absolute;
    inset: 0;
    display: block;
  }

  .loader-mobile-loop img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
  }

  .loader-video-wrap::after {
    content: none;
  }

  .loader-video {
    display: none;
  }

  .loader-copy {
    left: 50%;
    top: calc(54% - 11.4rem);
    width: min(86vw, 34rem);
    text-align: center;
    transform: translateX(-50%);
  }

  .loader-copy strong {
    font-size: clamp(2.15rem, 12vw, 3.4rem);
  }

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

  .media-viewer {
    grid-template-columns: 1fr;
  }

  .product-detail-art {
    min-height: 260px;
  }

  .product-detail-copy .button {
    justify-self: stretch;
  }

  .nav {
    position: relative;
    grid-template-columns: clamp(38px, 10vw, 44px) 1fr clamp(62px, 18vw, 82px);
    min-height: var(--mobile-header-h);
    padding: 0 var(--mobile-edge);
  }

  .nav > .brand {
    position: absolute;
    grid-column: 1 / -1;
    grid-row: 1;
    justify-self: stretch;
    left: 50%;
    top: 50%;
    width: auto;
    max-width: none;
    font-size: clamp(2rem, 7vw, 2.65rem);
    letter-spacing: -0.085em;
    text-align: center;
    transform: translate(-50%, -50%);
    white-space: nowrap;
    z-index: 1;
  }

  .footer-brand {
    position: static;
    left: auto;
    top: auto;
    max-width: none;
    font-size: 2rem;
    text-align: left;
    transform: none;
    white-space: normal;
  }

  .mobile-menu-button {
    width: clamp(29px, 7.4vw, 34px);
    height: clamp(29px, 7.4vw, 34px);
    z-index: 2;
  }

  .mobile-menu-button span {
    width: clamp(18px, 4.8vw, 22px);
    height: 2px;
    margin: clamp(2px, 0.7vw, 3px) 0;
  }

  .topbar {
    min-height: clamp(62px, 16vw, 78px);
    padding: 0 var(--mobile-edge);
  }

  .topbar-message {
    align-items: center;
    gap: 1rem;
    font-size: clamp(0.8rem, 3.3vw, 1rem);
    font-weight: 400;
    letter-spacing: 0.035em;
    line-height: 1.15;
    text-align: left;
  }

  .topbar-message button {
    flex: 0 0 auto;
    width: 1.75rem;
    font-size: 1.65rem;
    line-height: 1;
  }

  .topbar-message span {
    white-space: normal;
  }

  .nav-actions {
    position: absolute;
    right: var(--mobile-edge);
    top: 50%;
    z-index: 3;
    gap: clamp(0.04rem, 0.8vw, 0.18rem);
    transform: translateY(-50%);
  }

  .nav-links {
    top: calc(clamp(62px, 16vw, 78px) + var(--mobile-header-h) + 0.45rem);
  }

  .icon-button {
    width: clamp(29px, 7.4vw, 34px);
    height: clamp(29px, 7.4vw, 34px);
  }

  .search-icon {
    width: clamp(17px, 4.7vw, 21px);
    height: clamp(17px, 4.7vw, 21px);
    border-width: 2px;
  }

  .search-icon::after {
    width: 9px;
    height: 2px;
    right: -6px;
    bottom: 0;
  }

  .cart-icon {
    width: clamp(20px, 5.2vw, 24px);
    height: clamp(20px, 5.2vw, 24px);
    border-radius: 50%;
    background: white url("assets/cart-product-icon.png") center / 72% 72% no-repeat;
  }

  .cart-icon::before,
  .cart-icon::after,
  .cart-button::before,
  .cart-button::after {
    content: none;
  }

  .chat-assistant {
    right: var(--mobile-edge);
    bottom: clamp(5.6rem, 18vw, 6.8rem);
    left: var(--mobile-edge);
    width: auto;
  }

  .chat-assistant-panel {
    border-radius: 8px;
  }

  .chat-assistant-messages {
    max-height: min(52vh, 340px);
  }

  .chat-assistant-actions button,
  .chat-assistant-form button {
    padding: 0.5rem 0.68rem;
    font-size: 0.78rem;
  }

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

  .site-search {
    align-items: start;
    padding: calc(clamp(62px, 16vw, 78px) + var(--mobile-header-h) + 0.75rem) var(--mobile-edge) 1rem;
  }

  .site-search-panel {
    gap: 0.8rem;
    border-radius: 8px;
    padding: 1rem;
  }

  .site-search input {
    padding: 0.78rem 0.9rem;
    font-size: 0.95rem;
  }

  .site-search-results {
    max-height: min(56vh, 430px);
  }

  .site-search-results a,
  .site-search-results p {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.28rem;
    padding: 0.8rem 0.85rem;
  }

  .site-search-results strong {
    font-size: 0.98rem;
  }

  .site-search-results span {
    font-size: 0.86rem;
  }

  .cart-icon::before {
    left: 7px;
    top: 9px;
    width: 22px;
    height: 15px;
    border: 2.3px solid currentColor;
    border-top: 2.3px solid currentColor;
    border-radius: 2px 2px 7px 7px;
    transform: skewX(-8deg);
  }

  .cart-icon::after {
    left: 3px;
    top: 3px;
    width: 27px;
    height: 17px;
    border: 0;
    border-top: 2.3px solid currentColor;
    border-left: 2.3px solid currentColor;
    border-radius: 0;
    transform: rotate(8deg);
  }

  .cart-button::before,
  .cart-button::after {
    content: "";
    position: absolute;
    z-index: 2;
    bottom: 4px;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: currentColor;
  }

  .cart-button::before {
    left: 12px;
  }

  .cart-button::after {
    left: 27px;
  }

  .cart-button [data-cart-count] {
    right: -4px;
    bottom: -4px;
    min-width: 18px;
    height: 18px;
    font-size: 0.62rem;
  }

  .hero h1 {
    font-size: clamp(2.05rem, 10.5vw, 4.25rem);
  }

  .cart-button {
    padding: 0;
    font-size: inherit;
  }

  .hero,
  .hero-slider,
  .hero-slide {
    min-height: clamp(520px, 142vw, 660px);
  }

  .hero {
    padding-inline: clamp(0.45rem, 2vw, 0.75rem);
  }

  .hero-slide {
    inset-inline: clamp(0.45rem, 2vw, 0.75rem);
    border-radius: clamp(18px, 5vw, 24px);
    padding: clamp(1.5rem, 5vw, 2.2rem) clamp(1.1rem, 4vw, 1.5rem) clamp(6rem, 18vw, 7.4rem);
  }

  .hero h1 {
    position: absolute;
    left: clamp(1.15rem, 4vw, 1.5rem);
    right: clamp(1.15rem, 4vw, 1.5rem);
    bottom: clamp(3.85rem, 10.8vw, 4.75rem);
    max-width: calc(100% - 0.35rem);
    font-size: clamp(1.31rem, 6.45vw, 2.33rem);
    line-height: 1;
    letter-spacing: 0;
    text-align: left;
  }

  .hero .button {
    left: clamp(1.15rem, 4vw, 1.5rem);
    right: clamp(1.15rem, 4vw, 1.5rem);
    bottom: clamp(0.05rem, 0.8vw, 0.45rem);
    min-width: 0;
    width: auto;
    min-height: clamp(38px, 10vw, 46px);
    border-width: 1.6px;
    font-size: clamp(0.63rem, 2.52vw, 0.76rem);
    margin-top: 0;
  }

  .hero-slide-2jz .button {
    left: clamp(1.15rem, 4vw, 1.5rem);
    right: clamp(1.15rem, 4vw, 1.5rem);
    bottom: clamp(0.05rem, 0.8vw, 0.45rem);
    min-width: 0;
  }

  .hero-visual {
    width: 72vw;
    right: -0.75rem;
    bottom: 10rem;
    min-height: 250px;
  }

  .hero-video-media {
    width: 82vw;
    max-height: 290px;
  }

  .model-car {
    width: 72vw;
    height: 118px;
  }

  .wheel {
    width: 76px;
    height: 76px;
    border-width: 13px;
  }

  .slider-controls {
    left: calc(var(--mobile-edge) + clamp(1.15rem, 4vw, 1.5rem));
    right: calc(var(--mobile-edge) + clamp(1.15rem, 4vw, 1.5rem));
    bottom: clamp(1.85rem, 5.6vw, 2.45rem);
  }

  .slider-controls button {
    font-size: 2.3rem;
  }

  .section-heading {
    display: block;
  }

  .product-section {
    padding-bottom: clamp(0.25rem, 1.4vw, 0.55rem);
  }

  .community {
    padding-top: clamp(0.25rem, 1.4vw, 0.55rem);
    padding-bottom: clamp(0.3rem, 1.8vw, 0.65rem);
  }

  .community-copy p {
    margin-top: 0.25rem;
    margin-bottom: 0;
    line-height: 1.28;
  }

  .tabs {
    margin-top: 1.2rem;
  }

  .catalog-grid,
  .collection-grid,
  .benefits,
  .reel-grid {
    grid-template-columns: 1fr;
  }

  .video-wall .reel-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: clamp(132px, 34vw, 178px);
    grid-auto-flow: dense;
    gap: clamp(0.75rem, 3vw, 1rem);
  }

  .video-wall .reel {
    min-height: 0;
    border-radius: 8px;
    background: #050505;
    box-shadow: inset 0 0 0 1px rgb(255 255 255 / 8%);
    isolation: isolate;
  }

  .video-wall .reel-video-media {
    inset: 1px;
    width: calc(100% - 2px);
    height: calc(100% - 2px);
    border-radius: 7px;
    background: #050505;
  }

  .video-wall .reel.tall {
    grid-row: span 2;
  }

  .video-wall .reel.wide {
    grid-column: 1 / -1;
    grid-row: span 1;
  }

  .video-wall .reel::before,
  .video-wall .reel::after {
    content: none;
  }

  .video-wall .reel span {
    inset: 1px;
    border-radius: 7px;
    background: linear-gradient(180deg, rgb(0 0 0 / 12%), rgb(0 0 0 / 72%));
  }

  .video-wall .reel strong {
    left: clamp(0.8rem, 3vw, 1rem);
    bottom: clamp(0.7rem, 2.7vw, 0.95rem);
    font-size: clamp(0.92rem, 3.7vw, 1.16rem);
    line-height: 1.05;
  }

  .product-section .product-grid {
    --product-mobile-gap: clamp(1.45rem, 6vw, 2rem);
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: var(--product-mobile-gap);
    row-gap: clamp(2rem, 7vw, 2.7rem);
  }

  .product-section .product-art {
    border-radius: clamp(7px, 2.2vw, 10px);
  }

  .product-section .quick-add {
    left: 0.4rem;
    right: 0.4rem;
    bottom: 3.55rem;
    min-height: 40px;
    padding: 0.56rem 0.45rem;
    font-size: clamp(0.58rem, 2.45vw, 0.72rem);
    line-height: 1.05;
  }

  .product-section .product-card h3 {
    margin-top: 0.75rem;
    font-size: clamp(1rem, 4.2vw, 1.25rem);
    line-height: 1.05;
  }

  .product-section .product-card p {
    font-size: clamp(0.9rem, 3.6vw, 1.05rem);
  }

  .home-catalog-cta {
    margin-top: clamp(1.4rem, 5vw, 2rem);
    padding-bottom: clamp(1rem, 4vw, 1.45rem);
  }

  .home-catalog-card {
    min-height: clamp(74px, 22vw, 92px);
  }

  .home-catalog-card span {
    font-size: clamp(1.7rem, 9vw, 2.55rem);
  }

  .community .build-strip {
    position: relative;
    grid-auto-columns: min(76vw, 360px);
    gap: clamp(0.95rem, 4vw, 1.25rem);
    margin-top: -0.85rem;
    padding: 1.15rem 0 0;
    scroll-padding-left: 0;
    scrollbar-color: rgb(17 17 17 / 22%) transparent;
  }

  .community .build-strip::before {
    content: "Desliza para ver mas  ->";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--blue);
    font-size: clamp(0.78rem, 3.3vw, 0.92rem);
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
  }

  .member-delivery-track {
    position: relative;
    padding-top: 1.15rem;
  }

  .member-delivery-track::before {
    content: "Desliza para ver mas  ->";
    position: absolute;
    left: var(--page-padding);
    top: 0;
    color: var(--blue);
    font-size: clamp(0.78rem, 3.3vw, 0.92rem);
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
  }

  .community .build-strip a {
    min-height: clamp(290px, 76vw, 390px);
  }

  .mystery {
    min-height: auto;
    gap: clamp(0.35rem, 2vw, 0.8rem);
    padding: clamp(2.15rem, 7vw, 3rem) var(--page-padding) clamp(2.35rem, 8vw, 3.25rem);
  }

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

  .mystery.reveal:not(.visible) {
    background: var(--ink);
  }

  .mystery.reveal .mystery-art,
  .mystery.reveal .mystery-copy {
    opacity: 0;
    transform: translateY(34px);
    transition: opacity 0.65s ease, transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
  }

  .mystery.reveal.visible .mystery-art,
  .mystery.reveal.visible .mystery-copy {
    opacity: 1;
    transform: translateY(0);
  }

  .mystery-art {
    min-height: clamp(330px, 88vw, 430px);
  }

  .mystery-box-image {
    width: min(82vw, 390px);
  }

  .floating-bricks i {
    width: clamp(48px, 14vw, 70px);
    height: clamp(22px, 6.5vw, 32px);
    border-radius: 7px;
  }

  .floating-bricks i:nth-child(1) { left: 3%; top: 12%; }
  .floating-bricks i:nth-child(2) { right: 7%; top: 16%; }
  .floating-bricks i:nth-child(3) { left: 16%; bottom: 14%; }
  .floating-bricks i:nth-child(4) { right: 13%; bottom: 16%; }
  .floating-bricks i:nth-child(5) { left: 46%; top: 4%; }

  .mystery-copy h2 {
    font-size: clamp(3rem, 14vw, 4.8rem);
  }

  .mystery-copy p {
    margin-top: 0.75rem;
    font-size: 0.95rem;
    line-height: 1.45;
  }

  .home-motor-carousel .related-products-track {
    grid-auto-flow: row;
    grid-auto-columns: initial;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(1.6rem, 6vw, 2.2rem) clamp(1.05rem, 4.5vw, 1.45rem);
    overflow: visible;
    padding-bottom: 0;
  }

  .home-motor-carousel {
    margin-top: clamp(0.15rem, 1.4vw, 0.55rem);
    margin-bottom: clamp(0.25rem, 1.4vw, 0.55rem);
  }

  .faq {
    padding-top: clamp(0.35rem, 1.6vw, 0.75rem);
    gap: clamp(1rem, 4vw, 1.45rem);
  }

  .faq .section-heading.compact {
    gap: clamp(0.55rem, 2.5vw, 0.9rem);
  }

  .home-motor-carousel .related-products-heading {
    align-items: start;
    gap: 1rem;
  }

  .home-motor-carousel .related-products-heading div {
    display: none;
  }

  .home-motor-card a {
    gap: 0.58rem;
  }

  .home-motor-card strong {
    padding-inline: 0;
    font-size: clamp(0.98rem, 4vw, 1.22rem);
    line-height: 1.05;
  }

  .home-motor-card small {
    font-size: clamp(0.9rem, 3.7vw, 1.05rem);
  }

  .home-motor-add {
    position: absolute;
    top: calc(((100vw - (var(--page-padding) * 2) - clamp(1.05rem, 4.5vw, 1.45rem)) / 2) - 2.9rem);
    right: 0.35rem;
    bottom: auto;
    left: auto;
    display: grid;
    place-items: center;
    width: clamp(38px, 10.5vw, 46px);
    min-width: 0;
    height: clamp(38px, 10.5vw, 46px);
    min-height: 0;
    border: 2px solid rgb(255 255 255 / 88%);
    border-radius: 50%;
    background: white url("assets/cart-product-icon.png") center / 58% auto no-repeat;
    color: transparent;
    padding: 0;
    font-size: 0;
    opacity: 1;
    transform: none;
    box-shadow: 0 12px 24px rgb(0 0 0 / 20%);
  }

  .catalog-hero h1 {
    font-size: clamp(3.3rem, 17vw, 5.6rem);
  }

  .member-hero {
    padding: 2.4rem 1.35rem;
    border-radius: 22px;
  }

  .member-hero h1 {
    position: static;
    max-width: 100%;
    font-size: clamp(3rem, 16vw, 5rem);
  }

  .member-hero p {
    font-size: 1rem;
  }

  .member-cta-row {
    align-items: stretch;
    flex-direction: column;
  }

  .member-hero-art {
    min-height: 320px;
  }

  .member-discovery {
    min-height: clamp(680px, 166vw, 760px);
    margin-inline: var(--page-padding);
    border-radius: 28px;
  }

  .member-discovery.reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .member-discovery-blue-test {
    background:
      radial-gradient(circle at 50% 16%, rgb(68 215 255 / 34%) 0 18%, transparent 44%),
      linear-gradient(180deg, var(--top-blue) 0%, #1268d8 58%, #0b3f91 100%);
  }

  .member-discovery-blue-test::before {
    background-image: radial-gradient(rgb(255 255 255 / 16%) 1px, transparent 1px);
    opacity: 0.52;
  }

  .member-discovery-copy {
    inset: clamp(0.85rem, 3vw, 1.15rem) auto auto 50%;
    width: min(335px, calc(100% - 2.1rem));
    transform: translateX(-50%);
  }

  .member-discovery-blue-test .member-discovery-copy .eyebrow,
  .member-discovery-blue-test .member-discovery-copy p {
    color: rgb(255 255 255 / 86%);
  }

  .member-discovery-blue-test .member-discovery-copy .eyebrow::before {
    background: rgb(255 255 255 / 88%);
  }

  .member-discovery-copy h2 {
    margin-block: 0.55rem;
    font-size: clamp(2.65rem, 12.2vw, 4rem);
    line-height: 0.9;
  }

  .member-discovery-blue-test .member-discovery-copy h2 {
    background: none;
    -webkit-text-fill-color: white;
    color: white;
    filter: drop-shadow(0 16px 18px rgb(0 0 0 / 22%));
  }

  .member-discovery-black-test {
    background:
      radial-gradient(circle at 50% 18%, rgb(18 104 216 / 28%) 0 18%, transparent 43%),
      linear-gradient(180deg, #05070d 0%, #071326 48%, #020409 100%);
  }

  .member-discovery-black-test::before {
    background-image: radial-gradient(rgb(255 255 255 / 10%) 1px, transparent 1px);
    opacity: 0.45;
  }

  .member-discovery-black-test::after {
    content: "";
    position: absolute;
    inset: 0 0 47%;
    z-index: 1;
    pointer-events: none;
    background:
      linear-gradient(112deg, transparent 0 34%, rgb(68 215 255 / 0.48) 35% 35.6%, transparent 37% 100%),
      linear-gradient(70deg, transparent 0 55%, rgb(18 120 209 / 0.55) 56% 56.7%, transparent 58% 100%),
      linear-gradient(145deg, transparent 0 18%, rgb(68 215 255 / 0.24) 19% 19.6%, transparent 21% 100%);
    background-size: 190% 100%, 180% 100%, 210% 100%;
    filter: blur(0.5px);
    opacity: 0.7;
    animation: memberBlueBolts 5.2s linear infinite;
  }

  .member-discovery-black-test .member-discovery-copy .eyebrow,
  .member-discovery-black-test .member-discovery-copy p {
    color: rgb(255 255 255 / 84%);
  }

  .member-discovery-black-test .member-discovery-copy .eyebrow::before {
    background: #44d7ff;
    box-shadow: 0 0 18px rgb(68 215 255 / 72%);
  }

  .member-discovery-black-test .member-discovery-copy h2 {
    background: linear-gradient(90deg, #ffffff 0%, #d9efff 46%, #44d7ff 100%);
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: white;
    filter: drop-shadow(0 16px 20px rgb(0 0 0 / 32%));
  }

  .member-discovery-copy p {
    max-width: 305px;
    font-size: 0.84rem;
    line-height: 1.38;
  }

  .member-discovery-wall {
    inset: auto clamp(0.85rem, 3vw, 1.15rem) clamp(0.85rem, 3vw, 1.15rem);
    top: 50%;
    z-index: 2;
    display: block;
    overflow: hidden;
  }

  .member-drop-slot {
    display: none;
  }

  .member-mobile-reel {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(0.4rem, 2vw, 0.6rem);
    height: 100%;
    overflow: hidden;
    opacity: 1;
    visibility: visible;
    transition: opacity 180ms ease;
  }

  .member-mobile-reel-ready {
    opacity: 1;
  }

  .member-mobile-column {
    min-width: 0;
    overflow: hidden;
    border-radius: 13px;
  }

  .member-mobile-track {
    display: grid;
    gap: 0;
    transform: translate3d(0, 0, 0);
    will-change: transform;
  }

  .member-mobile-column-down .member-mobile-track {
    animation: memberColumnDown 22s linear infinite;
    animation-delay: -7.5s;
  }

  .member-mobile-column-up .member-mobile-track {
    animation: memberColumnUp 22s linear infinite;
    animation-delay: -12s;
  }

  .member-mobile-tile {
    position: relative;
    aspect-ratio: 1;
    margin: 0 0 clamp(0.4rem, 2vw, 0.6rem);
    overflow: hidden;
    border: 1px solid rgb(255 255 255 / 72%);
    border-radius: 13px;
    background: white;
    box-shadow: 0 16px 36px rgb(31 79 163 / 13%);
  }

  .member-mobile-tile::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgb(0 26 71 / 10%), transparent 45%);
    pointer-events: none;
  }

  .member-mobile-tile img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 1;
    filter: none;
  }

  @keyframes memberColumnDown {
    from { transform: translate3d(0, -50%, 0); }
    to { transform: translate3d(0, 0, 0); }
  }

  @keyframes memberColumnUp {
    from { transform: translate3d(0, 0, 0); }
    to { transform: translate3d(0, -50%, 0); }
  }

  @keyframes memberBlueBolts {
    from { background-position: 130% 0, -70% 0, 160% 0; }
    to { background-position: -70% 0, 130% 0, -60% 0; }
  }

  .member-benefits,
  .member-steps {
    padding-block: 3.5rem;
  }

  .member-plan {
    min-height: 600px;
    padding: 2rem 1.25rem;
  }

  .member-plan-brand {
    top: 2.4rem;
    font-size: clamp(1.9rem, 9vw, 3.1rem);
  }

  .member-price-card {
    width: 100%;
    margin-top: 3.8rem;
    padding: 0;
  }

  .member-price-card strong {
    font-size: clamp(4rem, 21vw, 7rem);
  }

  .member-price-card p {
    font-size: 1.05rem;
    font-weight: 700;
  }

  .member-price-card .button {
    min-width: min(19rem, 84vw);
  }

  .product-template {
    padding-top: 1.2rem;
  }

  .product-breadcrumb {
    font-size: 0.7rem;
  }

  .product-gallery-stage,
  .product-page-fallback {
    min-height: 340px;
  }

  .product-gallery-stage img,
  .product-gallery-stage video {
    height: 340px;
    padding: 0.75rem;
  }

  .product-buybox {
    padding: 1rem;
  }

  .product-buybox h1 {
    max-width: 100%;
    font-size: clamp(3rem, 16vw, 4.8rem);
  }

  .product-video-media {
    grid-template-columns: 1fr;
    width: 100%;
    max-width: 100%;
  }

  .product-video-card {
    width: 100%;
    max-width: 100%;
    min-height: 0;
  }

  .product-video-card.image-card,
  .product-video-card.video-card.vertical {
    min-height: 320px;
  }

  .product-video-card.video-card.horizontal {
    aspect-ratio: 16 / 9;
  }

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

  .product-story h2 {
    font-size: clamp(2.8rem, 15vw, 5rem);
  }

  .reel.tall,
  .reel.wide {
    grid-row: auto;
    grid-column: auto;
  }

  .quick-add {
    opacity: 1;
    transform: none;
    bottom: clamp(6.2rem, 17vw, 7.4rem);
  }

  .product-section .quick-add {
    top: calc(((100vw - (var(--page-padding) * 2) - var(--product-mobile-gap)) / 2) * 1.08 - 3rem);
    right: 0.45rem;
    bottom: auto;
    left: auto;
    display: grid;
    place-items: center;
    width: clamp(38px, 10.5vw, 46px);
    min-width: 0;
    height: clamp(38px, 10.5vw, 46px);
    min-height: 0;
    border: 2px solid rgb(255 255 255 / 88%);
    border-radius: 50%;
    padding: 0;
    background: white url("assets/cart-product-icon.png") center / 58% auto no-repeat;
    color: transparent;
    font-size: 0;
    box-shadow: 0 12px 24px rgb(0 0 0 / 20%);
  }

  .product-section .quick-add::before {
    content: none;
  }

  .product-section .quick-add::after {
    content: none;
  }

  .footer-main {
    padding-bottom: 7rem;
  }
}

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

/* REVERSIBLE CATEGORY BACKGROUNDS START
   Remove this block and the collection-card-classicos / collection-card-jdm classes in index.html to restore plain cards. */
.collection-grid a.collection-card-classicos,
.collection-grid a.collection-card-jdm,
.collection-grid a.collection-card-supercars,
.collection-grid a.collection-card-offroad,
.collection-grid a.collection-card-formula,
.collection-grid a.collection-card-motores,
.collection-grid a.collection-card-garajes,
.collection-grid a.collection-card-starwars,
.collection-grid a.collection-card-anime {
  color: white !important;
  text-shadow: 0 1px 14px rgb(0 0 0 / 58%);
  box-shadow: inset 0 0 0 1px rgb(255 255 255 / 18%);
}

.collection-grid a.collection-card-classicos {
  background:
    linear-gradient(90deg, rgb(0 0 0 / 78%), rgb(0 0 0 / 22%) 58%, rgb(0 0 0 / 55%)),
    url("assets/classicos-porsche-vintage.png") center / cover no-repeat !important;
}

.collection-grid a.collection-card-jdm {
  background:
  linear-gradient(90deg, rgb(0 0 0 / 62%), rgb(0 0 0 / 14%) 58%, rgb(0 0 0 / 30%)),
    url("assets/jdm-supra-orange.png") center / cover no-repeat !important;
}

.collection-grid a.collection-card-supercars {
  background:
    linear-gradient(90deg, rgb(0 0 0 / 42%), rgb(0 0 0 / 10%) 58%, rgb(0 0 0 / 24%)),
    url("assets/category-supercars-pagani.png") center / cover no-repeat !important;
}

.collection-grid a.collection-card-offroad {
  background:
    linear-gradient(90deg, rgb(0 0 0 / 36%), rgb(0 0 0 / 8%) 58%, rgb(0 0 0 / 24%)),
    url("assets/category-offroad-suvs.png") center / cover no-repeat !important;
}

.collection-grid a.collection-card-formula {
  background:
    linear-gradient(90deg, rgb(0 0 0 / 52%), rgb(0 0 0 / 12%) 58%, rgb(0 0 0 / 28%)),
    url("assets/category-formula-1.png") center / cover no-repeat !important;
}

.collection-grid a.collection-card-motores {
  background:
    linear-gradient(90deg, rgb(0 0 0 / 50%), rgb(0 0 0 / 12%) 58%, rgb(0 0 0 / 26%)),
    url("assets/category-serie-motores.png") center / cover no-repeat !important;
}

.collection-grid a.collection-card-garajes {
  background:
    linear-gradient(90deg, rgb(0 0 0 / 64%), rgb(0 0 0 / 16%) 58%, rgb(0 0 0 / 34%)),
    url("assets/category-garajes-displays.png") center / cover no-repeat !important;
}

.collection-grid a.collection-card-starwars {
  background:
    linear-gradient(90deg, rgb(0 0 0 / 54%), rgb(0 0 0 / 14%) 58%, rgb(0 0 0 / 34%)),
    url("assets/category-star-wars.png") center / cover no-repeat !important;
}

.collection-grid a.collection-card-anime {
  background:
    linear-gradient(90deg, rgb(0 0 0 / 64%), rgb(0 0 0 / 16%) 58%, rgb(0 0 0 / 34%)),
    url("assets/category-anime-one-piece.png") center / cover no-repeat !important;
}

.collection-grid a.collection-card-classicos::after,
.collection-grid a.collection-card-jdm::after,
.collection-grid a.collection-card-supercars::after,
.collection-grid a.collection-card-offroad::after,
.collection-grid a.collection-card-formula::after,
.collection-grid a.collection-card-motores::after,
.collection-grid a.collection-card-garajes::after,
.collection-grid a.collection-card-starwars::after,
.collection-grid a.collection-card-anime::after {
  display: none !important;
}

.collection-grid a.collection-card-classicos::before,
.collection-grid a.collection-card-jdm::before,
.collection-grid a.collection-card-supercars::before,
.collection-grid a.collection-card-offroad::before,
.collection-grid a.collection-card-formula::before,
.collection-grid a.collection-card-motores::before,
.collection-grid a.collection-card-garajes::before,
.collection-grid a.collection-card-starwars::before,
.collection-grid a.collection-card-anime::before {
  content: "";
  position: absolute;
  left: clamp(1.25rem, 2.526vw, 3rem);
  bottom: clamp(0.85rem, 1.5vw, 1.4rem);
  width: 0;
  height: 0.3rem;
  border-radius: 999px;
  background: var(--blue);
  transition: width 0.25s ease;
}

.collection-grid a.collection-card-classicos:hover,
.collection-grid a.collection-card-classicos:focus-visible,
.collection-grid a.collection-card-jdm:hover,
.collection-grid a.collection-card-jdm:focus-visible,
.collection-grid a.collection-card-supercars:hover,
.collection-grid a.collection-card-supercars:focus-visible,
.collection-grid a.collection-card-offroad:hover,
.collection-grid a.collection-card-offroad:focus-visible,
.collection-grid a.collection-card-formula:hover,
.collection-grid a.collection-card-formula:focus-visible,
.collection-grid a.collection-card-motores:hover,
.collection-grid a.collection-card-motores:focus-visible,
.collection-grid a.collection-card-garajes:hover,
.collection-grid a.collection-card-garajes:focus-visible,
.collection-grid a.collection-card-starwars:hover,
.collection-grid a.collection-card-starwars:focus-visible,
.collection-grid a.collection-card-anime:hover,
.collection-grid a.collection-card-anime:focus-visible {
  color: var(--blue) !important;
}

.collection-grid a.collection-card-classicos:hover::before,
.collection-grid a.collection-card-classicos:focus-visible::before,
.collection-grid a.collection-card-jdm:hover::before,
.collection-grid a.collection-card-jdm:focus-visible::before,
.collection-grid a.collection-card-supercars:hover::before,
.collection-grid a.collection-card-supercars:focus-visible::before,
.collection-grid a.collection-card-offroad:hover::before,
.collection-grid a.collection-card-offroad:focus-visible::before,
.collection-grid a.collection-card-formula:hover::before,
.collection-grid a.collection-card-formula:focus-visible::before,
.collection-grid a.collection-card-motores:hover::before,
.collection-grid a.collection-card-motores:focus-visible::before,
.collection-grid a.collection-card-garajes:hover::before,
.collection-grid a.collection-card-garajes:focus-visible::before,
.collection-grid a.collection-card-starwars:hover::before,
.collection-grid a.collection-card-starwars:focus-visible::before,
.collection-grid a.collection-card-anime:hover::before,
.collection-grid a.collection-card-anime:focus-visible::before {
  width: clamp(3.25rem, 7vw, 7rem);
}
/* REVERSIBLE CATEGORY BACKGROUNDS END */
