/* ============================================
   LIST BUILDING LOOPHOLE — SALES PAGE CSS
   Premium WarriorPlus Direct Response Design
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Outfit:wght@400;500;600;700;800;900&family=JetBrains+Mono:wght@400;500;600&display=swap');

/* ── Design Tokens ── */
:root {
  /* Core Palette */
  --bg-deep: #050510;
  --bg-primary: #0a0a1a;
  --bg-secondary: #0d0d25;
  --bg-card: rgba(15, 15, 40, 0.7);
  --bg-card-hover: rgba(20, 20, 55, 0.85);
  --bg-glass: rgba(255, 255, 255, 0.03);
  --bg-glass-border: rgba(255, 255, 255, 0.08);

  /* Accent Colors */
  --accent-cyan: #00d4ff;
  --accent-blue: #0099ff;
  --accent-purple: #7c3aed;
  --accent-magenta: #e040fb;
  --accent-green: #00e676;

  /* CTA Colors */
  --cta-primary: #ff6b00;
  --cta-hover: #ff8c33;
  --cta-glow: rgba(255, 107, 0, 0.5);
  --cta-secondary: #ffc107;
  --cta-danger: #ff3d00;

  /* Text */
  --text-primary: #ffffff;
  --text-secondary: rgba(255, 255, 255, 0.75);
  --text-muted: rgba(255, 255, 255, 0.5);
  --text-highlight: #00d4ff;
  --text-warning: #ffc107;
  --text-success: #00e676;

  /* Gradients */
  --gradient-hero: linear-gradient(135deg, #050510 0%, #0d0d35 40%, #1a0a2e 70%, #050510 100%);
  --gradient-section: linear-gradient(180deg, #0a0a1a 0%, #0d0d2a 50%, #0a0a1a 100%);
  --gradient-accent: linear-gradient(135deg, #00d4ff, #7c3aed, #e040fb);
  --gradient-cta: linear-gradient(135deg, #ff6b00, #ff3d00);
  --gradient-cta-hover: linear-gradient(135deg, #ff8c33, #ff6b00);
  --gradient-value: linear-gradient(135deg, #00d4ff 0%, #0099ff 100%);
  --gradient-gold: linear-gradient(135deg, #ffc107, #ff9800);

  /* Spacing */
  --section-pad: clamp(60px, 8vw, 120px);
  --container-max: 1100px;
  --container-narrow: 850px;

  /* Borders */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;

  /* Shadows */
  --shadow-card: 0 4px 30px rgba(0, 0, 0, 0.4);
  --shadow-glow-cyan: 0 0 40px rgba(0, 212, 255, 0.15);
  --shadow-glow-cta: 0 0 40px rgba(255, 107, 0, 0.3);
  --shadow-glow-purple: 0 0 40px rgba(124, 58, 237, 0.2);

  /* Typography */
  --font-display: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
}

/* ── Reset & Base ── */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  background: var(--bg-deep);
  color: var(--text-secondary);
  line-height: 1.7;
  overflow-x: hidden;
  font-size: 17px;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--accent-cyan);
  text-decoration: none;
  transition: color 0.3s;
}

a:hover {
  color: var(--accent-magenta);
}

/* ── Container ── */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

.container--narrow {
  max-width: var(--container-narrow);
}

/* ── Section Base ── */
.section {
  padding: var(--section-pad) 0;
  position: relative;
}

.section--dark {
  background: var(--bg-primary);
}

.section--gradient {
  background: var(--gradient-section);
}

.section--hero {
  background: var(--gradient-hero);
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 40px;
  padding-bottom: 40px;
  overflow: hidden;
}

/* ── Animated Background Elements ── */
.bg-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.15;
  pointer-events: none;
  animation: orbFloat 12s ease-in-out infinite;
}

.bg-orb--1 {
  width: 500px;
  height: 500px;
  background: var(--accent-cyan);
  top: -100px;
  right: -100px;
  animation-delay: 0s;
}

.bg-orb--2 {
  width: 400px;
  height: 400px;
  background: var(--accent-purple);
  bottom: -50px;
  left: -100px;
  animation-delay: -4s;
}

.bg-orb--3 {
  width: 300px;
  height: 300px;
  background: var(--accent-magenta);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation-delay: -8s;
  opacity: 0.08;
}

@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -20px) scale(1.05); }
  66% { transform: translate(-20px, 20px) scale(0.95); }
}

/* Grid pattern overlay */
.bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

/* ── Typography ── */
.headline {
  font-family: var(--font-display);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--text-primary);
}

