/* ========================================
   SUPERHERO ACADEMY THEME
   NutraPlanet Scoped Design System
   Theme: np-style-superhero
   
   Design Philosophy:
   - Action-packed empowerment
   - Bold diagonal layouts
   - Comic book aesthetics
   - "Food is Power" messaging
   - High-energy visual system
   ======================================== */


/* ========================================
   ELEMENTOR OVERRIDE RESET (NUCLEAR OPTION)
   Force styles over Elementor defaults
   ======================================== */

.np-scope.np-style-superhero * {
  margin: 0 !important;
  padding: 0 !important;
  box-sizing: border-box !important;
}

.np-scope.np-style-superhero h1,
.np-scope.np-style-superhero h2,
.np-scope.np-style-superhero h3,
.np-scope.np-style-superhero h4,
.np-scope.np-style-superhero h5,
.np-scope.np-style-superhero h6 {
  font-family: 'Exo 2', 'Bebas Neue', 'Impact', sans-serif !important;
  font-weight: 900 !important;
  line-height: 1.1 !important;
  color: inherit !important;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.np-scope.np-style-superhero p,
.np-scope.np-style-superhero li,
.np-scope.np-style-superhero span {
  font-family: 'Raleway', 'Open Sans', sans-serif !important;
  line-height: 1.7 !important;
  color: inherit !important;
}

.np-scope.np-style-superhero a {
  text-decoration: none !important;
  color: inherit !important;
}


/* ========================================
   CSS VARIABLES (SCOPED)
   Superhero Power Palette
   ======================================== */

.np-scope.np-style-superhero {
  /* Colors - Bold Superhero Palette */
  --sh-primary: #dc2626;        /* Power Red */
  --sh-secondary: #0284c7;      /* Sky Blue */
  --sh-accent: #f59e0b;         /* Energy Yellow */
  --sh-dark: #0f172a;           /* Deep Navy */
  --sh-darker: #020617;         /* Almost Black */
  
  --sh-bg: #ffffff;
  --sh-surface: #f8fafc;
  --sh-surface-dark: #e2e8f0;
  
  --sh-text-primary: #0f172a;
  --sh-text-secondary: #475569;
  --sh-text-muted: #94a3b8;
  --sh-text-white: #ffffff;
  
  --sh-border: #cbd5e1;
  --sh-border-dark: #64748b;
  
  /* Typography */
  --sh-font-display: 'Exo 2', 'Bebas Neue', Impact, sans-serif;
  --sh-font-heading: 'Bebas Neue', 'Exo 2', Impact, sans-serif;
  --sh-font-body: 'Raleway', 'Open Sans', sans-serif;
  --sh-font-accent: 'Bangers', 'Exo 2', cursive;
  
  /* Spacing - MODERATE (Original Balance) */
  --sh-space-xs: 0.5rem;
  --sh-space-sm: 1rem;
  --sh-space-md: 1.5rem;
  --sh-space-lg: 2rem;
  --sh-space-xl: 3rem;
  --sh-space-2xl: 4rem;
  
  /* Typography Scale */
  --sh-text-xs: 0.75rem;
  --sh-text-sm: 0.875rem;
  --sh-text-base: 1rem;
  --sh-text-lg: 1.125rem;
  --sh-text-xl: 1.25rem;
  --sh-text-2xl: 1.5rem;
  --sh-text-3xl: 2rem;
  --sh-text-4xl: 3rem;
  --sh-text-5xl: 4rem;
  
  /* Line Heights */
  --sh-leading-tight: 1.1;
  --sh-leading-snug: 1.3;
  --sh-leading-normal: 1.5;
  --sh-leading-relaxed: 1.7;
  
  /* Transitions */
  --sh-transition: 0.2s ease;
  --sh-transition-slow: 0.4s ease;
  
  /* Effects */
  --sh-shadow-sm: 0 2px 4px rgba(15, 23, 42, 0.1);
  --sh-shadow-md: 0 4px 8px rgba(15, 23, 42, 0.15);
  --sh-shadow-lg: 0 8px 16px rgba(15, 23, 42, 0.2);
  --sh-shadow-hero: 0 12px 24px rgba(220, 38, 38, 0.3);
}


/* ========================================
   BASE CONTAINER
   Clean Power Base
   ======================================== */

.np-scope.np-style-superhero {
  background: var(--sh-bg);
  color: var(--sh-text-primary);
  font-family: var(--sh-font-body);
  font-size: var(--sh-text-base);
  line-height: var(--sh-leading-relaxed);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
}

/* Diagonal accent stripe (top right) */
.np-scope.np-style-superhero::before {
  content: '';
  position: fixed;
  top: 0;
  right: 0;
  width: 400px;
  height: 400px;
  background: linear-gradient(135deg, var(--sh-primary) 0%, var(--sh-accent) 100%);
  opacity: 0.03;
  transform: rotate(45deg) translateX(50%);
  pointer-events: none;
  z-index: 0;
}

.np-scope.np-style-superhero > * {
  position: relative;
  z-index: 1;
}


/* ========================================
   BLOCK 1: HERO
   Power Entrance
   ======================================== */

.np-scope.np-style-superhero .hero {
  max-width: 1200px;
  margin: 0 auto !important;
  padding: var(--sh-space-2xl) var(--sh-space-md) !important;
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* Power burst background */
.np-scope.np-style-superhero .hero::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(220, 38, 38, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.np-scope.np-style-superhero .hero-badge {
  display: inline-block;
  font-family: var(--sh-font-accent) !important;
  font-size: var(--sh-text-sm) !important;
  font-weight: 700 !important;
  color: var(--sh-text-white) !important;
  background: var(--sh-primary);
  padding: 0.5rem 1.5rem !important;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: var(--sh-space-md) !important;
  box-shadow: 0 4px 12px rgba(220, 38, 38, 0.3);
  position: relative;
  z-index: 2;
}

.np-scope.np-style-superhero .hero h1 {
  font-family: var(--sh-font-display) !important;
  font-size: clamp(2.5rem, 8vw, 5rem) !important;
  font-weight: 900 !important;
  line-height: var(--sh-leading-tight) !important;
  color: var(--sh-dark) !important;
  margin-bottom: var(--sh-space-md) !important;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  position: relative;
  z-index: 2;
}

/* Power glow on title */
.np-scope.np-style-superhero .hero h1::after {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  color: var(--sh-primary);
  opacity: 0.15;
  filter: blur(20px);
  z-index: -1;
}

.np-scope.np-style-superhero .hero p {
  font-family: var(--sh-font-body) !important;
  font-size: var(--sh-text-lg) !important;
  line-height: var(--sh-leading-normal) !important;
  color: var(--sh-text-secondary) !important;
  max-width: 700px;
  margin: 0 auto var(--sh-space-lg) auto !important;
  position: relative;
  z-index: 2;
}

.np-scope.np-style-superhero .hero-meta {
  font-family: var(--sh-font-body) !important;
  font-size: var(--sh-text-sm) !important;
  color: var(--sh-text-muted) !important;
  margin-top: var(--sh-space-md) !important;
  position: relative;
  z-index: 2;
}

.np-scope.np-style-superhero .hero-meta strong {
  color: var(--sh-primary) !important;
  font-weight: 700 !important;
}


/* ========================================
   POWER BADGE SYSTEM
   Mission Markers
   ======================================== */

.np-scope.np-style-superhero .power-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--sh-font-accent) !important;
  font-size: var(--sh-text-lg) !important;
  font-weight: 700 !important;
  color: var(--sh-text-white) !important;
  background: var(--sh-primary);
  background: linear-gradient(135deg, var(--sh-primary) 0%, #b91c1c 100%);
  padding: 0.75rem 2rem !important;
  border-radius: 8px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  box-shadow: var(--sh-shadow-lg);
  position: relative;
  overflow: hidden;
  margin: var(--sh-space-xl) auto var(--sh-space-md) auto !important;
}

.np-scope.np-style-superhero .power-badge::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  animation: shine 3s infinite;
}

@keyframes shine {
  to { left: 100%; }
}


/* ========================================
   BLOCK 2: KEY TAKEAWAY CALLOUTS
   Power-Up Cards
   ======================================== */

.np-scope.np-style-superhero .key-takeaways {
  max-width: 1000px;
  margin: var(--sh-space-xl) auto !important;
  padding: var(--sh-space-xl) var(--sh-space-lg) !important;
  background: var(--sh-surface);
  border: 4px solid var(--sh-primary);
  border-radius: 16px;
  box-shadow: var(--sh-shadow-lg);
  position: relative;
}

.np-scope.np-style-superhero .key-takeaways::before {
  content: '';
  position: absolute;
  top: -4px;
  right: -4px;
  bottom: -4px;
  left: -4px;
  background: linear-gradient(135deg, var(--sh-primary), var(--sh-accent));
  border-radius: 16px;
  z-index: -1;
  opacity: 0.1;
}

.np-scope.np-style-superhero .key-takeaways h2 {
  font-family: var(--sh-font-heading) !important;
  font-size: var(--sh-text-3xl) !important;
  font-weight: 900 !important;
  color: var(--sh-dark) !important;
  text-align: center;
  margin-bottom: var(--sh-space-lg) !important;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.np-scope.np-style-superhero .key-takeaway-card {
  display: flex;
  align-items: flex-start;
  gap: var(--sh-space-md);
  margin-bottom: var(--sh-space-lg) !important;
  padding: var(--sh-space-md) !important;
  background: var(--sh-bg);
  border-left: 5px solid var(--sh-accent);
  border-radius: 8px;
  transition: all var(--sh-transition);
}

.np-scope.np-style-superhero .key-takeaway-card:hover {
  transform: translateX(8px);
  box-shadow: var(--sh-shadow-md);
}

.np-scope.np-style-superhero .key-takeaway-card:last-child {
  margin-bottom: 0 !important;
}

.np-scope.np-style-superhero .takeaway-icon {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--sh-text-2xl) !important;
  background: var(--sh-accent);
  color: var(--sh-text-white) !important;
  border-radius: 50%;
  font-weight: 900;
  box-shadow: var(--sh-shadow-sm);
}

.np-scope.np-style-superhero .takeaway-content h3 {
  font-family: var(--sh-font-heading) !important;
  font-size: var(--sh-text-xl) !important;
  font-weight: 700 !important;
  color: var(--sh-dark) !important;
  margin-bottom: var(--sh-space-xs) !important;
  text-transform: uppercase;
}

.np-scope.np-style-superhero .takeaway-content p {
  font-size: var(--sh-text-base) !important;
  line-height: var(--sh-leading-relaxed) !important;
  color: var(--sh-text-secondary) !important;
}


/* ========================================
   BLOCK 3: SECTION HEADING + BODY
   Power Reading Experience
   ======================================== */

.np-scope.np-style-superhero .content-section {
  max-width: 800px;
  margin: 0 auto var(--sh-space-xl) auto !important;
  padding: 0 var(--sh-space-md) !important;
}

.np-scope.np-style-superhero .content-section h2 {
  font-family: var(--sh-font-display) !important;
  font-size: clamp(2rem, 5vw, 3rem) !important;
  font-weight: 900 !important;
  line-height: var(--sh-leading-tight) !important;
  color: var(--sh-dark) !important;
  margin-top: var(--sh-space-2xl) !important;
  margin-bottom: var(--sh-space-md) !important;
  text-transform: uppercase;
  position: relative;
  padding-left: var(--sh-space-md) !important;
}

.np-scope.np-style-superhero .content-section h2::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 6px;
  background: linear-gradient(180deg, var(--sh-primary) 0%, var(--sh-accent) 100%);
  border-radius: 3px;
}

