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

:root {
  --purple: #7C3AED;
  --pink: #EC4899;
  --bg: #0A0A0F;
  --surface: #13131A;
  --border: rgba(255,255,255,0.08);
  --text: #F8F8FF;
  --muted: #8884A0;
}

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

a { color: inherit; text-decoration: none; }

.gradient-text {
  background: linear-gradient(135deg, var(--purple), var(--pink));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gradient-bg {
  background: linear-gradient(135deg, var(--purple), var(--pink));
}

/* NAV */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 40px;
  background: rgba(10,10,15,0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

.nav-logo {
  display: flex; align-items: center; gap: 10px;
}

.nav-logo .icon {
  width: 36px; height: 36px; border-radius: 10px;
  background: linear-gradient(135deg, var(--purple), var(--pink));
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
}

.nav-logo span {
  font-size: 20px; font-weight: 700; letter-spacing: -0.5px;
}

.nav-links {
  display: flex; gap: 32px;
  list-style: none;
}

.nav-links a {
  font-size: 15px; color: var(--muted);
  transition: color 0.2s;
}

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

.nav-cta {
  padding: 10px 24px; border-radius: 50px;
  background: linear-gradient(135deg, var(--purple), var(--pink));
  font-size: 14px; font-weight: 600;
  transition: opacity 0.2s;
}

.nav-cta:hover { opacity: 0.85; }

/* HERO */
.hero {
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  padding: 120px 24px 80px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(124,58,237,0.15) 0%, transparent 70%);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 16px; border-radius: 50px;
  border: 1px solid rgba(124,58,237,0.4);
  background: rgba(124,58,237,0.1);
  font-size: 13px; color: #C4B5FD;
  margin-bottom: 28px;
}

.hero h1 {
  font-size: clamp(48px, 8vw, 88px);
  font-weight: 800;
  letter-spacing: -2px;
  line-height: 1.05;
  margin-bottom: 24px;
}

.hero p {
  font-size: clamp(17px, 2.5vw, 21px);
  color: var(--muted);
  max-width: 560px; margin: 0 auto 40px;
}

.hero-buttons {
  display: flex; gap: 16px; justify-content: center; flex-wrap: wrap;
}

.btn-primary {
  padding: 16px 36px; border-radius: 50px;
  background: linear-gradient(135deg, var(--purple), var(--pink));
  font-size: 16px; font-weight: 600;
  transition: transform 0.2s, opacity 0.2s;
  display: inline-flex; align-items: center; gap: 8px;
}

.btn-primary:hover { transform: translateY(-2px); opacity: 0.9; }

.btn-secondary {
  padding: 16px 36px; border-radius: 50px;
  border: 1px solid var(--border);
  background: var(--surface);
  font-size: 16px; font-weight: 600;
  transition: border-color 0.2s;
}

.btn-secondary:hover { border-color: rgba(255,255,255,0.2); }

/* FEATURES */
.section {
  padding: 100px 24px;
  max-width: 1100px; margin: 0 auto;
}

.section-label {
  font-size: 13px; font-weight: 600; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--purple);
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 800; letter-spacing: -1.5px;
  margin-bottom: 16px;
}

.section-sub {
  font-size: 18px; color: var(--muted);
  max-width: 520px; margin-bottom: 64px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.feature-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 32px;
  transition: border-color 0.2s, transform 0.2s;
}

.feature-card:hover {
  border-color: rgba(124,58,237,0.4);
  transform: translateY(-4px);
}

.feature-icon {
  width: 52px; height: 52px; border-radius: 14px;
  background: linear-gradient(135deg, rgba(124,58,237,0.2), rgba(236,72,153,0.2));
  display: flex; align-items: center; justify-content: center;
  font-size: 26px; margin-bottom: 20px;
}

.feature-card h3 {
  font-size: 20px; font-weight: 700; margin-bottom: 10px;
}

.feature-card p { color: var(--muted); font-size: 15px; }

/* PRICING */
.pricing-section {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 100px 24px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  max-width: 900px; margin: 0 auto;
}

.pricing-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 28px 24px;
  text-align: center;
  transition: border-color 0.2s;
}

.pricing-card.featured {
  border-color: var(--purple);
  position: relative;
}

.pricing-card.featured::before {
  content: 'Most Popular';
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(135deg, var(--purple), var(--pink));
  padding: 4px 16px; border-radius: 50px;
  font-size: 12px; font-weight: 600; white-space: nowrap;
}

.pricing-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 8px; }
.pricing-card .price { font-size: 36px; font-weight: 800; margin: 16px 0 4px; }
.pricing-card .price span { font-size: 16px; font-weight: 400; color: var(--muted); }
.pricing-card .credits { font-size: 14px; color: var(--muted); margin-bottom: 24px; }

/* DOWNLOAD */
.download-section {
  text-align: center;
  padding: 100px 24px;
}

.store-buttons {
  display: flex; gap: 16px; justify-content: center; flex-wrap: wrap;
  margin-top: 40px;
}

.store-btn {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 28px; border-radius: 14px;
  border: 1px solid var(--border);
  background: var(--surface);
  transition: border-color 0.2s, transform 0.2s;
}

.store-btn:hover { border-color: rgba(255,255,255,0.2); transform: translateY(-2px); }
.store-btn .store-icon { font-size: 28px; }
.store-btn .store-text { text-align: left; }
.store-btn .store-text small { display: block; font-size: 11px; color: var(--muted); }
.store-btn .store-text strong { display: block; font-size: 16px; font-weight: 600; }

/* FOOTER */
footer {
  border-top: 1px solid var(--border);
  padding: 48px 40px;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 24px;
}

.footer-logo {
  display: flex; align-items: center; gap: 10px;
  font-size: 18px; font-weight: 700;
}

.footer-links {
  display: flex; gap: 28px; flex-wrap: wrap;
}

.footer-links a {
  font-size: 14px; color: var(--muted);
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--text); }

.footer-copy { font-size: 13px; color: var(--muted); }

/* INNER PAGES */
.page-hero {
  padding: 140px 24px 60px;
  text-align: center;
  border-bottom: 1px solid var(--border);
}

.page-hero h1 { font-size: clamp(36px, 6vw, 60px); font-weight: 800; letter-spacing: -1.5px; }
.page-hero p { font-size: 18px; color: var(--muted); margin-top: 12px; }

.page-content {
  max-width: 740px; margin: 0 auto;
  padding: 64px 24px 100px;
}

.page-content h2 {
  font-size: 22px; font-weight: 700;
  margin: 48px 0 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}

.page-content h2:first-child { margin-top: 0; }

.page-content p, .page-content li {
  color: var(--muted); font-size: 16px; margin-bottom: 14px;
}

.page-content ul { padding-left: 24px; }
.page-content li { margin-bottom: 8px; }

.page-content a { color: #C4B5FD; text-decoration: underline; }

.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 24px;
  margin-bottom: 16px;
}

.faq-item h3 { font-size: 17px; font-weight: 600; margin-bottom: 10px; }
.faq-item p { color: var(--muted); font-size: 15px; margin: 0; }

@media (max-width: 768px) {
  nav { padding: 16px 20px; }
  .nav-links { display: none; }
  footer { flex-direction: column; text-align: center; }
}
