/* ══════════════════════════════════════════════
   FB VIDEO DOWNLOADER - PRICING v5
   Full-width · Single row · Industry-grade
══════════════════════════════════════════════ */

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

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --white: #ffffff;
  --bg: #f5f6f8;
  --surface: #ffffff;
  --border: #e5e7eb;
  --text-1: #0d1117;
  --text-2: #4b5563;
  --text-3: #9ca3af;
  --blue: #2563eb;
  --blue-dark: #1d4ed8;
  --blue-bg: #eff6ff;
  --green: #059669;
  --green-bg: #ecfdf5;
  --orange: #d97706;
  --orange-bg: #fef9f0;
  --purple: #7c3aed;
  --purple-bg: #f5f3ff;
  --featured-bg: #0c1220;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text-1);
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
}

/* ── Thin top accent ── */
body::before {
  content: '';
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, #2563eb 0%, #7c3aed 50%, #2563eb 100%);
  background-size: 200%;
  animation: shimmer 3s linear infinite;
  z-index: 999;
}

@keyframes shimmer { to { background-position: 200% center; } }

/* ════════════════════════════════
   NAVBAR
════════════════════════════════ */
.pricing-nav {
  position: sticky;
  top: 2px;
  z-index: 200;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.pricing-nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
  height: 48px;
}

.nav-left-group {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-back-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  color: var(--text-2);
  text-decoration: none;
  transition: all 0.15s;
}

.nav-back-btn:hover {
  background: var(--bg);
  color: var(--text-1);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-logo img {
  width: 24px;
  height: 24px;
  border-radius: 6px;
}

.nav-logo span {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-1);
  letter-spacing: -0.02em;
}

.nav-right-group {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-link-grok,
.nav-link-support {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-2);
  text-decoration: none;
  padding: 6px 12px;
  border-radius: 6px;
  transition: all 0.15s;
}

.nav-link-grok:hover,
.nav-link-support:hover {
  background: var(--bg);
  color: var(--blue);
}

/* ════════════════════════════════
   HERO HEADER
════════════════════════════════ */
.hero {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 28px 48px 24px;
  text-align: center;
}

.hero-inner { max-width: 560px; margin: 0 auto; }

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--blue);
  background: var(--blue-bg);
  border: 1px solid rgba(37,99,235,0.18);
  padding: 4px 10px;
  border-radius: 100px;
  margin-bottom: 14px;
}

.hero-title {
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1.15;
  color: var(--text-1);
  margin-bottom: 8px;
}

.hero-sub {
  font-size: 13px;
  color: var(--text-2);
  line-height: 1.6;
}

/* ════════════════════════════════
   CARDS SECTION
════════════════════════════════ */
.cards-wrapper {
  padding: 28px 32px 32px;
}

/* Full-width single-row grid */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
}

/* ══ CARD BASE ══ */
.card {
  background: var(--white);
  padding: 28px 22px 24px;
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: background 0.2s;
}

.card:last-child { border-right: none; }

