/* =======================
   Boostlyke Landing Page
   ======================= */

:root {
  --bg: #FAFAF8;
  --bg-dark: #0D0D1A;
  --fg: #1A1B3D;
  --fg-muted: #6B7280;
  --accent: #FF5E5B;
  --accent-dark: #D94F4D;
  --surface: #FFFFFF;
  --border: #E5E7EB;
  --font-display: 'Syne', system-ui, sans-serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
}

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

html { font-size: 16px; scroll-behavior: smooth; }

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

/* =======================
   NAV
   ======================= */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 250, 248, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 0 24px;
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--fg);
  letter-spacing: -0.02em;
}
.nav-tagline {
  font-size: 0.75rem;
  color: var(--fg-muted);
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* =======================
   HERO
   ======================= */
.hero {
  padding: 80px 24px 80px;
  background: var(--bg);
  overflow: hidden;
}
.hero-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 94, 91, 0.1);
  color: var(--accent);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 24px;
}
.badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.85); }
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 800;
  line-height: 1.05;
  color: var(--fg);
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}
.hero-sub {
  font-size: 1.1rem;
  color: var(--fg-muted);
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 32px;
}
.hero-platforms {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.plat-chip {
  padding: 5px 14px;
  border-radius: 6px;
  font-size: 0.8rem;
  font-weight: 600;
  background: var(--fg);
  color: var(--bg);
  letter-spacing: 0.02em;
}

/* Phone mockup */
.hero-right {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.phone-mockup {
  position: relative;
  width: 280px;
  background: var(--fg);
  border-radius: 36px;
  padding: 3px;
  box-shadow: 0 40px 80px rgba(26, 27, 61, 0.25), 0 0 0 1px rgba(255,255,255,0.1);
}
.phone-screen {
  background: #0D0D1A;
  border-radius: 33px;
  padding: 24px 20px 20px;
  min-height: 380px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.phone-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.phone-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), #FF8C5A);
  display: block;
}
.phone-name {
  font-size: 0.85rem;
  font-weight: 600;
  color: #fff;
  font-family: var(--font-display);
}
.phone-content {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.phone-stat {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  font-weight: 500;
}
.stat-icon {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  display: block;
  flex-shrink: 0;
}
.heart { background: rgba(255, 94, 91, 0.2); }
.comment { background: rgba(100, 220, 150, 0.2); }
.share { background: rgba(100, 180, 255, 0.2); }
.stat-label { color: rgba(255,255,255,0.35); font-size: 0.75rem; }
.phone-coin-bar {
  margin-top: auto;
  padding: 12px 16px;
  background: rgba(255, 94, 91, 0.15);
  border: 1px solid rgba(255, 94, 91, 0.3);
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.coin-icon { color: var(--accent); font-size: 1rem; }
.coin-balance { font-size: 0.85rem; font-weight: 600; color: #fff; }
.phone-glow {
  position: absolute;
  inset: -30px;
  background: radial-gradient(circle at center, rgba(255, 94, 91, 0.12) 0%, transparent 70%);
  pointer-events: none;
  z-index: -1;
}
.floating-icons {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  pointer-events: none;
}
.float-icon {
  position: absolute;
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}
.fi-tiktok { background: #010101; color: #fff; top: 10%; right: -10px; }
.fi-ig { background: linear-gradient(45deg, #F58529, #DD2A7B, #8134AF); color: #fff; bottom: 15%; left: -20px; }
.fi-yt { background: #FF0000; color: #fff; top: 55%; right: -30px; }

/* =======================
   HOW IT WORKS
   ======================= */
.how-it-works {
  padding: 100px 24px;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.section-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--fg);
  margin-bottom: 40px;
}
.section-body {
  font-size: 1.05rem;
  color: var(--fg-muted);
  max-width: 540px;
  line-height: 1.7;
  margin-bottom: 0;
}
.steps-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  gap: 0;
}
.step {
  flex: 1;
  padding: 0 40px 0 0;
}
.step-num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 800;
  color: rgba(255, 94, 91, 0.15);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 16px;
}
.step-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 10px;
}
.step-body {
  font-size: 0.9rem;
  color: var(--fg-muted);
  line-height: 1.65;
}
.step-connector {
  width: 60px;
  height: 1px;
  background: var(--border);
  margin-top: 40px;
  flex-shrink: 0;
}
.proof-row {
  max-width: 1200px;
  margin: 60px auto 0;
  display: flex;
  align-items: center;
  gap: 0;
  padding: 28px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.proof-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 0 30px;
}
.proof-item:first-child { padding-left: 0; }
.proof-num {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--fg);
  letter-spacing: -0.03em;
}
.proof-label {
  font-size: 0.8rem;
  color: var(--fg-muted);
  font-weight: 500;
}
.proof-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
  flex-shrink: 0;
}

/* =======================
   PLATFORMS
   ======================= */
.platforms {
  padding: 100px 24px;
  background: var(--fg);
  color: var(--bg);
}
.platforms-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 80px;
  align-items: center;
}
.platforms .section-title { color: #fff; }
.platforms .section-body { color: rgba(255,255,255,0.55); }
.platform-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.p-card {
  padding: 18px 20px;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.04);
  transition: background 0.2s;
}
.p-card:hover { background: rgba(255,255,255,0.08); }
.p-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: #fff;
}
.p-icon { font-size: 1.1rem; }
.p-engage {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.45);
  font-weight: 500;
  letter-spacing: 0.02em;
}

