/* ============ LANDING ============ */
.landing-body { background: #fafafa; }

.landing-nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; background: rgba(255,255,255,0.92); backdrop-filter: blur(12px); border-bottom: 1px solid #ede9fe; }
.nav-inner { max-width: 1100px; margin: 0 auto; padding: 0 2rem; height: 64px; display: flex; align-items: center; justify-content: space-between; }
.nav-logo { display: flex; align-items: center; gap: 10px; font-family: 'Syne', sans-serif; font-weight: 700; font-size: 18px; color: #7c3aed; }
.nav-links { display: flex; align-items: center; gap: 24px; }
.nav-links a { font-size: 14px; font-weight: 500; color: #374151; transition: color 0.15s; }
.nav-links a:hover { color: #7c3aed; }

/* Hero */
.hero { padding: 140px 2rem 80px; text-align: center; max-width: 800px; margin: 0 auto; }
.hero-badge { display: inline-flex; align-items: center; gap: 6px; background: #f5f3ff; color: #7c3aed; border: 1px solid #ddd6fe; border-radius: 20px; padding: 5px 14px; font-size: 13px; font-weight: 500; margin-bottom: 1.5rem; }
.hero-title { font-family: 'Syne', sans-serif; font-size: clamp(36px, 6vw, 64px); font-weight: 800; line-height: 1.1; letter-spacing: -1px; color: #111827; margin-bottom: 1rem; }
.gradient-text { background: linear-gradient(135deg, #7c3aed, #a78bfa, #c4b5fd); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.hero-sub { font-size: 18px; color: #6b7280; line-height: 1.7; max-width: 560px; margin: 0 auto 2rem; }
.hero-cta { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; margin-bottom: 3rem; }
.btn-ghost { background: transparent; border: 1.5px solid #d1d5db; color: #374151; }
.btn-ghost:hover { background: #f9fafb; border-color: #a78bfa; color: #7c3aed; }
.hero-stats { display: flex; justify-content: center; align-items: center; gap: 24px; flex-wrap: wrap; }
.hero-stat { text-align: center; font-size: 14px; color: #6b7280; }
.hero-stat-num { display: block; font-family: 'Syne', sans-serif; font-size: 28px; font-weight: 700; color: #7c3aed; }
.hero-stat-div { color: #d1d5db; font-size: 24px; }

/* Features */
.section-inner { max-width: 1100px; margin: 0 auto; padding: 0 2rem; }
.section-title { font-family: 'Syne', sans-serif; font-size: clamp(26px, 4vw, 40px); font-weight: 700; text-align: center; margin-bottom: 3rem; color: #111827; }
.features { padding: 80px 0; background: white; border-top: 1px solid #ede9fe; border-bottom: 1px solid #ede9fe; }
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.feature-card { padding: 1.5rem; border-radius: 12px; border: 1px solid #ede9fe; background: #fafafa; transition: all 0.2s; }
.feature-card:hover { border-color: #a78bfa; box-shadow: 0 4px 20px rgba(124,58,237,0.1); transform: translateY(-2px); }
.feature-icon { width: 44px; height: 44px; border-radius: 10px; background: #f5f3ff; color: #7c3aed; display: flex; align-items: center; justify-content: center; margin-bottom: 1rem; }
.feature-card h3 { font-size: 16px; font-weight: 600; margin-bottom: 8px; color: #111827; }
.feature-card p { font-size: 14px; color: #6b7280; line-height: 1.6; }

/* How it works */
.how-section { padding: 80px 0; }
.steps { display: flex; align-items: flex-start; gap: 16px; }
.step { flex: 1; text-align: center; }
.step-num { font-family: 'Syne', sans-serif; font-size: 40px; font-weight: 800; color: #ede9fe; line-height: 1; margin-bottom: 0.75rem; }
.step h3 { font-size: 17px; font-weight: 600; margin-bottom: 8px; color: #111827; }
.step p { font-size: 14px; color: #6b7280; line-height: 1.6; }
.step-arrow { font-size: 24px; color: #a78bfa; margin-top: 20px; flex-shrink: 0; }

/* CTA Section */
.cta-section { padding: 80px 0; background: linear-gradient(135deg, #7c3aed, #5b21b6); }
.cta-inner { text-align: center; }
.cta-inner h2 { font-family: 'Syne', sans-serif; font-size: 36px; font-weight: 700; color: white; margin-bottom: 12px; }
.cta-inner p { color: rgba(255,255,255,0.8); font-size: 16px; margin-bottom: 2rem; }
.btn-white { background: white; color: #7c3aed; border-color: white; font-weight: 600; }
.btn-white:hover { background: #f5f3ff; }

/* Footer */
.landing-footer { background: #111827; padding: 2rem; }
.footer-inner { max-width: 1100px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; }
.footer-logo { display: flex; align-items: center; gap: 10px; font-family: 'Syne', sans-serif; font-weight: 700; font-size: 16px; color: white; }

.btn-sm { padding: 7px 14px; font-size: 13px; border-radius: 8px; }

@media (max-width: 768px) {
  .features-grid { grid-template-columns: 1fr; }
  .steps { flex-direction: column; }
  .step-arrow { transform: rotate(90deg); margin: 0 auto; }
  .footer-inner { flex-direction: column; gap: 1rem; text-align: center; }
  .nav-links { gap: 12px; }
  .nav-links a:not(.btn) { display: none; }
}
