/*
Theme Name: Bodholdt Labs
Theme URI: https://labs.bodholdtspeedtesting.com
Author: Bodholdt Labs
Author URI: https://labs.bodholdtspeedtesting.com
Description: Cyberpunk dark theme for the Bodholdt Labs plugin shop. Glassmorphism, neon accents, interactive particles, and micro-interactions.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 7.4
License: Proprietary
License URI: https://labs.bodholdtspeedtesting.com/license
Text Domain: bodholdt-labs
*/

/* ============================================================
   CSS RESET & VARIABLES
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --neon-red: #E81123;
  --neon-orange: #FF8C00;
  --neon-yellow: #FDF250;
  --neon-lime: #BAD80A;
  --neon-green: #459C51;
  --neon-teal: #4FAF96;
  --neon-cyan: #00BCF2;
  --neon-blue: #00188F;
  --neon-pink: #D82E8A;
  --neon-purple: #68217A;
  --neon-emerald: #00d084;
  --neon-amber: #FF9F1C;
  --neon-violet: #9B5DE5;

  --bg-primary: #0a0a0f;
  --bg-secondary: #111118;
  --bg-card: rgba(255, 255, 255, 0.03);
  --bg-glass: rgba(255, 255, 255, 0.05);
  --border-glass: rgba(255, 255, 255, 0.08);
  --text-primary: #f0f0f5;
  --text-secondary: rgba(240, 240, 245, 0.65);
  --text-muted: rgba(240, 240, 245, 0.4);

  --font-heading: 'Space Grotesk', sans-serif;
  --font-body: 'Inter', sans-serif;

  --section-pad: clamp(60px, 10vw, 120px);
  --container-max: 1200px;

  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out-back: cubic-bezier(0.34, 1.56, 0.64, 1);
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  background: var(--bg-primary);
  color: var(--text-primary);
  overflow-x: hidden;
  line-height: 1.7;
}

a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
img { max-width: 100%; display: block; }

::selection {
  background: var(--neon-cyan);
  color: var(--bg-primary);
}

::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg-primary); }
::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--neon-cyan), var(--neon-purple));
  border-radius: 4px;
}

/* ============================================================
   UTILITY
   ============================================================ */
.bl-container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

/* v10.17.4: wider container for /buy-plugins/ specifically so the
   [cls_pricing_page] shortcode's comparison table + 4-column card row have
   room to breathe. Default --container-max is 1200px; this widens to 1340px
   to match the pricing shortcode's own internal wrap. Other pages continue
   using .bl-container. */
.bl-container-wide {
  max-width: 1340px;
  margin: 0 auto;
  padding: 0 24px;
}

.bl-section-label {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--neon-cyan);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.bl-section-label::before {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--neon-cyan);
}
.bl-section-label--center {
  justify-content: center;
}
.bl-section-label--center::before { display: none; }

.bl-section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 16px;
}

.bl-section-subtitle {
  color: var(--text-secondary);
  font-size: 1.05rem;
  max-width: 560px;
  line-height: 1.7;
}

/* Reveal */
.bl-reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
}
.bl-reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.bl-reveal-delay-1 { transition-delay: 0.1s; }
.bl-reveal-delay-2 { transition-delay: 0.2s; }
.bl-reveal-delay-3 { transition-delay: 0.3s; }
.bl-reveal-delay-4 { transition-delay: 0.4s; }
.bl-reveal-delay-5 { transition-delay: 0.5s; }

@media (prefers-reduced-motion: reduce) {
  .bl-reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
}

/* ============================================================
   PARTICLE CANVAS
   ============================================================ */
#bl-particle-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.bl-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0 24px;
  transition: background 0.4s, box-shadow 0.4s, backdrop-filter 0.4s;
}
.bl-nav.scrolled {
  background: rgba(10, 10, 15, 0.85);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  box-shadow: 0 1px 0 var(--border-glass), 0 8px 32px rgba(0,0,0,0.4);
}

.bl-nav__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.bl-nav__logo {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 10px;
}
.bl-nav__logo-icon {
  height: 40px;
  width: auto;
  object-fit: contain;
  display: block;
  flex-shrink: 0;
}
.bl-nav__logo-text {
  background: linear-gradient(90deg, var(--text-primary) 0%, var(--neon-cyan) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.bl-nav__logo-suffix {
  font-weight: 400;
  opacity: 0.5;
  -webkit-text-fill-color: var(--text-secondary);
}

.bl-nav__links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}
.bl-nav__links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  position: relative;
  padding: 4px 0;
  transition: color 0.3s;
}
.bl-nav__links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--neon-cyan);
  border-radius: 1px;
  transition: width 0.3s var(--ease-out-expo);
  box-shadow: 0 0 8px var(--neon-cyan);
}
.bl-nav__links a:hover,
.bl-nav__links a.active {
  color: var(--text-primary);
}
.bl-nav__links a:hover::after,
.bl-nav__links a.active::after {
  width: 100%;
}

.bl-nav__right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.bl-nav__cta {
  font-size: 0.85rem;
  font-weight: 600;
  padding: 10px 24px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--neon-cyan), var(--neon-blue));
  color: #fff;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s var(--ease-out-back), box-shadow 0.3s;
  display: inline-block;
}
.bl-nav__cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(0, 188, 242, 0.35);
}
.bl-nav__cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.15), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}
.bl-nav__cta:hover::before { opacity: 1; }

/* Account icon */
.bl-nav__account {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  border: 1px solid var(--border-subtle);
  color: var(--text-secondary);
  transition: color 0.3s, border-color 0.3s, background 0.3s;
}
.bl-nav__account svg {
  width: 18px;
  height: 18px;
}
.bl-nav__account:hover {
  color: var(--neon-cyan);
  border-color: var(--neon-cyan);
  background: rgba(0, 188, 242, 0.06);
}


/* Hamburger */
.bl-nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  z-index: 1001;
}
.bl-nav__hamburger span {
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.bl-nav__hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.bl-nav__hamburger.open span:nth-child(2) { opacity: 0; }
.bl-nav__hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile overlay */
.bl-mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(10, 10, 15, 0.97);
  backdrop-filter: blur(30px);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s;
}
.bl-mobile-menu.open {
  opacity: 1;
  pointer-events: auto;
}
.bl-mobile-menu a {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--text-secondary);
  transition: color 0.3s;
}
.bl-mobile-menu a:hover { color: var(--neon-cyan); }

@media (max-width: 768px) {
  .bl-nav__links, .bl-nav__right { display: none; }
  .bl-nav__hamburger { display: flex; }
  .bl-mobile-menu { display: flex; }
}

/* ============================================================
   HERO
   ============================================================ */
.bl-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 72px;
  overflow: hidden;
}

.bl-hero__grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 188, 242, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 188, 242, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, black, transparent);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, black, transparent);
}

.bl-hero__glow {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.15;
  pointer-events: none;
}
.bl-hero__glow--1 { top: -100px; right: -100px; background: var(--neon-cyan); }
.bl-hero__glow--2 { bottom: -200px; left: -100px; background: var(--neon-purple); }
.bl-hero__glow--3 { top: 30%; left: 40%; width: 400px; height: 400px; background: var(--neon-pink); opacity: 0.07; }

.bl-hero__content {
  position: relative;
  z-index: 2;
  max-width: 720px;
}

.bl-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px 6px 8px;
  border-radius: 100px;
  background: var(--bg-glass);
  border: 1px solid var(--border-glass);
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-secondary);
  margin-bottom: 28px;
  backdrop-filter: blur(10px);
  animation: bl-fadeInUp 0.8s var(--ease-out-expo) both;
}
.bl-hero__badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--neon-green);
  box-shadow: 0 0 8px var(--neon-green);
  animation: bl-pulse-dot 2s infinite;
}
@keyframes bl-pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.bl-hero__title {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  font-weight: 700;
  line-height: 1.08;
  margin-bottom: 24px;
  animation: bl-fadeInUp 0.8s 0.1s var(--ease-out-expo) both;
}
.bl-hero__title .gradient-text {
  background: linear-gradient(135deg, var(--neon-cyan) 0%, var(--neon-teal) 30%, var(--neon-lime) 60%, var(--neon-yellow) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.bl-hero__desc {
  font-size: 1.15rem;
  color: var(--text-secondary);
  line-height: 1.8;
  max-width: 540px;
  margin-bottom: 40px;
  animation: bl-fadeInUp 0.8s 0.2s var(--ease-out-expo) both;
}

.bl-hero__actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  animation: bl-fadeInUp 0.8s 0.3s var(--ease-out-expo) both;
}

/* Buttons */
.bl-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 12px;
  font-size: 0.95rem;
  font-weight: 600;
  transition: transform 0.3s var(--ease-out-back), box-shadow 0.4s;
  position: relative;
  overflow: hidden;
}
.bl-btn::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  opacity: 0;
  transition: opacity 0.3s;
}
.bl-btn:hover { transform: translateY(-2px); }
.bl-btn:active { transform: translateY(0) scale(0.98); }

.bl-btn .ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  transform: scale(0);
  animation: bl-ripple 0.6s linear;
  pointer-events: none;
}
@keyframes bl-ripple {
  to { transform: scale(4); opacity: 0; }
}

