/* ============================================================
   Unfollow Finder — Pricing page
   Loads after style.css
   ============================================================ */

.pr {
  background: var(--bg);
  padding: calc(var(--nav-h) + 60px) 0 88px;
}


/* ── HEAD ───────────────────────────────────── */
.pr-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 34px;
}
.pr-head h1 {
  font-family: var(--display);
  font-size: clamp(31px, 4.8vw, 48px);
  font-weight: 900;
  letter-spacing: -.042em;
  line-height: 1.1;
  margin-bottom: 16px;
}
.pr-head p {
  font-size: 16.5px;
  color: var(--muted);
  line-height: 1.65;
}


/* ── TOGGLE ─────────────────────────────────── */
.pr-toggle-wrap { display: flex; justify-content: center; margin-bottom: 40px; }

.pr-toggle {
  display: inline-flex;
  background: var(--card);
  border-radius: 100px;
  padding: 5px;
  gap: 3px;
}
.pr-toggle-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 40px;
  padding: 0 22px;
  background: none;
  border: none;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -.01em;
  color: var(--muted);
  cursor: pointer;
  white-space: nowrap;
  transition: background .2s, color .2s, box-shadow .2s;
}
.pr-toggle-btn:hover { color: var(--ink); }
.pr-toggle-btn.is-on {
  background: var(--ink);
  color: #fff;
}

.pr-save {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .02em;
  padding: 3px 9px;
  border-radius: 6px;
  background: var(--green-wash);
  color: var(--green);
}
.pr-toggle-btn.is-on .pr-save { background: rgba(255,255,255,.16); color: #6EE7B7; }


/* ── GRID ───────────────────────────────────── */
.pr-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  align-items: start;
  max-width: 1040px;
  margin: 0 auto;
  padding-top: 12px; 
}

.pr-card {
  background: var(--card);
  border-radius: var(--r-xl);
  padding: 30px 26px;
  position: relative;
  display: flex;
  flex-direction: column;
}
.pr-card--top {
  box-shadow: 0 0 0 2px var(--pink), 0 24px 48px -24px rgba(225,0,94,.4);
  padding-top: 34px;
}

.pr-flag {
  position: absolute;
  top: -11px; left: 50%;
  transform: translateX(-50%);
  background: var(--pink);
  color: #fff;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 7px;
  white-space: nowrap;
}

.pr-name {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -.02em;
  color: var(--ink);
  margin-bottom: 4px;
}
.pr-tagline {
  font-size: 13px;
  color: var(--faint);
  margin-bottom: 22px;
  min-height: 20px;
}

.pr-price {
  display: flex;
  align-items: baseline;
  gap: 7px;
  margin-bottom: 5px;
}
.pr-amount {
  font-family: var(--display);
  font-size: 44px;
  font-weight: 900;
  letter-spacing: -.05em;
  line-height: 1;
  color: var(--ink);
  transition: opacity .18s;
}
.pr-amount.is-swapping { opacity: 0; }
.pr-per { font-size: 14px; color: var(--faint); font-weight: 500; }

.pr-billed {
  font-size: 12.5px;
  color: var(--muted);
  font-weight: 500;
  margin-bottom: 24px;
  min-height: 19px;
}

.pr-cta { width: 100%; justify-content: center; margin-bottom: 26px; }
.btn-outline.pr-cta { margin-top: 0; height: 44px; }
.btn-primary.pr-cta { height: 44px; }


/* ── FEATURE LIST ───────────────────────────── */
.pr-feats {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 11px;
  margin: 0;
  padding: 0;
}
.pr-feats li {
  position: relative;
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--muted);
  padding-left: 26px;
}
.pr-feats li strong { color: var(--ink); font-weight: 650; }

.pr-feats li::before {
  content: '';
  position: absolute;
  left: 0; top: 2px;
  width: 17px; height: 17px;
  border-radius: 50%;
  background-repeat: no-repeat;
  background-position: center;
}
.pr-feats li.yes::before {
  background-color: var(--pink-wash);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath d='M2.5 6.2l2.2 2.2 4.8-4.8' stroke='%23E1005E' stroke-width='1.9' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}
.pr-feats li.no {
  color: var(--faint);
}
.pr-feats li.no::before {
  background-color: var(--line-2);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath d='M3.6 3.6l4.8 4.8M8.4 3.6l-4.8 4.8' stroke='%23A2A2B6' stroke-width='1.7' stroke-linecap='round'/%3E%3C/svg%3E");
}