.np-scope.np-style-superhero .content-section h3 {
  font-family: var(--sh-font-heading) !important;
  font-size: var(--sh-text-xl) !important;
  font-weight: 700 !important;
  line-height: var(--sh-leading-snug) !important;
  color: var(--sh-dark) !important;
  margin-top: var(--sh-space-xl) !important;
  margin-bottom: var(--sh-space-sm) !important;
  text-transform: uppercase;
}

.np-scope.np-style-superhero .content-section p {
  font-family: var(--sh-font-body) !important;
  font-size: var(--sh-text-base) !important;
  line-height: var(--sh-leading-relaxed) !important;
  color: var(--sh-text-primary) !important;
  margin-bottom: var(--sh-space-md) !important;
}

.np-scope.np-style-superhero .content-section ul,
.np-scope.np-style-superhero .content-section ol {
  margin: var(--sh-space-md) 0 !important;
  padding-left: var(--sh-space-xl) !important;
}

.np-scope.np-style-superhero .content-section li {
  font-size: var(--sh-text-base) !important;
  line-height: var(--sh-leading-relaxed) !important;
  color: var(--sh-text-primary) !important;
  margin-bottom: var(--sh-space-sm) !important;
}

.np-scope.np-style-superhero .content-section a {
  color: var(--sh-secondary) !important;
  font-weight: 600;
  border-bottom: 2px solid var(--sh-secondary);
  transition: all var(--sh-transition);
}

