
#mj-sc-wrap {
  background: #111114;
  padding: 60px 5%;
  position: relative;
  overflow: hidden;
  font-family: 'DM Sans', 'PingFang SC', sans-serif;
  box-sizing: border-box;
  width: 100%;
}
#mj-sc-wrap *, #mj-sc-wrap *::before, #mj-sc-wrap *::after {
  box-sizing: border-box; margin: 0; padding: 0;
}
#mj-sc-wrap::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent 5%, #d93020 30%, #d93020 70%, transparent 95%);
}
.mj-sc-layout {
  display: grid;
  grid-template-columns: 55fr 45fr;
  gap: 64px;
  align-items: center;
  width: 100%;
}

/* Image stage */
.mj-sc-stage {
  position: relative;
  aspect-ratio: 4 / 3;
  background: #1a2530;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  touch-action: pan-y;
  user-select: none;
}
.mj-sc-stage::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0; height: 35%;
  background: linear-gradient(to top, rgba(217,48,32,.07), transparent);
  pointer-events: none; z-index: 1;
}
.mj-sc-badge {
  position: absolute; top: 14px; left: 14px; z-index: 3;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 12px; letter-spacing: .1em;
  background: #d93020; color: #060608;
  padding: 4px 13px; display: none;
}
.mj-sc-img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 30%;
  position: absolute; inset: 0;
  display: none;
  transition: opacity .3s ease;
}
.mj-sc-img.mj-active { display: block; }

/* Arrow buttons */
.mj-sc-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  z-index: 5; background: rgba(6,6,8,.55);
  border: 1px solid rgba(255,255,255,.15);
  color: #f2f0eb; width: 36px; height: 36px;
  display: none; align-items: center; justify-content: center;
  cursor: pointer; border-radius: 50%;
  font-size: 16px; padding: 0;
  transition: background .2s;
  -webkit-tap-highlight-color: transparent;
}
.mj-sc-arrow:hover { background: rgba(217,48,32,.7); }
.mj-sc-arrow.prev { left: 10px; }
.mj-sc-arrow.next { right: 10px; }

.mj-sc-dots {
  position: absolute; bottom: 14px; left: 50%;
  transform: translateX(-50%);
  display: flex; gap: 8px; z-index: 4;
}
.mj-sc-dot {
  width: 28px; height: 28px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; padding: 0; background: none; border: none;
  -webkit-tap-highlight-color: transparent;
}
.mj-sc-dot::after {
  content: '';
  width: 7px; height: 7px; border-radius: 50%;
  background: #2a2a30;
  display: block;
  transition: background .2s;
}
.mj-sc-dot.mj-active::after { background: #ff3d2e; }

/* Text area */
.mj-sc-eyebrow {
  font-size: 11px; font-weight: 500;
  letter-spacing: .22em; text-transform: uppercase;
  color: #ff3d2e; margin-bottom: 16px;
}
.mj-sc-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 64px; line-height: 1;
  text-transform: uppercase; letter-spacing: .02em; color: #f2f0eb;
  white-space: nowrap;
}
.mj-sc-title em { color: #d93020; font-style: italic; display: inline; margin-left: 8px; }
.mj-sc-desc {
  margin-top: 18px; font-size: 14px; line-height: 1.7;
  color: #6b6b75; font-weight: 300;
}

/* Spec table */
.mj-sc-specs {
  margin-top: 32px;
  border: 1px solid rgba(255,255,255,.08);
  border-top: 1px solid rgba(255,255,255,.18);
}
.mj-sc-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom: 1px solid rgba(255,255,255,.08);
  opacity: 0; transform: translateY(12px);
  transition: opacity .55s ease, transform .55s ease;
}
.mj-sc-row:last-child { border-bottom: none; }
.mj-sc-row.mj-in { opacity: 1; transform: translateY(0); }
.mj-sc-cell {
  padding: 20px 24px;
  border-right: 1px solid rgba(255,255,255,.08);
}
.mj-sc-cell:last-child { border-right: none; }
.mj-sc-key {
  font-size: 10px; letter-spacing: .18em;
  text-transform: uppercase; color: #6b6b75; margin-bottom: 8px;
}
.mj-sc-val {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px; color: #f2f0eb;
  letter-spacing: .03em; line-height: 1.15;
}

@media (max-width: 860px) {
  #mj-sc-wrap { padding: 48px 20px; }
  .mj-sc-layout { grid-template-columns: 1fr; gap: 32px; }
  .mj-sc-title { font-size: 52px; }
  .mj-sc-val { font-size: 24px; }
  .mj-sc-cell { padding: 14px 16px; }
  /* Show arrows on mobile for easier navigation */
  .mj-sc-arrow { display: flex !important; }
}
