@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

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

:root {
  --bg: #0d1117;
  --bg2: #161b22;
  --bg3: #1f2937;
  --amber: #f59e0b;
  --amber-dark: #d97706;
  --text: #e6edf3;
  --muted: #8b949e;
  --border: #30363d;
  --radius: 8px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  font-size: 16px;
}

a { color: inherit; text-decoration: none; }

/* ── Nav ── */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(13, 17, 23, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
  padding: 0 1.5rem;
}

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

.logo {
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.logo span { color: var(--amber); }

/* ── Buttons ── */
.btn {
  display: inline-block;
  padding: 0.55rem 1.25rem;
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: opacity 0.15s, transform 0.1s;
}

.btn:hover { opacity: 0.88; transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--amber);
  color: #000;
}

.btn-outline {
  background: transparent;
  border: 1px solid var(--amber);
  color: var(--amber);
}

/* ── Sections ── */
section { padding: 80px 1.5rem; }

.container {
  max-width: 1100px;
  margin: 0 auto;
}

.label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 1rem;
}

h1, h2, h3 { letter-spacing: -0.02em; line-height: 1.2; }

/* ── Hero ── */
#hero {
  padding: 100px 1.5rem 80px;
  text-align: center;
}

#hero h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  max-width: 780px;
  margin: 0 auto 1.25rem;
}

#hero h1 em {
  font-style: normal;
  color: var(--amber);
}

#hero p {
  font-size: 1.15rem;
  color: var(--muted);
  max-width: 580px;
  margin: 0 auto 2rem;
}

.hero-cta {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-cta .btn { font-size: 1rem; padding: 0.75rem 1.75rem; }

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

/* ── How It Works ── */
#how {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

#how h2 {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 700;
  margin-bottom: 3rem;
  text-align: center;
}

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
}

.step {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.75rem;
}

.step-num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--amber);
  color: #000;
  font-weight: 700;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.step h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

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

/* ── Example ── */
#example h2 {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 700;
  margin-bottom: 2rem;
  text-align: center;
}

.lead-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.75rem 2rem;
  max-width: 680px;
  margin: 0 auto;
}

.lead-card-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--border);
}

.lead-badge {
  background: #16a34a22;
  border: 1px solid #16a34a55;
  color: #4ade80;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.25rem 0.6rem;
  border-radius: 4px;
}

.lead-card-header h3 { font-size: 1.05rem; font-weight: 700; }
.lead-card-header span { font-size: 0.85rem; color: var(--muted); }

.lead-meta { display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 1.25rem; }

.lead-meta-row {
  display: flex;
  gap: 0.5rem;
  font-size: 0.88rem;
}

.lead-meta-row .key { color: var(--muted); min-width: 90px; }
.lead-meta-row .val { font-weight: 500; }

.script-block {
  background: var(--bg);
  border-left: 3px solid var(--amber);
  padding: 1rem 1.25rem;
  border-radius: 0 6px 6px 0;
  font-size: 0.9rem;
  font-style: italic;
  color: #c9d1d9;
  line-height: 1.7;
}

/* ── Pricing ── */
#pricing {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

#pricing h2 {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 700;
  margin-bottom: 0.5rem;
  text-align: center;
}

#pricing .sub {
  text-align: center;
  color: var(--muted);
  margin-bottom: 3rem;
  font-size: 0.95rem;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  max-width: 700px;
  margin: 0 auto;
}

.pricing-card {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 2rem;
  position: relative;
}

.pricing-card.recommended {
  border-color: var(--amber);
}

.rec-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--amber);
  color: #000;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.2rem 0.75rem;
  border-radius: 20px;
  white-space: nowrap;
}

.pricing-tier { font-size: 0.85rem; color: var(--muted); font-weight: 500; margin-bottom: 0.5rem; }

.pricing-price {
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 0.25rem;
}

.pricing-price sup { font-size: 1.25rem; font-weight: 600; vertical-align: top; margin-top: 0.4rem; display: inline-block; }
.pricing-price span { font-size: 1rem; font-weight: 400; color: var(--muted); }

.pricing-desc { font-size: 0.85rem; color: var(--muted); margin-bottom: 1.5rem; }

.pricing-features { list-style: none; margin-bottom: 1.75rem; display: flex; flex-direction: column; gap: 0.6rem; }

.pricing-features li {
  font-size: 0.9rem;
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.pricing-features li::before {
  content: '✓';
  color: var(--amber);
  font-weight: 700;
  flex-shrink: 0;
}

.pricing-card .btn { width: 100%; text-align: center; }

.roi-callout {
  margin-top: 2.5rem;
  text-align: center;
  background: #f59e0b11;
  border: 1px solid #f59e0b33;
  border-radius: 10px;
  padding: 1.25rem 2rem;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.roi-callout strong { color: var(--amber); font-size: 1.05rem; }
.roi-callout p { font-size: 0.88rem; color: var(--muted); margin-top: 0.3rem; }

/* ── Final CTA ── */
#cta { text-align: center; }

#cta h2 {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 700;
  margin-bottom: 1rem;
}

#cta p { color: var(--muted); margin-bottom: 2rem; font-size: 1rem; }

.cta-form {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 460px;
  margin: 0 auto;
}

.cta-form input[type="email"] {
  flex: 1;
  min-width: 220px;
  padding: 0.75rem 1rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--bg2);
  color: var(--text);
  font-family: inherit;
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.15s;
}

.cta-form input[type="email"]:focus { border-color: var(--amber); }
.cta-form input[type="email"]::placeholder { color: var(--muted); }

.cta-note { margin-top: 0.75rem; font-size: 0.8rem; color: var(--muted); }

/* ── Footer ── */
footer {
  border-top: 1px solid var(--border);
  padding: 2rem 1.5rem;
  text-align: center;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: center;
}

.tcpa {
  font-size: 0.75rem;
  color: var(--muted);
  max-width: 640px;
  line-height: 1.5;
}

.footer-copy { font-size: 0.8rem; color: var(--muted); }

/* ── Responsive ── */
@media (max-width: 600px) {
  section { padding: 60px 1.25rem; }
  .cta-form { flex-direction: column; }
  .cta-form input[type="email"] { min-width: unset; width: 100%; }
}