.np-scope.np-style-superhero .content-section a:hover {
  color: var(--sh-primary) !important;
  border-bottom-color: var(--sh-primary);
}


/* ========================================
   BLOCK 4: INLINE CTA (MINOR)
   Quick Power Move
   ======================================== */

.np-scope.np-style-superhero .inline-cta {
  max-width: 800px;
  margin: var(--sh-space-xl) auto !important;
  padding: var(--sh-space-md) !important;
  text-align: center;
  background: var(--sh-surface);
  border: 3px solid var(--sh-accent);
  border-radius: 12px;
  box-shadow: var(--sh-shadow-md);
}

.np-scope.np-style-superhero .inline-cta p {
  font-family: var(--sh-font-body) !important;
  font-size: var(--sh-text-base) !important;
  color: var(--sh-text-secondary) !important;
  margin-bottom: var(--sh-space-sm) !important;
}

.np-scope.np-style-superhero .inline-cta a {
  display: inline-block;
  font-family: var(--sh-font-heading) !important;
  font-size: var(--sh-text-base) !important;
  font-weight: 700 !important;
  color: var(--sh-text-white) !important;
  background: var(--sh-accent);
  padding: 0.875rem 2rem !important;
  border-radius: 8px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  box-shadow: var(--sh-shadow-md);
  transition: all var(--sh-transition);
}

.np-scope.np-style-superhero .inline-cta a:hover {
  transform: translateY(-2px);
  box-shadow: var(--sh-shadow-lg);
}


/* ========================================
   BLOCK 5: VISUAL BREAK / DIVIDER
   Power Stripe
   ======================================== */

.np-scope.np-style-superhero .visual-break {
  max-width: 200px;
  height: 4px;
  background: linear-gradient(90deg, var(--sh-primary) 0%, var(--sh-accent) 100%);
  margin: var(--sh-space-xl) auto !important;
  border-radius: 2px;
  position: relative;
}

.np-scope.np-style-superhero .visual-break::before,
.np-scope.np-style-superhero .visual-break::after {
  content: '';
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  background: var(--sh-primary);
  border-radius: 50%;
}

.np-scope.np-style-superhero .visual-break::before {
  left: -20px;
}

.np-scope.np-style-superhero .visual-break::after {
  right: -20px;
}


/* ========================================
   BLOCK 6: MID-ARTICLE CTA (MAJOR)
   Power Activation Zone
   ======================================== */

.np-scope.np-style-superhero .mid-article-cta {
  max-width: 1000px;
  margin: var(--sh-space-2xl) auto !important;
  padding: var(--sh-space-2xl) var(--sh-space-xl) !important;
  background: var(--sh-dark);
  background: linear-gradient(135deg, var(--sh-darker) 0%, var(--sh-dark) 100%);
  color: var(--sh-text-white);
  text-align: center;
  border-radius: 16px;
  box-shadow: var(--sh-shadow-hero);
  position: relative;
  overflow: hidden;
}

