/* =====================================================
   Bridge Playbook — Global Design System
   MOBILE-FIRST: base styles target small screens,
   min-width breakpoints scale up progressively.
   Senior-optimized: large text, generous spacing,
   high contrast, large touch targets
   ===================================================== */

/* RESET */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

/* DESIGN TOKENS */
:root {
  --bg-base:    #07101c;
  --bg-nav:     #040c17;
  --bg-surface: #0c1928;
  --bg-card:    #0f1e32;
  --bg-card2:   #122240;
  --gold:       #d4a843;
  --gold-dim:   rgba(212,168,67,0.14);
  --gold-bdr:   rgba(212,168,67,0.32);
  --text:       #f0eeea;
  --text-muted: rgba(240,238,234,0.62);
  --text-dim:   rgba(240,238,234,0.35);
  --border:     #1a2f48;
  --border2:    #243c5a;
  --red:        #c94040;
  --green:      #3dca78;
  --nav-h:      72px;
  --max-w:      1280px;
  --max-w-text: 760px;
  --r-sm:       8px;
  --r-md:       14px;
  --r-lg:       20px;
}

/* BASE — mobile default */
body {
  font-family: 'Source Sans 3', 'Segoe UI', Helvetica, sans-serif;
  background: var(--bg-base);
  color: var(--text);
  font-size: 17px;
  line-height: 1.85;
  overflow-x: hidden;
}
img  { max-width: 100%; height: auto; display: block; }
a    { color: var(--gold); text-decoration: none; }
a:hover { text-decoration: underline; text-underline-offset: 3px; }
p    { margin-bottom: 1.1em; }
p:last-child { margin-bottom: 0; }
strong { font-weight: 700; }

@media (min-width: 421px) {
  body { font-size: 19px; }
}

/* HEADINGS */
h1,h2,h3,h4,h5 {
  font-family: 'Libre Baskerville', Georgia, serif;
  line-height: 1.2;
  color: #fff;
}
h1 { font-size: clamp(30px, 5vw, 56px); }
h2 { font-size: clamp(24px, 3.5vw, 40px); margin-bottom: 0.45em; }
h3 { font-size: clamp(19px, 2.5vw, 24px); margin-bottom: 0.35em; }
h4 { font-size: clamp(17px, 2vw, 21px); margin-bottom: 0.25em; }

/* ACCESSIBILITY */
.bp-visually-hidden {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; }

/* =========================================
   NAVIGATION — mobile-first
   ========================================= */
.bp-nav {
  background: var(--bg-nav);
  border-bottom: 1px solid var(--border);
  position: sticky; top: 0; z-index: 100;
  height: var(--nav-h);
}
.bp-nav-inner {
  max-width: var(--max-w); margin: 0 auto;
  padding: 0 20px; height: 100%;
  display: flex; align-items: center;
  justify-content: space-between; gap: 20px;
}

@media (min-width: 861px) {
  .bp-nav-inner { padding: 0 28px; }
}

/* Logo */
.bp-logo {
  display: flex; align-items: center; gap: 12px;
  text-decoration: none; flex-shrink: 0;
}
.bp-logo:hover { text-decoration: none; }
.bp-logo-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  background: var(--gold); color: #040c17;
  border-radius: 10px; display: flex;
  align-items: center; justify-content: center;
  font-size: 26px; font-weight: 700;
  line-height: 1;
}
.bp-logo-name {
  font-family: 'Libre Baskerville', serif;
  font-size: 20px; font-weight: 700;
  color: #fff; line-height: 1.1;
}
.bp-logo-tag {
  font-size: 13px; color: var(--gold);
  font-family: 'Source Sans 3', sans-serif;
  display: none;
}

@media (min-width: 421px) {
  .bp-logo-tag { display: block; }
}

/* Nav links — hidden on mobile, shown on desktop */
.bp-nav-links {
  display: none;
  align-items: center; gap: 2px;
  list-style: none;
}

@media (min-width: 861px) {
  .bp-nav-links { display: flex; }
}

.bp-nav-link {
  font-size: 17px; font-weight: 600;
  color: var(--text-muted); padding: 10px 15px;
  border-radius: var(--r-sm); transition: color .15s, background .15s;
  white-space: nowrap; text-decoration: none; display: block;
}
.bp-nav-link:hover, .bp-nav-link.active {
  color: #fff; background: rgba(255,255,255,0.07);
  text-decoration: none;
}
.bp-nav-cta {
  background: var(--gold) !important; color: #040c17 !important;
  font-weight: 700; border-radius: var(--r-sm);
  padding: 11px 20px !important;
}
.bp-nav-cta:hover { opacity: .9; background: var(--gold) !important; }

/* Hamburger — shown on mobile, hidden on desktop */
.bp-hamburger {
  display: flex; background: none; border: 2px solid var(--border2);
  cursor: pointer; padding: 10px; border-radius: 8px;
  flex-direction: column; gap: 5px; flex-shrink: 0;
  min-width: 48px; min-height: 48px;
  align-items: center; justify-content: center;
}
.bp-hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--text); border-radius: 2px; transition: .2s;
}
.bp-hamburger[aria-expanded="true"] span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.bp-hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.bp-hamburger[aria-expanded="true"] span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