.bl-btn--primary {
  background: linear-gradient(135deg, var(--neon-cyan), #0090c0);
  color: #fff;
  box-shadow: 0 4px 24px rgba(0, 188, 242, 0.25);
}
.bl-btn--primary:hover {
  box-shadow: 0 8px 40px rgba(0, 188, 242, 0.4);
}
.bl-btn--primary::after {
  background: linear-gradient(135deg, rgba(255,255,255,0.15), transparent);
}
.bl-btn--primary:hover::after { opacity: 1; }

.bl-btn--ghost {
  background: var(--bg-glass);
  border: 1px solid var(--border-glass);
  color: var(--text-primary);
  backdrop-filter: blur(10px);
}
.bl-btn--ghost:hover {
  border-color: rgba(255,255,255,0.15);
  box-shadow: 0 4px 24px rgba(255,255,255,0.05);
  background: rgba(255,255,255,0.07);
}

.bl-hero__stats {
  display: flex;
  gap: 40px;
  margin-top: 56px;
  animation: bl-fadeInUp 0.8s 0.4s var(--ease-out-expo) both;
}
.bl-hero__stat-value {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text-primary);
}
.bl-hero__stat-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 4px;
}

/* Floating cards */
.bl-hero__showcase {
  position: absolute;
  right: -40px;
  top: 50%;
  transform: translateY(-50%);
  width: 480px;
  height: 690px;
  z-index: 1;
  animation: bl-fadeInRight 1s 0.5s var(--ease-out-expo) both;
}

.bl-floating-card {
  position: absolute;
  border-radius: 16px;
  background: var(--bg-glass);
  border: 1px solid var(--border-glass);
  backdrop-filter: blur(20px);
  padding: 20px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
  animation: bl-float 6s ease-in-out infinite;
}
/* Staggered, non-overlapping positions for all five cards. Tops are
   spaced by each card's measured height + a ~22px gap; the float animation
   only moves cards upward (0 → -12px), so the gaps never collapse. */
.bl-floating-card:nth-child(1) { top: 0;     right: 40px; width: 250px; animation-delay: 0s; }
.bl-floating-card:nth-child(2) { top: 147px; right: 0;    width: 250px; animation-delay: -1.2s; }
.bl-floating-card:nth-child(3) { top: 293px; right: 70px; width: 250px; animation-delay: -2.4s; }
.bl-floating-card:nth-child(4) { top: 437px; right: 10px; width: 250px; animation-delay: -3.6s; }
.bl-floating-card:nth-child(5) { top: 561px; right: 60px; width: 250px; animation-delay: -4.8s; }

.bl-floating-card__header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}
.bl-floating-card__icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}
.bl-floating-card__name {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
}
.bl-floating-card__meta {
  font-size: 0.75rem;
  color: var(--text-muted);
}
.bl-floating-card__bar {
  height: 4px;
  border-radius: 2px;
  background: rgba(255,255,255,0.06);
  margin-top: 10px;
  overflow: hidden;
}
.bl-floating-card__bar-fill {
  height: 100%;
  border-radius: 2px;
  width: 0;
  transition: width 1.5s var(--ease-out-expo);
}

@keyframes bl-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
@keyframes bl-fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes bl-fadeInRight {
  from { opacity: 0; transform: translate(40px, -50%); }
  to { opacity: 1; transform: translate(0, -50%); }
}

@media (max-width: 1024px) {
  .bl-hero__showcase { display: none; }
}
@media (max-width: 600px) {
  .bl-hero__stats { gap: 24px; }
  .bl-hero__stat-value { font-size: 1.4rem; }
}

/* ============================================================
   SOCIAL PROOF
   ============================================================ */
.bl-social-proof {
  position: relative;
  z-index: 2;
  padding: 48px 0;
  border-top: 1px solid var(--border-glass);
  border-bottom: 1px solid var(--border-glass);
  background: rgba(255,255,255,0.01);
}
.bl-social-proof__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}
.bl-social-proof__label {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 600;
  white-space: nowrap;
}
.bl-social-proof__logos {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
  justify-content: center;
}
.bl-social-proof__logo {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-muted);
  opacity: 0.4;
  transition: opacity 0.3s;
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}
.bl-social-proof__logo:hover { opacity: 0.7; }

/* ============================================================
   PLUGINS
   ============================================================ */
.bl-plugins {
  position: relative;
  z-index: 2;
  padding: var(--section-pad) 0;
}

.bl-plugins__header {
  text-align: center;
  margin-bottom: 64px;
}
.bl-plugins__header .bl-section-subtitle { margin: 0 auto; }

.bl-plugins__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 24px;
}

.bl-plugin-card {
  position: relative;
  border-radius: 20px;
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  padding: 32px;
  transition: transform 0.4s var(--ease-out-expo), box-shadow 0.4s, border-color 0.4s;
  overflow: hidden;
  cursor: pointer;
  transform-style: preserve-3d;
  will-change: transform;
}
.bl-plugin-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(600px circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(0, 188, 242, 0.06), transparent 40%);
  opacity: 0;
  transition: opacity 0.4s;
  pointer-events: none;
}
.bl-plugin-card:hover::before { opacity: 1; }
.bl-plugin-card:hover {
  border-color: rgba(0, 188, 242, 0.15);
  box-shadow: 0 16px 48px rgba(0,0,0,0.3), 0 0 0 1px rgba(0, 188, 242, 0.1);
}

.bl-plugin-card__glow {
  position: absolute;
  top: -1px;
  left: 20%;
  right: 20%;
  height: 1px;
  opacity: 0;
  transition: opacity 0.4s;
}
.bl-plugin-card:hover .bl-plugin-card__glow { opacity: 1; }

.bl-plugin-card__icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
  position: relative;
}
.bl-plugin-card__icon::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(255,255,255,0.15), transparent);
}

.bl-plugin-card__tag {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 6px;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 14px;
}

.bl-plugin-card__name {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.bl-plugin-card__desc {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 24px;
}

.bl-plugin-card__features {
  list-style: none;
  margin-bottom: 28px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.bl-plugin-card__features li {
  font-size: 0.85rem;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 10px;
}
.bl-plugin-card__check {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.6rem;
  flex-shrink: 0;
}

.bl-plugin-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 20px;
  border-top: 1px solid var(--border-glass);
}

.bl-plugin-card__price {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
}
.bl-plugin-card__price .period {
  font-size: 0.8rem;
  font-weight: 400;
  color: var(--text-muted);
}

.bl-plugin-card__btn {
  padding: 10px 24px;
  border-radius: 10px;
  font-size: 0.85rem;
  font-weight: 600;
  transition: transform 0.3s var(--ease-out-back), box-shadow 0.3s, background 0.3s;
  position: relative;
  overflow: hidden;
  display: inline-block;
}
.bl-plugin-card__btn:hover { transform: translateY(-2px); }

@media (max-width: 600px) {
  .bl-plugins__grid { grid-template-columns: 1fr; }
}

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.bl-hiw {
  position: relative;
  z-index: 2;
  padding: var(--section-pad) 0;
  background: linear-gradient(180deg, transparent, rgba(0, 188, 242, 0.02) 50%, transparent);
}

.bl-hiw__header {
  text-align: center;
  margin-bottom: 72px;
}
.bl-hiw__header .bl-section-subtitle { margin: 0 auto; }

.bl-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  position: relative;
}
.bl-steps::before {
  content: '';
  position: absolute;
  top: 44px;
  left: 14%;
  right: 14%;
  height: 2px;
  background: linear-gradient(90deg, var(--neon-cyan), var(--neon-teal), var(--neon-lime), var(--neon-yellow));
  opacity: 0.15;
}

.bl-step { text-align: center; position: relative; }

.bl-step__number {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  transition: transform 0.3s var(--ease-out-back), box-shadow 0.3s;
}
.bl-step:hover .bl-step__number { transform: scale(1.1); }

.bl-step__icon { font-size: 1.4rem; margin-bottom: 4px; }

.bl-step__title {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.bl-step__desc {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

@media (max-width: 768px) {
  .bl-steps { grid-template-columns: 1fr 1fr; gap: 40px; }
  .bl-steps::before { display: none; }
}
@media (max-width: 500px) {
  .bl-steps { grid-template-columns: 1fr; }
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.bl-testimonials {
  position: relative;
  z-index: 2;
  padding: var(--section-pad) 0;
}

.bl-testimonials__header {
  text-align: center;
  margin-bottom: 56px;
}
.bl-testimonials__header .bl-section-subtitle { margin: 0 auto; }

.bl-testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.bl-testimonial {
  border-radius: 16px;
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  padding: 28px;
  transition: transform 0.3s, border-color 0.3s;
}
.bl-testimonial:hover {
  transform: translateY(-4px);
  border-color: rgba(255,255,255,0.1);
}

.bl-testimonial__stars {
  display: flex;
  gap: 4px;
  margin-bottom: 16px;
  color: var(--neon-yellow);
  font-size: 0.9rem;
}

.bl-testimonial__text {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}

.bl-testimonial__author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.bl-testimonial__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
}
.bl-testimonial__name {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 600;
}
.bl-testimonial__role {
  font-size: 0.75rem;
  color: var(--text-muted);
}

@media (max-width: 900px) {
  .bl-testimonials__grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
}

/* ============================================================
   ABOUT
   ============================================================ */
.bl-about {
  position: relative;
  z-index: 2;
  padding: var(--section-pad) 0;
  background: linear-gradient(180deg, transparent, rgba(104, 33, 122, 0.02) 50%, transparent);
}

.bl-about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.bl-about__visual {
  aspect-ratio: 1;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(0,188,242,0.06), rgba(104,33,122,0.06));
  border: 1px solid var(--border-glass);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}
.bl-about__visual-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,188,242,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,188,242,0.04) 1px, transparent 1px);
  background-size: 30px 30px;
}
.bl-about__visual-inner { text-align: center; position: relative; z-index: 1; }
.bl-about__visual-icon { font-size: 4rem; margin-bottom: 16px; }
.bl-about__visual-name {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
}
.bl-about__visual-loc {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-top: 4px;
}