/* Diagonal accent stripes */
.np-scope.np-style-superhero .mid-article-cta::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 300px;
  height: 200%;
  background: linear-gradient(45deg, transparent 30%, rgba(220, 38, 38, 0.1) 50%, transparent 70%);
  transform: skewX(-20deg);
}

.np-scope.np-style-superhero .mid-article-cta h2 {
  font-family: var(--sh-font-display) !important;
  font-size: clamp(2rem, 5vw, 3.5rem) !important;
  font-weight: 900 !important;
  color: var(--sh-text-white) !important;
  margin-bottom: var(--sh-space-sm) !important;
  text-transform: uppercase;
  position: relative;
  z-index: 2;
}

.np-scope.np-style-superhero .mid-article-cta p {
  font-size: var(--sh-text-lg) !important;
  line-height: var(--sh-leading-normal) !important;
  color: rgba(255, 255, 255, 0.9) !important;
  margin-bottom: var(--sh-space-lg) !important;
  position: relative;
  z-index: 2;
}

.np-scope.np-style-superhero .mid-article-cta .cta-button {
  display: inline-block;
  font-family: var(--sh-font-heading) !important;
  font-size: var(--sh-text-lg) !important;
  font-weight: 900 !important;
  color: var(--sh-text-white) !important;
  background: var(--sh-primary);
  background: linear-gradient(135deg, var(--sh-primary) 0%, #b91c1c 100%);
  padding: 1.25rem 3rem !important;
  border-radius: 8px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  box-shadow: 0 8px 20px rgba(220, 38, 38, 0.4);
  transition: all var(--sh-transition);
  position: relative;
  z-index: 2;
}

.np-scope.np-style-superhero .mid-article-cta .cta-button:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(220, 38, 38, 0.5);
}


/* ========================================
   BLOCK 7: PULL QUOTE / EMOTIONAL ANCHOR
   Power Statement
   ======================================== */

.np-scope.np-style-superhero .pull-quote {
  max-width: 700px;
  margin: var(--sh-space-xl) auto !important;
  padding: var(--sh-space-lg) !important;
  background: var(--sh-surface);
  border-left: 6px solid var(--sh-secondary);
  border-radius: 8px;
  box-shadow: var(--sh-shadow-md);
  position: relative;
}

.np-scope.np-style-superhero .pull-quote::before {
  content: '"';
  position: absolute;
  top: 10px;
  left: 20px;
  font-family: var(--sh-font-display) !important;
  font-size: 4rem;
  color: var(--sh-secondary);
  opacity: 0.15;
  line-height: 1;
}

.np-scope.np-style-superhero .pull-quote p {
  font-family: var(--sh-font-body) !important;
  font-size: var(--sh-text-xl) !important;
  font-weight: 600 !important;
  line-height: var(--sh-leading-snug) !important;
  color: var(--sh-dark) !important;
  font-style: italic;
  margin-bottom: var(--sh-space-sm) !important;
  position: relative;
  z-index: 2;
}

.np-scope.np-style-superhero .pull-quote cite {
  display: block;
  font-family: var(--sh-font-body) !important;
  font-size: var(--sh-text-sm) !important;
  font-style: normal;
  font-weight: 700;
  color: var(--sh-secondary) !important;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}


/* ========================================
   BLOCK 8: FAQ ACCORDION
   Power Q&A - NO BUTTONS
   ======================================== */

.np-scope.np-style-superhero .faq-section {
  max-width: 900px;
  margin: var(--sh-space-2xl) auto !important;
  padding: 0 var(--sh-space-md) !important;
}

.np-scope.np-style-superhero .faq-section h2 {
  font-family: var(--sh-font-display) !important;
  font-size: var(--sh-text-3xl) !important;
  font-weight: 900 !important;
  color: var(--sh-dark) !important;
  text-align: center;
  text-transform: uppercase;
  margin-bottom: var(--sh-space-lg) !important;
}

.np-scope.np-style-superhero .faq-item {
  background: var(--sh-surface);
  border: 2px solid var(--sh-border);
  border-radius: 8px;
  margin-bottom: var(--sh-space-sm) !important;
  overflow: hidden;
  transition: all var(--sh-transition);
}

.np-scope.np-style-superhero .faq-item:hover {
  border-color: var(--sh-primary);
}

.np-scope.np-style-superhero .faq-item.active {
  border-color: var(--sh-primary);
  box-shadow: var(--sh-shadow-md);
}

.np-scope.np-style-superhero .faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--sh-space-md) !important;
  cursor: pointer;
  gap: var(--sh-space-md);
  background: transparent;
  transition: background var(--sh-transition);
}

.np-scope.np-style-superhero .faq-question:hover {
  background: rgba(220, 38, 38, 0.05);
}

.np-scope.np-style-superhero .faq-question h3 {
  font-family: var(--sh-font-heading) !important;
  font-size: var(--sh-text-base) !important;
  font-weight: 700 !important;
  color: var(--sh-dark) !important;
  flex: 1;
  margin: 0 !important;
  text-transform: uppercase;
}

.np-scope.np-style-superhero .faq-icon {
  font-family: var(--sh-font-display) !important;
  font-size: var(--sh-text-2xl) !important;
  font-weight: 900 !important;
  color: var(--sh-primary) !important;
  transition: transform var(--sh-transition);
  user-select: none;
  line-height: 1;
  flex-shrink: 0;
}

