:root {
  --bg: #080810;
  --surface: #0f0f1a;
  --surface-raised: #16162a;
  --border: #1e1e35;
  --border-bright: #2d2d50;
  --text: #f0eeff;
  --text-muted: #8884aa;
  --purple: #7c3aed;
  --purple-light: #9d6bfa;
  --purple-glow: rgba(124, 58, 237, 0.18);
  --green: #22c55e;
  --red: #ef4444;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

/* ── NAV ── */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(8, 8, 16, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 0 1.5rem;
  height: 66px;
}

.nav-logo {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.03em;
  flex-shrink: 0;
}

.nav-links {
  display: flex;
  gap: 1.75rem;
  list-style: none;
  margin: 0;
  flex: 1;
}

.nav-links a {
  color: var(--text-muted);
  font-size: 0.88rem;
  font-weight: 500;
  transition: color 0.15s;
}

.nav-links a:hover { color: var(--text); text-decoration: none; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.75rem 1.6rem;
  border-radius: 10px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.18s;
  text-decoration: none;
  border: none;
}

.btn-primary {
  background: var(--purple);
  color: #fff;
}

.btn-primary:hover {
  background: #6d28d9;
  text-decoration: none;
  box-shadow: 0 6px 20px rgba(124, 58, 237, 0.4);
  transform: translateY(-1px);
}

.btn-secondary {
  background: var(--surface-raised);
  color: var(--text);
  border: 1px solid var(--border-bright);
}

.btn-secondary:hover {
  background: var(--border);
  text-decoration: none;
}

/* ── STORE DOWNLOAD BUTTONS ── */
.download-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 1.25rem;
}

.dl-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.85rem 1.75rem;
  border-radius: 14px;
  border: 1px solid var(--border-bright);
  color: var(--text);
  font-size: 0.85rem;
  transition: all 0.2s;
  text-decoration: none;
}

.dl-btn:hover {
  border-color: var(--purple-light);
  background: rgba(124, 58, 237, 0.1);
  text-decoration: none;
  transform: translateY(-1px);
}

.dl-btn.apple { background: rgba(255,255,255,0.04); }
.dl-btn.google { background: rgba(255,255,255,0.04); }

.dl-sub { display: block; font-size: 0.7rem; color: var(--text-muted); line-height: 1; }
.dl-main { display: block; font-size: 1rem; font-weight: 700; line-height: 1.4; }

/* ── SECTION COMMON ── */
.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section-label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--purple-light);
  margin-bottom: 0.85rem;
}

.section-title {
  font-size: clamp(1.9rem, 4vw, 2.9rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.1;
  color: var(--text);
}

.grad-text {
  background: linear-gradient(135deg, var(--purple-light) 0%, #c084fc 60%, #e879f9 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── HERO V2 ── */
.hero-v2 {
  position: relative;
  padding: 7rem 1.5rem 5rem;
  overflow: hidden;
}

.hero-glow {
  position: absolute;
  top: -120px;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 600px;
  background: radial-gradient(ellipse at center, rgba(124, 58, 237, 0.22) 0%, transparent 65%);
  pointer-events: none;
}

.trust-bar {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(124, 58, 237, 0.1);
  border: 1px solid rgba(124, 58, 237, 0.28);
  border-radius: 100px;
  padding: 0.45rem 1.2rem;
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
  flex-wrap: wrap;
  justify-content: center;
}

.trust-item strong { color: var(--text); }
.trust-sep { color: var(--border-bright); }

.hero-h1 {
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1.03;
  margin-bottom: 1.5rem;
}

.hero-sub {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 520px;
  margin: 0 auto 2.5rem;
  line-height: 1.65;
}

.hero-note {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-top: 0.25rem;
}

/* ── STATS BAND ── */
.stats-band {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--surface);
  padding: 3rem 1.5rem;
}

.stats-band-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  max-width: 1120px;
  margin: 0 auto;
}

.stat-block {
  text-align: center;
  padding: 1rem 1.5rem;
}

.stat-divider {
  width: 1px;
  background: var(--border);
  align-self: stretch;
  margin: 0.5rem 0;
}

.stat-big {
  font-size: 2.5rem;
  font-weight: 900;
  letter-spacing: -0.03em;
  background: linear-gradient(135deg, var(--text) 0%, var(--text-muted) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-top: 0.35rem;
  line-height: 1.4;
}

/* ── PROBLEM ── */
.problem-section {
  padding: 6rem 1.5rem;
}

.problem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.problem-text .section-title { margin-bottom: 1.5rem; }

.problem-body {
  color: var(--text-muted);
  font-size: 1rem;
  margin-bottom: 1rem;
  line-height: 1.7;
}

.problem-cards {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.problem-card {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.5rem;
}

.problem-card.good { border-color: rgba(34, 197, 94, 0.25); }
.problem-card.bad { border-color: rgba(239, 68, 68, 0.2); }

.pb-icon { font-size: 1.3rem; flex-shrink: 0; margin-top: 0.1rem; }

.pb-title {
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 0.6rem;
}

.pb-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.pb-list li {
  font-size: 0.88rem;
  color: var(--text-muted);
}

/* ── FEATURES V2 ── */
.features-section {
  padding: 5rem 1.5rem;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.features-section .section-title { margin-bottom: 3rem; }

.features-v2 {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.feat-row {
  display: grid;
  gap: 1rem;
}

.feat-row { grid-template-columns: 1fr 1fr; }
.feat-row.three { grid-template-columns: repeat(3, 1fr); }

.feat-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 1.75rem;
  transition: border-color 0.2s, transform 0.2s;
}

.feat-card:hover {
  border-color: var(--border-bright);
  transform: translateY(-2px);
}

.feat-card.purple-glow {
  border-color: rgba(124, 58, 237, 0.35);
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.08) 0%, var(--bg) 100%);
}

.feat-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(124, 58, 237, 0.12);
  border: 1px solid rgba(124, 58, 237, 0.22);
  border-radius: 12px;
  margin-bottom: 1.1rem;
  color: var(--purple-light);
  flex-shrink: 0;
}

.feat-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--text);
}

