.elementor-24766 .elementor-element.elementor-element-da0ff42{--display:flex;}:root{--page-title-display:none;}/* Start custom CSS for container, class: .elementor-element-da0ff42 *//* =============================================================
   01-BASE.CSS
   WordPress cleanup, CSS variables, reset, body, background
   ============================================================= */

/* ---- HIDE WOOCOMMERCE/ELEMENTOR/WORDPRESS HEADER & FOOTER ---- */
.site-header,
.site-footer,
#site-header,
#site-footer,
.elementor-location-header,
.elementor-location-footer,
.elementor-header,
.elementor-footer,
.woocommerce-breadcrumb,
.storefront-breadcrumb,
.main-navigation,
.site-branding,
.wp-site-blocks > header,
.wp-site-blocks > footer,
[data-elementor-type="header"],
[data-elementor-type="footer"],
.ast-header-html-1,
.ast-footer-html-1,
#masthead,
#colophon,
.hfe-header,
.hfe-footer,
nav.primary-navigation,
.storefront-handheld-footer-bar,
.storefront-sorting,
.woocommerce-store-notice,
.admin-bar #wpadminbar {
  display: none !important;
  visibility: hidden !important;
  height: 0 !important;
  overflow: hidden !important;
}

body {
  padding-top: 0 !important;
  margin-top: 0 !important;
}

html {
  margin-top: 0 !important;
}

/* ---- CSS VARIABLES ---- */
:root {
  --bg-dark: #050810;
  --bg-card: #0b0e1a;
  --bg-elevated: #121626;
  /* legacy var names kept so existing rules keep working — values are now Neroz purple/magenta/pink */
  --orange-dark: #7B2FD6;     /* deep purple   */
  --orange-primary: #A55BFF;  /* Neroz purple  */
  --orange-bright: #E930FF;   /* magenta       */
  --orange-light: #FF66C4;    /* pink          */
  --red-deep: #6B21C7;        /* deep violet   */
  --red-primary: #E930FF;     /* magenta       */
  --amber: #FF66C4;           /* pink          */
  --yellow: #FF66C4;          /* pink          */
  --text-primary: #ffffff;
  --text-secondary: #a8a8c0;
  --text-muted: #5a5a72;
  --gradient-fire: linear-gradient(135deg, #A55BFF 0%, #E930FF 50%, #FF66C4 100%);
  --gradient-ember: linear-gradient(135deg, #7B2FD6 0%, #E930FF 100%);
  --gradient-heat: linear-gradient(180deg, #E930FF 0%, #A55BFF 100%);
  --glow-orange: 0 0 60px rgba(165, 91, 255, 0.4);
  --glow-red: 0 0 60px rgba(233, 48, 255, 0.3);
}

/* ---- RESET ---- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg-dark);
  color: var(--text-primary);
  min-height: 100vh;
  overflow-x: hidden;
  line-height: 1.6;
}

/* ---- ANIMATED BACKGROUND ---- */
/* =============================================================
   02-COMPONENTS.CSS
   Sticky countdown bar, primary CTA button, hero, video section
   ============================================================= */

/* ---- STICKY COUNTDOWN BAR ---- */
.countdown-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: linear-gradient(90deg, var(--bg-dark) 0%, var(--bg-elevated) 50%, var(--bg-dark) 100%);
  border-bottom: 1px solid rgba(165, 91, 255, 0.3);
  padding: 10px 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  backdrop-filter: blur(10px);
}

.countdown-label {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--orange-bright);
}

.countdown-timer {
  display: flex;
  gap: 12px;
}

.countdown-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 40px;
}

.countdown-value {
  font-family: 'Oswald', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  background: var(--gradient-fire);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.countdown-unit-label {
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-top: 2px;
}

.countdown-separator {
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  color: var(--orange-primary);
  opacity: 0.5;
  animation: blink 1s ease-in-out infinite;
}

@keyframes blink {
  0%, 100% { opacity: 0.5; }
  50%      { opacity: 0.2; }
}

.header-divider {
  width: 1px;
  height: 36px;
  background: rgba(255, 255, 255, 0.1);
}

/* ---- LIVE SPOTS COUNTER IN HEADER ---- */
.header-spots {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 14px;
  background: linear-gradient(135deg, rgba(233, 48, 255, 0.2) 0%, rgba(165, 91, 255, 0.2) 100%);
  border: 1px solid rgba(165, 91, 255, 0.4);
  border-radius: 8px;
}

.header-spots-icon {
  font-size: 16px;
  animation: flicker 1.5s ease-in-out infinite;
}

.header-spots-live {
  display: flex;
  align-items: center;
  gap: 5px;
}

.live-dot {
  width: 8px;
  height: 8px;
  background: #ef4444;
  border-radius: 50%;
  animation: live-pulse 1.5s ease-in-out infinite;
  box-shadow: 0 0 8px rgba(239, 68, 68, 0.6);
}

@keyframes live-pulse {
  0%, 100% { opacity: 1;   transform: scale(1);    box-shadow: 0 0 8px rgba(239, 68, 68, 0.6); }
  50%      { opacity: 0.6; transform: scale(0.85); box-shadow: 0 0 12px rgba(239, 68, 68, 0.8); }
}

.live-text {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #ef4444;
}

@keyframes flicker {
  0%, 100% { opacity: 1;   transform: scale(1); }
  50%      { opacity: 0.8; transform: scale(1.1); }
}

.header-spots-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.header-spots-numbers {
  font-family: 'Oswald', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1;
  display: flex;
  align-items: baseline;
}

.header-spots-claimed {
  background: var(--gradient-fire);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.header-spots-separator {
  color: rgba(255, 255, 255, 0.3);
  margin: 0 2px;
  font-size: 0.9rem;
}

.header-spots-total {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
}

.header-spots-label {
  font-size: 9px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--orange-light);
  margin-top: 2px;
}

.header-spots-bar {
  width: 60px;
  height: 4px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
  overflow: hidden;
}

.header-spots-bar-fill {
  height: 100%;
  background: var(--gradient-fire);
  border-radius: 2px;
  width: 0%;
  transition: width 1s ease-out;
  box-shadow: 0 0 6px rgba(165, 91, 255, 0.5);
}

.header-spots.urgent .header-spots-bar-fill {
  animation: pulse-bar 1s ease-in-out infinite;
}

.header-spots.sold-out {
  border-color: rgba(233, 48, 255, 0.6);
  background: linear-gradient(135deg, rgba(233, 48, 255, 0.25) 0%, rgba(107, 33, 199, 0.25) 100%);
}

.header-spots.sold-out .header-spots-label {
  color: var(--red-primary);
}

@keyframes pulse-bar {
  0%, 100% { box-shadow: 0 0 6px rgba(165, 91, 255, 0.5); }
  50%      { box-shadow: 0 0 12px rgba(233, 48, 255, 0.8); }
}

.countdown-cta {
  padding: 8px 18px;
  background: var(--gradient-fire);
  color: var(--text-primary);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-decoration: none;
  border-radius: 4px;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.countdown-cta:hover {
  transform: scale(1.05);
  box-shadow: var(--glow-orange);
}

/* ---- PRIMARY CTA BUTTON ---- */
.cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 20px 56px;
  background: var(--gradient-fire);
  color: var(--text-primary);
  font-family: 'Oswald', sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow:
    0 0 40px rgba(165, 91, 255, 0.3),
    0 4px 15px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  position: relative;
  overflow: hidden;
}

.cta-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
  transition: left 0.5s ease;
}

