:root {
  --bg: #0F0F13;
  --bg2: #16161E;
  --surface: #1A1A22;
  --surface2: #212129;
  --border: #2A2A35;
  --border2: #33333F;
  --primary: #085CFB;
  --primary-dim: rgba(8, 92, 251, 0.12);
  --primary-dim2: rgba(8, 92, 251, 0.2);
  --text: #FFFFFF;
  --text2: #A0A0B0;
  --text3: #606070;
  --positive: #10B981;
  --warning: #F59E0B;
  --error: #EF4444;
  --radius: 12px;
  --radius-sm: 8px;
  --radius-lg: 16px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.6;
  font-size: 15px;
}

h1, h2, h3, h4 {
  font-family: 'Inter', system-ui, sans-serif;
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

/* ── NAV ── */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(15, 15, 19, 0.9);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1200px; margin: 0 auto;
  padding: 14px 32px;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo {
  display: flex; align-items: center; gap: 8px;
  font-weight: 700; font-size: 16px; letter-spacing: -0.3px;
  text-decoration: none; color: var(--text);
}
.nav-logo-icon {
  width: 28px; height: 28px; border-radius: 7px;
  background: var(--primary);
  display: flex; align-items: center; justify-content: center;
}
.nav-links { display: flex; align-items: center; gap: 24px; }
.nav-links a {
  color: var(--text2); text-decoration: none; font-size: 14px;
  font-weight: 500; transition: color 0.15s;
}
.nav-links a:hover { color: var(--text); }
.nav-user { color: var(--text3); font-size: 13px; padding-left: 8px; border-left: 1px solid var(--border); }
.nav-logout { color: var(--text3) !important; font-size: 13px !important; }
.nav-cta {
  background: var(--primary); color: #fff !important;
  padding: 7px 16px; border-radius: var(--radius-sm);
  font-weight: 600; font-size: 13px !important;
  transition: opacity 0.15s;
}
.nav-cta:hover { opacity: 0.88; color: #fff !important; }

/* ── HERO ── */
.hero {
  background: var(--bg);
  padding: 80px 0 0;
  overflow: hidden;
}
.hero-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 32px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--primary-dim); border: 1px solid var(--primary-dim2);
  color: #60A5FA; font-size: 12px; font-weight: 500; letter-spacing: 0.5px;
  padding: 5px 14px; border-radius: 100px; margin-bottom: 24px;
}
.hero-headline {
  font-size: 52px; line-height: 1.08; letter-spacing: -1.5px;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #fff 40%, #60A5FA 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  font-size: 17px; color: var(--text2); line-height: 1.65;
  margin-bottom: 32px; max-width: 460px;
}
.hero-actions { display: flex; align-items: center; gap: 16px; margin-bottom: 40px; }
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--primary); color: #fff;
  font-weight: 600; font-size: 15px; font-family: inherit;
  padding: 12px 28px; border-radius: var(--radius);
  border: none; cursor: pointer; text-decoration: none;
  transition: opacity 0.15s;
}
.btn-primary:hover { opacity: 0.9; }
.btn-primary.btn-sm { font-size: 13px; padding: 8px 18px; }
.btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--text2); font-weight: 500; font-size: 14px;
  text-decoration: none; transition: color 0.15s;
}
.btn-ghost:hover { color: var(--text); }
.hero-note { color: var(--text3); font-size: 13px; }
.hero-stats {
  display: flex; align-items: center; gap: 28px;
  padding-top: 28px; border-top: 1px solid var(--border);
}
.stat { text-align: left; }
.stat-num {
  display: block; font-size: 26px; font-weight: 700; color: var(--text);
  letter-spacing: -0.5px;
}
.stat-label { font-size: 12px; color: var(--text3); }
.stat-divider { width: 1px; height: 36px; background: var(--border); }