.np-scope.np-style-superhero .faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.np-scope.np-style-superhero .faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.np-scope.np-style-superhero .faq-item.active .faq-answer {
  max-height: 1000px;
  padding: 0 var(--sh-space-md) var(--sh-space-md) var(--sh-space-md) !important;
}

.np-scope.np-style-superhero .faq-answer p {
  font-size: var(--sh-text-base) !important;
  line-height: var(--sh-leading-relaxed) !important;
  color: var(--sh-text-secondary) !important;
}


/* ========================================
   BLOCK 9: RESEARCH CITATION BLOCK
   Power Facts
   ======================================== */

.np-scope.np-style-superhero .research-citation {
  max-width: 800px;
  margin: var(--sh-space-lg) auto !important;
  padding: var(--sh-space-md) !important;
  background: var(--sh-surface);
  border-left: 5px solid var(--sh-secondary);
  border-radius: 8px;
  box-shadow: var(--sh-shadow-sm);
}

.np-scope.np-style-superhero .research-content h4 {
  font-family: var(--sh-font-heading) !important;
  font-size: var(--sh-text-base) !important;
  font-weight: 700 !important;
  color: var(--sh-secondary) !important;
  margin-bottom: var(--sh-space-xs) !important;
  text-transform: uppercase;
}

.np-scope.np-style-superhero .research-content p {
  font-size: var(--sh-text-base) !important;
  line-height: var(--sh-leading-normal) !important;
  color: var(--sh-text-secondary) !important;
  margin-bottom: var(--sh-space-xs) !important;
}

.np-scope.np-style-superhero .research-content .research-source {
  font-family: var(--sh-font-body) !important;
  font-size: var(--sh-text-sm) !important;
  color: var(--sh-text-muted) !important;
  font-style: italic;
}


/* ========================================
   BLOCK 10: NEWSLETTER EMBED (INLINE)
   Power Up Your Inbox
   ======================================== */

.np-scope.np-style-superhero .newsletter-embed {
  max-width: 800px;
  margin: var(--sh-space-2xl) auto !important;
  padding: var(--sh-space-xl) var(--sh-space-lg) !important;
  text-align: center;
  background: var(--sh-secondary);
  background: linear-gradient(135deg, var(--sh-secondary) 0%, #0369a1 100%);
  color: var(--sh-text-white);
  border-radius: 16px;
  box-shadow: var(--sh-shadow-lg);
}

.np-scope.np-style-superhero .newsletter-embed h3 {
  font-family: var(--sh-font-heading) !important;
  font-size: var(--sh-text-2xl) !important;
  font-weight: 900 !important;
  color: var(--sh-text-white) !important;
  margin-bottom: var(--sh-space-xs) !important;
  text-transform: uppercase;
}

.np-scope.np-style-superhero .newsletter-embed p {
  font-size: var(--sh-text-base) !important;
  line-height: var(--sh-leading-normal) !important;
  color: rgba(255, 255, 255, 0.95) !important;
  margin-bottom: var(--sh-space-md) !important;
}

.np-scope.np-style-superhero .newsletter-form {
  display: flex;
  gap: var(--sh-space-sm);
  max-width: 500px;
  margin: 0 auto !important;
}

.np-scope.np-style-superhero .newsletter-form input {
  flex: 1;
  padding: 1rem 1.5rem !important;
  font-family: var(--sh-font-body) !important;
  font-size: var(--sh-text-base) !important;
  border: 2px solid var(--sh-text-white) !important;
  border-radius: 8px;
  background: var(--sh-text-white) !important;
  color: var(--sh-text-primary) !important;
}

.np-scope.np-style-superhero .newsletter-form input:focus {
  outline: none !important;
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.3);
}

.np-scope.np-style-superhero .newsletter-form button {
  padding: 1rem 2rem !important;
  font-family: var(--sh-font-heading) !important;
  font-size: var(--sh-text-base) !important;
  font-weight: 900 !important;
  background: var(--sh-primary) !important;
  color: var(--sh-text-white) !important;
  border: none !important;
  border-radius: 8px;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: all var(--sh-transition);
  box-shadow: var(--sh-shadow-md);
}

.np-scope.np-style-superhero .newsletter-form button:hover {
  transform: translateY(-2px);
  box-shadow: var(--sh-shadow-lg);
}


/* ========================================
   BLOCK 11: INTERNAL LINK CARD
   Mission Links
   ======================================== */

.np-scope.np-style-superhero .internal-links {
  max-width: 1000px;
  margin: var(--sh-space-xl) auto !important;
  padding: 0 var(--sh-space-md) !important;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--sh-space-md);
}

.np-scope.np-style-superhero .internal-link-card {
  background: var(--sh-surface);
  border: 2px solid var(--sh-border);
  border-radius: 12px;
  padding: var(--sh-space-md) !important;
  transition: all var(--sh-transition);
  position: relative;
  overflow: hidden;
}

.np-scope.np-style-superhero .internal-link-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--sh-primary) 0%, var(--sh-accent) 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--sh-transition);
}

.np-scope.np-style-superhero .internal-link-card:hover {
  border-color: var(--sh-primary);
  transform: translateY(-4px);
  box-shadow: var(--sh-shadow-md);
}

