/* ===================================================================
   we-verifi — Project Verifi product page styles. Extends
   we-verifi-brand.css and site.css (load both first) — reuses
   --graphite, --cloud, --hairline, --muted, --indigo, --teal,
   --magenta, --foil-gradient, --radius, --font-display/body/mono
   rather than redefining them.

   Structural sibling of join.css (.join-hero/.join-blocks/.join-block),
   renamed .pv-hero/.pv-blocks/.pv-block since this is a different page
   with a different purpose (product overview, not pricing) — kept
   deliberately parallel so the two pages read as part of one site.
   =================================================================== */

/* ---------- hero ---------- */

.pv-hero {
  max-width: 760px;
  margin: 0 auto;
  padding: 64px 32px 12px;
}

.pv-hero .section-label {
  padding: 0;
  margin-bottom: 18px;
}

.pv-hero h1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.9rem, 2.6vw + 1rem, 2.6rem);
  line-height: 1.12;
  letter-spacing: -0.01em;
  color: var(--graphite);
  margin: 0 0 16px;
  max-width: 20ch;
}

.pv-hero .lede {
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--muted);
  margin: 0 0 28px;
  max-width: 62ch;
}

.pv-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* ---------- main blocks ---------- */

.pv-blocks {
  max-width: 1080px;
  margin: 0 auto;
  padding: 20px 32px 72px;
  display: grid;
  gap: 24px;
}

.pv-block {
  background: #fff;
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  padding: 36px 34px;
}

.pv-block__eyebrow {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 10px;
}

.pv-block h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 1.22;
  color: var(--graphite);
  margin: 0 0 14px;
  max-width: 32ch;
}

.pv-block__intro {
  font-family: var(--font-body);
  font-size: 0.98rem;
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
  max-width: 66ch;
}

.pv-block__intro + .pv-block__features {
  margin-top: 22px;
}

.pv-block__features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
  max-width: 60ch;
}

.pv-block__features li {
  font-family: var(--font-body);
  font-size: 0.92rem;
  line-height: 1.5;
  color: var(--graphite);
  padding-left: 22px;
  position: relative;
}

.pv-block__features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--teal);
}

/* ---------- responsive ---------- */

@media (max-width: 640px) {
  .pv-hero { padding: 48px 20px 8px; }
  .pv-blocks { padding: 16px 20px 56px; }
  .pv-block { padding: 28px 22px; }
}
