@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Anton&family=Roboto+Condensed:wght@700;900&display=swap');

:root {
  --cjuw-black: #030303;
  --cjuw-pink: #ff1493;
  --cjuw-cyan: #27d7d2;
  --cjuw-white: #ffffff;
  --cjuw-orange: #ff9900;
}

html { scroll-behavior: smooth; }

.cjuw-header,
.cjuw-header * { box-sizing: border-box; }

.cjuw-header {
  position: relative;
  overflow: hidden;
  min-height: 820px;
  color: var(--cjuw-white);
  background:
    radial-gradient(circle at 17% 36%, rgba(255, 20, 147, .28), transparent 25%),
    radial-gradient(circle at 40% 34%, rgba(39, 215, 210, .23), transparent 26%),
    radial-gradient(circle at 77% 32%, rgba(255, 153, 0, .22), transparent 29%),
    linear-gradient(180deg, rgba(0,0,0,.08), rgba(0,0,0,.6)),
    #000;
  font-family: 'Roboto Condensed', Impact, Arial, sans-serif;
}

.cjuw-header::before {
  content: '';
  position: absolute;
  inset: 72px 0 120px;
  background:
    linear-gradient(180deg, transparent 0%, rgba(0,0,0,.1) 58%, #000 100%),
    repeating-linear-gradient(90deg, transparent 0 42px, rgba(255,255,255,.035) 43px 44px),
    linear-gradient(135deg, rgba(255,20,147,.18), transparent 35%, rgba(39,215,210,.15));
  clip-path: polygon(0 10%, 100% 0, 100% 84%, 0 100%);
  opacity: .9;
  pointer-events: none;
}

.cjuw-header::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 130px;
  height: 180px;
  background: linear-gradient(180deg, transparent, #000 70%);
  pointer-events: none;
}

.cjuw-nav {
  position: relative;
  z-index: 20;
  display: flex;
  align-items: center;
  gap: 28px;
  min-height: 86px;
  padding: 12px clamp(18px, 5vw, 70px);
  background: rgba(0,0,0,.84);
}

.cjuw-logo-link { display: inline-flex; text-decoration: none; }
.cjuw-logo { width: 1px; height: auto; display: block; background: transparent; }

.cjuw-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(16px, 2.3vw, 38px);
  flex: 1;
  padding: 0;
  margin: 0;
  list-style: none;
}

.cjuw-menu a {
  color: var(--cjuw-white);
  font-family: 'Bebas Neue', Impact, sans-serif;
  font-size: 22px;
  letter-spacing: 1px;
  text-decoration: none;
  text-transform: uppercase;
  transition: color .2s ease, text-shadow .2s ease;
}
.cjuw-menu a:hover { color: var(--cjuw-pink); text-shadow: 0 0 12px rgba(255,20,147,.8); }

