/* ============================================
   SoloGrowth.io LP — Style
   Design system: dark bg, indigo accent, Inter
   ============================================ */
#cookie-banner { display: none !important; }

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

:root {
  --bg-dark: #0a0a0f;
  --bg-card: #12121a;
  --bg-card-hover: #1a1a26;
  --accent: #6366f1;
  --accent-light: #818cf8;
  --accent-glow: rgba(99, 102, 241, 0.15);
  --text-primary: #f1f1f4;
  --text-secondary: #9ca3af;
  --text-muted: #6b7280;
  --border: #1e1e2e;
  --danger: #ef4444;
  --success: #22c55e;
  --warning: #f59e0b;
}

html { scroll-behavior: smooth; }

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


/* ============================================
   STICKY BAR
   ============================================ */

.sticky-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(10, 10, 15, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 10px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transform: translateY(-100%);
  transition: transform 0.3s ease;
}

.sticky-bar.visible {
  transform: translateY(0);
}

.sticky-logo {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: -0.3px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.sticky-logo img {
  vertical-align: middle;
}

.sticky-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: none;
  color: var(--accent-light);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  padding: 8px 16px;
  border: 1px solid rgba(99, 102, 241, 0.3);
  border-radius: 8px;
  transition: all 0.2s;
}

.sticky-cta:hover {
  background: var(--accent-glow);
  border-color: var(--accent);
}

.sticky-badge {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--warning);
  background: rgba(245, 158, 11, 0.12);
  padding: 2px 8px;
  border-radius: 4px;
}


/* ============================================
   S1: HERO
   ============================================ */

.hero {
  padding: 120px 24px 64px;
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
  pointer-events: none;
}

.hero-logo {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-muted);
  margin-bottom: 48px;
  letter-spacing: -0.3px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.hero-eyebrow {
  display: inline-block;
  background: var(--accent-glow);
  border: 1px solid rgba(99, 102, 241, 0.3);
  color: var(--accent-light);
  font-size: 13px;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 24px;
  letter-spacing: 0.3px;
}

.hero-h1 {
  font-size: clamp(32px, 5.5vw, 52px);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 20px;
  letter-spacing: -1.5px;
  color: var(--text-primary);
}

.hero-sub {
  font-size: 18px;
  color: var(--text-secondary);
  max-width: 520px;
  margin: 0 auto 32px;
  line-height: 1.7;
}

