/* ===== RESET & VARIABLES ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --bg: #070b14; --bg2: #0d1426;
  --green: #00e676; --green2: #00c853; --blue: #2979ff;
  --card: rgba(255,255,255,0.04); --border: rgba(255,255,255,0.08);
  --text: #e8eaf6; --muted: #8892a4;
}
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { background: var(--bg); color: var(--text); font-family: 'Inter', sans-serif; overflow-x: hidden; }

/* ===== TICKER ===== */
.ticker-bar { background: linear-gradient(90deg,#00e676,#00c853); padding: 7px 0; overflow: hidden; white-space: nowrap; }
.ticker-inner { display: inline-flex; gap: 40px; animation: ticker 28s linear infinite; }
.ticker-item { font-weight: 700; font-size: 12px; color: #000; letter-spacing: .5px; }
@keyframes ticker { from{transform:translateX(0)} to{transform:translateX(-50%)} }

/* ===== NAVBAR ===== */
.navbar { display: flex; align-items: center; justify-content: space-between; padding: 14px 20px; background: rgba(7,11,20,.95); backdrop-filter: blur(16px); border-bottom: 1px solid var(--border); position: sticky; top: 0; z-index: 100; }
.nav-brand { display: flex; align-items: center; gap: 8px; font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 16px; }
.brand-icon { font-size: 20px; }
.nav-stats { display: none; }
.dot { width: 8px; height: 8px; border-radius: 50%; display: inline-block; }
.dot.green { background: var(--green); box-shadow: 0 0 8px var(--green); animation: blink 1.5s infinite; }
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:.3} }
.btn-nav { background: var(--green); color: #000; padding: 9px 16px; border-radius: 8px; font-weight: 700; font-size: 13px; text-decoration: none; transition: all .2s; white-space: nowrap; }

/* ===== HERO ===== */
.hero { padding: 48px 20px 60px; position: relative; overflow: hidden; }
.hero-bg-grid { position: absolute; inset: 0; background-image: linear-gradient(rgba(0,230,118,.04) 1px,transparent 1px),linear-gradient(90deg,rgba(0,230,118,.04) 1px,transparent 1px); background-size: 50px 50px; pointer-events: none; }
.hero-glow { position: absolute; border-radius: 50%; pointer-events: none; filter: blur(100px); }
.glow-left { background: rgba(0,230,118,.08); width: 400px; height: 400px; top: -100px; left: -150px; }
.glow-right { background: rgba(41,121,255,.06); width: 350px; height: 350px; bottom: -80px; right: -120px; }
.hero-content { position: relative; z-index: 1; }
.hero-visual { position: relative; z-index: 1; margin-top: 48px; }

.live-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(0,230,118,.1); border: 1px solid rgba(0,230,118,.3); border-radius: 100px; padding: 7px 16px; font-size: 12px; font-weight: 600; color: var(--green); margin-bottom: 20px; }
.pulse-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green); animation: pulse 1.5s infinite; flex-shrink: 0; }
@keyframes pulse { 0%{box-shadow:0 0 0 0 rgba(0,230,118,.5)} 70%{box-shadow:0 0 0 8px rgba(0,230,118,0)} 100%{box-shadow:0 0 0 0 rgba(0,230,118,0)} }

