/* EraseMeNow — Premium Dark 2026 */
/* Tech-forward. Clean. Conversion-first. */

:root {
  --bg: #08090c;
  --bg-card: #0e1015;
  --bg-card-hover: #14171e;
  --border: #1e2128;
  --border-light: #2a2e38;
  --text: #edf0f5;
  --text-dim: #8b92a0;
  --text-muted: #636b7a;
  --accent: #22c55e;
  --accent-glow: rgba(34,197,94,0.12);
  --accent-dim: #166534;
  --accent-gradient: linear-gradient(135deg, #22c55e, #06b6d4);
  --bg-gradient: radial-gradient(ellipse at 50% 0%, rgba(34,197,94,0.04) 0%, transparent 60%);
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  --font-mono: 'JetBrains Mono', 'SF Mono', monospace;
  --radius: 12px;
  --radius-sm: 8px;
  --maxw: 1120px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

.container { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

/* ── Grid Background ── */
.grid-bg {
  position: fixed; inset: 0; pointer-events: none; z-index: 0;
  background-image:
    linear-gradient(rgba(30,33,40,0.3) 1px, transparent 1px),
    linear-gradient(90deg, rgba(30,33,40,0.3) 1px, transparent 1px);
  background-size: 60px 60px;
}

/* ── Navigation ── */
nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(8,9,12,0.85); backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 64px; max-width: var(--maxw); margin: 0 auto; padding: 0 24px;
}
.nav-logo {
  font-size: 1.15rem; font-weight: 700; color: var(--text);
  text-decoration: none; letter-spacing: -0.02em;
}
.nav-links { display: flex; gap: 24px; align-items: center; }
.nav-links a {
  color: var(--text-dim); text-decoration: none; font-size: 0.88rem;
  font-weight: 500; transition: color .15s;
}
.nav-links a:hover { color: var(--text); }
.nav-cta {
  background: var(--accent); color: #000 !important; padding: 8px 20px;
  border-radius: 6px; font-weight: 600; font-size: 0.85rem;
}
.nav-cta:hover { background: #16a34a !important; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--text); border-radius: 2px; }

/* ── Hero ── */
.hero {
  padding: 100px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background: var(--bg-gradient);
  pointer-events: none;
}
.hero h1 {
  font-size: 3.2rem; font-weight: 700; line-height: 1.1;
  max-width: 800px; margin: 0 auto 16px;
  letter-spacing: -0.025em;
}
.hero h1 .highlight {
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero p {
  font-size: 1.1rem; color: var(--text-dim);
  max-width: 580px; margin: 0 auto 32px;
  line-height: 1.7;
}
.hero-stats {
  display: flex; gap: 32px; justify-content: center;
  margin-bottom: 36px;
}
.hero-stat { text-align: center; }
.hero-stat .num { font-size: 1.6rem; font-weight: 700; color: var(--text); }
.hero-stat .label { font-size: 0.78rem; color: var(--text-muted); margin-top: 2px; }
.hero-buttons { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; border-radius: 8px; font-weight: 600;
  font-size: 1rem; text-decoration: none; transition: all .15s;
  border: none; cursor: pointer;
}
.btn-primary {
  background: var(--accent); color: #000;
  box-shadow: 0 0 20px var(--accent-glow);
}
.btn-primary:hover { background: #16a34a; transform: translateY(-1px); }
.btn-outline { background: transparent; color: var(--text); border: 1px solid var(--border-light); }
.btn-outline:hover { background: var(--bg-card); border-color: var(--text-muted); }

/* ── Trust Bar ── */
.trust-bar {
  padding: 32px 0; text-align: center;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-card);
}
.trust-bar .label { font-size: 0.75rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 16px; }
.trust-logos { display: flex; justify-content: center; gap: 32px; flex-wrap: wrap; align-items: center; }
.trust-logos span {
  font-size: 0.85rem; font-weight: 600; color: var(--text-dim);
  opacity: 0.7; letter-spacing: 0.02em;
}

/* ── Sections ── */
.section { padding: 80px 0; position: relative; }
.section-label {
  display: inline-block; font-size: 0.75rem; font-weight: 600;
  color: var(--accent); text-transform: uppercase; letter-spacing: 0.1em;
  margin-bottom: 12px;
}
.section h2 {
  font-size: 2rem; font-weight: 700; margin-bottom: 12px;
  letter-spacing: -0.015em;
}
.section > .container > .section-desc {
  color: var(--text-dim); font-size: 1rem;
  max-width: 560px; margin-bottom: 40px;
  line-height: 1.7;
}
.section-subtle { background: var(--bg-card); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }

/* ── Grid Cards ── */
.grid-2 { display: grid; grid-template-columns: repeat(2,1fr); gap: 20px; }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 28px;
  transition: all .2s;
}
.card:hover { background: var(--bg-card-hover); border-color: var(--border-light); }
.card.accent-border { border-color: var(--accent); }
.card h3 { font-size: 1rem; font-weight: 600; margin-bottom: 8px; }
.card p { font-size: 0.88rem; color: var(--text-dim); line-height: 1.6; }
.card .icon-box {
  width: 40px; height: 40px; border-radius: 8px;
  background: var(--accent-glow); border: 1px solid rgba(34,197,94,0.2);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px; font-size: 0.9rem; font-weight: 600; color: var(--accent);
}
.card .icon-box.tech { background: rgba(6,182,212,0.1); border-color: rgba(6,182,212,0.2); color: #06b6d4; }
.card .icon-box.warn { background: rgba(239,68,68,0.1); border-color: rgba(239,68,68,0.2); color: #ef4444; }

/* ── Scam Stories ── */
.scam-stories { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.scam-story { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 20px; position: relative; }
.scam-story .amount { font-size: 1.3rem; font-weight: 700; }
.scam-story .amount.loss { color: #ef4444; }
.scam-story .amount.title { color: var(--accent); }
.scam-story .type { font-size: 0.75rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 4px; }
.scam-story h4 { font-size: 0.92rem; font-weight: 600; margin: 6px 0 4px; }
.scam-story p { font-size: 0.82rem; color: var(--text-dim); line-height: 1.5; }
.scam-story .source { font-size: 0.72rem; color: var(--text-muted); margin-top: 8px; }
.scam-story .source a { color: var(--accent); text-decoration: none; }

/* ── Steps ── */
.steps-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; counter-reset: step; }
.step-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 28px;
  counter-increment: step;
}
.step-card .step-num {
  font-size: 0.7rem; font-weight: 700; color: var(--accent);
  letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 8px;
}
.step-card h4 { font-size: 0.95rem; font-weight: 600; margin-bottom: 6px; }
.step-card p { font-size: 0.84rem; color: var(--text-dim); line-height: 1.5; }

/* ── Pricing ── */
.pricing-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; align-items: start; }
.pricing-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 32px; position: relative;
}
.pricing-card.featured {
  border-color: var(--accent);
  background: linear-gradient(135deg, rgba(34,197,94,0.04), transparent);
  box-shadow: 0 0 30px var(--accent-glow);
}
.pricing-card.featured .badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--accent); color: #000; padding: 4px 16px;
  border-radius: 12px; font-size: 0.72rem; font-weight: 600;
}
.pricing-card .price { font-size: 2.4rem; font-weight: 700; margin-bottom: 2px; }
.pricing-card .price span { font-size: 0.9rem; font-weight: 400; color: var(--text-muted); }
.pricing-card .period { font-size: 0.82rem; color: var(--text-muted); margin-bottom: 24px; }
.pricing-card .name { font-size: 1rem; font-weight: 600; margin-bottom: 4px; }
.pricing-card .desc { font-size: 0.82rem; color: var(--text-dim); margin-bottom: 20px; }
.pricing-features { list-style: none; margin-bottom: 28px; }
.pricing-features li {
  padding: 7px 0; font-size: 0.85rem; border-bottom: 1px solid var(--border);
  display: flex; align-items: center; gap: 10px; color: var(--text-dim);
}
.pricing-features .check { color: var(--accent); font-weight: 700; flex-shrink: 0; }
.pricing-card .btn { width: 100%; justify-content: center; }

/* ── Scan Section ── */
.scan-section { background: var(--bg-card); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.scan-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.scan-left h2 { margin-bottom: 12px; }
.scan-left p { color: var(--text-dim); font-size: 0.95rem; line-height: 1.7; margin-bottom: 16px; }
.scan-left .trust-item { display: flex; align-items: center; gap: 8px; font-size: 0.85rem; color: var(--text-dim); padding: 4px 0; }
.scan-left .trust-item .check { color: var(--accent); font-weight: 700; }
.scan-form { background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px; }
.scan-form label { display: block; font-size: 0.8rem; font-weight: 500; margin-bottom: 4px; color: var(--text-dim); }
.scan-form input {
  width: 100%; padding: 10px 14px; margin-bottom: 14px;
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 6px; color: var(--text); font-size: 0.9rem;
  outline: none; transition: border .15s;
}
.scan-form input:focus { border-color: var(--accent); }
.scan-form .btn { width: 100%; justify-content: center; }
.scan-form .footnote { font-size: 0.72rem; color: var(--text-muted); text-align: center; margin-top: 10px; }

/* ── FAQ ── */
.faq-list { max-width: 680px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); padding: 18px 0; }
.faq-q {
  display: flex; justify-content: space-between; align-items: center;
  cursor: pointer; font-weight: 500; font-size: 0.95rem; user-select: none;
}
.faq-q .plus { color: var(--text-muted); font-size: 1.2rem; transition: transform .2s; display: inline-block; }
.faq-item.open .faq-q .plus { transform: rotate(45deg); }
.faq-a {
  max-height: 0; overflow: hidden; transition: max-height .3s ease;
  color: var(--text-dim); font-size: 0.88rem; line-height: 1.6; padding-top: 0;
}
.faq-item.open .faq-a { max-height: 300px; padding-top: 12px; }

/* ── Enterprise Page ── */
.ent-hero { text-align: center; padding: 80px 0 60px; }
.ent-hero .icon { width: 56px; height: 56px; border-radius: 12px; background: var(--accent-glow); border: 1px solid rgba(34,197,94,0.2); display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; font-size: 1.4rem; font-weight: 700; color: var(--accent); }
.ent-hero h1 { font-size: 2.6rem; font-weight: 700; margin-bottom: 16px; letter-spacing: -0.025em; }
.ent-hero h1 .highlight { background: var(--accent-gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.ent-hero p { color: var(--text-dim); max-width: 600px; margin: 0 auto; font-size: 1.05rem; line-height: 1.7; }
.ent-pricing { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.ent-cta { background: var(--bg-card); border: 1px solid var(--accent); border-radius: var(--radius); padding: 48px; text-align: center; margin-top: 48px; }
.ent-cta h3 { font-size: 1.4rem; margin-bottom: 12px; }
.ent-cta p { color: var(--text-dim); max-width: 500px; margin: 0 auto 24px; }

/* ── About / Founder ── */
.founder-block,
.founder { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 36px; display: flex; gap: 28px; align-items: flex-start; }
.founder .avatar { width: 64px; height: 64px; border-radius: 50%; background: var(--accent); flex-shrink: 0; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; font-weight: 700; color: #000; }
.founder h3 { font-size: 1.1rem; margin-bottom: 4px; }
.founder .tagline { color: var(--accent); font-size: 0.85rem; font-weight: 500; margin-bottom: 10px; }
.founder p { color: var(--text-dim); font-size: 0.9rem; line-height: 1.65; }

/* ── Footer ── */
footer { border-top: 1px solid var(--border); padding: 48px 0 32px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-brand .logo { font-size: 1rem; font-weight: 700; color: var(--text); text-decoration: none; }
.footer-brand p { color: var(--text-muted); font-size: 0.82rem; margin-top: 10px; max-width: 280px; line-height: 1.6; }
.footer-col h4 { font-size: 0.8rem; font-weight: 600; margin-bottom: 14px; color: var(--text); text-transform: uppercase; letter-spacing: 0.06em; }
.footer-col a { display: block; color: var(--text-muted); text-decoration: none; font-size: 0.84rem; padding: 4px 0; transition: color .15s; }
.footer-col a:hover { color: var(--text); }
.footer-bottom { border-top: 1px solid var(--border); padding-top: 20px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { color: var(--text-muted); font-size: 0.78rem; }

/* ── Mobile ── */
@media (max-width: 768px) {
  .nav-links { display: none; position: absolute; top: 64px; left: 0; right: 0; background: var(--bg); border-bottom: 1px solid var(--border); flex-direction: column; padding: 20px 24px; gap: 14px; align-items: flex-start; }
  .nav-links.open { display: flex; }
  .hamburger { display: flex; }
  .hero h1 { font-size: 2rem; }
  .hero { padding: 60px 0 40px; }
  .hero-stats { gap: 16px; flex-wrap: wrap; }
  .hero-stat .num { font-size: 1.2rem; }
  .grid-2, .grid-3, .grid-4, .pricing-grid, .footer-grid, .ent-pricing { grid-template-columns: 1fr; }
  .scam-stories { grid-template-columns: 1fr; }
  .steps-4 { grid-template-columns: 1fr 1fr; }
  .scan-wrap { grid-template-columns: 1fr; }
  .section h2 { font-size: 1.5rem; }
  .trust-logos { gap: 16px; }
  .trust-logos span { font-size: 0.75rem; }
  .ent-hero h1 { font-size: 1.7rem; }
  .founder-block,
  .founder { flex-direction: column; }
}

@media (max-width: 480px) {
  .steps-4 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}