.headline--hero {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  margin-bottom: 24px;
}

.headline--section {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  margin-bottom: 20px;
  text-align: center;
}

.headline--sub {
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  margin-bottom: 16px;
}

.headline .highlight {
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.headline .highlight--gold {
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.headline .highlight--green {
  color: var(--text-success);
  -webkit-text-fill-color: var(--text-success);
}

.subheadline {
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  color: var(--text-secondary);
  line-height: 1.6;
  max-width: 700px;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent-cyan);
  margin-bottom: 16px;
  padding: 6px 16px;
  background: rgba(0, 212, 255, 0.08);
  border: 1px solid rgba(0, 212, 255, 0.2);
  border-radius: 100px;
}

.section-label::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--accent-cyan);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

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

.text-center {
  text-align: center;
}

.text-highlight {
  color: var(--text-highlight);
}

.text-warning {
  color: var(--text-warning);
}

/* ── CTA Buttons ── */
.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 18px 42px;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #fff;
  background: var(--gradient-cta);
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-glow-cta);
  animation: ctaPulse 3s ease-in-out infinite;
}

.cta-btn:hover {
  background: var(--gradient-cta-hover);
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 0 60px rgba(255, 107, 0, 0.5);
  color: #fff;
}

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

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

@keyframes ctaPulse {
  0%, 100% { box-shadow: 0 0 20px rgba(255, 107, 0, 0.3); }
  50% { box-shadow: 0 0 40px rgba(255, 107, 0, 0.5); }
}

.cta-btn--large {
  padding: 22px 56px;
  font-size: 1.3rem;
  border-radius: var(--radius-lg);
}

.cta-btn--secondary {
  background: transparent;
  border: 2px solid var(--accent-cyan);
  color: var(--accent-cyan);
  box-shadow: none;
  animation: none;
}

.cta-btn--secondary:hover {
  background: rgba(0, 212, 255, 0.1);
  color: var(--accent-cyan);
  box-shadow: var(--shadow-glow-cyan);
}

.cta-sub {
  display: block;
  text-align: center;
  margin-top: 12px;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.cta-wrapper {
  text-align: center;
  margin: 40px 0;
}

/* ── Hero Specific ── */
.hero-content {
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: rgba(255, 107, 0, 0.12);
  border: 1px solid rgba(255, 107, 0, 0.3);
  border-radius: 100px;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--cta-primary);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 24px;
  animation: fadeInDown 0.8s ease;
}

.hero-badge .emoji {
  font-size: 1rem;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
  animation: fadeInUp 1s ease 0.6s both;
}

.hero-stat {
  text-align: center;
  padding: 24px 16px;
  background: var(--bg-glass);
  border: 1px solid var(--bg-glass-border);
  border-radius: var(--radius-md);
  backdrop-filter: blur(10px);
}

.hero-stat__number {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 900;
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-stat__label {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* Hero mockup area */
.hero-mockup {
  margin-top: 50px;
  position: relative;
  animation: fadeInUp 1s ease 0.8s both;
}

.mockup-frame {
  background: var(--bg-card);
  border: 1px solid var(--bg-glass-border);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-card), var(--shadow-glow-cyan);
  position: relative;
  overflow: hidden;
}

.mockup-frame::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--gradient-accent);
}

.mockup-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--bg-glass-border);
}