.card:hover { background: #fafbfd; }

/* ══ FEATURED CARD ══ */
.card-featured {
  background: var(--featured-bg);
  border-right: 1px solid rgba(255,255,255,0.06);
  position: relative;
  overflow: hidden;
}

.card-featured:hover { background: #101827; }

.featured-glow {
  position: absolute;
  top: -60px;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(37,99,235,0.25) 0%, transparent 70%);
  pointer-events: none;
}

/* Featured text overrides */
.card-featured .card-tier { color: #60a5fa; }
.card-featured .card-price { color: #f8fafc; }
.card-featured .card-cycle { color: #64748b; }
.card-featured .card-tagline { color: #94a3b8; }
.card-featured .card-divider { border-color: rgba(255,255,255,0.07); }
.card-featured .card-features li { color: #cbd5e1; }
.card-featured .chk { color: #60a5fa; }

/* Featured badge */
.featured-tag {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: #fbbf24;
  background: rgba(251,191,36,0.12);
  border: 1px solid rgba(251,191,36,0.25);
  padding: 3px 9px;
  border-radius: 100px;
  margin-bottom: 10px;
}

/* corner badge for Yearly */
.badge-corner {
  position: absolute;
  top: 0;
  right: 0;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 0 0 0 8px;
}

.badge-corner-orange {
  background: var(--orange-bg);
  color: var(--orange);
  border-bottom: 1px solid rgba(217,119,6,0.15);
  border-left: 1px solid rgba(217,119,6,0.15);
}

/* ════════════════════════════════
   CARD CONTENT
════════════════════════════════ */
.card-top { flex-shrink: 0; }

.card-tier {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 10px;
}

.card-price-row {
  display: flex;
  align-items: baseline;
  gap: 2px;
  margin-bottom: 6px;
}

.card-price {
  font-size: 38px;
  font-weight: 900;
  letter-spacing: -0.05em;
  line-height: 1;
  color: var(--text-1);
}

.card-cycle {
  font-size: 12px;
  font-weight: 500;
  color: var(--text-3);
}

.card-tagline {
  font-size: 12px;
  color: var(--text-2);
  margin-bottom: 12px;
  line-height: 1.4;
}

/* ── Badges ── */
.badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 5px;
  margin-bottom: 12px;
}

.badge-green  { background: var(--green-bg);  color: var(--green);  border: 1px solid rgba(5,150,105,0.15); }
.badge-gray   { background: #f3f4f6;           color: #374151;       border: 1px solid #e5e7eb; }
.badge-blue   { background: var(--blue-bg);   color: var(--blue);   border: 1px solid rgba(37,99,235,0.15); }
.badge-orange { background: var(--orange-bg); color: var(--orange); border: 1px solid rgba(217,119,6,0.15); }
.badge-purple { background: var(--purple-bg); color: var(--purple); border: 1px solid rgba(124,58,237,0.15); }

/* Divider */
.card-divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 14px 0;
}

/* ── Features ── */
.card-features {
  list-style: none;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}

.card-features li {
  display: flex;
  align-items: flex-start;
  gap: 7px;
  font-size: 12px;
  color: var(--text-2);
  line-height: 1.4;
}

.chk {
  flex-shrink: 0;
  width: 14px;
  height: 14px;
  color: var(--blue);
  margin-top: 1px;
}

/* ════════════════════════════════
   BUTTONS
════════════════════════════════ */
.card-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 9px 14px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  transition: all 0.15s ease;
  margin-top: auto;
}

.btn-outline {
  background: var(--white);
  color: var(--text-1);
  border: 1px solid var(--border);
}

.btn-outline:hover {
  background: var(--bg);
  border-color: #c9d0dd;
}

.btn-featured {
  background: var(--blue);
  color: #fff;
  border: none;
  letter-spacing: 0.3px;
  box-shadow: 0 2px 12px rgba(37,99,235,0.35);
  font-size: 11px;
  text-transform: uppercase;
  font-weight: 700;
}

.btn-featured:hover {
  background: var(--blue-dark);
  box-shadow: 0 4px 18px rgba(37,99,235,0.45);
  transform: translateY(-1px);
}

/* ════════════════════════════════
   NOTE
════════════════════════════════ */
.note {
  text-align: center;
  font-size: 12px;
  color: var(--text-3);
  margin-top: 20px;
}

.note a { color: var(--blue); text-decoration: none; }
.note a:hover { text-decoration: underline; }

/* ════════════════════════════════
   FAQ
════════════════════════════════ */
.faq-section {
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 64px 48px;
}

.faq-inner {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 64px;
  max-width: 1200px;
  margin: 0 auto;
}

.faq-header h2 {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text-1);
  margin-bottom: 8px;
}

.faq-header p {
  font-size: 13px;
  color: var(--text-2);
  line-height: 1.6;
}

.faq-list { display: flex; flex-direction: column; }

.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:first-child { border-top: 1px solid var(--border); }

.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 16px 0;
  background: none;
  border: none;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-1);
  cursor: pointer;
  font-family: inherit;
  text-align: left;
}

.faq-arrow {
  flex-shrink: 0;
  font-size: 18px;
  font-weight: 300;
  color: var(--text-3);
  transition: transform 0.25s ease, color 0.15s;
  line-height: 1;
}

.faq-item.open .faq-arrow {
  transform: rotate(45deg);
  color: var(--blue);
}

.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.faq-item.open .faq-a { max-height: 200px; padding-bottom: 16px; }
.faq-a p { font-size: 13px; color: var(--text-2); line-height: 1.7; }

/* ════════════════════════════════
   FOOTER
════════════════════════════════ */
.site-footer {
  background: var(--white);
  padding: 48px 48px 32px;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  max-width: 1400px;
  margin: 0 auto 32px;
  flex-wrap: wrap;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  color: var(--text-1);
  margin-bottom: 8px;
}

.footer-logo img { width: 20px; height: 20px; border-radius: 5px; }

.footer-left p {
  font-size: 12px;
  color: var(--text-3);
  line-height: 1.6;
  max-width: 240px;
}

.footer-cols { display: flex; gap: 48px; }

.footer-col h5 {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 12px;
}

.footer-col a {
  display: block;
  font-size: 13px;
  color: var(--text-2);
  text-decoration: none;
  margin-bottom: 8px;
  transition: color 0.15s;
}

.footer-col a:hover { color: var(--blue); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  max-width: 1400px;
  margin: 0 auto;
  font-size: 11px;
  color: var(--text-3);
}

/* ════════════════════════════════
   MODALS
════════════════════════════════ */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.45);
  backdrop-filter: blur(8px);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.modal {
  background: var(--white);
  border-radius: 14px;
  padding: 28px;
  max-width: 380px;
  width: 100%;
  position: relative;
  box-shadow: 0 24px 64px rgba(0,0,0,0.15), 0 0 0 1px rgba(0,0,0,0.04);
  animation: modalIn 0.2s cubic-bezier(0.34,1.3,0.64,1);
}

@keyframes modalIn {
  from { opacity: 0; transform: scale(0.94) translateY(8px); }
  to { opacity: 1; transform: none; }
}

.modal-close {
  position: absolute;
  top: 14px; right: 14px;
  width: 26px; height: 26px;
  border-radius: 6px;
  background: var(--bg);
  border: 1px solid var(--border);
  font-size: 16px;
  color: var(--text-3);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.15s;
}

.modal-close:hover { color: var(--text-1); background: #eef0f3; }

.modal-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-1);
  margin-bottom: 3px;
}

