/* ============================================================
   PATRIOT BLACK — Unified Design System
   Version 2.0 | Canonical Brand Tokens
   
   "Ghost Ops. Real Leverage."
   
   Single source of truth for all PB pages.
   Colors, typography, components, layout, and responsive system.
   ============================================================ */

/* ── Google Fonts ── */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700;900&family=Roboto:wght@300;400;500&display=swap');

/* ============================================================
   1. DESIGN TOKENS (CSS Custom Properties)
   ============================================================ */
:root {
  /* ── Core Palette ── */
  --pb-bg:             #0D0D0D;    /* Tactical Black — primary background */
  --pb-bg-deep:        #080808;    /* Deeper black for sections */
  --pb-surface:        #1A1A2E;    /* Card / panel surface */
  --pb-surface-hover:  #222240;    /* Card hover state */
  --pb-federal:        #041E42;    /* Federal Blue — depth layers */
  --pb-federal-light:  #0A2A5C;    /* Federal Blue lighter */

  /* ── Brand Accents ── */
  --pb-gold:           #D4AF37;    /* Gold Authority — headlines, CTAs */
  --pb-gold-hover:     #B8941F;    /* Gold hover / pressed */
  --pb-gold-light:     #E8C84A;    /* Gold highlight */
  --pb-gold-dim:       rgba(212, 175, 55, 0.15);

  /* ── Text ── */
  --pb-text:           #F5F5F5;    /* Primary text */
  --pb-text-secondary: #CCCCCC;    /* Secondary / body text */
  --pb-text-muted:     #888888;    /* Muted / captions */
  --pb-text-dim:       #666666;    /* Very muted */

  /* ── Borders & Lines ── */
  --pb-border:         #333333;
  --pb-border-subtle:  #222222;
  --pb-border-gold:    rgba(212, 175, 55, 0.25);

  /* ── Status Colors ── */
  --pb-red:            #990000;    /* Alert / urgency */
  --pb-red-light:      #CC2222;
  --pb-green:          #D4AF37;    /* Success */
  --pb-green-light:    #c9a84c;

  /* ── Shadows ── */
  --pb-shadow-sm:      0 2px 8px rgba(0, 0, 0, 0.3);
  --pb-shadow-md:      0 8px 32px rgba(0, 0, 0, 0.4);
  --pb-shadow-lg:      0 16px 64px rgba(0, 0, 0, 0.5);
  --pb-shadow-gold:    0 4px 24px rgba(212, 175, 55, 0.2);

  /* ── Radii ── */
  --pb-radius-sm:      6px;
  --pb-radius-md:      12px;
  --pb-radius-lg:      20px;
  --pb-radius-pill:    999px;

  /* ── Typography ── */
  --pb-font-headline:  'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --pb-font-body:      'Roboto', -apple-system, BlinkMacSystemFont, sans-serif;

  /* ── Layout ── */
  --pb-max-width:      1200px;
  --pb-section-pad:    80px;
  --pb-gutter:         20px;

  /* ── Transitions ── */
  --pb-ease:           cubic-bezier(0.4, 0, 0.2, 1);
  --pb-duration:       0.3s;
}

/* ============================================================
   2. RESET & BASE
   ============================================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: var(--pb-font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.7;
  color: var(--pb-text-secondary);
  background: var(--pb-bg);
  min-height: 100vh;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--pb-text-secondary);
  text-decoration: none;
  transition: color var(--pb-duration) var(--pb-ease);
}

a:hover {
  color: var(--pb-gold);
}

::selection {
  background: var(--pb-gold);
  color: var(--pb-bg);
}

/* ============================================================
   3. TYPOGRAPHY SYSTEM
   ============================================================ */

/* ── Headlines: Inter, ALL-CAPS, tracked ── */
h1, h2, h3, h4, h5, h6,
.pb-headline {
  font-family: var(--pb-font-headline);
  color: var(--pb-text);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  line-height: 1.15;
  font-weight: 900;
}

h1, .pb-h1 {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  letter-spacing: 2px;
}

h2, .pb-h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.6rem);
  font-weight: 700;
  letter-spacing: 1.5px;
}