.cta-primary::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: linear-gradient(180deg, rgba(255,255,255,0.15) 0%, transparent 100%);
  border-radius: 50px 50px 0 0;
  pointer-events: none;
}

.cta-primary:hover::before { left: 100%; }

.cta-primary:hover {
  transform: translateY(-3px);
  box-shadow:
    0 0 60px rgba(165, 91, 255, 0.5),
    0 8px 25px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.cta-primary:active { transform: translateY(-1px); }

.cta-primary span {
  transition: transform 0.3s ease;
  position: relative;
  z-index: 1;
}

.cta-primary:hover span { transform: translateX(4px); }

/* ---- HERO ---- */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 24px 50px;
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 150%;
  height: 50%;
  background: radial-gradient(ellipse at bottom, rgba(165, 91, 255, 0.2) 0%, transparent 70%);
  pointer-events: none;
}

.hero-top {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.hero-trust {
  font-size: 14px;
  color: var(--text-muted);
  letter-spacing: 0.03em;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: linear-gradient(135deg, rgba(233, 48, 255, 0.15) 0%, rgba(165, 91, 255, 0.15) 100%);
  border: 1px solid rgba(165, 91, 255, 0.5);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  color: var(--orange-light);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  animation: pulse-fire 2s ease-in-out infinite;
}

.hero-title {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.hero-subtitle {
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  color: var(--text-secondary);
  max-width: 650px;
  margin: 0 auto 24px;
  line-height: 1.7;
}

.hero-subtitle strong {
  color: var(--orange-bright);
  font-weight: 600;
}

.hero-cta { margin-bottom: 32px; }

.hero-cta-note {
  margin-top: 12px;
  font-size: 13px;
  color: var(--text-muted);
}

.hero-metrics {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-bottom: 48px;
}

.hero-metric {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  background: rgba(165, 91, 255, 0.08);
  border: 1px solid rgba(165, 91, 255, 0.2);
  border-radius: 8px;
  transition: all 0.3s ease;
}

.hero-metric:hover {
  border-color: rgba(165, 91, 255, 0.5);
  transform: translateY(-2px);
}

.hero-metric-bonus {
  border-color: rgba(165, 91, 255, 0.4);
  background: rgba(165, 91, 255, 0.15);
}

.hero-metric-icon { font-size: 20px; }

.hero-metric-text {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
}

.gradient-text {
  background: var(--gradient-fire);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  display: inline-block;
}

.gradient-text-glow {
  filter: drop-shadow(0 0 30px rgba(165, 91, 255, 0.5)) drop-shadow(0 0 60px rgba(233, 48, 255, 0.3));
}

@keyframes pulse-fire {
  0%, 100% { box-shadow: 0 0 20px rgba(165, 91, 255, 0.3); transform: scale(1); }
  50%      { box-shadow: 0 0 40px rgba(165, 91, 255, 0.5); transform: scale(1.02); }
}

.hero-urgency {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--orange-bright);
  margin-bottom: 48px;
  animation: pulse-text 2s ease-in-out infinite;
}

@keyframes pulse-text {
  0%, 100% { opacity: 1; }
  50%      { opacity: 0.7; }
}

/* ---- VIDEO SECTION ---- */
.video-section { padding: 60px 24px 80px; }

.video-section-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.video-bridge {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 12px;
  font-style: italic;
}

.video-trust {
  font-size: 0.95rem;
  color: var(--orange-bright);
  margin-bottom: 32px;
  font-weight: 500;
}

.video-disqualify {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  padding: 16px 24px;
  margin-bottom: 40px;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
}

.video-disqualify p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
}

.video-disqualify strong { color: var(--text-primary); }

.video-outcome {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-top: 24px;
  max-width: 550px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.video-section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 48px;
}

.video-section-header .section-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--orange-bright);
  margin-bottom: 16px;
}

.video-section-header .section-title {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: 16px;
}

.video-section-header .section-description {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.video-intro {
  font-size: 13px;
  color: var(--orange-bright);
  margin-bottom: 20px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.video-container {
  max-width: 800px;
  width: 100%;
  margin: 0 auto 40px;
}

.video-wrapper {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 16px;
  overflow: hidden;
  border: 2px solid rgba(165, 91, 255, 0.5);
  box-shadow: 0 0 100px rgba(165, 91, 255, 0.4), 0 0 150px rgba(233, 48, 255, 0.2);
}

.video-wrapper iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: none;
}

.video-placeholder {
  position: relative;
  padding-bottom: 56.25%;
  background: linear-gradient(135deg, var(--bg-card) 0%, var(--bg-elevated) 100%);
}

.video-placeholder-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: var(--text-muted);
}

.play-button {
  width: 72px;
  height: 72px;
  background: var(--gradient-fire);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: var(--glow-orange);
  position: relative;
}

.play-button::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: var(--gradient-fire);
  opacity: 0.3;
  animation: play-pulse 2s ease-in-out infinite;
}

@keyframes play-pulse {
  0%, 100% { transform: scale(1);   opacity: 0.3; }
  50%      { transform: scale(1.1); opacity: 0.1; }
}

.play-button:hover { transform: scale(1.1); }

.play-button svg {
  width: 28px;
  height: 28px;
  margin-left: 4px;
  position: relative;
  z-index: 1;
}

.video-caption {
  text-align: center;
  margin-top: 20px;
  font-size: 14px;
  color: var(--text-muted);
  font-style: italic;
}

/* ---- GENERIC SECTION HEADER ---- */
.section {
  padding: 120px 24px;
  position: relative;
  z-index: 2;
}

.section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 80px;
}

.section-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--orange-bright);
  margin-bottom: 16px;
}

.section-title {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: 20px;
}