.bl-about__text .bl-section-subtitle {
  max-width: 100%;
}
.bl-about__text .bl-section-subtitle + .bl-section-subtitle {
  margin-top: 16px;
}

@media (max-width: 768px) {
  .bl-about__grid { grid-template-columns: 1fr; gap: 40px; }
  .bl-about__visual { max-width: 400px; margin: 0 auto; }
}

/* ============================================================
   CTA BANNER
   ============================================================ */
.bl-cta-banner {
  position: relative;
  z-index: 2;
  padding: var(--section-pad) 0;
}

.bl-cta-card {
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(0, 188, 242, 0.08), rgba(104, 33, 122, 0.08));
  border: 1px solid rgba(0, 188, 242, 0.12);
  padding: 72px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.bl-cta-card::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--neon-cyan), transparent);
}

.bl-cta-card .bl-section-title {
  max-width: 600px;
  margin: 0 auto 16px;
}
.bl-cta-card .bl-section-subtitle {
  max-width: 480px;
  margin: 0 auto 36px;
  text-align: center;
}

.bl-cta-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ============================================================
   FOOTER
   ============================================================ */
.bl-footer {
  position: relative;
  z-index: 2;
  border-top: 1px solid var(--border-glass);
  padding: 56px 0 32px;
  background: rgba(0,0,0,0.3);
}

.bl-footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  margin-bottom: 48px;
}

.bl-footer__brand .bl-footer__logo {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.bl-footer__logo-img {
  height: 32px;
  width: auto;
  object-fit: contain;
  display: block;
  flex-shrink: 0;
}
.bl-footer__brand .bl-footer__desc {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 20px;
}

.bl-footer__col h4 {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 16px;
  color: var(--text-primary);
}
.bl-footer__col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.bl-footer__col li a {
  font-size: 0.85rem;
  color: var(--text-secondary);
  transition: color 0.3s;
}
.bl-footer__col li a:hover { color: var(--neon-cyan); }

/* Newsletter */
.bl-footer__newsletter h4 {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 8px;
}
.bl-footer__newsletter p {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 14px;
}
.bl-newsletter-form {
  display: flex;
  gap: 8px;
}
.bl-newsletter-form input {
  flex: 1;
  padding: 10px 14px;
  border-radius: 10px;
  border: 1px solid var(--border-glass);
  background: var(--bg-glass);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.85rem;
  outline: none;
  transition: border-color 0.3s;
}
.bl-newsletter-form input::placeholder { color: var(--text-muted); }
.bl-newsletter-form input:focus { border-color: var(--neon-cyan); }
.bl-newsletter-form button {
  padding: 10px 20px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--neon-cyan), #0090c0);
  color: #fff;
  font-weight: 600;
  font-size: 0.85rem;
  transition: transform 0.3s var(--ease-out-back), box-shadow 0.3s;
  white-space: nowrap;
}
.bl-newsletter-form button:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0,188,242,0.3);
}

.bl-newsletter-success {
  display: none;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--neon-green);
  animation: bl-fadeInUp 0.4s var(--ease-out-expo);
}
.bl-newsletter-success.show { display: flex; }

.bl-footer__bottom {
  border-top: 1px solid var(--border-glass);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.bl-footer__bottom p {
  font-size: 0.8rem;
  color: var(--text-muted);
}
.bl-footer__bottom-links {
  display: flex;
  gap: 24px;
}
.bl-footer__bottom-links a {
  font-size: 0.8rem;
  color: var(--text-muted);
  transition: color 0.3s;
}
.bl-footer__bottom-links a:hover { color: var(--text-secondary); }

@media (max-width: 900px) {
  .bl-footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 500px) {
  .bl-footer__grid { grid-template-columns: 1fr; }
}

/* ============================================================
   TOAST
   ============================================================ */
.bl-toast {
  position: fixed;
  bottom: 32px;
  right: 32px;
  padding: 14px 24px;
  border-radius: 12px;
  background: rgba(20, 20, 30, 0.95);
  border: 1px solid var(--border-glass);
  backdrop-filter: blur(20px);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  z-index: 9999;
  transform: translateY(120%);
  opacity: 0;
  transition: transform 0.4s var(--ease-out-expo), opacity 0.4s;
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
}
.bl-toast.show {
  transform: translateY(0);
  opacity: 1;
}
.bl-toast__icon { font-size: 1.2rem; }

/* ============================================================
   BACK TO TOP
   ============================================================ */
.bl-back-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--bg-glass);
  border: 1px solid var(--border-glass);
  backdrop-filter: blur(20px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  z-index: 999;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.3s, transform 0.3s, border-color 0.3s, color 0.3s;
  pointer-events: none;
}
.bl-back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.bl-back-to-top:hover {
  border-color: var(--neon-cyan);
  color: var(--neon-cyan);
}

/* ============================================================
   LOADER
   ============================================================ */
.bl-loader {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: var(--bg-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s, visibility 0.5s;
}
.bl-loader.hidden {
  opacity: 0;
  visibility: hidden;
}
.bl-loader__ring {
  width: 48px;
  height: 48px;
  border: 3px solid var(--border-glass);
  border-top-color: var(--neon-cyan);
  border-radius: 50%;
  animation: bl-spin 0.8s linear infinite;
}
@keyframes bl-spin { to { transform: rotate(360deg); } }

.bl-page-content {
  opacity: 0;
  transition: opacity 0.6s var(--ease-out-expo);
}
.bl-page-content.loaded { opacity: 1; }

/* ============================================================
   CURSOR GLOW
   ============================================================ */
.bl-cursor-glow {
  position: fixed;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 188, 242, 0.04), transparent 70%);
  pointer-events: none;
  z-index: 1;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s;
}
@media (hover: none) {
  .bl-cursor-glow { display: none; }
}

/* ============================================================
   WP ADMIN BAR OFFSET
   ============================================================ */
body.admin-bar .bl-nav {
  top: 32px;
}
@media (max-width: 782px) {
  body.admin-bar .bl-nav {
    top: 46px;
  }
}

/* ============================================================
   BREADCRUMBS
   ============================================================ */
.bl-breadcrumbs {
  position: relative;
  z-index: 2;
  padding: 16px 0;
  font-size: 0.8rem;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border-glass);
  background: rgba(255,255,255,0.01);
  margin-top: 72px;
}
body.admin-bar .bl-breadcrumbs {
  margin-top: 104px;
}
@media (max-width: 782px) {
  body.admin-bar .bl-breadcrumbs { margin-top: 118px; }
}
.bl-breadcrumbs a {
  color: var(--text-muted);
  transition: color 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.bl-breadcrumbs a:hover { color: var(--neon-cyan); }
.bl-breadcrumbs span[aria-current] { color: var(--text-secondary); }
.bl-breadcrumbs svg { opacity: 0.5; }

/* ============================================================
   SUBPAGE HERO (shorter)
   ============================================================ */
.bl-subpage-hero {
  position: relative;
  z-index: 2;
  padding: clamp(48px, 8vw, 80px) 0;
  overflow: hidden;
}
.bl-subpage-hero .bl-hero__grid-bg,
.bl-subpage-hero .bl-hero__glow { position: absolute; }
.bl-subpage-hero__content {
  position: relative;
  z-index: 2;
  max-width: 700px;
}
.bl-subpage-hero__title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4.5vw, 3rem);
  font-weight: 700;
  line-height: 1.12;
  margin-bottom: 16px;
  animation: bl-fadeInUp 0.6s var(--ease-out-expo) both;
}
.bl-subpage-hero__desc {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 540px;
  animation: bl-fadeInUp 0.6s 0.1s var(--ease-out-expo) both;
}
.bl-subpage-hero__actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 28px;
  animation: bl-fadeInUp 0.6s 0.2s var(--ease-out-expo) both;
}
.bl-subpage-hero__meta {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 24px;
  animation: bl-fadeInUp 0.6s 0.2s var(--ease-out-expo) both;
}
.bl-subpage-hero__meta-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  color: var(--text-muted);
}
.bl-subpage-hero__meta-item strong {
  color: var(--text-secondary);
}

/* ============================================================
   PAGE CONTENT (generic)
   ============================================================ */
