/* ═══════════════════════════════════════════════════════════════
   PRICING PAGE — matcher dashboard
   ═══════════════════════════════════════════════════════════════ */

.pr-hero {
  padding: 56px 0 80px;
  background: var(--bg);
  position: relative;
  overflow: hidden;
}
.pr-hero::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, var(--green-glow), transparent 70%);
  filter: blur(60px);
  pointer-events: none;
}
.pr-hero-inner {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 48px;
  position: relative;
  z-index: 1;
}

.pr-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px 6px 10px;
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: var(--r-pill);
  font-size: 12.5px;
  font-weight: 500;
  color: var(--text-soft);
  margin-bottom: 24px;
  box-shadow: var(--shadow-sm);
}
.pr-tag .dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 3px var(--green-glow);
  animation: pulseDot 2s infinite;
}

.pr-hero-title {
  font-weight: 700;
  font-size: clamp(40px, 6.5vw, 72px);
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin-bottom: 20px;
  color: var(--ink);
}
.pr-hero-title .accent { color: var(--green); }

.pr-hero-lede {
  font-size: 17px;
  line-height: 1.6;
  color: var(--text-soft);
  max-width: 640px;
  margin: 0 auto;
}
.pr-hero-lede strong { color: var(--ink); font-weight: 600; }
.pr-hero-lede em { font-style: italic; color: var(--text); }

.pr-card-wrap {
  position: relative;
  z-index: 1;
  max-width: 540px;
  margin: 0 auto;
}

.pr-card {
  background: var(--paper);
  border: 2px solid var(--green);
  border-radius: var(--r-xl);
  padding: 36px 36px 32px;
  position: relative;
  box-shadow: 0 20px 50px -10px rgba(15, 23, 42, .12), 0 0 50px var(--green-glow);
}
.pr-card-tag {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--green);
  color: var(--paper);
  padding: 6px 16px;
  border-radius: var(--r-pill);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.pr-card-price {
  text-align: center;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 10px;
  margin-bottom: 8px;
  padding-top: 8px;
}
.pr-amt {
  font-weight: 800;
  font-size: 80px;
  line-height: 1;
  color: var(--ink);
  letter-spacing: -0.04em;
  font-feature-settings: "tnum";
}
.pr-amt-suffix {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
}
.pr-curr {
  font-weight: 700;
  font-size: 24px;
  color: var(--ink);
  line-height: 1;
}
.pr-per {
  font-size: 12px;
  color: var(--text-mute);
  line-height: 1;
  font-weight: 500;
}

.pr-card-mo {
  text-align: center;
  font-size: 14px;
  color: var(--text-soft);
  margin-bottom: 24px;
  font-style: italic;
}
.pr-card-mo strong { color: var(--ink); font-style: normal; font-weight: 600; }

.pr-cta {
  display: flex;
  width: 100%;
  margin-bottom: 18px;
}

.pr-trust {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 13px;
  color: var(--text-mute);
  padding-bottom: 24px;
}
.pr-trust span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.pr-divider {
  height: 1px;
  background: var(--rule);
  margin: 0 -36px 24px;
}

.pr-included h4 {
  font-size: 11.5px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--green);
  font-weight: 700;
  margin-bottom: 14px;
  text-align: center;
}
.pr-included ul {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 16px;
}
.pr-included li {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 8px;
  font-size: 13.5px;
  color: var(--text);
  line-height: 1.4;
  align-items: start;
}
.pr-included li span {
  color: var(--green);
  font-weight: 800;
  font-size: 12px;
  margin-top: 1px;
}

/* Compare */
.pr-compare {
  padding: var(--gap-xxl) 0;
  background: var(--paper);
  border-top: 1px solid var(--rule);
}
.pr-cmp-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 48px;
}

/* Founder section */
.founder {
  padding: var(--gap-xxl) 0;
  background: var(--bg);
}
.fnd-card {
  background: var(--ink);
  color: var(--paper);
  border-radius: var(--r-xl);
  padding: 56px;
  position: relative;
  overflow: hidden;
}
.fnd-card::before {
  content: '';
  position: absolute;
  top: -50%; left: -10%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, var(--green-glow), transparent 70%);
  filter: blur(60px);
}
.fnd-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 48px;
  align-items: center;
}
.fnd-title {
  font-weight: 700;
  font-size: clamp(28px, 3.6vw, 40px);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 18px;
  color: var(--paper);
}
.fnd-text {
  font-size: 15px;
  line-height: 1.65;
  color: var(--navy-300);
  margin-bottom: 14px;
}
.fnd-text:last-child { margin-bottom: 0; }
.fnd-text strong { color: var(--paper); font-weight: 600; }

.fnd-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.fnd-stat {
  background: var(--navy-800);
  border: 1px solid var(--navy-700);
  border-radius: var(--r-md);
  padding: 22px 18px;
  display: flex;
  flex-direction: column;
}
.fnd-stat-em {
  background: rgba(22,163,74,.1);
  border-color: var(--green);
}
.fnd-num {
  font-weight: 700;
  font-size: 36px;
  line-height: 1;
  color: var(--green);
  letter-spacing: -0.03em;
  font-feature-settings: "tnum";
  margin-bottom: 8px;
}
.fnd-lbl {
  font-size: 11.5px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--navy-400);
  font-weight: 600;
}

@media (max-width: 980px) {
  .pr-included ul { grid-template-columns: 1fr; }
  .fnd-grid { grid-template-columns: 1fr; gap: 32px; }
  .fnd-card { padding: 40px 28px; }
}
@media (max-width: 640px) {
  .pr-card { padding: 28px 22px 24px; }
  .pr-divider { margin-left: -22px; margin-right: -22px; }
  .pr-amt { font-size: 64px; }
  .fnd-stats { grid-template-columns: 1fr; }
}