h3, .pb-h3 {
  font-size: clamp(1.2rem, 2.5vw, 1.8rem);
  font-weight: 700;
  letter-spacing: 1px;
}

h4, .pb-h4 {
  font-size: clamp(1rem, 2vw, 1.3rem);
  font-weight: 600;
  letter-spacing: 1px;
}

/* ── Gold headline accent ── */
.pb-gold-text,
h1 em, h2 em, h3 em {
  color: var(--pb-gold);
  font-style: normal;
}

/* ── Body: Roboto ── */
.pb-body, p {
  font-family: var(--pb-font-body);
  font-weight: 400;
  line-height: 1.7;
  color: var(--pb-text-secondary);
}

.pb-body-light {
  font-weight: 300;
  color: var(--pb-text-muted);
}

.pb-lead {
  font-size: 1.15rem;
  line-height: 1.8;
  color: var(--pb-text-secondary);
  max-width: 680px;
}

.pb-small {
  font-size: 0.85rem;
  color: var(--pb-text-muted);
}

.pb-kicker {
  font-family: var(--pb-font-headline);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--pb-gold);
  margin-bottom: 12px;
  display: block;
}

/* ============================================================
   4. LAYOUT SYSTEM
   ============================================================ */
.pb-container {
  width: 100%;
  max-width: var(--pb-max-width);
  margin: 0 auto;
  padding: 0 var(--pb-gutter);
}

.pb-container--narrow {
  max-width: 800px;
}

.pb-container--wide {
  max-width: 1400px;
}

.pb-section {
  padding: var(--pb-section-pad) 0;
}

.pb-section--dark {
  background: var(--pb-bg-deep);
}

.pb-section--federal {
  background: linear-gradient(180deg, var(--pb-federal) 0%, var(--pb-bg) 100%);
}

.pb-section--surface {
  background: var(--pb-surface);
}

/* ── Grid ── */
.pb-grid {
  display: grid;
  gap: 24px;
}

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

/* ── Flex utilities ── */
.pb-flex {
  display: flex;
  gap: 16px;
}

.pb-flex--center {
  align-items: center;
  justify-content: center;
}

.pb-flex--between {
  justify-content: space-between;
  align-items: center;
}

.pb-flex--col {
  flex-direction: column;
}

.pb-text-center { text-align: center; }

/* ============================================================
   5. HEADER / NAVIGATION
   ============================================================ */
.pb-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(13, 13, 13, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--pb-border-subtle);
  padding: 0 var(--pb-gutter);
}

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

.pb-header__brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--pb-text);
}

.pb-header__logo {
  width: 40px;
  height: 40px;
  background: var(--pb-gold);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--pb-font-headline);
  font-weight: 900;
  font-size: 16px;
  color: var(--pb-bg);
  letter-spacing: 1px;
}

.pb-header__name {
  font-family: var(--pb-font-headline);
  font-weight: 700;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.pb-header__nav {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.pb-header__nav a {
  font-family: var(--pb-font-headline);
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--pb-text-muted);
  transition: color var(--pb-duration) var(--pb-ease);
  text-decoration: none;
}

.pb-header__nav a:hover,
.pb-header__nav a.is-active {
  color: var(--pb-gold);
}

.pb-header__cta {
  display: none;
}

/* ── Mobile Nav Toggle ── */
.pb-header__toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.pb-header__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--pb-text);
  margin: 6px 0;
  transition: all 0.3s;
}

/* ============================================================
   6. BUTTONS
   ============================================================ */
.pb-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--pb-font-headline);
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 16px 36px;
  border-radius: var(--pb-radius-sm);
  border: none;
  cursor: pointer;
  transition: all var(--pb-duration) var(--pb-ease);
  text-decoration: none;
  line-height: 1;
}

/* Primary: Gold CTA */
.pb-btn--primary {
  background: var(--pb-gold);
  color: var(--pb-bg);
  box-shadow: var(--pb-shadow-gold);
}

.pb-btn--primary:hover {
  background: var(--pb-gold-hover);
  color: var(--pb-bg);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(212, 175, 55, 0.35);
}

