.bdk9-homepage {
  --navy:     #1a2744;
  --orange:   #f4622a;
  --orange-h: #d4521a;
  --text:     #1a2744;
  --muted:    #555e6d;
  --bg-light: #f3f5f8;
  font-family: 'Poppins', sans-serif;
  color: var(--text);
}

.bdk9-container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
  box-sizing: border-box;
}

/* ---- Pricing cards ---- */
.bdk9-pricing-wrap {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
  max-width: 800px;
  margin: 0 auto;
  padding: 56px 28px;
  font-family: 'Poppins', sans-serif;
  align-items: start;
}

.bdk9-pricing-card {
  position: relative;
  background: #ffffff;
  border: 1px solid #e2e6ed;
  border-radius: 16px;
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.bdk9-pricing-card--featured {
  background: #fffaf7;
  border-color: #1a2744;
  box-shadow:
    0 16px 48px rgba(26, 39, 68, 0.18),
    0 4px 16px rgba(244, 98, 42, 0.12);
  z-index: 1;
}

.bdk9-pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: #f4622a;
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 999px;
  white-space: nowrap;
  box-shadow: 0 3px 12px rgba(244, 98, 42, 0.40);
}

.bdk9-pricing-founder-tag {
  display: inline-block;
  background: rgba(244, 98, 42, 0.09);
  color: #f4622a;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 4px;
  margin-top: 6px;
}

.bdk9-pricing-header h3 {
  font-size: 1.1rem;
  font-weight: 800;
  color: #1a2744;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: 0 0 10px;
}

.bdk9-pricing-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 8px;
}

.bdk9-pricing-amount {
  font-size: 2.8rem;
  font-weight: 900;
  color: #1a2744;
  line-height: 1;
}

.bdk9-pricing-period {
  font-size: 1rem;
  color: #555e6d;
  font-weight: 600;
}

.bdk9-pricing-desc {
  font-size: 0.88rem;
  color: #555e6d;
  margin: 0;
  line-height: 1.55;
}

.bdk9-pricing-features {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.bdk9-pricing-features li {
  font-size: 0.9rem;
  color: #333c4a;
  padding-left: 22px;
  position: relative;
}

.bdk9-pricing-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #f4622a;
  font-weight: 800;
}

.bdk9-btn-pricing-free {
  display: inline-block;
  border-radius: 6px;
  padding: 13px 24px;
  text-align: center;
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 0.82rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  border: 2px solid #c5cad3;
  color: #555e6d;
  background: transparent;
  text-decoration: none;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.bdk9-btn-pricing-free:hover {
  border-color: #1a2744;
  color: #1a2744;
  background: transparent;
}

/* Featured card CTA — pronounced orange with glow */
.bdk9-pricing-card--featured .bdk9-btn-primary {
  box-shadow: 0 4px 20px rgba(244, 98, 42, 0.42);
  padding: 15px 28px;
}

.bdk9-pricing-card--featured .bdk9-btn-primary:hover {
  box-shadow: 0 6px 28px rgba(244, 98, 42, 0.55);
}

@media (max-width: 600px) {
  .bdk9-pricing-wrap {
    grid-template-columns: 1fr;
    padding: 32px 16px;
  }
}

/* Nav styles are now global in site-branding.css — no homepage-specific overrides needed. */

.bdk9-main-header {
  position: relative;
  z-index: 50;
  background: rgba(241, 236, 229, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.bdk9-header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 0;
}

.bdk9-logo {
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.bdk9-main-nav ul {
  display: flex;
  list-style: none;
  gap: 24px;
  margin: 0;
  padding: 0;
}

.bdk9-main-nav a {
  text-decoration: none;
  color: var(--muted);
  font-weight: 600;
  transition: color 0.2s ease;
}

.bdk9-main-nav a:hover {
  color: #1f252b;
}

.bdk9-btn {
  display: inline-block;
  border-radius: 6px;
  padding: 14px 24px;
  text-decoration: none;
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 0.82rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  border: 2px solid transparent;
  transition: background 0.2s, color 0.2s, transform 0.15s;
}

.bdk9-btn:hover {
  transform: translateY(-1px);
}

.bdk9-btn-primary,
.bdk9-btn-orange {
  background: var(--orange);
  color: #fff;
}

.bdk9-btn-primary:hover,
.bdk9-btn-orange:hover {
  background: var(--orange-h);
  color: #fff;
}

.bdk9-btn-secondary {
  background: var(--orange);
  color: #fff;
}

.bdk9-btn-secondary:hover {
  background: var(--orange-h);
  color: #fff;
}

.bdk9-btn-outline {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.6);
  color: #fff;
}

.bdk9-btn-outline:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

/* ---- Hero — full-bleed image with overlay ---- */
.bdk9-hero-section {
  position: relative;
  min-height: 440px;
  background-color: var(--navy);
  background-size: cover;
  background-position: center 20%;
  background-repeat: no-repeat;
  padding: 90px 0 100px;
  display: flex;
  align-items: center;
}

.bdk9-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(15, 22, 40, 0.78) 45%, rgba(15, 22, 40, 0.15) 100%);
  pointer-events: none;
}

.bdk9-hero-section .bdk9-container {
  position: relative;
  z-index: 2;
}

.bdk9-hero-content {
  max-width: 520px;
}

.bdk9-hero-content h1 {
  font-size: clamp(2rem, 4.2vw, 3.2rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: #ffffff;
  margin: 0 0 20px;
}

.bdk9-hero-content p {
  font-size: 1rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.88);
  margin: 0 0 28px;
  max-width: 52ch;
}

