/* === TOKENS (Autonoma Blacklight-inspired) === */
:root {
  --bg: #0a0a0a;
  --surface: #141414;
  --surface-2: #1e1e1e;
  --border: #2a2a2a;
  --accent: #c2e812;
  --accent-dim: #9ab80f;
  --accent-glow: rgba(194, 232, 18, 0.12);
  --amber: #fbbf24;
  --destructive: #ff4444;
  --text: #f5f5f5;
  --text-dim: #888888;
  --text-muted: #555555;
  --heading-font: 'DM Sans', system-ui, sans-serif;
  --body-font: 'DM Sans', system-ui, sans-serif;
  --mono-font: 'Geist Mono', 'SF Mono', 'Fira Code', monospace;
  --radius: 0rem;
  --radius-lg: 0rem;
}

/* === RESET & BASE === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--body-font);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }

/* === NAV === */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 20px 40px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  background: rgba(10, 10, 10, 0.85);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo { display: flex; align-items: center; gap: 10px; }
.logo-mark {
  width: 34px; height: 34px;
  background: var(--accent);
  color: #0a0a0a;
  font-family: var(--heading-font);
  font-weight: 700;
  font-size: 20px;
  display: flex; align-items: center; justify-content: center;
}
.logo-name {
  font-family: var(--heading-font);
  font-weight: 600;
  font-size: 18px;
  letter-spacing: -0.5px;
}
.nav-links { display: flex; gap: 32px; }
.nav-links a {
  color: var(--text-dim);
  font-size: 14px;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--text); }

