/* ============================================================
   SELLABLE — Dark theme, green accent, mobile-first
   ============================================================ */

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

:root {
  --bg: #0f172a;
  --surface: #1e293b;
  --surface2: #263352;
  --accent: #22c55e;
  --accent-dim: #16a34a;
  --text: #f1f5f9;
  --muted: #94a3b8;
  --border: #334155;
  --font: 'Inter', system-ui, sans-serif;
  --radius: 12px;
  --radius-sm: 8px;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  font-size: 16px;
  line-height: 1.6;
  min-height: 100vh;
}

a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }

/* ---- NAV ---- */
.nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem 2rem;
  border-bottom: 1px solid var(--border);
  position: sticky; top: 0; background: var(--bg); z-index: 100;
}
.nav-logo { font-weight: 700; font-size: 1.1rem; color: var(--text); }
.nav-links { display: flex; align-items: center; gap: 1.5rem; }
.nav-links a { color: var(--muted); font-size: 0.9rem; }
.nav-links a:hover { color: var(--text); text-decoration: none; }

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.4rem;
  background: var(--accent); color: #000; font-weight: 600;
  padding: 0.7rem 1.4rem; border-radius: var(--radius-sm);
  border: none; cursor: pointer; font-size: 0.95rem; font-family: var(--font);
  transition: background 0.15s, transform 0.1s;
  text-decoration: none;
}
.btn:hover { background: #1db954; text-decoration: none; }
.btn:active { transform: scale(0.98); }
.btn-sm { padding: 0.45rem 1rem; font-size: 0.85rem; }
.btn-lg { padding: 0.9rem 2rem; font-size: 1.05rem; }
.btn-full { width: 100%; padding: 0.9rem; font-size: 1rem; }
.btn-outline {
  background: transparent; border: 1.5px solid var(--accent);
  color: var(--accent);
}
.btn-outline:hover { background: rgba(34,197,94,0.1); }
.btn-ghost {
  background: transparent; color: var(--muted); border: none;
  cursor: pointer; font-family: var(--font); font-size: 0.9rem;
  padding: 0.3rem 0;
}
.btn-ghost:hover { color: var(--text); }

/* ---- HERO ---- */
.hero {
  max-width: 760px; margin: 0 auto;
  padding: 5rem 2rem 4rem;
  text-align: center;
}
.hero-badge {
  display: inline-block;
  background: rgba(34,197,94,0.12); color: var(--accent);
  font-size: 0.82rem; font-weight: 600; letter-spacing: 0.02em;
  padding: 0.35rem 0.9rem; border-radius: 100px; margin-bottom: 1.5rem;
  border: 1px solid rgba(34,197,94,0.3);
}
.hero-title {
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 800; line-height: 1.15; letter-spacing: -0.02em;
  margin-bottom: 1.2rem;
}
.accent { color: var(--accent); }
.hero-sub {
  color: var(--muted); font-size: 1.1rem; max-width: 600px;
  margin: 0 auto 2rem;
}
.hero-trust {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem;
  margin-top: 1.25rem; font-size: 0.85rem; color: var(--muted);
}
.hero-trust span { display: flex; align-items: center; gap: 0.3rem; }

/* ---- PROOF ---- */
.proof {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 2rem;
  padding: 2.5rem 2rem;
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  background: var(--surface);
}
.proof-item { text-align: center; }
.proof-stat { font-size: 2rem; font-weight: 800; color: var(--accent); line-height: 1; }
.proof-label { color: var(--muted); font-size: 0.85rem; margin-top: 0.25rem; }

/* ---- APP SECTION ---- */
.app-section {
  max-width: 680px; margin: 0 auto;
  padding: 4rem 1rem;
}
.app-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
}
.app-header { margin-bottom: 1.75rem; }
.app-header h2 { font-size: 1.4rem; font-weight: 700; margin-bottom: 0.3rem; }
.app-header p { color: var(--muted); font-size: 0.92rem; }

/* FORM */
.form-group { margin-bottom: 1.1rem; }
.form-group label { display: block; font-size: 0.88rem; font-weight: 500; margin-bottom: 0.4rem; color: var(--muted); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
input[type="text"], select {
  width: 100%; padding: 0.7rem 0.9rem;
  background: var(--bg); border: 1.5px solid var(--border);
  border-radius: var(--radius-sm); color: var(--text);
  font-family: var(--font); font-size: 0.95rem;
  outline: none; transition: border-color 0.15s;
}
input[type="text"]:focus, select:focus { border-color: var(--accent); }
select option { background: var(--bg); }
.scan-counter { text-align: center; font-size: 0.8rem; color: var(--muted); margin-top: 0.6rem; }

/* RESULTS */
.results-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 1.25rem;
}
.results-header h3 { font-size: 1.1rem; font-weight: 700; }
.results-list { display: flex; flex-direction: column; gap: 0.75rem; }
.result-item {
  background: var(--bg); border: 1px solid var(--border);
  border-radius: var(--radius-sm); padding: 1rem 1.1rem;
  display: flex; align-items: center; gap: 1rem;
  transition: border-color 0.15s;
}
.result-item.best { border-color: var(--accent); }
.result-rank {
  font-size: 1.3rem; min-width: 2rem; text-align: center;
}
.result-info { flex: 1; min-width: 0; }
.result-platform { font-weight: 600; font-size: 0.95rem; }
.result-detail { color: var(--muted); font-size: 0.82rem; margin-top: 0.1rem; }
.result-prices { text-align: right; }
.result-net { font-weight: 700; font-size: 1.1rem; color: var(--accent); }
.result-gross { color: var(--muted); font-size: 0.78rem; }
.result-badge {
  font-size: 0.7rem; font-weight: 600; padding: 0.2rem 0.5rem;
  border-radius: 100px; background: rgba(34,197,94,0.15); color: var(--accent);
  margin-top: 0.25rem; display: inline-block;
}
.result-badge.fast { background: rgba(251,191,36,0.15); color: #fbbf24; }
.result-badge.slow { background: rgba(148,163,184,0.15); color: var(--muted); }
.results-cta {
  margin-top: 1.5rem; padding: 1rem; background: rgba(34,197,94,0.07);
  border: 1px solid rgba(34,197,94,0.2); border-radius: var(--radius-sm);
  text-align: center;
}
.results-cta p { font-size: 0.88rem; color: var(--muted); margin-bottom: 0.75rem; }

/* PAYWALL */
.paywall { text-align: center; padding: 2rem 0; }
.paywall-inner { max-width: 380px; margin: 0 auto; }
.paywall-icon { font-size: 2.5rem; margin-bottom: 1rem; }
.paywall-inner h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: 0.6rem; }
.paywall-inner p { color: var(--muted); font-size: 0.9rem; margin-bottom: 1.25rem; }
.paywall-actions { margin-bottom: 1rem; }
.paywall-note { font-size: 0.82rem; color: var(--muted); }