.mockup-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.mockup-dot--red { background: #ff5f57; }
.mockup-dot--yellow { background: #ffbd2e; }
.mockup-dot--green { background: #28c840; }

.mockup-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.mockup-chart {
  background: rgba(0, 212, 255, 0.05);
  border: 1px solid rgba(0, 212, 255, 0.1);
  border-radius: var(--radius-sm);
  padding: 20px;
  position: relative;
  min-height: 160px;
}

.mockup-chart__title {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.mockup-chart__value {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--accent-cyan);
}

.mockup-chart__subvalue {
  font-size: 0.8rem;
  color: var(--text-success);
  margin-top: 4px;
}

/* Bar chart visual */
.bar-chart {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  height: 70px;
  margin-top: 12px;
}

.bar-chart__bar {
  flex: 1;
  background: linear-gradient(to top, var(--accent-cyan), var(--accent-blue));
  border-radius: 3px 3px 0 0;
  animation: barGrow 1.5s ease forwards;
  opacity: 0.7;
}

@keyframes barGrow {
  from { height: 0; }
}

.bar-chart__bar:nth-child(1) { height: 30%; animation-delay: 0.1s; }
.bar-chart__bar:nth-child(2) { height: 45%; animation-delay: 0.2s; }
.bar-chart__bar:nth-child(3) { height: 35%; animation-delay: 0.3s; }
.bar-chart__bar:nth-child(4) { height: 60%; animation-delay: 0.4s; }
.bar-chart__bar:nth-child(5) { height: 50%; animation-delay: 0.5s; }
.bar-chart__bar:nth-child(6) { height: 75%; animation-delay: 0.6s; }
.bar-chart__bar:nth-child(7) { height: 85%; animation-delay: 0.7s; }
.bar-chart__bar:nth-child(8) { height: 95%; animation-delay: 0.8s; }

/* ── Problem Section ── */
.problem-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.problem-card {
  background: var(--bg-card);
  border: 1px solid rgba(255, 61, 0, 0.15);
  border-radius: var(--radius-md);
  padding: 28px;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

.problem-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #ff3d00, #ff6b00);
  opacity: 0.6;
}

.problem-card:hover {
  border-color: rgba(255, 61, 0, 0.3);
  transform: translateY(-4px);
  box-shadow: 0 10px 40px rgba(255, 61, 0, 0.1);
}

.problem-card__icon {
  font-size: 2rem;
  margin-bottom: 16px;
}

.problem-card__title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 10px;
}

.problem-card__desc {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Emotional story block */
.story-block {
  max-width: 750px;
  margin: 48px auto 0;
  padding: 36px;
  background: var(--bg-glass);
  border-left: 4px solid var(--cta-danger);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-secondary);
  font-style: italic;
}

/* ── Opportunity Section ── */
.opportunity-intro {
  max-width: 800px;
  margin: 0 auto 50px;
  text-align: center;
}

.opp-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.opp-card {
  background: var(--bg-card);
  border: 1px solid rgba(0, 212, 255, 0.1);
  border-radius: var(--radius-md);
  padding: 28px;
  text-align: center;
  transition: all 0.3s;
}

.opp-card:hover {
  border-color: rgba(0, 212, 255, 0.3);
  transform: translateY(-4px);
  box-shadow: var(--shadow-glow-cyan);
}

.opp-card__icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
  background: rgba(0, 212, 255, 0.1);
  border: 1px solid rgba(0, 212, 255, 0.2);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.opp-card__title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.opp-card__desc {
  font-size: 0.88rem;
  color: var(--text-muted);
}

/* ── Benefit Bullets ── */
.bullets-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
  gap: 14px;
  margin-top: 40px;
}

.bullet-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 20px;
  background: var(--bg-glass);
  border: 1px solid var(--bg-glass-border);
  border-radius: var(--radius-sm);
  transition: all 0.3s;
}

.bullet-item:hover {
  background: rgba(0, 212, 255, 0.04);
  border-color: rgba(0, 212, 255, 0.15);
  transform: translateX(4px);
}

.bullet-item__check {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  background: rgba(0, 230, 118, 0.15);
  border: 1px solid rgba(0, 230, 118, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-success);
  font-size: 0.75rem;
  margin-top: 2px;
}

.bullet-item__text {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.bullet-item__text strong {
  color: var(--text-primary);
}

/* ── Module Cards ── */
.modules-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 48px;
}

.module-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 28px;
  align-items: start;
  padding: 32px;
  background: var(--bg-card);
  border: 1px solid var(--bg-glass-border);
  border-radius: var(--radius-lg);
  transition: all 0.4s;
  position: relative;
  overflow: hidden;
}

.module-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--gradient-accent);
  opacity: 0;
  transition: opacity 0.3s;
}

.module-card:hover {
  border-color: rgba(0, 212, 255, 0.2);
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow-cyan);
}

.module-card:hover::after {
  opacity: 1;
}

