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

:root {
  --navy:    #070d1f;
  --navy2:   #0d1630;
  --blue:    #2563eb;
  --blue2:   #3b82f6;
  --purple:  #7c3aed;
  --purple2: #8b5cf6;
  --gold:    #f59e0b;
  --gold2:   #fbbf24;
  --white:   #ffffff;
  --text:    #e2e8f0;
  --muted:   #94a3b8;
  --border:  rgba(255,255,255,0.08);
  --glass:   rgba(255,255,255,0.04);
  --glass2:  rgba(255,255,255,0.08);
  --radius:  14px;
  --radius2: 24px;
  --shadow:  0 25px 60px rgba(0,0,0,0.4);
  --glow:    0 0 80px rgba(37,99,235,0.25);
}

html { scroll-behavior: smooth; }

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--navy);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ── Scrollbar ───────────────────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--navy2); }
::-webkit-scrollbar-thumb { background: var(--blue); border-radius: 3px; }

/* ── Typography ─────────────────────────────────────── */
h1,h2,h3,h4 { line-height: 1.2; font-weight: 700; }
a { text-decoration: none; color: inherit; }

.gradient-text {
  background: linear-gradient(135deg, #60a5fa 0%, #a78bfa 50%, #f59e0b 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Layout ─────────────────────────────────────────── */
.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }
section { padding: 96px 0; }

/* ── NAV ─────────────────────────────────────────────── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 0 24px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  background: rgba(7,13,31,0.8);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s;
}
nav.scrolled { box-shadow: 0 4px 32px rgba(0,0,0,0.4); }
.nav-inner {
  max-width: 1160px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  height: 64px;
}
.nav-logo {
  font-size: 1.3rem; font-weight: 800; letter-spacing: -0.5px;
  display: flex; align-items: center; gap: 8px;
}
.nav-logo .dot { color: var(--gold); }
.nav-links { display: flex; gap: 32px; }
.nav-links a {
  font-size: 0.875rem; font-weight: 500; color: var(--muted);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--white); }
.nav-cta { display: flex; gap: 10px; align-items: center; }
.btn { display: inline-flex; align-items: center; gap: 6px; padding: 9px 20px;
  border-radius: 8px; font-size: 0.875rem; font-weight: 600; cursor: pointer;
  border: none; transition: all 0.2s; text-decoration: none; }
.btn-ghost { background: transparent; color: var(--muted); border: 1px solid var(--border); }
.btn-ghost:hover { color: var(--white); border-color: rgba(255,255,255,0.2); }
.btn-primary {
  background: linear-gradient(135deg, var(--blue), var(--purple));
  color: var(--white);
  box-shadow: 0 4px 20px rgba(37,99,235,0.35);
}
.btn-primary:hover { transform: translateY(-1px); box-shadow: 0 6px 28px rgba(37,99,235,0.5); }
.btn-lg { padding: 14px 32px; font-size: 1rem; border-radius: 10px; }
.btn-outline-gold {
  background: transparent; color: var(--gold);
  border: 1px solid rgba(245,158,11,0.4);
}
.btn-outline-gold:hover { background: rgba(245,158,11,0.08); border-color: var(--gold); }

/* ── HERO ────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex; align-items: center;
  padding: 100px 0 60px;
  position: relative; overflow: hidden;
}

/* Animated blobs */
.blob {
  position: absolute; border-radius: 50%;
  filter: blur(80px); opacity: 0.18; pointer-events: none;
  animation: drift 12s ease-in-out infinite;
}
.blob-1 { width: 600px; height: 600px; background: var(--blue); top: -100px; right: -100px; animation-delay: 0s; }
.blob-2 { width: 400px; height: 400px; background: var(--purple); bottom: -50px; left: -50px; animation-delay: -4s; }
.blob-3 { width: 300px; height: 300px; background: var(--gold); top: 40%; right: 30%; animation-delay: -8s; opacity: 0.08; }

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

.hero-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: center;
  max-width: 1160px; margin: 0 auto; padding: 0 24px;
  position: relative; z-index: 1;
}

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(37,99,235,0.12); border: 1px solid rgba(37,99,235,0.3);
  color: #60a5fa; padding: 6px 14px; border-radius: 100px;
  font-size: 0.8rem; font-weight: 600; margin-bottom: 24px;
}
.hero-badge span { width: 6px; height: 6px; background: #60a5fa; border-radius: 50%;
  animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.5;transform:scale(1.5)} }

