/* ============================================
   Marvel Advise — Marvel Brand Theme
   Re-skins the landing page to the iconic
   Marvel red identity. Loaded after landing.css
   so it overrides the blue palette.
   ============================================ */

.landing-marvel {
  /* Brand palette */
  --mv-red: #ec1d24;
  --mv-red-dark: #b3151b;
  --mv-red-deep: #7a0d11;
  --mv-red-light: #ff4d52;
  --mv-red-bright: #ff6b6f;
  --mv-red-glow: rgba(236, 29, 36, 0.4);
  --mv-red-glow-soft: rgba(236, 29, 36, 0.18);
  --mv-bg: #08070a;

  /* Remap the landing design tokens to Marvel red */
  --landing-bg: #08070a;
  --landing-bg-2: #110b0d;
  --landing-bg-3: #1a1012;
  --landing-border: rgba(255, 255, 255, 0.07);
  --landing-border-hover: rgba(236, 29, 36, 0.5);
  --landing-primary: #ec1d24;
  --landing-primary-light: #ff4d52;
  --landing-primary-glow: rgba(236, 29, 36, 0.4);
  --landing-accent: #ff6b6f;
  --landing-accent-glow: rgba(236, 29, 36, 0.22);
}

.landing-marvel.landing-page,
.landing-marvel.landing-redesign {
  background: var(--mv-bg);
}

/* ---- Logo (header) ---- */
.landing-marvel .landing-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  -webkit-text-fill-color: initial;
  background: none;
}

.landing-marvel .landing-logo:hover {
  filter: brightness(1.08);
}

/* Shared logo component (.mv-logo-img / .mv-logo-suffix) lives in marvel-brand.css */

.landing-footer-logo.landing-marvel-flogo {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: #fff;
}

.landing-footer-logo.landing-marvel-flogo .mv-logo-img {
  height: 26px;
}

/* ---- Header CTA / accents ---- */
.landing-marvel .landing-cta-nav,
.landing-marvel .landing-mobile-nav .landing-mobile-cta,
.landing-marvel .landing-mobile-user .landing-mobile-dashboard {
  background: linear-gradient(135deg, var(--mv-red) 0%, var(--mv-red-dark) 100%);
  box-shadow: 0 4px 24px var(--mv-red-glow);
}

.landing-marvel .landing-balance strong,
.landing-marvel .landing-mobile-user .landing-mobile-balance strong {
  color: var(--mv-red-light);
}

/* ---- Hero background: red spotlight + orbs ---- */
.landing-marvel .landing-hero-bg {
  background:
    radial-gradient(ellipse 120% 80% at 50% -10%, rgba(236, 29, 36, 0.38) 0%, rgba(236, 29, 36, 0.08) 25%, transparent 55%),
    radial-gradient(ellipse 80% 60% at 80% 100%, rgba(255, 77, 82, 0.12) 0%, transparent 50%);
}

.landing-marvel .landing-hero-spotlight {
  background: radial-gradient(circle 40% at 50% 35%, rgba(236, 29, 36, 0.18) 0%, transparent 50%);
}

.landing-marvel .landing-hero-orb-1 {
  background: radial-gradient(circle, rgba(236, 29, 36, 0.28) 0%, transparent 65%);
}

.landing-marvel .landing-hero-orb-2 {
  background: radial-gradient(circle, rgba(255, 77, 82, 0.18) 0%, transparent 65%);
}

.landing-marvel .landing-hero-orb-3 {
  background: radial-gradient(circle, rgba(255, 107, 111, 0.14) 0%, transparent 70%);
}

/* ---- Hero text ---- */
.landing-marvel .landing-hero-badge {
  background: rgba(236, 29, 36, 0.14);
  border: 1px solid rgba(236, 29, 36, 0.4);
  color: var(--mv-red-light);
}

@keyframes mvBadgePulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(236, 29, 36, 0.25); }
  50% { opacity: 0.92; box-shadow: 0 0 26px 4px rgba(236, 29, 36, 0.15); }
}

.landing-marvel .landing-hero-badge {
  animation: mvBadgePulse 2.5s ease-in-out infinite;
}