/* ── DASHBOARD MOCKUP ── */
.dashboard-mockup {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: 0 40px 80px rgba(0,0,0,0.4), 0 0 0 1px rgba(255,255,255,0.04) inset;
}
.mockup-topbar {
  background: var(--bg2);
  padding: 10px 16px; display: flex; align-items: center; gap: 12px;
  border-bottom: 1px solid var(--border);
}
.mockup-dots { display: flex; gap: 6px; }
.mockup-dots span { width: 10px; height: 10px; border-radius: 50%; }
.mockup-dots span:first-child { background: #FF5F57; }
.mockup-dots span:nth-child(2) { background: #FEBC2E; }
.mockup-dots span:nth-child(3) { background: #28C840; }
.mockup-title { font-size: 12px; color: var(--text3); font-weight: 500; }
.mockup-body { display: flex; height: 340px; }
.mockup-sidebar {
  width: 140px; border-right: 1px solid var(--border);
  padding: 14px 8px; display: flex; flex-direction: column; gap: 2px;
}
.sidebar-item {
  display: flex; align-items: center; gap: 8px;
  padding: 7px 10px; border-radius: 7px;
  font-size: 11px; color: var(--text3); cursor: default;
}
.sidebar-item.active { background: var(--primary-dim); color: #60A5FA; }
.mockup-main { flex: 1; padding: 16px; display: flex; flex-direction: column; gap: 14px; overflow: hidden; }
.mockup-header-row { display: flex; justify-content: space-between; align-items: flex-start; }
.mockup-label { font-size: 10px; color: var(--text3); margin-bottom: 4px; text-transform: uppercase; letter-spacing: 0.5px; }
.mockup-score { display: flex; align-items: baseline; gap: 8px; }
.score-num { font-size: 24px; font-weight: 700; color: var(--text); font-family: 'Inter', sans-serif; }
.score-change { font-size: 10px; color: var(--positive); background: rgba(16,185,129,0.1); padding: 2px 6px; border-radius: 4px; }
.mockup-chart-mini { opacity: 0.8; }
.mockup-kpis { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.kpi { background: var(--bg2); border-radius: 8px; padding: 10px; }
.kpi-label { font-size: 9px; color: var(--text3); display: block; margin-bottom: 2px; }
.kpi-val { font-size: 15px; font-weight: 700; color: var(--text); display: block; }
.kpi-delta { font-size: 9px; color: var(--positive); display: block; margin-top: 2px; }
.kpi-delta.up::before { content: '+'; }
.mockup-platforms { display: flex; flex-direction: column; gap: 7px; }
.platform-row { display: flex; align-items: center; gap: 8px; }
.platform-name { font-size: 10px; color: var(--text2); width: 70px; flex-shrink: 0; }
.platform-bar { flex: 1; height: 4px; background: var(--border); border-radius: 2px; overflow: hidden; }
.platform-fill { height: 100%; background: var(--primary); border-radius: 2px; }
.platform-pct { font-size: 10px; color: var(--text3); width: 28px; text-align: right; }

/* ── PLATFORMS ── */
.platforms { padding: 40px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.platforms-inner { max-width: 1200px; margin: 0 auto; padding: 0 32px; text-align: center; }
.platforms-label { color: var(--text3); font-size: 13px; margin-bottom: 24px; }
.platform-logos { display: flex; justify-content: center; align-items: center; flex-wrap: wrap; gap: 16px 40px; }
.platform-logo {
  display: flex; align-items: center; gap: 8px;
  color: var(--text3); font-size: 14px; font-weight: 500;
  opacity: 0.6; transition: opacity 0.2s;
}
.platform-logo:hover { opacity: 1; }

/* ── SECTION HEADERS ── */
.section-eyebrow {
  color: var(--primary); font-size: 12px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 1.5px;
  margin-bottom: 12px;
}
.section-title {
  font-size: 36px; line-height: 1.15; letter-spacing: -0.8px;
  margin-bottom: 16px;
}
.section-header { margin-bottom: 48px; }

/* ── FEATURES / HOW IT WORKS ── */
.features { padding: 80px 0; }
.features-inner { max-width: 1200px; margin: 0 auto; padding: 0 32px; }
.features-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
}
.feature-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 28px;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.feature-card:hover {
  border-color: var(--border2);
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}
.feature-icon {
  width: 44px; height: 44px; border-radius: 10px;
  background: var(--primary-dim); border: 1px solid var(--primary-dim2);
  display: flex; align-items: center; justify-content: center;
  color: #60A5FA; margin-bottom: 18px;
  font-size: 20px;
}
.feature-card h3 {
  font-size: 15px; font-weight: 600;
  margin-bottom: 8px; color: var(--text);
}
.feature-card p { font-size: 13px; color: var(--text2); line-height: 1.6; margin-bottom: 14px; }
.feature-card ul { list-style: none; display: flex; flex-direction: column; gap: 6px; }
.feature-card li {
  font-size: 12px; color: var(--text3);
  padding-left: 14px; position: relative;
}
.feature-card li::before {
  content: ''; position: absolute; left: 0; top: 7px;
  width: 4px; height: 4px; border-radius: 50%; background: var(--primary); opacity: 0.7;
}

/* ── DASHBOARD PREVIEW ── */
.dashboard-preview { padding: 80px 0; background: var(--bg2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.dp-inner { max-width: 1200px; margin: 0 auto; padding: 0 32px; display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.dp-desc { font-size: 15px; color: var(--text2); line-height: 1.65; margin-bottom: 24px; }
.dp-features { display: flex; flex-direction: column; gap: 10px; }
.dp-feature { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--text2); }
.dp-feature svg { color: var(--primary); flex-shrink: 0; }
.dp-metric { margin-bottom: 20px; }
.metric-big { font-size: 40px; font-weight: 700; letter-spacing: -1px; color: var(--text); }
.metric-label { font-size: 13px; color: var(--text3); margin-bottom: 10px; }
.metric-bar { height: 6px; background: var(--border); border-radius: 3px; overflow: hidden; margin-bottom: 8px; }
.metric-fill { height: 100%; background: linear-gradient(90deg, var(--primary), #3B82F6); border-radius: 3px; }
.metric-trend { font-size: 12px; color: var(--positive); }
.dp-metric-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-bottom: 20px; }
.dp-metric-small { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 14px; text-align: center; }
.metric-num { font-size: 20px; font-weight: 700; color: var(--text); }
.metric-lbl { font-size: 10px; color: var(--text3); margin: 4px 0; }
.dp-article-preview { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 14px; }
.article-label { font-size: 10px; color: var(--text3); text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 8px; }
.article-title { font-size: 12px; color: var(--text); font-weight: 500; line-height: 1.4; margin-bottom: 6px; }
.article-meta { font-size: 11px; color: var(--text3); }

/* ── VISIBILITY SCORE ── */
.visibility-score { padding: 80px 0; }
.vs-inner { max-width: 1200px; margin: 0 auto; padding: 0 32px; text-align: center; }
.vs-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--primary-dim); border: 1px solid var(--primary-dim2);
  color: #60A5FA; font-size: 12px; font-weight: 500; letter-spacing: 0.5px;
  padding: 5px 14px; border-radius: 100px; margin-bottom: 28px;
}
.vs-title { font-size: 42px; line-height: 1.15; letter-spacing: -1px; margin-bottom: 20px; }
.vs-sub { font-size: 16px; color: var(--text2); max-width: 640px; margin: 0 auto 56px; line-height: 1.7; }
.vs-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.vs-stat { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 28px 20px; }
.vs-num { font-size: 40px; font-weight: 700; color: var(--primary); letter-spacing: -1px; line-height: 1; margin-bottom: 8px; }
.vs-platform { font-size: 14px; font-weight: 600; color: var(--text); margin-bottom: 4px; }
.vs-desc { font-size: 12px; color: var(--text3); }

/* ── TESTIMONIALS ── */
.testimonials { padding: 80px 0; }
.test-inner { max-width: 1200px; margin: 0 auto; padding: 0 32px; }
.test-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.test-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 24px;
  display: flex; flex-direction: column; gap: 14px;
}
.test-stars { display: flex; gap: 3px; }
.test-quote { font-size: 14px; color: var(--text2); line-height: 1.65; flex: 1; }
.test-author { display: flex; align-items: center; gap: 12px; }
.test-avatar {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--primary-dim); border: 1px solid var(--primary-dim2);
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 600; color: #60A5FA;
}
.test-name { font-size: 14px; font-weight: 600; color: var(--text); }
.test-role { font-size: 12px; color: var(--text3); }

/* ── PRICING ── */
.pricing { padding: 80px 0; background: var(--bg2); }
.pricing-inner { max-width: 1200px; margin: 0 auto; padding: 0 32px; }
.pricing-sub { font-size: 16px; color: var(--text2); margin-bottom: 40px; max-width: 560px; }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-bottom: 28px; }
.price-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 28px;
  position: relative;
}
.price-card.featured {
  border-color: var(--primary);
  box-shadow: 0 0 0 1px var(--primary-dim2) inset, 0 8px 32px rgba(8,92,251,0.1);
}
.price-badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--primary); color: #fff; font-size: 11px; font-weight: 600;
  padding: 4px 14px; border-radius: 100px;
}
.price-name { font-size: 13px; font-weight: 600; color: var(--text2); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 12px; }
.price-amount { font-size: 40px; font-weight: 700; color: var(--text); letter-spacing: -1px; margin-bottom: 8px; }
.price-amount span { font-size: 16px; font-weight: 400; color: var(--text3); }
.price-desc { font-size: 13px; color: var(--text3); margin-bottom: 20px; line-height: 1.5; }
.price-features { display: flex; flex-direction: column; gap: 9px; }
.price-feat { display: flex; align-items: center; gap: 10px; font-size: 13px; color: var(--text2); }
.price-feat svg { color: var(--primary); flex-shrink: 0; }
.pricing-urgency {
  display: inline-block;
  background: rgba(245,158,11,0.1); border: 1px solid rgba(245,158,11,0.3);
  color: var(--warning); font-size: 12px; font-weight: 500;
  padding: 6px 14px; border-radius: 100px; margin-bottom: 12px;
}
.pricing-note { font-size: 13px; color: var(--text3); }
.pricing-note strong { color: var(--text2); }