.hero-title { font-family: 'Space Grotesk', sans-serif; font-size: 36px; font-weight: 800; line-height: 1.15; margin-bottom: 18px; }
.highlight-green { color: var(--green); }
.highlight-gradient { background: linear-gradient(135deg,#00e676,#2979ff); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.hero-sub { font-size: 16px; color: var(--muted); line-height: 1.7; margin-bottom: 28px; }
.hero-sub strong { color: var(--text); }

/* COUNTDOWN */
.countdown-box { background: var(--card); border: 1px solid var(--border); border-radius: 14px; padding: 16px 20px; display: block; margin-bottom: 28px; }
.cd-label { font-size: 12px; color: var(--muted); margin-bottom: 12px; }
.cd-timer { display: flex; align-items: center; gap: 6px; }
.cd-unit { text-align: center; }
.cd-unit span { display: block; font-family: 'Space Grotesk', sans-serif; font-size: 36px; font-weight: 800; color: var(--green); line-height: 1; }
.cd-unit small { font-size: 10px; color: var(--muted); text-transform: uppercase; letter-spacing: 1px; }
.cd-sep { font-size: 30px; font-weight: 800; color: var(--green); opacity: .5; }

/* BUTTONS */
.hero-ctas { display: flex; flex-direction: column; gap: 12px; margin-bottom: 28px; }
.btn-primary { display: flex; align-items: center; justify-content: center; gap: 10px; background: linear-gradient(135deg,var(--green),var(--green2)); color: #000; font-weight: 800; font-size: 16px; padding: 16px 24px; border-radius: 12px; text-decoration: none; transition: all .25s; border: none; cursor: pointer; width: 100%; text-align: center; }
.btn-primary:active { transform: scale(.98); }
.btn-ghost { display: flex; align-items: center; justify-content: center; padding: 14px 24px; border-radius: 12px; border: 1px solid var(--border); color: var(--text); font-weight: 600; font-size: 15px; text-decoration: none; transition: all .2s; }
.trust-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.trust-item { display: flex; align-items: center; gap: 6px; font-size: 13px; color: var(--muted); }

/* SIGNAL PANEL */
.signal-panel { background: rgba(13,20,38,.95); border: 1px solid var(--border); border-radius: 18px; padding: 20px; box-shadow: 0 24px 60px rgba(0,0,0,.5); }
.panel-header { display: flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 600; margin-bottom: 16px; color: var(--muted); }
.panel-dot { width: 9px; height: 9px; border-radius: 50%; background: var(--green); box-shadow: 0 0 8px var(--green); animation: pulse 1.5s infinite; flex-shrink: 0; }
.panel-date { margin-left: auto; font-size: 11px; }
.signal-card { display: flex; align-items: center; justify-content: space-between; background: var(--card); border: 1px solid var(--border); border-radius: 12px; padding: 14px 16px; margin-bottom: 10px; }
.sc-ticker { font-family: 'Space Grotesk', sans-serif; font-size: 18px; font-weight: 800; }
.sc-name { font-size: 11px; color: var(--muted); margin-top: 2px; }
.sc-badge { background: rgba(0,230,118,.15); color: var(--green); border: 1px solid rgba(0,230,118,.3); border-radius: 6px; padding: 3px 8px; font-size: 10px; font-weight: 700; letter-spacing: 1px; text-align: center; margin-bottom: 4px; }
.sc-pct { font-size: 20px; font-weight: 800; color: var(--green); text-align: right; }
.panel-footer { text-align: center; background: rgba(0,230,118,.05); border: 1px dashed rgba(0,230,118,.2); border-radius: 10px; padding: 11px; font-size: 12px; color: var(--muted); margin-top: 6px; }
.float-notif { display: none; }

/* ===== STATS ===== */
.stats-section { padding: 60px 20px; background: var(--bg2); }
.stats-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.stat-card { background: var(--card); border: 1px solid var(--border); border-radius: 16px; padding: 24px 16px; text-align: center; }
.stat-icon { font-size: 28px; margin-bottom: 8px; }
.stat-val { font-family: 'Space Grotesk', sans-serif; font-size: 40px; font-weight: 900; color: var(--green); display: inline; }
.stat-suffix { font-family: 'Space Grotesk', sans-serif; font-size: 28px; font-weight: 900; color: var(--green); display: inline; }
.stat-label { font-weight: 700; font-size: 14px; margin-top: 6px; }
.stat-sub { font-size: 11px; color: var(--muted); margin-top: 3px; }

/* ===== HOW IT WORKS ===== */
.how-section { padding: 72px 20px; text-align: center; }
.section-label { font-size: 11px; font-weight: 700; letter-spacing: 3px; color: var(--green); text-transform: uppercase; margin-bottom: 10px; }
.section-title { font-family: 'Space Grotesk', sans-serif; font-size: 28px; font-weight: 800; margin-bottom: 12px; }
.section-sub { font-size: 15px; color: var(--muted); margin-bottom: 40px; line-height: 1.6; }
.steps-grid { display: flex; flex-direction: column; gap: 0; }
.step-card { background: var(--card); border: 1px solid var(--border); border-radius: 16px; padding: 28px 24px; text-align: left; }
.step-num { font-family: 'Space Grotesk', sans-serif; font-size: 12px; font-weight: 700; color: var(--green); letter-spacing: 2px; margin-bottom: 12px; }
.step-icon { font-size: 36px; margin-bottom: 12px; }
.step-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 10px; }
.step-card p { font-size: 14px; color: var(--muted); line-height: 1.7; }
.step-arrow { font-size: 22px; color: var(--green); opacity: .5; padding: 10px 0; text-align: center; }
.step-arrow::before { content: '↓'; }
@media (min-width: 640px) { .step-arrow::before { content: '→'; } }

/* ===== PROOF ===== */
.proof-section { padding: 72px 20px; background: var(--bg2); text-align: center; }
.results-grid { display: flex; flex-direction: column; gap: 16px; margin-top: 40px; }
.result-card { background: var(--card); border: 1px solid var(--border); border-radius: 16px; padding: 24px; text-align: left; }
.rc-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 16px; }
.rc-day { font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 16px; }
.rc-date { font-size: 11px; color: var(--green); font-weight: 600; }
.rc-row { display: flex; align-items: center; gap: 8px; margin-bottom: 10px; }
.rc-ticker { font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 13px; width: 55px; }
.rc-gain { font-weight: 800; color: var(--green); font-size: 13px; width: 55px; text-align: right; }
.rc-bar { flex: 1; height: 6px; background: rgba(255,255,255,.06); border-radius: 3px; overflow: hidden; }
.rc-fill { height: 100%; background: linear-gradient(90deg,var(--green),var(--blue)); border-radius: 3px; width: 0; transition: width 1.5s cubic-bezier(.4,0,.2,1); }
.rc-fill[data-partial="true"] { background: linear-gradient(90deg,#ff9800,#f44336); }

/* ===== TESTIMONIALS ===== */
.testimonials-section { padding: 72px 20px; text-align: center; }
.testi-grid { display: flex; flex-direction: column; gap: 16px; margin-top: 40px; }
.testi-card { background: var(--card); border: 1px solid var(--border); border-radius: 16px; padding: 24px; text-align: left; }
.testi-card.featured { border-color: rgba(0,230,118,.4); background: rgba(0,230,118,.04); }
.testi-badge { display: inline-block; background: rgba(0,230,118,.15); color: var(--green); border-radius: 6px; padding: 4px 10px; font-size: 11px; font-weight: 700; margin-bottom: 10px; }
.testi-stars { color: #ffd600; font-size: 16px; margin-bottom: 14px; }
.testi-card p { font-size: 14px; color: var(--muted); line-height: 1.7; margin-bottom: 20px; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar { width: 42px; height: 42px; border-radius: 50%; background: linear-gradient(135deg,var(--green),var(--blue)); display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 14px; color: #000; flex-shrink: 0; }
.testi-author strong { display: block; font-size: 14px; }
.testi-author small { color: var(--muted); font-size: 11px; }

/* ===== URGENCY ===== */
.urgency-section { padding: 72px 20px; background: linear-gradient(135deg,rgba(0,230,118,.06),rgba(41,121,255,.04)); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); text-align: center; }
.urgency-icon { font-size: 44px; margin-bottom: 14px; }
.urgency-section h2 { font-family: 'Space Grotesk', sans-serif; font-size: 26px; font-weight: 800; margin-bottom: 14px; }
.urgency-section p { font-size: 15px; color: var(--muted); line-height: 1.7; margin-bottom: 32px; }
.urgency-counter { display: flex; flex-direction: column; gap: 16px; background: var(--card); border: 1px solid var(--border); border-radius: 16px; padding: 24px 20px; margin-bottom: 32px; }
.uc-item { text-align: center; }
.uc-num { display: block; font-family: 'Space Grotesk', sans-serif; font-size: 38px; font-weight: 900; color: var(--text); }
.uc-num.green { color: var(--green); }
.uc-item > span:last-child { font-size: 13px; color: var(--muted); margin-top: 4px; display: block; }
.uc-divider { width: 60px; height: 1px; background: var(--border); margin: 0 auto; }
.urgency-note { display: block; margin-top: 14px; font-size: 12px; color: var(--muted); }
.btn-primary.large, .btn-primary.xlarge { font-size: 17px; padding: 18px 28px; width: 100%; }

/* ===== FAQ ===== */
.faq-section { padding: 72px 20px; }
.faq-list { margin-top: 40px; }
.faq-item { background: var(--card); border: 1px solid var(--border); border-radius: 14px; margin-bottom: 10px; overflow: hidden; }
.faq-item summary { padding: 18px 20px; font-weight: 600; font-size: 15px; cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; -webkit-tap-highlight-color: transparent; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; font-size: 20px; color: var(--green); transition: transform .3s; flex-shrink: 0; margin-left: 12px; }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-answer { padding: 0 20px 18px; color: var(--muted); font-size: 14px; line-height: 1.7; }

/* ===== FINAL CTA ===== */
.final-cta { padding: 80px 20px; text-align: center; position: relative; overflow: hidden; }
.fc-glow { position: absolute; width: 500px; height: 500px; border-radius: 50%; background: rgba(0,230,118,.07); filter: blur(100px); top: 50%; left: 50%; transform: translate(-50%,-50%); pointer-events: none; }
.final-cta h2 { font-family: 'Space Grotesk', sans-serif; font-size: 32px; font-weight: 900; margin-bottom: 16px; position: relative; }
.final-cta > p { font-size: 15px; color: var(--muted); margin-bottom: 36px; position: relative; line-height: 1.7; }
.fc-trust { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 16px; margin-top: 20px; font-size: 13px; color: var(--muted); }

/* ===== FOOTER ===== */
.footer { padding: 40px 20px; text-align: center; border-top: 1px solid var(--border); background: var(--bg2); }
.footer-brand { font-family: 'Space Grotesk', sans-serif; font-size: 18px; font-weight: 700; margin-bottom: 14px; }
.footer p { font-size: 12px; color: var(--muted); max-width: 520px; margin: 0 auto 8px; line-height: 1.7; }

/* ===== STICKY CTA ===== */
.sticky-cta { position: fixed; bottom: 16px; left: 16px; right: 16px; z-index: 200; opacity: 0; pointer-events: none; transition: opacity .3s, transform .3s; transform: translateY(20px); }
.sticky-cta.visible { opacity: 1; pointer-events: all; transform: translateY(0); }
.sticky-cta .btn-primary { border-radius: 14px; box-shadow: 0 8px 32px rgba(0,230,118,.3); }
/* Hide sticky CTA near footer to avoid overlap */
.sticky-cta.near-bottom { opacity: 0; pointer-events: none; }

/* ===== POPUP NOTIFICATIONS ===== */
.popup-container { position: fixed; bottom: 80px; left: 10px; z-index: 300; display: flex; flex-direction: column; gap: 8px; pointer-events: none; max-width: calc(100vw - 20px); }
.popup-notif { background: rgba(13,20,38,.97); border: 1px solid var(--border); border-left: 3px solid var(--green); border-radius: 10px; padding: 10px 14px; font-size: 12px; display: flex; align-items: center; gap: 8px; box-shadow: 0 6px 24px rgba(0,0,0,.5); transform: translateX(-110%); transition: transform .4s cubic-bezier(.4,0,.2,1), opacity .4s; opacity: 0; }
.popup-notif.show { transform: translateX(0); opacity: 1; }
.popup-notif strong { display: block; font-size: 12px; }
.popup-notif small { color: var(--muted); font-size: 11px; }

/* ===== TABLET 640px+ ===== */
@media (min-width: 640px) {
  .hero { padding: 60px 32px; }
  .hero-title { font-size: 48px; }
  .hero-ctas { flex-direction: row; }
  .btn-primary { width: auto; }
  .btn-primary.large, .btn-primary.xlarge { width: auto; }
  .stats-grid { grid-template-columns: repeat(4,1fr); }
  .stats-section { padding: 72px 32px; }
  .how-section, .proof-section, .testimonials-section, .urgency-section, .final-cta { padding: 80px 32px; }
  .faq-section { padding: 80px 32px; }
  .urgency-counter { flex-direction: row; }
  .uc-divider { width: 1px; height: 60px; }
  .testi-grid, .results-grid { display: grid; grid-template-columns: repeat(2,1fr); }
  .steps-grid { flex-direction: row; align-items: stretch; }
  .step-arrow { padding: 0; }
  .popup-container { left: 16px; right: auto; max-width: 320px; }
  .sticky-cta { left: 50%; right: auto; transform: translateX(-50%) translateY(20px); width: auto; min-width: 300px; }
  .sticky-cta.visible { transform: translateX(-50%) translateY(0); }
  .nav-stats { display: flex; align-items: center; gap: 8px; font-size: 14px; color: var(--muted); }
}

/* ===== DESKTOP 1024px+ ===== */
@media (min-width: 1024px) {
  .navbar { padding: 16px 48px; }
  .hero { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; padding: 80px 48px; min-height: 100vh; }
  .hero-visual { margin-top: 0; order: 0; }
  .hero-title { font-size: 62px; }
  .hero-content { max-width: none; }
  .float-notif { display: flex; position: absolute; background: var(--bg2); border: 1px solid var(--border); border-radius: 12px; padding: 12px 16px; align-items: center; gap: 12px; font-size: 13px; box-shadow: 0 8px 32px rgba(0,0,0,.4); white-space: nowrap; animation: floatIn .6s ease both; }
  .fn1 { top: -24px; right: 10px; animation-delay: 1s; }
  .fn2 { bottom: 20px; left: -30px; animation-delay: 2s; }
  .float-notif strong { display: block; font-size: 14px; }
  .float-notif small { color: var(--green); font-weight: 600; }
  @keyframes floatIn { from{opacity:0;transform:translateY(10px)} to{opacity:1;transform:translateY(0)} }
  .stats-section { padding: 80px 48px; }
  .how-section, .proof-section, .testimonials-section, .urgency-section, .final-cta { padding: 100px 48px; }
  .faq-section { padding: 100px 48px; max-width: 800px; margin: 0 auto; }
  .testi-grid, .results-grid { grid-template-columns: repeat(3,1fr); }
  .steps-grid { max-width: 960px; margin: 0 auto; }
  .section-title { font-size: 44px; }
  .urgency-section h2 { font-size: 40px; }
  .urgency-inner { max-width: 760px; margin: 0 auto; }
  .btn-ghost:hover { border-color: var(--green); color: var(--green); }
  .btn-nav:hover { background: var(--green2); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(0,230,118,.3); }
  .stat-card:hover { border-color: rgba(0,230,118,.3); transform: translateY(-4px); box-shadow: 0 20px 40px rgba(0,0,0,.3); }
  .signal-card:hover { border-color: rgba(0,230,118,.3); transform: translateX(4px); }
  .step-card:hover { border-color: rgba(0,230,118,.3); transform: translateY(-6px); }
  .testi-card:hover { transform: translateY(-4px); border-color: rgba(0,230,118,.2); }
}