.np-scope.np-style-superhero .internal-link-card:hover::before {
  transform: scaleX(1);
}

.np-scope.np-style-superhero .internal-link-content h4 {
  font-family: var(--sh-font-heading) !important;
  font-size: var(--sh-text-lg) !important;
  font-weight: 700 !important;
  color: var(--sh-dark) !important;
  margin-bottom: var(--sh-space-xs) !important;
  text-transform: uppercase;
}

.np-scope.np-style-superhero .internal-link-content p {
  font-size: var(--sh-text-sm) !important;
  line-height: var(--sh-leading-normal) !important;
  color: var(--sh-text-secondary) !important;
  margin-bottom: var(--sh-space-sm) !important;
}

.np-scope.np-style-superhero .internal-link-content a {
  font-family: var(--sh-font-heading) !important;
  font-size: var(--sh-text-sm) !important;
  font-weight: 700 !important;
  color: var(--sh-primary) !important;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: color var(--sh-transition);
}

.np-scope.np-style-superhero .internal-link-content a:hover {
  color: var(--sh-accent) !important;
}


/* ========================================
   BLOCK 12: LEAD MAGNET DOWNLOAD CARD
   Power Download
   ======================================== */

.np-scope.np-style-superhero .lead-magnet {
  max-width: 900px;
  margin: var(--sh-space-2xl) auto !important;
  padding: var(--sh-space-xl) var(--sh-space-lg) !important;
  background: var(--sh-accent);
  background: linear-gradient(135deg, var(--sh-accent) 0%, #f59e0b 100%);
  border-radius: 16px;
  text-align: center;
  box-shadow: var(--sh-shadow-lg);
  position: relative;
  overflow: hidden;
}

.np-scope.np-style-superhero .lead-magnet::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -20%;
  width: 400px;
  height: 200%;
  background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.1) 50%, transparent 70%);
  transform: skewX(-20deg);
}

.np-scope.np-style-superhero .lead-magnet-content h3 {
  font-family: var(--sh-font-display) !important;
  font-size: var(--sh-text-3xl) !important;
  font-weight: 900 !important;
  color: var(--sh-text-white) !important;
  margin-bottom: var(--sh-space-sm) !important;
  text-transform: uppercase;
  position: relative;
  z-index: 2;
}

.np-scope.np-style-superhero .lead-magnet-content p {
  font-size: var(--sh-text-base) !important;
  line-height: var(--sh-leading-relaxed) !important;
  color: rgba(255, 255, 255, 0.95) !important;
  margin-bottom: var(--sh-space-md) !important;
  position: relative;
  z-index: 2;
}

.np-scope.np-style-superhero .lead-magnet-content ul {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 0 var(--sh-space-lg) 0 !important;
  text-align: left;
  max-width: 500px;
  margin-left: auto !important;
  margin-right: auto !important;
  position: relative;
  z-index: 2;
}

.np-scope.np-style-superhero .lead-magnet-content li {
  font-size: var(--sh-text-base) !important;
  color: rgba(255, 255, 255, 0.95) !important;
  margin-bottom: var(--sh-space-xs) !important;
  padding-left: var(--sh-space-lg) !important;
  position: relative;
}

.np-scope.np-style-superhero .lead-magnet-content li::before {
  content: '⚡';
  position: absolute;
  left: 0;
  font-size: 1.2em;
}

.np-scope.np-style-superhero .lead-magnet-button {
  display: inline-block;
  font-family: var(--sh-font-heading) !important;
  font-size: var(--sh-text-lg) !important;
  font-weight: 900 !important;
  color: var(--sh-accent) !important;
  background: var(--sh-text-white);
  padding: 1.125rem 3rem !important;
  border-radius: 8px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: all var(--sh-transition);
  position: relative;
  z-index: 2;
}

.np-scope.np-style-superhero .lead-magnet-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}


/* ========================================
   BLOCK 13: VIDEO EMBED BLOCK
   Power Screen
   ======================================== */

.np-scope.np-style-superhero .video-embed {
  max-width: 1000px;
  margin: var(--sh-space-xl) auto !important;
  padding: 0 var(--sh-space-md) !important;
}

.np-scope.np-style-superhero .video-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  background: var(--sh-darker);
  border: 4px solid var(--sh-primary);
  border-radius: 12px;
  box-shadow: var(--sh-shadow-lg);
}

.np-scope.np-style-superhero .video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none !important;
}

.np-scope.np-style-superhero .video-caption {
  margin-top: var(--sh-space-sm) !important;
  font-family: var(--sh-font-body) !important;
  font-size: var(--sh-text-sm) !important;
  color: var(--sh-text-muted) !important;
  text-align: center;
}


/* ========================================
   BLOCK 14: STICKY SIDE CTA
   Power Sidekick
   ======================================== */

.np-scope.np-style-superhero .sticky-side-cta {
  position: fixed;
  right: 40px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 9997;
  background: var(--sh-surface);
  border: 3px solid var(--sh-primary);
  border-radius: 12px;
  padding: var(--sh-space-md) !important;
  max-width: 280px;
  box-shadow: var(--sh-shadow-lg);
  opacity: 0;
  visibility: hidden;
  transition: all var(--sh-transition);
}

.np-scope.np-style-superhero .sticky-side-cta.visible {
  opacity: 1;
  visibility: visible;
}