/* === HERO === */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 40px 80px;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--border) 1px, transparent 1px),
    linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 60px 60px;
  opacity: 0.3;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, black 0%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, black 0%, transparent 100%);
}
.hero-inner {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: var(--accent-glow);
  border: 1px solid rgba(194, 232, 18, 0.25);
  font-size: 13px;
  color: var(--accent);
  margin-bottom: 24px;
  font-family: var(--heading-font);
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.badge-dot {
  width: 7px; height: 7px;
  background: var(--accent);
  box-shadow: 0 0 8px var(--accent);
}
.hero-headline {
  font-family: var(--heading-font);
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 700;
  line-height: 1.15;
  color: #fff;
  margin-bottom: 20px;
  letter-spacing: -1px;
}
.hero-headline em {
  font-style: normal;
  color: var(--accent);
}
.hero-sub {
  font-size: 17px;
  color: var(--text-dim);
  line-height: 1.7;
  max-width: 440px;
}
.hero-cta { margin-top: 28px; }
.cta-box {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  background: var(--accent-glow);
  border: 1px solid rgba(194, 232, 18, 0.3);
  color: var(--accent);
  font-size: 14px;
  font-family: var(--heading-font);
  font-weight: 500;
}
.cta-check { font-size: 16px; }

/* === WIDGET === */
.hero-widget {
  background: var(--surface);
  border: 1px solid var(--border);
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0,0,0,0.5);
}
.widget-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: var(--surface-2);
  border-bottom: 1px solid var(--border);
}
.widget-dots { display: flex; gap: 6px; }
.widget-dots span {
  width: 10px; height: 10px;
  background: var(--border);
}
.widget-dots span:nth-child(1) { background: #ff5f57; }
.widget-dots span:nth-child(2) { background: #febc2e; }
.widget-dots span:nth-child(3) { background: #28c840; }
.widget-label {
  font-size: 12px;
  color: var(--text-dim);
  font-family: var(--mono-font);
}
.widget-score {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 24px 20px 16px;
}
.score-circle {
  width: 80px; height: 80px;
  border: 3px solid var(--accent);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 0 20px var(--accent-glow);
}
.score-num {
  font-family: var(--mono-font);
  font-size: 26px;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}
.score-denom { font-size: 11px; color: var(--text-muted); font-family: var(--mono-font); }
.score-meta { flex: 1; }
.score-status {
  font-size: 13px;
  color: var(--text-dim);
  margin-bottom: 4px;
  font-family: var(--mono-font);
}
.score-status strong { color: var(--text); }
.score-competitor { font-size: 12px; color: var(--destructive); font-family: var(--mono-font); }
.widget-issues { padding: 0 20px 16px; }
.issue-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 8px 12px;
  font-size: 12px;
  color: var(--text-dim);
  background: rgba(255,255,255,0.02);
  margin-bottom: 6px;
  font-family: var(--mono-font);
}
.issue-item.issue-ok { background: rgba(194, 232, 18, 0.05); }
.issue-icon {
  width: 18px; height: 18px;
  background: rgba(255, 68, 68, 0.2);
  color: var(--destructive);
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
  font-family: var(--mono-font);
}
.issue-icon.ok { background: rgba(194, 232, 18, 0.15); color: var(--accent); }
.widget-fix {
  padding: 14px 20px;
  background: rgba(194, 232, 18, 0.05);
  border-top: 1px solid rgba(194, 232, 18, 0.15);
}
.fix-label {
  display: inline-block;
  font-size: 10px;
  font-family: var(--mono-font);
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--accent);
  margin-bottom: 6px;
  text-transform: uppercase;
}
.widget-fix p { font-size: 13px; color: var(--text); line-height: 1.5; font-family: var(--mono-font); }

/* === PROOF === */
.proof {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 48px 40px;
}
.proof-inner { max-width: 1100px; margin: 0 auto; }
.proof-stats { display: flex; align-items: center; gap: 40px; margin-bottom: 20px; }
.stat { flex: 1; text-align: center; }
.stat-num {
  display: block;
  font-family: var(--mono-font);
  font-size: 36px;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 6px;
}
.stat-desc { font-size: 13px; color: var(--text-dim); line-height: 1.5; }
.stat-divider { width: 1px; height: 50px; background: var(--border); flex-shrink: 0; }
.proof-note {
  text-align: center;
  font-size: 14px;
  color: var(--text-muted);
  font-style: italic;
}

/* === HOW === */
.how { padding: 100px 40px; }
.how-inner { max-width: 1100px; margin: 0 auto; }
.section-label {
  font-family: var(--mono-font);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.section-headline {
  font-family: var(--heading-font);
  font-size: clamp(24px, 3vw, 40px);
  font-weight: 700;
  color: #fff;
  margin-bottom: 60px;
  line-height: 1.2;
  letter-spacing: -0.5px;
}
.section-headline em { font-style: normal; color: var(--accent); }
.how-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; margin-bottom: 48px; }
.step { position: relative; }
.step-num {
  width: 44px; height: 44px;
  background: var(--accent-glow);
  border: 1px solid rgba(194, 232, 18, 0.3);
  color: var(--accent);
  font-family: var(--mono-font);
  font-size: 20px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.step-body h3 {
  font-family: var(--heading-font);
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 10px;
}
.step-body p { font-size: 14px; color: var(--text-dim); line-height: 1.7; }
.how-crawl {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 24px;
  background: rgba(194, 232, 18, 0.05);
  border: 1px solid rgba(194, 232, 18, 0.15);
  max-width: 700px;
}
.crawl-icon { color: var(--accent); flex-shrink: 0; margin-top: 2px; }
.crawl-text { font-size: 14px; color: var(--text-dim); line-height: 1.7; }
.crawl-text strong { color: var(--text); }

/* === NICHE === */
.niche {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 100px 40px;
}
.niche-inner { max-width: 1100px; margin: 0 auto; }
.niche-body {
  font-size: 17px;
  color: var(--text-dim);
  max-width: 700px;
  line-height: 1.8;
  margin-bottom: 56px;
}
.niche-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; }
.niche-card {
  padding: 28px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  transition: border-color 0.3s;
}
.niche-card:hover { border-color: rgba(194, 232, 18, 0.3); }
.niche-icon { color: var(--accent); margin-bottom: 16px; }
.niche-card h3 {
  font-family: var(--heading-font);
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 10px;
}
.niche-card p { font-size: 14px; color: var(--text-dim); line-height: 1.7; }
.niche-expansion {
  padding: 20px 24px;
  border: 1px dashed var(--border);
}
.niche-expansion p { font-size: 14px; color: var(--text-muted); }

/* === PRICING === */
.pricing { padding: 100px 40px; }
.pricing-inner { max-width: 1100px; margin: 0 auto; }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; }
.price-card {
  padding: 32px 28px;
  background: var(--surface);
  border: 1px solid var(--border);
  position: relative;
}
.price-card.featured {
  border-color: rgba(194, 232, 18, 0.4);
  background: var(--surface);
}
.price-card + .price-card {
  border-left: none;
}
.price-badge {
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  padding: 4px 14px;
  background: var(--accent);
  color: #0a0a0a;
  font-size: 11px;
  font-family: var(--mono-font);
  font-weight: 700;
  white-space: nowrap;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.price-tier {
  font-family: var(--mono-font);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-dim);
  margin-bottom: 8px;
}
.price-amount {
  font-family: var(--mono-font);
  font-size: 40px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
}
.price-period { font-size: 20px; color: var(--text-dim); font-weight: 400; }
.price-tagline { font-size: 14px; color: var(--text-dim); margin-bottom: 24px; }
.price-features { list-style: none; margin-bottom: 28px; }
.price-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--text-dim);
  padding: 7px 0;
  border-bottom: 1px solid rgba(42, 42, 42, 0.5);
}
.price-features li:last-child { border-bottom: none; }
.price-feature-muted { color: var(--text-muted) !important; }
.check { color: var(--accent); flex-shrink: 0; font-size: 15px; margin-top: 1px; }
.dash { color: var(--text-muted); flex-shrink: 0; }
.price-cta {
  padding: 12px;
  text-align: center;
  border: 1px solid var(--border);
  font-family: var(--heading-font);
  font-size: 14px;
  font-weight: 500;
  color: var(--text-dim);
}
.price-cta.primary {
  background: var(--accent);
  color: #0a0a0a;
  border-color: var(--accent);
  font-weight: 700;
}