.section-description {
  font-size: 1.125rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ---- MAIN CONTENT WRAPPER ---- */
.main-content {
  position: relative;
  z-index: 2;
  padding-top: 70px;
}
/* =============================================================
   03-SECTIONS.CSS
   Styles for each content section of the page, in page order:
   callout, differentiation, stuck, included, curriculum,
   forge, pricing/waitlist, for-you, transformation, real-talk,
   final-urgency, faq, final-cta, footer
   ============================================================= */

/* ---- CALLOUT SECTION ---- */
.callout-section {
  padding: 100px 24px;
  text-align: center;
  position: relative;
}

.callout-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(165, 91, 255, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.callout-container {
  position: relative;
  max-width: 700px;
  margin: 0 auto;
}

.callout-title {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 24px;
  background: var(--gradient-fire);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.callout-text {
  font-size: clamp(1.125rem, 2.5vw, 1.5rem);
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 24px;
}

.callout-subtext {
  font-size: 1.125rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.callout-subtext strong { color: var(--orange-bright); }

/* ---- DIFFERENTIATION SECTION ---- */
.differentiation-section { padding: 100px 24px; }

.differentiation-container {
  max-width: 900px;
  margin: 0 auto;
}

.diff-header {
  text-align: center;
  margin-bottom: 48px;
}

.diff-header .section-title { margin-bottom: 0; }

.diff-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 48px;
}

.diff-card {
  padding: 32px;
  border-radius: 16px;
}

.diff-card.not {
  background: rgba(233, 48, 255, 0.08);
  border: 1px solid rgba(233, 48, 255, 0.3);
}

.diff-card.is {
  background: rgba(34, 197, 94, 0.08);
  border: 1px solid rgba(34, 197, 94, 0.3);
}

.diff-card h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.diff-card.not h3 { color: var(--red-primary); }
.diff-card.is h3  { color: #22c55e; }

.diff-card ul {
  list-style: none;
  margin-bottom: 20px;
}

.diff-card ul li {
  font-size: 15px;
  color: var(--text-secondary);
  padding: 8px 0;
  padding-left: 28px;
  position: relative;
}

.diff-card.not ul li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--red-primary);
  opacity: 0.6;
}

.diff-card.is ul li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: #22c55e;
}

.diff-note {
  font-size: 13px;
  font-style: italic;
  color: var(--text-muted);
}

.diff-bottom {
  text-align: center;
  font-size: 1.25rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

.diff-bottom strong { color: var(--orange-bright); }

/* ---- MID-PAGE CALLOUT (stat) ---- */
.mid-callout .callout-stat {
  font-size: 1.25rem;
  color: var(--text-secondary);
  margin-bottom: 16px;
}

.mid-callout .stat-number {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(3rem, 8vw, 5rem);
  font-weight: 700;
  background: var(--gradient-fire);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
  line-height: 1;
  margin-bottom: 8px;
  filter: drop-shadow(0 0 30px rgba(165, 91, 255, 0.4));
}

.mid-callout .callout-reason {
  font-size: 1.25rem;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.mid-callout .callout-hook {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-primary);
}

.mid-callout .callout-hook em {
  color: var(--orange-bright);
  font-style: normal;
}

/* ---- STUCK SECTION (pain points) ---- */
.stuck-section {
  background: linear-gradient(180deg, transparent 0%, rgba(233, 48, 255, 0.05) 50%, transparent 100%);
  position: relative;
  overflow: hidden;
}

.stuck-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 40%;
  height: 50%;
  background: radial-gradient(ellipse at 0% 0%, rgba(165, 91, 255, 0.08) 0%, transparent 60%);
  pointer-events: none;
}

.stuck-section::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 40%;
  height: 50%;
  background: radial-gradient(ellipse at 100% 100%, rgba(233, 48, 255, 0.08) 0%, transparent 60%);
  pointer-events: none;
}

.stuck-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.stuck-item {
  position: relative;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  padding: 32px;
  transition: all 0.4s ease;
  overflow: hidden;
}

.stuck-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(165, 91, 255, 0.4), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.stuck-item:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(165, 91, 255, 0.2);
  transform: translateY(-4px);
}

.stuck-item:hover::before { opacity: 1; }

.stuck-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(165, 91, 255, 0.1);
  border: 1px solid rgba(165, 91, 255, 0.2);
  border-radius: 14px;
  margin-bottom: 20px;
}

.stuck-icon svg {
  width: 28px;
  height: 28px;
  color: var(--orange-bright);
}

.stuck-content h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
  color: var(--text-primary);
}

.stuck-content p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 12px;
}

.stuck-content p strong {
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
}

.stuck-pain {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--red-primary);
  padding: 6px 12px;
  background: rgba(233, 48, 255, 0.1);
  border-radius: 6px;
  margin-top: 4px;
}

.stuck-callout {
  text-align: center;
  margin-top: 60px;
  padding: 40px;
  background: linear-gradient(135deg, rgba(165, 91, 255, 0.08) 0%, rgba(233, 48, 255, 0.04) 100%);
  border: 1px solid rgba(165, 91, 255, 0.25);
  border-radius: 16px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
}

.stuck-callout::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--orange-primary), transparent);
  border-radius: 16px 16px 0 0;
}

.stuck-callout p {
  font-size: 1.25rem;
  color: var(--text-secondary);
}

.stuck-callout strong { color: var(--orange-bright); }

.stuck-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
  padding: 14px 28px;
  background: transparent;
  border: 1px solid rgba(165, 91, 255, 0.4);
  border-radius: 10px;
  font-family: 'Oswald', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: var(--orange-bright);
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.stuck-cta:hover {
  background: rgba(165, 91, 255, 0.1);
  border-color: rgba(165, 91, 255, 0.6);
  transform: translateY(-2px);
}

.stuck-cta svg {
  width: 18px;
  height: 18px;
  transition: transform 0.3s ease;
}

.stuck-cta:hover svg { transform: translateX(4px); }

/* ---- WHAT'S INCLUDED ---- */
.included-section {
  background: linear-gradient(180deg, transparent 0%, rgba(165, 91, 255, 0.03) 50%, transparent 100%);
}

.included-stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 760px;
  margin: 0 auto;
}

