:root {
  --bg: #0b0a12;
  --surface: #14121e;
  --border: rgba(255,255,255,0.08);
  --accent: #8f87dc;
  --accent-light: #a8a1e8;
  --savings: #4ade80;
  --text: #f1f5f9;
  --muted: #94a3b8;
  --radius: 16px;
}

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

body {
  background: var(--bg);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

/* NAV */
nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 40px;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  background: rgba(11,10,18,0.85);
  backdrop-filter: blur(12px);
  z-index: 100;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 18px;
  color: var(--text);
}
.nav-links { display: flex; gap: 24px; font-size: 14px; color: var(--muted); }
.nav-links a { color: var(--muted); }
.nav-links a:hover { color: var(--text); text-decoration: none; }

/* HERO */
.hero {
  text-align: center;
  padding: 100px 24px 80px;
  max-width: 760px;
  margin: 0 auto;
}
.hero-badge {
  display: inline-block;
  background: rgba(143,135,220,0.12);
  color: var(--accent-light);
  border: 1px solid rgba(143,135,220,0.25);
  border-radius: 100px;
  padding: 6px 16px;
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 28px;
}
.hero h1 {
  font-size: clamp(36px, 6vw, 64px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -1.5px;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #f1f5f9 30%, var(--accent-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero p {
  font-size: 19px;
  color: var(--muted);
  margin-bottom: 40px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}
.app-store-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--text);
  color: #0b0a12;
  border-radius: 14px;
  padding: 14px 28px;
  font-size: 16px;
  font-weight: 600;
  transition: opacity 0.15s;
}
.app-store-btn:hover { opacity: 0.88; text-decoration: none; }
.app-store-btn svg { width: 22px; height: 22px; }

/* FEATURES */
.features {
  padding: 80px 24px;
  max-width: 1000px;
  margin: 0 auto;
}
.section-title {
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent-light);
  margin-bottom: 16px;
}
.features h2 {
  text-align: center;
  font-size: clamp(26px, 4vw, 40px);
  font-weight: 700;
  letter-spacing: -0.5px;
  margin-bottom: 56px;
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}
.feature-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
}
.feature-icon { font-size: 32px; margin-bottom: 16px; }
.feature-card h3 { font-size: 17px; font-weight: 600; margin-bottom: 8px; }
.feature-card p { font-size: 14px; color: var(--muted); line-height: 1.6; }

/* FOOTER */
footer {
  border-top: 1px solid var(--border);
  padding: 40px 24px;
  text-align: center;
  color: var(--muted);
  font-size: 14px;
}
footer .footer-links { display: flex; justify-content: center; gap: 24px; margin-bottom: 16px; }
footer .footer-links a { color: var(--muted); }

/* PROSE (privacy, support, terms pages) */
.prose-page {
  max-width: 720px;
  margin: 0 auto;
  padding: 60px 24px 100px;
}
.prose-page h1 {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  letter-spacing: -0.5px;
  margin-bottom: 8px;
}
.prose-page .last-updated {
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 48px;
}
.prose-page h2 {
  font-size: 20px;
  font-weight: 600;
  margin: 40px 0 12px;
}
.prose-page p, .prose-page li {
  font-size: 16px;
  color: #cbd5e1;
  line-height: 1.8;
  margin-bottom: 12px;
}
.prose-page ul { padding-left: 24px; }
.prose-page a { color: var(--accent); }

/* SUPPORT */
.contact-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  margin-top: 40px;
  text-align: center;
}
.contact-card h2 { margin-top: 0; }
.contact-btn {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  border-radius: 12px;
  padding: 12px 28px;
  font-size: 15px;
  font-weight: 600;
  margin-top: 16px;
  transition: opacity 0.15s;
}
.contact-btn:hover { opacity: 0.85; text-decoration: none; }