.hero h1 {
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  letter-spacing: -1.5px;
  margin-bottom: 20px;
  line-height: 1.1;
}

.hero-sub {
  font-size: 1.1rem; color: var(--muted); max-width: 480px;
  margin-bottom: 36px; line-height: 1.7;
}

.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 48px; }

.hero-trust {
  display: flex; align-items: center; gap: 12px;
  font-size: 0.8rem; color: var(--muted);
}
.hero-trust-avatars {
  display: flex;
}
.hero-trust-avatars span {
  width: 28px; height: 28px; border-radius: 50%;
  border: 2px solid var(--navy);
  background: linear-gradient(135deg, var(--blue), var(--purple));
  margin-left: -8px; display: flex; align-items: center; justify-content: center;
  font-size: 0.65rem; font-weight: 700; color: white;
}
.hero-trust-avatars span:first-child { margin-left: 0; }

/* ── Hero Visual — Dashboard mockup ─────────────────── */
.hero-visual { position: relative; overflow: visible; }

.mockup {
  background: linear-gradient(145deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
  border: 1px solid var(--border);
  border-radius: var(--radius2);
  padding: 24px;
  box-shadow: var(--shadow), var(--glow);
  backdrop-filter: blur(10px);
  animation: float 6s ease-in-out infinite;
}
@keyframes float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-12px)} }

