:root {
  --lb-yellow: #F9ED10;
  --lb-yellow-hover: #F3C623;
  --lb-blue: #00809D;
  --lb-red: #E14434;
  --lb-ink: #0f172a;
  --lb-muted: #475569;
  --lb-border: #e2e8f0;
  --lb-bg: #ffffff;
}

/* Root */
.lbloom-root {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--lb-ink);
}

/* Layout */
.lb-container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Section shell */
.lb-section {
  padding: 2.75rem 1rem 3.25rem;
}
.lb-section-header {
  margin-bottom: 1.5rem;
  max-width: 34rem;
}
.lb-breadcrumb {
  font-size: 11px;
  color: #94a3b8;
  margin-bottom: 0.5rem;
}
.lb-breadcrumb span {
  color: #0f172a;
  font-weight: 600;
}
.lb-section-title {
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #0f172a;
}
.lb-section-sub {
  margin-top: 0.4rem;
  font-size: 0.9rem;
  color: #64748b;
}

/* Grid helpers */
.lb-grid {
  display: grid;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .lb-grid-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .lb-grid-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* Cards */
.lb-card-plain {
  border-radius: 20px;
  border: 1px solid rgba(226, 232, 240, 0.9);
  background: #ffffff;
  padding: 1rem 1.1rem;
}
.lb-card-title-sm {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #64748b;
}
.lb-card-body {
  margin-top: 0.35rem;
  font-size: 0.85rem;
  color: #475569;
}

/* Buttons */
.lb-btn {
  border-radius: 999px;
  padding: 0.625rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease, transform 0.08s ease, box-shadow 0.15s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.lb-btn:active {
  transform: translateY(1px);
}
.lb-btn-primary {
  background: var(--lb-yellow);
  color: #111827;
  box-shadow: 0 10px 25px rgba(148, 163, 184, 0.35);
}
.lb-btn-primary:hover {
  background: var(--lb-yellow-hover);
}
.lb-btn-outline {
  background: #ffffff;
  border: 1px solid #cbd5e1;
  color: #334155;
}
.lb-btn-outline:hover {
  background: #f8fafc;
}

/* Hero (Home) */
.lb-hero {
  padding: 4rem 1rem 4.5rem;
  border-bottom: 1px solid rgba(226, 232, 240, 0.9);
  background:
    radial-gradient(circle at top left, rgba(249, 237, 16, 0.14), transparent 55%),
    radial-gradient(circle at bottom right, rgba(0, 128, 157, 0.10), transparent 55%);
}
.lb-hero-grid {
  display: grid;
  gap: 2.5rem;
}
@media (min-width: 768px) {
  .lb-hero-grid {
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
    align-items: center;
  }
}
.lb-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  border-radius: 999px;
  padding: 0.25rem 0.75rem;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(226, 232, 240, 0.9);
  color: #64748b;
}
.lb-dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--lb-red);
}
.lb-h1 {
  margin-top: 1rem;
  font-size: 2.3rem;
  line-height: 1.1;
  font-weight: 900;
  letter-spacing: -0.03em;
  color: #0f172a;
}
@media (min-width: 768px) {
  .lb-h1 {
    font-size: 2.8rem;
  }
}
.lb-h1-accent {
  display: block;
  color: var(--lb-blue);
}
.lb-lead {
  margin-top: 1rem;
  font-size: 0.98rem;
  color: #475569;
  max-width: 32rem;
}
.lb-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.25rem;
}
.lb-chip {
  margin-top: 0.85rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 12px;
  color: #64748b;
}
.lb-chip-pill {
  width: 20px;
  height: 20px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  background: rgba(0, 128, 157, 0.12);
  color: var(--lb-blue);
}

/* Hero right card */
.lb-card {
  border-radius: 24px;
  border: 1px solid rgba(226, 232, 240, 0.9);
  background: rgba(255, 255, 255, 0.9);
  padding: 1rem;
  box-shadow: 0 14px 40px rgba(148, 163, 184, 0.3);
}
.lb-hero-img {
  width: 100%;
  border-radius: 18px;
  border: 1px solid rgba(226, 232, 240, 0.9);
  background: linear-gradient(135deg, #fef9c3, #e0f2fe);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  text-align: center;
}
.lb-hero-img-title {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
  color: #64748b;
}
.lb-hero-img-text {
  font-size: 13px;
  margin-top: 0.35rem;
  color: #475569;
}
.lb-stats {
  margin-top: 0.9rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.6rem;
}
.lb-stat {
  border-radius: 16px;
  border: 1px solid rgba(226, 232, 240, 0.9);
  background: #f8fafc;
  padding: 0.4rem 0.6rem;
}
.lb-stat-label {
  font-size: 11px;
  color: #94a3b8;
}
.lb-stat-value {
  margin-top: 0.15rem;
  font-size: 13px;
  font-weight: 700;
  color: #0f172a;
}

/* FAQ items */
.lb-faq-item {
  border-radius: 18px;
  border: 1px solid rgba(226, 232, 240, 0.9);
  background: #ffffff;
  padding: 0.9rem 1rem;
}
.lb-faq-q {
  font-size: 0.9rem;
  font-weight: 600;
  color: #0f172a;
}
.lb-faq-a {
  margin-top: 0.2rem;
  font-size: 0.8rem;
  color: #64748b;
}

/* Utility tweaks for Astra */
.page .entry-content > .lbloom-root:first-child {
  margin-top: 0;
}
.ast-container {
  padding-left: 0;
  padding-right: 0;
}
