/* ============================================
   ViralLift Landing Page
   Dark, electric, energetic
   ============================================ */

/* -- Palette -- */
:root {
  --bg: #08080c;
  --bg-alt: #0f0f15;
  --surface: #16161f;
  --border: #222230;
  --text: #f0ede8;
  --text-muted: #8a8898;
  --accent: #ff4f35;
  --accent-2: #ffa040;
  --accent-3: #c8ff00;
  --luxury: #c4a46b;
  --funny: #ff6b8a;
  --aesthetic: #9b7ff4;
  --bold: #ff4f35;
}

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

html {
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: var(--accent) var(--bg);
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 3px; }

/* -- Typography -- */
h1, h2, h3, h4 {
  font-family: 'Syne', system-ui, sans-serif;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

/* -- Navigation -- */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(8, 8, 12, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-brand {
  font-family: 'Syne', system-ui, sans-serif;
  font-weight: 800;
  font-size: 18px;
  color: var(--accent);
  text-decoration: none;
  letter-spacing: -0.03em;
}

.nav-label {
  font-size: 14px;
  color: var(--text-muted);
  font-weight: 500;
}

/* -- Hero -- */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  padding: 120px 48px 80px;
  max-width: 1300px;
  margin: 0 auto;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
}

.badge {
  font-size: 12px;
  font-weight: 600;
  background: rgba(255, 79, 53, 0.12);
  border: 1px solid rgba(255, 79, 53, 0.25);
  padding: 4px 10px;
  border-radius: 20px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--accent);
}
.badge--live {
  background: rgba(200, 255, 0, 0.12);
  border-color: rgba(200, 255, 0, 0.25);
  color: var(--accent-3);
}

.badge-sep { color: var(--border); font-size: 12px; }

.hero-headline {
  font-size: clamp(40px, 5.5vw, 64px);
  color: var(--text);
  margin-bottom: 20px;
  line-height: 1.08;
}

.hero-headline-accent {
  color: var(--accent);
}

.hero-sub {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 440px;
  margin-bottom: 32px;
  line-height: 1.7;
}

.hero-cta-row {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 40px;
}

.cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--accent);
  color: white;
  padding: 14px 28px;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 700;
  font-family: 'Syne', sans-serif;
  text-decoration: none;
  transition: all 0.15s ease;
  box-shadow: 0 0 30px rgba(255, 79, 53, 0.3);
}
.cta-primary:hover {
  background: #e63e24;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(255, 79, 53, 0.4);
}

.cta-ghost {
  display: inline-flex;
  align-items: center;
  font-size: 15px;
  font-weight: 500;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.15s;
}
.cta-ghost:hover { color: var(--text); }

.hero-meta {
  display: flex;
  align-items: center;
  gap: 24px;
}

.hero-stat { display: flex; flex-direction: column; }

.stat-num {
  font-family: 'Syne', system-ui, sans-serif;
  font-size: 28px;
  font-weight: 800;
  color: var(--accent-2);
}

.stat-label {
  font-size: 12px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.hero-stat-sep {
  width: 1px;
  height: 40px;
  background: var(--border);
}

/* -- Hero Image Frame -- */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image-frame {
  position: relative;
  border-radius: 32px;
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.08),
    0 40px 80px rgba(0,0,0,0.6),
    0 0 80px rgba(255, 79, 53, 0.15);
  max-width: 300px;
}
.hero-image-frame::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 32px;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.05);
  pointer-events: none;
  z-index: 1;
}
.hero-img {
  display: block;
  width: 100%;
  aspect-ratio: 9/16;
  object-fit: cover;
}

/* -- Phone Mockup (keep for mobile fallback) -- */
.phone-mockup {
  width: 280px;
  background: #1a1a28;
  border-radius: 36px;
  padding: 16px;
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.06),
    0 40px 80px rgba(0,0,0,0.6),
    0 0 60px rgba(255, 79, 53, 0.1);
}
.phone-screen {
  background: #0d0d14;
  border-radius: 28px;
  overflow: hidden;
  padding: 16px;
}
.phone-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}
.phone-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  display: block;
}
.phone-username {
  font-size: 13px;
  font-weight: 500;
  color: var(--text);
}
.phone-video-placeholder {
  width: 100%;
  aspect-ratio: 9/16;
  background: linear-gradient(160deg, #1a1a28, #0f0f1a);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  position: relative;
  overflow: hidden;
}
.phone-video-placeholder::after {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 8px,
    rgba(255,255,255,0.02) 8px,
    rgba(255,255,255,0.02) 9px
  );
}
.video-play-icon {
  width: 40px;
  height: 40px;
  background: rgba(255, 79, 53, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: white;
  padding-left: 3px;
  z-index: 1;
}
.phone-caption {
  font-size: 12px;
  color: var(--text);
  line-height: 1.5;
  margin-bottom: 6px;
}
.caption-handle {
  font-weight: 600;
  margin-right: 4px;
}
.caption-text { color: var(--text-muted); }
.phone-hashtags {
  font-size: 11px;
  color: var(--text-muted);
  opacity: 0.7;
}

/* -- Section Shared -- */
.section-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 12px;
}

