  /* Pricing Hero */
  .pricing-hero {
    background: linear-gradient(135deg, #0a192f 0%, #0d1f3c 40%, #162544 100%);
    position: relative;
    padding: calc(60px + 4rem) 0 3rem;
    text-align: center;
    overflow: hidden;
  }
  .pricing-hero::before {
    content: '';
    position: absolute;
    top: -40%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(212, 175, 85, 0.12) 0%, transparent 70%);
    pointer-events: none;
  }
  .pricing-hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -15%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(212, 175, 85, 0.1) 0%, transparent 70%);
    pointer-events: none;
  }
  .pricing-hero .section-container {
    position: relative;
    z-index: 1;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 1.5rem;
  }
  .early-badge {
    display: inline-block;
    background: linear-gradient(135deg, #d4af55 0%, #c9a227 100%);
    color: #0a192f;
    padding: 0.4rem 1.5rem;
    border-radius: 20px;
    font-size: var(--fs-sm);
    font-weight: 700;
    margin-bottom: 1.5rem;
    letter-spacing: 0.5px;
  }
  .pricing-hero h1 {
    font-size: clamp(1.8rem, 5vw, 2.5rem);
    color: #fff;
    margin-bottom: 0.75rem;
    overflow-wrap: break-word;
  }
  .pricing-hero .subtitle {
    font-size: var(--fs-md);
    color: rgba(255,255,255,0.75);
    max-width: 550px;
    margin: 0 auto 2.5rem;
    line-height: 1.7;
  }
  .waitlist-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 16px;
    padding: 2.5rem;
    max-width: 480px;
    margin: 0 auto 3rem;
    backdrop-filter: blur(12px);
  }
  [dir="rtl"] .waitlist-card { text-align: right; }
  [dir="ltr"] .waitlist-card { text-align: left; }
  .waitlist-toggle-label {
    color: rgba(255,255,255,0.75);
    font-size: var(--fs-base);
    margin-bottom: 1.25rem;
    text-align: center;
  }
  .btn-gold-cta {
    width: 100%;
    background: linear-gradient(135deg, #d4af55 0%, #c9a227 100%);
    color: #0a192f;
    border: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-size: var(--fs-md);
    font-weight: 700;
    font-family: 'Heebo', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(212, 175, 85, 0.3);
    animation: pulse-glow 3s ease-in-out infinite;
    margin-top: 0.5rem;
  }
  .btn-gold-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(212, 175, 85, 0.5);
    animation: none;
  }
  @keyframes pulse-glow {
    0%, 100% { box-shadow: 0 4px 20px rgba(212, 175, 85, 0.3); }
    50% { box-shadow: 0 4px 30px rgba(212, 175, 85, 0.5); }
  }
  .benefits-section {
    background: #0a192f;
    padding: 3rem 0;
  }
  .benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    max-width: 720px;
    margin: 0 auto;
    padding: 0 1.5rem;
  }
  .benefit-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.2s ease;
  }
  .benefit-card:hover {
    border-color: rgba(255,255,255,0.2);
    background: rgba(255,255,255,0.06);
    transform: translateY(-2px);
  }
  .benefit-icon {
    font-size: 2rem;
    margin-bottom: 0.75rem;
  }
  .benefit-card h3 { /* markup uses h3 (section already has an h2.sr-only) -- selector was targeting h2, which never matched, leaving the card title on the invisible navy default */
    color: #fff;
    font-size: var(--fs-base);
    margin-bottom: 0.5rem;
  }
  .benefit-card p {
    color: rgba(255,255,255,0.65);
    font-size: var(--fs-sm);
    line-height: 1.6;
    margin: 0;
  }
  .faq-dark {
    background: linear-gradient(180deg, #0a192f 0%, #0d1f3c 100%);
    padding: 3rem 0;
    border-top: 1px solid rgba(255,255,255,0.06);
  }
  .faq-dark .section-title {
    color: #fff;
    text-align: center;
    margin-bottom: 2rem;
  }
  .features-checklist {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0 0;
    text-align: center;
  }
  .features-checklist li {
    display: inline-block;
    color: rgba(255,255,255,0.7);
    font-size: var(--fs-sm);
    padding: 0.3rem 0.8rem;
    margin: 0.25rem;
    background: rgba(255,255,255,0.04);
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.08);
  }
  .features-checklist li::before {
    content: '✓ ';
    color: #10b981;
    font-weight: bold;
  }
  .toast {
    position: fixed;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    color: white;
    padding: 1rem 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    font-size: var(--fs-base);
    display: none;
  }
  @media (max-width: 1024px) {
    .showcase-section .ba-panel { padding: 1.5rem; }
  }
  @media (max-width: 768px) {
    .pricing-hero { padding: calc(60px + 2rem) 0 2rem; }
    .pricing-hero h1 { font-size: var(--fs-h2); }
    .waitlist-card { padding: 1.5rem; margin: 0 1rem 2rem; }
    .benefits-grid { grid-template-columns: 1fr; max-width: 350px; }
  }

