/* ═══════════════════════════════════════════════════════
   BLACKHAT AFFILIATE TRILOGY — style.css
   ═══════════════════════════════════════════════════════ */

/* ── Reset ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  background: #080808;
  color: #e8e8e8;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  padding-bottom: 72px;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

/* ── Helpers ────────────────────────────────────────────── */
.neon-text   { color: #00ff41; text-shadow: 0 0 10px rgba(0,255,65,.8), 0 0 24px rgba(0,255,65,.35); }
.gold-text   { color: #ffd700; text-shadow: 0 0 10px rgba(255,215,0,.8), 0 0 24px rgba(255,215,0,.3); }
.red-text    { color: #ff3b3b; }
.mono        { font-family: 'JetBrains Mono', 'Courier New', monospace; }
.text-center { text-align: center; }
.bold        { font-weight: 800; }

/* ── Container ──────────────────────────────────────────── */
.container { max-width: 1160px; margin: 0 auto; padding: 0 28px; }

/* ── Scanline ───────────────────────────────────────────── */
.scanline-overlay {
  position: fixed; inset: 0; z-index: 9999; pointer-events: none;
  background: repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(0,0,0,.06) 2px, rgba(0,0,0,.06) 3px);
}

/* ── Divider ────────────────────────────────────────────── */
.divider {
  height: 1px;
  margin: 0 28px;
  background: linear-gradient(90deg, transparent, rgba(0,255,65,.25) 25%, rgba(255,215,0,.25) 50%, rgba(0,255,65,.25) 75%, transparent);
  opacity: .4;
}

/* ── Tag Label ──────────────────────────────────────────── */
.tag-label {
  font-size: 11px;
  letter-spacing: .22em;
  color: #00ff41;
  text-transform: uppercase;
  opacity: .85;
  margin-bottom: 18px;
}

/* ── Section Heading & Sub ──────────────────────────────── */
.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.1;
  letter-spacing: -.01em;
  margin-bottom: 14px;
}
.section-sub {
  font-size: 15px;
  color: #888;
  max-width: 600px;
  margin: 0 auto 44px;
  line-height: 1.7;
}

/* ── Pill Tag ───────────────────────────────────────────── */
.pill-tag {
  display: inline-block;
  font-size: 11px;
  letter-spacing: .15em;
  color: #00ff41;
  background: rgba(0,255,65,.07);
  border: 1px solid rgba(0,255,65,.3);
  border-radius: 99px;
  padding: 5px 16px;
  margin-bottom: 18px;
}

/* ── Buttons ────────────────────────────────────────────── */
.neon-btn {
  display: inline-block;
  background: linear-gradient(135deg, #00ff41 0%, #00cc33 100%);
  color: #000;
  font-weight: 900;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .07em;
  border-radius: 10px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 22px rgba(0,255,65,.5), 0 4px 20px rgba(0,0,0,.5);
  transition: transform .18s, box-shadow .18s;
}
.neon-btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,.22) 0%, transparent 55%);
  pointer-events: none;
}
.neon-btn:hover { transform: translateY(-3px); box-shadow: 0 0 40px rgba(0,255,65,.8), 0 8px 30px rgba(0,0,0,.5); }
.neon-btn:active { transform: scale(.97); }

.gold-btn {
  display: inline-block;
  background: linear-gradient(135deg, #ffd700 0%, #ffb300 100%);
  color: #000;
  font-weight: 900;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .07em;
  border-radius: 10px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 22px rgba(255,215,0,.5), 0 4px 20px rgba(0,0,0,.5);
  transition: transform .18s, box-shadow .18s;
}
.gold-btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,.28) 0%, transparent 55%);
  pointer-events: none;
}
.gold-btn:hover { transform: translateY(-3px); box-shadow: 0 0 40px rgba(255,215,0,.8), 0 8px 30px rgba(0,0,0,.5); }
.gold-btn:active { transform: scale(.97); }

.red-btn {
  display: inline-block;
  background: linear-gradient(135deg, #ff3b3b 0%, #cc2222 100%);
  color: #fff;
  font-weight: 900;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .07em;
  border-radius: 10px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 22px rgba(255,59,59,.4), 0 4px 20px rgba(0,0,0,.5);
  transition: transform .18s, box-shadow .18s;
}
.red-btn:hover { transform: translateY(-3px); box-shadow: 0 0 40px rgba(255,59,59,.7), 0 8px 30px rgba(0,0,0,.5); }
.red-btn:active { transform: scale(.97); }

.pulse-neon { animation: pulseNeon 2.2s ease-in-out infinite; }
@keyframes pulseNeon {
  0%,100% { box-shadow: 0 0 18px rgba(0,255,65,.5), 0 4px 20px rgba(0,0,0,.5); }
  50%      { box-shadow: 0 0 50px rgba(0,255,65,.9), 0 0 90px rgba(0,255,65,.25), 0 4px 20px rgba(0,0,0,.5); }
}

/* ── Cards ──────────────────────────────────────────────── */
.cyber-card {
  background: rgba(8,8,8,.96);
  border: 1px solid rgba(0,255,65,.14);
  border-radius: 14px;
  transition: border-color .3s, box-shadow .3s, transform .3s;
}
.cyber-card:hover {
  border-color: rgba(0,255,65,.4);
  box-shadow: 0 0 30px rgba(0,255,65,.08), 0 8px 32px rgba(0,0,0,.6);
  transform: translateY(-2px);
}
.gold-card {
  background: rgba(8,8,8,.96);
  border: 1px solid rgba(255,215,0,.18);
  border-radius: 14px;
}

/* ── Images ─────────────────────────────────────────────── */

/* Neon glowing border for all section images */
.img-neon-border {
  border: 1px solid rgba(0,255,65,.22);
  border-radius: 14px;
  box-shadow: 0 0 32px rgba(0,255,65,.07), 0 16px 48px rgba(0,0,0,.7);
}

/* Hero right-side image */
.hero-img {
  width: 100%;
  height: auto;
  border-radius: 14px;
  display: block;
  object-fit: cover;
}

/* Generic section image (campaign results, roi-scale, books-cover, final-bundle) */
.section-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 14px;
  min-height: 200px;
  background: rgba(0,10,4,.7);
}