@media (min-width: 861px) {
  .bp-hamburger { display: none; }
}

/* Mobile menu */
.bp-mobile-menu {
  display: none; position: fixed;
  top: var(--nav-h); left: 0; right: 0; bottom: 0;
  background: var(--bg-nav); padding: 28px 24px;
  flex-direction: column; gap: 0; overflow-y: auto;
  z-index: 99; border-top: 1px solid var(--border);
}
.bp-mobile-menu.is-open { display: flex; }
.bp-mobile-link {
  font-size: 22px; font-weight: 600; color: var(--text);
  padding: 18px 0; border-bottom: 1px solid var(--border);
  text-decoration: none; display: flex;
  align-items: center; min-height: 56px;
}
.bp-mobile-link:hover { color: var(--gold); text-decoration: none; }
.bp-mobile-link.cta-mobile {
  color: var(--gold); font-weight: 700;
  border: 2px solid var(--gold-bdr);
  border-radius: var(--r-md); margin-top: 20px;
  padding: 18px 24px; text-align: center;
  background: var(--gold-dim); justify-content: center;
}

/* =========================================
   DROPDOWN NAVIGATION
   ========================================= */
.bp-nav-item { position: relative; }
.bp-has-dropdown { display: flex !important; align-items: center; gap: 5px; }
.bp-nav-chevron {
  font-size: 11px; display: inline-block;
  transition: transform .2s ease; line-height: 1; opacity: .7;
}
.bp-nav-item:hover .bp-nav-chevron { transform: rotate(180deg); }
.bp-dropdown {
  position: absolute; top: calc(100% + 8px);
  left: 50%; transform: translateX(-50%) translateY(-8px);
  background: var(--bg-nav); border: 1px solid var(--border2);
  border-radius: var(--r-md); padding: 8px; min-width: 240px;
  box-shadow: 0 24px 56px rgba(0,0,0,.6), 0 0 0 1px rgba(255,255,255,.04);
  opacity: 0; pointer-events: none;
  transition: opacity .18s ease, transform .18s ease;
  z-index: 200;
}
.bp-dropdown::before {
  content: ''; position: absolute; top: -6px; left: 50%;
  transform: translateX(-50%);
  border: 6px solid transparent;
  border-top: 0; border-bottom-color: var(--border2);
}
.bp-dropdown::after {
  content: ''; position: absolute;
  top: -14px; left: 0; right: 0; height: 16px;
}
.bp-nav-item:hover .bp-dropdown {
  opacity: 1; pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.bp-dropdown-link {
  display: block; padding: 10px 14px;
  font-size: 16px; font-weight: 600;
  color: var(--text-muted); border-radius: var(--r-sm);
  text-decoration: none; white-space: nowrap;
  transition: color .12s, background .12s;
}
.bp-dropdown-link:hover { color: #fff; background: rgba(255,255,255,.07); text-decoration: none; }
.bp-dropdown-hub {
  color: var(--gold) !important; font-size: 15px; font-weight: 700;
  border-bottom: 1px solid var(--border); margin-bottom: 4px;
  padding-bottom: 12px !important;
}
.bp-dropdown-hub:hover { background: var(--gold-dim) !important; color: var(--gold) !important; }
/* Mega-menu (wide two-column dropdown) */
.bp-dropdown-wide {
  min-width: 480px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
}
.bp-dd-col { padding: 4px; }
.bp-dd-label {
  display: block; font-size: 11px; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--text-dim); padding: 8px 14px 6px;
  font-family: 'Source Sans 3', sans-serif;
}
.bp-dd-divider { width: 1px; background: var(--border); margin: 8px 0; }
/* Right-aligned dropdown */
.bp-dropdown.bp-dropdown-right {
  left: auto; right: 0;
  transform: translateX(0) translateY(-8px);
}
.bp-nav-item:hover .bp-dropdown.bp-dropdown-right {
  transform: translateX(0) translateY(0);
}
.bp-dropdown.bp-dropdown-right::before { left: auto; right: 26px; transform: none; }

/* ---- Mobile sub-sections ---- */
.bp-mobile-section { border-bottom: 1px solid var(--border); }
.bp-mobile-section-toggle {
  width: 100%; background: none; border: none; cursor: pointer;
  font-size: 22px; font-weight: 600; color: var(--text);
  padding: 18px 0; display: flex; align-items: center;
  justify-content: space-between; min-height: 56px;
  font-family: 'Source Sans 3', 'Segoe UI', sans-serif;
}
.bp-mobile-section-toggle:hover { color: var(--gold); }
.bp-mobile-section-toggle .bp-nav-chevron { font-size: 14px; opacity: 1; }
.bp-mobile-section.is-open .bp-mobile-section-toggle .bp-nav-chevron { transform: rotate(180deg); }
.bp-mobile-sub {
  display: none; flex-direction: column;
  padding: 0 0 14px 0; gap: 2px;
}
.bp-mobile-sub.is-open { display: flex; }
.bp-mobile-sub-link {
  font-size: 18px; font-weight: 500; color: var(--text-muted);
  padding: 11px 16px; text-decoration: none; display: block;
  border-radius: var(--r-sm); transition: color .12s, background .12s;
}
.bp-mobile-sub-link:hover { color: #fff; background: rgba(255,255,255,.07); text-decoration: none; }
.bp-mobile-sub-link.sub-hub {
  color: var(--gold); font-weight: 700; font-size: 16px;
}
.bp-mobile-sub-link.sub-hub:hover { background: var(--gold-dim); }

/* =========================================
   EXTRA CONTENT SECTION
   ========================================= */
.bp-extra-section {
  background: var(--bg-surface);
  border-top: 1px solid var(--border);
  padding: 56px 0;
}
.bp-extra-inner {
  max-width: var(--max-w-text);
}
.bp-extra-heading {
  font-family: 'Libre Baskerville', Georgia, serif;
  font-size: clamp(20px, 3vw, 28px);
  color: #fff; margin: 0 0 18px;
}
.bp-extra-body p {
  font-size: 17px; color: var(--text-muted);
  line-height: 1.85; margin-bottom: 1em;
}
.bp-extra-body p:last-child { margin-bottom: 0; }

/* =========================================
   BREADCRUMB
   ========================================= */
.bp-breadcrumb {
  background: var(--bg-nav); border-bottom: 1px solid var(--border);
}
.bp-breadcrumb-inner {
  max-width: var(--max-w); margin: 0 auto;
  padding: 14px 20px; display: flex;
  align-items: center; gap: 8px; flex-wrap: wrap;
  font-size: 16px; color: var(--text-muted);
}
.bp-breadcrumb-inner a { color: var(--gold); }
.bp-breadcrumb-inner a:hover { text-decoration: underline; }
.bp-bc-sep { opacity: .45; }

@media (min-width: 861px) {
  .bp-breadcrumb-inner { padding-left: 28px; padding-right: 28px; }
}

/* =========================================
   BUTTONS — mobile-first
   ========================================= */
.bp-btn {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 52px; padding: 12px 24px;
  border-radius: var(--r-sm); font-size: 17px; font-weight: 700;
  font-family: 'Source Sans 3', sans-serif;
  cursor: pointer; border: 2px solid transparent;
  transition: opacity .15s, transform .1s;
  text-decoration: none; white-space: nowrap; line-height: 1.2;
}
.bp-btn:hover { text-decoration: none; opacity: .88; }
.bp-btn:active { transform: translateY(1px); }
.bp-btn-primary { background: var(--gold); color: #040c17; border-color: var(--gold); }
.bp-btn-ghost   { background: transparent; color: #fff; border-color: rgba(255,255,255,.34); }
.bp-btn-ghost:hover { border-color: rgba(255,255,255,.7); opacity: 1; }
.bp-btn-outline { background: transparent; color: var(--gold); border-color: var(--gold-bdr); }
.bp-btn-outline:hover { background: var(--gold-dim); opacity: 1; }
.bp-btn-sm      { min-height: 44px; padding: 10px 22px; font-size: 16px; }

@media (min-width: 641px) {
  .bp-btn { min-height: 56px; padding: 14px 34px; font-size: 18px; }
}

/* =========================================
   LAYOUT HELPERS — mobile-first
   ========================================= */
.bp-page-wrap { max-width: var(--max-w); margin: 0 auto; padding: 0 20px; }
.bp-section   { padding: 56px 16px; }
.bp-section-inner { max-width: var(--max-w); margin: 0 auto; }

.bp-section-header { text-align: center; margin-bottom: 36px; }
.bp-section-label {
  font-size: 13px; color: var(--gold); font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase;
  margin-bottom: 14px; font-family: 'Source Sans 3', sans-serif;
  display: block;
}
.bp-section-title {
  font-family: 'Libre Baskerville', serif;
  font-size: clamp(26px, 4vw, 42px);
  color: #fff; line-height: 1.2; margin-bottom: 18px;
}
.bp-section-sub {
  font-size: clamp(17px, 1.8vw, 21px);
  color: var(--text-muted); max-width: 640px;
  line-height: 1.75; margin: 0 auto;
}

@media (min-width: 641px) {
  .bp-section { padding: 64px 20px; }
  .bp-section-header { margin-bottom: 56px; }
}

@media (min-width: 861px) {
  .bp-section { padding: 88px 28px; }
  .bp-page-wrap { padding: 0 28px; }
}

/* =========================================
   ARTICLE/HUB HERO — mobile-first
   ========================================= */
.bp-article-hero {
  background: linear-gradient(135deg, #050d18 0%, #0f1d3a 60%, #0d1e38 100%);
  padding: 48px 16px 40px; border-bottom: 1px solid var(--border);
}
.bp-article-hero .bp-page-wrap { max-width: var(--max-w); }
.bp-hero-label {
  font-size: 14px; color: var(--gold); font-weight: 700;
  letter-spacing: .16em; text-transform: uppercase;
  margin-bottom: 18px; font-family: 'Source Sans 3', sans-serif;
  display: block;
}
.bp-article-hero h1 {
  font-family: 'Libre Baskerville', serif;
  font-size: clamp(28px, 5vw, 52px);
  font-weight: 700; line-height: 1.12;
  margin-bottom: 22px; color: #fff;
  max-width: var(--max-w-text);
}
.bp-hero-standfirst {
  font-size: clamp(18px, 2vw, 22px);
  color: rgba(255,255,255,.82); line-height: 1.75;
  max-width: 680px; margin-bottom: 32px;
}
.bp-hero-ctas {
  display: flex; gap: 16px; flex-wrap: wrap;
  flex-direction: column;
}
.bp-hero-ctas .bp-btn { width: 100%; justify-content: center; }

@media (min-width: 641px) {
  .bp-hero-ctas { flex-direction: row; }
  .bp-hero-ctas .bp-btn { width: auto; }
}

@media (min-width: 861px) {
  .bp-article-hero { padding: 72px 28px 64px; }
}

.bp-hero-meta {
  display: flex; gap: 10px; flex-wrap: wrap;
  margin-top: 24px; font-size: 15px; color: var(--text-muted);
}
.bp-hero-meta span { white-space: nowrap; }

/* =========================================
   QUICK ANSWER BOX
   ========================================= */
.bp-quick-answer {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-left: 5px solid var(--gold);
  border-radius: 0 var(--r-md) var(--r-md) 0;
  padding: 22px 24px; margin-bottom: 48px;
  font-size: 19px; line-height: 1.8;
}
.bp-quick-answer strong { color: var(--gold); }

@media (min-width: 861px) {
  .bp-quick-answer { padding: 26px 30px; }
}

/* =========================================
   CONTENT BLOCKS — mobile-first
   ========================================= */
.bp-block {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--r-md); padding: 28px 22px; margin-bottom: 32px;
}
.bp-block h2 {
  font-family: 'Libre Baskerville', serif;
  font-size: clamp(20px, 3vw, 28px);
  color: #fff; margin-bottom: 16px;
  padding-bottom: 14px; border-bottom: 2px solid var(--border);
}
.bp-block p { color: var(--text-muted); font-size: 18px; margin-bottom: 1em; }
.bp-block p:last-child { margin-bottom: 0; }

@media (min-width: 861px) {
  .bp-block { padding: 36px 32px; }
}

/* =========================================
   STEPS — mobile-first
   ========================================= */
.bp-steps { display: flex; flex-direction: column; gap: 14px; }
.bp-step {
  display: flex; gap: 14px; align-items: flex-start;
  background: var(--bg-surface); border: 1px solid var(--border);
  border-radius: var(--r-md); padding: 18px 16px;
}
.bp-step-num {
  flex-shrink: 0; width: 40px; height: 40px;
  background: var(--gold); color: #040c17;
  border-radius: 50%; display: flex; align-items: center;
  justify-content: center; font-weight: 700; font-size: 18px;
  font-family: 'Libre Baskerville', serif;
}
.bp-step h4 { color: #fff; font-size: 19px; margin-bottom: 6px; }
.bp-step p  { color: var(--text-muted); font-size: 17px; margin: 0; }
.bp-step a  { color: var(--gold); }

@media (min-width: 641px) {
  .bp-step { padding: 24px; gap: 20px; }
  .bp-step-num { width: 46px; height: 46px; font-size: 20px; }
}

/* =========================================
   CLUSTER GRID — mobile-first (1 col base)
   ========================================= */
.bp-cluster-grid {
  display: grid; grid-template-columns: 1fr;
  gap: 20px; margin: 28px 0;
}
.bp-cluster-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--r-md); padding: 28px 26px;
  transition: border-color .2s, transform .15s;
  display: flex; flex-direction: column;
}
.bp-cluster-card:hover { border-color: var(--gold-bdr); transform: translateY(-2px); }
.bp-cluster-card-icon { font-size: 30px; margin-bottom: 12px; }
.bp-cluster-card h3 {
  font-family: 'Libre Baskerville', serif;
  font-size: 20px; color: #fff; margin-bottom: 10px; margin-top: 8px;
}
.bp-cluster-card h3 a { color: #fff; text-decoration: none; }
.bp-cluster-card h3 a:hover { color: var(--gold); }
.bp-cluster-card p  {
  font-size: 17px; color: var(--text-muted);
  line-height: 1.75; flex: 1; margin-bottom: 16px;
}
.bp-cluster-link {
  color: var(--gold); font-size: 16px; font-weight: 700;
  display: inline-flex; align-items: center; gap: 4px; margin-top: auto;
}
.bp-cluster-link:hover { text-decoration: underline; }

@media (min-width: 641px) {
  .bp-cluster-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1101px) {
  .bp-cluster-grid { grid-template-columns: repeat(3, 1fr); }
}

/* LEVEL BADGES */
.bp-cluster-badge {
  display: inline-block; font-size: 12px; font-weight: 700;
  padding: 4px 13px; border-radius: 20px;
  text-transform: uppercase; letter-spacing: .06em;
}
.badge-beginner   { background: rgba(39,174,96,.15);  color: #3dca78; }
.badge-intermediate { background: rgba(52,152,219,.15); color: #5bb8eb; }
.badge-advanced   { background: rgba(212,168,67,.15); color: var(--gold); }
.badge-essential  { background: rgba(39,174,96,.15);  color: #3dca78; }

/* =========================================
   FAQ ACCORDION
   ========================================= */
.bp-faq-list { display: flex; flex-direction: column; gap: 10px; }
.bp-faq-item {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--r-sm); overflow: hidden;
}
.bp-faq-q {
  width: 100%; background: none; border: none;
  padding: 22px 26px; display: flex;
  justify-content: space-between; align-items: center;
  gap: 16px; cursor: pointer; text-align: left;
  transition: background .15s;
}
.bp-faq-q:hover { background: rgba(255,255,255,.04); }
.bp-faq-q-text {
  font-size: 18px; font-weight: 600; color: #fff;
  line-height: 1.4; flex: 1;
}
.bp-faq-icon {
  font-size: 24px; color: var(--gold); flex-shrink: 0;
  transition: transform .2s; font-weight: 300; line-height: 1;
}
.bp-faq-q[aria-expanded="true"] .bp-faq-icon { transform: rotate(45deg); }
.bp-faq-a {
  padding: 0 26px 22px; font-size: 17px;
  color: var(--text-muted); line-height: 1.82;
}
.bp-faq-a p { margin: 0; }

/* =========================================
   NEWSLETTER (temporarily hidden)
   ========================================= */
.bp-newsletter,
#newsletter { display: none !important; }

.bp-newsletter {
  background: linear-gradient(135deg,#0a1834 0%,#0d2040 100%);
  border: 1px solid var(--border); border-radius: var(--r-lg);
  padding: 28px 18px; margin-top: 36px;
}
.bp-newsletter-grid {
  display: grid; grid-template-columns: 1fr;
  gap: 32px; align-items: center;
}
.bp-newsletter-grid h2 {
  font-family: 'Libre Baskerville', serif;
  font-size: clamp(22px, 3vw, 32px);
  color: #fff; margin-bottom: 14px;
}
.bp-newsletter-grid > div > p {
  font-size: 18px; color: rgba(255,255,255,.75);
  line-height: 1.75; margin-bottom: 22px;
}
.bp-newsletter-tags { display: flex; flex-wrap: wrap; gap: 10px; }
.bp-nl-tag {
  font-size: 14px; border-radius: 20px; padding: 7px 18px;
  font-weight: 600; background: var(--gold-dim);
  color: var(--gold); border: 1px solid var(--gold-bdr);
}
.bp-nl-form { display: flex; flex-direction: column; gap: 12px; }
.bp-nl-form label {
  font-size: 17px; color: rgba(255,255,255,.7); display: block;
}
.bp-nl-form input[type="email"] {
  width: 100%; padding: 18px 20px;
  border-radius: var(--r-sm); border: 2px solid rgba(255,255,255,.15);
  background: rgba(255,255,255,.07); color: #fff;
  font-size: 18px; font-family: 'Source Sans 3', sans-serif;
  outline: none; transition: border-color .2s;
}
.bp-nl-form input[type="email"]:focus { border-color: var(--gold); }
.bp-nl-form input::placeholder { color: rgba(255,255,255,.32); }
.bp-nl-form button {
  width: 100%; padding: 18px; background: var(--gold);
  color: #040c17; border: none; border-radius: var(--r-sm);
  font-size: 19px; font-weight: 700; cursor: pointer;
  min-height: 58px; font-family: 'Source Sans 3', sans-serif;
  transition: opacity .15s;
}
.bp-nl-form button:hover { opacity: .9; }
.bp-nl-note {
  font-size: 14px; color: rgba(255,255,255,.32);
  text-align: center; display: block;
}

@media (min-width: 861px) {
  .bp-newsletter { padding: 52px; margin-top: 48px; }
  .bp-newsletter-grid { grid-template-columns: 1fr 400px; gap: 56px; }
}

/* =========================================
   TABLES — mobile-first with scroll
   ========================================= */
.bp-table-wrap {
  overflow-x: auto; -webkit-overflow-scrolling: touch;
  border-radius: var(--r-md); border: 1px solid var(--border);
}
table { width: 100%; border-collapse: collapse; font-size: 16px; }
thead th {
  background: var(--bg-surface); color: var(--gold);
  padding: 12px 14px; text-align: left;
  border-bottom: 2px solid var(--border);
  font-family: 'Libre Baskerville', serif;
  font-size: 14px; font-weight: 700; white-space: nowrap;
}
tbody td {
  padding: 12px 14px; border-bottom: 1px solid var(--border);
  color: var(--text-muted); vertical-align: top;
}
tbody tr:last-child td { border-bottom: none; }
tbody tr:hover td { background: rgba(255,255,255,.025); }
.td-yes  { color: var(--green); font-weight: 700; font-size: 19px; }
.td-no   { color: #e06060; font-weight: 700; font-size: 19px; }
.td-part { color: var(--gold); font-weight: 700; }

@media (min-width: 641px) {
  table { font-size: 17px; }
  thead th { padding: 15px 18px; font-size: 16px; }
  tbody td { padding: 14px 18px; }
}

/* =========================================
   FOOTER — mobile-first (1 col base)
   ========================================= */
.bp-footer {
  background: var(--bg-nav); border-top: 1px solid var(--border);
  padding: 48px 16px 36px;
}
.bp-footer-grid {
  max-width: var(--max-w); margin: 0 auto;
  display: grid; grid-template-columns: 1fr;
  gap: 28px; margin-bottom: 52px;
}
.bp-footer-brand {
  font-family: 'Libre Baskerville', serif; font-size: 22px;
  color: var(--gold); font-weight: 700; margin-bottom: 14px;
  display: flex; align-items: center; gap: 8px;
}
.bp-footer-tagline {
  font-size: 16px; color: var(--text-muted);
  line-height: 1.8; max-width: 340px;
}
.bp-footer-col h4 {
  font-family: 'Source Sans 3', sans-serif; font-size: 13px;
  font-weight: 700; text-transform: uppercase; letter-spacing: .1em;
  color: rgba(255,255,255,.6); margin-bottom: 18px;
}
.bp-footer-col a {
  display: block; color: var(--text-muted); font-size: 17px;
  margin-bottom: 12px; transition: color .15s; line-height: 1.3;
}
.bp-footer-col a:hover { color: var(--gold); text-decoration: none; }
.bp-footer-bottom {
  max-width: var(--max-w); margin: 0 auto; padding-top: 28px;
  border-top: 1px solid var(--border); display: flex;
  justify-content: space-between; align-items: center;
  gap: 16px; flex-wrap: wrap;
}
.bp-footer-copy { font-size: 15px; color: var(--text-dim); }
.bp-footer-copy a { color: var(--text-dim); }
.bp-footer-copy a:hover { color: var(--gold); }
.bp-footer-suits { font-size: 22px; color: var(--text-dim); letter-spacing: 6px; }

@media (min-width: 641px) {
  .bp-footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (min-width: 861px) {
  .bp-footer { padding: 72px 28px 36px; }
  .bp-footer-grid { gap: 48px; }
}

@media (min-width: 1101px) {
  .bp-footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; }
  .bp-footer-grid-5col { grid-template-columns: 2fr 1fr 1fr 1fr 1fr; }
}

/* =========================================
   PLATFORM CARDS — mobile-first (1 col base)
   ========================================= */
.bp-platform-cards {
  display: grid; grid-template-columns: 1fr;
  gap: 22px; margin: 28px 0;
  max-width: 540px;
}
.bp-platform-card {
  background: var(--bg-card2); border: 2px solid var(--border);
  border-radius: var(--r-md); padding: 32px 28px;
  display: flex; flex-direction: column; gap: 14px;
  transition: border-color .2s;
}
.bp-platform-card:hover { border-color: var(--gold-bdr); }
.bp-platform-card-header {
  display: flex; justify-content: space-between; align-items: flex-start;
}
.bp-platform-card-rating { color: var(--gold); font-size: 18px; font-weight: 700; }
.bp-platform-card-badge {
  background: var(--gold-dim); border: 1px solid var(--gold-bdr);
  color: var(--gold); font-size: 12px; font-weight: 700;
  border-radius: 20px; padding: 4px 12px;
  white-space: nowrap;
}
.bp-platform-card-name {
  font-family: 'Libre Baskerville', serif;
  font-size: 22px; color: #fff; margin: 0;
}
.bp-platform-card-best {
  font-size: 15px; color: var(--gold); font-weight: 600; margin: 0;
}
.bp-platform-card > p { font-size: 17px; color: var(--text-muted); line-height: 1.75; margin: 0; }
.bp-platform-card-highlights {
  list-style: none; font-size: 16px; color: var(--text-muted);
  line-height: 1.9; flex: 1;
}
.bp-platform-card-highlights li { padding: 2px 0; }
.bp-platform-card-pricing {
  display: flex; gap: 10px; align-items: center; flex-wrap: wrap;
}
.bp-price-tag {
  background: rgba(255,255,255,.07); border: 1px solid var(--border2);
  border-radius: 6px; padding: 5px 14px; font-size: 14px;
  color: var(--text-muted); font-weight: 600;
}
.bp-price-tag--paid { background: var(--gold-dim); border-color: var(--gold-bdr); color: var(--gold); }
.bp-price-or { font-size: 13px; color: var(--text-dim); }
.bp-platform-card a.bp-btn-primary {
  display: flex; width: 100%; text-align: center; justify-content: center;
}

@media (min-width: 641px) {
  .bp-platform-cards { max-width: none; }
}

@media (min-width: 861px) {
  .bp-platform-cards { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 1101px) {
  .bp-platform-cards { grid-template-columns: repeat(3, 1fr); }
}

/* =========================================
   REUSABLE CONTENT COMPONENTS
   ========================================= */

/* ---- Image / diagram placeholder ---- */
.bp-figure { margin: 32px 0; }
.bp-figure-ph {
  position: relative; width: 100%; aspect-ratio: 16 / 7;
  border-radius: var(--r-md); border: 1px solid var(--border2);
  background:
    repeating-linear-gradient(135deg, #0c1928 0 14px, #0e1d30 14px 28px);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; text-align: center;
}
.bp-figure-ph span {
  font-family: ui-monospace, 'SF Mono', 'Cascadia Mono', Menlo, monospace;
  font-size: 13px; color: var(--text-muted); letter-spacing: .04em;
  text-transform: uppercase; line-height: 1.6;
  background: var(--bg-nav); padding: 10px 18px;
  border-radius: 8px; border: 1px solid var(--border); max-width: 80%;
}
.bp-figure img { border-radius: var(--r-md); border: 1px solid var(--border2); }
.bp-figure figcaption {
  font-size: 15px; color: var(--text-dim); margin-top: 12px;
  font-style: italic; text-align: center; line-height: 1.6;
}

/* ---- Card-hand diagram ---- */
.bp-hand-label {
  font-size: 13px; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: var(--gold);
  font-family: 'Source Sans 3', sans-serif; margin-bottom: 10px; display: block;
}
.bp-cardhand {
  display: inline-flex; flex-direction: column; gap: 9px;
  background: var(--bg-surface); border: 1px solid var(--border2);
  border-radius: var(--r-md); padding: 16px 18px; margin: 6px 0;
}
.bp-cardhand-row { display: flex; align-items: center; gap: 14px; }
.bp-cardhand-suit {
  width: 28px; font-size: 24px; text-align: center; flex-shrink: 0;
  line-height: 1;
}
.bp-cardhand-suit.red   { color: #e06060; }
.bp-cardhand-suit.black { color: #f0eeea; }
.bp-cardhand-cards { display: flex; gap: 7px; flex-wrap: wrap; }
.bp-card {
  min-width: 26px; height: 38px; padding: 0 7px;
  background: #f4f1ea; border-radius: 5px;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Libre Baskerville', serif; font-size: 17px; font-weight: 700;
  box-shadow: 0 2px 5px rgba(0,0,0,.35);
}
.bp-card.red   { color: #b3261e; }
.bp-card.black { color: #11151c; }
.bp-cardhand-void { color: var(--text-dim); font-size: 16px; font-style: italic; }

@media (min-width: 641px) {
  .bp-cardhand { padding: 22px 26px; }
  .bp-card { min-width: 30px; height: 42px; font-size: 19px; }
}

/* Two hands side by side */
.bp-hands-2 {
  display: flex; gap: 22px; flex-wrap: wrap; margin: 8px 0;
  align-items: flex-start;
}
.bp-hands-2 > div { display: flex; flex-direction: column; }

/* ---- Key takeaways box ---- */
.bp-takeaways {
  background: var(--gold-dim); border: 1px solid var(--gold-bdr);
  border-radius: var(--r-md); padding: 24px 22px; margin: 36px 0;
}
.bp-takeaways h2, .bp-takeaways h3 {
  font-family: 'Libre Baskerville', serif; color: #fff;
  font-size: clamp(19px, 2.6vw, 24px); margin: 0 0 18px;
  padding: 0; border: none;
}
.bp-takeaways ul { list-style: none; display: flex; flex-direction: column; gap: 13px; }
.bp-takeaways li {
  position: relative; padding-left: 32px;
  font-size: 17px; color: var(--text-muted); line-height: 1.7;
}
.bp-takeaways li::before {
  content: '\2660'; position: absolute; left: 2px; top: 1px;
  color: var(--gold); font-size: 17px;
}
.bp-takeaways li strong { color: #fff; }

@media (min-width: 641px) {
  .bp-takeaways { padding: 30px 34px; }
}

/* ---- Common-mistakes list ---- */
.bp-mistakes { list-style: none; display: flex; flex-direction: column; gap: 14px; margin: 10px 0; }
.bp-mistakes li {
  background: var(--bg-surface); border: 1px solid var(--border);
  border-left: 4px solid var(--red); border-radius: 0 var(--r-sm) var(--r-sm) 0;
  padding: 18px 22px; font-size: 17px; color: var(--text-muted); line-height: 1.7;
}
.bp-mistakes li strong { color: #fff; display: block; margin-bottom: 4px; font-size: 18px; }

/* ---- Generic article prose section ---- */
.bp-prose { margin: 0 0 16px; }
.bp-prose h2 {
  font-family: 'Libre Baskerville', serif; font-size: clamp(22px, 3vw, 30px);
  color: #fff; margin: 52px 0 18px; padding-bottom: 14px;
  border-bottom: 2px solid var(--border);
}
.bp-prose h3 {
  font-family: 'Libre Baskerville', serif; font-size: clamp(18px, 2.3vw, 22px);
  color: #fff; margin: 30px 0 12px;
}
.bp-prose p { font-size: 18px; color: var(--text-muted); line-height: 1.85; margin-bottom: 1.1em; }
.bp-prose ul, .bp-prose ol { margin: 0 0 1.2em 1.3em; }
.bp-prose li { font-size: 18px; color: var(--text-muted); line-height: 1.8; margin-bottom: .5em; }
.bp-prose strong { color: #fff; }

/* =========================================
   SCENE ILLUSTRATION
   ========================================= */
.bp-scene {
  position: relative; width: 100%;
  min-height: 200px;
  border-radius: var(--r-md);
  border: 1px solid var(--border2);
  background:
    radial-gradient(120% 140% at 50% -10%, #15324f 0%, #0d1f33 52%, #081320 100%);
  display: flex; align-items: center; justify-content: center;
  gap: 18px; padding: 30px 16px; overflow: hidden;
  flex-wrap: wrap;
}
.bp-scene::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(80% 120% at 50% 120%, rgba(212,168,67,.10) 0%, transparent 60%),
    repeating-linear-gradient(135deg, rgba(255,255,255,.012) 0 22px, transparent 22px 44px);
  pointer-events: none;
}
.bp-scene > * { position: relative; z-index: 1; }

/* Large playing card */
.bp-pcard {
  width: 64px; height: 92px; flex-shrink: 0;
  background: linear-gradient(160deg, #fbf9f4 0%, #efe9dc 100%);
  border-radius: 10px;
  box-shadow: 0 14px 30px rgba(0,0,0,.5), inset 0 0 0 1px rgba(0,0,0,.06);
  display: flex; flex-direction: column; justify-content: space-between;
  padding: 7px 8px; font-family: 'Libre Baskerville', serif;
}
.bp-pcard.red   { color: #b3261e; }
.bp-pcard.black { color: #12161d; }
.bp-pc-tl { font-size: 16px; font-weight: 700; line-height: .9; }
.bp-pc-mid { font-size: 28px; text-align: center; line-height: 1; margin: -4px 0; }
.bp-pc-br { font-size: 16px; font-weight: 700; line-height: .9; align-self: flex-end; transform: rotate(180deg); }

@media (min-width: 641px) {
  .bp-scene { gap: 30px; padding: 38px 28px; min-height: 260px; }
  .bp-pcard { width: 86px; height: 122px; padding: 9px 11px; }
  .bp-pc-tl, .bp-pc-br { font-size: 21px; }
  .bp-pc-mid { font-size: 38px; }
}

/* Fanned cluster of cards */
.bp-fan { display: flex; align-items: flex-end; }
.bp-fan .bp-pcard { margin-left: -26px; transform-origin: bottom center; }
.bp-fan .bp-pcard:first-child { margin-left: 0; }
.bp-fan .bp-pcard:nth-child(1) { transform: rotate(-12deg) translateY(6px); }
.bp-fan .bp-pcard:nth-child(2) { transform: rotate(-4deg);  }
.bp-fan .bp-pcard:nth-child(3) { transform: rotate(4deg);   }
.bp-fan .bp-pcard:nth-child(4) { transform: rotate(12deg) translateY(6px); }
.bp-fan .bp-pcard:nth-child(5) { transform: rotate(20deg) translateY(16px); }

@media (min-width: 641px) {
  .bp-fan .bp-pcard { margin-left: -34px; }
}

/* Signature bid token */
.bp-bidtoken {
  display: inline-flex; flex-direction: column; align-items: center;
  justify-content: center; gap: 4px;
  min-width: 84px; padding: 14px 16px;
  background: var(--gold-dim); border: 1.5px solid var(--gold-bdr);
  border-radius: var(--r-md);
  box-shadow: 0 0 0 6px rgba(212,168,67,.05);
}
.bp-bidtoken-bid {
  font-family: 'Libre Baskerville', serif; font-weight: 700;
  font-size: 30px; color: var(--gold); line-height: 1;
}
.bp-bidtoken-label {
  font-family: 'Source Sans 3', sans-serif; font-size: 12px;
  font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: var(--text-muted);
}
.bp-bidtoken.token-blue { background: rgba(91,151,212,.12); border-color: rgba(91,151,212,.4); box-shadow: 0 0 0 6px rgba(91,151,212,.05); }
.bp-bidtoken.token-blue .bp-bidtoken-bid { color: #6ba8e0; }

@media (min-width: 641px) {
  .bp-bidtoken { min-width: 104px; padding: 18px 22px; }
  .bp-bidtoken-bid { font-size: 40px; }
}

/* Connector arrow between scene elements */
.bp-scene-arrow {
  font-size: 34px; color: var(--gold); line-height: 1;
  display: flex; align-items: center; opacity: .9;
}

/* Small caption chip */
.bp-scene-chip {
  position: absolute; left: 16px; bottom: 14px; z-index: 2;
  font-family: ui-monospace, 'SF Mono', Menlo, monospace;
  font-size: 11px; letter-spacing: .06em; text-transform: uppercase;
  color: var(--text-dim); white-space: nowrap;
  background: rgba(4,12,23,.6); border: 1px solid var(--border);
  padding: 5px 11px; border-radius: 6px;
}

/* Suit row used in some scenes */
.bp-scene-suits { display: flex; gap: 10px; font-size: 40px; line-height: 1; }
.bp-scene-suits .red   { color: #e06060; }
.bp-scene-suits .black { color: #f0eeea; }