.mockup-bar {
  display: flex; align-items: center; gap: 6px; margin-bottom: 20px;
}
.mockup-dot { width: 10px; height: 10px; border-radius: 50%; }
.mockup-dot:nth-child(1) { background: #ef4444; }
.mockup-dot:nth-child(2) { background: #f59e0b; }
.mockup-dot:nth-child(3) { background: #22c55e; }
.mockup-url {
  flex: 1; background: rgba(255,255,255,0.05); border-radius: 6px;
  padding: 5px 12px; font-size: 0.72rem; color: var(--muted); margin-left: 8px;
}

.mockup-stats {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; margin-bottom: 14px;
}
.mstat {
  background: rgba(255,255,255,0.04); border: 1px solid var(--border);
  border-radius: 10px; padding: 12px;
}
.mstat-val {
  font-size: 1.4rem; font-weight: 800; line-height: 1;
  background: linear-gradient(135deg, var(--blue2), var(--purple2));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.mstat-label { font-size: 0.68rem; color: var(--muted); margin-top: 4px; }

.mockup-leads { display: flex; flex-direction: column; gap: 7px; margin-bottom: 14px; }
.mlead {
  display: flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,0.03); border: 1px solid var(--border);
  border-radius: 8px; padding: 9px 12px;
  animation: slideIn 0.5s ease both;
}
.mlead:nth-child(1){animation-delay:0.1s} .mlead:nth-child(2){animation-delay:0.2s}
.mlead:nth-child(3){animation-delay:0.3s} .mlead:nth-child(4){animation-delay:0.4s}
@keyframes slideIn { from{opacity:0;transform:translateX(16px)} to{opacity:1;transform:none} }

.mlead-icon {
  width: 30px; height: 30px; border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem; flex-shrink: 0;
}
.mlead-info { flex: 1; min-width: 0; }
.mlead-name { font-size: 0.78rem; font-weight: 600; color: var(--white); }
.mlead-cat  { font-size: 0.68rem; color: var(--muted); }
.mlead-tag  {
  font-size: 0.65rem; font-weight: 700; padding: 2px 7px; border-radius: 100px;
}
.tag-new    { background: rgba(34,197,94,0.15); color: #4ade80; }
.tag-hot    { background: rgba(239,68,68,0.15);  color: #f87171; }
.tag-warm   { background: rgba(245,158,11,0.15); color: #fbbf24; }

.mockup-article {
  background: rgba(124,58,237,0.08); border: 1px solid rgba(124,58,237,0.2);
  border-radius: 10px; padding: 12px;
}
.ma-label { font-size: 0.65rem; font-weight: 700; color: var(--purple2); margin-bottom: 6px; letter-spacing: 0.05em; }
.ma-title { font-size: 0.82rem; font-weight: 600; color: var(--white); margin-bottom: 6px; }
.ma-bar-wrap { display: flex; gap: 4px; margin-bottom: 4px; }
.ma-bar { height: 4px; border-radius: 2px; background: linear-gradient(90deg, var(--blue), var(--purple)); }
.ma-bar:nth-child(1){width:70%;opacity:1} .ma-bar:nth-child(2){width:20%;opacity:0.5} .ma-bar:nth-child(3){width:10%;opacity:0.2}
.ma-meta { font-size: 0.66rem; color: var(--muted); }

/* Floating badge */
.float-badge {
  position: absolute; background: rgba(13,22,48,0.95);
  border: 1px solid var(--border); border-radius: 12px;
  padding: 10px 16px; backdrop-filter: blur(10px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
  animation: float2 5s ease-in-out infinite;
  z-index: 10; white-space: nowrap;
}
.float-badge-1 { top: -28px; left: -52px; animation-delay: -1s; }
.float-badge-2 { bottom: 60px; right: -60px; animation-delay: -3s; }
@keyframes float2 { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-8px)} }
.fb-val { font-size: 1.1rem; font-weight: 800; color: var(--gold); }
.fb-label { font-size: 0.68rem; color: var(--muted); }

/* ── FLAGS STRIP ─────────────────────────────────────── */
.flags-strip {
  padding: 28px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: rgba(255,255,255,0.015);
}
.flags-inner {
  display: flex; align-items: center; justify-content: center;
  gap: 40px; flex-wrap: wrap;
  font-size: 0.8rem; color: var(--muted);
}
.flag-item { display: flex; align-items: center; gap: 8px; font-weight: 500; }
.flag-item .flag { font-size: 1.3rem; }

/* ── FEATURES ────────────────────────────────────────── */
.features { background: var(--navy); }
.section-label {
  display: inline-block; font-size: 0.75rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--blue2); margin-bottom: 12px;
}
.section-title { font-size: clamp(1.8rem, 4vw, 2.6rem); letter-spacing: -1px; margin-bottom: 16px; }
.section-sub { font-size: 1rem; color: var(--muted); max-width: 560px; line-height: 1.7; }
.section-head { text-align: center; margin-bottom: 64px; }
.section-head .section-sub { margin: 0 auto; }

.features-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 24px;
}

.feat-card {
  background: linear-gradient(145deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
  border: 1px solid var(--border);
  border-radius: var(--radius2);
  padding: 36px 32px;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
  position: relative; overflow: hidden;
}
.feat-card::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--card-color, var(--blue)) 0%, transparent 60%);
  opacity: 0; transition: opacity 0.3s; border-radius: inherit;
}
.feat-card:hover { transform: translateY(-6px); box-shadow: var(--shadow), 0 0 40px var(--card-glow, rgba(37,99,235,0.2)); border-color: rgba(255,255,255,0.15); }
.feat-card:hover::before { opacity: 0.06; }

.feat-icon {
  width: 52px; height: 52px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; margin-bottom: 24px;
}
.feat-card h3 { font-size: 1.2rem; margin-bottom: 12px; color: var(--white); }
.feat-card p { font-size: 0.9rem; color: var(--muted); line-height: 1.7; margin-bottom: 20px; }
.feat-list { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.feat-list li { display: flex; align-items: center; gap: 8px; font-size: 0.85rem; color: var(--text); }
.feat-list li::before { content: ""; width: 5px; height: 5px; border-radius: 50%; flex-shrink: 0; }

/* ── HOW IT WORKS ────────────────────────────────────── */
.how { background: linear-gradient(180deg, var(--navy) 0%, var(--navy2) 100%); }
.steps { display: grid; grid-template-columns: repeat(3,1fr); gap: 40px; position: relative; }
.steps::before {
  content: ""; position: absolute; top: 32px; left: calc(16.66% + 20px); right: calc(16.66% + 20px);
  height: 1px; background: linear-gradient(90deg, var(--blue), var(--purple));
  opacity: 0.4;
}
.step { text-align: center; }
.step-num {
  width: 64px; height: 64px; border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--purple));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; font-weight: 800; color: white;
  margin: 0 auto 24px; box-shadow: 0 8px 32px rgba(37,99,235,0.35);
}
.step h3 { font-size: 1.05rem; margin-bottom: 10px; }
.step p { font-size: 0.875rem; color: var(--muted); line-height: 1.7; }

/* ── PRICING ─────────────────────────────────────────── */
.pricing { background: var(--navy); }
.pricing-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; align-items: start; }