.included-row {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 26px 30px;
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.included-row::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 3px;
  background: var(--gradient-fire);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.included-row:hover {
  transform: translateX(4px);
  border-color: rgba(165, 91, 255, 0.4);
  box-shadow: 0 12px 36px rgba(0,0,0,0.4), 0 0 28px rgba(165, 91, 255, 0.1);
}

.included-row:hover::before { opacity: 1; }

.included-row.featured {
  border-color: rgba(233, 48, 255, 0.4);
  background:
    radial-gradient(ellipse at 0% 50%, rgba(233, 48, 255, 0.12) 0%, transparent 60%),
    var(--bg-card);
}

.included-row.featured::before { opacity: 1; }

/* icon tile */
/* numbered badge — 01 / 02 / 03 */
.included-num {
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Oswald', sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: #C98BFF;
  background: rgba(165, 91, 255, 0.1);
  border: 1px solid rgba(165, 91, 255, 0.3);
  border-radius: 16px;
  letter-spacing: 0.01em;
}

.included-row.featured .included-num {
  color: #ffffff;
  background: var(--gradient-fire);
  border-color: transparent;
}

/* text block */
.included-body { flex-grow: 1; min-width: 0; }

.included-titlerow {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 10px 14px;
  margin-bottom: 8px;
}

.included-title {
  font-family: 'Oswald', sans-serif;
  font-size: 1.4rem;
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: var(--text-primary);
}

.included-value {
  font-size: 10px;
  font-weight: 700;
  color: var(--orange-bright);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 4px 11px;
  background: rgba(165, 91, 255, 0.12);
  border: 1px solid rgba(165, 91, 255, 0.3);
  border-radius: 100px;
  white-space: nowrap;
}

.included-badge {
  font-size: 10px;
  font-weight: 700;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 4px 11px;
  background: var(--gradient-fire);
  border-radius: 100px;
  white-space: nowrap;
}

.included-description {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.65;
}

@media (max-width: 600px) {
  .included-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding: 24px 22px;
  }
  .included-title { font-size: 1.2rem; }
}

/* ---- CURRICULUM ---- */
.curriculum-section {
  background: linear-gradient(180deg, rgba(233, 48, 255, 0.02) 0%, transparent 50%, rgba(165, 91, 255, 0.02) 100%);
}

.curriculum-accordion {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cur-item {
  position: relative;
  background: var(--bg-card) !important;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

/* linear path: a connecting rail running through the number badges */
.curriculum-accordion {
  position: relative;
}

.curriculum-accordion::before {
  content: '';
  position: absolute;
  left: 47px;            /* lines up with centre of the 46px badge (24px pad + 23px) */
  top: 34px;
  bottom: 34px;
  width: 2px;
  background: linear-gradient(180deg,
    rgba(79, 227, 240, 0.05) 0%,
    rgba(79, 227, 240, 0.35) 12%,
    rgba(79, 227, 240, 0.35) 88%,
    rgba(79, 227, 240, 0.05) 100%);
  z-index: 0;
}

@media (max-width: 560px) {
  .curriculum-accordion::before { left: 36px; }
}

.cur-item:hover {
  border-color: rgba(79, 227, 240, 0.3);
}

.cur-item.open {
  border-color: rgba(79, 227, 240, 0.5) !important;
  background:
    linear-gradient(90deg, rgba(79, 227, 240, 0.06) 0%, transparent 55%),
    var(--bg-card) !important;
  box-shadow: 0 10px 30px rgba(0,0,0,0.4), 0 0 24px rgba(79, 227, 240, 0.1);
}

/* clickable header row */
.cur-head {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 20px 24px;
  background: transparent !important;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: 'Inter', sans-serif;
  position: relative;
  z-index: 1;
}

.cur-num {
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Oswald', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: #8a8aa6;
  background: var(--bg-elevated);
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transition: all 0.3s ease;
}

/* hover: cyan ring */
.cur-item:hover .cur-num {
  border-color: rgba(79, 227, 240, 0.5);
  color: #c8c8da;
}

/* open: solid cyan step marker */
.cur-item.open .cur-num {
  color: #04121a;
  background: #4FE3F0;
  border-color: #4FE3F0;
  box-shadow: 0 0 18px rgba(79, 227, 240, 0.5);
}

.cur-title {
  flex-grow: 1;
  font-family: 'Oswald', sans-serif;
  font-size: 1.15rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--text-primary);
  line-height: 1.25;
  transition: color 0.3s ease;
}

.cur-item.open .cur-title { color: #4FE3F0 !important; }

.cur-chevron {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  color: #5a5a72;
  transition: transform 0.3s ease, color 0.3s ease;
}

.cur-item:hover .cur-chevron { color: #4FE3F0; }
.cur-item.open .cur-chevron { transform: rotate(180deg); color: #4FE3F0; }

/* collapsible body */
.cur-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
  position: relative;
  z-index: 1;
  background: var(--bg-card) !important;
}

.cur-item.open .cur-body { max-height: 360px; }

.cur-topics {
  list-style: none;
  padding: 4px 24px 22px 88px;
}

.cur-topics li {
  font-size: 14px;
  color: var(--text-secondary);
  padding: 6px 0;
  position: relative;
}

.cur-topics li::before {
  content: '\2192';
  position: absolute;
  left: -22px;
  color: #4FE3F0;
  opacity: 0.8;
}

@media (max-width: 560px) {
  .cur-head { padding: 16px 16px; gap: 12px; }
  .cur-num { width: 40px; height: 40px; font-size: 1rem; }
  .cur-title { font-size: 1rem; }
  .cur-topics { padding-left: 60px; padding-right: 16px; }
}
  .cur-topics { padding-left: 60px; padding-right: 16px; }
}

/* ---- THE FORGE — BONUS CALLOUT ---- */
.forge-callout {
  max-width: 880px;
  margin: 0 auto;
  padding: 40px 44px;
  background:
    radial-gradient(ellipse at 100% 0%, rgba(233, 48, 255, 0.12) 0%, transparent 60%),
    var(--bg-card);
  border: 1px solid rgba(165, 91, 255, 0.3);
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 36px;
}

.forge-callout-main { flex-grow: 1; min-width: 0; }

.forge-callout-tag {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #ffffff;
  background: var(--gradient-fire);
  padding: 5px 13px;
  border-radius: 100px;
  margin-bottom: 14px;
}

.forge-callout-title {
  font-family: 'Oswald', sans-serif;
  font-size: 1.7rem;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.2;
  margin-bottom: 10px;
  color: var(--text-primary);
}

.forge-callout-title .gradient-text { display: inline; }

.forge-callout-text {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 16px;
}

.forge-callout-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
}

.forge-callout-list li {
  font-size: 13px;
  color: var(--text-secondary);
  padding-left: 22px;
  position: relative;
}

.forge-callout-list li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  color: var(--orange-bright);
  font-weight: 700;
}

.forge-callout-side {
  flex-shrink: 0;
  text-align: center;
  padding: 20px 26px;
  background: rgba(165, 91, 255, 0.08);
  border: 1px solid rgba(165, 91, 255, 0.25);
  border-radius: 14px;
}

.forge-callout-side-label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.forge-callout-side-value {
  font-family: 'Oswald', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  background: var(--gradient-fire);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.1;
}

.forge-callout-side-note {
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 4px;
}

@media (max-width: 720px) {
  .forge-callout {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    padding: 32px 24px;
  }
  .forge-callout-side { width: 100%; }
}

/* ---- LIGHTBOX ---- */
.lightbox {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  z-index: 10000;
  align-items: center;
  justify-content: center;
  padding: 40px;
  cursor: zoom-out;
}

.lightbox.active { display: flex; }