/* EXPLAINER */
.explainer {
  max-width: 720px;
  margin: 0 auto;
  padding: 40px 24px;
  text-align: center;
}
.explainer h2 {
  font-size: clamp(24px, 4vw, 34px);
  font-weight: 700;
  letter-spacing: -0.5px;
  margin-bottom: 20px;
}
.explainer p { font-size: 17px; color: #cbd5e1; line-height: 1.8; }
.explainer em { color: var(--text); font-style: normal; font-weight: 600; }

/* STEPS */
.steps {
  max-width: 720px;
  margin: 0 auto;
  padding: 40px 24px 60px;
  text-align: center;
}
.steps h2 {
  font-size: clamp(24px, 4vw, 34px);
  font-weight: 700;
  letter-spacing: -0.5px;
  margin-bottom: 32px;
}
.step-list {
  list-style: none;
  counter-reset: step;
  display: grid;
  gap: 16px;
  text-align: left;
  max-width: 520px;
  margin: 0 auto;
}
.step-list li {
  counter-increment: step;
  position: relative;
  padding: 18px 20px 18px 60px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 15px;
  color: var(--muted);
}
.step-list li strong { color: var(--text); font-weight: 600; }
.step-list li::before {
  content: counter(step);
  position: absolute;
  left: 18px;
  top: 16px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(143,135,220,0.15);
  color: var(--accent-light);
  font-weight: 700;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* PRICING */
.pricing {
  max-width: 860px;
  margin: 0 auto;
  padding: 60px 24px;
}
.pricing h2 {
  text-align: center;
  font-size: clamp(24px, 4vw, 36px);
  font-weight: 700;
  letter-spacing: -0.5px;
  margin-bottom: 40px;
}
.price-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  align-items: start;
}
.price-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
}
.price-card--featured { border-color: rgba(143,135,220,0.4); }
.price-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 16px; }
.price-card ul { list-style: none; display: grid; gap: 10px; }
.price-card li {
  font-size: 14px;
  color: #cbd5e1;
  padding-left: 24px;
  position: relative;
}
.price-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--savings);
  font-weight: 700;
}
.price-note { font-size: 13px; color: var(--muted); margin-top: 16px; line-height: 1.6; }

/* FAQ PREVIEW */
.faq-preview {
  max-width: 720px;
  margin: 0 auto;
  padding: 40px 24px 80px;
}
.faq-preview h2 {
  text-align: center;
  font-size: clamp(24px, 4vw, 36px);
  font-weight: 700;
  letter-spacing: -0.5px;
  margin-bottom: 32px;
}
.qa { margin-bottom: 24px; }
.qa h3 { font-size: 16px; font-weight: 600; margin-bottom: 6px; }
.qa p { font-size: 15px; color: var(--muted); line-height: 1.7; }

/* BREADCRUMB */
nav.crumbs {
  display: block;
  position: static;
  padding: 0;
  border: 0;
  background: none;
  backdrop-filter: none;
  z-index: auto;
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 24px;
}
.crumbs a { color: var(--muted); }
.crumbs a:hover { color: var(--text); }
.crumbs span { color: var(--text); }

/* GUIDES */
.guides {
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 24px 70px;
}
.guides h2 {
  text-align: center;
  font-size: clamp(24px, 4vw, 36px);
  font-weight: 700;
  letter-spacing: -0.5px;
  margin-bottom: 8px;
}
.guides-intro { text-align: center; color: var(--muted); margin-bottom: 32px; }
.guide-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
}
.guide-list a {
  display: block;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
  color: var(--text);
}
.guide-list a:hover { border-color: rgba(143,135,220,0.4); text-decoration: none; }
.guide-list h3 { font-size: 16px; font-weight: 600; margin-bottom: 6px; }
.guide-list p { font-size: 13px; color: var(--muted); line-height: 1.6; }

/* NUMBERS */
.numbers {
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 24px 20px;
}
.numbers h2 {
  text-align: center;
  font-size: clamp(24px, 4vw, 34px);
  font-weight: 700;
  letter-spacing: -0.5px;
  margin-bottom: 32px;
}
.numbers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px 32px;
}
.numbers-grid h3 { font-size: 16px; font-weight: 600; margin-bottom: 6px; }
.numbers-grid p { font-size: 14px; color: var(--muted); line-height: 1.7; }
.numbers-note {
  text-align: center;
  font-size: 13px;
  color: var(--muted);
  max-width: 620px;
  margin: 32px auto 0;
  line-height: 1.7;
}

/* COMPARE */
.compare {
  max-width: 1000px;
  margin: 0 auto;
  padding: 60px 24px;
}
.compare h2 {
  text-align: center;
  font-size: clamp(24px, 4vw, 36px);
  font-weight: 700;
  letter-spacing: -0.5px;
  margin-bottom: 16px;
}
.compare-intro {
  text-align: center;
  color: #cbd5e1;
  max-width: 640px;
  margin: 0 auto 36px;
  line-height: 1.8;
}
.compare-intro em { color: var(--text); font-style: normal; font-weight: 600; }
.table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.compare table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
  font-size: 14px;
}
.compare th, .compare td {
  text-align: left;
  padding: 14px 16px;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
}
.compare thead th {
  font-weight: 700;
  color: var(--text);
  border-bottom: 1px solid rgba(255,255,255,0.18);
}
.compare thead th span { font-weight: 400; font-size: 12px; color: var(--muted); }
.compare tbody th {
  font-weight: 600;
  color: var(--muted);
  width: 210px;
}
.compare tbody td { color: #cbd5e1; }
.compare tbody td strong { color: var(--text); }
.compare tbody tr:first-child td:first-of-type,
.compare thead th:nth-child(2) { color: var(--accent-light); }

@media (max-width: 600px) {
  nav { padding: 16px 20px; }
  .nav-links { display: none; }
}
