.home { background: #050607; }

.showroom-hero {
  position: relative;
  padding: 28px 0 0;
  overflow: hidden;
  background: radial-gradient(circle at 15% 25%, rgba(237, 23, 39, 0.09), transparent 26rem), #050607;
}

.showroom-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: repeating-linear-gradient(135deg, transparent 0 96px, rgba(255, 255, 255, 0.02) 96px 97px);
}

.hero-shell {
  position: relative;
  width: min(calc(100% - 48px), 1500px);
  min-height: 690px;
  display: grid;
  grid-template-columns: minmax(440px, 0.83fr) minmax(0, 1.17fr);
  margin-inline: auto;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: #090b0d;
  box-shadow: 0 42px 110px rgba(0, 0, 0, 0.58);
}

.hero-copy {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(52px, 6vw, 86px);
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.035), transparent 48%),
    radial-gradient(circle at 20% 10%, rgba(237, 23, 39, 0.13), transparent 42%),
    #0a0c0e;
}

.hero-copy::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(255, 255, 255, 0.055);
  clip-path: polygon(0 0, 100% 0, 100% 76%, 92% 100%, 0 100%);
  pointer-events: none;
}

.hero-copy::after {
  content: "";
  position: absolute;
  top: 0;
  right: -1px;
  bottom: 0;
  width: 2px;
  background: linear-gradient(transparent, var(--red) 23%, var(--red) 77%, transparent);
  box-shadow: 0 0 28px rgba(237, 23, 39, 0.55);
}

.hero-logo {
  position: relative;
  z-index: 1;
  width: min(100%, 430px);
  max-height: 286px;
  margin: -18px 0 20px -18px;
  object-fit: contain;
  object-position: left center;
  filter: drop-shadow(0 30px 32px rgba(0, 0, 0, 0.68)) drop-shadow(0 0 24px rgba(237, 23, 39, 0.16));
}

.hero-copy .eyebrow { position: relative; z-index: 1; }

.hero-copy h1 {
  position: relative;
  z-index: 1;
  max-width: 700px;
  font-size: clamp(3.35rem, 5.2vw, 6.7rem);
}

.hero-copy > p {
  position: relative;
  z-index: 1;
  max-width: 620px;
  margin: 24px 0 0;
  color: #9ca2a7;
  font-size: 0.95rem;
  line-height: 1.8;
}

.hero-actions {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.hero-actions .btn { min-width: 175px; }

.hero-art {
  position: relative;
  min-width: 0;
  min-height: 690px;
  overflow: hidden;
  background: #050607;
}

.hero-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 78% center;
}

.hero-art::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(90deg, #090b0d 0, transparent 20%), linear-gradient(180deg, transparent 66%, rgba(0, 0, 0, 0.6));
}

.hero-art-label {
  position: absolute;
  right: 28px;
  bottom: 24px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.56rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero-art-label::before { content: ""; width: 46px; height: 1px; background: var(--red); }

.hero-rail {
  position: relative;
  width: min(calc(100% - 48px), 1500px);
  min-height: 68px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-inline: auto;
  border-inline: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  background: #080a0c;
}

.hero-rail span {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-right: 1px solid rgba(255, 255, 255, 0.09);
  color: #777d82;
  font-size: 0.58rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.hero-rail span:last-child { border-right: 0; }
.hero-rail b { color: var(--red); }

.featured { background: linear-gradient(180deg, #07090a, #0a0c0e 56%, #070809); }
.product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }

.product-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: #0d0f11;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.38);
  transition: transform 260ms var(--ease), border-color 260ms ease;
}

.product-card::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 2;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--red), transparent);
}

.product-card:hover { transform: translateY(-6px); border-color: rgba(237, 23, 39, 0.5); }
.product-media { position: relative; height: 245px; display: block; overflow: hidden; background: #121518; }
.product-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 700ms var(--ease), filter 300ms ease; }
.product-card:hover .product-media img { transform: scale(1.035); filter: brightness(1.08); }
.product-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 40%, #0d0f11); }
.product-media .status { position: absolute; top: 15px; left: 15px; z-index: 2; }
.media-mechanic img { object-position: 54% center; }
.media-tow img { object-position: center; }
.media-studio img { object-position: 84% center; }