.lightbox-img {
  max-width: 100%;
  max-height: 100%;
  border-radius: 12px;
  box-shadow: 0 0 60px rgba(165, 91, 255, 0.3);
  animation: lightbox-zoom 0.3s ease;
}

@keyframes lightbox-zoom {
  from { opacity: 0; transform: scale(0.9); }
  to   { opacity: 1; transform: scale(1); }
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 30px;
  background: none;
  border: none;
  color: var(--text-primary);
  font-size: 32px;
  cursor: pointer;
  opacity: 0.7;
  transition: opacity 0.3s ease;
  z-index: 10001;
}

.lightbox-close:hover { opacity: 1; }

/* ---- PRICING / WAITLIST SECTION ---- */
.pricing-section {
  padding: 80px 24px;
  position: relative;
}

.pricing-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at 50% 30%, rgba(165, 91, 255, 0.1) 0%, transparent 60%);
  pointer-events: none;
}

.pricing-container {
  max-width: 480px;
  margin: 0 auto;
  position: relative;
}

.pricing-card {
  background: var(--bg-card);
  border: 2px solid rgba(165, 91, 255, 0.4);
  border-radius: 16px;
  padding: 32px 28px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 60px rgba(165, 91, 255, 0.15), 0 20px 40px rgba(0,0,0,0.5);
}

.pricing-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-fire);
}

.pricing-card::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 0;
  right: 0;
  height: 60px;
  background: linear-gradient(180deg, rgba(165, 91, 255, 0.1) 0%, transparent 100%);
  pointer-events: none;
}

.pricing-timer-inline {
  background: rgba(233, 48, 255, 0.15);
  border: 1px solid rgba(233, 48, 255, 0.3);
  border-radius: 8px;
  padding: 10px 16px;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.pricing-timer-label {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--red-primary);
  margin-bottom: 4px;
}

.pricing-timer-countdown {
  display: flex;
  justify-content: center;
  gap: 16px;
}

.pricing-timer-unit { text-align: center; }

.pricing-timer-value {
  font-family: 'Oswald', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--orange-bright);
}

.pricing-timer-unit-label {
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
}

.pricing-preorder-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 18px;
  background: var(--gradient-fire);
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
  box-shadow: 0 4px 20px rgba(165, 91, 255, 0.4);
}

.pricing-spots-left {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 8px 14px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.pricing-live-indicator {
  display: flex;
  align-items: center;
  gap: 5px;
}

.pricing-spots-left .spots-text {
  font-size: 11px;
  color: var(--text-secondary);
}

.pricing-spots-left .spots-text strong { color: var(--orange-bright); }

.pricing-title {
  font-family: 'Oswald', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 4px;
  position: relative;
  z-index: 1;
}

.pricing-subtitle {
  font-size: 12px;
  color: var(--text-secondary);
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.pricing-amount {
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.pricing-original {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 4px;
}

.pricing-original .original-price {
  font-family: 'Oswald', sans-serif;
  font-size: 1.1rem;
  color: var(--text-muted);
  text-decoration: line-through;
}

.pricing-original .discount-badge {
  background: var(--gradient-fire);
  padding: 3px 8px;
  border-radius: 3px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.pricing-price {
  font-family: 'Oswald', sans-serif;
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1;
  background: var(--gradient-fire);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 20px rgba(165, 91, 255, 0.3));
}

.pricing-price .currency {
  font-size: 1.75rem;
  vertical-align: super;
  margin-right: 2px;
}

.pricing-period {
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 4px;
}

.pricing-or {
  font-size: 11px;
  color: var(--text-muted);
  margin: 10px 0;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.pricing-payment-plan {
  background: rgba(165, 91, 255, 0.1);
  border: 1px solid rgba(165, 91, 255, 0.3);
  border-radius: 8px;
  padding: 10px 16px;
  display: inline-block;
}

.pricing-payment-plan .plan-price {
  display: block;
  font-family: 'Oswald', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--orange-bright);
  margin-bottom: 2px;
}

.pricing-payment-plan .plan-label {
  font-size: 10px;
  color: var(--text-secondary);
}

.pricing-value-breakdown {
  background: rgba(165, 91, 255, 0.08);
  border-radius: 10px;
  padding: 16px;
  margin-bottom: 16px;
  text-align: left;
  position: relative;
  z-index: 1;
}

.value-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.value-item:last-child { border-bottom: none; }

.value-item-name {
  font-size: 11px;
  color: var(--text-secondary);
}

.value-item-price {
  font-size: 11px;
  font-weight: 700;
  color: var(--orange-bright);
}

.value-item-bonus {
  background: rgba(165, 91, 255, 0.1);
  margin: 4px -8px;
  padding: 8px;
  border-radius: 6px;
  border: 1px dashed rgba(165, 91, 255, 0.3);
}

.value-item-bonus .value-item-price {
  color: var(--red-primary);
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.value-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 10px;
  margin-top: 8px;
  border-top: 2px solid rgba(165, 91, 255, 0.3);
}

.value-total-label {
  font-weight: 700;
  font-size: 0.9rem;
}

.value-total-amount {
  font-family: 'Oswald', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  background: var(--gradient-fire);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.value-you-pay {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.value-you-pay span {
  font-size: 11px;
  color: var(--text-secondary);
}

.value-you-pay strong {
  font-family: 'Oswald', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #22c55e;
}

.pricing-features {
  list-style: none;
  margin-bottom: 16px;
  text-align: left;
  position: relative;
  z-index: 1;
}

.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 6px 0;
  font-size: 12px;
}

.pricing-features li svg {
  width: 16px;
  height: 16px;
  color: var(--orange-bright);
  flex-shrink: 0;
  margin-top: 1px;
}

.pricing-feature-bonus {
  background: rgba(165, 91, 255, 0.1);
  margin: 4px -10px 0;
  padding: 8px 10px;
  border-radius: 6px;
  border: 1px dashed rgba(165, 91, 255, 0.3);
}

.pricing-feature-bonus em {
  color: var(--orange-bright);
  font-style: normal;
  font-weight: 600;
  font-size: 10px;
}

.pricing-cta {
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}

.pricing-cta .cta-primary {
  width: 100%;
  justify-content: center;
  padding: 14px 32px;
  font-size: 1rem;
}

.pricing-payment-note {
  margin-top: 8px;
  font-size: 10px;
  color: var(--text-muted);
  text-align: center;
}

.pricing-payment-note strong,
.hero-cta-note strong {
  color: #FFB3C7;
  font-weight: 700;
}

.klarna-link {
  color: #FFB3C7;
  font-weight: 700;
  text-decoration: underline;
  transition: all 0.3s ease;
}

.klarna-link:hover {
  color: #ffffff;
  text-decoration: none;
}

.pricing-spots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 11px;
  color: var(--orange-bright);
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
}

.pricing-start-date {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 11px;
  color: var(--text-muted);
  position: relative;
  z-index: 1;
}

.pricing-start-date svg {
  width: 14px;
  height: 14px;
  color: var(--orange-primary);
}

.pricing-guarantee {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 10px;
  color: var(--text-muted);
  position: relative;
  z-index: 1;
}

/* ---- FOR YOU SECTION ---- */
.for-you-section {
  background: linear-gradient(180deg, transparent 0%, rgba(165, 91, 255, 0.03) 50%, transparent 100%);
}

.for-you-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  max-width: 900px;
  margin: 0 auto 60px;
}

.for-you-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 24px;
  border-radius: 10px;
  transition: all 0.3s ease;
}

.for-you-item.yes {
  background: rgba(34, 197, 94, 0.08);
  border: 1px solid rgba(34, 197, 94, 0.2);
}

.for-you-item.yes:hover {
  border-color: rgba(34, 197, 94, 0.4);
  transform: translateX(4px);
}

.for-you-item.yes .for-you-icon {
  color: #22c55e;
  font-weight: 700;
  font-size: 18px;
}

.for-you-item.no {
  background: rgba(233, 48, 255, 0.08);
  border: 1px solid rgba(233, 48, 255, 0.2);
}

.for-you-item.no .for-you-icon {
  color: var(--red-primary);
  font-weight: 700;
  font-size: 18px;
}

.for-you-item p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.5;
}

