/* ──────────────────────────────────────────────────────────────────────────
   Blog post — newsletter + consultation CTA, rebranded to the main Genovaflow
   palette (dark ink + frost + orange) as glassy panels, matching the all-posts
   page. Scoped to .bp-* so it only restyles these two sections, leaving the
   rest of the article untouched. Loaded by blog-post.html + blog-post-commands.html.
   ────────────────────────────────────────────────────────────────────────── */
:root {
  --bp-ink: #0A0908;
  --bp-frost: #F4F1EB;
  --bp-frost-dim: #C9C3B8;
  --bp-frost-mute: #6A6359;
  --bp-orange: #FF6A1A;
  --bp-line: rgba(244, 241, 235, 0.08);
  --bp-line-strong: rgba(244, 241, 235, 0.14);
}
.bp-wrap {
  max-width: 860px;
  margin: 8px auto 0;
  padding: 0 20px 24px;
}
.bp-panel {
  position: relative;
  overflow: hidden;
  text-align: center;
  border: 1px solid var(--bp-line-strong);
  border-radius: 22px;
  padding: 44px 36px;
  margin: 28px 0 0;
  background: linear-gradient(180deg, rgba(31, 27, 22, 0.6) 0%, rgba(20, 17, 13, 0.55) 100%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  backdrop-filter: blur(16px) saturate(140%);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(244, 241, 235, 0.05);
}
.bp-panel-cta {
  background:
    radial-gradient(130% 150% at 50% 0%, rgba(255, 106, 26, 0.16), transparent 58%),
    linear-gradient(180deg, rgba(31, 27, 22, 0.6) 0%, rgba(20, 17, 13, 0.55) 100%);
}
.bp-kicker {
  display: inline-block;
  font-family: "Geist Mono", monospace;
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--bp-orange);
  margin-bottom: 12px;
}
.bp-panel h3, .bp-panel h2 {
  font-family: "Geist", sans-serif;
  color: var(--bp-frost);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.02;
  margin: 0 0 12px;
}
.bp-panel h3 { font-size: clamp(24px, 3vw, 34px); }
.bp-panel h2 { font-size: clamp(28px, 3.6vw, 46px); }
.bp-panel p {
  color: var(--bp-frost-dim);
  font-size: 15px;
  line-height: 1.6;
  max-width: 560px;
  margin: 0 auto 26px;
}
.bp-accent { color: var(--bp-orange); }
.bp-form { display: flex; gap: 10px; max-width: 500px; margin: 0 auto; }
.bp-form input {
  flex: 1;
  background: rgba(244, 241, 235, 0.05);
  border: 1px solid var(--bp-line);
  border-radius: 999px;
  padding: 13px 18px;
  color: var(--bp-frost);
  font-family: "Geist", sans-serif;
  font-size: 14px;
  box-sizing: border-box;
}
.bp-form input::placeholder { color: var(--bp-frost-mute); }
.bp-form input:focus { outline: none; border-color: var(--bp-orange); background: rgba(244, 241, 235, 0.07); }
.bp-form button {
  background: var(--bp-orange) !important;
  color: var(--bp-ink) !important;
  border: none !important;
  border-radius: 999px !important;
  padding: 13px 26px !important;
  font-family: "Geist", sans-serif !important;
  font-weight: 600 !important;
  font-size: 14px !important;
  cursor: pointer;
  white-space: nowrap;
  box-shadow: 0 6px 18px rgba(255, 106, 26, 0.32);
  transition: transform 0.2s ease;
  opacity: 1 !important;
  pointer-events: auto !important;
}
.bp-form button:hover { transform: translateY(-1px); }
.bp-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--bp-orange);
  color: var(--bp-ink);
  text-decoration: none;
  border-radius: 999px;
  padding: 14px 28px;
  font-family: "Geist", sans-serif;
  font-weight: 600;
  font-size: 15px;
  box-shadow: 0 8px 24px rgba(255, 106, 26, 0.32);
  transition: transform 0.2s ease;
}
.bp-btn:hover { transform: translateY(-2px); }
@media (max-width: 560px) {
  .bp-form { flex-direction: column; }
  .bp-panel { padding: 30px 20px; }
}

/* Breathing room so the "Related Posts" block isn't crammed against the
   Share section that now precedes it (order: CTA → Newsletter → Share → Related). */
.share-options { margin-bottom: 12px; }
.related-posts { margin-top: 64px !important; }
@media (max-width: 560px) {
  .related-posts { margin-top: 44px !important; }
}
