/* Scoped to .wh-hero — safe to drop alongside other components. */
.wh-hero, .wh-hero *, .wh-hero *::before, .wh-hero *::after { box-sizing: border-box; }
.wh-hero {
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  background: #1f3bff;
  color: #fff;
  position: relative;
  overflow: hidden;
  -webkit-font-smoothing: antialiased;
  line-height: 1.4;
}
.wh-hero a { color: inherit; text-decoration: none; }
.wh-hero img { display: block; max-width: 100%; height: auto; }

.wh-hero__inner {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  padding: 64px 24px 64px;
}
@media (min-width: 1024px) {
  .wh-hero__inner {
    grid-template-columns: 1.05fr 1fr;
    gap: 24px;
    padding: 80px 40px 96px;
  }
}

.wh-hero__col { display: flex; flex-direction: column; justify-content: center; }

.wh-hero__badges { display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 24px; }
.wh-badge {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 8px 16px;
  border-radius: 9999px;
  font-size: 13px; font-weight: 600;
  color: rgba(255,255,255,0.9);
}
.wh-badge__icon { width: 14px; height: 14px; }

.wh-h1 {
  font-size: clamp(40px, 6vw, 64px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0;
  max-width: 16ch;
  color: #fff;
}

.wh-lede {
  margin: 24px 0 0;
  max-width: 56ch;
  font-size: 17px;
  line-height: 1.55;
  color: rgba(255,255,255,0.85);
}
@media (min-width: 768px) { .wh-lede { font-size: 18px; } }

.wh-ctas { margin-top: 40px; display: flex; flex-wrap: wrap; gap: 16px; align-items: center; }
.wh-cta {
  display: inline-flex; align-items: center; justify-content: center;
  height: 52px; padding: 0 24px;
  border-radius: 6px;
  font-size: 15px; font-weight: 700;
  transition: background-color .2s, color .2s, border-color .2s;
  cursor: pointer;
}
.wh-cta--primary { background: #fff; color: #1f3bff; border: 2px solid #fff; }
.wh-cta--primary:hover { background: #f1f4ff; }
.wh-cta--ghost { background: transparent; color: #fff; border: 2px solid #fff; }
.wh-cta--ghost:hover { background: rgba(255,255,255,0.1); }

.wh-hero__art {
  display: flex; align-items: center; justify-content: center;
}
@media (min-width: 1024px) { .wh-hero__art { justify-content: flex-end; } }
.wh-hero__art img { width: 100%; max-width: 420px; object-fit: contain; }

/* Marquee */
.wh-marquee-wrap { padding-bottom: 56px; }
.wh-marquee-heading {
  max-width: 1300px; margin: 0 auto 20px;
  padding: 0 24px;
  font-size: 18px; font-weight: 700; color: #fff;
}
@media (min-width: 1024px) { .wh-marquee-heading { padding: 0 40px; } }

.wh-marquee {
  position: relative; overflow: hidden;
  mask-image: linear-gradient(90deg, transparent 0, #000 6%, #000 94%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 6%, #000 94%, transparent 100%);
}
.wh-marquee__track {
  display: flex;
  width: max-content;
  animation: wh-scroll 40s linear infinite;
}
.wh-marquee:hover .wh-marquee__track { animation-play-state: paused; }

@keyframes wh-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.wh-rating { flex-shrink: 0; padding: 0 32px; }
.wh-rating__row { display: flex; align-items: center; gap: 8px; }
.wh-rating__score { white-space: nowrap; font-size: 15px; font-weight: 700; color: #fff; }
.wh-rating__src { margin-top: 4px; white-space: nowrap; font-size: 14px; color: rgba(255,255,255,0.9); }

.wh-stars { display: inline-flex; gap: 2px; }
.wh-star { width: 14px; height: 14px; }
.wh-star--on { fill: #f5a623; color: #f5a623; }
.wh-star--off { fill: rgba(255,255,255,0.3); color: rgba(255,255,255,0.3); }

@media (prefers-reduced-motion: reduce) {
  .wh-marquee__track { animation: none; }
}


/* ----------- RM ADDED ------------- */
@media (min-width: 1024px) {
    .wh-hero__inner {
        gap: 24px;
        grid-template-columns: 1.55fr 1fr;
        padding: 80px 40px 96px;
    }
}
}
.wh-cta {
    font-size: 20px;
}
.wh-cta--primary {
    font-size: 20px;
    border: none;
}
.wh-cta--primary:hover {
    background: #f1f4ff;
    font-weight: 700;
    text-decoration: none;
}
.wh-cta--ghost {
    font-size: 20px;
}
.wh-cta--ghost:hover {
    background: rgba(255, 255, 255, 0.1);
      font-weight: 700;
    text-decoration: none;
}