.module-number {
  width: 64px;
  height: 64px;
  background: rgba(0, 212, 255, 0.08);
  border: 1px solid rgba(0, 212, 255, 0.2);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--accent-cyan);
}

.module-content__label {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent-cyan);
  margin-bottom: 6px;
}

.module-content__title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 10px;
}

.module-content__desc {
  font-size: 0.92rem;
  color: var(--text-secondary);
  margin-bottom: 16px;
  line-height: 1.7;
}

.module-features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.module-feature {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  background: rgba(0, 212, 255, 0.06);
  border: 1px solid rgba(0, 212, 255, 0.12);
  border-radius: 100px;
  font-size: 0.78rem;
  color: var(--accent-cyan);
}

.module-feature::before {
  content: '✓';
  font-size: 0.7rem;
  color: var(--text-success);
}

/* ── Value Stack ── */
.value-stack {
  max-width: 700px;
  margin: 0 auto;
}

.value-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid var(--bg-glass-border);
  transition: all 0.3s;
}

.value-item:hover {
  background: var(--bg-glass);
}

.value-item__left {
  display: flex;
  align-items: center;
  gap: 14px;
}

.value-item__check {
  color: var(--text-success);
  font-size: 1.2rem;
}

.value-item__name {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--text-primary);
  font-size: 1rem;
}

.value-item__price {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--text-muted);
  font-size: 1.05rem;
  text-decoration: line-through;
  text-decoration-color: rgba(255, 61, 0, 0.5);
}

.value-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px;
  margin-top: 16px;
  background: rgba(0, 212, 255, 0.05);
  border: 1px solid rgba(0, 212, 255, 0.15);
  border-radius: var(--radius-md);
}

.value-total__label {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--text-primary);
}

.value-total__price {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--accent-cyan);
  text-decoration: line-through;
  text-decoration-color: var(--cta-danger);
}

.pricing-reveal {
  text-align: center;
  margin-top: 40px;
  padding: 40px;
  background: var(--bg-card);
  border: 2px solid rgba(255, 107, 0, 0.3);
  border-radius: var(--radius-xl);
  position: relative;
  overflow: hidden;
}

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

.pricing-reveal__label {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--cta-primary);
  margin-bottom: 8px;
}

.pricing-reveal__price {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  color: var(--text-primary);
}

.pricing-reveal__note {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-top: 8px;
}

/* ── Why Now Cards ── */
.why-now-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.why-now-card {
  padding: 28px;
  background: var(--bg-card);
  border: 1px solid var(--bg-glass-border);
  border-radius: var(--radius-md);
  transition: all 0.3s;
}

.why-now-card:hover {
  border-color: rgba(124, 58, 237, 0.3);
  box-shadow: var(--shadow-glow-purple);
}

.why-now-card__icon {
  font-size: 2rem;
  margin-bottom: 12px;
}

.why-now-card__title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.why-now-card__desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ── Beginner Section ── */
.beginner-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
  margin-top: 40px;
}

.beginner-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  background: var(--bg-glass);
  border: 1px solid rgba(0, 230, 118, 0.1);
  border-radius: var(--radius-md);
  transition: all 0.3s;
}

.beginner-item:hover {
  background: rgba(0, 230, 118, 0.04);
  border-color: rgba(0, 230, 118, 0.25);
}

.beginner-item__icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: rgba(0, 230, 118, 0.1);
  border: 1px solid rgba(0, 230, 118, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--text-success);
}

.beginner-item__text {
  font-size: 0.95rem;
  color: var(--text-primary);
  font-weight: 500;
}

/* ── Social Proof / Belief ── */
.belief-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.belief-card {
  padding: 32px;
  background: var(--bg-card);
  border: 1px solid var(--bg-glass-border);
  border-radius: var(--radius-lg);
  transition: all 0.4s;
}

.belief-card:hover {
  border-color: rgba(0, 212, 255, 0.2);
  box-shadow: var(--shadow-glow-cyan);
}

.belief-card__scenario {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent-cyan);
  margin-bottom: 12px;
}

.belief-card__title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 12px;
  line-height: 1.4;
}

.belief-card__text {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ── FAQ Section ── */
.faq-list {
  max-width: 750px;
  margin: 40px auto 0;
}

.faq-item {
  border-bottom: 1px solid var(--bg-glass-border);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 0;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-primary);
  text-align: left;
  transition: color 0.3s;
}

