/* ── Creator Toolkit — Landing Page ─────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&family=Satoshi:wght@400;500;600&display=swap');

:root {
  --bg:        #0a0a0a;
  --surface:   #141414;
  --surface2:  #1e1e1e;
  --border:    #2a2a2a;
  --text:      #f0ede8;
  --muted:     #7a7670;
  --accent:    #ff5c2b;
  --accent-h:  #ff7a4e;
  --green:     #4ade80;
  --font-h:    'Space Grotesk', sans-serif;
  --font-b:    'Satoshi', sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-b);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ── Scrollbar ───────────────────────────────────────────────────── */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 3px; }

/* ── Layout ──────────────────────────────────────────────────────── */
.container { max-width: 900px; margin: 0 auto; padding: 0 24px; }
.section { padding: 80px 0; }

/* ── Nav ─────────────────────────────────────────────────────────── */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 10, 10, 0.88);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 0 24px;
}
.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
}
.navbar-brand {
  font-family: var(--font-h);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--text);
  text-decoration: none;
  letter-spacing: -0.02em;
}
.navbar-cta {
  background: var(--accent);
  color: #fff;
  font-family: var(--font-h);
  font-weight: 600;
  font-size: 0.85rem;
  padding: 8px 20px;
  border-radius: 100px;
  text-decoration: none;
  transition: background 0.2s;
  letter-spacing: 0.01em;
}
.navbar-cta:hover { background: var(--accent-h); }

/* ── Hero ─────────────────────────────────────────────────────────── */
.hero {
  padding: 96px 0 80px;
  text-align: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 92, 43, 0.12);
  border: 1px solid rgba(255, 92, 43, 0.3);
  color: var(--accent-h);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 28px;
}
.hero-badge-dot {
  width: 6px; height: 6px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}
.hero h1 {
  font-family: var(--font-h);
  font-size: clamp(2.2rem, 6vw, 3.8rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}
.hero h1 em {
  font-style: normal;
  color: var(--accent);
}
.hero-sub {
  font-size: 1.15rem;
  color: var(--muted);
  max-width: 560px;
  margin: 0 auto 36px;
  line-height: 1.65;
}

/* ── Price anchor ──────────────────────────────────────────────────── */
.price-anchor {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.price-strike {
  font-family: var(--font-h);
  font-size: 1.3rem;
  color: var(--muted);
  text-decoration: line-through;
}
.price-bundle {
  font-family: var(--font-h);
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.04em;
}
.price-savings {
  background: rgba(74, 222, 128, 0.12);
  border: 1px solid rgba(74, 222, 128, 0.25);
  color: var(--green);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 100px;
}

/* ── Buttons ──────────────────────────────────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: #fff;
  font-family: var(--font-h);
  font-size: 1rem;
  font-weight: 700;
  padding: 16px 40px;
  border-radius: 100px;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 0 0 0 rgba(255, 92, 43, 0.4);
  letter-spacing: 0.01em;
}
.btn-primary:hover {
  background: var(--accent-h);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 92, 43, 0.35);
}
.btn-primary:active { transform: translateY(0); }

.hero-note {
  font-size: 0.8rem;
  color: var(--muted);
  margin-top: 16px;
}

/* ── Trust strip ──────────────────────────────────────────────────── */
.trust-strip {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 24px 0;
  background: var(--surface);
}
.trust-strip-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--muted);
}
.trust-item svg { color: var(--green); flex-shrink: 0; }

/* ── Products ─────────────────────────────────────────────────────── */
.products-section { background: var(--surface); }
.section-label {
  font-family: var(--font-h);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}
.section-heading {
  font-family: var(--font-h);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 12px;
}
.section-sub {
  color: var(--muted);
  font-size: 1rem;
  max-width: 520px;
  margin-bottom: 48px;
}

.product-card {
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
  margin-bottom: 20px;
  background: var(--bg);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  transition: border-color 0.2s, transform 0.2s;
}
.product-card:hover {
  border-color: rgba(255, 92, 43, 0.4);
  transform: translateY(-2px);
}
.product-card-visual {
  width: 80px;
  height: 80px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  flex-shrink: 0;
}
.product-card:nth-child(1) .product-card-visual {
  background: linear-gradient(135deg, #1a2a1a, #0f1f0f);
  border: 1px solid rgba(74, 222, 128, 0.2);
}
.product-card:nth-child(2) .product-card-visual,
.product-card:nth-child(3) .product-card-visual {
  background: linear-gradient(135deg, #1a1a2e, #0f0f1f);
  border: 1px solid rgba(255, 92, 43, 0.2);
}
.product-card-body {}
.product-card-tag {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 4px;
}
.product-card-name {
  font-family: var(--font-h);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}
.product-card-desc {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.5;
}
.product-card-price {
  text-align: right;
}
.product-card-price-from {
  font-size: 0.72rem;
  color: var(--muted);
  margin-bottom: 4px;
}
.product-card-price-val {
  font-family: var(--font-h);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.03em;
}
.product-card-price-free {
  font-size: 0.82rem;
  color: var(--muted);
  text-decoration: line-through;
}

/* ── Social proof ─────────────────────────────────────────────────── */
.proof-section { padding: 80px 0 60px; }
.proof-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
  margin-top: 48px;
}
.proof-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px;
}
.proof-card-stars {
  color: #fbbf24;
  font-size: 0.9rem;
  margin-bottom: 12px;
  letter-spacing: 2px;
}
.proof-card-text {
  font-size: 0.88rem;
  color: var(--text);
  line-height: 1.55;
  margin-bottom: 14px;
  font-style: italic;
}
.proof-card-author {
  font-size: 0.78rem;
  color: var(--muted);
  font-weight: 500;
}