.bl-page-section {
  position: relative;
  z-index: 2;
  padding: var(--section-pad) 0;
}
.bl-page-section--alt {
  background: linear-gradient(180deg, transparent, rgba(0, 188, 242, 0.015) 50%, transparent);
}

/* ============================================================
   FEATURE GRID (plugin detail pages)
   ============================================================ */
.bl-feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}
.bl-feature-card {
  border-radius: 16px;
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  padding: 24px;
  transition: transform 0.3s, border-color 0.3s;
}
.bl-feature-card:hover {
  transform: translateY(-3px);
  border-color: rgba(255,255,255,0.1);
}
.bl-feature-card__icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  margin-bottom: 14px;
}
.bl-feature-card__title {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 6px;
}
.bl-feature-card__desc {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ============================================================
   TABS (plugin detail pages)
   ============================================================ */
.bl-tabs {
  margin-bottom: 32px;
}
.bl-tabs__nav {
  display: flex;
  gap: 4px;
  border-bottom: 1px solid var(--border-glass);
  overflow-x: auto;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 0;
}
.bl-tabs__nav::-webkit-scrollbar { display: none; }
.bl-tabs__btn {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-muted);
  padding: 12px 20px;
  border-bottom: 2px solid transparent;
  transition: color 0.3s, border-color 0.3s;
  white-space: nowrap;
  margin-bottom: -1px;
}
.bl-tabs__btn:hover { color: var(--text-secondary); }
.bl-tabs__btn.active {
  color: var(--product-accent, var(--neon-cyan));
  border-bottom-color: var(--product-accent, var(--neon-cyan));
}
.bl-tabs__panel {
  display: none;
  padding-top: 28px;
  animation: bl-fadeInUp 0.4s var(--ease-out-expo);
}
.bl-tabs__panel.active { display: block; }

/* ============================================================
   CHANGELOG
   ============================================================ */
.bl-changelog {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.bl-changelog-entry {
  border-radius: 12px;
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  padding: 24px;
}
.bl-changelog-entry__version {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.bl-changelog-entry__version .badge {
  font-size: 0.65rem;
  padding: 2px 8px;
  border-radius: 4px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.bl-changelog-entry__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.bl-changelog-entry__list li {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.6;
  padding-left: 16px;
  position: relative;
}
.bl-changelog-entry__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--text-muted);
}

/* ============================================================
   FAQ / ACCORDION
   ============================================================ */
.bl-faq { display: flex; flex-direction: column; gap: 8px; }
.bl-faq-item {
  border-radius: 12px;
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  overflow: hidden;
  transition: border-color 0.3s;
}
.bl-faq-item.open { border-color: var(--product-accent-soft, rgba(0, 188, 242, 0.15)); }
.bl-faq-item__question {
  width: 100%;
  text-align: left;
  padding: 18px 24px;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  transition: color 0.3s;
}
.bl-faq-item__question:hover { color: var(--product-accent, var(--neon-cyan)); }
.bl-faq-item__icon {
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s;
  flex-shrink: 0;
  color: var(--text-muted);
}
.bl-faq-item.open .bl-faq-item__icon { transform: rotate(45deg); color: var(--neon-cyan); }
.bl-faq-item__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease-out-expo), padding 0.4s;
}
.bl-faq-item.open .bl-faq-item__answer {
  max-height: 500px;
}
.bl-faq-item__answer-inner {
  padding: 0 24px 20px;
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ============================================================
   PRICING BOX (plugin detail sticky)
   ============================================================ */
.bl-pricing-box {
  position: sticky;
  top: 96px;
  border-radius: 20px;
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  padding: 32px;
  transition: border-color 0.3s;
}
.bl-pricing-box:hover { border-color: rgba(0, 188, 242, 0.1); }
.bl-pricing-box__price {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 4px;
}
.bl-pricing-box__period {
  font-size: 0.9rem;
  color: var(--text-muted);
  font-weight: 400;
}
.bl-pricing-box__subtitle {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-bottom: 24px;
}
.bl-pricing-box__features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
}
.bl-pricing-box__features li {
  font-size: 0.85rem;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 10px;
}
.bl-pricing-box__features li svg {
  flex-shrink: 0;
  color: var(--neon-green);
}
.bl-pricing-box .bl-btn { width: 100%; justify-content: center; }
.bl-pricing-box__note {
  text-align: center;
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 12px;
}

/* ============================================================
   TWO COLUMN LAYOUT (content + sidebar)
   ============================================================ */
.bl-two-col {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 48px;
  align-items: start;
}
@media (max-width: 900px) {
  .bl-two-col {
    grid-template-columns: 1fr;
  }
  .bl-pricing-box { position: static; }
}

/* ============================================================
   PROSE (documentation, legal, generic content)
   ============================================================ */
/* Override bl-reveal for prose: content blocks are too tall for
   the IntersectionObserver threshold to ever trigger, so we make
   them always visible instead of relying on the reveal animation. */
.bl-prose.bl-reveal {
  opacity: 1;
  transform: translateY(0);
}
.bl-prose {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.8;
}
.bl-prose h1 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 16px;
  line-height: 1.2;
}
.bl-prose h2 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-top: 40px;
  margin-bottom: 12px;
  line-height: 1.2;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border-glass);
}
.bl-prose h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-top: 28px;
  margin-bottom: 8px;
}
.bl-prose p { margin-bottom: 16px; }
.bl-prose a {
  color: var(--neon-cyan);
  text-decoration: underline;
  text-decoration-color: rgba(0, 188, 242, 0.3);
  text-underline-offset: 3px;
  transition: text-decoration-color 0.3s;
}
.bl-prose a:hover { text-decoration-color: var(--neon-cyan); }
.bl-prose ul, .bl-prose ol {
  margin-bottom: 16px;
  padding-left: 24px;
}
.bl-prose li { margin-bottom: 6px; }
.bl-prose code {
  font-family: 'Roboto Mono', monospace;
  font-size: 0.85em;
  padding: 2px 6px;
  border-radius: 4px;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border-glass);
  color: var(--neon-cyan);
}
.bl-prose pre {
  background: rgba(0,0,0,0.4);
  border: 1px solid var(--border-glass);
  border-radius: 12px;
  padding: 20px;
  overflow-x: auto;
  margin-bottom: 20px;
}
.bl-prose pre code {
  background: none;
  border: none;
  padding: 0;
  color: var(--text-secondary);
  font-size: 0.8rem;
}

/* ---- Doc FAQ accordion ----------------------------------------------------
   main.js (blBuildDocFaqs) converts a "Common questions"/FAQ section's
   <h3> question + answer pairs into these collapsible items. Progressive
   enhancement: with no JS the content is just normal prose. ------------------ */
.bl-faq { margin: 4px 0 28px; display: flex; flex-direction: column; gap: 10px; }
.bl-faq-item {
  border: 1px solid var(--border-glass);
  border-radius: 12px;
  background: rgba(255,255,255,0.02);
  overflow: hidden;
  transition: border-color .18s ease, background .18s ease;
}
.bl-faq-item:hover { border-color: rgba(0,188,242,0.35); }
.bl-faq-item.open { border-color: rgba(0,188,242,0.55); background: rgba(0,188,242,0.045); }
.bl-faq-q {
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  text-align: left;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 17px 22px;
  font-family: var(--font-heading);
  font-size: 1.02rem;
  font-weight: 600;
  line-height: 1.4;
  color: #fff;
}
.bl-faq-q:focus-visible { outline: 2px solid var(--neon-cyan); outline-offset: -2px; }
.bl-faq-q-text { flex: 1; }
.bl-faq-ico { flex: none; position: relative; width: 20px; height: 20px; margin-top: 2px; }
.bl-faq-ico::before, .bl-faq-ico::after {
  content: ''; position: absolute; background: var(--neon-cyan); border-radius: 2px;
  transition: transform .22s ease, opacity .22s ease;
}
.bl-faq-ico::before { left: 2px; right: 2px; top: 9px; height: 2px; }
.bl-faq-ico::after  { top: 2px; bottom: 2px; left: 9px; width: 2px; }
.bl-faq-item.open .bl-faq-ico::after { transform: scaleY(0); opacity: 0; }
.bl-faq-a { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.bl-faq-item.open .bl-faq-a { max-height: 1600px; }
.bl-faq-a-inner { padding: 0 22px 18px; }
.bl-faq-a-inner > :last-child { margin-bottom: 0; }
@media (prefers-reduced-motion: reduce) {
  .bl-faq-a, .bl-faq-ico::before, .bl-faq-ico::after { transition: none; }
}
.bl-prose blockquote {
  border-left: 3px solid var(--neon-cyan);
  padding-left: 20px;
  margin: 20px 0;
  color: var(--text-secondary);
  font-style: italic;
}
.bl-prose hr {
  border: none;
  border-top: 1px solid var(--border-glass);
  margin: 32px 0;
}
.bl-prose img {
  border-radius: 12px;
  border: 1px solid var(--border-glass);
  margin: 20px 0;
}
.bl-prose table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 20px;
}
.bl-prose th, .bl-prose td {
  padding: 10px 14px;
  border: 1px solid var(--border-glass);
  text-align: left;
  font-size: 0.85rem;
}
.bl-prose th {
  background: rgba(255,255,255,0.03);
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--text-primary);
}
/* Responsive table wrapper */
.bl-prose .wp-block-table { overflow-x: auto; }
/* Gutenberg columns (wp-block-library dequeued) */
.bl-prose .wp-block-columns {
  display: flex;
  gap: 24px;
  margin-bottom: 20px;
}
.bl-prose .wp-block-column { flex: 1; min-width: 0; }
@media (max-width: 768px) {
  .bl-prose .wp-block-columns { flex-direction: column; }
}
/* Gutenberg separator */
.bl-prose .wp-block-separator {
  border: none;
  border-top: 1px solid var(--border-glass);
  margin: 32px 0;
  opacity: 1;
}
.bl-prose .wp-block-separator.is-style-wide { width: 100%; }
.bl-prose .wp-block-separator.is-style-dots {
  border: none;
  text-align: center;
  line-height: 1;
}
.bl-prose .wp-block-separator.is-style-dots::before {
  content: '···';
  color: var(--text-muted);
  font-size: 1.5em;
  letter-spacing: 1em;
}
/* Gutenberg list styles */
.bl-prose .wp-block-list { margin-bottom: 16px; padding-left: 24px; }
/* Strong / bold text */
.bl-prose strong { color: var(--text-primary); font-weight: 600; }

