/* ── Reset & Base ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --primary: #FF6C2F;
  --primary-hover: #e85a1f;
  --bg-dark: #0B0F19;
  --bg-section: #111827;
  --bg-card: #1A2035;
  --border: rgba(255,255,255,0.08);
  --text: #F1F5F9;
  --text-muted: #94A3B8;
  --green: #00C853;
  --max-w: 1080px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Montserrat', system-ui, sans-serif;
  background: var(--bg-dark);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

/* ── Nav ── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(11,15,25,0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  height: 64px;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-brand {
  display: flex; align-items: center; gap: 10px;
  font-weight: 800; font-size: 20px;
}
.nav-brand img { width: 32px; height: 32px; border-radius: 8px; }
.nav-links { display: flex; align-items: center; gap: 24px; }
.nav-links a { font-size: 14px; font-weight: 600; color: var(--text-muted); transition: color .2s; }
.nav-links a:hover { color: var(--text); }
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 10px 24px;
  border-radius: 12px;
  font-weight: 700; font-size: 15px;
  border: none; cursor: pointer;
  transition: transform .15s, background .2s;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--primary); color: #fff; }
.btn-primary:hover { background: var(--primary-hover); }
.btn-outline {
  background: transparent;
  border: 1.5px solid var(--border);
  color: var(--text);
}
.btn-outline:hover { border-color: var(--text-muted); }
.btn-sm { padding: 8px 18px; font-size: 13px; border-radius: 10px; }

/* ── Hero ── */
.hero {
  padding: 140px 24px 80px;
  text-align: center;
  background: linear-gradient(180deg, #0B0F19 0%, #111827 100%);
}
.hero-inner { max-width: 680px; margin: 0 auto; }
.hero h1 {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -1px;
  margin-bottom: 20px;
}
.hero h1 span { color: var(--primary); }
.hero p {
  font-size: 18px; color: var(--text-muted);
  max-width: 520px; margin: 0 auto 36px;
}
.hero-buttons { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ── Store badges ── */
.store-badges {
  display: flex; gap: 12px; justify-content: center;
  align-items: center;
  margin-top: 40px; flex-wrap: wrap;
}
.store-badge {
  display: inline-flex; align-items: center;
  transition: opacity .2s;
}
.store-badge:hover { opacity: 0.8; }
.store-badge img { display: block; }

/* ── Features ── */
.features {
  padding: 80px 24px;
  background: var(--bg-section);
}
.features-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}
.section-label {
  text-align: center;
  font-size: 13px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 2px; color: var(--primary);
  margin-bottom: 12px;
}
.section-title {
  text-align: center;
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800; margin-bottom: 48px;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}
.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 28px 24px;
  transition: border-color .2s, transform .2s;
}
.feature-card:hover { border-color: rgba(255,108,47,0.3); transform: translateY(-2px); }
.feature-card h3 { font-size: 20px; font-weight: 800; margin-bottom: 10px; }
.feature-card p { font-size: 14px; color: var(--text-muted); line-height: 1.6; }

/* ── CTA section ── */
.cta-section {
  padding: 80px 24px;
  text-align: center;
  background: var(--bg-dark);
}
.cta-section h2 {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800; margin-bottom: 16px;
}
.cta-section p {
  font-size: 16px; color: var(--text-muted);
  max-width: 480px; margin: 0 auto 32px;
}

/* ── Footer ── */
.footer {
  padding: 32px 24px;
  border-top: 1px solid var(--border);
  text-align: center;
  font-size: 13px; color: var(--text-muted);
}
.footer a { color: var(--primary); font-weight: 600; }
.footer-links { display: flex; gap: 24px; justify-content: center; margin-bottom: 12px; }

/* ── Pricing page ── */
.pricing-hero {
  padding: 140px 24px 40px;
  text-align: center;
  background: linear-gradient(180deg, #0B0F19 0%, #111827 100%);
}
.pricing-hero h1 { font-size: clamp(32px, 5vw, 48px); font-weight: 900; margin-bottom: 12px; }
.pricing-hero p { font-size: 17px; color: var(--text-muted); max-width: 480px; margin: 0 auto; }

.pricing-cards {
  padding: 40px 24px 80px;
  background: var(--bg-section);
}
.pricing-cards-inner {
  max-width: 720px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 20px;
}
.price-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 32px 28px;
  display: flex; flex-direction: column;
  position: relative;
  transition: border-color .25s, transform .25s;
}
.price-card:hover { transform: translateY(-3px); }
.price-card.recommended {
  border-color: var(--primary);
  box-shadow: 0 0 40px rgba(255,108,47,0.15);
}
.price-card-badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--green); color: #fff;
  font-size: 12px; font-weight: 700;
  padding: 4px 14px; border-radius: 8px;
}
.price-card-name { font-size: 18px; font-weight: 700; margin-bottom: 4px; }
.price-card-desc { font-size: 13px; color: var(--text-muted); margin-bottom: 24px; }
.price-amount {
  font-size: 44px; font-weight: 900; letter-spacing: -1px;
  margin-bottom: 4px;
}
.price-amount span { font-size: 16px; font-weight: 500; color: var(--text-muted); }
.price-detail { font-size: 13px; color: var(--text-muted); margin-bottom: 28px; }
.price-features { list-style: none; margin-bottom: 28px; flex: 1; }
.price-features li {
  font-size: 14px; color: var(--text-muted);
  padding: 6px 0;
  display: flex; align-items: center; gap: 8px;
}
.price-features li::before {
  content: '✓'; color: var(--primary); font-weight: 700; font-size: 15px;
}
.price-card .btn { width: 100%; }

/* ── Responsive ── */
/* ── Scroll animations ── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* Hero entrance — plays immediately */
.hero-inner > * {
  opacity: 0;
  transform: translateY(24px);
  animation: heroIn 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.hero-inner > *:nth-child(1) { animation-delay: 0.1s; }
.hero-inner > *:nth-child(2) { animation-delay: 0.25s; }
.hero-inner > *:nth-child(3) { animation-delay: 0.4s; }
.hero-inner > *:nth-child(4) { animation-delay: 0.55s; }

@keyframes heroIn {
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 640px) {
  .nav-links a:not(.btn) { display: none; }
  .hero { padding: 120px 20px 60px; }
  .hero-buttons { flex-direction: column; align-items: center; }
  .store-badges { flex-direction: column; align-items: center; }
  .pricing-cards-inner { grid-template-columns: 1fr; }
  .features { padding: 60px 20px; }
  .section-title { margin-bottom: 32px; }
}