.modal-plan {
  font-size: 13px;
  color: var(--text-2);
  margin-bottom: 20px;
}

.modal-hint {
  font-size: 11px;
  color: var(--text-3);
  margin-bottom: 12px;
}

.stripe-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--white);
  cursor: pointer;
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-1);
  transition: all 0.15s;
}

.stripe-btn:hover {
  border-color: var(--blue);
  background: var(--blue-bg);
  color: var(--blue);
}

.success-btn {
  width: 100%;
  padding: 11px;
  border-radius: 8px;
  background: var(--blue);
  color: #fff;
  border: none;
  font-size: 13px;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  transition: background 0.15s;
}

.success-btn:hover { background: var(--blue-dark); }

/* ── Toast ── */
.toast {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  padding: 10px 20px;
  border-radius: 8px;
  font-size: 13px;
  font-family: 'Inter', sans-serif;
  opacity: 0;
  pointer-events: none;
  transition: all 0.25s ease;
  z-index: 99999;
  white-space: nowrap;
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
  color: var(--text-1);
}

.toast.show {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.toast.success { border-color: rgba(5,150,105,0.3); color: var(--green); }
.toast.error   { border-color: rgba(220,38,38,0.3); color: #dc2626; }

/* ── Active Plan ── */
.card.active-plan { outline: 2px solid var(--blue); outline-offset: -1px; }
.card-featured.active-plan { outline: 2px solid #60a5fa; }

.plan-status-area { margin-top: 8px; }
.plan-expiry { font-size: 11px; color: var(--text-3); display: flex; align-items: center; gap: 4px; margin-bottom: 4px; }
.plan-expiry.renewing { color: var(--blue); }
.plan-expiry.canceling { color: var(--orange); }
.plan-expiry.lifetime  { color: var(--green); }

.cancel-sub-btn {
  font-size: 11px; color: var(--text-3); background: none; border: none;
  cursor: pointer; font-family: inherit; padding: 2px 0; transition: color 0.15s;
}
.cancel-sub-btn:hover { color: #dc2626; }

/* ── Expired Banner ── */
.expired-banner {
  padding: 0 32px;
  margin-bottom: 16px;
}
.expired-banner-inner {
  padding: 12px 16px;
  border-radius: 8px;
  background: var(--orange-bg);
  border: 1px solid rgba(217,119,6,0.2);
  font-size: 13px;
}
.expired-banner-inner strong { color: #92400e; }
.expired-banner-inner p { color: #a16207; margin: 2px 0 0; font-size: 12px; }

/* ── Extension Gate ── */
.ext-gate-overlay {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.ext-gate-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 40px 36px;
  max-width: 440px;
  width: 100%;
  text-align: center;
  box-shadow: 0 8px 30px rgba(0,0,0,0.06);
}

.ext-gate-icon-wrap { margin-bottom: 16px; }
.ext-gate-icon { display: inline-flex; width: 56px; height: 56px; border-radius: 14px; background: var(--blue-bg); align-items: center; justify-content: center; color: var(--blue); }
.ext-gate-title { font-size: 20px; font-weight: 800; color: var(--text-1); margin-bottom: 8px; }
.ext-gate-subtitle { font-size: 13px; color: var(--text-2); line-height: 1.6; margin-bottom: 24px; }
.ext-gate-steps { text-align: left; margin-bottom: 24px; display: flex; flex-direction: column; gap: 14px; }
.ext-gate-step { display: flex; gap: 12px; align-items: flex-start; }
.ext-gate-step-num { width: 24px; height: 24px; border-radius: 50%; background: var(--blue-bg); display: flex; align-items: center; justify-content: center; font-size: 11px; font-weight: 700; color: var(--blue); flex-shrink: 0; }
.ext-gate-step strong { display: block; font-size: 13px; color: var(--text-1); }
.ext-gate-step span { font-size: 12px; color: var(--text-3); }
.ext-gate-home-link { display: inline-flex; align-items: center; gap: 5px; font-size: 12px; color: var(--text-3); text-decoration: none; margin-top: 12px; transition: color 0.15s; }
.ext-gate-home-link:hover { color: var(--blue); }

.ext-gate-active .hero,
.ext-gate-active .cards-wrapper,
.ext-gate-active .faq-section,
.ext-gate-active .site-footer { display: none; }

/* ════════════════════════════════
   ACTIVE PLAN CARD STATES
════════════════════════════════ */
.price-card.active-plan { border-color: var(--blue) !important; box-shadow: 0 0 0 1px var(--blue), 0 4px 24px rgba(37,99,235,.1); position: relative; }
.current-plan-btn { background: linear-gradient(135deg, #059669, #10b981) !important; color: #fff !important; cursor: default !important; opacity: 1 !important; border: none !important; }
.current-plan-btn:hover { transform: none !important; box-shadow: none !important; }

.plan-status-area { margin-top: 12px; display: flex; flex-direction: column; gap: 8px; }
.plan-status-badge { display: inline-flex; align-items: center; gap: 6px; padding: 5px 12px; border-radius: 100px; font-size: 11px; font-weight: 600; letter-spacing: .3px; width: fit-content; }
.plan-status-badge.active { background: var(--green-bg); color: var(--green); border: 1px solid rgba(5,150,105,.15); }
.plan-status-badge.canceling { background: var(--orange-bg); color: var(--orange); border: 1px solid rgba(217,119,6,.15); }
.status-dot { width: 7px; height: 7px; border-radius: 50%; display: inline-block; }
.status-dot.active { background: var(--green); box-shadow: 0 0 6px rgba(5,150,105,.4); }
.status-dot.canceling { background: var(--orange); box-shadow: 0 0 6px rgba(217,119,6,.4); }

.plan-expiry { display: flex; align-items: center; gap: 6px; font-size: 12px; font-weight: 500; color: var(--text-2); padding: 6px 0; }
.plan-expiry svg { flex-shrink: 0; }
.plan-expiry.renewing { color: var(--blue); }
.plan-expiry.canceling { color: var(--orange); }
.plan-expiry.lifetime { color: var(--purple); font-weight: 600; }
.plan-expiry.expiring-soon { color: #dc2626; font-weight: 600; }

.cancel-sub-btn { display: inline-flex; align-items: center; gap: 6px; padding: 8px 16px; border-radius: 10px; border: 1px solid rgba(220,38,38,.15); background: rgba(220,38,38,.04); color: #dc2626; font-size: 12px; font-weight: 600; font-family: inherit; cursor: pointer; transition: all .2s; width: fit-content; }
.cancel-sub-btn:hover { background: rgba(220,38,38,.1); border-color: rgba(220,38,38,.25); }

/* ════════════════════════════════
   RESPONSIVE
════════════════════════════════ */
@media (max-width: 1100px) {
  .cards-grid { grid-template-columns: repeat(3, 1fr); }
  .card:nth-child(3) { border-right: none; }
  .card:nth-child(4) { border-top: 1px solid var(--border); }
  .card:nth-child(5) { border-top: 1px solid var(--border); border-right: none; }
}

@media (max-width: 700px) {
  .cards-grid { grid-template-columns: 1fr; }
  .card { border-right: none !important; border-top: 1px solid var(--border); }
  .card:first-child { border-top: none; }
  .faq-inner { grid-template-columns: 1fr; gap: 24px; }
  .hero { padding: 40px 20px 36px; }
  .cards-wrapper { padding: 24px 16px 24px; }
  .faq-section { padding: 40px 20px; }
  .site-footer { padding: 40px 20px 24px; }
  .footer-cols { gap: 28px; }
  .hero-title { font-size: 28px; }
  .card-price { font-size: 32px; }
  .plan-active-banner { margin: 12px 0 0; }
  .pab-inner { flex-direction: column; gap: 10px; align-items: flex-start; }
  .pab-right { flex-wrap: wrap; }
}

/* ═══════════════════════════════════
   PLAN ACTIVE BANNER (outside cards)
═══════════════════════════════════ */
.plan-active-banner {
  margin: 16px 0 0;
  border-radius: 12px;
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  animation: pabIn 0.3s ease;
}
@keyframes pabIn { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: none; } }

.pab-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  gap: 16px;
}

.pab-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.pab-plan-label {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--text-3);
}

.pab-plan-name {
  font-size: 15px;
  font-weight: 800;
  color: var(--text-1);
  letter-spacing: -0.02em;
}

.pab-status {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 100px;
}

.pab-active {
  background: var(--green-bg);
  color: var(--green);
  border: 1px solid rgba(5,150,105,0.15);
}

.pab-canceling {
  background: var(--orange-bg);
  color: var(--orange);
  border: 1px solid rgba(217,119,6,0.15);
}

.pab-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  flex-shrink: 0;
}

.pab-dot.active { background: var(--green); }
.pab-dot.canceling { background: var(--orange); }

.pab-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.pab-expiry {
  font-size: 12px;
  color: var(--text-2);
  display: flex;
  align-items: center;
  gap: 5px;
}

.pab-expiry strong {
  color: var(--text-1);
  font-weight: 700;
}

.pab-lifetime {
  color: var(--green);
}

.pab-cancel {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 6px 14px;
  border-radius: 8px;
  background: none;
  border: 1px solid rgba(220,38,38,0.15);
  color: #dc2626;
  font-size: 11px;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  transition: all 0.15s;
}

.pab-cancel:hover {
  background: rgba(220,38,38,0.05);
  border-color: rgba(220,38,38,0.3);
}