.not-for-you-container {
  max-width: 900px;
  margin: 0 auto;
}

.not-for-you-title {
  font-family: 'Oswald', sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 24px;
  color: var(--text-secondary);
}

.not-for-you-title span { color: var(--red-primary); }

.not-for-you-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

/* ---- TRANSFORMATION SECTION ---- */
.transformation-section { padding: 80px 24px; }

.transformation-container {
  display: flex;
  align-items: stretch;
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
}

.transformation-before,
.transformation-after {
  flex: 1;
  padding: 32px;
  border-radius: 16px;
}

.transformation-before {
  background: rgba(233, 48, 255, 0.08);
  border: 1px solid rgba(233, 48, 255, 0.3);
}

.transformation-after {
  background: rgba(34, 197, 94, 0.08);
  border: 1px solid rgba(34, 197, 94, 0.3);
}

.transformation-label {
  display: block;
  font-family: 'Oswald', sans-serif;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 20px;
}

.transformation-before .transformation-label { color: var(--red-primary); }
.transformation-after .transformation-label  { color: #22c55e; }

.transformation-before ul,
.transformation-after ul { list-style: none; }

.transformation-before li,
.transformation-after li {
  font-size: 14px;
  color: var(--text-secondary);
  padding: 8px 0;
  padding-left: 24px;
  position: relative;
}

.transformation-before li::before {
  content: '✕';
  position: absolute;
  left: 0;
  color: var(--red-primary);
  font-weight: 700;
}

.transformation-after li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #22c55e;
  font-weight: 700;
}

.transformation-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.transformation-arrow span {
  font-size: 3rem;
  background: var(--gradient-fire);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
}

/* ---- REAL TALK SECTION ---- */
.real-talk-section { padding: 80px 24px; }

.real-talk-container {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  padding: 40px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px;
}

.real-talk-container h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.real-talk-container p {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 16px;
}

.real-talk-container p em {
  color: var(--text-primary);
  font-style: normal;
}

.real-talk-container p strong { color: var(--orange-bright); }

.real-talk-closer {
  font-size: 1.125rem !important;
  color: var(--text-primary) !important;
  margin-bottom: 0 !important;
}

/* ---- FINAL URGENCY SECTION ---- */
.final-urgency-section {
  padding: 100px 24px;
  background: linear-gradient(180deg, transparent 0%, rgba(233, 48, 255, 0.05) 50%, transparent 100%);
}

