/* ——— Pricing page (Free Forever lead, Pro below) ——— */
.price-root {
  max-width: 520px; margin: 0 auto;
  padding: calc(var(--sa-t) + 14px) 18px calc(var(--sa-b) + 36px);
}

.pill.live-free {
  background: rgba(0,255,209,0.1);
  border-color: rgba(0,255,209,0.35);
  color: var(--cyan);
}
.pill.teaser-kicker {
  background: rgba(255,216,77,0.1);
  border-color: rgba(255,216,77,0.3);
  color: var(--gold);
}
.pill.live-free .dot { background: var(--cyan); box-shadow: 0 0 8px var(--cyan); }
.pill.teaser-kicker .dot { background: var(--gold); box-shadow: 0 0 8px var(--gold); }

.free-hero {
  margin-top: 12px;
  padding: 28px 22px;
  background: linear-gradient(180deg, rgba(0,255,209,0.08) 0%, rgba(255,216,77,0.05) 100%);
  border: 1px solid rgba(0,255,209,0.3);
  border-radius: var(--r-3);
  text-align: center;
  position: relative; overflow: hidden;
  box-shadow: 0 0 40px rgba(0,255,209,0.1);
}
.free-hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(500px 300px at 50% 0%, rgba(0,255,209,0.15), transparent 70%);
  pointer-events: none;
}
.free-h1 {
  font-family: var(--f-display); font-weight: 800;
  font-size: clamp(36px, 10vw, 60px); line-height: 0.95;
  letter-spacing: -0.035em;
  margin: 14px 0 10px;
  position: relative;
}
.free-sub {
  color: var(--fg-2); font-size: 15px; max-width: 32ch; margin: 0 auto 16px;
  line-height: 1.45;
}
.free-list {
  list-style: none; padding: 0; margin: 12px auto 20px;
  max-width: 30ch;
  display: flex; flex-direction: column; gap: 6px;
  text-align: left;
}
.free-list li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 14px;
}
.free-list li::before {
  content: '✓'; color: var(--cyan); font-weight: 800; flex-shrink: 0;
  text-shadow: 0 0 6px rgba(0,255,209,0.5);
}
.free-cta {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 16px 24px; width: 100%; max-width: 320px;
  background: linear-gradient(135deg, var(--cyan) 0%, var(--cyan-2) 100%);
  color: #071813;
  font-family: var(--f-display); font-weight: 800; font-size: 15px;
  letter-spacing: 0.01em;
  border-radius: var(--r-pill);
  box-shadow: var(--glow-cyan), 0 4px 0 rgba(0,0,0,0.2) inset;
  position: relative; overflow: hidden;
  transition: transform .2s var(--ease-spring);
}
.free-cta:active { transform: scale(0.97); }
.free-cta::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(120deg, transparent 40%, rgba(255,255,255,0.45) 50%, transparent 60%);
  transform: translateX(-100%); animation: cta-shine 3.2s infinite;
}

/* Pro teaser (below the fold emotionally) */
.pro-teaser {
  margin-top: 40px;
  padding: 22px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--r-3);
}
.pro-h {
  font-family: var(--f-display); font-weight: 800;
  font-size: clamp(26px, 7vw, 36px); line-height: 1;
  letter-spacing: -0.025em;
  margin: 10px 0 8px;
}
.pro-sub { color: var(--fg-2); font-size: 14px; margin-bottom: 16px; line-height: 1.45; }
.pro-features {
  display: flex; flex-direction: column; gap: 10px;
  margin-bottom: 16px;
}
.pro-feat {
  display: flex; gap: 12px; align-items: flex-start;
  padding: 12px 14px;
  background: rgba(0,0,0,0.25);
  border: 1px solid rgba(255,216,77,0.2);
  border-radius: var(--r-2);
}
.pro-ic {
  font-size: 20px; line-height: 1; flex-shrink: 0;
  width: 32px; height: 32px; display: grid; place-items: center;
  background: linear-gradient(135deg, rgba(255,216,77,0.2), rgba(255,46,146,0.1));
  border-radius: 8px;
}
.pro-feat-t { font-family: var(--f-display); font-weight: 700; font-size: 14px; }
.pro-feat-s { font-size: 12px; color: var(--muted); margin-top: 2px; line-height: 1.35; }