/* Book card top image */
.book-card-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 10px;
  display: block;
  margin-bottom: 16px;
  border: 1px solid rgba(255,255,255,.06);
  background: rgba(0,0,0,.6);
}

/* Tools section banner image */
.tools-banner {
  margin-bottom: 32px;
}
.tools-banner-img {
  width: 100%;
  max-height: 280px;
  object-fit: cover;
  display: block;
  border-radius: 14px;
}

/* Learn section book cover image */
.learn-book-img {
  margin: 24px 0;
}
.learn-book-img img {
  width: 100%;
  max-height: 220px;
  object-fit: cover;
  border-radius: 10px;
}

/* ── Scroll Reveal ──────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .65s cubic-bezier(.4,0,.2,1), transform .65s cubic-bezier(.4,0,.2,1);
}
.reveal.visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; }
}

/* ── Glitch ─────────────────────────────────────────────── */
.glitch { animation: glitch 6s infinite; }
@keyframes glitch {
  0%,88%,100% { transform: none; filter: none; }
  89% { transform: translate(-2px,1px); filter: hue-rotate(90deg); }
  91% { transform: translate(2px,-1px); filter: hue-rotate(-90deg); }
  93% { transform: translate(-1px,2px); }
}

/* ── Float ──────────────────────────────────────────────── */
.float-up { animation: floatUp 6s ease-in-out infinite; }
@keyframes floatUp {
  0%,100% { transform: translateY(0); }
  50%     { transform: translateY(-12px); }
}

/* ── Digi Lines ─────────────────────────────────────────── */
.digi-line {
  position: absolute; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0,255,65,.4), transparent);
  animation: digiScan 6s linear infinite;
}
@keyframes digiScan {
  0%  { transform: translateX(-100%); opacity: 0; }
  15% { opacity: .35; }
  85% { opacity: .35; }
  100%{ transform: translateX(200%); opacity: 0; }
}

/* ── Matrix Canvas ──────────────────────────────────────── */
.matrix-canvas {
  position: absolute; top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: 0; opacity: .38; pointer-events: none;
}
.matrix-overlay {
  position: absolute; inset: 0;
  z-index: 1; pointer-events: none;
  background: rgba(6,6,6,.74);
}
.matrix-overlay-dark { background: rgba(3,3,3,.85); }

