/* ============================================================
   Pricing — HSaaS (v3: 2+3 layout, V5 dominant)
   ============================================================
   Top row    : Quick Scan ($500)  |  Full Analysis ($1,500)
   Bottom row : Swarm ($2,500)  |  V5 COMPLETE ($5,000)  |  RDT ($10K+)
   V5 sits center of the bottom row, elevated -28px with dual
   green-cyan glow + "MOST COMPREHENSIVE" tab.
   ============================================================ */

.pricing__quote {
  margin: 64px auto;
  max-width: 820px;
  text-align: center;
  font-family: var(--font-humanist);
  font-style: italic;
  font-size: 28px;
  color: var(--fg-warm);
  line-height: 1.4;
  padding: 0 24px;
}

/* Two-row container */
.pricing {
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding-top: 36px;       /* room for the V5 tab that sticks above */
}

.pricing__row {
  display: grid;
  gap: 24px;
  align-items: stretch;
}
.pricing__row--top    { grid-template-columns: repeat(2, 1fr); max-width: 820px; margin: 0 auto; width: 100%; }
.pricing__row--bottom { grid-template-columns: repeat(3, 1fr); }

@media (max-width: 960px){
  .pricing__row--top,
  .pricing__row--bottom { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; }
}

/* Tile base */
.ptile {
  position: relative;
  background: rgba(10,10,15,0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 32px 24px;
  display: flex; flex-direction: column; gap: 20px;
  min-height: 500px;
  transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
}
.ptile:hover {
  border-color: var(--border-strong);
}

/* ---------- V5 — the dominant tile ---------- */
.ptile--v5 {
  transform: translateY(-28px);
  border-color: transparent;            /* let the dual-glow do the work */
  background:
    linear-gradient(180deg, rgba(10,10,15,0.85) 0%, rgba(10,10,15,0.75) 100%);
  box-shadow:
    0 0 0 1px rgba(0,255,136,0.55),
    0 0 0 2px rgba(0,255,255,0.30),
    0 0 40px rgba(0,255,136,0.28),
    0 0 70px rgba(0,255,255,0.22),
    inset 0 0 40px rgba(0,255,136,0.05);
}
.ptile--v5:hover {
  box-shadow:
    0 0 0 1px rgba(0,255,136,0.75),
    0 0 0 2px rgba(0,255,255,0.45),
    0 0 55px rgba(0,255,136,0.40),
    0 0 90px rgba(0,255,255,0.30),
    inset 0 0 40px rgba(0,255,136,0.07);
}
@media (max-width: 960px){
  .ptile--v5 { transform: none; }
}

/* Legacy "featured" tile kept as a softer recommendation */
.ptile--featured {
  border-color: var(--cyan);
  box-shadow: 0 0 0 1px rgba(0,255,255,0.30), 0 0 25px rgba(0,255,255,0.18), inset 0 0 24px rgba(0,255,255,0.05);
}

/* ---------- Tab ---------- */
.ptile__tab {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  background: var(--cyan);
  color: #000;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: var(--track-wider);
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: var(--r-sm);
  box-shadow: var(--glow-cyan-md);
  white-space: nowrap;
}
.ptile__tab--v5 {
  background: linear-gradient(90deg, var(--green) 0%, var(--cyan) 100%);
  color: #000;
  box-shadow: 0 0 18px rgba(0,255,136,0.55), 0 0 30px rgba(0,255,255,0.35);
  padding: 8px 18px;
  font-size: 11px;
  letter-spacing: 0.18em;
}

/* ---------- Title / price / features ---------- */
.ptile__title {
  font-family: var(--font-mono);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: var(--track-wider);
  text-transform: uppercase;
  margin: 0;
}
.ptile__title--green  { color: var(--green); text-shadow: var(--text-glow-green); }
.ptile__title--cyan   { color: var(--cyan);  text-shadow: var(--text-glow-cyan); }
.ptile__title--amber  { color: var(--amber); text-shadow: var(--text-glow-amber); }
.ptile__title--dual   {
  background: linear-gradient(90deg, var(--green), var(--cyan));
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
  text-shadow: none;
  filter: drop-shadow(0 0 10px rgba(0,255,136,0.45));
}

.ptile__price {
  font-family: var(--font-mono);
  font-size: 48px;
  font-weight: 700;
  color: var(--fg-1);
  line-height: 1;
  display: flex; align-items: baseline; gap: 8px;
}
.ptile__price-suffix {
  font-size: 14px;
  color: var(--fg-2);
  font-weight: 500;
  letter-spacing: var(--track-wide);
}

.ptile__sub {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--fg-2);
  letter-spacing: var(--track-wider);
  text-transform: uppercase;
  margin: -12px 0 0;
}

.ptile__feats {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex; flex-direction: column; gap: 10px;
  flex: 1;
}
.ptile__feats li {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--fg-1);
  padding-left: 18px;
  position: relative;
  line-height: 1.45;
}
.ptile__feats li::before {
  content: ">";
  position: absolute; left: 0; top: 0;
  font-weight: 700;
}
.ptile--green  .ptile__feats li::before { color: var(--green); }
.ptile--cyan   .ptile__feats li::before { color: var(--cyan); }
.ptile--amber  .ptile__feats li::before { color: var(--amber); }
.ptile--v5     .ptile__feats li::before {
  color: var(--green);
  text-shadow: 0 0 6px rgba(0,255,136,0.6);
}

.ptile__cta { margin-top: auto; }
.ptile__cta .btn { width: 100%; }

/* V5-specific CTA: dual-gradient fill */
.ptile__cta .btn--v5 {
  background: linear-gradient(90deg, var(--green) 0%, var(--cyan) 100%);
  color: #000;
  border: 1px solid transparent;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  box-shadow: 0 0 18px rgba(0,255,136,0.35), 0 0 28px rgba(0,255,255,0.22);
}
.ptile__cta .btn--v5:hover {
  filter: brightness(1.1);
  box-shadow: 0 0 25px rgba(0,255,136,0.55), 0 0 40px rgba(0,255,255,0.35);
}