/* ============================================================
   SOFTWARE ARCHIVE (plugin catalog)
   ============================================================ */
.bl-software-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 24px;
}

/* ============================================================
   CHECKOUT / PORTAL PAGES
   ============================================================ */
.bl-checkout-wrap {
  max-width: 680px;
  margin: 0 auto;
}
/* v10.17.4: the original .bl-checkout-wrap 680px cage was designed for the
   /manage-subscription/ portal's narrow email-input form. /buy-plugins/ now
   renders [cls_pricing_page] inside the same wrapper, which has its own
   1340px .clspp-wrap and was being capped at 680px. This modifier opens up
   the wrapper for the wide-page case while keeping the portal untouched. */
.bl-checkout-wrap--wide {
  max-width: 100%;
}
.bl-checkout-wrap .bl-prose { text-align: center; }

/* Bodholdt Licensing shortcode styling overrides */

/* --- Checkout form wrapper --- */
.bl-checkout-wrap .cls-checkout-form {
  background: var(--bg-card) !important;
  border: 1px solid var(--border-glass) !important;
  border-radius: 16px !important;
  padding: 32px !important;
  color: var(--text-primary) !important;
}

/* ============================================================
   v10.17.0 — Bodholdt Licensing CSS-variable injection
   ------------------------------------------------------------
   v10.16.0 introduced the `--clsf-*` CSS-variable namespace inside the plugin's
   assets/frontend.css. This block maps the bodholdt-labs cyberpunk-dark theme's
   own tokens INTO that plugin namespace so the customer-facing surfaces
   (checkout / success / portal) re-skin cleanly without selector-weight wars.

   This is the "clean integration" replacement called out in the Steve Jobs pass
   doc (CC-4 host-theme note). The legacy `!important` overrides below remain in
   place for now because they also handle structural restyling (padding, layout)
   that isn't variable-driven yet. As the plugin migrates more rules to vars,
   those overrides can be trimmed in a future pass — no breakage if both apply
   simultaneously because the var-injection happens at higher specificity-tier
   parity (custom-property cascade) than the !important rules.
   ============================================================ */
.cls-portal-wrapper,
.cls-checkout-wrap,
.cls-success-wrapper {
  --clsf-bg:            var(--bg-card);
  --clsf-bg-soft:       var(--bg-glass);
  --clsf-bg-page:       transparent;
  --clsf-text:          var(--text-primary);
  --clsf-text-soft:     var(--text-secondary);
  --clsf-text-muted:    var(--text-muted);
  --clsf-border:        var(--border-glass);
  --clsf-border-soft:   rgba(0, 188, 242, 0.15);
  --clsf-primary:       var(--neon-cyan);
  --clsf-accent:        var(--neon-cyan);
  --clsf-success:       var(--neon-cyan);
  --clsf-shadow-sm:     0 1px 3px rgba(0, 0, 0, 0.25);
  --clsf-shadow-md:     0 4px 18px rgba(0, 0, 0, 0.3);
  --clsf-shadow-lg:     0 8px 32px rgba(0, 0, 0, 0.4);
  --clsf-shadow-cta:    0 4px 20px rgba(0, 188, 242, 0.35);
  --clsf-radius-md:     10px;
  --clsf-radius-lg:     12px;
  --clsf-font:          var(--font-body);
}

/* --- Portal wrapper (override plugin inline styles) --- */
.cls-portal-wrapper {
  background: var(--bg-card) !important;
  border: 1px solid var(--border-glass) !important;
  border-radius: 16px !important;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4) !important;
  color: var(--text-primary) !important;
  max-width: 540px !important;
}
.cls-portal-wrapper h2 {
  color: var(--text-primary) !important;
  font-family: var(--font-heading) !important;
}
.cls-portal-wrapper h3 {
  color: var(--text-primary) !important;
  font-family: var(--font-heading) !important;
}
.cls-portal-wrapper h4 {
  color: var(--neon-cyan) !important;
  font-family: var(--font-heading) !important;
}
.cls-portal-wrapper p {
  color: var(--text-secondary) !important;
}

/* ---- Billing & License card containers ---- */
/* These are: form > div(flex-col) > div(card) — two levels, NOT three */
.cls-portal-wrapper form > div > div {
  background: var(--bg-glass) !important;
  border: 1px solid var(--border-glass) !important;
  border-radius: 12px !important;
  padding: 20px !important;
}
/* The email field wrapper (first div child of form) should stay transparent */
.cls-portal-wrapper form > div:first-of-type {
  background: transparent !important;
  border: none !important;
  padding: 0 !important;
}
/* Paragraphs inside cards — muted helper text */
.cls-portal-wrapper form > div > div p {
  color: var(--text-muted) !important;
}
/* h4 inside cards */
.cls-portal-wrapper form > div > div h4 {
  color: var(--neon-cyan) !important;
  font-size: 1rem !important;
}

/* ---- All inputs across checkout + portal ---- */
.cls-portal-wrapper input[type="email"],
.cls-portal-wrapper input[type="text"],
.cls-checkout-wrap input[type="email"],
.cls-checkout-wrap input[type="text"],
.cls-checkout-wrap select {
  background: rgba(255, 255, 255, 0.04) !important;
  border: 1px solid var(--border-glass) !important;
  color: var(--text-primary) !important;
  border-radius: 10px !important;
  font-family: var(--font-body) !important;
  font-size: 1rem !important;
}
.cls-portal-wrapper input:focus,
.cls-checkout-wrap input:focus {
  border-color: var(--neon-cyan) !important;
  outline: none !important;
  box-shadow: 0 0 0 3px rgba(0, 188, 242, 0.15) !important;
}
.cls-portal-wrapper input::placeholder,
.cls-checkout-wrap input::placeholder {
  color: var(--text-muted) !important;
}

/* Labels */
.cls-portal-wrapper label,
.cls-checkout-wrap label {
  color: var(--text-secondary) !important;
  font-size: 0.9rem !important;
  font-family: var(--font-body) !important;
}

/* ---- Primary buttons ---- */
.cls-portal-wrapper .cls-portal-btn,
.cls-portal-wrapper .button-primary,
.cls-checkout-wrap button,
.cls-checkout-wrap input[type="submit"] {
  background: linear-gradient(135deg, var(--neon-cyan), #0090c0) !important;
  color: #fff !important;
  border: none !important;
  border-radius: 10px !important;
  font-weight: 600 !important;
  font-family: var(--font-body) !important;
  cursor: pointer !important;
  transition: transform 0.3s, box-shadow 0.3s !important;
  letter-spacing: 0.02em !important;
}
.cls-portal-wrapper .cls-portal-btn:hover,
.cls-portal-wrapper .button-primary:hover,
.cls-checkout-wrap button:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 4px 20px rgba(0, 188, 242, 0.35) !important;
}

/* ---- Secondary / ghost buttons ---- */
.cls-portal-wrapper .cls-portal-secondary,
.cls-portal-wrapper .button:not(.button-primary),
.cls-portal-wrapper #cls-resend-btn {
  background: transparent !important;
  color: var(--text-secondary) !important;
  border: 1px solid var(--border-glass) !important;
  border-radius: 10px !important;
  font-family: var(--font-body) !important;
  cursor: pointer !important;
  transition: border-color 0.3s, color 0.3s !important;
}
.cls-portal-wrapper .cls-portal-secondary:hover,
.cls-portal-wrapper .button:not(.button-primary):hover,
.cls-portal-wrapper #cls-resend-btn:hover {
  border-color: var(--neon-cyan) !important;
  color: var(--neon-cyan) !important;
  background: rgba(0, 188, 242, 0.05) !important;
  transform: none !important;
}

/* ---- Verify step ---- */
.cls-portal-wrapper .cls-verify-step,
.cls-portal-wrapper #cls-verify-step {
  background: var(--bg-glass) !important;
  border: 1px solid rgba(0, 188, 242, 0.3) !important;
  border-radius: 12px !important;
  padding: 20px !important;
  margin-top: 20px !important;
}
.cls-portal-wrapper .cls-verify-step p,
.cls-portal-wrapper #cls-verify-step p {
  color: var(--neon-cyan) !important;
}

