/* ============================================================
   AI Email Automation Sales Page — theme.css
   Vibe: warm dark editorial, high-converting bridge page
   Fonts: Fraunces (headings) + Satoshi (body)
   ============================================================ */

:root {
  --bg:          #100f0e;
  --bg-card:     #1a1917;
  --bg-warm:     #1e1c19;
  --accent:      #f0a500;
  --accent-dim:  #c68500;
  --accent-glow: rgba(240, 165, 0, 0.18);
  --text:        #f0ece4;
  --text-muted:  #9a9489;
  --text-dim:    #6b6560;
  --border:      rgba(240, 165, 0, 0.15);
  --border-soft: rgba(255, 255, 255, 0.07);
  --green:       #4ade80;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Satoshi', 'Helvetica Neue', sans-serif;
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ── Topbar ── */
.topbar {
  background: var(--accent);
  color: #100f0e;
  text-align: center;
  padding: 10px 16px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ── Typography ── */
h1, h2, h3, h4 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 700;
  line-height: 1.15;
  color: var(--text);
}
h1 { font-size: clamp(2.1rem, 6vw, 3.8rem); }
h2 { font-size: clamp(1.7rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 3vw, 1.5rem); }
.italic { font-style: italic; color: var(--accent); }

/* ── Layout ── */
.container {
  max-width: 740px;
  margin: 0 auto;
  padding: 0 20px;
}
section { padding: 72px 0; }
section + section { border-top: 1px solid var(--border-soft); }

/* ── Hero ── */
.hero {
  padding: 80px 0 64px;
  text-align: center;
  background: radial-gradient(ellipse 80% 55% at 50% 0%, rgba(240,165,0,0.10) 0%, transparent 70%);
}

.hero-eyebrow {
  display: inline-block;
  background: var(--accent-glow);
  border: 1px solid var(--border);
  color: var(--accent);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 28px;
}

.hero h1 {
  max-width: 660px;
  margin: 0 auto 22px;
}

.hero-sub {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 500px;
  margin: 0 auto 44px;
}

/* ── PDF mockup card ── */
.pdf-mockup {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  max-width: 320px;
  margin: 0 auto 48px;
  padding: 26px 22px 22px;
  box-shadow: 0 8px 48px rgba(240,165,0,0.12), 0 2px 14px rgba(0,0,0,0.5);
  position: relative;
}

.pdf-mockup::before {
  content: 'PDF GUIDE';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #100f0e;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
  padding: 4px 14px;
  border-radius: 100px;
}

.pdf-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.pdf-icon { font-size: 22px; }

.pdf-title {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
}

.pdf-lines { display: flex; flex-direction: column; gap: 8px; }
.pdf-line {
  height: 7px;
  background: var(--border-soft);
  border-radius: 4px;
}
.pdf-line.full  { width: 100%; }
.pdf-line.med   { width: 78%; }
.pdf-line.short { width: 55%; }

.pdf-meta {
  display: flex;
  justify-content: space-between;
  margin-top: 14px;
  font-size: 11px;
  color: var(--text-dim);
  font-weight: 500;
}

/* ── CTA Button ── */
.cta-btn {
  display: inline-block;
  background: var(--accent);
  color: #100f0e;
  font-family: 'Satoshi', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  padding: 18px 48px;
  border-radius: 6px;
  text-decoration: none;
  letter-spacing: 0.01em;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 4px 24px rgba(240,165,0,0.30);
  border: none;
  cursor: pointer;
}

.cta-btn:hover {
  background: #ffc107;
  transform: translateY(-2px);
  box-shadow: 0 8px 36px rgba(240,165,0,0.42);
}

.cta-btn:active { transform: translateY(0); }
.cta-sub { display: block; margin-top: 14px; font-size: 13px; color: var(--text-dim); }

/* ── Proof bar ── */
.proof-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  flex-wrap: wrap;
  padding-top: 28px;
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 500;
}

.proof-bar .dot { width: 3px; height: 3px; background: var(--text-dim); border-radius: 50%; flex-shrink: 0; }

/* ── Problem ── */
.problem-section { background: var(--bg-warm); }

.problem-section .lead {
  color: var(--text-muted);
  margin: 12px 0 36px;
  font-size: 1.05rem;
}

.pain-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 40px;
}

.pain-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 15px 18px;
  background: var(--bg);
  border: 1px solid var(--border-soft);
  border-radius: 8px;
  font-size: 0.97rem;
}

.pain-list .pain-icon { font-size: 17px; flex-shrink: 0; margin-top: 1px; }

.pivot-line {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.3rem;
  font-weight: 600;
  font-style: italic;
  color: var(--accent);
  text-align: center;
  padding-top: 24px;
}

/* ── Features ── */
.features-section .lead {
  color: var(--text-muted);
  margin: 12px 0 36px;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.feature-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 18px 20px;
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  border-radius: 10px;
  transition: border-color 0.2s;
}

.feature-item:hover { border-color: var(--border); }

.feature-icon {
  width: 42px;
  height: 42px;
  background: var(--accent-glow);
  border: 1px solid var(--border);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.feature-body h3 {
  font-family: 'Satoshi', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 5px;
}

.feature-body p { font-size: 0.92rem; color: var(--text-muted); }

/* ── How it works ── */
.how-section { background: var(--bg-warm); }

.how-section .lead {
  color: var(--text-muted);
  margin: 12px 0 40px;
}

.steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
}

.steps::before {
  content: '';
  position: absolute;
  left: 21px;
  top: 22px;
  bottom: 22px;
  width: 1px;
  background: var(--border);
}

.step {
  display: flex;
  gap: 18px;
  position: relative;
  padding-bottom: 30px;
}

.step:last-child { padding-bottom: 0; }

.step-num {
  width: 42px;
  height: 42px;
  background: var(--bg);
  border: 1.5px solid var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  color: var(--accent);
  flex-shrink: 0;
  z-index: 1;
}

.step-body { padding-top: 8px; }

.step-body h3 {
  font-family: 'Satoshi', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 5px;
}

.step-body p { font-size: 0.92rem; color: var(--text-muted); }

/* ── Closing CTA ── */
.closing-section { text-align: center; background: radial-gradient(ellipse 80% 60% at 50% 100%, rgba(240,165,0,0.08) 0%, transparent 70%); }

.closing-section .lead {
  color: var(--text-muted);
  margin: 12px auto 36px;
  max-width: 480px;
}

.price-display {
  margin-bottom: 28px;
}

.price-tag {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 4rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}

.price-note { font-size: 14px; color: var(--text-dim); margin-top: 6px; }

/* ── Footer ── */
.site-footer {
  padding: 32px 0;
  text-align: center;
  font-size: 13px;
  color: var(--text-dim);
  border-top: 1px solid var(--border-soft);
}
.site-footer a { color: var(--text-dim); text-decoration: none; }
.site-footer a:hover { color: var(--text-muted); }

/* ── Responsive ── */
@media (max-width: 600px) {
  section { padding: 52px 0; }
  .hero { padding: 56px 0 44px; }
  .cta-btn { width: 100%; text-align: center; padding: 18px 20px; }
  .proof-bar .dot { display: none; }
  .proof-bar { gap: 12px; }
  .feature-item { flex-direction: column; gap: 10px; }
}