.pro-card-holder {
  display: flex; flex-direction: column; align-items: center;
  margin-top: 8px;
}
.pro-card-holder .price-toggle { margin: 0 auto 14px; }
.price-topbar {
  display: flex; align-items: center; justify-content: space-between;
  gap: 10px; margin-bottom: 6px;
}
.price-topbar .back {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 14px; border-radius: var(--r-pill);
  background: var(--glass); border: 1px solid var(--glass-border);
  font-family: var(--f-mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--fg-2);
  -webkit-tap-highlight-color: transparent;
}
.price-signin {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 16px; border-radius: var(--r-pill);
  background: linear-gradient(135deg, rgba(157,78,255,0.3), rgba(255,46,146,0.22));
  border: 1px solid var(--glass-border-hi);
  font-family: var(--f-display); font-weight: 700; font-size: 13px;
  color: var(--fg); box-shadow: var(--glow-violet);
  -webkit-tap-highlight-color: transparent;
  transition: transform .2s var(--ease-spring);
}
.price-signin:active { transform: scale(0.96); }
.price-signin svg { width: 16px; height: 16px; }
.price-signed {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 14px; border-radius: var(--r-pill);
  background: var(--glass); border: 1px solid var(--glass-border);
  font-family: var(--f-mono); font-size: 11px; letter-spacing: 0.08em;
  color: var(--fg-2);
}
.price-signed .av {
  width: 22px; height: 22px; border-radius: 50%;
  background: linear-gradient(135deg, var(--cyan), var(--violet)); color: #081019;
  display: grid; place-items: center; font-family: var(--f-display); font-weight: 800; font-size: 11px;
}
.price-hero {
  text-align: center; margin: 20px 0 24px;
}
.price-hero h1 {
  font-size: clamp(34px, 9vw, 56px); line-height: 0.95; letter-spacing: -0.035em;
}
.price-hero .sub {
  margin-top: 12px; color: var(--fg-2); font-size: 15px; max-width: 32ch; margin-left: auto; margin-right: auto;
}
.price-toggle {
  display: flex; margin: 16px auto; padding: 4px;
  background: var(--glass); border: 1px solid var(--glass-border);
  border-radius: var(--r-pill); width: fit-content;
  gap: 2px;
}
.price-toggle button {
  padding: 10px 18px; font-size: 13px; font-family: var(--f-display); font-weight: 700;
  border-radius: var(--r-pill); color: var(--muted);
  transition: all .25s var(--ease-out);
}
.price-toggle button.on {
  background: var(--cyan); color: #071813; box-shadow: var(--glow-cyan);
}
.save-chip {
  display: inline-block; margin-left: 6px; padding: 2px 8px;
  background: var(--gold); color: #1A1400;
  border-radius: var(--r-pill); font-size: 10px; letter-spacing: 0.1em;
}

.plan-card {
  padding: 24px; margin-top: 16px;
  position: relative;
}
.plan-card.highlight::before {
  content: 'MOST POPULAR'; position: absolute;
  top: -12px; left: 50%; transform: translateX(-50%);
  padding: 4px 12px; background: var(--gold); color: #1A1400;
  font-family: var(--f-mono); font-size: 10px; font-weight: 800; letter-spacing: 0.2em;
  border-radius: var(--r-pill);
}
.billed-line {
  margin-top: 4px; text-align: center;
  font-family: var(--f-mono); font-size: 11px; letter-spacing: 0.1em;
  color: var(--muted);
}
.plan-card .plan-price { justify-content: center; margin: 14px 0 4px; }

.paywall-feats {
  list-style: none; padding: 0; margin: 12px 0 4px;
  display: flex; flex-direction: column; gap: 8px;
  text-align: left;
}
.paywall-feats li {
  padding: 10px 12px; border-radius: var(--r-2);
  background: rgba(0,0,0,0.25);
  border-left: 3px solid var(--cyan);
  font-size: 13px; line-height: 1.4;
}
.paywall-feats li b { color: var(--fg); font-weight: 700; }

/* ——— Compact paywall: decision UI at top, features below ——— */
.paywall-compact .pw-top {
  text-align: center;
  padding: 6px 0 10px;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
}
.paywall-compact .pw-kicker {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 3px 10px; border-radius: var(--r-pill);
  background: rgba(255,216,77,0.12);
  border: 1px solid rgba(255,216,77,0.4);
  font-family: var(--f-mono); font-size: 10px; letter-spacing: 0.18em;
  color: var(--gold);
}
.paywall-compact .pw-kicker .dot { width: 5px; height: 5px; border-radius: 50%; animation: pulse 1.6s infinite; }
.paywall-compact .pw-title {
  font-family: var(--f-display); font-weight: 800;
  font-size: clamp(20px, 5.4vw, 26px); line-height: 1.1;
  letter-spacing: -0.025em;
  margin: 0;
  max-width: 22ch;
}
.paywall-compact .price-toggle { margin: 2px auto; }
.paywall-compact .paywall-price {
  margin: 0; justify-content: center; align-items: baseline; gap: 6px;
  display: flex;
}
.paywall-compact .paywall-price .big { font-size: 48px; line-height: 1; }
.paywall-compact .paywall-price .per { color: var(--muted); font-family: var(--f-mono); font-size: 13px; }
.paywall-compact .billed-line { margin-top: 0; text-align: center; }
.paywall-compact .pw-cta {
  width: 100%; max-width: 320px; margin-top: 6px;
  padding: 14px 20px; font-size: 15px;
}