.hero-micro {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.hero-micro li {
  font-size: 13px;
  color: var(--text-muted);
  position: relative;
}

.hero-micro li + li::before {
  content: '·';
  position: absolute;
  left: -14px;
  color: var(--text-muted);
}

.hero-social-proof {
  margin-top: 32px;
  font-size: 14px;
  color: var(--text-secondary);
}

.hero-social-proof strong {
  color: var(--accent-light);
  font-weight: 800;
}


/* ============================================
   SHARED: CTA Buttons
   ============================================ */

.cta {
  display: inline-block;
  text-decoration: none;
  font-family: inherit;
  cursor: pointer;
  transition: all 0.2s;
}

.cta-primary {
  background: var(--accent);
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  padding: 16px 36px;
  border-radius: 10px;
  border: none;
  letter-spacing: -0.2px;
}

.cta-primary:hover {
  background: var(--accent-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(99, 102, 241, 0.3);
}


/* ============================================
   SHARED: Section defaults
   ============================================ */

section {
  padding: 64px 24px;
  max-width: 720px;
  margin: 0 auto;
}

section + section {
  border-top: 1px solid var(--border);
}


/* ============================================
   S2: PAIN
   ============================================ */

.pain-heading {
  font-size: clamp(26px, 4vw, 36px);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 24px;
  letter-spacing: -1px;
}

.pain-body {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 16px;
}

.pain-body em {
  color: var(--text-primary);
  font-style: italic;
}

.pain-pull {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.4;
  color: var(--text-primary);
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

.pain-pull strong {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}


/* ============================================
   S3: MECHANISM
   ============================================ */

.mechanism {
  text-align: center;
}

.mechanism-label {
  font-size: 12px;
  font-weight: 700;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 8px;
}

.mechanism-heading {
  font-size: clamp(28px, 5vw, 42px);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: -1.5px;
  background: linear-gradient(135deg, var(--text-primary) 0%, var(--accent-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.mechanism-core {
  font-size: 17px;
  color: var(--text-secondary);
  line-height: 1.8;
  max-width: 560px;
  margin: 0 auto 24px;
}

.mechanism-core strong {
  color: var(--text-primary);
}

.mechanism-anchor {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 520px;
  margin: 0 auto;
  padding: 20px 24px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
}

.mechanism-anchor strong {
  color: var(--accent-light);
  font-weight: 700;
}


/* ============================================
   S4: PROCESS
   ============================================ */

.process-heading {
  font-size: clamp(26px, 4vw, 36px);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 32px;
  letter-spacing: -1px;
}

.steps {
  list-style: none;
  display: grid;
  gap: 20px;
  margin-bottom: 24px;
}

.step {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.step-number {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: var(--accent-glow);
  border: 1px solid rgba(99, 102, 241, 0.3);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 800;
  color: var(--accent-light);
}

.step-content {
  flex: 1;
  padding-top: 2px;
}

.step-title {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--text-primary);
}

.step-desc {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin: 0;
}

.process-trust {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 8px;
}


/* ============================================
   S5: PREVIEW
   ============================================ */

.preview-heading {
  font-size: clamp(26px, 4vw, 36px);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 12px;
  letter-spacing: -1px;
}

.preview-intro {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 24px;
}

.preview-intro em {
  color: var(--text-primary);
  font-style: italic;
}

/* Screenshot container: shows image cropped with a gradient fade at bottom */
.preview-visual {
  position: relative;
  margin-bottom: 32px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
  max-height: 800px;
}

.preview-screenshot {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: top left;
}

/* Gradient fade at bottom — makes the crop feel intentional, not broken */
.preview-fade {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(to bottom, transparent 0%, var(--bg-dark) 100%);
  pointer-events: none;
}

/* Document title list */
.preview-doclist {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px;
  margin-bottom: 28px;
}

.preview-doclist-heading {
  font-size: 15px;
  color: var(--text-secondary);
  margin-bottom: 16px;
}

.preview-doclist-heading strong {
  color: var(--text-primary);
}

.preview-doclist-items {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}

.preview-doclist-items li {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-primary);
  background: var(--bg-dark);
  border: 1px solid var(--border);
  padding: 6px 12px;
  border-radius: 6px;
  transition: border-color 0.2s;
}

.preview-doclist-items li:hover {
  border-color: rgba(99, 102, 241, 0.3);
}

.preview-doclist-items li.preview-doclist-more {
  color: var(--text-muted);
  font-weight: 500;
  font-style: italic;
  border-style: dashed;
  background: none;
}

.preview-doclist-total {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
  padding-top: 12px;
  border-top: 1px solid var(--border);
}

.preview-doclist-total strong {
  color: var(--accent-light);
}

/* Centered CTA below the doc list */
.preview-cta-wrap {
  text-align: center;
}


/* ============================================
   S6: PROOF / TESTIMONIALS
   ============================================ */

.proof-heading {
  font-size: clamp(26px, 4vw, 36px);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 28px;
  letter-spacing: -1px;
}

.proof-heading strong {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.testimonials {
  display: grid;
  gap: 16px;
}

.testimonial {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px;
  transition: border-color 0.2s;
}

.testimonial:hover {
  border-color: rgba(99, 102, 241, 0.3);
}

.testimonial-quote {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 16px;
}

.testimonial-attr {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-photo {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--border);
  flex-shrink: 0;
}

.testimonial-name {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--text-primary);
  font-style: normal;
}

.testimonial-detail {
  display: block;
  font-size: 12px;
  color: var(--text-muted);
  font-style: normal;
}


/* ============================================
   S7: FAQ
   ============================================ */

.faq-heading {
  font-size: clamp(26px, 4vw, 36px);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 24px;
  letter-spacing: -1px;
}

.faq-list {
  display: grid;
  gap: 0;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-item:first-of-type {
  border-top: 1px solid var(--border);
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 20px 0;
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
  cursor: pointer;
  list-style: none;
  transition: color 0.2s;
}

.faq-question:hover {
  color: var(--accent-light);
}

/* Hide default marker */
.faq-question::-webkit-details-marker,
.faq-question::marker {
  display: none;
  content: '';
}

.faq-question::after {
  content: '+';
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 400;
  color: var(--text-muted);
  transition: all 0.2s;
}

.faq-item[open] .faq-question::after {
  content: '−';
  background: var(--accent-glow);
  border-color: rgba(99, 102, 241, 0.3);
  color: var(--accent-light);
}

.faq-answer {
  padding-bottom: 20px;
}

.faq-answer p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
}


/* ============================================
   S8: FINAL PUSH
   Sits above the form as an emotional bridge.
   No border-top — flows directly into the form.
   ============================================ */

.final-push {
  text-align: center;
  padding: 64px 24px 0;
  max-width: 720px;
  margin: 0 auto;
}

/* Remove the border between final-push and form */
.final-push + .form-section {
  border-top: none;
}

.final-push-line {
  font-size: clamp(20px, 3.5vw, 28px);
  font-weight: 700;
  color: var(--text-secondary);
  line-height: 1.4;
  letter-spacing: -0.5px;
}


/* ============================================
   S9: FORM SECTION
   ============================================ */

.form-section {
  text-align: center;
  padding: 40px 24px 80px;
  max-width: 720px;
  margin: 0 auto;
}

.form-heading {
  font-size: clamp(28px, 5vw, 40px);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 8px;
  letter-spacing: -1.5px;
}

.form-sub {
  font-size: 16px;
  color: var(--text-secondary);
  margin-bottom: 32px;
}

.form-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
  max-width: 440px;
  margin: 0 auto;
  text-align: left;
}

.form-field {
  margin-bottom: 16px;
}

.form-field label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 6px;
}

.form-field input,
.form-field select {
  width: 100%;
  background: var(--bg-dark);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 12px 14px;
  font-size: 15px;
  color: var(--text-primary);
  font-family: inherit;
  transition: border-color 0.2s;
  appearance: none;
  -webkit-appearance: none;
}

.form-field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%236b7280' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10l-5 5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}

.form-field input:focus,
.form-field select:focus {
  outline: none;
  border-color: var(--accent);
}

.form-field input::placeholder {
  color: var(--text-muted);
}

.form-field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.cta-submit {
  width: 100%;
  background: var(--accent);
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  padding: 16px;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  font-family: inherit;
  transition: all 0.2s;
  margin-top: 4px;
  letter-spacing: -0.2px;
}

.cta-submit:hover {
  background: var(--accent-light);
  transform: translateY(-1px);
  box-shadow: 0 8px 30px rgba(99, 102, 241, 0.3);
}

.form-trust {
  font-size: 12px;
  color: var(--text-muted);
  text-align: center;
  margin-top: 12px;
}

.form-urgency {
  display: inline-block;
  font-size: 14px;
  color: var(--warning);
  font-weight: 600;
  margin-top: 24px;
  padding: 10px 20px;
  background: rgba(245, 158, 11, 0.08);
  border: 1px solid rgba(245, 158, 11, 0.2);
  border-radius: 10px;
}


/* ============================================
   FOOTER
   ============================================ */

.footer {
  border-top: 1px solid var(--border);
  padding: 40px 24px;
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}

.footer p {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.8;
}

.footer a {
  color: var(--text-muted);
  text-decoration: underline;
  transition: color 0.2s;
}

.footer a:hover {
  color: var(--text-secondary);
}


/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 600px) {

  .sticky-bar {
    padding: 8px 16px;
  }

  .sticky-badge {
    display: none;
  }

  .hero {
    padding: 100px 20px 48px;
  }

  section {
    padding: 48px 20px;
  }

  .hero-micro {
    flex-direction: column;
    gap: 6px;
    align-items: center;
  }

  .hero-micro li + li::before {
    display: none;
  }

  .form-field-row {
    grid-template-columns: 1fr;
  }

  .form-card {
    padding: 24px 20px;
  }

  .mechanism-anchor {
    padding: 16px;
  }

  .final-push {
    padding: 48px 20px 0;
  }

  .form-section {
    padding: 32px 20px 60px;
  }

  .preview-visual {
    max-height: 500px;
  }

  .preview-doclist-items {
    gap: 6px;
  }

  .preview-doclist-items li {
    font-size: 12px;
    padding: 5px 10px;
  }

  .testimonial-photo {
    width: 36px;
    height: 36px;
  }
  
  .form-resume-row {
    flex-direction: column;
  }

  .form-resume-btn {
    width: 100%;
  }
}

.cta-primary:hover {
  background: var(--accent-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(99, 102, 241, 0.3);
}

.cta-returning {
  animation: returnPulse 2s ease-in-out infinite;
}

@keyframes returnPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(99, 102, 241, 0.4); }
  50%      { box-shadow: 0 0 0 10px rgba(99, 102, 241, 0); }
}