.faq-question:hover {
  color: var(--accent-cyan);
}

.faq-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(0, 212, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-cyan);
  font-size: 1.1rem;
  transition: all 0.3s;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
  background: rgba(0, 212, 255, 0.2);
}

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

.faq-item.active .faq-answer {
  max-height: 300px;
  padding-bottom: 22px;
}

.faq-answer p {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ── Final Close ── */
.final-close {
  text-align: center;
  position: relative;
}

.final-close .bg-orb {
  opacity: 0.2;
}

.close-divider {
  width: 80px;
  height: 4px;
  background: var(--gradient-accent);
  border-radius: 2px;
  margin: 0 auto 32px;
}

/* ── Footer ── */
.site-footer {
  padding: 48px 0 32px;
  border-top: 1px solid var(--bg-glass-border);
  background: var(--bg-deep);
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.footer-links a {
  font-size: 0.85rem;
  color: var(--text-muted);
  transition: color 0.3s;
}

.footer-links a:hover {
  color: var(--accent-cyan);
}

.footer-disclaimer {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.7;
  opacity: 0.7;
}

.footer-copyright {
  text-align: center;
  margin-top: 24px;
  font-size: 0.78rem;
  color: var(--text-muted);
  opacity: 0.5;
}

/* ── Dividers ── */
.section-divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--bg-glass-border), transparent);
  margin: 0;
}

.accent-divider {
  width: 60px;
  height: 3px;
  background: var(--gradient-accent);
  border-radius: 2px;
  margin: 0 auto 28px;
}

/* ── Countdown ── */
.countdown-bar {
  background: linear-gradient(90deg, rgba(255, 107, 0, 0.08), rgba(255, 61, 0, 0.12));
  border: 1px solid rgba(255, 107, 0, 0.2);
  border-radius: var(--radius-md);
  padding: 20px;
  margin-bottom: 32px;
  text-align: center;
}

.countdown-bar__text {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--cta-primary);
  font-size: 1.05rem;
  margin-bottom: 12px;
}

.countdown-digits {
  display: flex;
  justify-content: center;
  gap: 12px;
}

.countdown-unit {
  background: rgba(0, 0, 0, 0.3);
  border-radius: var(--radius-sm);
  padding: 10px 16px;
  min-width: 60px;
}

.countdown-unit__num {
  font-family: var(--font-mono);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
}

.countdown-unit__label {
  font-size: 0.65rem;
  text-transform: uppercase;
  color: var(--text-muted);
  letter-spacing: 0.1em;
}

/* ── WPlus button styling ── */
.wplus-btn-wrapper {
  text-align: center;
  margin: 24px 0;
}

.wplus-btn-wrapper img {
  display: inline-block;
  transition: transform 0.3s, box-shadow 0.3s;
  border-radius: var(--radius-sm);
}

.wplus-btn-wrapper img:hover {
  transform: scale(1.03);
  box-shadow: var(--shadow-glow-cta);
}


/* ── Animations ── */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.animate-in {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.animate-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Responsive ── */
@media (max-width: 768px) {
  body {
    font-size: 16px;
  }

  .hero-stats {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .mockup-body {
    grid-template-columns: 1fr;
  }

  .bullets-grid {
    grid-template-columns: 1fr;
  }

  .module-card {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .module-number {
    width: 48px;
    height: 48px;
    font-size: 1.2rem;
  }

  .value-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .footer-links {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .cta-btn {
    width: 100%;
    padding: 16px 24px;
  }

  .cta-btn--large {
    padding: 18px 32px;
    font-size: 1.1rem;
  }

  .countdown-digits {
    gap: 8px;
  }

  .countdown-unit {
    padding: 8px 12px;
    min-width: 50px;
  }

  .pricing-reveal {
    padding: 28px 20px;
  }

  .belief-cards {
    grid-template-columns: 1fr;
  }

  .why-now-grid {
    grid-template-columns: 1fr;
  }

  .beginner-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .hero-badge {
    font-size: 0.7rem;
    padding: 6px 14px;
  }

  .problem-grid {
    grid-template-columns: 1fr;
  }

  .opp-grid {
    grid-template-columns: 1fr;
  }

  .container {
    padding: 0 16px;
  }
}

/* ── Sticky CTA Bar ── */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(5, 5, 16, 0.95);
  backdrop-filter: blur(20px);
  border-top: 1px solid rgba(255, 107, 0, 0.2);
  padding: 12px 24px;
  transform: translateY(100%);
  transition: transform 0.4s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.sticky-cta.visible {
  transform: translateY(0);
}

.sticky-cta__text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--text-primary);
  display: none;
}

@media (min-width: 769px) {
  .sticky-cta__text {
    display: block;
  }
}

.sticky-cta .cta-btn {
  padding: 12px 28px;
  font-size: 0.9rem;
  animation: none;
}

/* ── Scroll-triggered Animations ── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ── Legal Pages ── */
.legal-page {
  min-height: 100vh;
  background: var(--bg-deep);
  padding: 60px 0;
}

.legal-header {
  text-align: center;
  margin-bottom: 48px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--bg-glass-border);
}

.legal-header h1 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.legal-header p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.legal-content h2 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-top: 36px;
  margin-bottom: 12px;
}