/* Secondary: Outlined */
.pb-btn--secondary {
  background: transparent;
  color: var(--pb-gold);
  border: 1px solid var(--pb-gold);
}

.pb-btn--secondary:hover {
  background: var(--pb-gold-dim);
  color: var(--pb-gold-light);
  transform: translateY(-2px);
}

/* Ghost: Minimal */
.pb-btn--ghost {
  background: transparent;
  color: var(--pb-text-secondary);
  border: 1px solid var(--pb-border);
}

.pb-btn--ghost:hover {
  border-color: var(--pb-gold);
  color: var(--pb-gold);
}

/* Small variant */
.pb-btn--sm {
  padding: 10px 24px;
  font-size: 0.8rem;
}

/* Large variant */
.pb-btn--lg {
  padding: 20px 48px;
  font-size: 1rem;
}

/* Full width */
.pb-btn--full {
  width: 100%;
}

/* ============================================================
   7. CARDS
   ============================================================ */
.pb-card {
  background: var(--pb-surface);
  border: 1px solid var(--pb-border);
  border-radius: var(--pb-radius-md);
  padding: 32px;
  transition: all var(--pb-duration) var(--pb-ease);
}

.pb-card:hover {
  border-color: var(--pb-border-gold);
  transform: translateY(-4px);
  box-shadow: var(--pb-shadow-md);
}

.pb-card--featured {
  border-color: var(--pb-gold);
  position: relative;
  overflow: hidden;
}

.pb-card--featured::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--pb-gold), var(--pb-gold-light));
}

.pb-card__icon {
  width: 48px;
  height: 48px;
  background: var(--pb-gold-dim);
  border-radius: var(--pb-radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 20px;
}

.pb-card__title {
  font-size: 1.15rem;
  margin-bottom: 12px;
}

.pb-card__text {
  color: var(--pb-text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ============================================================
   8. BADGES & TAGS
   ============================================================ */
.pb-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--pb-font-headline);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 6px 16px;
  border-radius: var(--pb-radius-pill);
  background: var(--pb-gold-dim);
  color: var(--pb-gold);
  border: 1px solid var(--pb-border-gold);
}

.pb-badge--solid {
  background: var(--pb-gold);
  color: var(--pb-bg);
  border-color: var(--pb-gold);
}

.pb-badge--red {
  background: rgba(153, 0, 0, 0.2);
  color: var(--pb-red-light);
  border-color: rgba(153, 0, 0, 0.3);
}

.pb-badge--federal {
  background: rgba(4, 30, 66, 0.5);
  color: #5B9BD5;
  border-color: rgba(4, 30, 66, 0.6);
}

/* ============================================================
   9. HERO SECTIONS
   ============================================================ */
.pb-hero {
  position: relative;
  padding: 100px 0 80px;
  overflow: hidden;
}

.pb-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 20%, rgba(4, 30, 66, 0.4), transparent 50%),
    radial-gradient(circle at 70% 80%, rgba(212, 175, 55, 0.08), transparent 40%);
  pointer-events: none;
}

.pb-hero__content {
  position: relative;
  z-index: 1;
  max-width: 800px;
}

.pb-hero__content--center {
  margin: 0 auto;
  text-align: center;
}

.pb-hero h1 {
  margin-bottom: 24px;
}

.pb-hero .pb-lead {
  margin-bottom: 36px;
}

.pb-hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.pb-hero__content--center .pb-hero__actions {
  justify-content: center;
}

/* ============================================================
   10. PRICING / OFFER CARDS
   ============================================================ */
.pb-offer {
  background: var(--pb-surface);
  border: 1px solid var(--pb-border);
  border-radius: var(--pb-radius-md);
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  transition: all var(--pb-duration) var(--pb-ease);
}

.pb-offer:hover {
  border-color: var(--pb-border-gold);
  transform: translateY(-4px);
  box-shadow: var(--pb-shadow-md);
}

.pb-offer--featured {
  border-color: var(--pb-gold);
  position: relative;
}

.pb-offer--featured::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--pb-gold);
}