.product-body { padding: 22px; }
.product-heading { display: flex; align-items: start; justify-content: space-between; gap: 18px; }
.product-heading h3 { margin: 0; font-size: 1.05rem; letter-spacing: -0.02em; }
.product-heading small { color: var(--red-hot); font-size: 0.58rem; font-weight: 900; letter-spacing: 0.1em; text-transform: uppercase; }
.product-body p { min-height: 70px; margin: 13px 0 18px; color: #8d9398; font-size: 0.78rem; line-height: 1.7; }
.product-body .tags { margin-bottom: 20px; }
.product-actions { display: flex; gap: 9px; }
.product-actions .btn { flex: 1; min-width: 0; }
.catalog-link { margin-top: 34px; text-align: center; }

.standard { position: relative; background: #050607; }
.standard-stage { position: relative; min-height: 680px; overflow: hidden; border: 1px solid var(--line-bright); background: #080a0c; }
.standard-stage > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; }
.standard-stage::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(4, 5, 6, 0.08) 0 36%, rgba(4, 5, 6, 0.72) 52%, rgba(4, 5, 6, 0.98) 73%); }

.standard-copy {
  position: relative;
  z-index: 2;
  width: min(50%, 630px);
  min-height: 680px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-left: auto;
  padding: 62px;
}