.landing-marvel .landing-hero-title-accent {
  background: linear-gradient(135deg, #ff8a8d 0%, #ff4d52 50%, #ec1d24 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.landing-marvel .landing-hero-title-accent-wrap::after {
  background: linear-gradient(90deg, rgba(236, 29, 36, 0.7), rgba(255, 77, 82, 0.85));
}

.landing-marvel .landing-hero-stat-num {
  color: var(--mv-red-light);
}

.landing-marvel .landing-hero-stat:hover {
  box-shadow: 0 16px 40px rgba(236, 29, 36, 0.18);
  border-color: rgba(236, 29, 36, 0.3);
}

.landing-marvel .landing-hero-scroll-line {
  background: linear-gradient(to bottom, var(--mv-red), transparent);
}

/* ---- Primary buttons ---- */
.landing-marvel .landing-btn-primary {
  background: linear-gradient(135deg, var(--mv-red) 0%, var(--mv-red-dark) 100%);
  box-shadow: 0 8px 32px var(--mv-red-glow);
}

.landing-marvel .landing-btn-primary:hover {
  box-shadow: 0 12px 40px var(--mv-red-glow);
}

.landing-marvel .landing-btn-secondary:hover {
  border-color: rgba(236, 29, 36, 0.45);
}

/* Animated gradient-border glow button */
.landing-marvel .landing-btn-glow {
  background: linear-gradient(90deg, #ec1d24, #ff4d52, #ff6b6f, #ec1d24);
  background-size: 200% 100%;
  box-shadow: 0 4px 24px var(--mv-red-glow);
}

.landing-marvel .landing-btn-glow .landing-btn-primary {
  background: #140a0b;
}

.landing-marvel .landing-btn-glow .landing-btn-primary:hover {
  background: linear-gradient(135deg, rgba(236, 29, 36, 0.95) 0%, var(--mv-red-dark) 100%);
  box-shadow: 0 8px 32px rgba(236, 29, 36, 0.55);
}

.landing-marvel .landing-btn-glow:hover {
  box-shadow: 0 8px 36px rgba(236, 29, 36, 0.55), 0 0 0 1px rgba(255, 77, 82, 0.35);
}

/* ---- Section labels / accents ---- */
.landing-marvel .landing-section-label {
  color: var(--mv-red-light);
}

.landing-marvel .landing-step-icon {
  filter: drop-shadow(0 4px 12px rgba(236, 29, 36, 0.25));
}

.landing-marvel .landing-step:hover,
.landing-marvel .landing-benefit:hover,
.landing-marvel .landing-rate:hover {
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(236, 29, 36, 0.12);
}

.landing-marvel .landing-step::before {
  background: linear-gradient(160deg, rgba(236, 29, 36, 0.08) 0%, transparent 50%);
}

.landing-marvel .landing-steps-timeline::before {
  background: linear-gradient(90deg, transparent, rgba(236, 29, 36, 0.45), rgba(255, 77, 82, 0.3), transparent);
}

/* ---- Rates / packages ---- */
.landing-marvel .landing-rate-silver {
  background: linear-gradient(135deg, var(--mv-red) 0%, var(--mv-red-dark) 100%);
  color: #fff;
}

.landing-marvel .landing-rate-gold {
  background: linear-gradient(135deg, #ff4d52 0%, #ec1d24 100%);
  color: #fff;
}

.landing-marvel .landing-rate-amount {
  color: var(--mv-red-light);
}

.landing-marvel .landing-rate ul li::before {
  color: var(--mv-red-light);
}

.landing-marvel .landing-rate-featured {
  border-color: rgba(236, 29, 36, 0.5);
  background: linear-gradient(160deg, rgba(236, 29, 36, 0.1) 0%, rgba(236, 29, 36, 0.02) 100%);
  box-shadow: 0 0 48px rgba(236, 29, 36, 0.14);
}

.landing-marvel .landing-rate-featured:hover {
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.35), 0 0 60px rgba(236, 29, 36, 0.2);
}

.landing-marvel .landing-package-popular,
.landing-marvel .landing-package-cta {
  background: linear-gradient(135deg, var(--mv-red) 0%, var(--mv-red-dark) 100%);
  box-shadow: 0 4px 16px var(--mv-red-glow);
}

.landing-marvel .landing-package-cta:hover {
  box-shadow: 0 6px 24px rgba(236, 29, 36, 0.5);
}

/* ---- Categories ---- */
.landing-marvel .landing-cat:hover {
  border-color: rgba(236, 29, 36, 0.5);
  background: rgba(236, 29, 36, 0.07);
}

/* ---- CTA section ---- */
.landing-marvel .landing-cta-mesh {
  background:
    radial-gradient(ellipse 80% 50% at 50% 50%, rgba(236, 29, 36, 0.22) 0%, transparent 50%),
    radial-gradient(ellipse 60% 40% at 20% 80%, rgba(255, 77, 82, 0.1) 0%, transparent 45%);
}

.landing-marvel .landing-cta-title {
  text-shadow: 0 0 60px rgba(236, 29, 36, 0.35);
}

@keyframes mvCtaPulse {
  0%, 100% { box-shadow: 0 8px 40px rgba(236, 29, 36, 0.45); }
  50% { box-shadow: 0 12px 56px rgba(236, 29, 36, 0.62), 0 0 80px rgba(255, 77, 82, 0.18); }
}

.landing-marvel .landing-cta-inner .landing-btn-glow:hover {
  animation: mvCtaPulse 1s ease-in-out infinite;
}

/* ---- Footer ---- */
.landing-marvel .landing-footer-logo:hover {
  color: var(--mv-red-light);
}

.landing-marvel .landing-footer-social a:hover {
  background: rgba(236, 29, 36, 0.22);
  color: var(--mv-red-light);
}

.landing-marvel .landing-footer-links a:hover {
  color: var(--mv-red-light);
}
