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

:root {
  --bg: #0b0812;
  --surface: rgba(255,255,255,0.04);
  --border: rgba(255,255,255,0.08);
  --border-strong: rgba(255,255,255,0.14);
  --text: #ffffff;
  --muted: rgba(255,255,255,0.45);
  --muted2: rgba(255,255,255,0.25);
  --green: #10b981;
  --green-dim: rgba(16,185,129,0.15);
  --purple-glow: rgba(120,60,220,0.35);
  --teal-glow: rgba(20,180,160,0.25);
  --magenta-glow: rgba(160,40,120,0.30);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.6;
}

/* Background blobs */
.bg-blobs {
  position: fixed; inset: 0; pointer-events: none; z-index: 0; overflow: hidden;
}
.blob {
  position: absolute; border-radius: 50%; filter: blur(120px); opacity: 0.6;
}
.blob-1 { width: 600px; height: 600px; top: -150px; left: -100px; background: var(--purple-glow); }
.blob-2 { width: 500px; height: 500px; top: 100px; right: 0; background: var(--magenta-glow); }
.blob-3 { width: 400px; height: 400px; top: 50%; left: 30%; background: var(--teal-glow); transform: translateY(-50%); }
.blob-4 { width: 500px; height: 500px; bottom: 20%; right: 10%; background: var(--purple-glow); opacity: 0.3; }

/* Layout */
.container { max-width: 1100px; margin: 0 auto; padding: 0 28px; position: relative; z-index: 1; }

/* Nav */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  background: rgba(11,8,18,0.7);
}
.nav-inner {
  max-width: 1100px; margin: 0 auto; padding: 0 28px;
  height: 60px; display: flex; align-items: center; justify-content: space-between;
}
.nav-logo {
  display: flex; align-items: center; gap: 8px; font-weight: 700; font-size: 15px;
  letter-spacing: 0.08em; text-transform: uppercase; color: white; text-decoration: none;
}
.nav-logo-icon {
  width: 32px; height: 32px;
  display: flex; align-items: center; justify-content: center;
  background: transparent;
}
.nav-logo-icon img,
.nav-logo-icon svg { width: 32px; height: 32px; display: block; filter: invert(1); }
.nav-links { display: flex; gap: 32px; }
.nav-links a { color: var(--muted); font-size: 14px; text-decoration: none; transition: color .2s; }
.nav-links a:hover { color: white; }
.nav-cta {
  background: var(--green); color: #fff; font-size: 13px; font-weight: 600;
  padding: 8px 18px; border-radius: 6px; text-decoration: none; transition: opacity .2s;
}
.nav-cta:hover { opacity: 0.85; }

/* Hero */
.hero {
  padding: 160px 0 100px; text-align: center; position: relative;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1px solid rgba(16,185,129,0.3); background: rgba(16,185,129,0.08);
  color: var(--green); font-size: 12px; font-weight: 500; letter-spacing: 0.1em;
  text-transform: uppercase; padding: 6px 14px; border-radius: 100px; margin-bottom: 28px;
}
.hero-eyebrow-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--green); }
h1 {
  font-size: clamp(40px, 6vw, 72px); font-weight: 800; line-height: 1.05;
  letter-spacing: -0.03em; margin-bottom: 20px; max-width: 820px; margin-left: auto; margin-right: auto;
}
h1 em { font-style: normal; color: var(--green); }
.hero-sub {
  font-size: 18px; color: var(--muted); max-width: 520px; margin: 0 auto 44px;
  line-height: 1.65;
}
.hero-input-row {
  display: flex; gap: 0; max-width: 560px; margin: 0 auto 14px;
  border: 1px solid var(--border-strong); border-radius: 10px; overflow: hidden;
  background: rgba(255,255,255,0.05); backdrop-filter: blur(10px);
}
.hero-input {
  flex: 1; background: transparent; border: none; outline: none;
  color: white; font-size: 15px; font-family: 'Inter', sans-serif;
  padding: 16px 18px;
}
.hero-input::placeholder { color: var(--muted2); }
.hero-submit {
  background: var(--green); color: #fff; font-size: 14px; font-weight: 600;
  border: none; cursor: pointer; padding: 0 22px; font-family: 'Inter', sans-serif;
  transition: opacity .2s; white-space: nowrap;
}
.hero-submit:hover { opacity: 0.85; }
.hero-hint { font-size: 12px; color: var(--muted2); margin-bottom: 48px; }
.network-badges {
  display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; margin-bottom: 60px;
}
.badge {
  display: flex; align-items: center; gap: 7px;
  border: 1px solid var(--border); background: var(--surface);
  padding: 6px 14px; border-radius: 100px; font-size: 13px; color: var(--muted);
}
.badge-dot { width: 7px; height: 7px; border-radius: 50%; }

