/* provider-skin.css — Provider profile "Across Oregon" skin.
   Ported from the Claude Design deck (Provider Skins.dc.html) with these
   baked-in tweaks: accent=Unified Green, backdrop=Sage Field (Subtle),
   divider=Wave, badges=Text, social=Corner, ctaStyle=Solid, ctaShape=Rounded,
   nameFlair=Italic Accent, iconShape=Round, avatar=Circle, rounding=Soft,
   headings=Editorial (serif), hero=Standard, sidebar=Right, elevation=Lifted,
   topBar=Off, statStrip=Off, availability=Off, motion=Cinematic.
   City color drives only the hero wash + backdrop tint (--pvx-bg-*);
   all interactive accents stay brand green (--pvx-acc-*). */

.pvx {
  background: #fff; /* wave divider fills white; body + banner sit on white */
  --pvx-acc-mid: #2D9650;
  --pvx-acc-strong: #1F7537;
  --pvx-acc-soft: #E7F3E8;
  --pvx-acc-ink: #0B3A18;
  /* City palette — overridden inline per city on .pvx-hero's parent */
  --pvx-bg-mid: #2D9650;
  --pvx-bg-soft: #E7F3E8;
  --pvx-rad: 16px;
  --pvx-cta-rad: 10px;
  --pvx-serif: 'Lora', Georgia, serif;
  --pvx-sans: 'Inter', ui-sans-serif, system-ui, sans-serif;
  --pvx-text-strong: #0f172a;
  --pvx-text-body: #334155;
  --pvx-text-muted: #64748b;
  --pvx-text-subtle: #94a3b8;
  --pvx-border: #e2e8f0;
  --pvx-mini-sh: 0 16px 36px -18px rgba(15, 40, 27, .16);
}