.final-urgency-container {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.urgency-question h3 {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 40px;
  color: var(--text-primary);
}

.urgency-paths {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 48px;
}

.urgency-path {
  padding: 32px;
  border-radius: 16px;
  text-align: left;
}

.urgency-path.bad {
  background: rgba(233, 48, 255, 0.08);
  border: 1px solid rgba(233, 48, 255, 0.3);
}

.urgency-path.good {
  background: rgba(34, 197, 94, 0.08);
  border: 1px solid rgba(34, 197, 94, 0.3);
}

.path-label {
  display: block;
  font-family: 'Oswald', sans-serif;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}

.urgency-path.bad .path-label  { color: var(--red-primary); }
.urgency-path.good .path-label { color: #22c55e; }

.urgency-path p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
}

.urgency-closer {
  font-size: 1.25rem;
  color: var(--text-secondary);
}

.urgency-closer strong { color: var(--orange-bright); }

/* ---- FAQ ---- */
.faq-section { padding: 120px 24px; }

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  margin-bottom: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover { border-color: rgba(165, 91, 255, 0.2); }
.faq-item.active { border-color: rgba(165, 91, 255, 0.4); }

.faq-question {
  width: 100%;
  padding: 24px 28px;
  background: transparent;
  border: none;
  color: var(--text-primary);
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color 0.3s ease;
}

.faq-question:hover { color: var(--orange-bright); }

.faq-question svg {
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
  flex-shrink: 0;
  margin-left: 16px;
  color: var(--orange-primary);
}

.faq-item.active .faq-question svg { transform: rotate(180deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer { max-height: 500px; }

.faq-answer-content {
  padding: 0 28px 28px;
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ---- FINAL CTA ---- */
.final-cta-section {
  padding: 140px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.final-cta-section::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 150%;
  height: 60%;
  background: radial-gradient(ellipse at bottom, rgba(165, 91, 255, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.final-cta-urgency {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: rgba(233, 48, 255, 0.15);
  border: 1px solid rgba(233, 48, 255, 0.3);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 700;
  color: var(--orange-bright);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 24px;
  animation: pulse-fire 2s ease-in-out infinite;
}

.final-cta-title {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.final-cta-subtitle {
  font-size: 1.25rem;
  color: var(--text-secondary);
  max-width: 550px;
  margin: 0 auto 40px;
  position: relative;
  z-index: 1;
}

.final-cta-section .cta-primary {
  position: relative;
  z-index: 1;
}

.final-cta-note {
  margin-top: 16px;
  font-size: 14px;
  color: var(--text-muted);
  position: relative;
  z-index: 1;
}

/* ---- FOOTER ---- */
.footer {
  padding: 48px 24px;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  position: relative;
  z-index: 2;
}

.footer-text {
  font-size: 14px;
  color: var(--text-muted);
}

.footer-text a {
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-text a:hover { color: var(--orange-bright); }

/* ---- WAITLIST POPUP ---- */
.waitlist-popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 10000;
  align-items: center;
  justify-content: center;
}

.waitlist-popup.active { display: flex; }

.waitlist-popup-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(4px);
}

.waitlist-popup-content {
  position: relative;
  background: linear-gradient(180deg, #0f0f0f 0%, #0a0a0a 100%);
  border: 1px solid rgba(165, 91, 255, 0.3);
  border-radius: 20px;
  padding: 40px;
  max-width: 420px;
  width: 90%;
  text-align: center;
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.6), 0 0 60px rgba(165, 91, 255, 0.15);
  animation: popupSlideIn 0.3s ease;
}

@keyframes popupSlideIn {
  from { opacity: 0; transform: translateY(-20px) scale(0.95); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

.waitlist-popup-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 32px;
  height: 32px;
  border: none;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  color: var(--text-muted);
  font-size: 18px;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.waitlist-popup-close:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--text-primary);
}

.waitlist-popup-header { margin-bottom: 28px; }

.waitlist-popup-badge {
  display: inline-block;
  padding: 6px 14px;
  background: rgba(165, 91, 255, 0.15);
  border: 1px solid rgba(165, 91, 255, 0.3);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  color: var(--orange-bright);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 16px;
}

.waitlist-popup-title {
  font-family: 'Oswald', sans-serif;
  font-size: 1.75rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 8px;
  background: var(--gradient-fire);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.waitlist-popup-subtitle {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
}

.waitlist-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.waitlist-input-group input {
  width: 100%;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  font-size: 15px;
  color: var(--text-primary);
  transition: all 0.2s ease;
}

.waitlist-input-group input::placeholder { color: var(--text-muted); }

.waitlist-input-group input:focus {
  outline: none;
  border-color: rgba(165, 91, 255, 0.5);
  background: rgba(255, 255, 255, 0.05);
}

.waitlist-submit {
  width: 100%;
  padding: 16px 24px;
  background: var(--gradient-fire);
  border: none;
  border-radius: 10px;
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: white;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 8px;
}

.waitlist-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(165, 91, 255, 0.4);
}

.waitlist-submit:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

.waitlist-privacy {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 12px;
}

.waitlist-success { padding: 20px; }

.waitlist-success-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 16px;
  background: var(--gradient-fire);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: white;
}

.waitlist-success h4 {
  font-family: 'Oswald', sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 8px;
  color: var(--orange-bright);
}

.waitlist-success p {
  font-size: 14px;
  color: var(--text-secondary);
}
/* =============================================================
   04-RESPONSIVE.CSS
   All media queries, kept together so layout breakpoints
   are easy to find and tune in one place.
   ============================================================= */

/* ---- COUNTDOWN BAR / HEADER ---- */
@media (max-width: 900px) {
  .countdown-bar {
    flex-wrap: wrap;
    gap: 10px;
    padding: 8px 16px;
  }
  .countdown-label { font-size: 10px; }
  .countdown-value { font-size: 1rem; }
  .header-divider { display: none; }
  .header-spots {
    order: -1;
    width: 100%;
    justify-content: center;
    padding: 8px 16px;
  }
  .countdown-cta { display: none; }
}

@media (max-width: 600px) {
  .countdown-bar { gap: 8px; padding: 6px 12px; }
  .countdown-label {
    font-size: 9px;
    width: 100%;
    text-align: center;
  }
  .countdown-timer { gap: 8px; }
  .countdown-unit { min-width: 32px; }
  .countdown-value { font-size: 0.9rem; }
  .countdown-unit-label { font-size: 8px; }
  .header-spots { padding: 6px 12px; }
  .header-spots-numbers { font-size: 1rem; }
}

/* ---- GRID COLLAPSE BREAKPOINTS ---- */
@media (max-width: 768px) {
  .diff-grid { grid-template-columns: 1fr; }
  .stuck-grid { grid-template-columns: 1fr; }
  .for-you-grid { grid-template-columns: 1fr; }
  .not-for-you-grid { grid-template-columns: 1fr; }
  .urgency-paths { grid-template-columns: 1fr; }
}

@media (max-width: 900px) {
  .transformation-container {
    flex-direction: column;
    gap: 24px;
  }
  .transformation-arrow { transform: rotate(90deg); }
}

@media (max-width: 1000px) {
}

@media (max-width: 650px) {
}

/* ---- GENERAL MOBILE ---- */
@media (max-width: 768px) {
  .hero { padding: 60px 20px; }
  .section { padding: 80px 20px; }

  .cta-primary {
    padding: 16px 32px;
    font-size: 1rem;
  }
  .pricing-cta .cta-primary {
    padding: 18px 24px;
    font-size: 1.1rem;
  }

  .hero-metrics {
    flex-direction: column;
    align-items: center;
  }
  .hero-metric {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }

  .pricing-card { padding: 24px 16px; }
  .pricing-price { font-size: 2.5rem; }

  .week-topics {
    padding-left: 0;
    margin-top: 12px;
  }

}

@media (max-width: 480px) {
  .cta-primary {
    padding: 12px 20px;
    font-size: 0.85rem;
    gap: 6px;
  }
  .pricing-cta .cta-primary {
    padding: 12px 16px;
    font-size: 0.9rem;
  }
  .hero-title { font-size: 1.75rem; }
  .pricing-price { font-size: 2.25rem; }
}

/* =============================================================
   ENROLLMENT-BAR.CSS
   ProveSource-style "Just Enrolled" sticky bar — full width,
   pinned to the very bottom of the screen.
   ============================================================= */
.enroll-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 12px 48px 12px 20px;
  background: linear-gradient(90deg, #0a0a0a 0%, #141414 50%, #0a0a0a 100%);
  border-top: 1px solid rgba(165, 91, 255, 0.4);
  box-shadow: 0 -8px 30px rgba(0, 0, 0, 0.5);
  font-family: 'Inter', sans-serif;
  transform: translateY(110%);
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.enroll-bar.visible { transform: translateY(0); }

.enroll-bar-icon {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  background: linear-gradient(135deg, rgba(233, 48, 255, 0.25) 0%, rgba(165, 91, 255, 0.25) 100%);
  border: 1px solid rgba(165, 91, 255, 0.35);
  border-radius: 9px;
}

.enroll-bar-text {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
  font-size: 14px;
  color: #d4d4d4;
  line-height: 1.4;
}

.enroll-bar-flag { font-size: 17px; line-height: 1; }

.enroll-bar-name {
  font-weight: 700;
  color: #ffffff;
}

.enroll-bar-action { color: #a3a3a3; }

.enroll-bar-divider {
  width: 1px;
  height: 22px;
  background: rgba(255, 255, 255, 0.12);
  margin: 0 4px;
}

.enroll-bar-spots {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Oswald', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: #E930FF;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.enroll-bar-spots strong {
  font-size: 16px;
  color: #ffffff;
}

.enroll-bar-spots.low strong { color: #f87171; }

.enroll-bar-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 8px rgba(34, 197, 94, 0.7);
  animation: enroll-bar-pulse 1.6s ease-in-out infinite;
}

@keyframes enroll-bar-pulse {
  0%, 100% { opacity: 1;   transform: scale(1); }
  50%      { opacity: 0.5; transform: scale(0.8); }
}

.enroll-bar-close {
  position: absolute;
  top: 50%;
  right: 14px;
  transform: translateY(-50%);
  width: 26px;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.05);
  border: none;
  border-radius: 50%;
  color: #737373;
  font-size: 16px;
  line-height: 1;
  cursor: pointer;
  transition: all 0.2s ease;
}

.enroll-bar-close:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
}

@media (max-width: 640px) {
  .enroll-bar {
    gap: 10px;
    padding: 10px 40px 10px 14px;
  }
  .enroll-bar-icon { width: 32px; height: 32px; font-size: 17px; }
  .enroll-bar-text { font-size: 12px; gap: 6px; }
  .enroll-bar-divider { display: none; }
  .enroll-bar-spots { font-size: 11px; }
  .enroll-bar-spots strong { font-size: 14px; }
}

/* =============================================================
   REVIEWS.CSS
   Student testimonials — featured video reviews + text reviews
   ============================================================= */
.reviews-section {
  background: linear-gradient(180deg, transparent 0%, rgba(165, 91, 255, 0.04) 50%, transparent 100%);
}

/* ---- video reviews grid ---- */
.reviews-video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto 56px;
}

@media (max-width: 900px) {
  .reviews-video-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .reviews-video-grid { grid-template-columns: 1fr; max-width: 420px; }
}

.review-video-card {
  background: var(--bg-card);
  border: 1px solid rgba(165, 91, 255, 0.18);
  border-radius: 14px;
  overflow: hidden;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.review-video-card:hover {
  border-color: rgba(233, 48, 255, 0.5);
  transform: translateY(-5px);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.45), 0 0 32px rgba(165, 91, 255, 0.12);
}

.review-video-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 9 / 16;
  background: var(--bg-elevated);
  max-height: 420px;
}

.review-video-wrap video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.review-video-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
}

.review-video-avatar {
  width: 38px;
  height: 38px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--gradient-fire);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: #fff;
}

.review-video-nameblock { min-width: 0; }

.review-video-name {
  font-family: 'Oswald', sans-serif;
  font-size: 15px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--text-primary);
  line-height: 1.2;
}

.review-video-artist {
  font-size: 12px;
  color: var(--orange-bright);
  font-weight: 600;
}

.review-video-stars {
  margin-left: auto;
  font-size: 12px;
  color: #E930FF;
  letter-spacing: 1px;
  flex-shrink: 0;
}

/* ---- text reviews ---- */
.reviews-text-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .reviews-text-grid { grid-template-columns: 1fr; }
}