/* Product preview */
.product-preview {
  max-width: 900px; margin: 0 auto;
  border: 1px solid var(--border-strong); border-radius: 14px;
  overflow: hidden; background: rgba(255,255,255,0.03);
  box-shadow: 0 40px 120px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.05);
}
.preview-bar {
  background: rgba(255,255,255,0.04); border-bottom: 1px solid var(--border);
  padding: 12px 18px; display: flex; align-items: center; justify-content: space-between;
}
.preview-dots { display: flex; gap: 6px; }
.preview-dot { width: 10px; height: 10px; border-radius: 50%; background: rgba(255,255,255,0.15); }
.preview-title { font-size: 12px; color: var(--muted2); font-family: monospace; }
.preview-body { display: flex; min-height: 340px; }
.preview-sidebar {
  width: 220px; border-right: 1px solid var(--border); padding: 20px 16px;
  flex-shrink: 0;
}
.preview-big-text {
  font-size: 22px; font-weight: 700; line-height: 1.25; margin-bottom: 14px; color: white;
}
.preview-completed { font-size: 11px; color: var(--muted2); margin-bottom: 12px; }
.preview-stats { display: flex; gap: 8px; margin-bottom: 16px; }
.stat-pill {
  flex: 1; border: 1px solid var(--border); border-radius: 6px; padding: 8px 10px;
}
.stat-num { font-size: 20px; font-weight: 700; }
.stat-label { font-size: 10px; color: var(--muted); text-transform: uppercase; letter-spacing: .08em; }
.stat-green { color: var(--green); }
.source-list { display: flex; flex-direction: column; gap: 8px; margin-bottom: 14px; }
.source-row { display: flex; align-items: center; justify-content: space-between; font-size: 12px; }
.source-name { display: flex; align-items: center; gap: 7px; color: var(--muted); }
.source-dot { width: 7px; height: 7px; border-radius: 50%; }
.source-count { color: var(--muted2); }
.kw-section-label { font-size: 9px; letter-spacing: .12em; text-transform: uppercase; color: var(--muted2); margin-bottom: 8px; }
.kw-section-label--spaced { margin-top: 12px; }
.kw-tags { display: flex; flex-wrap: wrap; gap: 5px; }
.kw-tag {
  font-size: 11px; border: 1px solid var(--border); border-radius: 4px;
  padding: 2px 8px; color: var(--muted);
}
.preview-main { flex: 1; padding: 18px 20px; }
.preview-tabs {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  margin-bottom: 18px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.02);
  border-radius: 999px;
  padding: 4px;
}
.preview-tab {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px;
  padding: 6px 14px;
  border-radius: 999px;
  color: rgba(255,255,255,0.40);
  cursor: default;
  font-weight: 500;
}
.preview-tab.active {
  background: rgba(255,255,255,0.10);
  color: white;
}
.preview-tab-pill,
.preview-tab-count {
  font-size: 11px;
  color: rgba(255,255,255,0.40);
  font-variant-numeric: tabular-nums;
  font-weight: 500;
  background: none;
  padding: 0;
  margin: 0;
  border-radius: 0;
}
.lead-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 20px;
  margin-bottom: 12px;
  background: rgba(255,255,255,0.02);
  text-decoration: none;
  color: inherit;
  transition: background .2s, border-color .2s;
}
.lead-card:hover { background: rgba(255,255,255,0.05); }
/* Rank-1: amber */
.lead-card--rank-1 {
  border-color: rgba(252,211,77,0.40);
  box-shadow: 0 0 32px rgba(252,211,77,0.18);
}
.lead-card--rank-1 .lead-num { color: #fde68a; }
/* Rank-2: zinc */
.lead-card--rank-2 {
  border-color: rgba(228,228,231,0.30);
  box-shadow: 0 0 24px rgba(228,228,231,0.12);
}
.lead-card--rank-2 .lead-num { color: #f4f4f5; }
/* Rank-3: orange */
.lead-card--rank-3 {
  border-color: rgba(251,146,60,0.40);
  box-shadow: 0 0 24px rgba(251,146,60,0.14);
}
.lead-card--rank-3 .lead-num { color: #fdba74; }
/* Rank 4+ / dim */
.lead-card--dim { opacity: 0.55; }

.lead-num {
  flex-shrink: 0;
  width: 40px;
  text-align: center;
  font-size: 24px;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
  color: var(--muted);
  line-height: 1;
  padding-top: 2px;
}
.lead-body {
  flex: 1;
  min-width: 0;
}
.lead-meta {
  display: flex; align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 8px;
}
.lang-badge {
  font-size: 10px; font-weight: 600;
  border: 1px solid rgba(255,255,255,0.12);
  padding: 1px 6px;
  border-radius: 4px;
  color: rgba(255,255,255,0.55);
  letter-spacing: .04em;
}
.src-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  flex-shrink: 0;
}
.source-badge {
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: rgba(255,255,255,0.40);
}
.lead-handle {
  font-size: 11px;
  color: rgba(255,255,255,0.40);
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 220px;
}
.lead-title {
  font-size: 14px;
  font-weight: 600;
  color: white;
  line-height: 1.35;
  margin-bottom: 6px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.lead-snippet {
  font-size: 12px;
  color: rgba(255,255,255,0.40);
  line-height: 1.55;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.lead-score-wrap {
  flex-shrink: 0;
  text-align: right;
}
.lead-score {
  font-size: 24px;
  font-weight: 800;
  color: white;
  font-variant-numeric: tabular-nums;
  min-width: 46px;
  text-align: right;
  line-height: 1;
}
.score-label {
  font-size: 9px;
  color: rgba(255,255,255,0.32);
  text-transform: uppercase;
  letter-spacing: .12em;
  font-weight: 600;
  margin-top: 4px;
}

/* Sections */
section { padding: 100px 0; position: relative; }
.section--bordered { border-top: 1px solid var(--border); }
.section-eyebrow {
  font-size: 11px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase;
  color: var(--green); margin-bottom: 14px;
}
h2 {
  font-size: clamp(28px, 4vw, 44px); font-weight: 800; letter-spacing: -0.02em;
  line-height: 1.1; margin-bottom: 16px;
}
.section-sub { font-size: 16px; color: var(--muted); max-width: 480px; line-height: 1.65; }

/* How it works */
.steps-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2px; margin-top: 56px; }
.step-card {
  background: var(--surface); border: 1px solid var(--border);
  padding: 32px 28px; position: relative; transition: border-color .2s;
}
.step-card:hover { border-color: var(--border-strong); }
.step-card:first-child { border-radius: 12px 0 0 12px; }
.step-card:last-child { border-radius: 0 12px 12px 0; }
.step-num-big {
  font-size: 48px; font-weight: 800; color: rgba(255,255,255,0.06);
  position: absolute; top: 20px; right: 22px; line-height: 1; letter-spacing: -0.04em;
}
.step-icon {
  width: 40px; height: 40px; border-radius: 10px; border: 1px solid var(--border);
  background: var(--surface); display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px; color: var(--green);
}
.step-icon svg { width: 20px; height: 20px; display: block; }
.src-dot { display: inline-block; width: 8px; height: 8px; border-radius: 50%; margin-right: 4px; }
.step-title { font-size: 17px; font-weight: 700; margin-bottom: 8px; }
.step-desc { font-size: 14px; color: var(--muted); line-height: 1.6; }

/* Stats banner */
.stats-banner {
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  padding: 48px 0; position: relative; z-index: 1;
}
.stats-row { display: flex; justify-content: space-around; flex-wrap: wrap; gap: 32px; }
.stat-item { text-align: center; }
.stat-big { font-size: 48px; font-weight: 800; letter-spacing: -0.03em; color: white; }
.stat-big--green { color: var(--green); }
.stat-sub { font-size: 14px; color: var(--muted); margin-top: 4px; }

/* Pricing */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 1040px;
  margin-top: 44px;
  align-items: stretch;
}
.pricing-card {
  position: relative;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 32px 28px;
  display: flex; flex-direction: column; gap: 18px;
  background: var(--surface);
  transition: border-color .2s, transform .2s, box-shadow .2s;
}
.pricing-card:hover {
  border-color: var(--border-strong);
  transform: translateY(-2px);
  box-shadow: 0 18px 50px rgba(0,0,0,0.35);
}
.pricing-card.featured {
  border-color: rgba(245,158,11,0.45);
  background: linear-gradient(180deg, rgba(245,158,11,0.06), rgba(255,255,255,0.02));
  box-shadow: 0 0 0 1px rgba(245,158,11,0.18), 0 30px 70px rgba(0,0,0,0.4);
}
.pricing-card--violet {
  border-color: rgba(167,139,250,0.45);
  background: linear-gradient(180deg, rgba(139,92,246,0.08), rgba(255,255,255,0.02));
  box-shadow: 0 0 0 1px rgba(139,92,246,0.18), 0 30px 70px rgba(0,0,0,0.4);
}
.pricing-badge {
  position: absolute;
  top: -10px; left: 24px;
  font-size: 10px; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 999px;
}
.pricing-badge--amber {
  background: #f59e0b; color: #fff;
}
.pricing-badge--violet {
  background: #a78bfa; color: #1a1230;
}
.pricing-header { display: flex; flex-direction: column; gap: 4px; }
.pricing-plan {
  font-size: 12px; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--muted);
}
.pricing-card.featured .pricing-plan { color: #f59e0b; }
.pricing-card--violet .pricing-plan { color: #a78bfa; }
.pricing-price {
  font-size: 40px; font-weight: 800;
  letter-spacing: -0.03em; line-height: 1;
}
.pricing-price span {
  font-size: 16px; font-weight: 500;
  color: var(--muted);
}
.pricing-price--mt { margin-top: 8px; }
.pricing-price-sub {
  font-size: 13px;
  color: rgba(255,255,255,0.62);
  margin-top: 6px;
}
.pricing-price-sub--solid { min-height: 0; }
.pricing-features {
  list-style: none;
  display: flex; flex-direction: column;
  gap: 10px;
  flex: 1;
}
.pricing-features--tight { margin-top: 4px; }
.pricing-features li {
  font-size: 13.5px;
  color: rgba(255,255,255,0.78);
  display: flex; align-items: flex-start; gap: 10px;
  line-height: 1.45;
}
.pricing-features li::before {
  content: '';
  display: block;
  width: 14px; height: 14px;
  margin-top: 2px;
  background: var(--green-dim);
  border: 1px solid var(--green);
  border-radius: 50%;
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 10 10'%3E%3Cpath d='M2 5l2.5 2.5L8 3' stroke='%2310b981' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}
.pricing-card--violet .pricing-features li::before {
  background: rgba(139,92,246,0.18);
  border-color: #a78bfa;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 10 10'%3E%3Cpath d='M2 5l2.5 2.5L8 3' stroke='%23a78bfa' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
}
.pricing-cta {
  display: block; text-align: center;
  border-radius: 8px; padding: 13px;
  font-size: 14px; font-weight: 600;
  text-decoration: none;
  transition: opacity .2s, background .2s;
  background: rgba(255,255,255,0.06);
  color: white;
  border: 1px solid var(--border-strong);
}
.pricing-cta:hover { background: rgba(255,255,255,0.10); }
.pricing-cta--featured {
  background: #f59e0b; color: #fff; border-color: transparent;
}
.pricing-cta--featured:hover { background: #fbbf24; }
.pricing-cta--violet {
  background: #a78bfa; color: #1a1230; border-color: transparent;
}
.pricing-cta--violet:hover { background: #b9a4fc; }
.pricing-aside {
  margin-top: 32px;
  text-align: center;
  font-size: 14px;
  color: var(--muted);
}
.pricing-aside a {
  color: var(--green);
  text-decoration: none;
  font-weight: 600;
  border-bottom: 1px solid rgba(16,185,129,0.35);
  padding-bottom: 1px;
}
.pricing-aside a:hover { border-bottom-color: var(--green); }

/* Blog */
.blog-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-top: 52px; }
.blog-card {
  border: 1px solid var(--border); border-radius: 12px; overflow: hidden;
  background: var(--surface); transition: border-color .2s, transform .2s, box-shadow .2s;
  cursor: pointer; color: inherit; text-decoration: none;
}
.blog-card:hover {
  border-color: var(--border-strong);
  transform: translateY(-3px);
  box-shadow: 0 22px 50px rgba(0,0,0,0.22);
}
.blog-thumb {
  height: 180px;
  border-bottom: 1px solid var(--border);
  display: flex; align-items: flex-start; justify-content: flex-start; position: relative;
  padding: 18px; background-size: cover; background-position: center;
  background-repeat: no-repeat; isolation: isolate;
}
.blog-thumb::after {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(8,8,12,0.08) 0%, rgba(8,8,12,0.42) 100%),
    linear-gradient(135deg, rgba(255,255,255,0.05), transparent 55%);
  z-index: -1;
}
.blog-thumb-label {
  font-size: 11px; font-family: monospace; text-transform: uppercase; letter-spacing: .12em;
  color: rgba(255,255,255,0.85); border: 1px solid rgba(255,255,255,0.16);
  background: rgba(11,8,18,0.55); border-radius: 999px; padding: 8px 10px;
}
.blog-thumb-1 { background-image: url("content/blog/assets/how-to-find-your-first-10-customers-without-a-following-cover.svg"); }
.blog-thumb-2 { background-image: url("content/blog/assets/icp-research-is-broken-cover.svg"); }
.blog-thumb-3 { background-image: url("content/blog/assets/we-ran-gorilla-on-r-saas-cover.svg"); }
.blog-thumb-100     { background-image: url("content/blog/assets/where-first-100-users-hide-cover.svg"); }
.blog-thumb-tiktok  { background-image: url("content/blog/assets/tiktok-lead-generation-saas-cover.svg"); }
.blog-thumb-youtube { background-image: url("content/blog/assets/youtube-comments-saas-leads-cover.svg"); }
.blog-content { padding: 22px; }
.blog-tag {
  font-size: 11px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase;
  color: var(--green); margin-bottom: 10px; display: block;
}
.blog-title { font-size: 16px; font-weight: 700; line-height: 1.4; margin-bottom: 10px; }
.blog-excerpt { font-size: 13px; color: var(--muted); line-height: 1.6; margin-bottom: 16px; }
.blog-meta { font-size: 12px; color: var(--muted2); }
.blog-viewall { margin-top: 28px; display: flex; justify-content: flex-end; }
.blog-viewall-link {
  display: inline-flex; align-items: center; gap: 8px; color: white; text-decoration: none;
  font-size: 13px; font-weight: 600; letter-spacing: .04em; text-transform: uppercase;
  padding: 12px 16px; border-radius: 999px; border: 1px solid var(--border);
  background: rgba(255,255,255,0.03); transition: border-color .2s, background .2s, transform .2s;
}
.blog-viewall-link:hover {
  border-color: var(--border-strong);
  background: rgba(255,255,255,0.06);
  transform: translateX(2px);
}

.blog-library {
  margin-top: 52px;
  display: grid;
  gap: 26px;
}
.blog-article,
.blog-queue-card {
  scroll-margin-top: 88px;
}
.blog-article {
  border: 1px solid var(--border);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.02)),
    rgba(255,255,255,0.02);
  padding: 34px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.16);
}
.blog-article-header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 250px;
  gap: 26px;
  align-items: start;
  margin-bottom: 30px;
}
.blog-article-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}
.blog-article-meta-text {
  font-size: 12px;
  color: var(--muted2);
  letter-spacing: .08em;
  text-transform: uppercase;
}
.blog-article h3,
.blog-queue-card h3 {
  font-size: 34px;
  line-height: 1.15;
  margin-bottom: 14px;
}
.blog-article-lead {
  max-width: 780px;
  font-size: 17px;
  line-height: 1.8;
  color: rgba(255,255,255,0.78);
}
.blog-article-stats {
  display: grid;
  gap: 12px;
}
.blog-stat {
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 16px 18px;
  background: rgba(255,255,255,0.03);
}
.blog-stat-num {
  display: block;
  font-size: 28px;
  line-height: 1;
  font-weight: 800;
  color: var(--green);
  margin-bottom: 6px;
}
.blog-stat-label {
  display: block;
  font-size: 11px;
  color: var(--muted);
  letter-spacing: .08em;
  text-transform: uppercase;
}
.blog-article-body {
  max-width: 820px;
}
.blog-article-body h4 {
  font-size: 22px;
  line-height: 1.3;
  margin: 28px 0 12px;
}
.blog-article-body p,
.blog-queue-card p {
  font-size: 15px;
  color: rgba(255,255,255,0.76);
  line-height: 1.9;
}
.blog-article-body ul,
.blog-article-body ol,
.blog-queue-card ul {
  margin: 14px 0 0 20px;
  color: rgba(255,255,255,0.82);
}
.blog-article-body li,
.blog-queue-card li {
  margin-bottom: 10px;
  line-height: 1.8;
}
.blog-quote {
  margin: 26px 0;
  padding: 20px 22px;
  border-left: 3px solid var(--green);
  background: rgba(16,185,129,0.08);
  border-radius: 0 14px 14px 0;
  color: rgba(255,255,255,0.86);
  font-size: 15px;
  line-height: 1.8;
}
.blog-inline-cta {
  margin-top: 28px;
  border: 1px solid rgba(16,185,129,0.22);
  border-radius: 18px;
  padding: 22px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  background: linear-gradient(135deg, rgba(16,185,129,0.12), rgba(124,58,237,0.10));
}
.blog-inline-cta-title {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 6px;
}
.blog-inline-cta-copy {
  font-size: 14px;
  color: rgba(255,255,255,0.72);
  line-height: 1.7;
}
.blog-inline-cta-link,
.blog-queue-link {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(11,8,18,0.58);
  color: white;
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  transition: border-color .2s, background .2s, transform .2s;
}
.blog-inline-cta-link:hover,
.blog-queue-link:hover {
  border-color: rgba(255,255,255,0.24);
  background: rgba(255,255,255,0.08);
  transform: translateY(-1px);
}
.blog-queue-card {
  border: 1px dashed rgba(255,255,255,0.16);
  border-radius: 18px;
  padding: 30px 32px;
  background:
    linear-gradient(180deg, rgba(181,23,158,0.08), rgba(255,255,255,0.02)),
    rgba(255,255,255,0.02);
}
.blog-queue-meta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  color: rgba(255,255,255,0.72);
  letter-spacing: .12em;
  text-transform: uppercase;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 999px;
  padding: 8px 10px;
  margin-bottom: 16px;
}
.blog-queue-card h3 {
  max-width: 760px;
}
.blog-queue-card p {
  max-width: 760px;
  margin-bottom: 12px;
}