.pb-offer__tier {
  margin-bottom: 16px;
}

.pb-offer__name {
  font-size: 1.3rem;
  margin-bottom: 8px;
}

.pb-offer__price {
  font-family: var(--pb-font-headline);
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--pb-text);
  letter-spacing: -1px;
  text-transform: none;
  line-height: 1;
  margin-bottom: 8px;
}

.pb-offer__price-sub {
  font-size: 0.9rem;
  color: var(--pb-text-muted);
  font-weight: 400;
  margin-bottom: 20px;
}

.pb-offer__desc {
  color: var(--pb-text-muted);
  font-size: 0.95rem;
  margin-bottom: 24px;
  line-height: 1.6;
  flex-grow: 1;
}

.pb-offer__features {
  list-style: none;
  margin-bottom: 28px;
}

.pb-offer__features li {
  padding: 8px 0;
  border-bottom: 1px solid var(--pb-border-subtle);
  color: var(--pb-text-secondary);
  font-size: 0.9rem;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.pb-offer__features li::before {
  content: '✓';
  color: var(--pb-gold);
  font-weight: 700;
  flex-shrink: 0;
}

.pb-offer__cta {
  margin-top: auto;
}

/* ============================================================
   11. STATS / PROOF BAR
   ============================================================ */
.pb-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 24px;
  padding: 48px 0;
}

.pb-stat {
  text-align: center;
  padding: 24px 16px;
}

.pb-stat__value {
  font-family: var(--pb-font-headline);
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--pb-gold);
  line-height: 1;
  margin-bottom: 8px;
}

.pb-stat__label {
  font-family: var(--pb-font-headline);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--pb-text-muted);
}

/* ============================================================
   12. DIVIDERS & DECORATIVE
   ============================================================ */
.pb-divider {
  height: 1px;
  background: var(--pb-border);
  border: none;
  margin: 48px 0;
}

.pb-divider--gold {
  background: linear-gradient(90deg, transparent, var(--pb-gold), transparent);
  height: 1px;
}

.pb-gold-line {
  width: 60px;
  height: 3px;
  background: var(--pb-gold);
  border-radius: 2px;
  margin-bottom: 24px;
}

.pb-text-center .pb-gold-line {
  margin-left: auto;
  margin-right: auto;
}

/* ============================================================
   13. FOOTER
   ============================================================ */
.pb-footer {
  border-top: 1px solid var(--pb-border);
  padding: 48px 0 32px;
  background: var(--pb-bg-deep);
}

.pb-footer__inner {
  max-width: var(--pb-max-width);
  margin: 0 auto;
  padding: 0 var(--pb-gutter);
}

.pb-footer__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 40px;
  margin-bottom: 40px;
}

.pb-footer__brand {
  max-width: 320px;
}

.pb-footer__brand-name {
  font-family: var(--pb-font-headline);
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--pb-text);
  margin-bottom: 12px;
}

.pb-footer__brand-desc {
  font-size: 0.9rem;
  color: var(--pb-text-muted);
  line-height: 1.6;
}

.pb-footer__links {
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
}

.pb-footer__col h4 {
  font-size: 0.75rem;
  margin-bottom: 16px;
  color: var(--pb-gold);
}

.pb-footer__col a {
  display: block;
  font-size: 0.85rem;
  color: var(--pb-text-muted);
  margin-bottom: 10px;
  text-decoration: none;
  text-transform: none;
  letter-spacing: 0;
}

.pb-footer__col a:hover {
  color: var(--pb-gold);
}