/* === CLOSING === */
.closing {
  padding: 120px 40px;
  position: relative;
  overflow: hidden;
}
.closing-inner {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}
.closing-visual {
  margin-bottom: 60px;
  display: flex;
  justify-content: center;
}
.closing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
  width: 140px;
}
.closing-cell {
  aspect-ratio: 1;
}
.closing-cell.top-left { background: linear-gradient(135deg, var(--accent) 0%, rgba(194,232,18,0.3) 100%); }
.closing-cell.top-right { background: linear-gradient(135deg, rgba(194,232,18,0.2) 0%, rgba(194,232,18,0.05) 100%); }
.closing-cell.bot-left { background: linear-gradient(135deg, rgba(194,232,18,0.1) 0%, rgba(194,232,18,0.3) 100%); }
.closing-cell.bot-right { background: linear-gradient(135deg, rgba(194,232,18,0.05) 0%, var(--accent) 100%); opacity: 0.4; }
.closing-headline {
  font-family: var(--heading-font);
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 20px;
  letter-spacing: -1px;
}
.closing-sub {
  font-size: 17px;
  color: var(--text-dim);
  margin-bottom: 48px;
  line-height: 1.7;
}
.closing-widget {
  display: inline-block;
  padding: 24px 28px;
  background: var(--surface);
  border: 1px solid var(--border);
}
.cw-label {
  font-family: var(--mono-font);
  font-size: 13px;
  color: var(--text-dim);
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.cw-input {
  display: flex;
  align-items: center;
  gap: 4px;
  font-family: var(--heading-font);
  font-size: 22px;
  color: var(--text-dim);
}
.cw-domain { color: var(--text-muted); }
.cw-cursor {
  display: inline-block;
  width: 2px;
  height: 28px;
  background: var(--accent);
  animation: blink 1s step-end infinite;
}
@keyframes blink { 50% { opacity: 0; } }

/* === FOOTER === */
.footer {
  border-top: 1px solid var(--border);
  padding: 60px 40px;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}
.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}
.footer-tagline {
  font-size: 14px;
  color: var(--text-dim);
  margin-bottom: 24px;
}
.footer-links {
  display: flex;
  justify-content: center;
  gap: 28px;
  margin-bottom: 32px;
}
.footer-links a { font-size: 14px; color: var(--text-dim); }
.footer-links a:hover { color: var(--text); }
.footer-copy { font-size: 12px; color: var(--text-muted); }

/* === RESPONSIVE === */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-widget { display: none; }
  .hero-sub { max-width: 100%; }
  .how-steps { grid-template-columns: 1fr; gap: 32px; }
  .niche-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .price-card + .price-card { border-left: 1px solid var(--border); border-top: none; }
  .proof-stats { flex-direction: column; gap: 24px; }
  .stat-divider { display: none; }
}
@media (max-width: 600px) {
  .nav { padding: 16px 20px; }
  .nav-links { display: none; }
  .hero { padding: 100px 20px 60px; }
  .proof, .how, .niche, .pricing, .closing { padding: 60px 20px; }
  .footer { padding: 40px 20px; }
  .footer-links { flex-direction: column; gap: 12px; }
}