.bdk9-hero-ctas {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.bdk9-link-secondary {
  display: inline-block;
  color: #ffffff;
  font-weight: 700;
  font-size: 0.88rem;
  text-decoration: underline;
  text-underline-offset: 4px;
  letter-spacing: 0.02em;
}

.bdk9-link-secondary:hover {
  color: rgba(255, 255, 255, 0.72);
}

/* ---- Beta / Founder section ---- */
.bdk9-beta-section {
  background: var(--bg-light);
  padding: 48px 0;
}

.bdk9-beta-cta-wrap {
  text-align: center;
}

/* ---- Hybrid section ---- */
.bdk9-hybrid-section {
  background: #ffffff;
  padding: 80px 0;
  text-align: center;
}

.bdk9-eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 10px;
}

.bdk9-hybrid-section h2 {
  font-size: clamp(1.6rem, 3.2vw, 2.2rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--navy);
  margin: 0 0 52px;
  line-height: 1.1;
}

.bdk9-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  text-align: center;
}

.bdk9-grid article {
  padding: 8px 12px;
  min-width: 0;
}

.bdk9-grid-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 16px;
  color: var(--navy);
}

.bdk9-grid-icon svg {
  width: 100%;
  height: 100%;
}

.bdk9-grid h3 {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: 0 0 10px;
  line-height: 1.4;
}

.bdk9-grid h3 span {
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
}

.bdk9-grid p {
  font-size: 0.93rem;
  color: var(--muted);
  line-height: 1.65;
  margin: 0;
}

/* ---- Footer CTA ---- */
.bdk9-footer-cta {
  background: var(--navy);
  padding: 72px 0;
  text-align: center;
}

.bdk9-footer-cta h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 900;
  text-transform: uppercase;
  color: #ffffff;
  margin: 0 0 14px;
  letter-spacing: 0.04em;
}

.bdk9-footer-cta p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 1rem;
  margin: 0 0 28px;
}

.bdk9-footer-buttons {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ================================================================
   FOUNDER / MEET THE FOUNDER SECTION
   ================================================================ */

.bdk9-founder-section {
  background: #ffffff;
  padding: 80px 0;
}

.bdk9-founder-inner {
  display: grid;
  grid-template-columns: min(400px, 40%) 1fr;
  gap: 64px;
  align-items: center;
}

/* --- Photo column --- */
.bdk9-founder-photo-wrap {
  flex-shrink: 0;
  min-width: 0;
}

.bdk9-founder-bio {
  min-width: 0;
}

.bdk9-founder-photo {
  display: block;
  width: 100%;
  max-width: 400px;
  aspect-ratio: 1 / 1;
  border-radius: 16px;
  object-fit: cover;
  box-shadow: 0 8px 32px rgba(26, 39, 68, 0.12);
}

.bdk9-founder-photo--placeholder {
  background: #f3f5f8;
  border: 2px dashed #c5cad3;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #b0b8c4;
}

.bdk9-founder-photo--placeholder svg {
  width: 72px;
  height: 72px;
}

/* --- Bio column --- */
.bdk9-founder-bio .bdk9-eyebrow {
  margin-bottom: 12px;
}

.bdk9-founder-bio h2 {
  font-size: clamp(1.35rem, 2.4vw, 1.9rem);
  font-weight: 900;
  color: #1a2744;
  line-height: 1.15;
  letter-spacing: 0.01em;
  margin-bottom: 20px;
}

.bdk9-founder-body {
  font-size: 1rem;
  line-height: 1.8;
  color: #555e6d;
  margin-bottom: 32px;
  max-width: 52ch;
}

/* --- Signature block --- */
.bdk9-founder-sig {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-top: 22px;
  border-top: 1px solid #e2e6ed;
}

.bdk9-founder-sig__name {
  font-family: 'Dancing Script', cursive;
  font-size: 2.2rem;
  font-weight: 700;
  color: #1a2744;
  line-height: 1.2;
}

.bdk9-founder-sig__title {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #f4622a;
}

/* Homepage layout / sidebar overrides */
.home #secondary,
.home .widget-area,
.home .sidebar,
.home .widget_recent_entries,
.home .widget_recent_comments,
.home .widget_search {
  display: none !important;
}

.home #primary,
.home .content-area,
.home .site-main {
  width: 100% !important;
  max-width: none !important;
  margin-right: 0 !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}

/* Allow homepage sections to break out of theme's .entry-content max-width */
.home .entry-content .bdk9-homepage,
.home .page-content .bdk9-homepage {
  max-width: none !important;
  width: 100% !important;
}

@media (max-width: 900px) {
  .bdk9-hero-section {
    padding: 64px 0 72px;
    min-height: 320px;
  }

  .bdk9-hero-content h1 {
    font-size: 2rem;
  }

  .bdk9-hero-ctas {
    flex-direction: column;
    align-items: flex-start;
  }

  .bdk9-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .bdk9-footer-buttons {
    flex-direction: column;
    align-items: center;
  }

  .bdk9-founder-inner {
    gap: 40px;
  }
}

@media (max-width: 640px) {
  .bdk9-hybrid-section,
  .bdk9-founder-section {
    padding: 56px 0;
  }

  .bdk9-grid {
    grid-template-columns: 1fr;
  }

  .bdk9-founder-inner {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
  }

  .bdk9-founder-photo-wrap {
    display: flex;
    justify-content: center;
  }

  .bdk9-founder-photo {
    max-width: 260px;
  }

  .bdk9-founder-body {
    max-width: none;
  }

  .bdk9-founder-sig {
    align-items: center;
  }
}