.np-scope.np-style-superhero .sticky-side-cta h4 {
  font-family: var(--sh-font-heading) !important;
  font-size: var(--sh-text-base) !important;
  font-weight: 700 !important;
  color: var(--sh-dark) !important;
  margin-bottom: var(--sh-space-xs) !important;
  text-transform: uppercase;
}

.np-scope.np-style-superhero .sticky-side-cta p {
  font-size: var(--sh-text-sm) !important;
  line-height: var(--sh-leading-normal) !important;
  color: var(--sh-text-secondary) !important;
  margin-bottom: var(--sh-space-sm) !important;
}

.np-scope.np-style-superhero .sticky-side-cta .cta-button {
  display: block;
  width: 100%;
  padding: 0.875rem 1.5rem !important;
  font-family: var(--sh-font-heading) !important;
  font-size: var(--sh-text-sm) !important;
  font-weight: 700 !important;
  text-align: center;
  background: var(--sh-primary);
  color: var(--sh-text-white) !important;
  border-radius: 8px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  box-shadow: var(--sh-shadow-md);
  transition: all var(--sh-transition);
}

.np-scope.np-style-superhero .sticky-side-cta .cta-button:hover {
  transform: translateY(-2px);
  box-shadow: var(--sh-shadow-lg);
}


/* ========================================
   BLOCK 15: SUMMARY / TL;DR BLOCK
   Power Brief
   ======================================== */

.np-scope.np-style-superhero .tldr-block {
  max-width: 800px;
  margin: var(--sh-space-xl) auto !important;
  padding: var(--sh-space-lg) !important;
  background: var(--sh-surface);
  border: 3px solid var(--sh-primary);
  border-radius: 12px;
  box-shadow: var(--sh-shadow-md);
}

.np-scope.np-style-superhero .tldr-block h3 {
  font-family: var(--sh-font-heading) !important;
  font-size: var(--sh-text-xl) !important;
  font-weight: 900 !important;
  color: var(--sh-primary) !important;
  margin-bottom: var(--sh-space-md) !important;
  text-transform: uppercase;
}

.np-scope.np-style-superhero .tldr-block ul {
  list-style: none !important;
  padding: 0 !important;
}

.np-scope.np-style-superhero .tldr-block li {
  font-size: var(--sh-text-base) !important;
  line-height: var(--sh-leading-relaxed) !important;
  color: var(--sh-text-primary) !important;
  margin-bottom: var(--sh-space-sm) !important;
  padding-left: var(--sh-space-lg) !important;
  position: relative;
}

.np-scope.np-style-superhero .tldr-block li::before {
  content: '▶';
  position: absolute;
  left: 0;
  color: var(--sh-primary);
  font-weight: 900;
}


/* ========================================
   BLOCK 16: ABOUT THE AUTHOR
   Power Profile
   ======================================== */

.np-scope.np-style-superhero .about-author {
  max-width: 800px;
  margin: var(--sh-space-2xl) auto !important;
  padding: var(--sh-space-xl) var(--sh-space-lg) !important;
  text-align: center;
  background: var(--sh-surface);
  border: 3px solid var(--sh-border);
  border-radius: 16px;
  box-shadow: var(--sh-shadow-md);
}

.np-scope.np-style-superhero .author-image {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  margin: 0 auto var(--sh-space-md) auto !important;
  border: 4px solid var(--sh-primary);
  box-shadow: 0 4px 12px rgba(220, 38, 38, 0.2);
  overflow: hidden;
}

.np-scope.np-style-superhero .author-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.np-scope.np-style-superhero .author-content h3 {
  font-family: var(--sh-font-heading) !important;
  font-size: var(--sh-text-xl) !important;
  font-weight: 900 !important;
  color: var(--sh-dark) !important;
  margin-bottom: var(--sh-space-xs) !important;
  text-transform: uppercase;
}

.np-scope.np-style-superhero .author-content .author-title {
  font-family: var(--sh-font-body) !important;
  font-size: var(--sh-text-sm) !important;
  color: var(--sh-primary) !important;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: var(--sh-space-sm) !important;
}

.np-scope.np-style-superhero .author-content p {
  font-size: var(--sh-text-base) !important;
  line-height: var(--sh-leading-relaxed) !important;
  color: var(--sh-text-secondary) !important;
}


/* ========================================
   BLOCK 17: RELATED POSTS
   More Missions
   ======================================== */

.np-scope.np-style-superhero .related-posts {
  max-width: 1000px;
  margin: var(--sh-space-2xl) auto !important;
  padding: 0 var(--sh-space-md) !important;
}

.np-scope.np-style-superhero .related-posts h2 {
  font-family: var(--sh-font-display) !important;
  font-size: var(--sh-text-3xl) !important;
  font-weight: 900 !important;
  color: var(--sh-dark) !important;
  text-align: center;
  text-transform: uppercase;
  margin-bottom: var(--sh-space-lg) !important;
}

.np-scope.np-style-superhero .related-post-card {
  background: var(--sh-surface);
  border: 2px solid var(--sh-border);
  border-radius: 12px;
  padding: var(--sh-space-md) !important;
  margin-bottom: var(--sh-space-md) !important;
  transition: all var(--sh-transition);
  position: relative;
  overflow: hidden;
}

.np-scope.np-style-superhero .related-post-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 5px;
  background: linear-gradient(180deg, var(--sh-primary) 0%, var(--sh-accent) 100%);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform var(--sh-transition);
}

