/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  background: #0F172A;
  color: #F8FAFC;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font: inherit; color: inherit; }
ul { list-style: none; }

/* ===== CONTAINER ===== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ===== TYPOGRAPHY ===== */
.section-eyebrow {
  display: inline-block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #7C3AED;
  margin-bottom: 12px;
}
.section-title {
  font-family: 'Sora', sans-serif;
  font-size: clamp(28px, 5vw, 48px);
  font-weight: 700;
  line-height: 1.15;
  color: #F8FAFC;
  margin-bottom: 16px;
}
.section-header { text-align: center; max-width: 680px; margin: 0 auto 64px; }
.section-desc { font-size: 17px; color: #94A3B8; line-height: 1.7; }

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: #F59E0B;
  color: #0F172A;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 15px;
  border-radius: 10px;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
  cursor: pointer;
}
.btn-primary:hover { transform: translateY(-1px); box-shadow: 0 8px 24px rgba(245,158,11,0.35); }
.btn-primary--large { padding: 18px 36px; font-size: 17px; border-radius: 12px; }
.btn-outline {
  display: inline-flex;
  align-items: center;
  padding: 13px 26px;
  border: 1.5px solid rgba(124,58,237,0.4);
  color: #A78BFA;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 14px;
  border-radius: 10px;
  transition: border-color 0.2s, color 0.2s, transform 0.2s;
  cursor: pointer;
}
.btn-outline:hover { border-color: #7C3AED; color: #C4B5FD; transform: translateY(-1px); }
.btn-plan {
  display: block;
  text-align: center;
  width: 100%;
  padding: 14px 24px;
  border-radius: 10px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.2s;
  cursor: pointer;
}
.btn-plan--primary {
  background: #7C3AED;
  color: #fff;
}
.btn-plan--primary:hover { background: #6D28D9; transform: translateY(-1px); box-shadow: 0 8px 24px rgba(124,58,237,0.3); }
.btn-plan--outline {
  border: 1.5px solid rgba(148,163,184,0.3);
  color: #94A3B8;
}
.btn-plan--outline:hover { border-color: rgba(148,163,184,0.6); color: #CBD5E1; transform: translateY(-1px); }

/* ===== NAV ===== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 40px;
  background: rgba(15,23,42,0.8);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(148,163,184,0.08);
}
.nav-brand { display: flex; align-items: center; gap: 10px; }
.brand-name {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: #F8FAFC;
  letter-spacing: -0.02em;
}
.nav-links { display: flex; gap: 32px; }
.nav-link {
  font-size: 14px;
  font-weight: 500;
  color: #94A3B8;
  transition: color 0.2s;
}
.nav-link:hover { color: #F8FAFC; }

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
}
.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(124,58,237,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(124,58,237,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, black 40%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, black 40%, transparent 100%);
}
.hero-glow {
  position: absolute;
  top: 20%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(124,58,237,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.hero-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(124,58,237,0.12);
  border: 1px solid rgba(124,58,237,0.25);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  color: #A78BFA;
  margin-bottom: 24px;
}
.badge-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #14B8A6;
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}
.hero-headline {
  font-family: 'Sora', sans-serif;
  font-size: clamp(36px, 5.5vw, 64px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: #F8FAFC;
  margin-bottom: 20px;
}
.hero-sub {
  font-size: 18px;
  color: #94A3B8;
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 32px;
}
.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 48px;
}
.hero-trial-note {
  font-size: 13px;
  color: #64748B;
  text-align: center;
}
.hero-meta {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 20px 24px;
  background: rgba(30,41,59,0.6);
  border: 1px solid rgba(148,163,184,0.1);
  border-radius: 16px;
  backdrop-filter: blur(8px);
}
.meta-item { display: flex; flex-direction: column; gap: 2px; }
.meta-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: #F8FAFC;
}
.meta-label { font-size: 12px; color: #64748B; }
.meta-divider { width: 1px; height: 32px; background: rgba(148,163,184,0.15); }

/* Pack Preview Card */
.pack-preview {
  background: rgba(30,41,59,0.8);
  border: 1px solid rgba(148,163,184,0.12);
  border-radius: 20px;
  overflow: hidden;
  backdrop-filter: blur(16px);
  box-shadow: 0 32px 64px rgba(0,0,0,0.4), 0 0 0 1px rgba(124,58,237,0.1) inset;
}
.pack-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  border-bottom: 1px solid rgba(148,163,184,0.08);
  background: rgba(124,58,237,0.08);
}
.pack-label {
  font-family: 'Sora', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #A78BFA;
}
.pack-date {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 12px;
  color: #64748B;
}
.pack-items { padding: 8px; }
.pack-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 12px;
  border-radius: 12px;
  transition: background 0.2s;
}
.pack-item:hover { background: rgba(148,163,184,0.05); }
.pack-item-icon {
  width: 36px; height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.pack-item--ad .pack-item-icon { background: rgba(124,58,237,0.15); color: #7C3AED; }
.pack-item--email .pack-item-icon { background: rgba(20,184,166,0.12); color: #14B8A6; }
.pack-item--social .pack-item-icon { background: rgba(124,58,237,0.1); color: #A78BFA; }
.pack-item--seasonal .pack-item-icon { background: rgba(245,158,11,0.12); color: #F59E0B; }
.pack-item--ugc .pack-item-icon { background: rgba(245,158,11,0.1); color: #FBBF24; }
.pack-item--shopify .pack-item-icon { background: rgba(20,184,166,0.1); color: #2DD4BF; }
.pack-item-text { flex: 1; }
.pack-item-title { display: block; font-size: 14px; font-weight: 600; color: #F8FAFC; margin-bottom: 2px; }
.pack-item-desc { font-size: 12px; color: #64748B; }
.pack-footer {
  padding: 12px 20px;
  border-top: 1px solid rgba(148,163,184,0.08);
}
.pack-footer-text { font-size: 12px; color: #64748B; }

.hero-scroll-hint {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #475569;
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  animation: bounce 2s ease-in-out infinite;
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* ===== WHAT'S INSIDE ===== */
.whats-inside {
  padding: 120px 0;
  background: linear-gradient(180deg, #0F172A 0%, #0D1120 100%);
}
.inside-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.inside-card {
  background: rgba(30,41,59,0.5);
  border: 1px solid rgba(148,163,184,0.08);
  border-radius: 16px;
  padding: 28px;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}
.inside-card:hover {
  border-color: rgba(124,58,237,0.25);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}
.inside-icon { margin-bottom: 16px; }
.inside-card-title {
  font-family: 'Sora', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #F8FAFC;
  margin-bottom: 10px;
}
.inside-card-body { font-size: 14px; color: #94A3B8; line-height: 1.65; margin-bottom: 16px; }
.inside-list { display: flex; flex-direction: column; gap: 8px; }
.inside-list li {
  font-size: 13px;
  color: #64748B;
  padding-left: 16px;
  position: relative;
}
.inside-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: #475569;
}
.inside-cta { text-align: center; margin-top: 48px; }

/* ===== HOW IT WORKS ===== */
.how-it-works {
  padding: 100px 0;
  background: #0D1120;
  position: relative;
}
.how-it-works::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(124,58,237,0.3), transparent);
}
.steps-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  position: relative;
}
.step { position: relative; }
.step-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 48px;
  font-weight: 700;
  color: rgba(124,58,237,0.15);
  line-height: 1;
  margin-bottom: 20px;
}
.step-title {
  font-family: 'Sora', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #F8FAFC;
  margin-bottom: 12px;
}
.step-body { font-size: 15px; color: #94A3B8; line-height: 1.7; }
.step-connector {
  position: absolute;
  right: -20px;
  top: 30px;
  width: 40px;
  height: 1px;
  background: linear-gradient(90deg, rgba(124,58,237,0.3), rgba(124,58,237,0.1));
}

/* ===== PROOF ===== */
.proof {
  padding: 120px 0;
  background: #0F172A;
}
.proof-header { text-align: center; max-width: 640px; margin: 0 auto 64px; }
.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 64px;
}
.proof-card {
  background: rgba(30,41,59,0.5);
  border: 1px solid rgba(148,163,184,0.08);
  border-radius: 16px;
  padding: 28px;
  position: relative;
}
.proof-quote-mark {
  font-family: 'Sora', sans-serif;
  font-size: 64px;
  line-height: 0.6;
  color: #7C3AED;
  opacity: 0.5;
  display: block;
  margin-bottom: 16px;
}
.proof-text {
  font-size: 15px;
  color: #94A3B8;
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 24px;
}
.proof-author { display: flex; align-items: center; gap: 12px; }
.proof-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(124,58,237,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: #A78BFA;
  flex-shrink: 0;
}
.proof-name { display: block; font-weight: 600; font-size: 14px; color: #F8FAFC; }
.proof-role { font-size: 12px; color: #64748B; }
.proof-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  background: rgba(30,41,59,0.5);
  border: 1px solid rgba(148,163,184,0.08);
  border-radius: 16px;
  padding: 32px;
}
.proof-stat { text-align: center; flex: 1; }
.proof-stat-num {
  display: block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 40px;
  font-weight: 700;
  color: #F8FAFC;
  line-height: 1;
  margin-bottom: 6px;
}
.proof-stat-label { font-size: 14px; color: #64748B; }
.proof-stat-sep {
  width: 1px; height: 48px;
  background: rgba(148,163,184,0.15);
}

/* ===== PRICING ===== */
.pricing {
  padding: 120px 0;
  background: linear-gradient(180deg, #0F172A 0%, #0D1120 50%, #0F172A 100%);
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: start;
  margin-bottom: 32px;
}
.pricing-card {
  background: rgba(30,41,59,0.5);
  border: 1px solid rgba(148,163,184,0.08);
  border-radius: 20px;
  padding: 32px;
  position: relative;
  transition: transform 0.3s, box-shadow 0.3s;
}
.pricing-card:hover { transform: translateY(-4px); }
.pricing-card--featured {
  border-color: rgba(124,58,237,0.3);
  background: rgba(124,58,237,0.05);
  box-shadow: 0 0 0 1px rgba(124,58,237,0.2), 0 32px 64px rgba(124,58,237,0.1);
}
.pricing-card--featured:hover {
  box-shadow: 0 0 0 1px rgba(124,58,237,0.4), 0 40px 80px rgba(124,58,237,0.15);
}
.pricing-card-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: #7C3AED;
  color: #fff;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 16px;
  border-radius: 100px;
  white-space: nowrap;
}
.plan-name {
  font-family: 'Sora', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #94A3B8;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  display: block;
  margin-bottom: 12px;
}
.plan-price {
  display: flex;
  align-items: baseline;
  gap: 2px;
  margin-bottom: 12px;
}
.price-dollar { font-family: 'Space Grotesk', sans-serif; font-size: 22px; font-weight: 700; color: #F8FAFC; }
.price-num { font-family: 'Space Grotesk', sans-serif; font-size: 56px; font-weight: 700; color: #F8FAFC; line-height: 1; }
.price-period { font-size: 16px; color: #64748B; margin-left: 4px; }
.plan-desc { font-size: 14px; color: #94A3B8; line-height: 1.6; margin-bottom: 28px; }
.plan-features { display: flex; flex-direction: column; gap: 12px; margin-bottom: 28px; }
.plan-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: #94A3B8;
}
.plan-feature--on { color: #CBD5E1; }
.pricing-note { text-align: center; font-size: 14px; color: #475569; }

/* ===== FAQ ===== */
.faq { padding: 120px 0; background: #0F172A; }
.faq-list { max-width: 720px; margin: 0 auto; display: flex; flex-direction: column; gap: 0; border: 1px solid rgba(148,163,184,0.08); border-radius: 16px; overflow: hidden; }
.faq-item { border-bottom: 1px solid rgba(148,163,184,0.06); }
.faq-item:last-child { border-bottom: none; }
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 28px;
  font-size: 16px;
  font-weight: 600;
  color: #F8FAFC;
  text-align: left;
  transition: background 0.2s;
}
.faq-question:hover { background: rgba(148,163,184,0.04); }
.faq-icon { color: #64748B; flex-shrink: 0; transition: transform 0.3s; }
.faq-item.is-open .faq-icon { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.faq-item.is-open .faq-answer { max-height: 200px; }
.faq-answer p {
  padding: 0 28px 22px;
  font-size: 15px;
  color: #94A3B8;
  line-height: 1.7;
}

/* ===== CLOSING ===== */
.closing {
  padding: 120px 0;
  background: linear-gradient(180deg, #0F172A 0%, #0D1120 100%);
}
.closing-inner { text-align: center; max-width: 720px; margin: 0 auto; }
.closing-headline {
  font-family: 'Sora', sans-serif;
  font-size: clamp(28px, 4.5vw, 52px);
  font-weight: 800;
  line-height: 1.15;
  color: #F8FAFC;
  margin-bottom: 20px;
}
.closing-sub { font-size: 18px; color: #94A3B8; line-height: 1.7; margin-bottom: 36px; }
.closing-actions { margin-bottom: 16px; }
.closing-note { font-size: 13px; color: #475569; }

/* ===== FOOTER ===== */
.footer { padding: 40px 0; border-top: 1px solid rgba(148,163,184,0.06); }
.footer-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px; }
.footer-brand { display: flex; align-items: center; gap: 8px; font-family: 'Sora', sans-serif; font-weight: 700; font-size: 16px; }
.footer-copy { font-size: 13px; color: #475569; }
.footer-links { display: flex; gap: 24px; }
.footer-links a { font-size: 13px; color: #475569; transition: color 0.2s; }
.footer-links a:hover { color: #94A3B8; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero-layout { grid-template-columns: 1fr; gap: 48px; }
  .hero-right { display: none; }
  .inside-grid { grid-template-columns: repeat(2, 1fr); }
  .proof-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .nav { padding: 16px 20px; }
  .nav-links { display: none; }
  .hero { padding: 100px 0 60px; }
  .hero-headline { font-size: 36px; }
  .inside-grid { grid-template-columns: 1fr; }
  .steps-row { grid-template-columns: 1fr; gap: 32px; }
  .step-connector { display: none; }
  .proof-stats { flex-direction: column; gap: 24px; }
  .proof-stat-sep { width: 48px; height: 1px; }
  .section-title { font-size: 28px; }
  .closing-headline { font-size: 28px; }
  .footer-inner { flex-direction: column; text-align: center; }
}
@media (max-width: 480px) {
  body { font-size: 15px; }
  .container { padding: 0 16px; }
  .btn-primary--large { width: 100%; justify-content: center; }
  .whats-inside, .how-it-works, .proof, .pricing, .faq, .closing { padding: 80px 0; }
}

/* ===== ANIMATIONS ===== */
@media (prefers-reduced-motion: no-preference) {
  .inside-card { animation: fadeUp 0.6s ease both; }
  .inside-grid .inside-card:nth-child(1) { animation-delay: 0.1s; }
  .inside-grid .inside-card:nth-child(2) { animation-delay: 0.2s; }
  .inside-grid .inside-card:nth-child(3) { animation-delay: 0.3s; }
  .inside-grid .inside-card:nth-child(4) { animation-delay: 0.4s; }
  .inside-grid .inside-card:nth-child(5) { animation-delay: 0.5s; }
  .inside-grid .inside-card:nth-child(6) { animation-delay: 0.6s; }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

/* FAQ toggle script */
<script>
document.querySelectorAll('.faq-question').forEach(btn => {
  btn.addEventListener('click', () => {
    const item = btn.closest('.faq-item');
    const isOpen = item.classList.contains('is-open');
    document.querySelectorAll('.faq-item').forEach(i => i.classList.remove('is-open'));
    if (!isOpen) item.classList.add('is-open');
  });
});
</script>