/* ==========================================================================
   TechTV Pricing Page Styles
   Built on Bootstrap 5.3 — uses brand variables from custom.css
   ========================================================================== */

/* --------------------------------------------------------------------------
   Eyebrow / Section Label
   -------------------------------------------------------------------------- */
.pricing-eyebrow {
  font-family: var(--techtv-font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--techtv-orange);
}

/* --------------------------------------------------------------------------
   Billing Toggle (segmented control)
   -------------------------------------------------------------------------- */
.pricing-toggle {
  display: inline-flex;
  padding: 4px;
  background: var(--techtv-midnight);
  border: 1px solid rgba(245, 241, 232, 0.14);
  border-radius: 999px;
}

.pricing-toggle__btn {
  border: none;
  background: transparent;
  color: rgba(245, 241, 232, 0.55);
  font-family: inherit;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 7px 20px;
  border-radius: 999px;
  cursor: pointer;
  transition: color 0.2s ease, background 0.2s ease;
}

.pricing-toggle__btn.active {
  background: var(--techtv-cream);
  color: var(--techtv-dark-blue);
}

/* --------------------------------------------------------------------------
   Pricing Cards
   -------------------------------------------------------------------------- */
.pricing-card {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  background: var(--techtv-dark-blue);
  border: 1px solid rgba(245, 241, 232, 0.12);
  border-radius: 1rem;
  padding: 2rem 1.875rem;
}

/* Featured tier gets a lighter fill + orange emphasis ring */
.pricing-card--featured {
  background: #071233;
}

.pricing-card--featured::before {
  content: "";
  position: absolute;
  inset: 0;
  border: 1.5px solid var(--techtv-orange);
  border-radius: 1rem;
  box-shadow: 0 0 0 4px rgba(255, 149, 0, 0.08), 0 18px 50px rgba(0, 0, 0, 0.5);
  pointer-events: none;
}

.pricing-card__badge {
  position: absolute;
  top: 0;
  left: 30px;
  transform: translateY(-50%);
  background: var(--techtv-orange);
  color: var(--techtv-dark-blue);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 5px;
}

.pricing-card__name {
  font-size: 1.875rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--techtv-cream);
}

.pricing-card__audience {
  font-size: 0.875rem;
  color: var(--techtv-orange);
}

.pricing-card__price-row {
  display: flex;
  align-items: baseline;
  gap: 6px;
  font-family: var(--techtv-font-mono);
}

.pricing-card__price {
  font-size: 2.375rem;
  font-weight: 700;
  color: var(--techtv-cream);
  letter-spacing: -0.02em;
}

.pricing-card__unit {
  font-size: 0.9375rem;
  color: rgba(245, 241, 232, 0.55);
}

.pricing-card__meta {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 24px;
}

.pricing-card__sub {
  font-size: 0.8125rem;
  color: rgba(245, 241, 232, 0.5);
  font-family: var(--techtv-font-mono);
}

.pricing-card__save {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--techtv-orange);
  border: 1px solid rgba(255, 149, 0, 0.4);
  border-radius: 4px;
  padding: 2px 7px;
}

.pricing-card__desc {
  font-size: 0.875rem;
  line-height: 1.55;
  color: rgba(245, 241, 232, 0.68);
}

/* Card CTA — production (ghost) variant of the outline button */
.btn-outline-orange {
  border: 1.5px solid rgba(255, 149, 0, 0.55);
  color: var(--techtv-orange);
  font-weight: 600;
  border-radius: 0.5rem;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.btn-outline-orange:hover {
  background-color: rgba(255, 149, 0, 0.1);
  color: var(--techtv-orange);
  border-color: var(--techtv-orange);
}

/* --------------------------------------------------------------------------
   "Which am I?" — decision guides
   -------------------------------------------------------------------------- */
.pricing-guide {
  padding: 22px 0;
  border-bottom: 1px solid rgba(245, 241, 232, 0.1);
}

.pricing-guide:last-child {
  border-bottom: none;
}

.pricing-guide__q {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--techtv-cream);
}

.pricing-guide__a {
  font-size: 0.875rem;
  line-height: 1.6;
  color: rgba(245, 241, 232, 0.62);
}