/* =======================
   PRICING
   ======================= */
.pricing {
  padding: 100px 24px;
  background: var(--bg);
}
.pricing .section-title { text-align: center; }
.pricing .section-label { text-align: center; display: block; }
.pricing-grid {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
  align-items: start;
}
.plan {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 28px 24px;
  position: relative;
  transition: transform 0.2s, box-shadow 0.2s;
}
.plan:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(26,27,61,0.08); }
.plan-pro {
  background: var(--fg);
  border-color: var(--fg);
  color: #fff;
}
.plan-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 100px;
  white-space: nowrap;
}
.plan-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 12px;
}
.plan-name {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--fg);
}
.plan-pro .plan-name { color: #fff; }
.plan-price {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--fg);
  letter-spacing: -0.03em;
}
.plan-pro .plan-price { color: #fff; }
.per-mo { font-size: 0.85rem; font-weight: 500; opacity: 0.6; }
.plan-trial {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 16px;
  letter-spacing: 0.02em;
}
.plan-pro .plan-trial { color: rgba(255,255,255,0.6); }
.plan-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
  font-size: 0.85rem;
  color: var(--fg-muted);
}
.plan-pro .plan-features { color: rgba(255,255,255,0.6); }
.plan-features li::before { content: '✓ '; color: var(--accent); font-weight: 700; }
.plan-pro .plan-features li::before { color: #6EE7B7; }
.plan-features li.faded { opacity: 0.4; }
.plan-features li.faded::before { content: '· '; color: inherit; font-weight: 400; }
.plan-cta {
  text-align: center;
  padding: 10px;
  border-radius: 10px;
  font-size: 0.82rem;
  font-weight: 700;
  background: var(--bg);
  color: var(--fg-muted);
  border: 1px solid var(--border);
}
.plan-pro .plan-cta { background: var(--accent); color: #fff; border-color: var(--accent); }

/* =======================
   MANIFESTO
   ======================= */
.manifesto {
  padding: 100px 24px;
  background: var(--bg-dark);
  color: #fff;
}
.manifesto-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.manifesto-headline {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  color: #fff;
  margin-bottom: 28px;
}
.manifesto-body {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.75;
  margin-bottom: 20px;
}
.manifesto-stats {
  display: flex;
  justify-content: center;
  gap: 60px;
  margin-top: 60px;
  padding-top: 60px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.m-stat { display: flex; flex-direction: column; gap: 6px; align-items: center; }
.m-num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -0.04em;
}
.m-desc {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
  max-width: 160px;
  text-align: center;
  line-height: 1.5;
}

/* =======================
   FOOTER
   ======================= */
.footer {
  padding: 48px 24px;
  background: var(--bg);
  border-top: 1px solid var(--border);
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}
.footer-logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--fg);
}
.footer-desc {
  font-size: 0.8rem;
  color: var(--fg-muted);
  margin-top: 4px;
  max-width: 260px;
}
.footer-links {
  display: flex;
  gap: 24px;
}
.footer-link {
  font-size: 0.8rem;
  color: var(--fg-muted);
  cursor: pointer;
  transition: color 0.2s;
}
.footer-link:hover { color: var(--fg); }
.footer-copy {
  font-size: 0.75rem;
  color: var(--fg-muted);
  width: 100%;
  text-align: center;
}

/* =======================
   RESPONSIVE
   ======================= */
@media (max-width: 768px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-right { order: -1; }
  .phone-mockup { width: 200px; }
  .phone-screen { min-height: 280px; padding: 16px 14px; }
  .float-icon { font-size: 0.6rem; padding: 4px 10px; }
  .fi-tiktok { top: 5%; right: -5px; }
  .fi-ig { bottom: 10%; left: -10px; }
  .fi-yt { top: 45%; right: -15px; }

  .steps-grid { flex-direction: column; gap: 0; }
  .step { padding: 0 0 32px; }
  .step-connector { width: 40px; height: 1px; margin: 0 0 32px; }

  .platforms-inner { grid-template-columns: 1fr; gap: 40px; }
  .pricing-grid { grid-template-columns: 1fr; }

  .manifesto-stats { flex-direction: column; gap: 32px; align-items: center; }

  .proof-row { flex-direction: column; gap: 20px; }
  .proof-item { flex-direction: row; align-items: center; gap: 12px; padding: 0; }
  .proof-divider { display: none; }

  .footer-inner { flex-direction: column; align-items: flex-start; }
}