.np-scope.np-style-superhero .related-post-card:hover {
  border-color: var(--sh-primary);
  transform: translateX(8px);
  box-shadow: var(--sh-shadow-md);
}

.np-scope.np-style-superhero .related-post-card:hover::before {
  transform: scaleY(1);
}

.np-scope.np-style-superhero .related-post-content h3 {
  font-family: var(--sh-font-heading) !important;
  font-size: var(--sh-text-lg) !important;
  font-weight: 700 !important;
  color: var(--sh-dark) !important;
  margin-bottom: var(--sh-space-xs) !important;
  text-transform: uppercase;
}

.np-scope.np-style-superhero .related-post-content p {
  font-size: var(--sh-text-sm) !important;
  line-height: var(--sh-leading-normal) !important;
  color: var(--sh-text-secondary) !important;
  margin-bottom: var(--sh-space-sm) !important;
}

.np-scope.np-style-superhero .related-post-content a {
  font-family: var(--sh-font-heading) !important;
  font-size: var(--sh-text-sm) !important;
  font-weight: 700 !important;
  color: var(--sh-primary) !important;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: color var(--sh-transition);
}

.np-scope.np-style-superhero .related-post-content a::after {
  content: ' →';
}

.np-scope.np-style-superhero .related-post-content a:hover {
  color: var(--sh-accent) !important;
}


/* ========================================
   BLOCK 18: FOOTER CTA
   Final Power Move
   ======================================== */

.np-scope.np-style-superhero .footer-cta {
  max-width: 1200px;
  margin: var(--sh-space-2xl) auto 0 auto !important;
  padding: var(--sh-space-2xl) var(--sh-space-xl) !important;
  text-align: center;
  background: var(--sh-primary);
  background: linear-gradient(135deg, var(--sh-primary) 0%, #b91c1c 100%);
  color: var(--sh-text-white);
  border-radius: 16px 16px 0 0;
  box-shadow: var(--sh-shadow-hero);
  position: relative;
  overflow: hidden;
}

.np-scope.np-style-superhero .footer-cta::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 200%;
  background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.1) 50%, transparent 70%);
  transform: skewX(-20deg);
}

.np-scope.np-style-superhero .footer-cta-content h2 {
  font-family: var(--sh-font-display) !important;
  font-size: clamp(2rem, 6vw, 4rem) !important;
  font-weight: 900 !important;
  color: var(--sh-text-white) !important;
  margin-bottom: var(--sh-space-sm) !important;
  text-transform: uppercase;
  position: relative;
  z-index: 2;
}

.np-scope.np-style-superhero .footer-cta-content p {
  font-size: var(--sh-text-lg) !important;
  line-height: var(--sh-leading-relaxed) !important;
  color: rgba(255, 255, 255, 0.95) !important;
  margin-bottom: var(--sh-space-lg) !important;
  position: relative;
  z-index: 2;
}

.np-scope.np-style-superhero .footer-cta .cta-button {
  display: inline-block;
  font-family: var(--sh-font-heading) !important;
  font-size: var(--sh-text-xl) !important;
  font-weight: 900 !important;
  color: var(--sh-primary) !important;
  background: var(--sh-text-white);
  padding: 1.25rem 3.5rem !important;
  border-radius: 8px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  transition: all var(--sh-transition);
  position: relative;
  z-index: 2;
}

.np-scope.np-style-superhero .footer-cta .cta-button:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.4);
}


/* ========================================
   RESPONSIVE DESIGN
   Power Scales Down
   ======================================== */

/* Tablet (768px - 1023px) */
@media (max-width: 1023px) {
  .np-scope.np-style-superhero .sticky-side-cta {
    display: none !important;
  }
  
  .np-scope.np-style-superhero .internal-links {
    grid-template-columns: 1fr;
  }
}

/* Mobile (320px - 767px) */
@media (max-width: 767px) {
  .np-scope.np-style-superhero {
    font-size: 0.9375rem;
  }
  
  .np-scope.np-style-superhero .hero {
    padding: var(--sh-space-xl) var(--sh-space-md) !important;
  }
  
  .np-scope.np-style-superhero .hero h1 {
    font-size: 2.5rem !important;
  }
  
  .np-scope.np-style-superhero .newsletter-form {
    flex-direction: column;
  }
  
  .np-scope.np-style-superhero .newsletter-form input,
  .np-scope.np-style-superhero .newsletter-form button {
    width: 100%;
  }
  
  .np-scope.np-style-superhero .takeaway-icon {
    width: 40px;
    height: 40px;
    font-size: var(--sh-text-xl) !important;
  }
}


/* ========================================
   SCROLL ANIMATIONS
   Power Reveals
   ======================================== */

.np-scope.np-style-superhero [data-sh-animate] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.np-scope.np-style-superhero [data-sh-animate].sh-in-view {
  opacity: 1;
  transform: translateY(0);
}


/* ========================================
   ACCESSIBILITY & PERFORMANCE
   ======================================== */

.np-scope.np-style-superhero img,
.np-scope.np-style-superhero video {
  max-width: 100%;
  height: auto;
}

/* Reduce motion for accessibility */
@media (prefers-reduced-motion: reduce) {
  .np-scope.np-style-superhero *,
  .np-scope.np-style-superhero *::before,
  .np-scope.np-style-superhero *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}