/* ---- License results (JS-rendered) ---- */
.cls-portal-wrapper #cls-license-results {
  color: var(--text-primary) !important;
}
.cls-portal-wrapper #cls-license-results > div {
  border-top-color: var(--border-glass) !important;
}
.cls-portal-wrapper #cls-license-results h3 {
  color: var(--text-primary) !important;
}
.cls-portal-wrapper .cls-license-result {
  background: var(--bg-glass) !important;
  border: 1px solid var(--border-glass) !important;
  border-radius: 10px !important;
  color: var(--text-primary) !important;
}
.cls-portal-wrapper .cls-license-result code {
  color: var(--neon-cyan) !important;
}
.cls-portal-wrapper .cls-license-result .cls-lr-meta {
  color: var(--text-muted) !important;
}

/* ---- Portal messages (success/error) ---- */
.cls-portal-wrapper .cls-portal-msg {
  border-radius: 10px !important;
  border: 1px solid var(--border-glass) !important;
  padding: 12px 16px !important;
}

/* ---- Catch-all for any remaining light-theme inline colors ---- */
.cls-portal-wrapper [style*="color:#666"],
.cls-portal-wrapper [style*="color:#999"],
.cls-portal-wrapper [style*="color:#00188F"] {
  color: var(--text-secondary) !important;
}
.cls-portal-wrapper [style*="background:#fff"],
.cls-portal-wrapper [style*="background:#f9f9f9"],
.cls-portal-wrapper [style*="background: #fff"] {
  background: var(--bg-glass) !important;
}
.cls-portal-wrapper [style*="border:1px solid #e0e0e0"],
.cls-portal-wrapper [style*="border:1px solid #ccc"],
.cls-portal-wrapper [style*="border:1px solid #ddd"],
.cls-portal-wrapper [style*="border-top:1px solid #e0e0e0"] {
  border-color: var(--border-glass) !important;
}

/* ============================================================
   PLUGIN DETAIL SPLIT HERO
   ============================================================ */
.bl-plugin-hero {
  position: relative;
  z-index: 2;
  padding: clamp(48px, 8vw, 80px) 0;
  overflow: hidden;
}
.bl-plugin-hero__inner {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 48px;
  align-items: start;
}
@media (max-width: 900px) {
  .bl-plugin-hero__inner { grid-template-columns: 1fr; }
}
.bl-plugin-hero__content { position: relative; z-index: 2; }
.bl-plugin-hero__icon {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin-bottom: 20px;
  position: relative;
}
.bl-plugin-hero__icon::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(255,255,255,0.15), transparent);
}

/* ============================================================
   REQUIREMENTS TABLE
   ============================================================ */
.bl-requirements {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 12px;
  margin-top: 20px;
}
.bl-requirement {
  border-radius: 10px;
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  padding: 14px 16px;
}
.bl-requirement__label {
  font-size: 0.7rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
  margin-bottom: 2px;
}
.bl-requirement__value {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
}

/* ============================================================
   DOC SIDEBAR NAV
   ============================================================ */