.section-headline {
  font-size: clamp(28px, 3.5vw, 48px);
  color: var(--text);
  margin-bottom: 16px;
}

/* -- Examples Gallery -- */
.examples {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 80px 48px;
}
.examples-inner { max-width: 1100px; margin: 0 auto; }
.examples .section-headline { margin-bottom: 48px; }

.examples-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.example-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.example-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.example-thumb {
  position: relative;
  aspect-ratio: 9/16;
  overflow: hidden;
  border-radius: 12px 12px 0 0;
}
.example-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.example-overlay {
  position: absolute;
  top: 10px;
  left: 10px;
}
.example-vibe-badge {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  background: var(--accent);
  color: white;
  padding: 4px 8px;
  border-radius: 6px;
  font-family: 'Syne', sans-serif;
}
.example-vibe-badge--funny { background: var(--funny); }
.example-vibe-badge--luxury { background: var(--luxury); }
.example-vibe-badge--aesthetic { background: var(--aesthetic); }

.example-meta { padding: 16px; }
.example-type {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  font-weight: 600;
  display: block;
  margin-bottom: 8px;
}
.example-caption {
  font-size: 13px;
  color: var(--text);
  line-height: 1.5;
  font-style: italic;
  margin-bottom: 10px;
}
.example-hashtags {
  font-size: 11px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* -- How It Works -- */
.how-it-works { padding: 80px 48px; max-width: 1100px; margin: 0 auto; }
.hiw-inner { }
.hiw-inner .section-headline { margin-bottom: 48px; }

.steps {
  display: grid;
  grid-template-columns: 1fr 40px 1fr 40px 1fr;
  align-items: start;
  gap: 0;
}

.step { }
.step-num {
  font-family: 'Syne', sans-serif;
  font-size: 48px;
  font-weight: 800;
  color: var(--accent);
  opacity: 0.3;
  margin-bottom: 16px;
}
.step h3 { font-size: 20px; color: var(--text); margin-bottom: 8px; }
.step p { font-size: 14px; color: var(--text-muted); line-height: 1.6; }

.step-connector {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 40px;
}

.step-connector::before {
  content: '→';
  color: var(--border);
  font-size: 24px;
}

/* -- Vibes -- */
.vibes {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 80px 48px;
}
.vibes-inner { max-width: 1100px; margin: 0 auto; }
.vibes .section-headline { margin-bottom: 12px; }
.vibes-sub { font-size: 16px; color: var(--text-muted); max-width: 520px; margin-bottom: 40px; line-height: 1.7; }

.vibes-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.vibe-card {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--surface);
  transition: transform 0.2s ease;
}

.vibe-card:hover { transform: translateY(-4px); }