/* API section */
.api-card {
  margin-top: 44px;
  border: 1px solid var(--border-strong);
  border-radius: 12px;
  background: rgba(255,255,255,0.03);
  overflow: hidden;
  max-width: 720px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.4), 0 0 0 1px rgba(255,255,255,0.04);
}
.api-code {
  display: block;
  padding: 24px 28px;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 13px;
  line-height: 1.7;
  color: rgba(255,255,255,0.82);
  white-space: pre;
  overflow-x: auto;
  letter-spacing: 0.01em;
}
.api-foot {
  margin-top: 22px;
  font-size: 14px;
  color: var(--muted);
}
.api-foot a {
  color: var(--green);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}
.api-foot a:hover { opacity: 0.85; }

/* FAQ */
.faq-list { max-width: 700px; margin-top: 52px; }
.faq-item { border-bottom: 1px solid var(--border); padding: 22px 0; cursor: pointer; }
.faq-q { font-size: 16px; font-weight: 600; display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.faq-icon { color: var(--muted); font-size: 20px; flex-shrink: 0; transition: transform .25s; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-a { font-size: 14px; color: var(--muted); line-height: 1.7; max-height: 0; overflow: hidden; transition: max-height .3s ease, padding .3s; }
.faq-item.open .faq-a { max-height: 200px; padding-top: 12px; }

/* CTA banner */
.cta-banner {
  margin: 0; padding: 100px 0; text-align: center;
  border-top: 1px solid var(--border); position: relative; z-index: 1;
}
.cta-banner h2 { max-width: 640px; margin: 0 auto 16px; }
.cta-banner p { color: var(--muted); font-size: 16px; margin-bottom: 36px; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.btn-primary {
  background: var(--green); color: #fff; font-size: 15px; font-weight: 600;
  padding: 14px 32px; border-radius: 8px; text-decoration: none; transition: opacity .2s;
}
.btn-primary:hover { opacity: 0.85; }
.btn-ghost {
  background: transparent; color: white; font-size: 15px; font-weight: 500;
  padding: 14px 32px; border-radius: 8px; text-decoration: none;
  border: 1px solid var(--border-strong); transition: border-color .2s, background .2s;
}
.btn-ghost:hover { border-color: rgba(255,255,255,0.32); background: rgba(255,255,255,0.04); }

/* Footer */
footer { border-top: 1px solid var(--border); padding: 48px 0 32px; position: relative; z-index: 1; }
.footer-inner {
  display: flex; justify-content: space-between; align-items: flex-start;
  flex-wrap: wrap; gap: 40px; margin-bottom: 48px;
}
.footer-brand { max-width: 240px; }
.footer-logo { display: flex; align-items: center; gap: 8px; font-size: 14px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; margin-bottom: 12px; }
.footer-tagline { font-size: 13px; color: var(--muted); line-height: 1.6; }
.footer-col h4 { font-size: 12px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); margin-bottom: 16px; }
.footer-col a { display: block; font-size: 14px; color: var(--muted); text-decoration: none; margin-bottom: 10px; transition: color .2s; }
.footer-col a:hover { color: white; }
.footer-bottom { padding-top: 24px; border-top: 1px solid var(--border); display: flex; justify-content: space-between; font-size: 12px; color: var(--muted2); flex-wrap: wrap; gap: 12px; }

/* Responsive */
@media (max-width: 880px) {
  .nav-links { display: none; }
  .steps-grid { grid-template-columns: 1fr; gap: 12px; }
  .step-card:first-child,
  .step-card:last-child { border-radius: 12px; }
  .pricing-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .blog-article { padding: 24px; }
  .blog-article-header { grid-template-columns: 1fr; }
  .blog-article h3,
  .blog-queue-card h3 { font-size: 28px; }
  .blog-inline-cta { flex-direction: column; align-items: flex-start; }
  .blog-inline-cta-link,
  .blog-queue-link { width: 100%; }
  .blog-queue-card { padding: 24px; }
  .preview-sidebar { display: none; }
}