.pr-foot-note {
  text-align: center;
  font-size: 13px;
  color: var(--faint);
  margin-top: 26px;
}


/* ── SECTION HEADINGS ───────────────────────── */
.pr-h2 {
  font-family: var(--display);
  font-size: clamp(24px, 3.4vw, 32px);
  font-weight: 900;
  letter-spacing: -.035em;
  text-align: center;
  margin-bottom: 30px;
}


/* ── COMPARISON TABLE ───────────────────────── */
.pr-compare { margin-top: 80px; }

.pr-table-wrap {
  background: var(--card);
  border-radius: var(--r-xl);
  overflow-x: auto;
  max-width: 900px;
  margin: 0 auto;
}
.pr-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 560px;
}

.pr-table th {
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: -.01em;
  color: var(--ink);
  padding: 20px 18px 14px;
  text-align: center;
  border-bottom: 1px solid var(--line);
}
.pr-table th:first-child { text-align: left; color: var(--faint); font-weight: 600; }
.pr-table th.is-hi { color: var(--pink); }

.pr-table td {
  font-size: 13.5px;
  color: var(--muted);
  padding: 14px 18px;
  text-align: center;
  border-bottom: 1px solid var(--line-2);
}
.pr-table td:first-child { text-align: left; color: var(--ink); font-weight: 500; }
.pr-table td strong { font-weight: 650; }
.pr-table td.is-hi { background: var(--pink-wash); }
.pr-table th.is-hi { background: var(--pink-wash); }
.pr-table tr:last-child td { border-bottom: none; }

.tick, .cross {
  display: inline-block;
  width: 18px; height: 18px;
  border-radius: 50%;
  background-repeat: no-repeat;
  background-position: center;
  vertical-align: middle;
}
.tick {
  background-color: var(--pink-wash);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath d='M2.5 6.2l2.2 2.2 4.8-4.8' stroke='%23E1005E' stroke-width='1.9' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}
td.is-hi .tick { background-color: rgba(225,0,94,.15); }
.cross {
  background-color: var(--line-2);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath d='M3.6 3.6l4.8 4.8M8.4 3.6l-4.8 4.8' stroke='%23A2A2B6' stroke-width='1.7' stroke-linecap='round'/%3E%3C/svg%3E");
}


/* ── FAQ ────────────────────────────────────── */
.pr-faq { margin-top: 80px; max-width: 700px; margin-left: auto; margin-right: auto; }


/* ── CTA BAND ───────────────────────────────── */
.pr-cta-band {
  background: var(--ink);
  border-radius: var(--r-xl);
  padding: 48px 36px;
  text-align: center;
  margin-top: 80px;
  position: relative;
  overflow: hidden;
}
.pr-cta-band::before {
  content: '';
  position: absolute;
  width: 460px; height: 460px;
  background: var(--pink);
  border-radius: 50%;
  filter: blur(115px);
  opacity: .2;
  top: -55%; left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
}
.pr-cta-band h2,
.pr-cta-band p,
.pr-cta-band a { position: relative; z-index: 1; }

.pr-cta-band h2 {
  font-family: var(--display);
  font-size: 27px;
  font-weight: 900;
  letter-spacing: -.035em;
  color: #fff;
  margin-bottom: 10px;
}
.pr-cta-band p {
  font-size: 15px;
  color: rgba(255,255,255,.58);
  max-width: 420px;
  margin: 0 auto 28px;
  line-height: 1.65;
}


/* ── RESPONSIVE ─────────────────────────────── */
@media (max-width: 940px) {
  .pr-grid { grid-template-columns: 1fr; max-width: 440px; gap: 18px; }
  .pr-card--top { order: -1; }
}

@media (max-width: 620px) {
  .pr { padding: calc(var(--nav-h) + 36px) 0 60px; }
  .pr-head h1 br { display: none; }
  .pr-head p { font-size: 15px; }
  .pr-toggle-btn { padding: 0 16px; font-size: 13.5px; }
  .pr-save { font-size: 10px; padding: 3px 7px; }
  .pr-compare, .pr-faq, .pr-cta-band { margin-top: 56px; }
  .pr-cta-band { padding: 36px 24px; }
  .pr-cta-band h2 { font-size: 22px; }
}