/* ── Hero ─────────────────────────────────────────────────────── */
/* No overflow:hidden here — tooltips must be able to escape the band. */
.pvx-hero {
  position: relative;
  background: linear-gradient(170deg, var(--pvx-bg-soft) 0%, #F7FCF8 64%);
}
.pvx-hero__field {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(720px 420px at 88% -10%, color-mix(in srgb, var(--pvx-bg-mid) 12%, transparent), transparent 66%),
    radial-gradient(color-mix(in srgb, var(--pvx-bg-mid) 14%, transparent) 1px, transparent 1.5px);
  background-size: auto, 22px 22px;
  opacity: .6;
  z-index: 0;
  pointer-events: none;
}
.pvx-hero__inner {
  position: relative;
  z-index: 2;
  max-width: 64rem;
  margin: 0 auto;
  padding: 22px 1rem 96px;
}
@media (min-width: 640px) { .pvx-hero__inner { padding-left: 1.5rem; padding-right: 1.5rem; } }
@media (min-width: 1024px) { .pvx-hero__inner { padding-left: 2rem; padding-right: 2rem; } }
.pvx-hero__wave {
  position: absolute;
  left: 0; right: 0; bottom: -1px;
  width: 100%;
  height: 96px;
  z-index: 1;
  display: block;
  pointer-events: none;
}

/* Corner socials (top-right of hero band) */
.pvx-socials {
  position: absolute;
  top: 16px; right: 1rem;
  z-index: 3;
  display: inline-flex;
  gap: 6px;
}
@media (min-width: 640px) { .pvx-socials { right: 1.5rem; } }
@media (min-width: 1024px) { .pvx-socials { right: 2rem; } }
.pvx-socials a {
  width: 30px; height: 30px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, .85);
  border: 1px solid var(--pvx-border);
  color: var(--pvx-acc-strong);
  transition: transform .15s, background .15s;
}
.pvx-socials a:hover { background: #fff; transform: translateY(-1px); }
.pvx-socials svg { width: 14px; height: 14px; }

/* Hero layout */
.pvx-hero__row {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.pvx-avatar {
  flex-shrink: 0;
  width: 96px; height: 96px;
  border-radius: 50%;
}
.pvx-avatar img,
.pvx-avatar .pvx-avatar__ini {
  width: 100%; height: 100%;
  border-radius: 50%;
  object-fit: cover;
  object-position: top;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Clinic brand marks (rect logo card / circle logo) + tagline */
.pvx-brandcard {
  flex-shrink: 0;
  width: 300px;
  max-width: 80vw;
  height: 112px;
  background: #fff;
  border: 1px solid var(--pvx-border);
  border-radius: 16px;
  padding: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pvx-brandcard img { max-width: 100%; max-height: 100%; object-fit: contain; display: block; }
.pvx-avatar--logo {
  background: #fff;
  border: 1px solid var(--pvx-border);
  border-radius: 50%;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pvx-avatar--logo img { border-radius: 0; object-fit: contain; max-width: 100%; max-height: 100%; width: auto; height: auto; }
.pvx-tagline {
  font-family: var(--pvx-serif);
  font-style: italic;
  font-size: 15px;
  color: var(--pvx-text-muted);
  margin: 6px 0 0;
}

/* Eyebrow: CITY | ✓ VERIFIED · TELEHEALTH · ℞ PRESCRIBER */
.pvx-eyebrow {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  font: 700 10.5px var(--pvx-sans);
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--pvx-acc-strong);
  margin-bottom: 6px;
}
.pvx-eyebrow__sep {
  width: 1px; height: 11px;
  background: var(--pvx-acc-mid);
  opacity: .55;
  flex-shrink: 0;
}
.pvx-eyebrow .pvx-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  cursor: help;
  color: var(--pvx-acc-strong);
  text-decoration: none;
}
.pvx-eyebrow .pvx-badge .pvx-badge__glyph { font-size: 12.5px; line-height: 1; letter-spacing: 0; }
.pvx-badge--rx { color: #4F46E5 !important; }
.pvx-badge--sup { color: #1D4ED8 !important; }
.pvx-badge--community { color: #B45309 !important; }

/* Name */
.pvx-name-row { display: flex; align-items: center; gap: 10px; }
.pvx-name {
  font-family: var(--pvx-serif);
  font-weight: 700;
  font-size: 34px;
  letter-spacing: -.02em;
  color: var(--pvx-text-strong);
  margin: 0;
  line-height: 1.06;
}
.pvx-name em {
  font-style: italic;
  color: var(--pvx-acc-strong);
}

/* Accepting dot */
.pvx-dot-wrap { flex-shrink: 0; cursor: help; }
.pvx-dot {
  display: block;
  width: 10px; height: 10px;
  border-radius: 50%;
}
.pvx-dot--on {
  background: var(--pvx-acc-mid);
  box-shadow: 0 0 0 4px var(--pvx-acc-soft);
}
.pvx-dot--off {
  background: #cbd5e1;
  box-shadow: 0 0 0 4px #f1f5f9;
}
@keyframes pvxDotPulse {
  0% { box-shadow: 0 0 0 4px var(--pvx-acc-soft), 0 0 0 5px color-mix(in srgb, var(--pvx-acc-mid) 40%, transparent); }
  75%, 100% { box-shadow: 0 0 0 4px var(--pvx-acc-soft), 0 0 0 15px transparent; }
}
.pvx-dot--on { animation: pvxDotPulse 2.4s cubic-bezier(.25, .46, .45, .94) infinite; }

/* Meta line: creds · pin city · lic */
.pvx-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 8px;
  flex-wrap: wrap;
  font: 600 13.5px var(--pvx-sans);
  color: var(--pvx-text-muted);
}
.pvx-meta .pvx-meta__soft {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-weight: 500;
  color: var(--pvx-text-subtle);
}
.pvx-meta svg { width: 13px; height: 13px; flex-shrink: 0; }

/* CTA row */
.pvx-ctas {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 15px;
  flex-wrap: wrap;
}
.pvx-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 16px;
  border-radius: var(--pvx-cta-rad);
  font: 600 13.5px var(--pvx-sans);
  cursor: pointer;
  text-decoration: none;
  border: 1px solid transparent;
  transition: background .15s, transform .15s;
}
.pvx-btn svg { width: 15px; height: 15px; }
.pvx-btn--solid { background: var(--pvx-acc-mid); color: #fff; }
.pvx-btn--solid:hover { background: var(--pvx-acc-strong); }
.pvx-btn--ghost {
  background: #fff;
  color: var(--pvx-acc-strong);
  border-color: var(--pvx-border);
}
.pvx-btn--ghost:hover { border-color: var(--pvx-acc-mid); }
.pvx-pill-heart {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 8px 13px;
  border-radius: 999px;
  font: 600 12.5px var(--pvx-sans);
  cursor: pointer;
  border: 1px solid;
  background: #fff;
  transition: all .15s;
}
.pvx-pill-heart svg { width: 13px; height: 13px; }
.pvx-pill-heart--on { border-color: #FBCFE8; color: #DB2777; background: #fff; }
.pvx-pill-heart--off { border-color: var(--pvx-border); color: var(--pvx-text-subtle); }
.pvx-pill-heart--off:hover { border-color: #FBCFE8; color: #DB2777; }

/* ── Tooltips (design deck op-tip port) ───────────────────────── */
.pvx-tip { position: relative; display: inline-flex; align-items: center; }
.pvx-tip .pvx-bub {
  position: absolute;
  bottom: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(4px);
  width: max-content;
  max-width: 200px;
  background: #0B3A18;
  color: #fff;
  font: 500 11px/1.45 var(--pvx-sans);
  padding: 6px 9px;
  border-radius: 8px;
  opacity: 0;
  visibility: hidden;
  transition: opacity .18s ease, transform .18s ease;
  z-index: 40;
  box-shadow: 0 14px 30px -10px rgba(11, 58, 24, .6);
  pointer-events: none;
  text-transform: none;
  letter-spacing: normal;
  white-space: normal;
}
.pvx-tip .pvx-bub::after {
  content: "";
  position: absolute;
  top: 100%; left: 50%;
  transform: translateX(-50%);
  border: 6px solid transparent;
  border-top-color: #0B3A18;
}
.pvx-tip:hover .pvx-bub, .pvx-tip:focus .pvx-bub, .pvx-tip:focus-within .pvx-bub {
  opacity: 1; visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.pvx-tip.pvx-tip--tl .pvx-bub { left: -4px; right: auto; transform: translateX(0) translateY(4px); }
.pvx-tip.pvx-tip--tl:hover .pvx-bub, .pvx-tip.pvx-tip--tl:focus .pvx-bub { transform: translateX(0) translateY(0); }
.pvx-tip.pvx-tip--tl .pvx-bub::after { left: 9px; right: auto; transform: none; }
.pvx-tip.pvx-tip--tr .pvx-bub { left: auto; right: -4px; transform: translateX(0) translateY(4px); }
.pvx-tip.pvx-tip--tr:hover .pvx-bub, .pvx-tip.pvx-tip--tr:focus .pvx-bub { transform: translateX(0) translateY(0); }
.pvx-tip.pvx-tip--tr .pvx-bub::after { left: auto; right: 9px; transform: none; }
/* Below-opening variants for hero elements (nothing above to collide with the sticky nav) */
.pvx-tip.pvx-tip--bl .pvx-bub, .pvx-tip.pvx-tip--br .pvx-bub {
  bottom: auto;
  top: calc(100% + 9px);
  transform: translateX(0) translateY(-4px);
}
.pvx-tip.pvx-tip--bl .pvx-bub { left: -4px; right: auto; }
.pvx-tip.pvx-tip--br .pvx-bub { left: auto; right: -4px; }
.pvx-tip.pvx-tip--bl:hover .pvx-bub, .pvx-tip.pvx-tip--bl:focus .pvx-bub, .pvx-tip.pvx-tip--bl:focus-within .pvx-bub,
.pvx-tip.pvx-tip--br:hover .pvx-bub, .pvx-tip.pvx-tip--br:focus .pvx-bub, .pvx-tip.pvx-tip--br:focus-within .pvx-bub {
  transform: translateX(0) translateY(0);
}
.pvx-tip.pvx-tip--bl .pvx-bub::after, .pvx-tip.pvx-tip--br .pvx-bub::after {
  top: auto;
  bottom: 100%;
  border-top-color: transparent;
  border-bottom-color: #0B3A18;
}
.pvx-tip.pvx-tip--bl .pvx-bub::after { left: 9px; right: auto; transform: none; }
.pvx-tip.pvx-tip--br .pvx-bub::after { left: auto; right: 9px; transform: none; }
.pvx-bub--auto { width: auto; white-space: nowrap; padding: 7px 11px; }

/* ── Body grid ─────────────────────────────────────────────────── */
.pvx-body {
  max-width: 64rem;
  margin: 0 auto;
  padding: 8px 1rem 30px;
}
@media (min-width: 640px) { .pvx-body { padding-left: 1.5rem; padding-right: 1.5rem; } }
@media (min-width: 1024px) {
  .pvx-body { padding-left: 2rem; padding-right: 2rem; }
  .pvx-grid {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 34px;
    align-items: start;
  }
  /* Sidebar rides up so the pricing card floats over the hero wave.
     No position override here — the aside is position:sticky (Tailwind
     .sticky) and that must survive; z-index applies to sticky boxes. */
  .pvx-grid .pvx-aside {
    margin-top: -104px;
    z-index: 3;
  }
  /* Main column follows it halfway so About sits close under the wave. */
  .pvx-grid .pvx-main {
    margin-top: -44px;
    position: relative;
    z-index: 2;
  }
}

/* ── Main column (unboxed, editorial) ─────────────────────────── */
.pvx-h {
  font-family: var(--pvx-serif);
  font-weight: 700;
  font-size: 20px;
  color: var(--pvx-text-strong);
  margin: 0 0 12px;
}
.pvx-main > * + .pvx-h,
.pvx-main .pvx-h + .pvx-h { margin-top: 26px; }
.pvx-about {
  font-family: var(--pvx-serif);
  font-size: 16px;
  line-height: 1.7;
  color: var(--pvx-text-body);
  margin: 0 0 26px;
}
.pvx-about p + p { margin-top: .8em; }

/* Med-mgmt / supervisor callouts */
.pvx-callout {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  border-radius: var(--pvx-rad);
  padding: 15px 17px;
  margin: 0 0 26px;
}
.pvx-callout--rx { background: #EEF2FF; border: 1px solid #C7D2FE; }
.pvx-callout--sup { background: #EFF6FF; border: 1px solid #BFDBFE; }
.pvx-callout__icon {
  width: 34px; height: 34px;
  border-radius: 10px;
  background: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.pvx-callout--rx .pvx-callout__icon { border: 1px solid #C7D2FE; color: #4F46E5; }
.pvx-callout--sup .pvx-callout__icon { border: 1px solid #BFDBFE; color: #1D4ED8; }
.pvx-callout__icon svg { width: 17px; height: 17px; }
.pvx-callout__title { font: 700 13.5px var(--pvx-sans); }
.pvx-callout--rx .pvx-callout__title { color: #4F46E5; }
.pvx-callout--sup .pvx-callout__title { color: #1D4ED8; }
.pvx-callout__text {
  font: 400 12.5px/1.55 var(--pvx-sans);
  color: var(--pvx-text-muted);
  margin-top: 3px;
}

/* Pills */
.pvx-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}
.pvx-pill {
  display: inline-flex;
  align-items: center;
  padding: 6px 13px;
  border-radius: 999px;
  font: 600 13px var(--pvx-sans);
  text-decoration: none;
  transition: filter .15s;
}
.pvx-pill:hover { filter: brightness(.96); }
.pvx-pill--acc { background: var(--pvx-acc-soft); color: var(--pvx-acc-strong); }
.pvx-pill--gray { background: #f1f5f9; color: #475569; }
.pvx-pill--amber { background: #FEF3C7; color: #92400E; }

/* At a glance grid */
.pvx-glance {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 28px;
  margin-bottom: 4px;
}
@media (max-width: 560px) { .pvx-glance { grid-template-columns: 1fr; gap: 13px; } }
.pvx-micro {
  font: 700 10.5px var(--pvx-sans);
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--pvx-text-subtle);
  margin-bottom: 6px;
}
.pvx-glance dd, .pvx-glance .pvx-glance__val {
  font: 500 14px var(--pvx-sans);
  color: var(--pvx-text-body);
  line-height: 1.55;
  margin: 0;
}

/* Video */
.pvx-video { margin: 28px 0 26px; }

/* Legacy boxed sections that remain in the main column pick up the
   editorial heading font so the page reads as one system. The old
   colored tick-bar spans before headings are hidden — the serif
   heading alone is the new visual anchor. */
.pvx-main section h2 { font-family: var(--pvx-serif); letter-spacing: -.01em; }
.pvx-main section h2 .w-1 { display: none; }

/* ── Sidebar cards ─────────────────────────────────────────────── */
.pvx-aside {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.pvx-card {
  background: #fff;
  border: 1px solid var(--pvx-border);
  border-radius: var(--pvx-rad);
  padding: 18px;
}
.pvx-card--lift { box-shadow: var(--pvx-mini-sh); padding: 20px; }
.pvx-card__head {
  display: flex;
  align-items: center;
  gap: 6px;
  font: 700 10.5px var(--pvx-sans);
  text-transform: uppercase;
  letter-spacing: .09em;
  color: var(--pvx-text-subtle);
  margin-bottom: 12px;
}
.pvx-card__head svg { width: 14px; height: 14px; color: var(--pvx-acc-mid); flex-shrink: 0; }
.pvx-card__head .pvx-tip { margin-left: auto; }
.pvx-card__head .pvx-tip svg { width: 13px; height: 13px; color: var(--pvx-text-subtle); }

/* Pricing card */
.pvx-price-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin: 4px 0 4px;
}
.pvx-price-row .pvx-price-label { font: 600 14px var(--pvx-sans); color: var(--pvx-text-body); }
.pvx-price-row .pvx-price-val {
  font-family: var(--pvx-serif);
  font-weight: 700;
  font-size: 17px;
  color: var(--pvx-acc-strong);
}
.pvx-price-row .pvx-price-val span { font-size: 12.5px; font-weight: 400; color: var(--pvx-text-subtle); font-family: var(--pvx-sans); }
.pvx-sliding {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 11px;
  background: var(--pvx-acc-soft);
  border-radius: 999px;
  font: 600 12px var(--pvx-sans);
  color: var(--pvx-acc-strong);
  margin: 8px 0 12px;
}
.pvx-sliding svg { width: 14px; height: 14px; }
.pvx-inquiry {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 13px;
  border-radius: 11px;
  background: var(--pvx-acc-mid);
  color: #fff;
  border: none;
  font: 600 15px var(--pvx-sans);
  cursor: pointer;
  margin-top: 4px;
  transition: background .15s;
}
.pvx-inquiry:hover { background: var(--pvx-acc-strong); }
.pvx-inquiry svg { width: 17px; height: 17px; }
.pvx-privacy-note {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-top: 13px;
  font: 400 12px/1.5 var(--pvx-sans);
  color: var(--pvx-text-subtle);
}
.pvx-privacy-note svg { width: 15px; height: 15px; color: var(--pvx-acc-mid); flex-shrink: 0; margin-top: 1px; }

/* Connect card */
.pvx-connect-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  padding: 9px 12px;
  border-radius: 9px;
  font: 600 12.5px var(--pvx-sans);
  cursor: pointer;
  text-decoration: none;
  border: none;
  text-align: left;
  transition: filter .15s;
}
.pvx-connect-btn:hover { filter: brightness(.97); }
.pvx-connect-btn svg { width: 14px; height: 14px; flex-shrink: 0; }
.pvx-connect-btn--msg { background: var(--pvx-acc-soft); color: var(--pvx-acc-strong); }
.pvx-connect-btn--tel { background: #fff; border: 1px solid var(--pvx-border); color: var(--pvx-text-body); }
.pvx-connect-btn--tel svg { color: var(--pvx-acc-strong); }

/* Sidebar chip lists (insurance / ages / languages) */
.pvx-chips { display: flex; flex-wrap: wrap; gap: 7px; }
.pvx-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 11px;
  border-radius: 999px;
  font: 600 12px var(--pvx-sans);
  text-decoration: none;
  transition: filter .15s;
}
.pvx-chip:hover { filter: brightness(.97); }
.pvx-chip--check { background: #fff; color: var(--pvx-text-body); border: 1px solid var(--pvx-border); }
.pvx-chip--check svg { width: 13px; height: 13px; color: #16a34a; flex-shrink: 0; }
.pvx-chip--sunken { background: #f8fafc; color: var(--pvx-text-muted); border: 1px solid var(--pvx-border); }

/* Group practice row */
.pvx-group-row {
  display: flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
}
.pvx-group-row + .pvx-group-row { margin-top: 12px; padding-top: 12px; border-top: 1px solid #f1f5f9; }
.pvx-group-ini {
  width: 40px; height: 40px;
  border-radius: 11px;
  background: var(--pvx-acc-soft);
  color: var(--pvx-acc-strong);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--pvx-serif);
  font-weight: 700;
  font-size: 15px;
  flex-shrink: 0;
}
.pvx-group-row .pvx-group-name { font: 700 14px var(--pvx-sans); color: var(--pvx-text-strong); }
.pvx-group-row:hover .pvx-group-name { color: var(--pvx-acc-strong); }
.pvx-group-row .pvx-group-sub { font: 500 12.5px var(--pvx-sans); color: var(--pvx-text-subtle); }

/* Details card bits */
.pvx-addr { font: 500 13px/1.5 var(--pvx-sans); color: var(--pvx-text-body); }
.pvx-fact-line {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 11px;
  font: 600 12px var(--pvx-sans);
  color: var(--pvx-text-muted);
}
.pvx-fact-line svg { width: 13px; height: 13px; color: #16a34a; flex-shrink: 0; }
.pvx-fact-line--muted svg { color: var(--pvx-text-subtle); }

/* ── Footer ink strip ─────────────────────────────────────────── */
.pvx-footer-strip {
  background: var(--pvx-acc-ink);
  padding: 16px 0;
}
.pvx-footer-strip__inner {
  max-width: 64rem;
  margin: 0 auto;
  padding: 0 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}
@media (min-width: 640px) { .pvx-footer-strip__inner { padding: 0 1.5rem; } }
@media (min-width: 1024px) { .pvx-footer-strip__inner { padding: 0 2rem; } }
.pvx-footer-strip .pvx-fs-left {
  display: flex;
  align-items: center;
  gap: 9px;
  font: 500 12.5px var(--pvx-sans);
  color: rgba(255, 255, 255, .78);
}
.pvx-footer-strip .pvx-fs-right { font: 600 12.5px var(--pvx-sans); color: rgba(255, 255, 255, .92); }
.pvx-footer-strip .pvx-fs-right a { color: #fff; text-decoration: underline; }

/* ── Cinematic reveal ─────────────────────────────────────────── */
/* End state must be transform:none — a retained transform (even
   translateY(0)) makes the element a containing block and strands any
   position:fixed descendant mid-page. */
@keyframes pvxUp {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: none; }
}
.pvx-rv { animation: pvxUp .6s cubic-bezier(.25, .46, .45, .94) both; }
.pvx-rv--d1 { animation-delay: .05s; }
.pvx-rv--d2 { animation-delay: .15s; }
.pvx-rv--d3 { animation-delay: .28s; }
.pvx-rv--d4 { animation-delay: .4s; }
@media (prefers-reduced-motion: reduce) {
  .pvx-rv { animation: none; }
  .pvx-dot--on { animation: none; }
}

/* ── Mobile hero — centered column: photo first and larger, then
   eyebrow / name / meta / CTAs; socials rest centered above the wave. */
@media (max-width: 639px) {
  .pvx-hero__inner { padding-top: 22px; padding-bottom: 86px; }
  .pvx-hero__row {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 14px;
  }
  .pvx-avatar { width: 108px; height: 108px; }
  .pvx-brandcard { width: 260px; height: 98px; }
  .pvx-name { font-size: 26px; }
  .pvx-name-row { justify-content: center; }
  .pvx-name-row .pvx-dot { width: 8px; height: 8px; }
  .pvx-eyebrow { justify-content: center; gap: 8px; }
  .pvx-meta { justify-content: center; gap: 8px 12px; }
  /* Body pills stay left-aligned on mobile; only hero pills center */
  .pvx-hero .pvx-pills { justify-content: center; }
  .pvx-ctas { justify-content: center; }
  .pvx-ctas .pvx-btn--solid {
    flex: 1 1 100%;
    justify-content: center;
    padding: 13px;
    font-size: 15px;
    border-radius: 12px;
  }
  /* Full-width flex row → icons dead-center regardless of count */
  .pvx-socials {
    top: auto;
    left: 0;
    right: 0;
    bottom: 44px;
    display: flex;
    justify-content: center;
    gap: 8px;
  }
  .pvx-socials a { width: 34px; height: 34px; }
  .pvx-socials svg { width: 15px; height: 15px; }
  .pvx-hero__wave { height: 42px; }
  /* Tighter seam between the wave and the first section */
  .pvx-body { padding-top: 0; }
  .pvx-body .ocd-mob-grid { gap: 1.1rem; }
}
