/* ============================================================
 * Vilkax · /pricing/ page-specific styling
 * ============================================================
 * Stays calm and brand-consistent. Per the public-copy lockdown,
 * no internal jargon (no "schema", "binding", etc.).
 */

.vlx-pricing-body {
  background: var(--bg-absolute, #0B1426);
  display: block;
  min-height: 100dvh;
  overflow-x: hidden;
}

/* Override the centered-hero layout from /style.css so the page
 * scrolls naturally. */
.vlx-pricing-body main {
  display: block;
  padding: 24px 16px 0;
}

.pricing-hero {
  text-align: center;
  max-width: 760px;
  margin: 32px auto 36px;
}
/* Pass-142 — two-glyph hero composition: wolf-mark + VAX coin
   side by side.  The coin is a clickable link to /vax/buy/. */
.pricing-hero-marks {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: clamp(12px, 3vw, 28px);
  margin: 0 auto 22px;
}
.pricing-hero-mark {
  /* Pass-146 — bumped one more notch.  120 → 160 → 192 px ceiling
     to keep the wolf reading as the hero anchor next to the coin. */
  width: clamp(130px, 18vmin, 192px);
  height: auto;
  filter:
    drop-shadow(0 10px 32px rgba(37, 99, 235, 0.30))
    drop-shadow(0 0 28px rgba(59, 130, 246, 0.18));
  display: block;
}
.pricing-hero-coin-link {
  display: inline-flex;
  transition: transform 220ms ease, filter 220ms ease;
}
.pricing-hero-coin-link:hover,
.pricing-hero-coin-link:focus-visible {
  transform: translateY(-3px) scale(1.04);
  outline: none;
}
.pricing-hero-coin {
  width: clamp(72px, 9vmin, 96px);
  height: auto;
  display: block;
  filter:
    drop-shadow(0 6px 22px rgba(37, 99, 235, 0.40))
    drop-shadow(0 0 28px rgba(59, 130, 246, 0.30));
  transition: filter 220ms ease;
}
.pricing-hero-coin-link:hover .pricing-hero-coin,
.pricing-hero-coin-link:focus-visible .pricing-hero-coin {
  filter:
    drop-shadow(0 10px 30px rgba(37, 99, 235, 0.60))
    drop-shadow(0 0 36px rgba(59, 130, 246, 0.55));
}
.pricing-hero-h {
  margin: 0 0 14px;
  font-size: clamp(28px, 5vw, 52px);
  font-weight: 800;
  letter-spacing: 0.01em;
  line-height: 1.05;
  color: var(--text-strong, #f8fafc);
}
.pricing-hero-sub {
  margin: 0;
  font-size: clamp(13px, 1.4vw, 16px);
  line-height: 1.6;
  color: var(--text-muted, #94a3b8);
}

/* Personal / Business toggle (Pass 133).  Sits below the hero
 * sub.  Two tabs, brand-blue underline for the active one. */
.pricing-audience {
  display: inline-flex;
  gap: 0;
  margin: 22px auto 0;
  padding: 4px;
  border: 1px solid var(--border-strong, rgba(165, 180, 205, 0.20));
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.55);
}
.pricing-audience-tab {
  padding: 8px 18px;
  background: transparent;
  border: 0;
  border-radius: 999px;
  color: var(--text-muted, #94a3b8);
  font-family: var(--font-brand);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: background 180ms ease, color 180ms ease;
}
.pricing-audience-tab.is-active {
  background: var(--brand-primary, #2563EB);
  color: var(--text-strong, #FFFFFF);
}
.pricing-audience-tab:hover:not(.is-active),
.pricing-audience-tab:focus-visible:not(.is-active) {
  color: var(--text-strong, #FFFFFF);
  outline: none;
}
.pricing-audience-tab:focus-visible {
  outline: 2px solid rgba(165, 180, 205, 0.55);
  outline-offset: 2px;
}
.pricing-audience-blurb {
  margin: 14px auto 32px;
  max-width: 640px;
  color: var(--text-muted, #94a3b8);
  font-size: 13.5px;
  line-height: 1.55;
}

.pricing-stack-host {
  margin: 0 auto 60px;
  max-width: 1240px;
}

/* ── "Every tier gets these" strip ──────────────────────── */
.pricing-section-h {
  text-align: center;
  margin: 0 auto 24px;
  font-size: clamp(20px, 2.6vw, 26px);
  font-weight: 800;
  letter-spacing: 0.01em;
  color: var(--text-strong, #f8fafc);
}

.pricing-receipt {
  max-width: 1180px;
  margin: 0 auto 60px;
  padding: 0 16px;
}
.pricing-receipt-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
}
.pricing-receipt-card {
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid var(--border-subtle, rgba(255, 255, 255, 0.08));
  border-radius: 14px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.pricing-receipt-icon {
  font-size: 22px;
  line-height: 1;
  margin-bottom: 4px;
}
.pricing-receipt-card strong {
  color: var(--text-strong, #f8fafc);
  font-size: 13px;
  letter-spacing: 0.04em;
}
.pricing-receipt-card span {
  font-size: 12.5px;
  line-height: 1.55;
  color: var(--text-muted, #94a3b8);
}

/* ── FAQ ────────────────────────────────────────────────── */
.pricing-faq {
  max-width: 760px;
  margin: 0 auto 60px;
  padding: 0 16px;
}
.pricing-faq-row {
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid var(--border-subtle, rgba(255, 255, 255, 0.08));
  border-radius: 12px;
  margin-bottom: 10px;
  padding: 14px 18px;
  transition: border-color 200ms ease;
}
.pricing-faq-row[open] {
  border-color: var(--brand-primary-bright, #3b82f6);
}
.pricing-faq-row summary {
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-strong, #f8fafc);
  letter-spacing: 0.01em;
}
.pricing-faq-row summary::marker { color: var(--text-muted, #94a3b8); }
.pricing-faq-row p {
  margin: 12px 0 0;
  font-size: 13px;
  line-height: 1.65;
  color: var(--text-muted, #94a3b8);
}

/* ── Foot CTA ──────────────────────────────────────────── */
.pricing-foot-cta {
  text-align: center;
  padding: 40px 16px 60px;
}
/* Pass-153 — bigger hit target, centred caption, neon glow that
   breathes softly so the CTA reads as the page's primary action
   without being noisy.  Hit target ≥ 44 px (WCAG 2.5.5 AAA). */
.pricing-foot-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 220px;
  min-height: 48px;
  background: linear-gradient(135deg, #3b82f6 0%, #2563EB 100%);
  color: #fff;
  text-decoration: none;
  text-align: center;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  font-size: 13.5px;
  padding: 14px 32px;
  border: 1px solid rgba(96, 165, 250, 0.55);
  border-radius: 12px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 12px 32px -10px rgba(37, 99, 235, 0.55),
    0 0 30px -8px rgba(59, 130, 246, 0.45);
  animation: pricing-foot-cta-pulse 6s ease-in-out infinite;
  transition:
    transform 180ms ease,
    box-shadow 240ms ease,
    background 220ms ease,
    border-color 220ms ease;
}
.pricing-foot-cta-btn:hover {
  filter: brightness(1.06);
  background: linear-gradient(135deg, #60a5fa 0%, #3b82f6 100%);
  border-color: rgba(147, 197, 253, 0.85);
  transform: translateY(-1px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.20),
    0 16px 40px -10px rgba(37, 99, 235, 0.70),
    0 0 40px -6px rgba(96, 165, 250, 0.80);
}
.pricing-foot-cta-btn:focus-visible {
  outline: none;
  border-color: rgba(147, 197, 253, 1);
  box-shadow:
    0 0 0 4px rgba(59, 130, 246, 0.32),
    0 0 36px -4px rgba(96, 165, 250, 0.70);
}
.pricing-foot-cta-btn:active { transform: translateY(0); }

@keyframes pricing-foot-cta-pulse {
  0%, 100% {
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.12),
      0 12px 32px -10px rgba(37, 99, 235, 0.55),
      0 0 30px -8px rgba(59, 130, 246, 0.40);
  }
  50% {
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.18),
      0 14px 40px -8px rgba(37, 99, 235, 0.70),
      0 0 44px -6px rgba(96, 165, 250, 0.75);
  }
}
@media (prefers-reduced-motion: reduce) {
  .pricing-foot-cta-btn { animation: none; }
}
.pricing-foot-cta p {
  margin: 14px 0 0;
  font-size: 12px;
  color: var(--text-dim, #64748b);
  letter-spacing: 0.04em;
}