/* ---- HOW IT WORKS ---- */
.how-it-works {
  max-width: 860px; margin: 0 auto; padding: 4rem 2rem;
}
.section-title { font-size: 1.75rem; font-weight: 800; text-align: center; margin-bottom: 0.5rem; }
.section-sub { color: var(--muted); text-align: center; margin-bottom: 2.5rem; font-size: 1rem; }
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.5rem; margin-top: 2.5rem; }
.step { display: flex; gap: 1rem; align-items: flex-start; }
.step-num {
  min-width: 2.2rem; height: 2.2rem; background: var(--accent); color: #000;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 1rem; flex-shrink: 0;
}
.step-content h3 { font-size: 1rem; font-weight: 600; margin-bottom: 0.3rem; }
.step-content p { color: var(--muted); font-size: 0.88rem; }

/* ---- PLATFORMS ---- */
.platforms {
  padding: 4rem 2rem; background: var(--surface);
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
}
.platform-grid {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 0.75rem;
  max-width: 860px; margin: 2.5rem auto 0;
}
.platform-badge {
  background: var(--bg); border: 1px solid var(--border);
  border-radius: 100px; padding: 0.45rem 1.1rem;
  font-size: 0.88rem; font-weight: 500; display: flex; align-items: center; gap: 0.5rem;
}
.fee-badge {
  background: rgba(34,197,94,0.12); color: var(--accent);
  font-size: 0.74rem; font-weight: 600; padding: 0.1rem 0.45rem; border-radius: 100px;
}

/* ---- PRICING ---- */
.pricing { max-width: 1000px; margin: 0 auto; padding: 5rem 2rem; }
.plans {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.25rem; margin-top: 2.5rem;
}
.plan {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 1.75rem 1.5rem;
  display: flex; flex-direction: column; gap: 0.4rem;
  position: relative;
}
.plan-featured {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px var(--accent);
}
.plan-badge {
  position: absolute; top: -0.75rem; left: 50%; transform: translateX(-50%);
  background: var(--accent); color: #000;
  font-size: 0.72rem; font-weight: 700; padding: 0.2rem 0.8rem; border-radius: 100px;
  white-space: nowrap;
}
.plan-name { font-weight: 700; font-size: 0.95rem; color: var(--muted); margin-top: 0.5rem; }
.plan-price { font-size: 2rem; font-weight: 800; line-height: 1.1; }
.plan-period { color: var(--muted); font-size: 0.82rem; margin-bottom: 0.75rem; }
.plan-features { list-style: none; margin-bottom: 1.25rem; flex: 1; }
.plan-features li { font-size: 0.88rem; color: var(--muted); padding: 0.25rem 0; }
.plan-note {
  font-size: 0.72rem; color: #f59e0b; background: rgba(245,158,11,0.1);
  border: 1px solid rgba(245,158,11,0.25); border-radius: 6px;
  padding: 0.35rem 0.6rem; margin-top: 0.75rem;
}

/* ---- FOOTER ---- */
.footer {
  border-top: 1px solid var(--border); padding: 3rem 2rem;
  text-align: center; background: var(--surface);
}
.footer-logo { font-weight: 800; font-size: 1.1rem; margin-bottom: 0.5rem; }
.footer-tagline { color: var(--muted); font-size: 0.9rem; margin-bottom: 1rem; }
.footer-note { color: var(--muted); font-size: 0.78rem; max-width: 540px; margin: 0 auto 1.25rem; line-height: 1.5; }
.footer-links { display: flex; justify-content: center; gap: 1.5rem; margin-bottom: 1rem; }
.footer-links a { color: var(--muted); font-size: 0.88rem; }
.footer-copy { color: var(--border); font-size: 0.78rem; }

/* ---- RESPONSIVE ---- */
@media (max-width: 600px) {
  .nav { padding: 0.9rem 1rem; }
  .hero { padding: 3rem 1rem 2.5rem; }
  .app-card { padding: 1.25rem; }
  .form-row { grid-template-columns: 1fr; }
  .plans { grid-template-columns: 1fr; }
  .result-item { flex-wrap: wrap; }
}