.standard-copy h2 { font-size: clamp(3rem, 5vw, 5.8rem); }
.standard-copy > p { margin: 20px 0 28px; color: #969ca1; line-height: 1.8; }
.standard-list { border-top: 1px solid var(--line); }
.standard-item { display: grid; grid-template-columns: 48px 1fr; gap: 16px; padding: 18px 0; border-bottom: 1px solid var(--line); }
.standard-item > b { color: var(--red); font-size: 1rem; }
.standard-item h3 { margin: 0 0 5px; font-size: 0.78rem; letter-spacing: 0.08em; text-transform: uppercase; }
.standard-item p { margin: 0; color: #747a7f; font-size: 0.71rem; line-height: 1.6; }

.brand-film { padding-top: 0; background: #050607; }
.brand-film-frame { position: relative; min-height: 520px; overflow: hidden; border: 1px solid var(--line-bright); }
.brand-film-frame > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; }
.brand-film-frame::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(2, 3, 4, 0.88) 0, rgba(2, 3, 4, 0.57) 38%, rgba(2, 3, 4, 0.06) 70%); }
.brand-film-copy { position: relative; z-index: 2; width: min(58%, 760px); padding: 70px; }
.brand-film-copy h2 { font-size: clamp(3rem, 4.5vw, 5.3rem); }
.brand-film-copy h2 > span { white-space: nowrap; }
.brand-film-copy p { max-width: 520px; color: #a0a5aa; line-height: 1.8; }

.purchase-path { background: #080a0c; border-block: 1px solid var(--line); }
.flow-rail { position: relative; display: grid; grid-template-columns: repeat(4, 1fr); border: 1px solid var(--line-bright); }
.flow-rail::before { content: ""; position: absolute; top: 49px; right: 11%; left: 11%; height: 1px; background: linear-gradient(90deg, var(--red), rgba(255,255,255,.2), var(--red)); }
.flow-step { position: relative; min-height: 220px; padding: 29px 24px 24px; border-right: 1px solid var(--line); background: linear-gradient(180deg, #141719, #0b0d0f); }
.flow-step:last-child { border-right: 0; }
.flow-step b { position: relative; z-index: 1; width: 42px; height: 42px; display: grid; place-items: center; border: 1px solid rgba(237, 23, 39, 0.55); border-radius: 50%; background: #0d0f11; color: var(--red-hot); font-size: 0.72rem; }
.flow-step h3 { margin: 42px 0 10px; font-size: 0.88rem; letter-spacing: 0.08em; text-transform: uppercase; }
.flow-step p { margin: 0; color: #7e8489; font-size: 0.74rem; line-height: 1.7; }

.closing { background: #050607; }
.closing-panel { position: relative; min-height: 410px; display: grid; grid-template-columns: 0.85fr 1.15fr; overflow: hidden; border: 1px solid rgba(237, 23, 39, 0.34); background: #090b0d; }
.closing-art { width: 100%; height: 100%; object-fit: cover; object-position: left center; filter: brightness(0.58); }
.closing-panel::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, transparent, #090b0d 50%); }
.closing-copy { position: relative; z-index: 2; align-self: center; padding: 58px; }
.closing-copy h2 { font-size: clamp(3rem, 5vw, 5.4rem); }
.closing-copy p { max-width: 580px; color: #92989d; line-height: 1.8; }
.closing-actions { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 25px; }

@media (min-width: 1660px) {
  .hero-shell, .hero-rail { width: min(calc(100% - 96px), 1600px); }
  .hero-shell, .hero-art { min-height: 750px; }
}

@media (max-width: 1120px) {
  .hero-shell { grid-template-columns: minmax(390px, 0.9fr) 1.1fr; min-height: 620px; }
  .hero-art { min-height: 620px; }
  .hero-copy { padding: 48px; }
  .hero-logo { width: 330px; max-height: 230px; }
  .product-grid { grid-template-columns: 1fr 1fr; }
  .product-card:last-child { grid-column: 1 / -1; width: calc(50% - 9px); justify-self: center; }
  .standard-stage, .standard-copy { min-height: 620px; }
  .standard-copy { width: 58%; padding: 46px; }
}

@media (max-width: 860px) {
  .showroom-hero { padding-top: 16px; }
  .hero-shell { width: min(calc(100% - 32px), 1500px); grid-template-columns: 1fr; }
  .hero-copy { min-height: 600px; }
  .hero-copy::after { top: auto; right: 12%; bottom: -1px; left: 12%; width: auto; height: 2px; background: linear-gradient(90deg, transparent, var(--red), transparent); }
  .hero-logo { width: min(100%, 380px); }
  .hero-art { min-height: 390px; }
  .hero-art img { object-position: center; }
  .hero-art::before { background: linear-gradient(180deg, #090b0d 0, transparent 24%, rgba(0,0,0,.25)); }
  .hero-rail { width: min(calc(100% - 32px), 1500px); grid-template-columns: 1fr 1fr; }
  .hero-rail span { min-height: 56px; border-bottom: 1px solid var(--line); }
  .product-grid { grid-template-columns: 1fr; }
  .product-card:last-child { grid-column: auto; width: 100%; }
  .standard-stage { display: flex; flex-direction: column; min-height: 0; }
  .standard-stage > img { position: relative; height: auto; aspect-ratio: 1884 / 835; }
  .standard-stage::after { background: linear-gradient(180deg, transparent 20%, #070809 49%); }
  .standard-copy { width: 100%; min-height: 0; padding: 52px 34px; }
  .brand-film-frame { display: flex; flex-direction: column; min-height: 0; }
  .brand-film-frame > img { position: relative; aspect-ratio: 1884 / 835; }
  .brand-film-frame::after { background: linear-gradient(180deg, transparent 10%, #050607 52%); }
  .brand-film-copy { width: 100%; padding: 48px 34px; }
  .flow-rail { grid-template-columns: 1fr 1fr; }
  .flow-rail::before { display: none; }
  .flow-step:nth-child(2) { border-right: 0; }
  .flow-step:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .closing-panel { grid-template-columns: 1fr; }
  .closing-art { position: absolute; inset: 0; }
  .closing-panel::after { background: rgba(5, 6, 7, 0.82); }
}

@media (max-width: 560px) {
  .hero-copy { min-height: 0; padding: 42px 24px 48px; }
  .hero-logo { width: 280px; max-height: 200px; margin: -10px 0 12px -12px; }
  .hero-copy h1 { font-size: clamp(3.1rem, 15vw, 4.4rem); }
  .hero-copy > p { font-size: 0.86rem; }
  .hero-actions { display: grid; }
  .hero-actions .btn { width: 100%; }
  .hero-art { min-height: 230px; }
  .hero-art img { object-fit: cover; }
  .hero-art-label { right: 16px; bottom: 14px; }
  .hero-rail { grid-template-columns: 1fr; }
  .hero-rail span { justify-content: flex-start; min-height: 46px; padding-inline: 18px; border-right: 0; }
  .product-media { height: 210px; }
  .product-actions { display: grid; }
  .product-body p { min-height: 0; }
  .standard-copy, .brand-film-copy { padding: 40px 22px; }
  .brand-film-copy h2 { font-size: clamp(2.35rem, 11vw, 3.4rem); }
  .standard-item { grid-template-columns: 40px 1fr; }
  .flow-rail { grid-template-columns: 1fr; }
  .flow-step { min-height: 190px; border-right: 0; border-bottom: 1px solid var(--line); }
  .flow-step:last-child { border-bottom: 0; }
  .closing-copy { padding: 42px 24px; }
  .closing-actions { display: grid; }
}