/* ── Who it's for / not for ─────────────────────────────────────── */
.audience-section { background: var(--surface); }
.audience-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 48px;
}
.audience-card {
  border-radius: 16px;
  padding: 32px;
}
.audience-card.yes {
  background: rgba(74, 222, 128, 0.05);
  border: 1px solid rgba(74, 222, 128, 0.2);
}
.audience-card.no {
  background: rgba(255, 92, 43, 0.05);
  border: 1px solid rgba(255, 92, 43, 0.2);
}
.audience-card-icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.audience-card.yes .audience-card-icon { background: rgba(74, 222, 128, 0.15); color: var(--green); }
.audience-card.no .audience-card-icon { background: rgba(255, 92, 43, 0.15); color: var(--accent); }
.audience-card-title {
  font-family: var(--font-h);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 4px;
}
.audience-card-sub { font-size: 0.8rem; color: var(--muted); margin-bottom: 20px; }
.audience-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.audience-list li {
  font-size: 0.88rem;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.45;
}
.audience-list li::before {
  content: '';
  width: 18px; height: 18px;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 2px;
}
.audience-card.yes .audience-list li::before { background: rgba(74, 222, 128, 0.2); border: 1.5px solid rgba(74, 222, 128, 0.4); }
.audience-card.no .audience-list li::before { background: rgba(255, 92, 43, 0.2); border: 1.5px solid rgba(255, 92, 43, 0.4); }

/* ── FAQ ──────────────────────────────────────────────────────────── */
.faq-section { padding: 80px 0; }
.faq-list { max-width: 660px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-item:last-child { border-bottom: none; }
.faq-trigger {
  width: 100%;
  background: none;
  border: none;
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  text-align: left;
}
.faq-q {
  font-family: var(--font-h);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  letter-spacing: -0.01em;
}
.faq-icon {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--surface2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--muted);
  font-size: 1.1rem;
  transition: background 0.2s, color 0.2s, transform 0.25s;
}
.faq-trigger[aria-expanded="true"] .faq-icon {
  background: rgba(255, 92, 43, 0.15);
  color: var(--accent);
  transform: rotate(45deg);
}
.faq-body {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.35s ease;
}
.faq-body.open { max-height: 400px; }
.faq-answer {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.65;
  padding-bottom: 22px;
}

/* ── Final CTA ────────────────────────────────────────────────────── */
.final-cta-section {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 80px 0;
  text-align: center;
}
.final-cta-price {
  font-family: var(--font-h);
  font-size: 1rem;
  color: var(--muted);
  margin-bottom: 24px;
}
.final-cta-price strong { color: var(--text); font-size: 1.3rem; }

/* ── Sticky mobile CTA bar ─────────────────────────────────────── */
.sticky-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 12px 20px;
  gap: 12px;
  align-items: center;
}
.sticky-bar-price {
  font-family: var(--font-h);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  flex: 1;
}
.sticky-bar-price span { color: var(--muted); font-size: 0.78rem; font-weight: 400; display: block; }
.sticky-bar .btn-primary { padding: 12px 24px; font-size: 0.88rem; }

/* ── Footer ──────────────────────────────────────────────────────── */
.footer {
  border-top: 1px solid var(--border);
  padding: 32px 0;
  text-align: center;
  font-size: 0.78rem;
  color: var(--muted);
}

/* ── Responsive ──────────────────────────────────────────────────── */
@media (max-width: 700px) {
  .product-card {
    grid-template-columns: 1fr;
  }
  .product-card-visual { display: none; }
  .product-card-price { text-align: left; }
  .audience-grid { grid-template-columns: 1fr; }
  .hero { padding: 64px 0 56px; }
  .section { padding: 56px 0; }
  .sticky-bar { display: flex; }
  body { padding-bottom: 80px; }
}

/* ── Animations ──────────────────────────────────────────────────── */
@media (prefers-reduced-motion: no-preference) {
  .hero h1 { animation: fadeUp 0.6s ease both; }
  .hero-sub { animation: fadeUp 0.6s 0.1s ease both; }
  .price-anchor { animation: fadeUp 0.6s 0.15s ease both; }
  .hero > .container > .btn-primary { animation: fadeUp 0.6s 0.2s ease both; }
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(18px); }
    to   { opacity: 1; transform: translateY(0); }
  }
}