/* Rebelwrks Endograph Patch 14 — additive only. No public.css overwrite. */
.lum-cursor,
.lum-cursor-trail {
  display: none !important;
  opacity: 0 !important;
  visibility: hidden !important;
}
html, body { cursor: auto !important; }
a, button, [role="button"], .btn-primary, .nav-hamburger, .nav-cta-btn, .nav-portal-btn { cursor: pointer !important; }

.rw-endograph-section {
  position: relative;
  padding: clamp(72px, 8vw, 130px) clamp(18px, 5vw, 72px);
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 101, 0, .12), transparent 34%),
    linear-gradient(180deg, #050505 0%, #090909 54%, #050505 100%);
  border-top: 1px solid rgba(255, 122, 24, .16);
  border-bottom: 1px solid rgba(255, 255, 255, .07);
  overflow: hidden;
}
.rw-endograph-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 52px 52px;
  opacity: .42;
  pointer-events: none;
}
.rw-endograph-wrap {
  position: relative;
  z-index: 1;
  max-width: 1440px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, .48fr) minmax(0, .92fr);
  gap: clamp(28px, 4vw, 64px);
  align-items: center;
}
.rw-endograph-copy {
  min-width: 0;
}
.rw-endograph-kicker {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-sans, Montserrat, sans-serif);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #ff6a00;
  margin-bottom: 18px;
}
.rw-endograph-kicker::before {
  content: '';
  width: 38px;
  height: 2px;
  background: #ff6a00;
  box-shadow: 0 0 18px rgba(255, 106, 0, .55);
}
.rw-endograph-title {
  font-family: var(--font-display, 'Bebas Neue', sans-serif);
  font-size: clamp(54px, 6vw, 104px);
  line-height: .9;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  margin: 0 0 18px;
  color: #f5f2ec;
}
.rw-endograph-title em {
  display: block;
  font-style: normal;
  color: #ff6a00;
  text-shadow: 0 0 18px rgba(255, 106, 0, .32);
}
.rw-endograph-text {
  max-width: 520px;
  font-family: var(--font-body, Poppins, sans-serif);
  color: rgba(245,242,236,.72);
  font-size: 15px;
  line-height: 1.72;
  margin: 0 0 30px;
}
.rw-endograph-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.rw-endograph-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 30px;
  border-radius: 999px;
  font-family: var(--font-sans, Montserrat, sans-serif);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 2.8px;
  text-transform: uppercase;
  color: #120905;
  background: linear-gradient(135deg, #ff5500, #ff9e2b);
  border: 1px solid rgba(255, 199, 120, .8);
  box-shadow: 0 0 24px rgba(255, 106, 0, .28), 0 14px 34px rgba(0,0,0,.34);
}
.rw-endograph-btn--ghost {
  color: #f5f2ec;
  background: rgba(255,255,255,.04);
  border-color: rgba(255,255,255,.16);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.05);
}
.rw-endograph-frame {
  position: relative;
  border-radius: 28px;
  padding: 10px;
  background: linear-gradient(135deg, rgba(255,106,0,.82), rgba(255,255,255,.08), rgba(255,106,0,.28));
  box-shadow: 0 0 40px rgba(255,106,0,.18), 0 26px 90px rgba(0,0,0,.42);
}
.rw-endograph-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 20px;
  object-fit: contain;
  background: #050505;
}
@media (max-width: 900px) {
  .rw-endograph-wrap { grid-template-columns: 1fr; }
  .rw-endograph-copy { text-align: left; }
}
@media (max-width: 560px) {
  .rw-endograph-section { padding: 64px 18px; }
  .rw-endograph-title { font-size: clamp(48px, 14vw, 72px); }
  .rw-endograph-actions { flex-direction: column; }
  .rw-endograph-btn { width: 100%; }
  .rw-endograph-frame { border-radius: 20px; padding: 6px; }
  .rw-endograph-img { border-radius: 15px; }
}
