/* Ad Cleanse - home page styles */

/* ── HERO ── */
.hero {
  min-height: 88vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 5rem 1.5rem 4rem;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 55% at 50% 30%, rgba(0,212,255,0.09) 0%, transparent 70%);
  pointer-events: none;
}
.hero-eyebrow {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.4rem;
}
.hero h1 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2.6rem, 6vw, 5rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.02em;
  max-width: 820px;
  margin-bottom: 1.4rem;
}
.hero h1 span { color: var(--accent); }
.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--muted);
  max-width: 560px;
  margin-bottom: 2.8rem;
  line-height: 1.7;
}
.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 3.5rem;
}

/* ── AD COUNTER ── */
.counter-wrap {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1rem 1.8rem;
}
.counter-label {
  font-size: 0.82rem;
  color: var(--muted);
  text-align: left;
  line-height: 1.4;
}
.counter-label strong { display: block; color: var(--text); font-size: 0.9rem; }
.counter-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--accent);
  min-width: 7ch;
  text-align: right;
  letter-spacing: -0.02em;
}
.counter-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse 1.6s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.4; transform: scale(0.7); }
}

/* ── STATS BAR ── */
.stats-bar {
  display: flex;
  justify-content: center;
  gap: 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--surface2);
  overflow-x: auto;
}
.stat-item {
  flex: 1;
  min-width: 160px;
  text-align: center;
  padding: 2rem 1.5rem;
  border-right: 1px solid var(--border);
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent);
  display: block;
}
.stat-desc { font-size: 0.85rem; color: var(--muted); margin-top: 0.25rem; }

/* ── SECTIONS ── */
section { padding: 5rem 1.5rem; }
.container { max-width: 1100px; margin: 0 auto; }
.section-label {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.8rem;
}
.section-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 1rem;
}
.section-sub {
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 520px;
  line-height: 1.7;
}

/* ── BENEFITS ── */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.25rem;
  margin-top: 3rem;
}
.benefit-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.8rem;
  transition: border-color 0.2s, transform 0.2s;
}
.benefit-card:hover { border-color: var(--accent-dim); transform: translateY(-3px); }
.benefit-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}
.benefit-card h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.benefit-card p { color: var(--muted); font-size: 0.9rem; line-height: 1.65; }

/* ── HOW IT WORKS ── */
.how-bg { background: var(--surface2); }
.steps { display: flex; flex-direction: column; gap: 2rem; margin-top: 3rem; }
.step {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}
.step-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--accent);
  border: 1px solid var(--accent-dim);
  border-radius: 6px;
  padding: 0.3rem 0.6rem;
  min-width: 44px;
  text-align: center;
  margin-top: 3px;
  letter-spacing: 0.05em;
}
.step-body h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 0.3rem;
}
.step-body p { color: var(--muted); font-size: 0.9rem; line-height: 1.65; }

/* ── PRIVACY CTA ── */
.privacy-cta-section {
  background: linear-gradient(135deg, #0f1e30 0%, #0D1117 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.privacy-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.privacy-cta-inner h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
}
.privacy-cta-inner h2 span { color: var(--accent); }
.privacy-cta-inner p { color: var(--muted); margin-top: 0.4rem; font-size: 0.95rem; }

/* ── DOWNLOAD ── */
.download-box {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 3rem 2rem;
  text-align: center;
  margin-top: 3rem;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}
.download-box h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.download-box p { color: var(--muted); margin-bottom: 2rem; }
.download-meta { font-size: 0.8rem; color: var(--muted); margin-top: 1rem; }
.badge {
  display: inline-block;
  background: rgba(0,212,255,0.1);
  color: var(--accent);
  border: 1px solid var(--accent-dim);
  border-radius: 4px;
  padding: 0.15rem 0.55rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-left: 0.4rem;
  vertical-align: middle;
}

/* ── RESPONSIVE ── */
@media (max-width: 680px) {
  .nav-links .nav-link-hide { display: none; }
  .stats-bar { flex-wrap: wrap; }
  .stat-item { border-right: none; border-bottom: 1px solid var(--border); }
  .step { flex-direction: column; gap: 0.75rem; }
  .privacy-cta-inner { flex-direction: column; text-align: center; }
}

@media (prefers-reduced-motion: reduce) {
  .counter-dot { animation: none; }
  .benefit-card:hover { transform: none; }
}