.pb-footer__bottom {
  border-top: 1px solid var(--pb-border-subtle);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.pb-footer__copy {
  font-size: 0.78rem;
  color: var(--pb-text-dim);
}

.pb-footer__legal {
  display: flex;
  gap: 24px;
}

.pb-footer__legal a {
  font-size: 0.78rem;
  color: var(--pb-text-dim);
  text-decoration: none;
}

.pb-footer__legal a:hover {
  color: var(--pb-gold);
}

/* ============================================================
   14. EARNINGS DISCLAIMER
   ============================================================ */
.pb-disclaimer {
  background: var(--pb-bg-deep);
  border-top: 1px solid var(--pb-border-subtle);
  padding: 32px var(--pb-gutter);
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.pb-disclaimer__title {
  font-family: var(--pb-font-headline);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--pb-text-muted);
  margin-bottom: 8px;
}

.pb-disclaimer p {
  font-size: 0.75rem;
  color: var(--pb-text-dim);
  line-height: 1.6;
}

/* ============================================================
   15. UTILITY CLASSES
   ============================================================ */
.pb-mb-0  { margin-bottom: 0; }
.pb-mb-8  { margin-bottom: 8px; }
.pb-mb-16 { margin-bottom: 16px; }
.pb-mb-24 { margin-bottom: 24px; }
.pb-mb-32 { margin-bottom: 32px; }
.pb-mb-48 { margin-bottom: 48px; }
.pb-mb-64 { margin-bottom: 64px; }

.pb-mt-24 { margin-top: 24px; }
.pb-mt-48 { margin-top: 48px; }

.pb-pt-0  { padding-top: 0; }
.pb-pb-0  { padding-bottom: 0; }

.pb-hide-mobile { display: block; }
.pb-show-mobile { display: none; }

/* ============================================================
   16. RESPONSIVE SYSTEM (Mobile-First)
   ============================================================ */

/* ── Tablet (768px) ── */
@media (max-width: 768px) {
  :root {
    --pb-section-pad: 56px;
    --pb-gutter: 16px;
  }

  .pb-grid--3,
  .pb-grid--4 {
    grid-template-columns: 1fr 1fr;
  }

  .pb-hero {
    padding: 64px 0 48px;
  }

  .pb-header__nav {
    display: none;
  }

  .pb-header__toggle {
    display: block;
  }

  .pb-header__cta {
    display: inline-flex;
  }

  .pb-footer__top {
    flex-direction: column;
  }

  .pb-footer__bottom {
    flex-direction: column;
    text-align: center;
  }

  .pb-hide-mobile {
    display: none;
  }

  .pb-show-mobile {
    display: block;
  }

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

  h1, .pb-h1 {
    font-size: 32px !important;
    line-height: 1.15 !important;
  }

  .pb-hero,
  .hero-section {
    padding: 20px 16px;
  }
}

/* ── Mobile (480px) ── */
@media (max-width: 480px) {
  :root {
    --pb-section-pad: 40px;
  }

  h1, .pb-h1 {
    font-size: 1.8rem;
  }

  h2, .pb-h2 {
    font-size: 1.4rem;
  }

  .pb-grid--2,
  .pb-grid--3,
  .pb-grid--4 {
    grid-template-columns: 1fr;
  }

  .pb-hero__actions {
    flex-direction: column;
  }

  .pb-hero__actions .pb-btn {
    width: 100%;
  }

  .pb-btn {
    padding: 14px 28px;
    font-size: 0.85rem;
  }

  .pb-offer {
    padding: 28px 20px;
  }

  .pb-stats {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .pb-footer__links {
    gap: 32px;
    flex-direction: column;
  }
}

/* ============================================================
   17. MOBILE NAV OVERLAY
   ============================================================ */
.pb-mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(13, 13, 13, 0.98);
  backdrop-filter: blur(20px);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
}

.pb-mobile-nav.is-open {
  display: flex;
}

.pb-mobile-nav a {
  font-family: var(--pb-font-headline);
  font-size: 1.2rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--pb-text);
  text-decoration: none;
}

.pb-mobile-nav a:hover {
  color: var(--pb-gold);
}

.pb-mobile-nav__close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  color: var(--pb-text);
  font-size: 2rem;
  cursor: pointer;
}

/* ============================================================
   18. ANIMATIONS
   ============================================================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.pb-animate {
  animation: fadeUp 0.6s var(--pb-ease) both;
}

.pb-animate-delay-1 { animation-delay: 0.1s; }
.pb-animate-delay-2 { animation-delay: 0.2s; }
.pb-animate-delay-3 { animation-delay: 0.3s; }
.pb-animate-delay-4 { animation-delay: 0.4s; }

/* ============================================================
   19. SACRED GEOMETRY BACKGROUND (Optional decorator)
   ============================================================ */