.cjuw-icons { display: flex; align-items: center; gap: 18px; font-size: 24px; }
.cjuw-cart { position: relative; display: inline-block; }
.cjuw-cart b { position: absolute; top: -12px; right: -10px; width: 18px; height: 18px; border-radius: 50%; background: var(--cjuw-pink); color: #fff; font-size: 11px; line-height: 18px; text-align: center; }

.cjuw-menu-toggle { display: none; width: 44px; height: 40px; border: 1px solid rgba(255,255,255,.25); background: transparent; border-radius: 4px; }
.cjuw-menu-toggle span { display: block; height: 3px; margin: 7px 8px; background: var(--cjuw-white); }

.cjuw-hero {
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: minmax(260px, .9fr) minmax(360px, 1.08fr) minmax(280px, .85fr);
  align-items: end;
  gap: 22px;
  min-height: 630px;
  padding: 10px clamp(18px, 5vw, 70px) 48px;
}

.cjuw-hero-left { position: relative; min-height: 540px; }
.cjuw-logo-space { position: relative; width: 100%; height: 100%; min-height: 540px; }
.cjuw-hero-logo { position: absolute; top: 0; left: 0; width: min(255px, 68%); background: transparent; filter: drop-shadow(0 0 18px rgba(255,20,147,.28)); }
.cjuw-models { position: absolute; left: -32px; bottom: 0; width: min(500px, 118%); max-height: 495px; object-fit: contain; object-position: bottom left; filter: drop-shadow(0 18px 22px rgba(0,0,0,.9)); }

.cjuw-hero-copy { align-self: center; padding-top: 60px; text-transform: uppercase; }
.cjuw-kicker { margin: 0 0 14px; color: #fff; font-size: 24px; font-weight: 900; letter-spacing: 1px; }
.cjuw-hero-copy h1 { margin: 0; font-family: 'Anton', Impact, sans-serif; color: #f4f4f4; font-size: clamp(78px, 8.2vw, 148px); line-height: .89; letter-spacing: 2px; text-shadow: 0 5px 0 rgba(255,255,255,.07), 0 0 1px #000; }
.cjuw-hero-copy strong { display: block; margin: 14px 0 26px; color: var(--cjuw-pink); font-family: 'Bebas Neue', Impact, sans-serif; font-size: clamp(52px, 5.8vw, 92px); line-height: .85; letter-spacing: 2px; transform: skew(-8deg) rotate(-1deg); text-shadow: 0 0 12px rgba(255,20,147,.52); }
.cjuw-cta { display: inline-flex; align-items: center; gap: 18px; padding: 15px 27px; color: #000; background: var(--cjuw-cyan); font-family: 'Bebas Neue', Impact, sans-serif; font-size: 24px; letter-spacing: 1px; text-decoration: none; box-shadow: 8px 8px 0 rgba(255,20,147,.75); transition: transform .2s ease; }
.cjuw-cta:hover { transform: translateY(-3px); }
.cjuw-cta span { font-size: 30px; }

.cjuw-owner-wrap { position: relative; align-self: stretch; min-height: 540px; }
.cjuw-owner-wrap::before { content: ''; position: absolute; right: -20px; bottom: 40px; width: 92%; height: 78%; background: linear-gradient(135deg, rgba(255,153,0,.95), rgba(255,153,0,.15) 42%, rgba(255,255,255,.18)); clip-path: polygon(14% 0, 100% 15%, 83% 100%, 0 78%); filter: blur(.3px); opacity: .8; }
.cjuw-owner { position: absolute; right: -18px; bottom: -30px; width: min(500px, 118%); max-height: 595px; object-fit: contain; object-position: bottom right; background: transparent; filter: drop-shadow(0 22px 20px rgba(0,0,0,.9)); }

.cjuw-brand-ticker { position: relative; z-index: 12; height: 105px; margin-top: -14px; overflow: hidden; border-top: 3px solid var(--cjuw-pink); border-bottom: 3px solid var(--cjuw-pink); background: #030303; transform: rotate(-3.2deg) scaleX(1.04); box-shadow: 0 0 24px rgba(255,20,147,.28); }
.cjuw-ticker-track { display: flex; align-items: center; gap: 70px; width: max-content; height: 100%; animation: cjuw-scroll 24s linear infinite; }
.cjuw-ticker-track img { width: 118px; max-height: 58px; object-fit: contain; filter: brightness(0) invert(1) drop-shadow(0 0 8px rgba(255,255,255,.2)); flex: 0 0 auto; }
@keyframes cjuw-scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

@media (max-width: 1024px) {
  .cjuw-hero { grid-template-columns: 1fr 1fr; align-items: end; }
  .cjuw-hero-copy { grid-column: 1 / -1; grid-row: 1; text-align: center; padding-top: 25px; }
  .cjuw-hero-left { grid-column: 1; }
  .cjuw-owner-wrap { grid-column: 2; }
  .cjuw-menu { position: absolute; top: 86px; left: 0; right: 0; display: none; flex-direction: column; padding: 24px; background: rgba(0,0,0,.97); border-top: 1px solid rgba(255,255,255,.15); }
  .cjuw-menu.is-open { display: flex; }
  .cjuw-menu-toggle { display: block; margin-left: auto; }
  .cjuw-icons { display: none; }
}

@media (max-width: 720px) {
  .cjuw-header { min-height: 1020px; }
  .cjuw-nav { padding: 10px 16px; }
  .cjuw-logo { width: 115px; max-width: 42vw; }
  .cjuw-hero { display: block; min-height: auto; padding: 10px 18px 60px; }
  .cjuw-hero-copy { padding-top: 10px; text-align: left; }
  .cjuw-hero-copy h1 { font-size: 78px; }
  .cjuw-hero-copy strong { font-size: 54px; }
  .cjuw-hero-left, .cjuw-owner-wrap, .cjuw-logo-space { min-height: 350px; }
  .cjuw-hero-logo { width: 150px; }
  .cjuw-models { left: -20px; width: 340px; max-height: 330px; }
  .cjuw-owner { right: -55px; bottom: -40px; width: 360px; max-height: 420px; }
  .cjuw-owner-wrap::before { right: 0; width: 270px; height: 300px; bottom: 20px; }
  .cjuw-brand-ticker { height: 78px; margin-top: -34px; }
  .cjuw-ticker-track { gap: 42px; animation-duration: 18s; }
  .cjuw-ticker-track img { width: 86px; max-height: 42px; }
}