.review-text-card {
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 14px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
}

.review-text-card:hover {
  border-color: rgba(165, 91, 255, 0.35);
  transform: translateY(-3px);
}

.review-text-stars {
  font-size: 14px;
  color: #E930FF;
  letter-spacing: 2px;
  margin-bottom: 14px;
}

.review-text-body {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 18px;
  flex-grow: 1;
}

.review-text-body p { margin-bottom: 10px; }
.review-text-body p:last-child { margin-bottom: 0; }

.review-text-foot {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.review-text-avatar {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--gradient-fire);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: #fff;
}

.review-text-name {
  font-family: 'Oswald', sans-serif;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--text-primary);
  line-height: 1.2;
}

.review-text-artist {
  font-size: 13px;
  color: var(--orange-bright);
  font-weight: 600;
}

/* =============================================================
   FOUNDER.CSS
   "Who's behind this" credibility section
   ============================================================= */
.founder-section {
  background: linear-gradient(180deg, transparent 0%, rgba(165, 91, 255, 0.04) 50%, transparent 100%);
}

.founder-wrap {
  max-width: 980px;
  margin: 0 auto;
  display: flex;
  gap: 44px;
  align-items: center;
}

.founder-portrait {
  flex-shrink: 0;
  width: 300px;
  align-self: stretch;
  min-height: 360px;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(165, 91, 255, 0.3);
  background:
    radial-gradient(ellipse at 50% 0%, rgba(233, 48, 255, 0.15) 0%, transparent 70%),
    var(--bg-elevated);
  position: relative;
}

.founder-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* shown until a real photo is dropped in */
.founder-portrait-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 24px;
  color: var(--text-muted);
}

.founder-portrait-placeholder .fp-mark {
  font-family: 'Oswald', sans-serif;
  font-size: 3rem;
  font-weight: 700;
  background: var(--gradient-fire);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 8px;
}

.founder-portrait-placeholder .fp-note {
  font-size: 11px;
  line-height: 1.5;
}

.founder-body { flex-grow: 1; min-width: 0; }

.founder-eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--orange-bright);
  margin-bottom: 14px;
}

.founder-name {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.1;
  margin-bottom: 16px;
}

.founder-text {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 14px;
}

.founder-text strong { color: var(--text-primary); font-weight: 600; }

.founder-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.founder-stat {
  flex: 1 1 auto;
  min-width: 120px;
  padding: 14px 18px;
  background: rgba(165, 91, 255, 0.08);
  border: 1px solid rgba(165, 91, 255, 0.25);
  border-radius: 12px;
}

.founder-stat-num {
  font-family: 'Oswald', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  background: var(--gradient-fire);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 4px;
}

.founder-stat-label {
  font-size: 11px;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.founder-festivals {
  margin-top: 18px;
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.7;
}

.founder-festivals strong {
  color: var(--orange-light);
  font-weight: 600;
}

@media (max-width: 768px) {
  .founder-wrap {
    flex-direction: column;
    gap: 28px;
  }
  .founder-portrait {
    width: 100%;
    max-width: 320px;
    min-height: 320px;
  }
  .founder-body { text-align: center; }
  .founder-stats { justify-content: center; }
}

/* =============================================================
   PAGE NAV (was inline per-file, now global)
   ============================================================= */
.adp-nav {
  position: relative;
  z-index: 3;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  padding: 16px 24px 0;
}
.adp-nav a {
  font-family: 'Oswald', sans-serif;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: #a3a3a3;
  text-decoration: none;
  padding: 8px 16px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 100px;
  transition: all .25s ease;
}
.adp-nav a:hover {
  color: #E930FF;
  border-color: rgba(165,91,255,.5);
}
.adp-nav a.adp-nav-current {
  color: #fff;
  background: linear-gradient(135deg,#E930FF,#A55BFF 50%,#FF66C4);
  border-color: transparent;
}/* End custom CSS */