/* ──────────────────────────────────────
   CareerScripts Design System
   ────────────────────────────────────── */

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

:root {
  --text: #1d1d1f;
  --text-secondary: #6e6e73;
  --bg: #ffffff;
  --accent: #0071e3;
  --accent-hover: #0077ED;
  --accent-strong: #0a3d91;
  --border: #e5e5e7;
  --surface: #f5f5f7;
  --green: #1a8d1a;
  --buy: #0a84ff;
  --buy-hover: #0066cc;
  --buy-pressed: #004999;
}

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

body {
  font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'SF Pro Text', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ── LAYOUT ── */
.container { max-width: 680px; margin: 0 auto; padding: 0 24px; }
.container-wide { max-width: 960px; margin: 0 auto; padding: 0 24px; }

/* ── NAV ── */
nav {
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
  position: sticky; top: 0;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 100;
}
nav .container, nav .container-wide {
  display: flex; justify-content: space-between; align-items: center;
}
.logo {
  font-size: 0.9375rem; font-weight: 600;
  letter-spacing: -0.01em; color: var(--text); text-decoration: none;
}
.nav-cta {
  font-size: 0.8125rem; background: var(--buy); color: #fff;
  padding: 7px 18px; border-radius: 980px; text-decoration: none;
  font-weight: 600; transition: all 0.2s;
  box-shadow: 0 2px 6px rgba(10,132,255,0.25);
}
.nav-cta:hover { background: var(--buy-hover); }
.nav-cta:active { background: var(--buy-pressed); }

/* ── HERO ── */
.hero { padding: 80px 0 60px; text-align: center; }
.hero h1 {
  font-size: clamp(2rem, 5vw, 3rem); font-weight: 700;
  letter-spacing: -0.03em; line-height: 1.1; margin-bottom: 16px;
}
.hero h1 span { color: var(--accent); }
.hero p {
  font-size: 1.125rem; color: var(--text-secondary);
  max-width: 520px; margin: 0 auto 40px; line-height: 1.6;
}

/* ── BUTTONS ── */
.cta-primary {
  display: inline-block; background: var(--buy); color: #fff;
  font-size: 1.0625rem; font-weight: 600; padding: 16px 40px;
  border-radius: 980px; text-decoration: none; transition: all 0.2s;
  border: none; cursor: pointer;
  box-shadow: 0 4px 14px rgba(10,132,255,0.28);
}
.cta-primary:hover { background: var(--buy-hover); transform: translateY(-1px); box-shadow: 0 6px 18px rgba(10,132,255,0.34); }
.cta-primary:active { background: var(--buy-pressed); transform: translateY(0); }
.cta-sub { display: block; font-size: 0.8125rem; color: var(--text-secondary); margin-top: 12px; }

/* Secondary / muted CTA — for "see kits" / scroll-to anchors that aren't the primary purchase action */
.cta-secondary {
  display: inline-block; background: transparent; color: var(--text);
  font-size: 0.9375rem; font-weight: 500; padding: 10px 20px;
  border-radius: 980px; text-decoration: none; transition: all 0.2s;
  border: 1px solid var(--border);
}
.cta-secondary:hover { background: var(--surface); border-color: #c8c8cc; }

/* ── PRODUCT CARDS GRID (Landing) ── */
.products-grid {
  display: grid; grid-template-columns: 1fr; gap: 24px;
  padding: 60px 0 80px;
}
@media (min-width: 640px) { .products-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 900px) { .products-grid { grid-template-columns: repeat(3, 1fr); } }

.product-card {
  background: var(--surface); border-radius: 20px; padding: 32px 28px;
  display: flex; flex-direction: column;
}
.product-card .card-icon { font-size: 2rem; margin-bottom: 16px; }
.product-card h3 {
  font-size: 1.125rem; font-weight: 700; letter-spacing: -0.02em;
  margin-bottom: 8px;
}
.product-card .card-desc {
  font-size: 0.875rem; color: var(--text-secondary); line-height: 1.6;
  margin-bottom: 20px; flex: 1;
}
.product-card .card-price {
  font-size: 1.5rem; font-weight: 700; margin-bottom: 16px;
}
.product-card .card-price span {
  font-size: 0.8125rem; font-weight: 400; color: var(--text-secondary);
}
.card-cta {
  display: block; text-align: center; background: var(--buy); color: #fff;
  padding: 14px 24px; border-radius: 980px; text-decoration: none;
  font-weight: 600; font-size: 0.9375rem; transition: all 0.2s;
  box-shadow: 0 3px 10px rgba(10,132,255,0.22);
}
.card-cta:hover { background: var(--buy-hover); transform: translateY(-1px); box-shadow: 0 5px 14px rgba(10,132,255,0.3); }
.card-cta:active { background: var(--buy-pressed); transform: translateY(0); }
.card-cta-sub {
  display: block; text-align: center; font-size: 0.75rem; color: var(--text-secondary);
  margin-top: 8px; line-height: 1.4;
}

/* ── PROBLEM SECTION ── */
.problem { padding: 80px 0 60px; }
.problem h2 {
  font-size: 1.5rem; font-weight: 700; letter-spacing: -0.02em;
  margin-bottom: 32px; text-align: center;
}
.problem-list { list-style: none; max-width: 520px; margin: 0 auto; }
.problem-list li {
  font-size: 1rem; color: var(--text-secondary); padding: 12px 0;
  border-bottom: 1px solid var(--border); display: flex;
  align-items: flex-start; gap: 12px;
}
.problem-list li::before {
  content: "\2715"; color: #ff3b30; font-weight: 700; flex-shrink: 0; margin-top: 1px;
}

/* ── SOLUTION / FEATURES ── */
.solution {
  padding: 60px 24px; background: var(--surface); border-radius: 20px;
}
@media (min-width: 730px) { .solution { padding: 60px; } }
.solution h2 {
  font-size: 1.5rem; font-weight: 700; letter-spacing: -0.02em;
  margin-bottom: 8px; text-align: center;
}
.solution .subtitle {
  text-align: center; color: var(--text-secondary); font-size: 1rem; margin-bottom: 40px;
}
.feature-grid { display: grid; grid-template-columns: 1fr; gap: 24px; }
@media (min-width: 480px) { .feature-grid { grid-template-columns: 1fr 1fr; } }
.feature { background: var(--bg); border-radius: 16px; padding: 24px; }
.feature-icon { font-size: 1.5rem; margin-bottom: 12px; }
.feature h3 { font-size: 0.9375rem; font-weight: 600; margin-bottom: 6px; }
.feature p { font-size: 0.8125rem; color: var(--text-secondary); line-height: 1.5; }

/* ── PREVIEW ── */
.preview { padding: 80px 0 60px; text-align: center; }
.preview h2 { font-size: 1.5rem; font-weight: 700; letter-spacing: -0.02em; margin-bottom: 12px; }
.preview > p { color: var(--text-secondary); margin-bottom: 40px; }
.preview-card {
  background: var(--surface); border-radius: 16px; padding: 32px 24px;
  text-align: left; max-width: 520px; margin: 0 auto;
}
.preview-card .label {
  font-size: 0.6875rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.08em; color: var(--accent); margin-bottom: 16px;
}
.preview-card h4 { font-size: 1rem; font-weight: 600; margin-bottom: 12px; }
.preview-card p {
  font-size: 0.875rem; color: var(--text-secondary); line-height: 1.7;
  font-family: 'SF Mono', SFMono-Regular, Menlo, Consolas, monospace;
  background: var(--bg); padding: 20px; border-radius: 10px; border: 1px solid var(--border);
}
.preview-card .blur { filter: blur(4px); user-select: none; -webkit-user-select: none; }

/* ── PRICING ── */
.pricing { padding: 80px 0 60px; text-align: center; }
.pricing h2 { font-size: 1.5rem; font-weight: 700; letter-spacing: -0.02em; margin-bottom: 8px; }
.pricing > p { color: var(--text-secondary); margin-bottom: 40px; }
.price-card {
  background: var(--surface); border-radius: 20px; padding: 48px 32px;
  max-width: 400px; margin: 0 auto;
}
.price-amount { font-size: 3rem; font-weight: 700; letter-spacing: -0.03em; }
.price-amount span { font-size: 1rem; color: var(--text-secondary); font-weight: 400; }
.price-note { font-size: 0.8125rem; color: var(--text-secondary); margin: 8px 0 32px; }
.price-card .cta-primary { width: 100%; text-align: center; }
.price-features { list-style: none; margin-top: 32px; text-align: left; }
.price-features li {
  font-size: 0.875rem; color: var(--text-secondary); padding: 8px 0;
  display: flex; align-items: center; gap: 10px;
}
.price-features li::before { content: "\2713"; color: var(--green); font-weight: 700; flex-shrink: 0; }

/* ── FAQ ── */
.faq { padding: 60px 0 80px; }
.faq h2 { font-size: 1.5rem; font-weight: 700; letter-spacing: -0.02em; margin-bottom: 32px; text-align: center; }
.faq-item { border-bottom: 1px solid var(--border); padding: 20px 0; max-width: 520px; margin: 0 auto; }
.faq-item summary {
  font-size: 0.9375rem; font-weight: 600; cursor: pointer; list-style: none;
  display: flex; justify-content: space-between; align-items: center;
}
.faq-item summary::after { content: "+"; font-size: 1.25rem; color: var(--text-secondary); }
.faq-item[open] summary::after { content: "\2212"; }
.faq-item p { font-size: 0.875rem; color: var(--text-secondary); margin-top: 12px; line-height: 1.6; }

/* ── FINAL CTA ── */
.final-cta { padding: 80px 0; text-align: center; border-top: 1px solid var(--border); }
.final-cta h2 { font-size: clamp(1.5rem, 4vw, 2rem); font-weight: 700; letter-spacing: -0.03em; margin-bottom: 12px; }
.final-cta p { color: var(--text-secondary); margin-bottom: 32px; }

/* ── FOOTER ── */
footer {
  padding: 24px 0; border-top: 1px solid var(--border); text-align: center;
  font-size: 0.75rem; color: var(--text-secondary);
}

/* ── SEO ARTICLE STYLES ── */
article { max-width: 680px; margin: 0 auto; padding: 48px 24px 80px; }
article .breadcrumb { font-size: 0.8125rem; color: var(--text-secondary); margin-bottom: 32px; }
article .breadcrumb a { color: var(--accent); text-decoration: none; }
article h1 { font-size: clamp(1.75rem, 4vw, 2.5rem); font-weight: 700; letter-spacing: -0.03em; line-height: 1.15; margin-bottom: 16px; }
article .meta { font-size: 0.875rem; color: var(--text-secondary); margin-bottom: 40px; }
article h2 { font-size: 1.375rem; font-weight: 700; letter-spacing: -0.02em; margin: 48px 0 16px; }
article h3 { font-size: 1.125rem; font-weight: 600; margin: 32px 0 12px; }
article p { margin-bottom: 20px; }
article ul, article ol { margin-bottom: 20px; padding-left: 24px; }
article li { margin-bottom: 8px; }
article strong { color: var(--text); }
article blockquote {
  border-left: 3px solid var(--border); padding-left: 20px; margin: 24px 0;
  font-style: italic; color: var(--text-secondary);
}
.template-box {
  background: var(--surface); border-radius: 12px; padding: 24px; margin: 24px 0;
  font-family: 'SF Mono', SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.875rem; line-height: 1.8; border-left: 3px solid var(--accent);
}
.template-box .ph { background: #fff3cd; padding: 1px 6px; border-radius: 4px; font-weight: 600; }
.cta-box { background: var(--surface); border-radius: 16px; padding: 32px; text-align: center; margin: 48px 0; }
.cta-box h3 { margin-top: 0; font-size: 1.125rem; }
.cta-box p { color: var(--text-secondary); margin-bottom: 20px; }
.cta-btn {
  display: inline-block; background: var(--accent); color: #fff; font-size: 1rem;
  font-weight: 600; padding: 14px 32px; border-radius: 980px; text-decoration: none;
}
.cta-btn:hover { background: var(--accent-hover); }

/* ── SUCCESS PAGES ── */
.success-page {
  min-height: calc(100vh - 120px);
  display: flex; align-items: flex-start; justify-content: center;
  padding: 60px 24px 48px;
}
.success-card { text-align: center; max-width: 560px; width: 100%; }
.success-icon {
  width: 64px; height: 64px; background: #e8f5e8; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 24px; font-size: 1.75rem; color: var(--green);
}
.success-card h1 {
  font-size: 1.75rem; font-weight: 700;
  letter-spacing: -0.03em; margin-bottom: 8px;
}
.success-card .success-sub { color: var(--text-secondary); margin-bottom: 40px; }
.download-box {
  background: var(--surface); border-radius: 16px; padding: 32px; margin-bottom: 32px;
}
.download-box h3 { font-size: 1rem; font-weight: 600; margin-bottom: 16px; }
.download-btn {
  display: inline-block; background: var(--accent); color: #fff;
  font-size: 1rem; font-weight: 600; padding: 14px 36px;
  border-radius: 980px; text-decoration: none; transition: all 0.2s;
}
.download-btn:hover { background: var(--accent-hover); transform: scale(1.02); }
.download-note { font-size: 0.8125rem; color: var(--text-secondary); margin-top: 12px; }
.other-kits { margin-top: 40px; text-align: left; }
.other-kits h3 { font-size: 1.0625rem; font-weight: 600; margin-bottom: 16px; text-align: center; }
.kit-link {
  display: flex; align-items: center; gap: 12px;
  background: var(--surface); border-radius: 12px;
  padding: 16px 20px; margin-bottom: 8px;
  text-decoration: none; color: var(--text); transition: background 0.2s;
}
.kit-link:hover { background: var(--border); }
.kit-link .kit-icon { font-size: 1.25rem; }
.kit-link .kit-name { font-weight: 600; font-size: 0.9375rem; }
.kit-link .kit-price { margin-left: auto; font-size: 0.8125rem; color: var(--text-secondary); }
.back-link {
  display: inline-block; margin-top: 40px;
  font-size: 0.875rem; color: var(--text-secondary); text-decoration: none;
}
.back-link:hover { color: var(--text); }
.notice-bar {
  background: #fff3cd; border-bottom: 1px solid #ffc107;
  padding: 12px 24px; text-align: center; font-size: 0.875rem; color: #664d03;
}
.notice-bar a { color: var(--accent); font-weight: 600; text-decoration: none; }

/* ── HERO BENEFIT BULLETS ── */
.hero-bullets {
  display: flex; flex-wrap: wrap; gap: 10px 20px; justify-content: center;
  max-width: 560px; margin: -16px auto 28px; padding: 0;
  list-style: none;
}
.hero-bullets li {
  font-size: 0.875rem; color: var(--text-secondary);
  display: inline-flex; align-items: center; gap: 6px;
}
.hero-bullets li::before {
  content: "\2713"; color: var(--green); font-weight: 700;
}

/* ── TRUST BAR ── */
.trust-bar {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 12px 24px;
  padding: 20px 24px; border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border); background: var(--surface);
  font-size: 0.8125rem; color: var(--text-secondary);
}
.trust-bar span { display: inline-flex; align-items: center; gap: 6px; }
.trust-bar strong { color: var(--text); font-weight: 600; }

/* ── DECISION BLOCK ── */
.decision { padding: 60px 0; }
.decision h2 {
  font-size: 1.5rem; font-weight: 700; letter-spacing: -0.02em;
  margin-bottom: 28px; text-align: center;
}
.decision-grid {
  display: grid; grid-template-columns: 1fr; gap: 16px;
  max-width: 720px; margin: 0 auto;
}
@media (min-width: 640px) { .decision-grid { grid-template-columns: 1fr 1fr; } }
.decision-col {
  background: var(--surface); border-radius: 16px; padding: 24px;
}
.decision-col.yes { border-left: 3px solid var(--green); }
.decision-col.no { border-left: 3px solid #ff3b30; }
.decision-col h3 {
  font-size: 0.9375rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 14px;
}
.decision-col.yes h3 { color: var(--green); }
.decision-col.no h3 { color: #ff3b30; }
.decision-col ul { list-style: none; padding: 0; }
.decision-col li {
  font-size: 0.9375rem; color: var(--text-secondary);
  padding: 8px 0; line-height: 1.5;
  display: flex; gap: 10px; align-items: flex-start;
}
.decision-col.yes li::before { content: "\2713"; color: var(--green); font-weight: 700; flex-shrink: 0; }
.decision-col.no li::before { content: "\2715"; color: #ff3b30; font-weight: 700; flex-shrink: 0; }

/* ── COST / CONSEQUENCE BOX ── */
.cost-box {
  background: #fff5f5; border: 1px solid #ffd6d6; border-left: 4px solid #ff3b30;
  border-radius: 12px; padding: 22px 24px; margin: 32px auto; max-width: 680px;
}
.cost-box h4 {
  font-size: 0.75rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.08em; color: #ff3b30; margin-bottom: 10px;
}
.cost-box p { font-size: 1rem; color: var(--text); line-height: 1.6; margin: 0; }
.cost-box strong { font-weight: 700; }

.outcome-box {
  background: #f3faf3; border: 1px solid #c8ecc8; border-left: 4px solid var(--green);
  border-radius: 12px; padding: 22px 24px; margin: 32px auto; max-width: 680px;
}
.outcome-box h4 {
  font-size: 0.75rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.08em; color: var(--green); margin-bottom: 10px;
}
.outcome-box p { font-size: 1rem; color: var(--text); line-height: 1.6; margin: 0; }

/* ── REAL EXAMPLE BOX ── */
.scenario { padding: 60px 0; background: var(--surface); }
.scenario h2 {
  font-size: 1.5rem; font-weight: 700; letter-spacing: -0.02em;
  margin-bottom: 8px; text-align: center;
}
.scenario > .container > p.sub {
  text-align: center; color: var(--text-secondary); margin-bottom: 32px;
}
.scenario-card {
  background: var(--bg); border-radius: 16px; padding: 28px 24px; margin-bottom: 16px;
  border: 1px solid var(--border);
}
.scenario-card .label {
  font-size: 0.6875rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.08em; color: var(--accent); margin-bottom: 8px;
}
.scenario-card h4 { font-size: 1.0625rem; font-weight: 700; margin-bottom: 12px; }
.scenario-card p { font-size: 0.9375rem; color: var(--text-secondary); line-height: 1.6; margin-bottom: 8px; }
.scenario-card .result {
  font-size: 0.9375rem; color: var(--text);
  background: var(--surface); padding: 12px 16px; border-radius: 10px;
  margin-top: 14px; border-left: 3px solid var(--green);
}
.scenario-card .result strong { color: var(--green); }

/* ── INLINE MID-PAGE CTA ── */
.mid-cta {
  background: linear-gradient(180deg, var(--surface), #ffffff);
  border: 1px solid var(--border); border-radius: 16px;
  padding: 28px 24px; margin: 40px auto; max-width: 560px; text-align: center;
}
.mid-cta p {
  font-size: 1rem; color: var(--text); margin-bottom: 16px; line-height: 1.5;
}
.mid-cta .cta-primary { font-size: 0.9375rem; padding: 12px 28px; }
.mid-cta .cta-sub { margin-top: 10px; }

/* ── RELATED LINKS ── */
.related { padding: 60px 0; border-top: 1px solid var(--border); }
.related h2 {
  font-size: 1.25rem; font-weight: 700; letter-spacing: -0.02em;
  margin-bottom: 20px; text-align: center;
}
.related-grid {
  display: grid; grid-template-columns: 1fr; gap: 10px;
  max-width: 560px; margin: 0 auto;
}
@media (min-width: 560px) { .related-grid { grid-template-columns: 1fr 1fr; } }
.related-link {
  display: block; padding: 14px 16px; border-radius: 10px;
  background: var(--surface); color: var(--text); text-decoration: none;
  font-size: 0.9375rem; font-weight: 500; transition: background 0.2s;
}
.related-link:hover { background: var(--border); }
.related-link span { display: block; font-size: 0.8125rem; color: var(--text-secondary); font-weight: 400; margin-top: 2px; }

/* ── SEO PAGE NEXT-STEP ── */
.next-step {
  margin: 48px 0; padding: 28px 24px;
  background: var(--surface); border-radius: 16px; text-align: center;
}
.next-step h3 { font-size: 1.0625rem; margin-bottom: 8px; }
.next-step p { color: var(--text-secondary); margin-bottom: 16px; }

/* ──────────────────────────────────────
   V4 — FRICTIONLESS CONVERSION SYSTEM
   Apple-style purchase flow (decision → buy in ≤5s)
   ────────────────────────────────────── */

/* ── INSTANT-BUY BLOCK (above-the-fold purchase card) ── */
.instant-buy {
  max-width: 560px; margin: 24px auto 0; padding: 22px 24px 24px;
  background: var(--bg); border: 1px solid var(--border);
  border-radius: 18px; box-shadow: 0 8px 28px rgba(0,0,0,0.06);
  text-align: center;
}
.instant-buy .ib-price {
  display: inline-flex; align-items: baseline; gap: 6px;
  font-size: 1.5rem; font-weight: 700; letter-spacing: -0.02em;
  margin-bottom: 4px;
}
.instant-buy .ib-price small {
  font-size: 0.8125rem; font-weight: 500; color: var(--text-secondary);
}
.instant-buy .ib-meta {
  display: block; font-size: 0.8125rem; color: var(--text-secondary);
  margin-bottom: 14px;
}
.instant-buy .cta-primary { width: 100%; max-width: 360px; padding: 16px 24px; }
.instant-buy .ib-trust {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 6px 16px;
  margin-top: 14px; font-size: 0.75rem; color: var(--text-secondary);
}
.instant-buy .ib-trust span { display: inline-flex; align-items: center; gap: 4px; }
.instant-buy .ib-trust strong { color: var(--text); font-weight: 600; }

/* ── STICKY PURCHASE BAR (mobile + desktop, always visible) ── */
.sticky-buy {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 90;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid var(--border);
  box-shadow: 0 -4px 16px rgba(0,0,0,0.06);
  padding: 10px 16px calc(10px + env(safe-area-inset-bottom));
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px;
  transform: translateY(100%);
  transition: transform 0.25s ease;
}
.sticky-buy.visible { transform: translateY(0); }
.sticky-buy .sb-text {
  display: flex; flex-direction: column; min-width: 0;
}
.sticky-buy .sb-headline {
  font-size: 0.875rem; font-weight: 600; color: var(--text);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.sticky-buy .sb-meta {
  font-size: 0.6875rem; color: var(--text-secondary);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.sticky-buy .sb-cta {
  flex-shrink: 0;
  background: var(--buy); color: #fff;
  padding: 12px 22px; border-radius: 980px;
  font-size: 0.9375rem; font-weight: 600;
  text-decoration: none; transition: all 0.2s;
  box-shadow: 0 3px 10px rgba(10,132,255,0.3);
  white-space: nowrap;
}
.sticky-buy .sb-cta:hover { background: var(--buy-hover); }
.sticky-buy .sb-cta:active { background: var(--buy-pressed); }
@media (max-width: 480px) {
  .sticky-buy { padding: 8px 12px calc(8px + env(safe-area-inset-bottom)); gap: 8px; }
  .sticky-buy .sb-headline { font-size: 0.8125rem; }
  .sticky-buy .sb-meta { display: none; }
  .sticky-buy .sb-cta { padding: 10px 16px; font-size: 0.875rem; }
}
body.has-sticky-buy { padding-bottom: 80px; }
@media (max-width: 480px) {
  body.has-sticky-buy { padding-bottom: 70px; }
}

/* ── MICRO-TRUST STACK (next to CTA) ── */
.micro-trust {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 8px 18px;
  margin: 10px auto 0; max-width: 560px;
  font-size: 0.8125rem; color: var(--text-secondary);
}
.micro-trust span { display: inline-flex; align-items: center; gap: 5px; }
.micro-trust span::before { content: "✓"; color: var(--green); font-weight: 700; }

/* ── DECISION SHORTCUT BAR (homepage primary entry) ── */
.shortcut-bar {
  background: var(--surface); padding: 28px 0 32px;
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
}
.shortcut-bar h2 {
  font-size: 1.0625rem; font-weight: 700; text-align: center;
  margin-bottom: 16px; letter-spacing: -0.01em;
}
.shortcut-grid {
  display: grid; grid-template-columns: 1fr; gap: 8px;
  max-width: 920px; margin: 0 auto; padding: 0 16px;
}
@media (min-width: 560px) { .shortcut-grid { grid-template-columns: repeat(5, 1fr); gap: 10px; } }
.shortcut-btn {
  display: flex; align-items: center; justify-content: center;
  gap: 8px; padding: 14px 12px;
  background: var(--bg); color: var(--text);
  border: 1px solid var(--border); border-radius: 12px;
  text-decoration: none; font-size: 0.875rem; font-weight: 600;
  transition: all 0.18s; text-align: center; line-height: 1.3;
}
.shortcut-btn:hover {
  border-color: var(--buy); color: var(--buy);
  transform: translateY(-1px); box-shadow: 0 4px 12px rgba(10,132,255,0.12);
}
.shortcut-btn .sb-icon { font-size: 1.125rem; flex-shrink: 0; }

/* ── ABOVE-FOLD HERO ENHANCEMENTS (V4) ── */
.hero.v4 { padding: 64px 0 28px; }
.hero.v4 h1 { margin-bottom: 14px; }
.hero.v4 p { margin-bottom: 18px; font-size: 1.0625rem; }

/* ── PRIMARY-ONLY CTA enforcement helpers ── */
.cta-link-only {
  display: inline-block; color: var(--buy); font-size: 0.875rem;
  font-weight: 500; text-decoration: none; padding: 8px 0;
  border-bottom: 1px solid transparent; transition: border-color 0.2s;
}
.cta-link-only:hover { border-bottom-color: var(--buy); }

/* ──────────────────────────────────────
   V5 — BUYER INTENT CAPTURE SYSTEM
   Money-page components (answer-first, panic CTA, emotional framing)
   ────────────────────────────────────── */

/* ── ANSWER-FIRST BLOCK (above-the-fold 80-word answer) ── */
.answer-first {
  background: var(--surface); border-left: 3px solid var(--accent);
  border-radius: 12px; padding: 22px 24px; margin: 8px 0 28px;
}
.answer-first .answer-label {
  font-size: 0.6875rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.08em; color: var(--accent); margin-bottom: 8px;
}
.answer-first p:last-child {
  font-size: 1.0625rem; line-height: 1.55; color: var(--text); margin: 0;
}

/* ── PANIC CTA BLOCK (top, mid, end) ── */
.panic-cta {
  display: flex; align-items: center; gap: 16px;
  background: var(--bg); border: 1px solid var(--border);
  border-left: 3px solid var(--buy);
  border-radius: 14px; padding: 18px 20px; margin: 28px 0;
  box-shadow: 0 4px 14px rgba(10,132,255,0.08);
}
.panic-cta .pc-text { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 2px; }
.panic-cta .pc-text strong { font-size: 0.9375rem; color: var(--text); font-weight: 700; }
.panic-cta .pc-text span { font-size: 0.8125rem; color: var(--text-secondary); }
.panic-cta .pc-btn {
  flex-shrink: 0; background: var(--buy); color: #fff;
  padding: 11px 20px; border-radius: 980px;
  font-size: 0.875rem; font-weight: 600;
  text-decoration: none; transition: all 0.2s;
  white-space: nowrap;
  box-shadow: 0 2px 8px rgba(10,132,255,0.25);
}
.panic-cta .pc-btn:hover { background: var(--buy-hover); transform: translateY(-1px); }
.panic-cta .pc-btn:active { background: var(--buy-pressed); transform: translateY(0); }
@media (max-width: 560px) {
  .panic-cta { flex-direction: column; align-items: stretch; padding: 16px; }
  .panic-cta .pc-btn { text-align: center; padding: 12px 16px; }
}

/* ── EMOTIONAL FRAME LIST ("You're here because") ── */
article ul.emotional-list { list-style: none; padding: 0; margin: 0 0 24px; }
article ul.emotional-list li {
  position: relative; padding: 10px 0 10px 28px;
  color: var(--text); font-size: 0.9375rem; line-height: 1.5;
  border-bottom: 1px dashed var(--border); margin-bottom: 0;
}
article ul.emotional-list li:last-child { border-bottom: none; }
article ul.emotional-list li::before {
  content: "—"; position: absolute; left: 0; top: 10px;
  color: var(--accent); font-weight: 700;
}

/* ── "WHAT NOT TO SAY" LIST ── */
article ul.dont-list { list-style: none; padding: 0; margin: 0 0 24px; }
article ul.dont-list li {
  position: relative; padding: 10px 0 10px 32px;
  color: var(--text-secondary); font-size: 0.9375rem; line-height: 1.5;
  border-bottom: 1px solid var(--border); margin-bottom: 0;
}
article ul.dont-list li:last-child { border-bottom: none; }
article ul.dont-list li::before {
  content: "✕"; position: absolute; left: 4px; top: 10px;
  color: #ff3b30; font-weight: 800;
}

/* ── LIGHTWEIGHT PROOF NOTES (no fake testimonials) ── */
article ul.proof-notes {
  list-style: none; padding: 16px 18px; margin: 28px 0;
  background: #f8fafc; border-radius: 12px;
  border-left: 3px solid var(--green);
  font-size: 0.8125rem; color: var(--text-secondary);
}
article ul.proof-notes li {
  position: relative; padding: 4px 0 4px 22px; line-height: 1.5; margin: 0;
}
article ul.proof-notes li::before {
  content: "•"; position: absolute; left: 6px; top: 4px;
  color: var(--green); font-weight: 700;
}

/* ── RELATED LIST INSIDE article (cluster links) ── */
article ul.related-list { list-style: none; padding: 0; margin: 0 0 24px; }
article ul.related-list li {
  margin: 0 0 8px 0; padding: 0;
}
article ul.related-list li a {
  display: block; padding: 12px 16px; border-radius: 10px;
  background: var(--surface); color: var(--text); text-decoration: none;
  font-size: 0.9375rem; font-weight: 600; transition: background 0.2s;
}
article ul.related-list li a:hover { background: var(--border); }
article ul.related-list li a span {
  display: block; font-size: 0.8125rem; color: var(--text-secondary);
  font-weight: 400; margin-top: 2px;
}

/* ── FAQ items inside article (money pages) ── */
article .faq-item {
  border-bottom: 1px solid var(--border); padding: 16px 0; margin: 0;
  max-width: 100%;
}
article .faq-item summary {
  font-size: 0.9375rem; font-weight: 600; cursor: pointer; list-style: none;
  display: flex; justify-content: space-between; align-items: center;
}
article .faq-item summary::after { content: "+"; font-size: 1.25rem; color: var(--text-secondary); }
article .faq-item[open] summary::after { content: "\2212"; }
article .faq-item p {
  font-size: 0.9375rem; color: var(--text-secondary); margin-top: 12px; line-height: 1.6;
}

/* ── PRODUCT-CARD "USED WHEN" emotional bullets (Phase 3) ── */
.used-when {
  list-style: none; padding: 14px 0 4px; margin: 0 0 16px;
  border-top: 1px solid var(--border);
  display: grid; gap: 6px;
  font-size: 0.8125rem; color: var(--text-secondary); line-height: 1.45;
}
.used-when li { position: relative; padding-left: 18px; }
.used-when li::before {
  content: "↳"; position: absolute; left: 0; top: 0;
  color: var(--accent); font-weight: 700;
}

/* ── SOCIAL PROOF BAND (no fake testimonials) ── */
.proof-band {
  background: var(--surface); border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border); padding: 36px 24px;
}
.proof-band .container { max-width: 880px; }
.proof-band h2 {
  font-size: 1.0625rem; font-weight: 700; letter-spacing: -0.01em;
  text-align: center; margin-bottom: 18px;
}
.proof-band ul {
  list-style: none; padding: 0; margin: 0;
  display: grid; grid-template-columns: 1fr; gap: 10px;
  max-width: 720px; margin-left: auto; margin-right: auto;
}
@media (min-width: 640px) { .proof-band ul { grid-template-columns: 1fr 1fr; } }
.proof-band li {
  padding: 12px 16px; background: var(--bg); border-radius: 10px;
  font-size: 0.875rem; color: var(--text-secondary); line-height: 1.5;
  border-left: 2px solid var(--green);
}

/* ── MOBILE ── */
@media (max-width: 480px) {
  .hero { padding: 48px 0 40px; }
  .hero.v4 { padding: 40px 0 20px; }
  .problem, .preview, .pricing, .faq, .decision, .scenario { padding-top: 48px; padding-bottom: 40px; }
  .success-card h1 { font-size: 1.5rem; }
  article { padding: 32px 20px 60px; }
  .hero-bullets { flex-direction: column; align-items: flex-start; gap: 6px; padding-left: 20px; }
  .instant-buy { padding: 18px 18px 20px; margin-top: 18px; }
  .instant-buy .cta-primary { font-size: 1rem; padding: 14px 20px; }
  .answer-first { padding: 18px 18px; }
  .answer-first p:last-child { font-size: 1rem; }
}

/* ──────────────────────────────────────────────────────────────
 * V15 TECH-SPRINT CONVERSION COMPONENTS
 * Phase 3 of first-sale sprint: loss-strip, pain-trigger,
 * mid-cta, micro-checklist. Stacked at editorial pages
 * (above the H1, after the quick answer, before the final CTA).
 * ────────────────────────────────────────────────────────────── */

/* 1. LOSS-FRAMING STRIP — surfaces $ at risk. Appears above <h1>. */
.loss-strip {
  display: flex; align-items: center; gap: 12px;
  background: #fff5f3; border: 1px solid #ffd5cf;
  border-left: 4px solid #d92d20;
  border-radius: 12px; padding: 12px 16px;
  margin: 0 0 24px;
  font-size: 0.9375rem; line-height: 1.45; color: #5b1410;
}
.loss-strip .ls-icon {
  flex-shrink: 0; width: 28px; height: 28px;
  background: #d92d20; color: #fff;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 0.9375rem; font-weight: 800;
}
.loss-strip strong { color: #2b0a07; font-weight: 700; }
@media (max-width: 480px) {
  .loss-strip { font-size: 0.875rem; padding: 10px 14px; }
}

/* 2. PAIN-MOMENT TRIGGER — dark callout, defines the exact moment.
   Sits right after the 80-word "Short answer" block. */
.pain-trigger {
  background: #11151c; color: #e6edf3;
  border-radius: 14px; padding: 20px 22px;
  margin: 22px 0 28px;
  position: relative;
  font-size: 0.9375rem; line-height: 1.55;
}
.pain-trigger::before {
  content: "READ THIS BEFORE YOU";
  display: block; font-size: 0.6875rem; font-weight: 800;
  letter-spacing: 0.14em; color: #ff7a59;
  margin-bottom: 8px;
}
.pain-trigger[data-when]::before { content: attr(data-when); }
.pain-trigger p { margin: 0; color: #e6edf3; }
.pain-trigger em {
  font-style: normal; color: #ff7a59; font-weight: 600;
  border-bottom: 1px dashed #ff7a59;
}
.pain-trigger .pt-meta {
  display: block; margin-top: 10px; font-size: 0.8125rem; color: #8b949e;
}

/* 3. MID-PAGE CTA — distinct from .panic-cta. Bold "pays-for-itself" frame. */
.mid-cta {
  background: linear-gradient(180deg, #f0f7ff 0%, #e8f1ff 100%);
  border: 1px solid #bcd6ff; border-radius: 16px;
  padding: 22px 24px; margin: 32px 0;
  text-align: center;
}
.mid-cta .mc-eyebrow {
  font-size: 0.6875rem; font-weight: 800;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--buy); margin-bottom: 8px;
}
.mid-cta h3 {
  font-size: 1.0625rem; font-weight: 700;
  letter-spacing: -0.01em; line-height: 1.35;
  color: var(--text); margin: 0 0 6px;
}
.mid-cta p {
  font-size: 0.875rem; color: var(--text-secondary);
  line-height: 1.55; margin: 0 0 16px;
}
.mid-cta .mc-btn {
  display: inline-block; background: var(--buy); color: #fff;
  padding: 13px 28px; border-radius: 980px;
  font-size: 0.9375rem; font-weight: 600;
  text-decoration: none; transition: all 0.2s;
  box-shadow: 0 4px 14px rgba(10,132,255,0.28);
}
.mid-cta .mc-btn:hover { background: var(--buy-hover); transform: translateY(-1px); }
.mid-cta .mc-foot {
  display: block; margin-top: 10px;
  font-size: 0.75rem; color: var(--text-secondary);
}

/* 4. MICRO-CONVERSION CHECKLIST — 3 questions before final CTA. */
.micro-checklist {
  background: var(--surface); border-radius: 14px;
  padding: 22px 24px; margin: 32px 0;
}
.micro-checklist h3 {
  font-size: 1rem; font-weight: 700;
  letter-spacing: -0.01em; margin: 0 0 14px;
  color: var(--text);
}
.micro-checklist ul {
  list-style: none; padding: 0; margin: 0 0 14px;
  display: grid; gap: 10px;
}
.micro-checklist li {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 10px 14px; background: var(--bg);
  border-radius: 10px; border: 1px solid var(--border);
  font-size: 0.9375rem; line-height: 1.45;
}
.micro-checklist li::before {
  content: "?";
  flex-shrink: 0; width: 22px; height: 22px;
  background: var(--accent); color: #fff;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 0.8125rem; font-weight: 800;
  margin-top: 1px;
}
.micro-checklist .mc-foot {
  font-size: 0.8125rem; color: var(--text-secondary);
  text-align: center; margin: 14px 0 0;
}
.micro-checklist .mc-foot strong { color: var(--text); font-weight: 600; }

/* ── LOSS-MATH SCENARIO BOX (tech sprint pages) ── */
.loss-math {
  background: #fff8e6; border: 1px solid #ffe28a;
  border-left: 4px solid #b58300;
  border-radius: 12px; padding: 18px 20px;
  margin: 24px 0;
}
.loss-math .lm-label {
  font-size: 0.6875rem; font-weight: 800;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: #8a6500; margin-bottom: 6px;
}
.loss-math h3 {
  font-size: 1rem; font-weight: 700;
  margin: 0 0 8px; color: #3b2a00;
}
.loss-math p {
  font-size: 0.9375rem; color: #3b2a00; line-height: 1.55; margin: 0 0 6px;
}
.loss-math .lm-total {
  display: block; margin-top: 10px; padding-top: 10px;
  border-top: 1px dashed #c79a00;
  font-size: 1.0625rem; font-weight: 700; color: #3b2a00;
}

/* ── 3-STEP SCRIPT CHECKLIST (tech sprint pages) ── */
.script-steps {
  list-style: none; padding: 0; margin: 24px 0;
  counter-reset: step;
  display: grid; gap: 14px;
}
.script-steps li {
  position: relative; padding: 16px 18px 16px 56px;
  background: var(--bg); border: 1px solid var(--border);
  border-radius: 12px;
  font-size: 0.9375rem; line-height: 1.55;
}
.script-steps li::before {
  counter-increment: step;
  content: counter(step);
  position: absolute; left: 14px; top: 14px;
  width: 30px; height: 30px;
  background: var(--accent); color: #fff;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 0.9375rem; font-weight: 800;
}
.script-steps li strong {
  display: block; color: var(--text); font-weight: 700; margin-bottom: 4px;
}

/* ──────────────────────────────────────────────────────────────
 * V18 — Bundle teaser / AOV nudges (NOT a live checkout).
 * These never link to buy.stripe.com; they route to the
 * /all-career-email-kits comparison + "coming soon" teaser page.
 * Placeholder token for the future Stripe link: STRIPE_ALL_CAREER_KITS_BUNDLE
 * ──────────────────────────────────────────────────────────── */
.bundle-upsell { padding: 4px 0 40px; text-align: center; }
.bundle-upsell .container { max-width: 680px; }
.bundle-upsell .bundle-upsell-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 14px; padding: 18px 22px;
}
.bundle-upsell .bundle-eyebrow {
  font-size: 0.6875rem; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--text-secondary);
}
.bundle-upsell p { font-size: 0.9375rem; color: var(--text-secondary); line-height: 1.55; margin: 6px 0 0; }
.bundle-upsell a.bundle-link { color: var(--accent); text-decoration: none; font-weight: 600; }
.bundle-upsell a.bundle-link:hover { text-decoration: underline; }

/* Homepage bundle teaser band — sits right under the product cards */
.bundle-teaser-band { padding: 28px 0 4px; }
.bundle-teaser-band .container { max-width: 760px; }
.bundle-teaser-band .bundle-band-inner {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 16px; padding: 20px 24px; text-align: center;
}
.bundle-teaser-band .bundle-eyebrow {
  font-size: 0.6875rem; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--text-secondary);
}
.bundle-teaser-band h3 { font-size: 1.125rem; font-weight: 700; letter-spacing: -0.01em; margin: 6px 0 6px; }
.bundle-teaser-band p { font-size: 0.9375rem; color: var(--text-secondary); line-height: 1.55; margin: 0 auto; max-width: 600px; }
.bundle-teaser-band a.bundle-link { color: var(--accent); text-decoration: none; font-weight: 600; }
.bundle-teaser-band a.bundle-link:hover { text-decoration: underline; }

/* Success-page subtle bundle hint (download stays first) */
.bundle-hint { font-size: 0.8125rem; color: var(--text-secondary); line-height: 1.5; margin: 18px auto 4px; max-width: 380px; }
.bundle-hint a { color: var(--accent); text-decoration: none; font-weight: 600; }
.bundle-hint a:hover { text-decoration: underline; }

/* ──────────────────────────────────────────────────────────────
 * V20 — HONEST DIFFERENTIATION ("Why not just use a free AI?")
 * Replaces the former proof band. Calm, factual, no fearmongering.
 * ────────────────────────────────────────────────────────────── */
.ai-compare {
  background: var(--surface); border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border); padding: 40px 24px;
}
.ai-compare .container { max-width: 720px; }
.ai-compare h2 {
  font-size: 1.25rem; font-weight: 700; letter-spacing: -0.02em;
  text-align: center; margin-bottom: 8px;
}
.ai-compare .ac-sub {
  text-align: center; color: var(--text-secondary); font-size: 0.9375rem;
  line-height: 1.55; max-width: 600px; margin: 0 auto 20px;
}
.ai-compare ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.ai-compare li {
  padding: 14px 18px; background: var(--bg); border-radius: 12px;
  font-size: 0.9375rem; color: var(--text-secondary); line-height: 1.55;
  border-left: 2px solid var(--accent);
}
.ai-compare li strong { color: var(--text); font-weight: 600; }

/* ── V20 — AUTHOR BOX (E-E-A-T) ── */
.author-box {
  margin: 40px 0 8px; padding: 16px 20px;
  background: var(--surface); border-radius: 12px;
  border-left: 3px solid var(--accent);
}
.author-box p { font-size: 0.875rem; color: var(--text-secondary); line-height: 1.6; margin: 0; }
.author-box a { color: var(--accent); text-decoration: none; }
.author-box a:hover { text-decoration: underline; }

/* ── V20 — PDF PREVIEW (real page 1 + actual contents) ── */
.pdf-preview {
  display: flex; gap: 24px; align-items: flex-start;
  max-width: 680px; margin: 0 auto 32px; text-align: left;
}
.pdf-preview img {
  width: 240px; height: auto; flex-shrink: 0;
  border: 1px solid var(--border); border-radius: 10px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}
.pdf-contents h4 {
  font-size: 0.9375rem; font-weight: 700; margin-bottom: 10px;
}
.pdf-contents ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 6px; }
.pdf-contents li {
  font-size: 0.8125rem; color: var(--text-secondary); line-height: 1.5;
  padding-left: 18px; position: relative;
}
.pdf-contents li::before {
  content: "\2713"; position: absolute; left: 0;
  color: var(--green); font-weight: 700;
}
@media (max-width: 560px) {
  .pdf-preview { flex-direction: column; align-items: center; }
  .pdf-preview img { width: 200px; }
  .pdf-contents { width: 100%; }
}

/* ── V20 — ENV-GATED REVENUE BLOCKS (render-config.js; nothing renders while null) ── */
.bundle-live { padding: 8px 0 40px; text-align: center; }
.bundle-live .bundle-live-card {
  max-width: 680px; margin: 0 auto; background: var(--surface);
  border: 1px solid var(--border); border-radius: 18px; padding: 28px 26px;
}
.bundle-live h2 { font-size: 1.375rem; font-weight: 700; letter-spacing: -0.02em; margin-bottom: 8px; }
.bundle-live p { color: var(--text-secondary); font-size: 0.9375rem; line-height: 1.55; max-width: 560px; margin: 0 auto 18px; }
.lead-magnet { padding: 40px 24px; background: var(--surface); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); text-align: center; }
.lead-magnet h2 { font-size: 1.25rem; font-weight: 700; letter-spacing: -0.02em; margin-bottom: 6px; }
.lead-magnet p { color: var(--text-secondary); font-size: 0.9375rem; line-height: 1.55; max-width: 540px; margin: 0 auto 16px; }
.lm-form { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; }
.lm-form input[type="email"] {
  padding: 12px 16px; border: 1px solid var(--border); border-radius: 980px;
  font-size: 0.9375rem; min-width: 240px; background: var(--bg); color: var(--text);
}
.lm-form input[type="email"]:focus { outline: 2px solid var(--accent); border-color: transparent; }
.lm-form button {
  padding: 12px 24px; background: var(--buy); color: #fff; border: none;
  border-radius: 980px; font-size: 0.9375rem; font-weight: 600; cursor: pointer;
  transition: background 0.2s;
}
.lm-form button:hover { background: var(--buy-hover); }