.pb-geometry {
  position: absolute;
  pointer-events: none;
  opacity: 0.06;
}

.pb-geometry--hero {
  top: -10%;
  right: -5%;
  width: 500px;
  height: 500px;
  background: conic-gradient(from 0deg, transparent, var(--pb-gold), transparent, var(--pb-gold), transparent);
  border-radius: 50%;
  filter: blur(60px);
}

/* ============================================================
   20. CTA BANNER
   ============================================================ */
.pb-cta-banner {
  background: linear-gradient(135deg, var(--pb-federal), var(--pb-surface));
  border: 1px solid var(--pb-border-gold);
  border-radius: var(--pb-radius-lg);
  padding: 56px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.pb-cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at center, rgba(212, 175, 55, 0.08), transparent 50%);
  pointer-events: none;
}

.pb-cta-banner h2 {
  margin-bottom: 16px;
  position: relative;
}

.pb-cta-banner p {
  margin-bottom: 32px;
  position: relative;
}

.pb-cta-banner .pb-btn {
  position: relative;
}

/* ============================================================
   21. LISTS
   ============================================================ */
.pb-check-list {
  list-style: none;
}

.pb-check-list li {
  padding: 10px 0;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--pb-text-secondary);
  font-size: 0.95rem;
}

.pb-check-list li::before {
  content: '★';
  color: var(--pb-gold);
  font-size: 0.8rem;
  flex-shrink: 0;
  margin-top: 3px;
}

/* ============================================================
   22. TESTIMONIALS / SOCIAL PROOF
   ============================================================ */
.pb-testimonial {
  background: var(--pb-surface);
  border: 1px solid var(--pb-border);
  border-radius: var(--pb-radius-md);
  padding: 32px;
}

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

.pb-testimonial__author {
  font-family: var(--pb-font-headline);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--pb-gold);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ============================================================
   23. FAQ ACCORDION
   ============================================================ */
.pb-faq {
  border-bottom: 1px solid var(--pb-border);
}

.pb-faq__q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  background: none;
  border: none;
  border-top: 1px solid var(--pb-border);
  color: var(--pb-text);
  font-family: var(--pb-font-headline);
  font-size: 1rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  text-transform: none;
  letter-spacing: 0;
}

.pb-faq__q::after {
  content: '+';
  font-size: 1.4rem;
  color: var(--pb-gold);
  transition: transform 0.3s;
  flex-shrink: 0;
}

.pb-faq__item.is-open .pb-faq__q::after {
  transform: rotate(45deg);
}

.pb-faq__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.pb-faq__item.is-open .pb-faq__a {
  max-height: 600px;
}

.pb-faq__a-inner {
  padding: 0 0 20px;
  color: var(--pb-text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ============================================================
   24. PAGE-SPECIFIC: VibeShack Override Tokens
   ============================================================ */
[data-theme="vibeshack"] {
  --pb-gold: #00E5FF;
  --pb-gold-hover: #00B8D4;
  --pb-gold-light: #40EFFF;
  --pb-gold-dim: rgba(0, 229, 255, 0.15);
  --pb-border-gold: rgba(0, 229, 255, 0.25);
  --pb-shadow-gold: 0 4px 24px rgba(0, 229, 255, 0.2);
  --pb-surface: #1A1A2E;
}

/* PB Logo nav image */
.pb-header__logo-img {
  height: 36px;
  width: auto;
  display: block;
}


/* ============================================================
   FAQ ACCORDION FIX — max-height expand + icon rotation
   ============================================================ */
.pb-faq__item.is-open .pb-faq__a {
  max-height: 600px;
}
.pb-faq__item.is-open .pb-faq__icon {
  display: inline-block;
  transform: rotate(45deg);
  transition: transform 0.3s;
}
.pb-faq__icon {
  transition: transform 0.3s;
  font-size: 1.4rem;
  color: var(--pb-gold);
  line-height: 1;
}
.pb-faq__q::after {
  content: none;
}
