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

:root {
  --dark:   #0F172A;
  --indigo: #6366F1;
  --indigo-light: #818CF8;
  --bg:     #F8FAFC;
  --text:   #1E293B;
  --muted:  #64748B;
  --border: #E2E8F0;
  --card:   #FFFFFF;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  font-size: 16px;
}

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

/* ── Nav ── */
nav {
  background: var(--dark);
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
  position: sticky;
  top: 0;
  z-index: 100;
}
.nav-logo {
  color: #fff;
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: -0.02em;
}
.nav-logo span { color: var(--indigo-light); }
nav ul { list-style: none; display: flex; gap: 2rem; }
nav ul a { color: #CBD5E1; font-size: 0.9rem; }
nav ul a:hover { color: #fff; text-decoration: none; }

/* ── Hero ── */
.hero {
  background: var(--dark);
  color: #fff;
  text-align: center;
  padding: 5rem 2rem 4rem;
}
.hero-badge {
  display: inline-block;
  background: rgba(99,102,241,0.2);
  color: var(--indigo-light);
  border: 1px solid rgba(99,102,241,0.4);
  border-radius: 100px;
  padding: 0.3rem 1rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.hero h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 1.25rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.hero h1 em { color: var(--indigo-light); font-style: normal; }
.hero p {
  color: #94A3B8;
  font-size: 1.15rem;
  max-width: 540px;
  margin: 0 auto 2.5rem;
}
.btn {
  display: inline-block;
  background: var(--indigo);
  color: #fff;
  padding: 0.85rem 2rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  transition: background 0.15s;
}
.btn:hover { background: #4F46E5; text-decoration: none; }
.btn-outline {
  background: transparent;
  border: 1px solid #475569;
  color: #CBD5E1;
  margin-left: 0.75rem;
}
.btn-outline:hover { background: rgba(255,255,255,0.05); }

/* ── Stats bar ── */
.stats {
  background: #1E293B;
  border-top: 1px solid #334155;
  border-bottom: 1px solid #334155;
  display: flex;
  justify-content: center;
  gap: 4rem;
  padding: 1.5rem 2rem;
  flex-wrap: wrap;
}
.stat { text-align: center; color: #fff; }
.stat-num { font-size: 1.75rem; font-weight: 800; color: var(--indigo-light); }
.stat-label { font-size: 0.8rem; color: #94A3B8; }

/* ── Section ── */
section { padding: 5rem 2rem; }
.container { max-width: 1100px; margin: 0 auto; }
.section-label {
  text-align: center;
  color: var(--indigo);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}
.section-title {
  text-align: center;
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
}
.section-sub {
  text-align: center;
  color: var(--muted);
  max-width: 500px;
  margin: 0 auto 3rem;
}

/* ── Product grid ── */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}
.product-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.75rem;
  transition: box-shadow 0.15s, transform 0.15s;
}
.product-card:hover { box-shadow: 0 8px 24px rgba(0,0,0,0.08); transform: translateY(-2px); }
.product-tag {
  display: inline-block;
  background: #EEF2FF;
  color: var(--indigo);
  border-radius: 100px;
  padding: 0.2rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 600;
  margin-bottom: 1rem;
}
.product-card h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 0.5rem; }
.product-card p { color: var(--muted); font-size: 0.9rem; margin-bottom: 1.25rem; }
.product-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--border);
  padding-top: 1rem;
  margin-top: auto;
}
.product-price { font-weight: 800; font-size: 1.1rem; color: var(--dark); }
.product-count { font-size: 0.8rem; color: var(--muted); }
.product-btn {
  background: var(--indigo);
  color: #fff;
  border-radius: 6px;
  padding: 0.5rem 1rem;
  font-size: 0.85rem;
  font-weight: 600;
}
.product-btn:hover { background: #4F46E5; text-decoration: none; }
.product-btn--soon { background: transparent; color: var(--muted); border: 1px solid var(--border); cursor: default; pointer-events: none; }

/* ── How it works ── */
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 2rem; }
.step { text-align: center; }
.step-num {
  width: 48px; height: 48px;
  background: #EEF2FF;
  color: var(--indigo);
  border-radius: 50%;
  font-size: 1.1rem;
  font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1rem;
}
.step h3 { font-size: 1rem; font-weight: 700; margin-bottom: 0.4rem; }
.step p { color: var(--muted); font-size: 0.9rem; }

/* ── CTA banner ── */
.cta-banner {
  background: var(--dark);
  color: #fff;
  text-align: center;
  padding: 5rem 2rem;
}
.cta-banner h2 {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}
.cta-banner p { color: #94A3B8; margin-bottom: 2rem; }

/* ── Footer ── */
footer {
  background: var(--dark);
  border-top: 1px solid #1E293B;
  padding: 2rem;
  text-align: center;
  color: #475569;
  font-size: 0.85rem;
}
footer a { color: #64748B; }
footer a:hover { color: #94A3B8; }
.footer-links { display: flex; justify-content: center; gap: 2rem; margin-bottom: 1rem; flex-wrap: wrap; }

/* ── Legal pages ── */
.legal { max-width: 760px; margin: 0 auto; padding: 4rem 2rem; }
.legal h1 { font-size: 2rem; font-weight: 800; margin-bottom: 0.5rem; }
.legal .meta { color: var(--muted); font-size: 0.9rem; margin-bottom: 3rem; }
.legal h2 { font-size: 1.25rem; font-weight: 700; margin: 2.5rem 0 0.75rem; }
.legal p, .legal li { color: #334155; margin-bottom: 0.75rem; }
.legal ul { padding-left: 1.5rem; }
.legal a { color: var(--indigo); }

@media (max-width: 600px) {
  .stats { gap: 2rem; }
  nav ul { gap: 1rem; }
  .btn-outline { display: none; }
}