/* moved from shared-v2-merged.css by UB-3214 (2026-09-02); original order preserved */
/* Pricing Page CTA Card */
.pricing-cta-card {
  max-width: 520px;
  margin: var(--space-xl) auto;
  text-align: center;
}

.cta-content {
  text-align: center;
  max-width: 550px;
  margin: 0 auto;
}

.cta-title {
  font-size: var(--fs-h2);
  color: var(--white);
  margin-bottom: var(--space-md);
}

.cta-subtitle {
  font-size: var(--fs-body);
  color: rgba(255,255,255,0.85);
  margin-bottom: var(--space-xl);
}

/* Feature 10 + 12: Trust Signals Section (pricing page) */
.trust-signals-section {
  padding: 4rem 0;
  background: linear-gradient(180deg, #0d1f3c 0%, #0a192f 100%);
}

/* Sole consumer is pricing.hbs, which carries one card since the unbacked
   re-run assurance was removed. A hardcoded `1fr 1fr` left that card at half
   width with an empty column beside it above 768px. auto-fit keeps the single
   card full width and still lays out side-by-side if a second is ever added.
   min(280px,100%) not a bare 280px: a bare floor is one the dropped media query
   never had, and below ~334px viewport the track overflowed 14px (clipped by the
   pre-existing section overflow-x:hidden). R2 M-2. */
.trust-signals-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr));
  gap: 1.5rem;
}

.trust-signal-icon {
  font-size: 1.5rem; /* icon glyph -- literal size */
  margin-bottom: 0.75rem;
  color: #d4af55;
}

.sovereignty-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.sovereignty-badge {
  background: rgba(212, 175, 85, 0.1);
  border: 1px solid rgba(212, 175, 85, 0.25);
  color: rgba(255,255,255,0.8);
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  font-size: var(--fs-xs);
  font-weight: 500;
}

.beta-price-callout {
    font-size: var(--fs-h4);
    font-weight: 700;
    color: var(--gold, #d4af55);
    margin-top: var(--space-lg);
}

.beta-price-note {
    font-size: var(--fs-sm);
    color: rgba(255,255,255,0.65);
    font-style: italic;
}

.beta-deliverables-title {
    font-weight: 600;
    color: var(--white);
    margin-top: var(--space-lg);
    margin-bottom: var(--space-sm);
}

.beta-deliverables-list li::before {
    content: "✓";
    position: absolute;
    right: 0;
    color: var(--success, var(--success-on-dark));
    font-weight: 700;
}

.beta-disclaimer {
    font-size: var(--fs-sm);
    color: rgba(255,255,255,0.55);
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: var(--space-md);
    margin-top: var(--space-lg);
}

/* Cost Comparison Box (Pricing Page) */
.cost-compare-box {
    max-width: var(--prose-max);
    margin: var(--space-2xl) auto var(--space-xl);
}

.cost-compare-title {
    text-align: center;
    font-size: var(--fs-md);
    color: var(--gold, #d4af55);
    margin-bottom: var(--space-lg);
    font-weight: 600;
}

.cost-compare-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
}

.cost-compare-card {
    padding: var(--space-lg);
    border-radius: 12px;
    text-align: center;
}

.cost-compare-manual {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
}

.cost-compare-orca {
    background: rgba(212,175,85,0.08);
    border: 1px solid rgba(212,175,85,0.25);
}

.cost-compare-label {
    font-size: var(--fs-sm);
    letter-spacing: 0.05em;
    color: rgba(255,255,255,0.55);
    margin-bottom: var(--space-sm);
}

.cost-compare-time {
    font-size: var(--fs-sm);
    color: rgba(255,255,255,0.75);
    margin-bottom: var(--space-sm);
}

.cost-compare-cost {
    font-size: var(--fs-h3);
    font-weight: 700;
    margin-bottom: var(--space-xs, 4px);
}

.cost-compare-manual .cost-compare-cost {
    color: rgba(255,255,255,0.6);
}

.cost-compare-orca .cost-compare-cost {
    color: var(--gold, #d4af55);
}

.cost-compare-note {
    font-size: var(--fs-xs);
    color: rgba(255,255,255,0.5);
}

@media (max-width: 640px) {
    .cost-compare-grid {
        grid-template-columns: 1fr;
    }
}