.price-card {
  background: linear-gradient(145deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
  border: 1px solid var(--border);
  border-radius: var(--radius2); padding: 36px 28px;
  transition: transform 0.3s;
}
.price-card.featured {
  background: linear-gradient(145deg, rgba(37,99,235,0.15), rgba(124,58,237,0.1));
  border-color: rgba(99,102,241,0.5);
  box-shadow: 0 0 60px rgba(37,99,235,0.2), var(--shadow);
  transform: scale(1.04);
}
.price-card:not(.featured):hover { transform: translateY(-4px); }

.price-badge {
  display: inline-block; background: linear-gradient(135deg, var(--blue), var(--purple));
  color: white; font-size: 0.7rem; font-weight: 700; letter-spacing: 0.05em;
  padding: 4px 12px; border-radius: 100px; margin-bottom: 16px;
}
.price-name { font-size: 1.1rem; font-weight: 700; margin-bottom: 8px; }
.price-amount {
  font-size: 2.8rem; font-weight: 800; letter-spacing: -1px; line-height: 1;
  margin-bottom: 4px; color: var(--white);
}
.price-amount span { font-size: 1.2rem; font-weight: 500; color: var(--muted); vertical-align: super; }
.price-period { font-size: 0.8rem; color: var(--muted); margin-bottom: 28px; }
.price-divider { height: 1px; background: var(--border); margin-bottom: 24px; }
.price-features { list-style: none; display: flex; flex-direction: column; gap: 12px; margin-bottom: 32px; }
.price-features li { display: flex; align-items: flex-start; gap: 10px; font-size: 0.875rem; }
.price-features li .check { color: #4ade80; font-size: 0.8rem; margin-top: 2px; flex-shrink: 0; }
.price-features li .x { color: #475569; font-size: 0.8rem; margin-top: 2px; flex-shrink: 0; }
.price-features li.dim { color: var(--muted); }
.price-cta { width: 100%; text-align: center; justify-content: center; padding: 13px; border-radius: 10px; }

/* ── STATS BAR ───────────────────────────────────────── */
.stats-bar {
  background: linear-gradient(135deg, rgba(37,99,235,0.12), rgba(124,58,237,0.12));
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  padding: 60px 0;
}
.stats-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 40px; text-align: center; }
.stat-val { font-size: 2.4rem; font-weight: 800; letter-spacing: -1px; }
.stat-label { font-size: 0.85rem; color: var(--muted); margin-top: 4px; }

/* ── FINAL CTA ───────────────────────────────────────── */
.final-cta {
  text-align: center; padding: 120px 0;
  background: linear-gradient(180deg, var(--navy) 0%, var(--navy2) 100%);
}
.final-cta h2 { font-size: clamp(2rem, 4vw, 3rem); letter-spacing: -1px; margin-bottom: 16px; }
.final-cta p { font-size: 1rem; color: var(--muted); max-width: 480px; margin: 0 auto 36px; }
.final-cta-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.free-note { font-size: 0.78rem; color: var(--muted); margin-top: 16px; }

/* ── FOOTER ─────────────────────────────────────────── */
footer {
  background: var(--navy2);
  border-top: 1px solid var(--border);
  padding: 64px 0 32px;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-brand { }
.footer-logo { font-size: 1.2rem; font-weight: 800; margin-bottom: 12px; }
.footer-tagline { font-size: 0.85rem; color: var(--muted); max-width: 220px; line-height: 1.6; margin-bottom: 20px; }
.footer-flags { display: flex; gap: 8px; font-size: 1.2rem; }
.footer-col h4 { font-size: 0.8rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); margin-bottom: 16px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a { font-size: 0.875rem; color: var(--muted); transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--white); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; padding-top: 28px; border-top: 1px solid var(--border); font-size: 0.8rem; color: var(--muted); }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { color: var(--muted); }
.footer-bottom-links a:hover { color: var(--white); }

/* ── Scroll reveal ───────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.65s ease, transform 0.65s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* ── RESPONSIVE ─────────────────────────────────────── */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .features-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .steps::before { display: none; }
  .pricing-grid { grid-template-columns: 1fr; }
  .price-card.featured { transform: none; }
  .stats-grid { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .nav-links { display: none; }
}
@media (max-width: 560px) {
  .stats-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .btn-lg { width: 100%; justify-content: center; }
}