.legal-content h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-top: 24px;
  margin-bottom: 8px;
}

.legal-content p {
  color: var(--text-secondary);
  margin-bottom: 14px;
  line-height: 1.8;
  font-size: 0.92rem;
}

.legal-content ul {
  list-style: none;
  padding-left: 20px;
  margin-bottom: 16px;
}

.legal-content ul li {
  color: var(--text-secondary);
  font-size: 0.92rem;
  margin-bottom: 8px;
  padding-left: 16px;
  position: relative;
}

.legal-content ul li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--accent-cyan);
}

.legal-content a {
  color: var(--accent-cyan);
}

.legal-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 32px;
  font-size: 0.9rem;
  color: var(--accent-cyan);
  text-decoration: none;
}

.legal-back:hover {
  color: var(--accent-magenta);
}

/* Support page specific */
.support-card {
  max-width: 600px;
  margin: 40px auto;
  padding: 40px;
  background: var(--bg-card);
  border: 1px solid var(--bg-glass-border);
  border-radius: var(--radius-lg);
  text-align: center;
}

.support-card__icon {
  font-size: 3rem;
  margin-bottom: 20px;
}

.support-card__title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.support-card__text {
  color: var(--text-secondary);
  margin-bottom: 24px;
  line-height: 1.7;
}

.support-email {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: rgba(0, 212, 255, 0.08);
  border: 1px solid rgba(0, 212, 255, 0.2);
  border-radius: var(--radius-md);
  color: var(--accent-cyan);
  font-family: var(--font-mono);
  font-size: 1rem;
  font-weight: 500;
}

/* ── Professional SVG Icons ── */
.icon {
  display: inline-block;
  vertical-align: middle;
  width: 1em;
  height: 1em;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}

.icon--sm { width: 1em; height: 1em; }
.icon--md { width: 1.5em; height: 1.5em; }
.icon--lg { width: 2em; height: 2em; }
.icon--xl { width: 3em; height: 3em; }

.icon--cyan { color: var(--accent-cyan); }
.icon--green { color: var(--text-success); }
.icon--orange { color: var(--cta-primary); }
.icon--red { color: var(--cta-danger); }
.icon--purple { color: var(--accent-purple); }
.icon--magenta { color: var(--accent-magenta); }
.icon--white { color: var(--text-primary); }
.icon--gold { color: var(--text-warning); }

/* Card icon wrapper for problem/opp/why-now cards */
.problem-card__icon,
.opp-card__icon,
.why-now-card__icon {
  color: currentColor;
}

.problem-card__icon .icon {
  width: 2rem;
  height: 2rem;
  color: var(--cta-danger);
}

.opp-card__icon .icon {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--accent-cyan);
}

.why-now-card__icon .icon {
  width: 2rem;
  height: 2rem;
  color: var(--accent-purple);
}


.value-item__check .icon {
  width: 1.2rem;
  height: 1.2rem;
  color: var(--text-success);
}

.cta-btn .icon {
  width: 1.2em;
  height: 1.2em;
}

.hero-badge .icon {
  width: 1rem;
  height: 1rem;
}

.sticky-cta__text .icon {
  width: 1em;
  height: 1em;
}

.pricing-reveal__label .icon {
  width: 1em;
  height: 1em;
}