.vibe-visual {
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.vibe-desc {
  font-size: 13px;
  color: var(--text-muted);
  padding: 0 20px 8px;
  line-height: 1.5;
}

.vibe-sample {
  border-top: 1px solid var(--border);
  padding: 12px 20px 16px;
}
.vibe-sample-label {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  opacity: 0.6;
  margin-bottom: 4px;
}
.vibe-sample-text {
  font-size: 12px;
  color: var(--text);
  font-style: italic;
  line-height: 1.5;
}

.vibe-card--luxury .vibe-visual { background: linear-gradient(135deg, #2a1f0e, #c4a46b33, #1a1208); }
.vibe-card--funny .vibe-visual { background: linear-gradient(135deg, #2a0f1a, #ff6b8a33, #1a0812); }
.vibe-card--aesthetic .vibe-visual { background: linear-gradient(135deg, #1a0f2a, #9b7ff433, #0f081a); }
.vibe-card--bold .vibe-visual { background: linear-gradient(135deg, #2a0f0f, #ff4f3533, #1a0808); }

.vibe-badge {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 22px;
  letter-spacing: 0.15em;
}
.vibe-card--luxury .vibe-badge { color: var(--luxury); }
.vibe-card--funny .vibe-badge { color: var(--funny); }
.vibe-card--aesthetic .vibe-badge { color: var(--aesthetic); }
.vibe-card--bold .vibe-badge { color: var(--bold); }

.vibe-card h4 {
  font-size: 16px;
  padding: 16px 20px 4px;
  color: var(--text);
}
.vibe-card p {
  font-size: 13px;
  color: var(--text-muted);
  padding: 4px 20px 20px;
  line-height: 1.5;
}

/* -- Pricing -- */
.pricing { padding: 80px 48px; max-width: 1100px; margin: 0 auto; }
.pricing-inner { }
.pricing .section-headline { margin-bottom: 40px; }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 32px;
}

.pricing-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 32px;
  position: relative;
  display: flex;
  flex-direction: column;
}

.pricing-card--featured {
  background: var(--bg-alt);
  border-color: var(--accent);
  box-shadow: 0 0 40px rgba(255, 79, 53, 0.12);
}

.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: white;
  font-size: 11px;
  font-weight: 600;
  padding: 4px 14px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  white-space: nowrap;
}

.pricing-tier {
  font-family: 'Syne', sans-serif;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.pricing-price {
  display: flex;
  align-items: baseline;
  gap: 2px;
  margin-bottom: 24px;
}
.price-dollar { font-size: 24px; font-weight: 700; color: var(--text-muted); }
.price-num { font-family: 'Syne', sans-serif; font-size: 56px; font-weight: 800; color: var(--text); }
.price-period { font-size: 16px; color: var(--text-muted); margin-left: 4px; }

.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
  flex: 1;
}

.pricing-features li {
  font-size: 14px;
  color: var(--text-muted);
  padding-left: 20px;
  position: relative;
}

.pricing-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent-3);
  font-size: 12px;
  top: 1px;
}

.pricing-cta {
  display: block;
  text-align: center;
  background: var(--accent);
  color: white;
  padding: 12px 20px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 700;
  font-family: 'Syne', sans-serif;
  text-decoration: none;
  transition: all 0.15s;
}
.pricing-cta:hover { background: #e63e24; transform: translateY(-1px); }

.pricing-cta--ghost {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text-muted);
}
.pricing-cta--ghost:hover {
  background: var(--surface);
  color: var(--text);
  border-color: var(--text-muted);
}

/* -- Footer CTA -- */
.footer-cta {
  background: linear-gradient(135deg, #1a0f0a 0%, #0f0f15 50%, #0a1a0f 100%);
  border-top: 1px solid var(--border);
  padding: 100px 48px;
  text-align: center;
}

.footer-cta-inner { max-width: 640px; margin: 0 auto; }
.footer-cta-headline { font-size: clamp(28px, 3.5vw, 48px); color: var(--text); margin-bottom: 16px; line-height: 1.15; }
.footer-cta-sub { font-size: 16px; color: var(--text-muted); margin-bottom: 32px; line-height: 1.7; }

.footer-email-form {
  display: flex;
  gap: 10px;
  max-width: 480px;
  margin: 0 auto 12px;
}
.footer-email-input {
  flex: 1;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 13px 18px;
  font-size: 15px;
  color: var(--text);
  font-family: 'DM Sans', sans-serif;
  outline: none;
  transition: border-color 0.15s;
}
.footer-email-input::placeholder { color: var(--text-muted); }
.footer-email-input:focus { border-color: var(--accent); }

.footer-email-btn {
  background: var(--accent);
  color: white;
  border: none;
  border-radius: 10px;
  padding: 13px 24px;
  font-size: 15px;
  font-weight: 700;
  font-family: 'Syne', sans-serif;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.15s;
}
.footer-email-btn:hover { background: #e63e24; transform: translateY(-1px); }

.footer-email-note {
  font-size: 12px;
  color: var(--text-muted);
  opacity: 0.7;
}

/* -- Footer -- */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 28px 48px;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-brand {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 16px;
  color: var(--text);
}

.footer-tagline {
  font-size: 13px;
  color: var(--text-muted);
}

/* -- Responsive -- */
@media (max-width: 1024px) {
  .examples-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    padding: 100px 24px 60px;
  }
  .hero-visual { display: none; }
  .steps { grid-template-columns: 1fr; gap: 24px; }
  .step-connector { display: none; }
  .vibes-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .examples-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; }
  .footer-email-form { flex-direction: column; }
  .footer-email-form .footer-email-btn { width: 100%; }
}

@media (max-width: 480px) {
  .vibes-grid { grid-template-columns: 1fr 1fr; }
  .hero-meta { flex-direction: column; align-items: flex-start; gap: 12px; }
  .hero-stat-sep { display: none; }
  .hero-cta-row { flex-direction: column; align-items: flex-start; gap: 12px; }
  .social-proof, .how-it-works, .vibes, .pricing, .footer-cta { padding: 60px 24px; }
}