.bl-doc-sidebar {
  position: sticky;
  top: 96px;
}
.bl-doc-sidebar__title {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 12px;
}
.bl-doc-sidebar__nav {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.bl-doc-sidebar__nav a {
  display: block;
  padding: 8px 14px;
  font-size: 0.85rem;
  color: var(--text-secondary);
  border-radius: 8px;
  border-left: 2px solid transparent;
  transition: color 0.3s, background 0.3s, border-color 0.3s;
}
.bl-doc-sidebar__nav a:hover {
  color: var(--text-primary);
  background: var(--bg-glass);
}
.bl-doc-sidebar__nav a.active {
  color: var(--neon-cyan);
  border-left-color: var(--neon-cyan);
  background: rgba(0, 188, 242, 0.05);
}

/* ============================================================
   ABOUT PAGE SPECIFIC
   ============================================================ */
.bl-about-values {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 40px;
}
.bl-value-card {
  border-radius: 16px;
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  padding: 28px;
  text-align: center;
  transition: transform 0.3s, border-color 0.3s;
}
.bl-value-card:hover {
  transform: translateY(-3px);
  border-color: rgba(255,255,255,0.1);
}
.bl-value-card__icon {
  font-size: 2rem;
  margin-bottom: 12px;
}
.bl-value-card__title {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 6px;
}
.bl-value-card__desc {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ============================================================
   EMPTY STATE
   ============================================================ */
.bl-empty-state {
  text-align: center;
  padding: 60px 20px;
}
.bl-empty-state__icon { font-size: 3rem; margin-bottom: 16px; }
.bl-empty-state__title {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 8px;
}
.bl-empty-state__desc {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

/* ============================================================
   DOCUMENTATION HUB
   ============================================================ */
.bl-docs-hub {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
}
.bl-docs-hub__card {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 28px 32px;
  background: var(--card-bg);
  border: 1px solid var(--border-subtle);
  border-radius: 16px;
  text-decoration: none;
  color: var(--text-primary);
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
}
.bl-docs-hub__card:hover {
  border-color: var(--neon-cyan);
  box-shadow: 0 0 30px rgba(0, 188, 242, 0.1);
}
.bl-docs-hub__icon {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
}
.bl-docs-hub__info {
  flex: 1;
  min-width: 0;
}
.bl-docs-hub__name {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 6px;
}
.bl-docs-hub__desc {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.5;
  margin-bottom: 8px;
}
.bl-docs-hub__meta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  color: var(--neon-cyan);
  font-weight: 500;
}
.bl-docs-hub__meta svg {
  width: 14px;
  height: 14px;
}
.bl-docs-hub__arrow {
  flex-shrink: 0;
  color: var(--text-muted);
  transition: color 0.3s, transform 0.3s;
}
.bl-docs-hub__arrow svg {
  width: 20px;
  height: 20px;
}
.bl-docs-hub__card:hover .bl-docs-hub__arrow {
  color: var(--neon-cyan);
  transform: translateX(4px);
}
@media (max-width: 600px) {
  .bl-docs-hub__card {
    flex-direction: column;
    text-align: center;
    padding: 24px 20px;
  }
  .bl-docs-hub__arrow { display: none; }
}


/* ============================================================
   Neon plugin-icon images (2026-05 icon rebrand)
   Image icons are full-bleed tiles with their own background +
   rounding, so suppress the gradient box bg and the white sheen.
   ============================================================ */
.bl-plugin-card__icon--img, .bl-plugin-hero__icon--img { background: none !important; }
.bl-plugin-card__icon--img::after, .bl-plugin-hero__icon--img::after { content: none; display: none; }
.bl-plugin-card__icon--img img, .bl-plugin-hero__icon--img img {
  width: 100%; height: 100%; display: block; border-radius: inherit; object-fit: cover;
}

.bl-floating-card__icon--img { background: none !important; }
.bl-floating-card__icon--img img { width: 100%; height: 100%; display: block; border-radius: inherit; object-fit: cover; }
.bl-docs-hub__icon--img { background: none !important; }
.bl-docs-hub__icon--img img { width: 100%; height: 100%; display: block; border-radius: inherit; object-fit: cover; }

/* =========================================================================
   Bodholdt Ticketing — support form + customer portal: dark-neon glass skin.
   (Added 2026-06-02. Skins the [bodholdt_support_form] + [bodholdt_portal]
   surfaces to the site's tokens so the plugin's neutral CSS works on customer
   sites while bodholdtlabs.com gets the cyberpunk/neon glass look. Remove this
   block + revert BL_THEME_VERSION to undo. Selectors are body-prefixed +
   !important to win over the later-loading plugin form.css/portal.css.)
   ========================================================================= */

/* ---- Shared glass card ---- */
body .bt-form,
body .bt-form-done,
body .bt-buy,
body .bt-portal-card {
  background: var(--bg-glass) !important;
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  backdrop-filter: blur(20px) saturate(140%);
  border: 1px solid var(--border-glass) !important;
  border-radius: 18px !important;
  box-shadow: 0 0 0 1px rgba(0, 188, 242, .06),
              0 24px 70px rgba(0, 0, 0, .55),
              0 0 48px rgba(0, 188, 242, .10),
              6px 6px 0 rgba(0, 188, 242, .14) !important;
  color: var(--text-primary) !important;
  font-family: var(--font-body);
}

/* ---- Headings ---- */
body .bt-form-title,
body .bt-buy h3,
body .bt-portal-card h3,
body .bt-portal-subj,
body .bt-portal-support-head,
body .bt-portal-links-head {
  font-family: var(--font-heading) !important;
  color: #fff !important;
  letter-spacing: .2px;
  text-shadow: 0 0 22px rgba(0, 188, 242, .45);
}

/* ---- Labels / helper / muted text ---- */
body .bt-form-field span,
body .bt-form label > span {
  color: var(--text-secondary) !important;
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .4px;
}
body .bt-buy-sub,
body .bt-portal-sub,
body .bt-portal-support-sub,
body .bt-portal-msg,
body .bt-portal-who { color: var(--text-secondary) !important; }
body .bt-buy-fine,
body .bt-portal-support-fine,
body .bt-portal-dim { color: var(--text-muted) !important; }

/* ---- Inputs ---- */
body .bt-form input,
body .bt-form textarea,
body .bt-form select,
body .bt-portal input,
body .bt-portal textarea,
body .bt-portal-card input,
body .bt-portal-card textarea,
body .bt-portal-linkform input {
  background: rgba(255, 255, 255, .04) !important;
  border: 1px solid var(--border-glass) !important;
  color: var(--text-primary) !important;
  border-radius: 10px !important;
}
body .bt-form input::placeholder,
body .bt-form textarea::placeholder,
body .bt-portal input::placeholder,
body .bt-portal textarea::placeholder { color: var(--text-muted) !important; }
body .bt-form input:focus,
body .bt-form textarea:focus,
body .bt-form select:focus,
body .bt-portal input:focus,
body .bt-portal textarea:focus,
body .bt-portal-card input:focus,
body .bt-portal-card textarea:focus,
body .bt-portal-linkform input:focus {
  outline: none !important;
  border-color: var(--neon-cyan) !important;
  box-shadow: 0 0 0 3px rgba(0, 188, 242, .22), 0 0 18px rgba(0, 188, 242, .28) !important;
  background: rgba(0, 188, 242, .06) !important;
}
body .bt-form select option { background: var(--bg-secondary); color: var(--text-primary); }

/* ---- Primary buttons (cyan neon + offset shadow nod to the theme) ---- */
body .bt-form-submit,
body .bt-buy-btn,
body .bt-portal-btn {
  background: linear-gradient(135deg, #00d4ff, #0091ff) !important;
  color: #00131c !important;
  font-family: var(--font-heading) !important;
  font-weight: 600 !important;
  border: 0 !important;
  border-radius: 10px !important;
  box-shadow: 0 8px 26px rgba(0, 160, 255, .35), 4px 4px 0 rgba(0, 188, 242, .25) !important;
  transition: transform .15s var(--ease-out-back), box-shadow .2s, filter .2s;
}
body .bt-form-submit:hover,
body .bt-buy-btn:hover,
body .bt-portal-btn:hover {
  filter: brightness(1.08);
  transform: translateY(-1px);
  box-shadow: 0 12px 34px rgba(0, 180, 255, .5), 6px 6px 0 rgba(0, 188, 242, .3) !important;
}
body .bt-buy-ghost {
  background: rgba(0, 188, 242, .08) !important;
  color: #7fdcff !important;
  box-shadow: inset 0 0 0 1.5px rgba(0, 188, 242, .5) !important;
}

/* ---- Success check + status colors ---- */
body .bt-check,
body .bt-portal-check {
  background: linear-gradient(135deg, #00d4ff, #0091ff) !important;
  color: #00131c !important;
  box-shadow: 0 0 34px rgba(0, 188, 242, .55) !important;
}
body .bt-form-msg.ok,
body .bt-portal-msg.ok { color: var(--neon-emerald) !important; }
body .bt-form-msg.err,
body .bt-portal-status-msg.err { color: #ff7a8a !important; }

/* ---- Portal: ticket rows, bubbles, links ---- */
body .bt-portal-link { color: #7fdcff !important; background: none; }
body .bt-portal-item {
  background: var(--bg-card) !important;
  border: 1px solid var(--border-glass) !important;
  border-radius: 12px !important;
  color: var(--text-primary) !important;
}
body .bt-portal-item:hover {
  border-color: rgba(0, 188, 242, .4) !important;
  box-shadow: 0 0 18px rgba(0, 188, 242, .12) !important;
}
body .bt-portal-item-subj { color: var(--text-primary) !important; }
body .bt-portal-bubble { border-radius: 12px !important; }
body .bt-portal-msgrow.agent .bt-portal-bubble {
  background: rgba(0, 188, 242, .12) !important;
  color: var(--text-primary) !important;
  border: 1px solid rgba(0, 188, 242, .25) !important;
}
body .bt-portal-msgrow.me .bt-portal-bubble {
  background: rgba(255, 255, 255, .05) !important;
  color: var(--text-primary) !important;
  border: 1px solid var(--border-glass) !important;
}
body .bt-portal-status { border-radius: 999px !important; }

/* ---- Support-status + linked-emails panels ---- */
body .bt-portal-support {
  background: rgba(0, 188, 242, .06) !important;
  border: 1px solid rgba(0, 188, 242, .22) !important;
  border-radius: 14px !important;
}
body .bt-portal-balance { background: var(--neon-cyan) !important; color: #00131c !important; }
body .bt-portal-captured {
  background: rgba(0, 208, 132, .10) !important;
  border: 1px solid rgba(0, 208, 132, .30) !important;
  color: var(--neon-emerald) !important;
}
body .bt-portal-links,
body .bt-portal-link-row { border-color: var(--border-glass) !important; }
/* end Bodholdt Ticketing dark-neon glass skin */


/* ============================================================
   DOCUMENTATION SEARCH
   1) Global cross-doc search (documentation hub)
   2) Per-page "find on this page" search (plugin doc pages)
   ============================================================ */

/* --- shared section spacing --- */
/* Lift the search section's stacking context above the docs-hub section
   below it: both are .bl-page-section (position:relative; z-index:2), and
   the later hub section would otherwise paint over the results dropdown. */
.bl-docs-search-section { position: relative; z-index: 30; padding-bottom: 0; }
.bl-page-section--tight { padding-top: 32px; }

/* ---------- 1) Global cross-doc search ---------- */
.bl-docs-search {
  position: relative;
  max-width: 720px;
  margin: 0 auto;
}
.bl-docs-search__field {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 4px 8px 4px 18px;
  background: var(--bg-glass);
  border: 1px solid var(--border-glass);
  border-radius: 14px;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.bl-docs-search:focus-within .bl-docs-search__field {
  border-color: var(--neon-cyan);
  box-shadow: 0 0 0 3px rgba(0, 188, 242, 0.12), 0 0 30px rgba(0, 188, 242, 0.1);
}
.bl-docs-search__icon {
  display: flex;
  flex-shrink: 0;
  color: var(--text-muted);
}
.bl-docs-search:focus-within .bl-docs-search__icon { color: var(--neon-cyan); }
.bl-docs-search__input {
  flex: 1;
  min-width: 0;
  border: none;
  background: transparent;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 1.05rem;
  padding: 14px 0;
  outline: none;
}
.bl-docs-search__input::placeholder { color: var(--text-muted); }
/* hide the native search clear/cancel — we provide our own */
.bl-docs-search__input::-webkit-search-cancel-button { -webkit-appearance: none; appearance: none; }
.bl-docs-search__clear {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  border: none;
  background: transparent;
  color: var(--text-muted);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  transition: color 0.2s, background 0.2s;
}
.bl-docs-search__clear:hover { color: var(--text-primary); background: var(--bg-glass); }

.bl-docs-search__results {
  position: absolute;
  z-index: 40;
  left: 0;
  right: 0;
  top: calc(100% + 10px);
  max-height: 64vh;
  overflow-y: auto;
  padding: 8px;
  background: var(--bg-secondary);
  border: 1px solid var(--border-glass);
  border-radius: 14px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5);
}
.bl-docs-search__empty {
  padding: 22px 18px;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.95rem;
}
.bl-docs-search__result {
  display: flex;
  gap: 14px;
  padding: 12px 14px;
  border-radius: 10px;
  text-decoration: none;
  color: var(--text-primary);
  transition: background 0.15s;
}
.bl-docs-search__result:hover,
.bl-docs-search__result.is-active {
  background: var(--bg-glass);
}
.bl-docs-search__result-bar {
  flex-shrink: 0;
  width: 3px;
  border-radius: 3px;
  align-self: stretch;
  opacity: 0.85;
}
.bl-docs-search__result-body { min-width: 0; }
.bl-docs-search__result-plugin {
  display: block;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 2px;
}
.bl-docs-search__result-title {
  display: block;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.35;
}
.bl-docs-search__result-snippet {
  margin-top: 3px;
  font-size: 0.85rem;
  line-height: 1.5;
  color: var(--text-secondary);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.bl-docs-search__result mark,
.bl-docs-search__result-snippet mark {
  background: rgba(0, 188, 242, 0.22);
  color: var(--text-primary);
  border-radius: 3px;
  padding: 0 2px;
}

/* ---------- 2) Per-page "find on this page" ---------- */
.bl-docpage-search {
  max-width: 760px;
  margin: 0 0 28px;
}
.bl-docpage-search__field {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 4px 6px 4px 16px;
  background: var(--bg-glass);
  border: 1px solid var(--border-glass);
  border-radius: 12px;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.bl-docpage-search.is-active .bl-docpage-search__field,
.bl-docpage-search__field:focus-within {
  border-color: var(--neon-cyan);
  box-shadow: 0 0 0 3px rgba(0, 188, 242, 0.1);
}
.bl-docpage-search__icon { display: flex; flex-shrink: 0; color: var(--text-muted); }
.bl-docpage-search__field:focus-within .bl-docpage-search__icon { color: var(--neon-cyan); }
.bl-docpage-search__input {
  flex: 1;
  min-width: 0;
  border: none;
  background: transparent;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.95rem;
  padding: 11px 0;
  outline: none;
}
.bl-docpage-search__input::placeholder { color: var(--text-muted); }
.bl-docpage-search__input::-webkit-search-cancel-button { -webkit-appearance: none; appearance: none; }
.bl-docpage-search__count {
  flex-shrink: 0;
  font-size: 0.8rem;
  color: var(--text-muted);
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
  padding: 0 4px;
}
.bl-docpage-search__nav {
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 9px;
  border: none;
  background: transparent;
  color: var(--text-secondary);
  cursor: pointer;
  transition: color 0.2s, background 0.2s;
}
.bl-docpage-search__nav:hover:not(:disabled) { color: var(--neon-cyan); background: var(--bg-glass); }
.bl-docpage-search__nav:disabled { opacity: 0.3; cursor: default; }
.bl-docpage-search__nav--next svg { transform: rotate(180deg); }

/* in-page match highlights */
.bl-prose mark.bl-doc-hl {
  background: rgba(0, 188, 242, 0.18);
  color: var(--text-primary);
  border-radius: 3px;
  padding: 0 2px;
  scroll-margin-top: 100px;
}
.bl-prose mark.bl-doc-hl.is-current {
  background: var(--neon-cyan);
  color: var(--bg-primary);
  box-shadow: 0 0 0 2px rgba(0, 188, 242, 0.35);
}

@media (max-width: 600px) {
  .bl-docs-search__input { font-size: 1rem; }
  .bl-docpage-search__count { display: none; }
}
@media (prefers-reduced-motion: reduce) {
  .bl-docs-search__field,
  .bl-docpage-search__field,
  .bl-docs-search__result { transition: none; }
}

/* ============================================================
   Product screenshots — "See It In Action" gallery
   (single-software.php). Real admin-UI shots as a pre-purchase
   trust signal. Accessible: focusable links, alt text, and
   motion gated by prefers-reduced-motion below.
   ============================================================ */
.bl-shots-section { padding-top: clamp(16px, 2.5vw, 32px) !important; padding-bottom: clamp(24px, 3.5vw, 48px) !important; }
.bl-shots__header { margin-bottom: 28px; }
.bl-shots {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 360px), 1fr));
  gap: 22px;
}
.bl-shot {
  margin: 0;
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 14px;
  overflow: hidden;
  background: rgba(255,255,255,0.02);
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}
.bl-shot:hover {
  transform: translateY(-4px);
  border-color: var(--product-accent, var(--neon-cyan));
  box-shadow: 0 14px 36px rgba(0,0,0,0.35);
}
.bl-shot__link {
  display: block;
  line-height: 0;
  outline-offset: 3px;
}
.bl-shot__link:focus-visible {
  outline: 2px solid var(--product-accent, var(--neon-cyan));
}
.bl-shot__img {
  width: 100%;
  height: auto;
  display: block;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.bl-shot__cap {
  padding: 14px 16px;
  font-size: 0.9rem;
  line-height: 1.5;
  color: #b8b8c8;
}
@media (prefers-reduced-motion: reduce) {
  .bl-shot { transition: none; }
  .bl-shot:hover { transform: none; }
}

/* ============================================================
   Founder identity — About section links + actions
   (front-page.php #about, page-about.php). Names the human and
   links to verifiable profiles so a solo vendor reads as
   accountable, not anonymous.
   ============================================================ */
.bl-about__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 28px; }
.bl-founder-links { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 26px; }
.bl-founder-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 15px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 10px;
  background: rgba(255,255,255,0.03);
  color: #d8d8e6;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  transition: border-color .15s ease, color .15s ease, background .15s ease;
}
.bl-founder-link:hover { border-color: var(--neon-cyan); color: #fff; background: rgba(0,188,242,0.08); }
.bl-founder-link svg { flex-shrink: 0; }
@media (prefers-reduced-motion: reduce) { .bl-founder-link { transition: none; } }

/* ============================================================
   About page (page-about.php) — real /about/ trust hub
   ============================================================ */
.bl-about-page { padding-top: clamp(90px, 12vw, 150px); }
.bl-prose-container { max-width: 860px; margin: 0 auto; }
.bl-about-page__head { margin-bottom: 36px; }
.bl-about-page__body { margin-bottom: 36px; }
.bl-about-page__body h2 { margin-top: 32px; }
.bl-about-page__commitments { margin: 8px 0 40px; }
.bl-about-page__cta { display: flex; flex-wrap: wrap; gap: 14px; }

/* ============================================================
   Homepage trust band (front-page.php #trust) — honest
   substitutes for the social proof a young lab can't fake yet.
   ============================================================ */
.bl-trust { padding: clamp(60px, 8vw, 110px) 0; }
.bl-trust__header { max-width: 760px; margin: 0 auto 48px; text-align: center; }
.bl-trust__header .bl-section-subtitle { margin: 0 auto; }
.bl-trust__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 1fr));
  gap: 22px;
}
.bl-trust-card {
  padding: 28px 24px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  background: rgba(255,255,255,0.02);
  transition: transform .18s ease, border-color .18s ease;
}
.bl-trust-card:hover { transform: translateY(-4px); border-color: rgba(255,255,255,0.16); }
.bl-trust-card__icon {
  width: 46px; height: 46px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 12px; margin-bottom: 16px;
}
.bl-trust-card__title { font-size: 1.05rem; margin: 0 0 8px; color: #fff; }
.bl-trust-card__desc { font-size: 0.92rem; line-height: 1.55; color: #b8b8c8; margin: 0; }
.bl-trust-card__desc a { color: var(--neon-cyan); font-weight: 600; }
@media (prefers-reduced-motion: reduce) {
  .bl-trust-card { transition: none; }
  .bl-trust-card:hover { transform: none; }
}

/* ============================================================
   Billing explainer (bl_billing_explainer) — buy-plugins +
   manage-subscription. Plain-language delivery/cancel/refund/
   download info shown before login / before purchase.
   ============================================================ */
.bl-billing-explainer { max-width: 1000px; margin: 0 auto; }
.bl-billing-explainer__title { text-align: center; font-size: clamp(1.3rem, 2.6vw, 1.8rem); margin: 0 0 28px; color: #fff; }
.bl-billing-explainer__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr));
  gap: 18px;
}
.bl-billing-card {
  padding: 22px 20px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  background: rgba(255,255,255,0.02);
}
.bl-billing-card__icon {
  width: 42px; height: 42px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 11px; margin-bottom: 14px;
}
.bl-billing-card__title { font-size: 1rem; margin: 0 0 7px; color: #fff; }
.bl-billing-card__desc { font-size: 0.9rem; line-height: 1.55; color: #b8b8c8; margin: 0; }
.bl-billing-explainer__foot { text-align: center; margin: 26px 0 0; color: #9a9ab0; font-size: 0.92rem; }
.bl-billing-explainer__foot a { color: var(--neon-cyan); font-weight: 600; }

/* ============================================================
   Roadmap page (page-roadmap.php) — honest Now / Next / Exploring
   ============================================================ */
.bl-roadmap-page { padding-top: clamp(90px, 12vw, 150px); }
.bl-roadmap-page__head { max-width: 760px; margin: 0 auto 48px; text-align: center; }
.bl-roadmap__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
  gap: 22px;
  align-items: start;
}
.bl-roadmap-col {
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  background: rgba(255,255,255,0.02);
  padding: 24px;
}
.bl-roadmap-col__head { display: flex; align-items: center; flex-wrap: wrap; gap: 8px; margin-bottom: 18px; }
.bl-roadmap-col__dot { width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; }
.bl-roadmap-col__label { font-size: 1.15rem; margin: 0; color: #fff; }
.bl-roadmap-col__note { width: 100%; font-size: 0.8rem; color: #9a9ab0; }
.bl-roadmap-col__items { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 16px; }
.bl-roadmap-item { padding: 16px; border: 1px solid rgba(255,255,255,0.06); border-radius: 11px; background: rgba(255,255,255,0.02); }
.bl-roadmap-item__title { font-size: 0.98rem; margin: 0 0 6px; color: #fff; }
.bl-roadmap-item__desc { font-size: 0.88rem; line-height: 1.5; color: #b8b8c8; margin: 0; }
.bl-roadmap-page__cta { text-align: center; margin-top: 44px; color: #b8b8c8; }
.bl-roadmap-page__cta a { color: var(--neon-cyan); font-weight: 600; }

/* ============================================================
   Support "what to expect" band (page-support.php)
   ============================================================ */
.bl-support-expect { max-width: 1000px; margin: 0 auto; }
.bl-support-expect__cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
  gap: 18px;
}
.bl-support-card {
  padding: 22px 20px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  background: rgba(255,255,255,0.02);
}
.bl-support-card__icon {
  width: 42px; height: 42px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 11px; margin-bottom: 14px;
}
.bl-support-card__title { font-size: 1rem; margin: 0 0 7px; color: #fff; }
.bl-support-card__desc { font-size: 0.9rem; line-height: 1.55; color: #b8b8c8; margin: 0; }
.bl-support-expect__email { text-align: center; margin: 24px 0 0; color: #9a9ab0; font-size: 0.92rem; }
.bl-support-expect__email a { color: var(--neon-cyan); font-weight: 600; }