/* ── FAQ ── */
.faq { padding: 80px 0; }
.faq-inner { max-width: 720px; margin: 0 auto; padding: 0 32px; }
.faq-list { display: flex; flex-direction: column; gap: 0; }
.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
}
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-q { font-size: 15px; font-weight: 600; color: var(--text); margin-bottom: 8px; }
.faq-a { font-size: 14px; color: var(--text2); line-height: 1.7; }

/* ── CLOSING ── */
.closing {
  padding: 80px 0;
  background: var(--surface);
  border-top: 1px solid var(--border);
}
.closing-inner { max-width: 1200px; margin: 0 auto; padding: 0 32px; text-align: center; }
.closing-headline {
  font-size: 48px; color: var(--text); letter-spacing: -1.5px; line-height: 1.1;
  margin-bottom: 16px;
}
.closing-sub { font-size: 17px; color: var(--text2); line-height: 1.6; margin-bottom: 24px; max-width: 560px; margin-left: auto; margin-right: auto; }
.closing-actions { display: flex; align-items: center; justify-content: center; gap: 12px; }

/* ── FOOTER ── */
footer { padding: 48px 0 32px; border-top: 1px solid var(--border); background: var(--bg); }
.footer-inner { max-width: 1200px; margin: 0 auto; padding: 0 32px; display: grid; grid-template-columns: 1fr auto; gap: 80px; margin-bottom: 40px; }
.footer-brand {}
.footer-tagline { font-size: 13px; color: var(--text3); margin-top: 10px; max-width: 280px; line-height: 1.5; }
.footer-links { display: flex; gap: 64px; }
.footer-col { display: flex; flex-direction: column; gap: 8px; }
.footer-col-head { font-size: 11px; font-weight: 600; color: var(--text2); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 4px; }
.footer-col a { font-size: 13px; color: var(--text3); text-decoration: none; transition: color 0.15s; }
.footer-col a:hover { color: var(--text); }
.footer-bottom {
  max-width: 1200px; margin: 0 auto; padding: 20px 32px 0;
  border-top: 1px solid var(--border);
  display: flex; justify-content: space-between; font-size: 12px; color: var(--text3);
}