/* ── Countdown ──────────────────────────────────────────── */
.countdown-box {
  background: rgba(0,0,0,.9);
  border: 1px solid rgba(255,215,0,.55);
  box-shadow: 0 0 16px rgba(255,215,0,.2);
  border-radius: 10px;
  min-width: 68px;
  padding: 10px 14px;
  text-align: center;
}
.countdown-num {
  font-size: 28px; font-weight: 800; color: #ffd700;
  text-shadow: 0 0 8px rgba(255,215,0,.8);
  line-height: 1;
}
.countdown-sub { font-size: 9px; color: #777; text-transform: uppercase; letter-spacing: .14em; margin-top: 4px; }

/* ── Sticky Bar ─────────────────────────────────────────── */
.sticky-bar {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 999;
  background: rgba(5,5,5,.98);
  border-top: 1px solid rgba(255,215,0,.2);
  display: flex; align-items: center; justify-content: space-between;
  padding: 11px 24px; gap: 12px;
}
.sticky-left { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.sticky-spots { font-size: 13px; }
.sticky-spots strong { color: #ff3b3b; }
.sticky-sep { color: #444; }
.sticky-timer { font-size: 12px; color: #888; }
.sticky-timer span { color: #ffd700; font-weight: 700; }
.sticky-btn {
  background: linear-gradient(135deg, #ffd700 0%, #ffb300 100%);
  color: #000; font-weight: 900; font-size: 12px;
  text-transform: uppercase; letter-spacing: .06em;
  padding: 9px 20px; border-radius: 9px; white-space: nowrap;
  box-shadow: 0 0 18px rgba(255,215,0,.4);
  transition: transform .15s, box-shadow .15s;
}
.sticky-btn:hover { transform: translateY(-2px); box-shadow: 0 0 32px rgba(255,215,0,.7); }

/* ── Social Popup ───────────────────────────────────────── */
.social-popup {
  position: fixed; bottom: 80px; left: 16px; z-index: 998;
  background: rgba(8,8,8,.98);
  border: 1px solid rgba(0,255,65,.28);
  border-radius: 12px;
  padding: 12px 14px;
  display: flex; align-items: flex-start; gap: 10px;
  max-width: 210px;
  box-shadow: 0 0 20px rgba(0,255,65,.08), 0 8px 24px rgba(0,0,0,.7);
  opacity: 0; transform: translateX(-240px);
  transition: opacity .4s, transform .4s;
}
.social-popup.show { opacity: 1; transform: translateX(0); }
.popup-icon { font-size: 18px; flex-shrink: 0; margin-top: 2px; }
.popup-name { font-size: 11px; font-weight: 700; color: #00ff41; font-family: 'JetBrains Mono', monospace; }
.popup-action { font-size: 11px; color: #bbb; margin-top: 2px; }
.popup-action strong { color: #ffd700; }
.popup-time { font-size: 10px; color: #00ff41; margin-top: 4px; font-family: 'JetBrains Mono', monospace; }

/* ═══════════════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #020202;
  padding: 100px 0 80px;
}
.hero .container { position: relative; z-index: 2; }
.hero-tag {
  text-align: center;
  font-size: 11px;
  letter-spacing: .18em;
  color: rgba(0,255,65,.7);
  margin-bottom: 44px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-left { display: flex; flex-direction: column; gap: 0; }
.hero-h1 {
  font-size: clamp(2rem, 4.2vw, 3.4rem);
  font-weight: 900;
  line-height: 1.06;
  color: #fff;
  margin-bottom: 22px;
  letter-spacing: -.01em;
}
.hero-bold-sub {
  font-size: 16px;
  font-weight: 700;
  color: #ffd700;
  margin-bottom: 16px;
  line-height: 1.55;
}
.hero-sub {
  font-size: 14px;
  color: #999;
  margin-bottom: 32px;
  line-height: 1.7;
}
.hero-sub em { font-style: italic; }
.hero-btn {
  padding: 16px 32px;
  font-size: 14px;
  align-self: flex-start;
  margin-bottom: 20px;
}
.hero-trust {
  display: flex; flex-wrap: wrap; gap: 10px 20px;
  font-size: 11px; color: #666;
}
/* Hero right / image */
.hero-right { display: flex; justify-content: center; align-items: center; }
.hero-img-wrap {
  width: 100%;
  max-width: 420px;
  position: relative;
}
.hero-img-badge {
  position: absolute;
  top: -14px; right: -14px;
  font-size: 11px; color: #00ff41;
  background: rgba(0,20,8,.95);
  border: 1px solid rgba(0,255,65,.35);
  border-radius: 8px;
  padding: 5px 12px;
  letter-spacing: .1em;
  z-index: 2;
  box-shadow: 0 0 14px rgba(0,255,65,.2);
}
.hero-img-box {
  background: rgba(0,10,4,.92);
  border: 1px solid rgba(0,255,65,.2);
  border-radius: 14px;
  min-height: 300px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0 40px rgba(0,255,65,.06), 0 24px 60px rgba(0,0,0,.8);
}
.hero-img-label {
  font-size: 13px;
  line-height: 2.1;
  text-align: center;
}
.hero-img-footer {
  margin-top: 12px;
  text-align: center;
  font-size: 11px;
  color: rgba(0,255,65,.5);
  background: rgba(0,10,4,.8);
  border: 1px solid rgba(0,255,65,.15);
  border-radius: 99px;
  padding: 4px 16px;
  display: inline-block;
  margin-left: auto; margin-right: auto;
  display: block;
}

/* ═══════════════════════════════════════════════════════
   ONE SALE RECOVERS
   ═══════════════════════════════════════════════════════ */
.two-col-section { padding: 96px 0; }
.two-col-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.recovers-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 18px;
  letter-spacing: -.01em;
}
.recovers-desc {
  font-size: 15px;
  color: #999;
  line-height: 1.75;
  margin-bottom: 24px;
}
.quote-box {
  background: rgba(0,255,65,.06);
  border: 1px solid rgba(0,255,65,.22);
  border-left: 3px solid #00ff41;
  border-radius: 0 10px 10px 0;
  padding: 14px 20px;
  font-size: 14px;
  line-height: 1.6;
}

/* ═══════════════════════════════════════════════════════
   3 BOOKS
   ═══════════════════════════════════════════════════════ */
.books-section { padding: 96px 0; }
.books-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.book-card {
  background: rgba(6,6,6,.98);
  border-radius: 16px;
  padding: 28px 24px 32px;
  display: flex;
  flex-direction: column;
  gap: 0;
  transition: transform .3s, box-shadow .3s;
}
.book-card:hover { transform: translateY(-4px); }
.bc-green { border: 1px solid rgba(0,255,65,.2); box-shadow: 0 0 30px rgba(0,255,65,.04); }
.bc-green:hover { border-color: rgba(0,255,65,.45); box-shadow: 0 0 40px rgba(0,255,65,.1), 0 12px 40px rgba(0,0,0,.7); }
.bc-yellow { border: 1px solid rgba(255,215,0,.2); box-shadow: 0 0 30px rgba(255,215,0,.04); }
.bc-yellow:hover { border-color: rgba(255,215,0,.45); box-shadow: 0 0 40px rgba(255,215,0,.1), 0 12px 40px rgba(0,0,0,.7); }
.bc-red { border: 1px solid rgba(255,59,59,.2); box-shadow: 0 0 30px rgba(255,59,59,.04); }
.bc-red:hover { border-color: rgba(255,59,59,.45); box-shadow: 0 0 40px rgba(255,59,59,.1), 0 12px 40px rgba(0,0,0,.7); }
.bc-header-label {
  font-size: 9px; letter-spacing: .2em; color: #444;
  text-transform: uppercase; margin-bottom: 16px; border-top: 1px solid rgba(255,255,255,.05);
  padding-top: 0;
}
.bc-badges { display: flex; gap: 8px; align-items: center; margin-bottom: 14px; flex-wrap: wrap; }
.bc-badge {
  font-size: 10px; font-weight: 800; letter-spacing: .12em;
  padding: 3px 10px; border-radius: 6px;
}
.bc-badge-green { background: rgba(0,255,65,.12); color: #00ff41; border: 1px solid rgba(0,255,65,.3); }
.bc-badge-yellow { background: rgba(255,215,0,.12); color: #ffd700; border: 1px solid rgba(255,215,0,.3); }
.bc-badge-red { background: rgba(255,59,59,.12); color: #ff3b3b; border: 1px solid rgba(255,59,59,.3); }
.bc-badge-book { font-size: 10px; color: #555; letter-spacing: .1em; }
.bc-title { font-size: 17px; font-weight: 900; margin-bottom: 6px; line-height: 1.2; }
.bc-sub { font-size: 12px; color: #666; margin-bottom: 18px; }
.bc-list {
  list-style: none;
  display: flex; flex-direction: column; gap: 9px;
  margin-bottom: 24px; flex: 1;
}
.bc-list li {
  font-size: 13px; color: #bbb; line-height: 1.5;
  padding-left: 18px; position: relative;
}
.bc-list li::before { content: '▸'; position: absolute; left: 0; color: #555; font-size: 11px; top: 1px; }
.bc-btn { padding: 12px 18px; font-size: 12px; text-align: center; display: block; }

/* ═══════════════════════════════════════════════════════
   STATS + WALK AWAY WITH
   ═══════════════════════════════════════════════════════ */
.stats-section { padding: 96px 0; background: #030303; }
.stats-headline {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 900; color: #fff;
  text-align: center; margin-bottom: 52px;
  line-height: 1.1;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-bottom: 52px;
}
.stat-card {
  background: rgba(6,6,6,.98);
  border: 1px solid rgba(0,255,65,.1);
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  transition: border-color .3s, box-shadow .3s;
}
.stat-card:hover {
  border-color: rgba(0,255,65,.3);
  box-shadow: 0 0 30px rgba(0,255,65,.07);
}
.stat-icon { font-size: 32px; margin-bottom: 14px; }
.stat-value { font-size: 52px; font-weight: 900; line-height: 1; margin-bottom: 10px; }
.stat-label { font-size: 10px; letter-spacing: .14em; color: #00ff41; font-weight: 700; margin-bottom: 12px; text-transform: uppercase; }
.stat-desc { font-size: 13px; color: #777; line-height: 1.65; }
/* Walk Away */
.walkaway-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
}
.walkaway-title { font-size: 16px; font-weight: 800; margin-bottom: 18px; }
.wl-list { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.wl-list li {
  font-size: 14px; color: #ccc; padding-left: 22px; position: relative; line-height: 1.5;
}
.wl-list li::before {
  content: '✓'; position: absolute; left: 0;
  color: #00ff41; font-weight: 800; font-size: 13px;
}
/* Price Box */
.price-box {
  background: rgba(6,6,6,.98);
  border: 1px solid rgba(0,255,65,.18);
  border-radius: 16px;
  padding: 32px 28px;
  text-align: center;
}
.price-box-label { font-size: 11px; color: #666; letter-spacing: .12em; margin-bottom: 10px; }
.price-old {
  font-size: 28px; font-weight: 800; color: #555;
  text-decoration: line-through; margin-bottom: 4px;
}
.price-new {
  font-size: 72px; font-weight: 900; line-height: 1;
  margin-bottom: 16px;
}
.price-tagline { font-size: 13px; color: #bbb; line-height: 1.6; margin-bottom: 24px; display: block; }
.price-cta { padding: 14px 28px; font-size: 13px; display: inline-block; }

/* ═══════════════════════════════════════════════════════
   TOOLS
   ═══════════════════════════════════════════════════════ */
.tools-section { padding: 96px 0; }
.tools-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.tool-card {
  background: rgba(6,6,6,.98);
  border: 1px solid rgba(0,255,65,.1);
  border-radius: 14px;
  padding: 20px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  transition: border-color .3s, box-shadow .3s, transform .3s;
}
.tool-card:hover {
  border-color: rgba(0,255,65,.32);
  box-shadow: 0 0 24px rgba(0,255,65,.07), 0 6px 24px rgba(0,0,0,.5);
  transform: translateY(-2px);
}
.tool-icon-box {
  font-size: 28px;
  width: 52px; height: 52px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(0,255,65,.06);
  border: 1px solid rgba(0,255,65,.12);
  border-radius: 10px;
  flex-shrink: 0;
}
.tool-body { flex: 1; }
.tool-title { font-size: 11px; font-weight: 800; letter-spacing: .1em; margin-bottom: 8px; }
.tool-desc { font-size: 13px; color: #888; line-height: 1.65; }

/* ═══════════════════════════════════════════════════════
   WHAT YOU'LL LEARN
   ═══════════════════════════════════════════════════════ */
.learn-section { padding: 96px 0; }
.learn-card {
  background: rgba(6,6,6,.98);
  border: 1px solid rgba(0,255,65,.16);
  border-radius: 18px;
  padding: 44px;
  box-shadow: 0 0 50px rgba(0,255,65,.04), 0 24px 60px rgba(0,0,0,.6);
}
.learn-header {
  display: flex; align-items: flex-start; gap: 16px;
  margin-bottom: 32px; padding-bottom: 24px;
  border-bottom: 1px solid rgba(0,255,65,.1);
}
.learn-icon { font-size: 28px; flex-shrink: 0; }
.learn-title {
  font-size: clamp(.95rem, 1.8vw, 1.25rem);
  font-weight: 900; color: #fff; letter-spacing: .03em;
}
.learn-sub { font-size: 12px; color: #666; margin-top: 5px; }
.learn-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 0 44px; margin-bottom: 32px;
}
.learn-list { list-style: none; display: flex; flex-direction: column; gap: 16px; }
.learn-list li {
  font-size: 14px; color: #ccc; padding-left: 22px; position: relative; line-height: 1.5;
}
.learn-list li::before {
  content: '✓'; position: absolute; left: 0;
  color: #00ff41; font-weight: 800;
}
.learn-footer {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 16px;
  border-top: 1px solid rgba(0,255,65,.1); padding-top: 24px;
  font-size: 14px; color: #999;
}
.learn-cta { padding: 12px 28px; font-size: 13px; }

/* ═══════════════════════════════════════════════════════
   EXECUTION FRAMEWORK
   ═══════════════════════════════════════════════════════ */
.exec-section { padding: 96px 0; background: #030303; }
.exec-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 900; color: #fff; text-align: center;
  margin-bottom: 56px; letter-spacing: -.01em;
}
.exec-steps {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 28px; margin-bottom: 44px;
}
.exec-step { display: flex; flex-direction: column; align-items: center; text-align: center; }
.exec-circle {
  width: 78px; height: 78px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 21px; font-weight: 800;
  margin-bottom: 18px; border: 2px solid;
  background: rgba(0,0,0,.7);
}
.exec-circle-green { border-color: #00ff41; color: #00ff41; box-shadow: 0 0 20px rgba(0,255,65,.25), inset 0 0 16px rgba(0,255,65,.06); }
.exec-circle-yellow { border-color: #ffd700; color: #ffd700; box-shadow: 0 0 20px rgba(255,215,0,.25), inset 0 0 16px rgba(255,215,0,.06); }
.exec-circle-blue { border-color: #00cfff; color: #00cfff; box-shadow: 0 0 20px rgba(0,207,255,.25), inset 0 0 16px rgba(0,207,255,.06); }
.exec-circle-red { border-color: #ff4466; color: #ff4466; box-shadow: 0 0 20px rgba(255,68,102,.25), inset 0 0 16px rgba(255,68,102,.06); }
.exec-step-title { font-size: 11px; font-weight: 800; letter-spacing: .14em; margin-bottom: 12px; }
.exec-green { color: #00ff41; }
.exec-yellow { color: #ffd700; }
.exec-blue  { color: #00cfff; }
.exec-red   { color: #ff4466; }
.exec-step-desc { font-size: 13px; color: #888; line-height: 1.7; }
.exec-quote {
  background: rgba(6,6,6,.98); border: 1px solid rgba(255,255,255,.07);
  border-radius: 14px; padding: 30px 40px; text-align: center;
  max-width: 840px; margin: 0 auto;
}
.exec-quote-text { font-family: 'JetBrains Mono', monospace; font-size: 17px; font-weight: 700; color: #fff; margin-bottom: 8px; }
.exec-quote-sub { font-size: 13px; color: #666; }

/* ═══════════════════════════════════════════════════════
   AUDIENCE
   ═══════════════════════════════════════════════════════ */
.audience-section { padding: 96px 0; }
.audience-title {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 900; color: #fff; text-align: center;
  margin-bottom: 52px; line-height: 1.1;
}
.audience-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 18px; margin-bottom: 28px;
}
.aud-card {
  background: rgba(6,6,6,.98); border-radius: 16px;
  padding: 32px 24px; text-align: center;
  transition: transform .3s, border-color .3s;
  display: flex; flex-direction: column; align-items: center;
}
.aud-card:hover { transform: translateY(-4px); }
.aud-green { border: 1px solid rgba(0,255,65,.18); }
.aud-green:hover { border-color: rgba(0,255,65,.45); box-shadow: 0 0 30px rgba(0,255,65,.07); }
.aud-yellow { border: 1px solid rgba(255,215,0,.18); }
.aud-yellow:hover { border-color: rgba(255,215,0,.45); box-shadow: 0 0 30px rgba(255,215,0,.07); }
.aud-red { border: 1px solid rgba(255,59,59,.18); }
.aud-red:hover { border-color: rgba(255,59,59,.45); box-shadow: 0 0 30px rgba(255,59,59,.07); }
.aud-emoji { font-size: 44px; margin-bottom: 14px; }
.aud-title { font-size: 13px; font-weight: 800; letter-spacing: .1em; margin-bottom: 14px; }
.aud-desc { font-size: 13px; color: #888; line-height: 1.65; margin-bottom: 20px; flex: 1; }
.aud-result {
  font-size: 12px; font-weight: 700; border-radius: 8px;
  padding: 8px 14px; display: inline-block;
}
.aud-result-green { background: rgba(0,255,65,.08); border: 1px solid rgba(0,255,65,.22); color: #00ff41; }
.aud-result-yellow { background: rgba(255,215,0,.08); border: 1px solid rgba(255,215,0,.22); color: #ffd700; }
.aud-result-red { background: rgba(255,59,59,.08); border: 1px solid rgba(255,59,59,.22); color: #ff3b3b; }
.not-for {
  background: rgba(255,165,0,.05); border: 1px solid rgba(255,165,0,.22);
  border-radius: 12px; padding: 16px 24px;
  font-size: 13px; color: #bbb; text-align: center;
}
.not-for-icon { margin-right: 8px; }

/* ═══════════════════════════════════════════════════════
   REVIEWS
   ═══════════════════════════════════════════════════════ */
.reviews-section { padding: 96px 0; }
.reviews-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 18px; margin-top: 44px;
}
.review-card {
  border-radius: 16px; padding: 24px;
  display: flex; flex-direction: column; gap: 12px;
  transition: transform .3s;
}
.review-card:hover { transform: translateY(-3px); }
.review-green  { background: rgba(0,15,6,.98); border: 1px solid rgba(0,255,65,.2); box-shadow: 0 0 24px rgba(0,255,65,.04), 0 12px 32px rgba(0,0,0,.7); }
.review-yellow { background: rgba(16,12,0,.98); border: 1px solid rgba(255,215,0,.2); box-shadow: 0 0 24px rgba(255,215,0,.04), 0 12px 32px rgba(0,0,0,.7); }
.review-red    { background: rgba(16,4,4,.98); border: 1px solid rgba(255,80,80,.2); box-shadow: 0 0 24px rgba(255,80,80,.04), 0 12px 32px rgba(0,0,0,.7); }
.review-stars { font-size: 14px; color: #ffd700; letter-spacing: 2px; text-shadow: 0 0 6px rgba(255,215,0,.5); }
.review-quote {
  font-family: 'JetBrains Mono', monospace; font-size: 13px; font-weight: 700;
  border-radius: 8px; padding: 10px 14px; line-height: 1.4;
}
.review-quote-green  { background: rgba(0,255,65,.09); color: #00ff41; border: 1px solid rgba(0,255,65,.22); }
.review-quote-yellow { background: rgba(255,215,0,.09); color: #ffd700; border: 1px solid rgba(255,215,0,.22); }
.review-quote-red    { background: rgba(255,80,80,.09); color: #ff6060; border: 1px solid rgba(255,80,80,.22); }
.review-text { font-size: 13px; color: #aaa; line-height: 1.7; flex: 1; }
.review-author {
  display: flex; align-items: center; gap: 12px;
  padding-top: 12px; border-top: 1px solid rgba(255,255,255,.05);
}
.review-avatar {
  width: 34px; height: 34px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 14px; flex-shrink: 0;
}
.review-avatar-green  { background: rgba(0,255,65,.15); color: #00ff41; }
.review-avatar-yellow { background: rgba(255,215,0,.15); color: #ffd700; }
.review-avatar-red    { background: rgba(255,80,80,.15); color: #ff6060; }
.review-name { font-weight: 700; font-size: 13px; color: #fff; }
.review-tag  { font-size: 11px; color: #555; margin-top: 2px; }

/* ═══════════════════════════════════════════════════════
   PRICING
   ═══════════════════════════════════════════════════════ */
.pricing-section { padding: 96px 0; }
.pricing-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 18px; margin-top: 40px; margin-bottom: 36px;
}
.p-card {
  background: rgba(6,6,6,.98); border-radius: 16px;
  padding: 28px 22px;
  display: flex; flex-direction: column; gap: 12px;
  transition: transform .3s;
}
.p-card-neon { border: 1px solid rgba(0,255,65,.14); }
.p-card-neon:hover { border-color: rgba(0,255,65,.4); box-shadow: 0 0 28px rgba(0,255,65,.07); transform: translateY(-3px); }
.p-card-gold { border: 1px solid rgba(255,215,0,.18); }
.p-card-featured {
  border-color: rgba(255,215,0,.4) !important;
  box-shadow: 0 0 30px rgba(255,215,0,.1), 0 12px 40px rgba(0,0,0,.7);
  transform: scale(1.03);
}
.p-card-featured:hover { transform: scale(1.03) translateY(-3px); }
.p-featured-badge {
  text-align: center; font-family: 'JetBrains Mono', monospace;
  font-size: 10px; font-weight: 700; letter-spacing: .18em;
  background: rgba(255,215,0,.1); border: 1px solid rgba(255,215,0,.3);
  border-radius: 99px; padding: 4px 14px; color: #ffd700;
  display: inline-block; align-self: center;
}
.p-tag { font-size: 11px; letter-spacing: .18em; font-weight: 700; }
.p-title { font-size: 19px; font-weight: 800; color: #fff; }
.p-desc { font-size: 13px; color: #888; line-height: 1.6; flex: 1; }
.p-btn { padding: 12px 18px; font-size: 12px; text-align: center; display: block; }
/* Bundle */
.bundle-box {
  max-width: 520px; margin: 0 auto;
  background: rgba(6,6,6,.98); border: 1px solid rgba(255,215,0,.2);
  border-radius: 18px; padding: 36px 32px; text-align: center;
}
.bundle-tag { font-size: 11px; letter-spacing: .18em; margin-bottom: 8px; }
.bundle-title { font-size: 22px; font-weight: 800; color: #fff; margin-bottom: 10px; }
.bundle-desc { font-size: 13px; color: #888; margin-bottom: 24px; line-height: 1.6; }
.bundle-btn { padding: 16px 36px; font-size: 14px; display: inline-block; }
.bundle-trust { display: flex; justify-content: center; gap: 20px; flex-wrap: wrap; margin-top: 16px; font-size: 11px; color: #555; }

/* ═══════════════════════════════════════════════════════
   FAQ
   ═══════════════════════════════════════════════════════ */
.faq-section { padding: 96px 0; }
.faq-container { max-width: 740px; }
.faq-list { display: flex; flex-direction: column; gap: 10px; margin-top: 40px; }
.faq-item {
  background: rgba(6,6,6,.98); border: 1px solid rgba(0,255,65,.12);
  border-radius: 12px; overflow: hidden; transition: border-color .3s;
}
.faq-item[open] { border-color: rgba(0,255,65,.3); }
.faq-q {
  cursor: pointer; padding: 18px 20px;
  font-weight: 700; font-size: 15px; color: #fff;
  display: flex; justify-content: space-between; align-items: center;
  list-style: none; user-select: none; gap: 12px;
}
.faq-q::-webkit-details-marker { display: none; }
.faq-plus { color: #00ff41; font-size: 20px; font-weight: 300; transition: transform .25s; flex-shrink: 0; }
details[open] .faq-plus { transform: rotate(45deg); }
.faq-a {
  padding: 0 20px 18px; font-size: 14px; color: #888; line-height: 1.7;
  border-top: 1px solid rgba(0,255,65,.08); padding-top: 14px;
}

/* ═══════════════════════════════════════════════════════
   MATRIX CTA
   ═══════════════════════════════════════════════════════ */
.matrix-cta {
  position: relative; padding: 100px 0 80px;
  overflow: hidden; background: #010101;
}
.matrix-tag {
  text-align: center; font-size: 11px;
  letter-spacing: .2em; color: rgba(0,255,65,.6);
  margin-bottom: 44px;
}
.matrix-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 52px; align-items: flex-start; margin-bottom: 48px;
}
.matrix-title {
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  font-weight: 900; color: #fff; line-height: 1;
  margin-bottom: 22px;
}
.matrix-desc { font-size: 15px; color: #999; line-height: 1.75; margin-bottom: 18px; }
.matrix-quote {
  background: rgba(0,255,65,.06); border: 1px solid rgba(0,255,65,.2);
  border-left: 3px solid #00ff41; border-radius: 0 10px 10px 0;
  padding: 14px 20px; font-size: 14px; margin-top: 6px;
}
.matrix-btns {
  display: flex; gap: 16px; flex-wrap: wrap;
  justify-content: center; margin-bottom: 16px;
}
.matrix-btn-gold { padding: 17px 34px; font-size: 14px; }
.matrix-btn-neon  { padding: 17px 34px; font-size: 14px; }
.matrix-trust {
  text-align: center; font-size: 11px; color: #555; margin-bottom: 36px;
}
.matrix-stats { display: flex; justify-content: center; }
.matrix-stat {
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  padding: 20px 44px; text-align: center;
  border-right: 1px solid rgba(255,255,255,.05);
}
.matrix-stat:last-child { border-right: none; }
.matrix-stat-icon { font-size: 20px; }
.matrix-stat-text { font-size: 12px; color: #777; line-height: 1.6; font-weight: 700; }

/* ═══════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════ */
.footer { border-top: 1px solid rgba(255,255,255,.04); padding: 28px 0 20px; }
.footer-inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.footer-brand { font-size: 11px; letter-spacing: .18em; }
.footer-links { display: flex; gap: 24px; flex-wrap: wrap; }
.footer-links a { font-size: 12px; color: #555; transition: color .2s; }
.footer-links a:hover { color: #ffd700; }
.footer-copy { font-size: 11px; color: #444; }
.footer-disclaimer { text-align: center; font-size: 11px; color: #444; padding: 10px 24px 0; line-height: 1.7; }

/* ══════════════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .books-grid, .tools-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 860px) {
  .hero-grid, .two-col-grid, .walkaway-grid,
  .exec-steps, .matrix-grid { grid-template-columns: 1fr; }
  .books-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr; }
  .audience-grid, .reviews-grid, .pricing-grid { grid-template-columns: 1fr; }
  .exec-steps { grid-template-columns: repeat(2, 1fr); gap: 28px; }
  .p-card-featured { transform: none; }
  .footer-inner { flex-direction: column; text-align: center; }
  .footer-links { justify-content: center; }
  .hero-btn { align-self: stretch; text-align: center; }
  .matrix-stats { flex-wrap: wrap; }
  .matrix-stat { padding: 16px 24px; }
}
@media (max-width: 640px) {
  .hero { padding: 80px 0 60px; }
  .hero-h1 { font-size: 2rem; }
  .two-col-section, .books-section, .stats-section, .tools-section,
  .learn-section, .exec-section, .audience-section,
  .reviews-section, .pricing-section, .faq-section, .matrix-cta { padding: 64px 0; }
  .learn-card { padding: 24px; }
  .exec-steps { grid-template-columns: 1fr; gap: 24px; }
  .matrix-btns { flex-direction: column; align-items: stretch; }
  .matrix-btn-gold, .matrix-btn-neon { text-align: center; padding: 15px 20px; }
  .matrix-stats { flex-direction: column; align-items: center; }
  .matrix-stat { border-right: none; border-bottom: 1px solid rgba(255,255,255,.05); width: 100%; }
  .matrix-stat:last-child { border-bottom: none; }
  .walkaway-grid { grid-template-columns: 1fr; }
  .learn-grid { grid-template-columns: 1fr; }
  .tools-grid { grid-template-columns: 1fr; }
  .sticky-bar { padding: 10px 14px; }
}

/* ── Scrollbar ───────────────────────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #060606; }
::-webkit-scrollbar-thumb { background: rgba(0,255,65,.28); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: rgba(0,255,65,.55); }
/* 🔥 FIX BOOK IMAGE FULL SHOW */
.book-card-img {
  height: auto !important;
  object-fit: contain !important;
  max-height: 400px;
}
/* 🔥 CLEAN GLITCH HIT (not continuous) */
.glitch-hit {
  color: #00ff41; /* normal neon green */
  transition: all 0.2s ease;
  animation: glitchHit 4s infinite;
}

/* 🔥 only short burst glitch */
@keyframes glitchHit {
  0%, 92%, 100% {
    transform: none;
    color: #00ff41;
    text-shadow: 0 0 10px rgba(0,255,65,.8), 0 0 24px rgba(0,255,65,.35);
  }

  /* 🔴 glitch moment (very short) */
  93% {
    transform: translate(-2px, 1px);
    color: #ff3b3b;
    text-shadow: 2px 0 red, -2px 0 #ff0000;
  }

  94% {
    transform: translate(2px, -1px);
    color: #ff0000;
    text-shadow: -2px 0 red, 2px 0 #ff3b3b;
  }

  95% {
    transform: translate(-1px, 2px);
    color: #ff3b3b;
    text-shadow: 2px 2px red;
  }

  /* back to normal instantly */
  96% {
    transform: none;
    color: #00ff41;
    text-shadow: 0 0 10px rgba(0,255,65,.8), 0 0 24px rgba(0,255,65,.35);
  }
}
/* layout */
.trust-enhanced {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

/* text styling */
.trust-text {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
}

.trust-text span {
  color: #ffffff;
  font-weight: 600;
  letter-spacing: 0.03em;
}

/* 🔴 single blinking dot */
.red-dot {
  width: 10px;
  height: 10px;
  background: #ff3b3b;
  border-radius: 50%;
  margin-top: 5px;
  box-shadow: 0 0 10px rgba(255,59,59,0.9);
  animation: redBlink 1.2s infinite;
}

/* animation */
@keyframes redBlink {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
    box-shadow: 0 0 10px rgba(255,59,59,0.9);
  }
  50% {
    opacity: 0.3;
    transform: scale(1.5);
    box-shadow: 0 0 18px rgba(255,0,0,1);
  }
}/* ===== MATRIX GRID FIX ===== */
.matrix-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center; /* vertical center fix */
  gap: 40px;
}

.matrix-right {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Image size control (main fix) */
.matrix-right img {
  max-height: 420px; /* control height */
  width: auto;
  object-fit: contain;
}

/* Mobile responsive */
@media (max-width: 768px) {
  .matrix-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .matrix-right img {
    max-height: 300px;
  }
}

/* ===== GOLDEN BORDER PREMIUM LOOK ===== */
.matrix-cta {
  position: relative;
  border: 1.5px solid rgba(255, 215, 0, 0.6);
  border-radius: 14px;
  overflow: hidden;
}

/* golden glow */
.matrix-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 14px;
  padding: 1px;
  background: linear-gradient(120deg, #ffd700, #ffae00, #ffd700);
  -webkit-mask: 
    linear-gradient(#000 0 0) content-box, 
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  pointer-events: none;
}

/* subtle glow effect */
.matrix-cta::after {
  content: "";
  position: absolute;
  inset: -2px;
  background: radial-gradient(circle at 50% 50%, rgba(255,215,0,0.15), transparent 70%);
  z-index: 0;
  pointer-events: none;
}