.pw-feats-grid {
  margin-top: 16px;
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 6px;
}
.pw-feat {
  display: flex; align-items: center; gap: 8px;
  padding: 8px 10px; border-radius: var(--r-2);
  background: rgba(0,0,0,0.22);
  border: 1px solid var(--glass-border);
  font-size: 12px; line-height: 1.2;
}
.pw-feat-ic {
  flex-shrink: 0;
  width: 22px; height: 22px; display: grid; place-items: center;
  background: linear-gradient(135deg, rgba(255,216,77,0.22), rgba(255,46,146,0.12));
  border-radius: 6px;
  font-size: 13px;
}
.pw-feat-t {
  font-family: var(--f-display); font-weight: 700;
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.pw-escape {
  display: block;
  margin: 16px auto 0;
  padding: 8px 16px;
  font-size: 12px;
  color: var(--muted);
}
.plan-card h2 { font-size: 26px; margin-bottom: 8px; }
.plan-price {
  display: flex; align-items: baseline; gap: 8px; margin: 14px 0;
}
.plan-price .big {
  font-family: var(--f-display); font-weight: 800; font-size: 52px;
  letter-spacing: -0.04em; line-height: 1;
  background: linear-gradient(135deg, var(--cyan), var(--gold));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.plan-price .per { color: var(--muted); font-family: var(--f-mono); font-size: 13px; }
.plan-strike {
  color: var(--muted); text-decoration: line-through; font-size: 14px;
  font-family: var(--f-mono);
}
.plan-features {
  list-style: none; padding: 0; margin: 16px 0; display: flex; flex-direction: column; gap: 8px;
}
.plan-features li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 14px;
}
.plan-features li::before {
  content: '✓'; color: var(--cyan); font-weight: 800; flex-shrink: 0;
  text-shadow: 0 0 6px rgba(0,255,209,0.6);
}

.plan-cta {
  display: block; width: 100%; padding: 16px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-2) 100%);
  color: #1A1400;
  font-family: var(--f-display); font-weight: 800; font-size: 16px;
  border-radius: var(--r-2);
  box-shadow: var(--glow-gold);
  margin-top: 8px;
}

.plan-meta {
  margin-top: 10px; display: flex; justify-content: space-between; align-items: center;
  font-family: var(--f-mono); font-size: 11px; color: var(--muted); letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* Exit intent / Paywall */
.paywall-modal h2 { font-size: 30px; line-height: 1; }
.paywall-price {
  display: flex; align-items: baseline; gap: 10px; margin: 8px 0 12px;
  justify-content: center;
}
.paywall-price .big { font-family: var(--f-display); font-weight: 800; font-size: 54px; color: var(--gold); letter-spacing: -0.03em; line-height: 1; }
.paywall-price .per { color: var(--muted); font-family: var(--f-mono); font-size: 12px; }

.countdown {
  margin-top: 10px; display: flex; gap: 8px; justify-content: center;
  font-family: var(--f-mono); font-size: 12px; color: var(--fg-2);
}
.countdown b { color: var(--gold); font-size: 18px; }

.exit-savings {
  background: linear-gradient(135deg, rgba(255,46,146,0.2), rgba(255,216,77,0.18));
  border: 1px solid rgba(255,216,77,0.45);
  padding: 12px; border-radius: var(--r-2);
  font-family: var(--f-display); font-weight: 700; text-align: center;
  margin: 8px 0; font-size: 14px;
}
.exit-savings b { color: var(--gold); font-size: 18px; }

.faq {
  margin-top: 24px;
  display: flex; flex-direction: column; gap: 10px;
}
.faq-item {
  padding: 14px; border-radius: var(--r-2);
  background: var(--glass); border: 1px solid var(--glass-border);
}
.faq-item summary {
  cursor: pointer; font-weight: 700; font-size: 14px;
  list-style: none; position: relative; padding-right: 24px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+'; position: absolute; right: 4px; top: 0; color: var(--cyan);
  font-size: 22px; font-weight: 300; transition: transform .25s;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p { margin: 10px 0 0; color: var(--fg-2); font-size: 13.5px; line-height: 1.5; }