.feat-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ── BENEFITS ── */
.benefits-section {
  padding: 6rem 1.5rem;
}

.benefits-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.benefits-list {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.benefit-item {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.benefit-check {
  color: var(--green);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 0.05rem;
}

/* ── LEVELS ── */
.levels-section {
  padding: 5rem 1.5rem;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.levels-section .section-title { margin-bottom: 0.5rem; }

.levels-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0.85rem;
  margin-top: 3rem;
}

.level-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.25rem 0.75rem;
  text-align: center;
  transition: border-color 0.2s, transform 0.2s;
}

.level-card:hover {
  border-color: var(--border-bright);
  transform: translateY(-3px);
}

.level-card.highlighted {
  border-color: rgba(124, 58, 237, 0.5);
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.12) 0%, var(--bg) 100%);
}

.level-orb {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin: 0 auto 0.7rem;
  color: var(--purple-light);
}

.level-name {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.2rem;
}

.level-days {
  font-size: 0.72rem;
  color: var(--text-muted);
}

/* ── REVIEWS ── */
.reviews-section {
  padding: 6rem 1.5rem;
}

.reviews-section .section-title { margin-bottom: 3rem; }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.review-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: border-color 0.2s;
}

.review-card:hover { border-color: var(--border-bright); }

.review-card.featured-review {
  border-color: rgba(124, 58, 237, 0.4);
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.08) 0%, var(--surface) 100%);
}

.reviews-grid .review-card:nth-child(4),
.reviews-grid .review-card:nth-child(5) {
  grid-column: span 1;
}

/* Push last two cards to center */
.reviews-grid {
  grid-template-rows: auto auto;
}

.review-stars { font-size: 0.9rem; }

.review-text {
  font-size: 0.93rem;
  color: var(--text-muted);
  line-height: 1.65;
  flex: 1;
  font-style: italic;
}

.review-author {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--purple-light);
}

/* ── PRICING ── */
.pricing-section {
  padding: 6rem 1.5rem;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.pricing-section .section-title { margin-bottom: 0.5rem; }

.pricing-v2 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  max-width: 900px;
  margin: 3rem auto 0;
  align-items: stretch;
}

.pricing-v2.pricing-v2-two {
  grid-template-columns: repeat(2, 1fr);
  max-width: 700px;
}

.price-v2 {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  position: relative;
}

.price-v2-featured {
  border-color: var(--purple);
  background: linear-gradient(160deg, rgba(124, 58, 237, 0.1) 0%, var(--bg) 100%);
  transform: scale(1.02);
}

.price-v2-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--purple);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.28rem 0.9rem;
  border-radius: 100px;
  white-space: nowrap;
}

.price-v2-tier {
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
}

.price-v2-amount {
  font-size: 2.4rem;
  font-weight: 900;
  letter-spacing: -0.03em;
  color: var(--text);
  line-height: 1.1;
}

.price-v2-desc {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.price-features {
  list-style: none;
  padding: 0;
  margin: 0.5rem 0 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex: 1;
}

.price-features li {
  font-size: 0.88rem;
  color: var(--text-muted);
}

/* ── FAQ ── */
.faq-section {
  padding: 6rem 1.5rem;
}

.faq-inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem;
  align-items: start;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color 0.2s;
}