/* ── SPIN ANIMATION ── */
.spin { animation: spin 0.8s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .vs-stats { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .hero-inner, .dp-inner { grid-template-columns: 1fr; }
  .hero-right { order: -1; }
  .features-grid, .test-grid, .pricing-grid { grid-template-columns: 1fr 1fr; }
  .vs-stats { grid-template-columns: repeat(2, 1fr); }
  .hero-headline { font-size: 42px; }
  .section-title { font-size: 30px; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .nav-links { display: none; }
}
@media (max-width: 640px) {
  .features-grid, .test-grid, .pricing-grid { grid-template-columns: 1fr; }
  .hero { padding: 56px 0 0; }
  .hero-headline { font-size: 34px; }
  .closing-headline { font-size: 36px; }
  .hero-stats { gap: 16px; }
  .vs-title { font-size: 28px; }
  .vs-stats { grid-template-columns: 1fr 1fr; }
  .footer-links { gap: 24px; }
  .footer-inner { padding: 0 20px; }
  .footer-bottom { padding: 20px 20px 0; }
  .features-inner, .test-inner, .pricing-inner, .faq-inner { padding: 0 20px; }
  .features, .testimonials, .pricing, .faq, .visibility-score, .dashboard-preview { padding: 56px 0; }
  .hero-inner, .pricing-inner, .features-inner { padding: 0 20px; }
}