/* ============================================
   VARIANT B — Additional Styles
   Loads AFTER ../style.css (base styles)
   ============================================ */

/* --- KEY POINTS BOX (Option A) --- */
.key-points{background:#f4f4f4;border-left:4px solid var(--red);padding:20px 16px;margin:0}
.key-points__inner{max-width:700px;margin:0 auto}
.key-points__title{font-family:var(--ff-b);font-size:12px;font-weight:800;letter-spacing:2px;text-transform:uppercase;color:var(--red);margin-bottom:12px;display:flex;align-items:center;gap:8px}
.key-points__title::before{content:'';display:inline-block;width:8px;height:8px;background:var(--red);border-radius:50%}
.key-points__list{list-style:none;padding:0;margin:0;display:flex;flex-direction:column;gap:10px}
.key-points__list li{font-size:14px;line-height:1.5;color:var(--txt);padding-left:20px;position:relative}
.key-points__list li::before{content:'►';position:absolute;left:0;top:0;color:var(--red);font-size:10px;line-height:1.5}

/* --- EARLY PROOF / Progressive Reveal (Option B partial) --- */
.early-proof__section{background:var(--off-white);padding:32px 16px;border-top:1px solid var(--g200);border-bottom:1px solid var(--g200)}
.early-proof__inner{max-width:700px;margin:0 auto}
.early-proof__title{font-family:var(--ff-b);font-size:14px;font-weight:700;color:var(--g500);text-transform:uppercase;letter-spacing:1px;margin-bottom:16px;text-align:center}
.early-proof__quotes{display:flex;flex-direction:column;gap:16px}
.early-proof__quote{background:#fff;border-left:4px solid var(--gold);padding:16px 20px;border-radius:0 8px 8px 0;animation:fadeUp .8s ease-out}
.early-proof__quote p{font-size:14px;font-style:italic;line-height:1.5;margin-bottom:6px;color:var(--txt)}
.early-proof__quote cite{font-size:12px;font-weight:700;color:var(--gold-dk);font-style:normal}

/* fade-in for early proof */
.early-proof[style*="block"]{animation:fadeUp .8s ease-out}

/* --- STICKY ENGAGEMENT BAR (Option C) --- */
.sticky-bar{position:fixed;bottom:0;left:0;right:0;z-index:9999;background:rgba(26,26,26,.96);backdrop-filter:blur(8px);-webkit-backdrop-filter:blur(8px);border-top:2px solid var(--red);padding:12px 16px;transform:translateY(100%);transition:transform .4s ease-out}
.sticky-bar--visible{transform:translateY(0)}
.sticky-bar__inner{max-width:700px;margin:0 auto;display:flex;align-items:center;justify-content:center}
.sticky-bar__watch{display:flex;align-items:center;gap:10px;color:#fff;font-size:14px;font-weight:500}
.sticky-bar__dot{width:8px;height:8px;background:var(--red);border-radius:50%;animation:pulse-d 1.5s ease-in-out infinite;flex-shrink:0}
.sticky-bar__text{opacity:.9}
.sticky-bar__cta{display:flex;align-items:center;gap:16px;width:100%}
.sticky-bar__urgency{color:#fff;font-size:13px;white-space:nowrap}
.sticky-bar__urgency strong{color:var(--gold);font-size:15px}
.sticky-bar__btn{display:inline-block;background:var(--gold);color:var(--dark);font-weight:800;font-size:14px;letter-spacing:.5px;padding:12px 24px;border-radius:4px;text-align:center;white-space:nowrap;transition:background .2s,transform .15s;animation:pulse-btn 2s ease-in-out infinite}
.sticky-bar__btn:hover{background:var(--gold-lt);transform:scale(1.03)}

@keyframes pulse-btn{0%,100%{box-shadow:0 0 0 0 rgba(212,168,67,.4)}50%{box-shadow:0 0 0 8px rgba(212,168,67,0)}}

/* --- Add bottom padding to body to account for sticky bar --- */
body{padding-bottom:64px}

/* --- RESPONSIVE: Variant B additions --- */
@media(max-width:768px){
  .key-points__list li{font-size:13px}
  .sticky-bar__inner{flex-direction:column;gap:8px}
  .sticky-bar__cta{flex-direction:column;align-items:stretch;gap:8px}
  .sticky-bar__btn{padding:14px 20px;font-size:15px;text-align:center}
  .early-proof__quotes{gap:12px}
}

@media(max-width:480px){
  .key-points__title{font-size:11px}
  .key-points__list li{font-size:12px;padding-left:16px}
  .sticky-bar__text{font-size:12px}
  .sticky-bar__urgency{font-size:12px}
  .sticky-bar__btn{padding:12px 16px;font-size:14px}
}