.faq-item[open] { border-color: var(--border-bright); }

.faq-q {
  padding: 1.1rem 1.25rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
}

.faq-q::-webkit-details-marker { display: none; }

.faq-q::after {
  content: '+';
  font-size: 1.2rem;
  color: var(--text-muted);
  transition: transform 0.2s;
  flex-shrink: 0;
}

.faq-item[open] .faq-q::after {
  transform: rotate(45deg);
}

.faq-a {
  padding: 0 1.25rem 1.1rem;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ── FINAL CTA ── */
.final-cta {
  padding: 7rem 1.5rem;
  position: relative;
  overflow: hidden;
  text-align: center;
  border-top: 1px solid var(--border);
}

.final-glow {
  position: absolute;
  bottom: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 600px;
  background: radial-gradient(ellipse at center, rgba(124, 58, 237, 0.2) 0%, transparent 65%);
  pointer-events: none;
}

.final-cta .section-title { margin-bottom: 1rem; }

/* ── SOCIAL ICONS ── */
.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: var(--surface-raised);
  border: 1px solid var(--border);
  color: var(--text-muted);
  transition: all 0.2s;
}

.social-icon:hover {
  color: var(--text);
  border-color: var(--border-bright);
  text-decoration: none;
}

/* ── FOOTER ── */
footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 3.5rem 1.5rem 2rem;
}

.footer-inner { max-width: 1120px; margin: 0 auto; }

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--border);
  margin-bottom: 1.75rem;
}

.footer-links-group h4 {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.85rem;
}

.footer-links-group ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.footer-links-group ul a {
  font-size: 0.88rem;
  color: var(--text-muted);
  transition: color 0.15s;
}

.footer-links-group ul a:hover { color: var(--text); text-decoration: none; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* ── LEGAL PAGES ── */
.legal-page {
  max-width: 760px;
  margin: 0 auto;
  padding: 4rem 1.5rem 6rem;
}

.legal-page h1 {
  font-size: 2.25rem;
  font-weight: 800;
  letter-spacing: -0.025em;
  margin-bottom: 0.5rem;
}

.legal-meta {
  color: var(--text-muted);
  font-size: 0.88rem;
  margin-bottom: 2.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border);
  line-height: 1.8;
}

.legal-page h2 {
  font-size: 1.25rem;
  font-weight: 700;
  margin: 2.5rem 0 0.75rem;
}

.legal-page h3 {
  font-size: 1rem;
  font-weight: 700;
  margin: 1.5rem 0 0.5rem;
  color: var(--text-muted);
}

.legal-page p {
  color: var(--text-muted);
  margin-bottom: 0.85rem;
  font-size: 0.93rem;
  line-height: 1.75;
}

.legal-page ul, .legal-page ol {
  color: var(--text-muted);
  padding-left: 1.4rem;
  margin-bottom: 1rem;
  font-size: 0.93rem;
  line-height: 1.7;
}

.legal-page li { margin-bottom: 0.4rem; }

.info-box {
  background: rgba(124, 58, 237, 0.08);
  border: 1px solid rgba(124, 58, 237, 0.22);
  border-radius: 12px;
  padding: 1.25rem 1.5rem;
  margin: 1.5rem 0;
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .stats-band-inner { grid-template-columns: repeat(2, 1fr); }
  .stat-divider:nth-child(2) { display: none; }
  .problem-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .feat-row { grid-template-columns: 1fr; }
  .feat-row.three { grid-template-columns: 1fr 1fr; }
  .benefits-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .levels-grid { grid-template-columns: repeat(4, 1fr); }
  .reviews-grid { grid-template-columns: 1fr 1fr; }
  .pricing-v2, .pricing-v2.pricing-v2-two { grid-template-columns: 1fr; max-width: 380px; }
  .price-v2-featured { transform: none; }
  .faq-inner { grid-template-columns: 1fr; gap: 2rem; }
}

@media (max-width: 640px) {
  .nav-links { display: none; }
  .nav-inner { gap: 1rem; }
  .hero-v2 { padding: 5rem 1.25rem 3.5rem; }
  .trust-bar { font-size: 0.78rem; gap: 0.4rem; padding: 0.4rem 0.9rem; }
  .stats-band-inner { grid-template-columns: 1fr 1fr; }
  .stat-divider { display: none; }
  .feat-row.three { grid-template-columns: 1fr; }
  .levels-grid { grid-template-columns: repeat(3, 1fr); }
  .reviews-grid { grid-template-columns: 1fr; }
  .footer-top { flex-direction: column; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
