/* ============================================================================
   CITY DOORGUARD — doorguard.css
   Framework-free translation of CityDoorguard.tsx / .chrome.tsx / .popup.tsx
   (see REMIGRATE-NOTES §4, §5, §13, §13-A, §31).

   Shell architecture (locked): shared layout + Quitox chrome here.
   Service-world tokens (--sw-*) are overridden by brands/{sw}/brand.css.
   Defaults below match escort-service as Quitox-safe fallback when no pack loads.

   Section order: header → stage/grid → hero → collector → panels → footer → popups
   NOTE: dynamic layout values (grid cols, card sizes, composition positions,
   font sizes) are computed & applied by doorguard.js — that is layout, not style.
   ============================================================================ */

/* ═══════════════════════════════════════════════════════════════════════════
   SERVICE-WORLD TOKEN FALLBACKS (overridden by brands/{sw}/brand.css)
   Page shell · presence grid · hero composition · collector pill + popup
   ═══════════════════════════════════════════════════════════════════════════ */
:root {
  --sw-pink:  #c9297a;   /* fallback accent — brand pack overrides */
  --sw-black: #000000;   /* page canvas */
  --sw-white: #ffffff;
  --pm-bar-h: 84px;      /* editorial magazine bar height */
  --pm-radius: 8px;      /* card corner radius — updated by JS */
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  height: 100%;
  background: var(--sw-black);
  font-family: 'Inter', sans-serif;
}

/* ── Page shell — full viewport, flex column ── */
.pm-dg__page-shell {
  position: fixed;
  inset: 0;
  display: flex;
  flex-direction: column;
  background: var(--sw-black);
}

/* ── Slide wrapper — clips panel slide-up transitions ── */
.pm-dg__slide-wrap {
  flex: 1;
  position: relative;
  overflow: hidden;
}

/* ────────────────────────────────────────────────────────────────
   STAGE / GRID
   ──────────────────────────────────────────────────────────────── */

/* Stage — ResizeObserver target. NO z-index (would trap hovered cards). */
.pm-dg {
  position: absolute;
  inset: 0;
  overflow: visible;      /* let hover scale bleed into chrome zones */
  background: var(--sw-black);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 420ms cubic-bezier(.22, 1, .36, 1);
}
/* Stage slides down when any info panel is open */
.pm-dg__slide-wrap.is-panel-open .pm-dg { transform: translateY(100%); }

/* Grid — cols / gap / width / height set by JS (§6.5) */
.pm-dg__grid {
  display: grid;
  list-style: none;
  margin: 0;
  padding: 0;
}

/* Slot wrapper — z-index elevated to 15 by JS on hover */
.pm-dg__slot {
  position: relative;
  cursor: default;
}

/* Card (scales on hover) */
.pm-dg__slot-card {
  position: absolute;
  inset: 0;
  border-radius: var(--pm-radius);
  background: #111;
  border: 1px solid #222;
  overflow: hidden;
  transition:
    transform 110ms cubic-bezier(.22, 1, .36, 1),
    box-shadow 110ms cubic-bezier(.22, 1, .36, 1),
    background 110ms ease;
}
.pm-dg__slot:hover .pm-dg__slot-card {
  background: #1a1a1a;
  box-shadow: 0 8px 28px 4px rgba(0,0,0,.85), 0 2px 8px rgba(0,0,0,.6);
  transform: scale(1.07);
  z-index: 1;
}
/* Listing (cardIdx 0) card: overflow visible so photo can bleed on hover */
.pm-dg__slot.is-filled .pm-dg__slot-card { overflow: visible; }

/* Slot photo (filled listing only) */
.pm-dg__slot-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--pm-radius);
  pointer-events: none;
  transform: scale(1.05);
  transition: transform 220ms cubic-bezier(.22, 1, .36, 1);
}
.pm-dg__slot.is-filled:hover .pm-dg__slot-photo {
  transform: scale(1.10) translateY(-5%);
}

/* Overlay — never transforms (sibling of card) */
.pm-dg__slot-overlay {
  position: absolute;
  inset: 0;
  border-radius: var(--pm-radius);
  z-index: 2;
  pointer-events: none;
}
.pm-dg__slot-gradient {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 60%;
  border-radius: 0 0 var(--pm-radius) var(--pm-radius);
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.9)  0%,
    rgba(0,0,0,0.45) 45%,
    transparent      100%);
}
.pm-dg__slot-title {
  position: absolute;
  bottom: 11%; left: 0; right: 0;
  text-align: center;
  font-family: 'Raleway', sans-serif;
  font-weight: 200;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.88);
  /* font-size set by JS: compW × 0.013 */
}
.pm-dg__slot-frame {
  position: absolute;
  inset: 7px;
  border-radius: calc(var(--pm-radius) - 7px);
  border: 1px solid rgba(255,255,255,0.5);
}
/* Beta label — top-right inside inset frame */
.pm-dg__slot-beta {
  position: absolute;
  top: 13px; right: 13px;
  font-family: 'Raleway', sans-serif;
  font-weight: 200;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.88);
  pointer-events: none;
  user-select: none;
  /* font-size set by JS: compW × 0.013 */
}

/* Slot numbers — live INSIDE the scaling card so they zoom with it */
.pm-dg__slot-number {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  color: transparent;
  letter-spacing: -0.02em;
  line-height: 1;
  pointer-events: none;
  transition:
    transform   220ms cubic-bezier(.22, 1, .36, 1),
    text-shadow 200ms ease,
    -webkit-text-stroke 200ms ease;
}
/* Listing number (cardIdx 0) */
.pm-dg__slot.is-filled .pm-dg__slot-number {
  align-items: flex-start;
  padding-top: 24%;
  -webkit-text-stroke: 2px rgba(255,255,255,0.85);
  text-shadow:
    0 0 15px rgba(255,255,255,0.85),
    0 0 38px rgba(201,41,122,0.85),
    0 0 76px rgba(201,41,122,0.85);
  opacity: 0.85;
}
.pm-dg__slot.is-filled:hover .pm-dg__slot-number {
  -webkit-text-stroke: 2px rgba(255,255,255,0.95);
  text-shadow:
    0 0 18px rgba(255,255,255,0.9),
    0 0 45px rgba(201,41,122,0.85),
    0 0 90px rgba(201,41,122,0.5);
  opacity: 1;
  transform: scale(1.10) translateY(-5%);
}
/* Passive numbers (cardIdx 1–23) */
.pm-dg__slot.is-passive .pm-dg__slot-number {
  -webkit-text-stroke: 1.5px rgba(255,255,255,0.22);
  text-shadow: 0 0 8px rgba(255,255,255,0.08);
  transform: scale(1);
}
.pm-dg__slot.is-passive:hover .pm-dg__slot-number {
  -webkit-text-stroke: 2px rgba(255,255,255,0.95);
  text-shadow:
    0 0 18px rgba(255,255,255,0.9),
    0 0 45px rgba(201,41,122,0.85),
    0 0 90px rgba(201,41,122,0.5);
  transform: scale(1.10);
}

/* Empty slots — no card, no number. JS toggles .is-empty on resize. */
.pm-dg__slot.is-empty { pointer-events: none; }
.pm-dg__slot.is-empty .pm-dg__slot-card {
  background: transparent;
  border-color: transparent;
  box-shadow: none;
  transform: none;
}
.pm-dg__slot.is-empty .pm-dg__slot-overlay,
.pm-dg__slot.is-empty .pm-dg__slot-photo,
.pm-dg__slot.is-empty .pm-dg__slot-number { display: none; }

/* ────────────────────────────────────────────────────────────────
   HERO COMPOSITION  (§5) — positions set by JS
   ──────────────────────────────────────────────────────────────── */
.pm-dg__composition {
  position: absolute;
  top: 0; bottom: 0;
  pointer-events: none;
  z-index: 20;          /* above hovered cards (15) */
  /* left, width → set by JS (compLeft, compW) — do not overflow:hidden (clips neon) */
}
/* Purple atmosphere ellipse (z:2) */
.pm-dg__field {
  position: absolute;
  border-radius: 50%;
  background: #10082d;
  transform: translate(-50%, -50%) rotate(-4deg);
  z-index: 2;
}
/* Neon "ESCORT SERVICE" headline (z:3) — width from JS, height must stay auto */
.pm-dg__neon {
  position: absolute;
  width: auto;
  height: auto;
  max-width: none;
  object-fit: contain;
  mix-blend-mode: screen;
  pointer-events: none;
  user-select: none;
  z-index: 3;
}
/* Girl + subheading hover group */
.pm-dg__hero-group {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 4;
  transform: scale(1) translateY(0);
  transform-origin: 55% 55%;
  transition: transform 340ms cubic-bezier(0.34, 1.56, 0.64, 1);
}
.pm-dg__hero-group.is-hovered {
  transform: scale(1.006) translateY(-1.5px);
}
/* Hero figure (z:4) — sized by HEIGHT % (portrait people); width follows intrinsic ratio.
   Must stay ≤ composition height: slide-wrap clips overflow, bottom-anchored. */
.pm-dg__girl {
  position: absolute;
  bottom: 0;
  transform: translateX(-50%);
  width: auto;
  max-width: none;
  height: auto;
  max-height: 100%;
  object-fit: contain;
  pointer-events: none;
  user-select: none;
  z-index: 4;
  /* left + height → set by JS (height-driven, not width) */
}
/* City tagline "Buchen in Basel" (z:5) */
.pm-dg__subtitle {
  position: absolute;
  font-family: 'Raleway', sans-serif;
  font-weight: 100;
  color: #fff;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
  text-shadow: 2px 3px 0 #000, 5px 7px 16px rgba(0,0,0,0.75);
  transition: text-shadow 240ms ease;
  user-select: none;
  pointer-events: none;
  z-index: 5;
  /* left, top, font-size, transform → set by JS */
}
.pm-dg__hero-group.is-hovered .pm-dg__subtitle {
  text-shadow: 2px 3px 0 #000, 5px 7px 24px rgba(0,0,0,0.9), 0 0 40px rgba(201,41,122,0.22);
}

/* ────────────────────────────────────────────────────────────────
   COLLECTOR  (§5, §14, §14-A)
   ──────────────────────────────────────────────────────────────── */
.pm-dg__collector {
  position: absolute;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  pointer-events: none;    /* label + badge pass through; pill re-enables */
  z-index: 21;             /* above decorative composition (20); sibling of composition */
  /* top, gap → set by JS */
}
.pm-dg__collector-label {
  font-family: 'Raleway', sans-serif;
  font-weight: 300;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.72);
  text-align: center;
  white-space: nowrap;
  text-shadow: 0 2px 8px rgba(0,0,0,0.7);
  line-height: 1.3;
  margin: 0;
  pointer-events: none;
  /* font-size → set by JS */
}
.pm-dg__form { margin: 0; }
.pm-dg__pill {
  display: flex;
  align-items: center;
  border-radius: 999px;
  background: var(--sw-pink);
  box-sizing: border-box;
  box-shadow: 0 4px 18px rgba(0,0,0,0.55), 0 2px 6px rgba(0,0,0,0.38);
  pointer-events: auto;
  transition: transform 340ms cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 180ms ease;
  /* width, height, padding → set by JS */
}
.pm-dg__pill:hover { transform: scale(1.022); }
.pm-dg__email-input {
  flex: 1;
  border: none;
  outline: none;
  background: transparent;
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  letter-spacing: 0.05em;
  min-width: 0;
  /* font-size → set by JS */
}
.pm-dg__email-input::placeholder { color: rgba(255,255,255,0.7); }
.pm-dg__submit {
  border-radius: 999px;
  border: none;
  cursor: pointer;
  background: #fff;
  color: var(--sw-pink);
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
  flex-shrink: 0;
  /* height, padding, font-size → set by JS */
}
.pm-dg__progress-badge {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  border: 1.5px solid rgba(201,41,122,0.55);
  background: rgba(201,41,122,0.12);
  backdrop-filter: blur(6px);
  pointer-events: none;
  /* padding, gap → set by JS */
}
.pm-dg__progress-count {
  font-family: 'Inter', sans-serif; font-weight: 900;
  color: var(--sw-pink); letter-spacing: -0.02em; line-height: 1;
}
.pm-dg__progress-sep {
  font-family: 'Inter', sans-serif; font-weight: 400;
  color: rgba(255,255,255,0.35); line-height: 1;
}
.pm-dg__progress-goal {
  font-family: 'Inter', sans-serif; font-weight: 700;
  color: rgba(255,255,255,0.7); letter-spacing: -0.01em; line-height: 1;
}
.pm-dg__progress-unit {
  font-family: 'Raleway', sans-serif; font-weight: 300;
  color: rgba(255,255,255,0.4); letter-spacing: 0.1em; text-transform: uppercase;
  line-height: 1;
}

/* ────────────────────────────────────────────────────────────────
   COLLECTOR POPUP (Service-world pink surface) — §26, §27
   ──────────────────────────────────────────────────────────────── */
.pm-dg__coll-backdrop {
  position: fixed;
  inset: 0;
  z-index: 400;
  background: rgba(0,0,0,0.78);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 3vh 3vw;                 /* portrait default */
  box-sizing: border-box;
}
.pm-dg__coll-backdrop[data-open="true"] { display: flex; }
/* Responsive passe-partout padding (§26) */
@media (min-aspect-ratio: 85/100) { .pm-dg__coll-backdrop { padding: 15vh 15vw; } }
@media (min-aspect-ratio: 140/100) { .pm-dg__coll-backdrop { padding: 20vh 20vw; } }
.pm-dg__coll-modal {
  background: var(--sw-pink);
  border-radius: 20px;
  width: 100%;
  height: 100%;
  overflow: hidden;
  animation: coll-popup-in 280ms cubic-bezier(.22, 1, .36, 1) both;
  box-shadow: 0 24px 80px rgba(0,0,0,0.55), 0 0 0 1px rgba(255,255,255,0.07);
  display: flex;
  align-items: center;
  justify-content: center;
}
.pm-dg__coll-inner {
  width: 100%;
  max-height: 100%;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}
.pm-dg__coll-section { padding: 26px 34px 18px; }
.pm-dg__coll-heading {
  font-family: 'Raleway', sans-serif; font-weight: 700;
  font-size: 12px; letter-spacing: 0.10em; text-transform: uppercase;
  color: rgba(255,255,255,0.55); margin-bottom: 14px;
}
.pm-dg__coll-check {
  display: flex; align-items: center; gap: 12px;
  cursor: pointer; margin-top: 9px; user-select: none;
}
.pm-dg__coll-check--beta { align-items: flex-start; }
.pm-dg__coll-box {
  display: inline-flex; align-items: center; justify-content: center;
  width: 20px; height: 20px; border-radius: 5px;
  border: 1.5px solid rgba(255,255,255,0.45);
  background: rgba(255,255,255,0.10);
  flex-shrink: 0;
  transition: background 160ms ease, border 160ms ease;
}
.pm-dg__coll-box svg { width: 62%; height: 62%; display: none; }
.pm-dg__coll-box svg path { fill: none; stroke: var(--sw-pink); stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.pm-dg__coll-box.is-checked { background: rgba(255,255,255,0.92); border: none; }
.pm-dg__coll-box.is-checked svg { display: block; }
.pm-dg__coll-box--beta { margin-top: 2px; }
.pm-dg__coll-box--beta svg path { stroke: #fff; }
.pm-dg__coll-box--beta.is-checked { background: var(--qx-blue); }
.pm-dg__coll-city {
  font-family: 'Inter', sans-serif; font-weight: 400;
  font-size: 16px; color: #fff; letter-spacing: 0.01em;
}
.pm-dg__coll-yours {
  margin-left: 0.42em; font-size: 0.76em; font-weight: 400;
  color: rgba(255,255,255,0.65); letter-spacing: 0.03em;
}
.pm-dg__coll-divider {
  height: 1px; background: rgba(255,255,255,0.18); margin: 17px 0 11px;
}
.pm-dg__coll-beta-text {
  font-family: 'Inter', sans-serif; font-weight: 400;
  font-size: 15px; color: #fff; letter-spacing: 0.01em; line-height: 1.45;
}
.pm-dg__coll-beta-em { color: rgba(255,255,255,0.65); font-weight: 600; }
.pm-dg__coll-role { margin-top: 17px; }
.pm-dg__coll-role-pills { display: flex; flex-wrap: wrap; gap: 8px; }
.pm-dg__coll-role-pill {
  padding: 7px 15px; border-radius: 999px;
  border: 1.5px solid rgba(255,255,255,0.35);
  background: rgba(255,255,255,0.10);
  color: rgba(255,255,255,0.80);
  font-family: 'Inter', sans-serif; font-weight: 400;
  font-size: 12px; letter-spacing: 0.02em; cursor: pointer;
  white-space: nowrap;
  transition: background 160ms, border-color 160ms, color 160ms;
}
.pm-dg__coll-role-pill.is-active {
  border-color: rgba(255,255,255,0.92);
  background: rgba(255,255,255,0.92);
  color: var(--sw-pink); font-weight: 700;
}
.pm-dg__coll-submit-row { padding: 0 34px 26px; }
.pm-dg__coll-email-pill {
  display: flex; align-items: center; border-radius: 999px;
  background: rgba(255,255,255,0.14);
  padding: 0 8px 0 18px; height: 52px; box-sizing: border-box;
}
.pm-dg__coll-email {
  flex: 1; border: none; outline: none; background: transparent;
  color: #fff; font-size: 16px; font-family: 'Inter', sans-serif;
  font-weight: 400; letter-spacing: 0.05em; min-width: 0;
}
.pm-dg__coll-email::placeholder { color: rgba(255,255,255,0.6); }
.pm-dg__coll-notify {
  height: 40px; padding: 0 22px; border-radius: 999px; border: none;
  background: #fff; color: var(--sw-pink);
  font-family: 'Inter', sans-serif; font-weight: 700; font-size: 13px;
  letter-spacing: 0.06em; text-transform: uppercase; white-space: nowrap;
  flex-shrink: 0; cursor: pointer;
  transition: background 180ms, opacity 180ms;
}
.pm-dg__coll-notify:disabled {
  background: rgba(255,255,255,0.30); opacity: 0.55; cursor: not-allowed;
}
/* Thank-you state */
.pm-dg__coll-thanks {
  padding: 44px 40px 50px;
  display: flex; flex-direction: column; align-items: center;
  text-align: center;
  animation: coll-popup-in 260ms cubic-bezier(.22, 1, .36, 1) both;
}
.pm-dg__coll-thanks-icon { width: 52px; height: 52px; margin-bottom: 18px; }
.pm-dg__coll-thanks-title {
  font-family: 'Raleway', sans-serif; font-weight: 800; font-size: 22px;
  color: #fff; letter-spacing: 0.01em; margin-bottom: 8px;
}
.pm-dg__coll-thanks-body {
  font-family: 'Inter', sans-serif; font-weight: 400; font-size: 14px;
  color: rgba(255,255,255,0.72); line-height: 1.5; max-width: 28ch;
}
.pm-dg__coll-thanks-close {
  margin-top: 28px;
  font-family: 'Inter', sans-serif; font-weight: 600; font-size: 12px;
  color: rgba(255,255,255,0.55); letter-spacing: 0.05em;
  text-transform: uppercase; cursor: pointer;
}
@keyframes coll-popup-in {
  from { opacity: 0; transform: scale(0.96); }
  to   { opacity: 1; transform: scale(1); }
}


/* ═══════════════════════════════════════════════════════════════════════════
   BRAND B — QUITOX  (cobalt / navy / light surfaces)
   Header + footer chrome · slot & pricing popups · Chloé chat · panel nav pills
   ═══════════════════════════════════════════════════════════════════════════ */
:root {
  --qx-blue:     #017efa;   /* primary action cobalt */
  --qx-navy:     #141774;   /* heading text on light surfaces */
  --qx-navy-bg:  #0a1055;   /* deep navy — chrome backgrounds */
  --qx-navy-mid: #1030a0;   /* header gradient end */
  --qx-navy-ft:  #0e1a7a;   /* footer gradient end */
  --qx-body:     #4a5578;   /* body text on light surfaces */
  --qx-canvas:   #f0f4ff;   /* light popup surface */
  --qx-border:   rgba(1,126,250,0.2); /* cobalt hairline */
}

@keyframes pm-popup-in {
  from { opacity: 0; transform: scale(0.96); }
  to   { opacity: 1; transform: scale(1); }
}

/* ────────────────────────────────────────────────────────────────
   HEADER CHROME  (§13, §13-A)
   ──────────────────────────────────────────────────────────────── */
.pm-dg__chrome-header {
  height: var(--pm-bar-h);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--qx-navy-bg) 0%, var(--qx-navy-mid) 100%);
  border-bottom: 1px solid var(--qx-border);
  overflow: visible;
  position: relative;
  /* Above stage/hub cards (≤15) + composition (20). Dropdowns live in this context. */
  z-index: 100;
}
.pm-dg__flag-link {
  display: flex; align-items: center; justify-content: center;
  width: 46px; height: 46px; border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.28);
  text-decoration: none; font-size: 22px; line-height: 1;
  margin-left: 20px; flex-shrink: 0;
  transition: border-color 140ms, background 140ms;
}
.pm-dg__flag-link:hover {
  border-color: rgba(1,126,250,0.8);
  background: rgba(1,126,250,0.12);
}
/* Country-page nav: footer-style roll between (city+INFO) and sibling flags */
.pm-dg__country-nav {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  margin-left: 20px;
  gap: 12px;
  align-self: stretch;
}
.pm-dg__country-home {
  position: relative;
  display: flex; align-items: center; justify-content: center;
  width: 46px; height: 46px; flex-shrink: 0;
  padding: 0; margin: 0;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.28);
  background: transparent; color: #fff;
  font-size: 22px; line-height: 1;
  cursor: pointer;
  transition: border-color 140ms, background 140ms;
}
.pm-dg__country-home:hover,
.pm-dg__country-home:focus-visible,
.pm-dg__country-nav.is-alts .pm-dg__country-home {
  border-color: rgba(1,126,250,0.8);
  background: rgba(1,126,250,0.12);
  outline: none;
}
.pm-dg__country-flag {
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 22px; line-height: 1;
}
.pm-dg__nav-swap {
  position: relative;
  display: flex;
  align-items: center;
  align-self: stretch;
  flex: 0 1 auto;
  min-width: 0;
  min-height: 46px;
}
.pm-dg__nav-primary {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 0 1 auto;
}
.pm-dg__nav-swap .pm-dg__city-selector {
  margin-left: 0;
}
.pm-dg__country-alts {
  position: absolute;
  inset: 0 auto 0 0;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.pm-dg__country-nav.is-alts .pm-dg__nav-primary {
  opacity: 0;
  pointer-events: none;
}
.pm-dg__country-nav.is-alts .pm-dg__country-alts {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.pm-dg__country-item {
  display: flex; align-items: center; justify-content: center;
  width: 46px; height: 46px; flex-shrink: 0;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.28);
  background: transparent;
  color: #fff; text-decoration: none;
  font-size: 22px; line-height: 1;
  transition: border-color 140ms, background 140ms;
}
.pm-dg__country-item-flag {
  display: inline-flex; line-height: 1; font-size: 22px;
}
a.pm-dg__country-item:hover,
a.pm-dg__country-item:focus-visible {
  border-color: rgba(1,126,250,0.8);
  background: rgba(1,126,250,0.12);
  outline: none;
}
.pm-dg__page-shell.is-compact-chrome .pm-dg__country-item {
  width: 40px; height: 40px;
}
.pm-dg__page-shell.is-compact-chrome .pm-dg__country-item-flag {
  font-size: 18px;
}
.pm-dg__city-selector {
  position: relative;
  display: flex; align-items: center; gap: 6px;
  flex-shrink: 0; margin-left: 20px;
}
.pm-dg__city-btn {
  display: flex; align-items: center; gap: 8px;
  padding: 12px 20px; border-radius: 999px;
  border: 2px solid rgba(255,255,255,0.35);
  background: transparent; color: #fff;
  font-family: 'Inter', sans-serif; font-weight: 900;
  font-size: 16px; letter-spacing: 0.08em; text-transform: uppercase;
  cursor: pointer; white-space: nowrap;
  transition: background 140ms, border-color 140ms;
}
.pm-dg__city-btn:hover,
.pm-dg__city-selector[data-open="true"] .pm-dg__city-btn {
  background: rgba(1,126,250,0.18);
  border-color: rgba(1,126,250,0.7);
}
.pm-dg__city-pin {
  font-size: 14px; line-height: 1; display: inline-flex;
  opacity: 0.95;
}
.pm-dg__city-chevron {
  font-size: 10px; opacity: 0.6; display: inline-block;
  transition: transform 180ms cubic-bezier(.22, 1, .36, 1);
}
.pm-dg__city-selector[data-open="true"] .pm-dg__city-chevron { transform: rotate(180deg); }
.pm-dg__city-panel {
  display: none;
  position: absolute;
  top: calc(100% + 8px); left: 0;
  background: #0c1460;
  border: 1.5px solid var(--qx-border);
  border-radius: 14px; padding: 8px 0;
  z-index: 300; min-width: 100%;
  box-shadow: 0 16px 48px rgba(10,16,85,0.6), 0 4px 16px rgba(10,16,85,0.3);
  animation: pm-popup-in 160ms cubic-bezier(.22, 1, .36, 1) both;
}
.pm-dg__city-selector[data-open="true"] .pm-dg__city-panel { display: block; }
.pm-dg__city-country-link {
  display: flex; align-items: center; gap: 8px;
  padding: 6px 18px 10px; text-decoration: none;
  color: rgba(255,255,255,0.35);
  font-family: 'Inter', sans-serif; font-weight: 700; font-size: 10px;
  letter-spacing: 0.14em; text-transform: uppercase;
  border-bottom: 1px solid rgba(255,255,255,0.08); margin-bottom: 6px;
}
.pm-dg__city-arrow { opacity: 0.5; margin-left: 2px; }
.pm-dg__city-item {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 18px; text-decoration: none;
  color: rgba(255,255,255,0.78);
  font-family: 'Inter', sans-serif; font-weight: 700; font-size: 14px;
  letter-spacing: 0.07em; text-transform: uppercase; white-space: nowrap;
  border-radius: 8px; margin: 0 6px;
  transition: background 100ms, color 100ms;
}
.pm-dg__city-item:hover { background: rgba(1,126,250,0.18); color: #fff; }
.pm-dg__city-item.is-active { color: var(--qx-blue); background: rgba(1,126,250,0.14); }
.pm-dg__city-aktiv {
  margin-left: auto; padding-left: 12px;
  font-size: 9px; letter-spacing: 0.12em; color: var(--sw-pink); opacity: 0.85;
}
.pm-dg__chrome-divider {
  width: 1px; height: 36px; background: rgba(255,255,255,0.12);
  flex-shrink: 0; margin-left: 18px;
}
.pm-dg__ticker-wrap {
  flex: 1; overflow: hidden;
  display: flex; align-items: center; height: 100%;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 3%, #000 87%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, #000 3%, #000 87%, transparent 100%);
}
.pm-dg__ticker-track {
  display: flex; white-space: nowrap; width: max-content;
  animation: pm-ticker 30s linear infinite; will-change: transform;
}
.pm-dg__ticker-track:hover { animation-play-state: paused; }
.pm-dg__ticker-item {
  font-family: 'Raleway', sans-serif; font-weight: 800; font-size: 30px;
  letter-spacing: 0.08em; text-transform: uppercase; color: #fff;
  padding: 0 64px; display: inline-flex; align-items: center;
}
.pm-dg__ticker-sep { color: var(--sw-pink); font-size: 16px; margin: 0 28px; }
@keyframes pm-ticker {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
/* Learn More button (§13-A) */
.pm-dg__learn-btn {
  flex-shrink: 0; margin-right: 10px;
  display: flex; align-items: center; gap: 8px;
  padding: 12px 20px; border-radius: 999px;
  border: 2px solid rgba(255,255,255,0.4);
  background: transparent; color: #fff;
  font-family: 'Inter', sans-serif; font-weight: 800; font-size: 15px;
  letter-spacing: 0.08em; text-transform: uppercase;
  cursor: pointer; white-space: nowrap;
  transition: background 140ms, border-color 140ms;
}
.pm-dg__learn-btn:hover { background: rgba(1,126,250,0.12); border-color: rgba(1,126,250,0.7); }
.pm-dg__learn-btn[data-open="true"] { background: rgba(1,126,250,0.18); }
.pm-dg__learn-chevron {
  font-size: 10px; opacity: 0.55; display: inline-block;
  transition: transform 250ms cubic-bezier(.22, 1, .36, 1);
}
.pm-dg__learn-btn[data-open="true"] .pm-dg__learn-chevron { transform: rotate(180deg); }
/* Language selector */
.pm-dg__lang-selector { position: relative; flex-shrink: 0; margin-right: 24px; }
.pm-dg__lang-btn {
  display: flex; align-items: center; gap: 8px;
  padding: 12px 22px; border-radius: 999px;
  border: 2px solid rgba(255,255,255,0.4);
  background: transparent; color: #fff;
  font-family: 'Inter', sans-serif; font-weight: 800; font-size: 15px;
  letter-spacing: 0.1em; text-transform: uppercase;
  cursor: pointer; white-space: nowrap;
  transition: background 140ms, border-color 140ms;
}
.pm-dg__lang-btn:hover { background: rgba(1,126,250,0.18); border-color: rgba(1,126,250,0.7); }
.pm-dg__lang-selector[data-open="true"] .pm-dg__lang-btn {
  background: rgba(1,126,250,0.18); border-color: rgba(1,126,250,0.7);
}
.pm-dg__lang-chevron {
  font-size: 10px; opacity: 0.55; margin-left: 2px; display: inline-block;
  transition: transform 180ms cubic-bezier(.22, 1, .36, 1);
}
.pm-dg__lang-selector[data-open="true"] .pm-dg__lang-chevron { transform: rotate(180deg); }
.pm-dg__lang-panel {
  display: none;
  position: absolute; top: calc(100% + 8px); right: 0;
  background: #0c1460; border: 1.5px solid var(--qx-border);
  border-radius: 14px; padding: 8px 0; z-index: 300; min-width: 130px;
  box-shadow: 0 16px 48px rgba(10,16,85,0.6), 0 4px 16px rgba(10,16,85,0.3);
  animation: pm-popup-in 160ms cubic-bezier(.22, 1, .36, 1) both;
}
.pm-dg__lang-selector[data-open="true"] .pm-dg__lang-panel { display: block; }
.pm-dg__lang-item {
  display: flex; align-items: center; gap: 10px;
  width: 100%; padding: 10px 18px;
  background: transparent; border: none; cursor: pointer;
  font-family: 'Inter', sans-serif; font-weight: 400; font-size: 13px;
  letter-spacing: 0.04em; color: rgba(255,255,255,0.75); text-align: left;
  white-space: nowrap;
}
.pm-dg__lang-item.is-active { font-weight: 700; color: var(--qx-blue); background: rgba(1,126,250,0.14); }
.pm-dg__lang-code { font-weight: 800; letter-spacing: 0.08em; min-width: 26px; }
.pm-dg__lang-name { opacity: 0.6; font-size: 12px; }
.pm-dg__lang-aktiv {
  margin-left: auto; padding-left: 10px; font-size: 9px;
  letter-spacing: 0.12em; color: var(--qx-blue); opacity: 0.85;
}

/* Compact chrome — portrait / narrow (adaptive contract; REMIGRATE §34) */
.pm-dg__page-shell.is-compact-chrome {
  --pm-bar-h: 64px;
}
.pm-dg__page-shell.is-compact-chrome .pm-dg__ticker-wrap,
.pm-dg__page-shell.is-compact-chrome .pm-dg__chrome-divider {
  display: none;
}
.pm-dg__page-shell.is-compact-chrome .pm-dg__flag-link {
  width: 40px; height: 40px; margin-left: 12px; font-size: 18px;
}
.pm-dg__page-shell.is-compact-chrome .pm-dg__country-nav {
  margin-left: 12px; gap: 8px;
}
.pm-dg__page-shell.is-compact-chrome .pm-dg__country-home {
  width: 40px; height: 40px; font-size: 18px;
}
.pm-dg__page-shell.is-compact-chrome .pm-dg__country-flag {
  font-size: 18px;
}
.pm-dg__page-shell.is-compact-chrome .pm-dg__city-selector {
  margin-left: 10px;
}
.pm-dg__page-shell.is-compact-chrome .pm-dg__city-btn {
  padding: 8px 12px; font-size: 11px; letter-spacing: 0.04em; gap: 4px;
}
.pm-dg__page-shell.is-compact-chrome .pm-dg__learn-btn {
  padding: 8px 12px; font-size: 11px; margin-right: 6px; gap: 4px;
}
.pm-dg__page-shell.is-compact-chrome .pm-dg__learn-chevron {
  display: none;
}
.pm-dg__page-shell.is-compact-chrome .pm-dg__lang-selector {
  margin-right: 12px;
}
.pm-dg__page-shell.is-compact-chrome .pm-dg__lang-btn {
  padding: 8px 10px; gap: 0;
}
.pm-dg__page-shell.is-compact-chrome .pm-dg__lang-label,
.pm-dg__page-shell.is-compact-chrome .pm-dg__lang-chevron {
  display: none;
}
.pm-dg__page-shell.is-compact-chrome .pm-dg__chrome-footer {
  padding: 0 12px; gap: 10px;
}
.pm-dg__page-shell.is-compact-chrome .pm-dg__footer-left {
  gap: 8px;
}
.pm-dg__page-shell.is-compact-chrome .pm-dg__footer-logo {
  height: 40px;
  width: auto;
}
.pm-dg__page-shell.is-compact-chrome .pm-dg__meet-label {
  display: none;
}
.pm-dg__page-shell.is-compact-chrome .pm-dg__footer-cta-ghost {
  padding: 8px 10px; gap: 0;
}
.pm-dg__page-shell.is-compact-chrome .pm-dg__footer-tagline,
.pm-dg__page-shell.is-compact-chrome .pm-dg__footer-tagline-host {
  display: none;
}
.pm-dg__page-shell.is-compact-chrome .pm-dg__footer-pricing {
  font-size: 12px; padding: 8px 10px;
}
.pm-dg__page-shell.is-compact-chrome .pm-dg__footer-beta {
  font-size: 11px; padding: 8px 12px;
}

/* ────────────────────────────────────────────────────────────────
   FOOTER CHROME  (§13, §13-A)
   ──────────────────────────────────────────────────────────────── */
.pm-dg__chrome-footer {
  height: var(--pm-bar-h);
  flex-shrink: 0;
  display: flex; align-items: center;
  background: linear-gradient(135deg, var(--qx-navy-bg) 0%, var(--qx-navy-ft) 100%);
  border-top: 1px solid var(--qx-border);
  padding: 0 24px; gap: 24px;
  position: relative;
  z-index: 100;
}
.pm-dg__footer-left { display: flex; align-items: center; gap: 14px; flex-shrink: 0; }
.pm-dg__footer-logo-btn {
  padding: 0; border: none; background: transparent; cursor: pointer;
  border-radius: 12px; line-height: 0; flex-shrink: 0;
  align-self: center;
  transition: box-shadow 140ms;
}
.pm-dg__footer-logo-btn:hover { box-shadow: 0 0 0 2px rgba(201,41,122,0.5); }
.pm-dg__footer-logo-btn[data-open="true"] {
  box-shadow: 0 0 0 2.5px var(--qx-blue), 0 4px 20px rgba(1,126,250,0.45);
}
/* Height-driven square mark — never stretch via conflicting width/height */
.pm-dg__footer-logo {
  height: 46px;
  width: auto;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  border-radius: 12px;
  display: block;
  flex-shrink: 0;
}
.pm-dg__footer-cta-ghost {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  padding: 12px 24px; border-radius: 999px; border: none;
  background: var(--qx-blue); color: #fff;
  font-family: 'Inter', sans-serif; font-weight: 700; font-size: 14px;
  letter-spacing: 0.06em; text-transform: uppercase; white-space: nowrap;
  flex-shrink: 0; cursor: pointer;
  box-shadow: 0 4px 20px rgba(1,126,250,0.4);
  transition: opacity 140ms, box-shadow 140ms;
}
.pm-dg__footer-cta-ghost:hover { opacity: 0.88; box-shadow: 0 6px 28px rgba(1,126,250,0.55); }
.pm-dg__meet-icon { font-size: 16px; }
.pm-dg__footer-center {
  flex: 1; display: flex; align-items: center; justify-content: center; min-width: 0;
}
.pm-dg__footer-tagline {
  flex: 1;
  font-family: 'Inter', sans-serif; font-weight: 900; font-size: 20px;
  letter-spacing: 0.02em; color: #fff; text-align: center;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
  min-width: 0; line-height: 1; margin: 0;
}
/* Paramour nav pills (Content 1/2/3 + ✕) — §28
   NOTE: the [hidden] attribute must win over `display: flex`, so scope the
   flex layout to the shown state. At rest pnav is hidden and the tagline shows;
   only while the Paramour panel is open does JS unhide pnav + hide the tagline. */
.pm-dg__pnav-buttons { display: none; }
.pm-dg__pnav-buttons:not([hidden]) { display: flex; align-items: center; justify-content: center; gap: 10px; }
.pm-dg__footer-tagline[hidden],
.pm-dg__footer-tagline-host[hidden] { display: none; }
.pm-dg__pnav-btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 9px 22px; border-radius: 999px;
  border: 1.5px solid rgba(1,126,250,0.35);
  background: rgba(1,126,250,0.08);
  color: rgba(255,255,255,0.60);
  font-family: 'Inter', sans-serif; font-weight: 500; font-size: 13px;
  letter-spacing: 0.04em; white-space: nowrap; cursor: pointer;
  transition: background 160ms, border-color 160ms, color 160ms, font-weight 160ms;
}
.pm-dg__pnav-btn:hover {
  background: rgba(1,126,250,0.18); border-color: rgba(1,126,250,0.60);
  color: rgba(255,255,255,0.90);
}
.pm-dg__pnav-btn.is-active {
  border-color: rgba(1,126,250,0.85); background: rgba(1,126,250,0.28);
  color: #fff; font-weight: 700; box-shadow: 0 0 0 1px rgba(1,126,250,0.30) inset;
}
.pm-dg__pnav-close {
  display: inline-flex; align-items: center; justify-content: center;
  width: 34px; height: 34px; border-radius: 999px;
  border: 1.5px solid rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.06); color: rgba(255,255,255,0.45);
  font-size: 16px; cursor: pointer; flex-shrink: 0; margin-left: 6px;
  transition: background 150ms, border-color 150ms, color 150ms;
}
.pm-dg__pnav-close:hover {
  background: rgba(255,255,255,0.14); border-color: rgba(255,255,255,0.40); color: #fff;
}
.pm-dg__footer-pricing {
  border: none; background: transparent; cursor: pointer;
  font-family: 'Inter', sans-serif; font-weight: 700; font-size: 15px;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(255,255,255,0.45); white-space: nowrap; flex-shrink: 0;
  transition: color 140ms, background 140ms;
}
.pm-dg__footer-pricing:hover { color: #fff; }
.pm-dg__footer-pricing[data-open="true"] {
  color: #fff; background: rgba(1,126,250,0.18);
  border: 1.5px solid rgba(1,126,250,0.5); border-radius: 999px; padding: 8px 18px;
}
.pm-dg__footer-right {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-shrink: 1;
  min-width: 0;
  margin-left: auto;
}
/* Doorguard owns legal chrome — hide duplicate theme footer strip */
body:has(.pm-dg__page-shell) .pm-bb-footer {
  display: none;
}
.pm-dg__footer-beta {
  display: inline-flex; align-items: center;
  padding: 16px 34px; border-radius: 999px; border: none;
  background: var(--sw-pink); color: #fff; cursor: pointer;
  font-family: 'Inter', sans-serif; font-weight: 900; font-size: 15px;
  letter-spacing: 0.1em; text-transform: uppercase; white-space: nowrap;
  flex-shrink: 0; line-height: 1;
  box-shadow: 0 0 0 2px var(--sw-pink), 0 6px 28px rgba(201,41,122,0.44);
  transition: opacity 140ms, box-shadow 140ms;
}
.pm-dg__footer-beta:hover { opacity: 0.88; box-shadow: 0 0 0 2px var(--sw-pink), 0 6px 36px rgba(201,41,122,0.56); }

/* ────────────────────────────────────────────────────────────────
   SLIDE-UP PANELS — Learn More / Pricing / Paramour  (§18, §24, §28)
   ──────────────────────────────────────────────────────────────── */
.pm-dg__panel,
.pm-dg__pricing-panel,
.pm-dg__paramour-panel {
  position: absolute;
  inset: 0;
  transform: translateY(100%);
  transition: transform 420ms cubic-bezier(.22, 1, .36, 1);
  z-index: 1;
}
.pm-dg__panel[data-open="true"],
.pm-dg__pricing-panel[data-open="true"],
.pm-dg__paramour-panel[data-open="true"] { transform: translateY(0); }

/* INFO control — beside City selector (Country page) */
.pm-dg__info-btn {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(1,126,250,0.45);
  background: rgba(1,126,250,0.08);
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
}
.pm-dg__info-btn:hover { background: rgba(1,126,250,0.16); border-color: rgba(1,126,250,0.75); }
.pm-dg__info-btn[data-open="true"] { background: rgba(1,126,250,0.22); }

.pm-dg__info-article {
  width: 100%;
  max-width: 720px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  text-align: left;
}
.pm-dg__info-article-title {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: #fff;
  margin: 0;
}
.pm-dg__info-article-p {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255,255,255,0.62);
  margin: 0;
}
a.pm-dg__panel-card--link {
  text-decoration: none;
  color: inherit;
  transition: border-color 160ms ease, background 160ms ease;
}
a.pm-dg__panel-card--link:hover,
a.pm-dg__panel-card--link:focus-visible {
  border-color: rgba(1,126,250,0.55);
  background: rgba(255,255,255,0.07);
  outline: none;
}

/* Learn More + Paramour dark navy panels */
.pm-dg__panel--learn,
.pm-dg__panel--info,
.pm-dg__paramour-panel {
  background: linear-gradient(160deg, #0a1055 0%, #060830 100%);
}
.pm-dg__panel--learn,
.pm-dg__panel--info {
  overflow-y: auto;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  padding: 48px 60px; gap: 40px;
}
.pm-dg__panel-eyebrow {
  font-family: 'Inter', sans-serif; font-weight: 700; font-size: 11px;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--qx-blue);
}
.pm-dg__panel-hero { text-align: center; max-width: 680px; }
.pm-dg__panel-title {
  font-family: 'Raleway', sans-serif; font-weight: 100;
  font-size: clamp(28px, 3.5vw, 52px); color: #fff; line-height: 1.15;
  margin: 0 0 20px;
}
.pm-dg__panel-body {
  font-family: 'Inter', sans-serif; font-weight: 400;
  font-size: clamp(13px, 1.2vw, 16px); color: rgba(255,255,255,0.55);
  line-height: 1.75; margin: 0;
}
.pm-dg__panel-sub {
  font-family: 'Inter', sans-serif; font-weight: 600; font-size: 12px;
  color: rgba(1,126,250,0.75); letter-spacing: 0.08em; text-transform: uppercase;
  margin-top: 14px;
}
.pm-dg__panel-cards {
  display: flex; gap: 20px; flex-wrap: wrap; justify-content: center;
  width: 100%; max-width: 860px;
}
.pm-dg__panel-cards--knowledge { gap: 14px; max-width: 780px; }
.pm-dg__panel-card {
  flex: 1 1 220px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(1,126,250,0.18);
  border-radius: 16px; padding: 28px 24px;
  display: flex; flex-direction: column; gap: 12px;
}
.pm-dg__panel-cards--knowledge .pm-dg__panel-card { flex: 1 1 200px; padding: 20px 18px; border-radius: 14px; gap: 10px; }
.pm-dg__panel-card-icon { font-size: 22px; }
.pm-dg__panel-card-title {
  font-family: 'Inter', sans-serif; font-weight: 700; font-size: 15px;
  color: #fff; letter-spacing: 0.03em;
}
.pm-dg__panel-card-body {
  font-family: 'Inter', sans-serif; font-weight: 400; font-size: 13px;
  color: rgba(255,255,255,0.48); line-height: 1.65;
}
.pm-dg__panel-cta {
  display: inline-flex; align-items: center;
  padding: 14px 32px; border-radius: 999px;
  background: var(--qx-blue); color: #fff;
  font-family: 'Inter', sans-serif; font-weight: 700; font-size: 14px;
  letter-spacing: 0.06em; text-transform: uppercase; text-decoration: none;
  box-shadow: 0 4px 24px rgba(1,126,250,0.4);
}
.pm-dg__panel--learn .pm-dg__panel-legal {
  width: 100%;
  max-width: 860px;
  margin-top: 8px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.pm-dg__panel--learn .pm-dg__panel-legal-list,
.pm-dg__panel--learn .pm-dg__panel-legal-list li {
  list-style: none;
  margin: 0;
  padding: 0;
}
.pm-dg__panel--learn .pm-dg__panel-legal-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px 22px;
}
.pm-dg__panel--learn .pm-dg__panel-legal-list a {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.42);
  text-decoration: none;
  white-space: nowrap;
  transition: color 140ms;
}
.pm-dg__panel--learn .pm-dg__panel-legal-list a:hover,
.pm-dg__panel--learn .pm-dg__panel-legal-list a:focus-visible {
  color: #fff;
  text-decoration: none;
}

/* Paramour 3-panel carousel */
.pm-dg__paramour-panel { overflow: hidden; }
.pm-dg__pnav-track {
  display: flex; width: 300%; height: 100%;
  transform: translateX(0);
  transition: transform 380ms cubic-bezier(.22, 1, .36, 1);
}
.pm-dg__paramour-panel[data-panel="1"] .pm-dg__pnav-track { transform: translateX(-33.3334%); }
.pm-dg__paramour-panel[data-panel="2"] .pm-dg__pnav-track { transform: translateX(-66.6667%); }
.pm-dg__pnav-slide {
  width: 33.3334%; flex-shrink: 0; height: 100%; overflow-y: auto;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: 48px 60px; gap: 32px; box-sizing: border-box;
}
.pm-dg__pnav-brand { display: flex; flex-direction: column; align-items: center; gap: 16px; }
.pm-dg__pnav-logo {
  width: 72px; height: 72px; border-radius: 18px;
  box-shadow: 0 0 0 2px rgba(1,126,250,0.4), 0 8px 32px rgba(1,126,250,0.25);
}
.pm-dg__pnav-cities {
  display: flex; gap: 16px; flex-wrap: wrap; justify-content: center;
  width: 100%; max-width: 760px;
}
.pm-dg__pnav-city {
  flex: 1 1 160px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(1,126,250,0.15);
  border-radius: 14px; padding: 22px 20px;
  display: flex; flex-direction: column; gap: 8px;
}
.pm-dg__pnav-city-name { font-family: 'Inter', sans-serif; font-weight: 700; font-size: 15px; color: #fff; }
.pm-dg__pnav-city-tag {
  font-family: 'Inter', sans-serif; font-weight: 400; font-size: 11px;
  color: rgba(255,255,255,0.35); letter-spacing: 0.06em; text-transform: uppercase;
}
.pm-dg__pnav-bar {
  margin-top: 6px; height: 4px; border-radius: 999px;
  background: rgba(255,255,255,0.08); overflow: hidden;
}
.pm-dg__pnav-bar-fill { height: 100%; border-radius: 999px; background: var(--qx-blue); width: 4%; }
.pm-dg__pnav-bar-fill[data-fill="0"] { width: 0%; }
.pm-dg__pnav-city-count { font-family: 'Inter', sans-serif; font-weight: 600; font-size: 12px; color: rgba(1,126,250,0.85); }
.pm-dg__pnav-fineprint {
  max-width: 560px; text-align: center;
  font-family: 'Inter', sans-serif; font-weight: 400; font-size: 13px;
  color: rgba(255,255,255,0.28); line-height: 1.65; font-style: italic;
}
.pm-dg__pnav-back {
  font-family: 'Inter', sans-serif; font-weight: 400; font-size: 12px;
  color: rgba(255,255,255,0.2); cursor: pointer; letter-spacing: 0.04em;
}

/* Pricing panel — white / Quitox light (§24) */
.pm-dg__pricing-panel {
  background: #fff; overflow-y: auto;
  display: flex; flex-direction: column;
}
.pm-dg__pricing-header {
  padding: 28px 36px 24px; border-bottom: 1px solid rgba(1,126,250,0.12);
  flex-shrink: 0; display: flex; align-items: center; gap: 20px;
  background: var(--qx-canvas);
}
.pm-dg__pricing-headline-wrap { flex: 1; }
.pm-dg__pricing-eyebrow {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 5px 14px; border-radius: 999px;
  background: rgba(1,126,250,0.1); border: 1px solid rgba(1,126,250,0.22);
  margin-bottom: 12px;
  font-family: 'Inter', sans-serif; font-weight: 700; font-size: 10px;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--qx-blue);
}
.pm-dg__pricing-headline {
  font-family: 'Raleway', sans-serif; font-weight: 100;
  font-size: clamp(20px, 2.2vw, 34px); color: var(--qx-navy); line-height: 1.2;
}
.pm-dg__pricing-header-right { display: flex; align-items: center; gap: 16px; }
.pm-dg__pricing-note {
  font-family: 'Inter', sans-serif; font-weight: 400; font-size: 12px;
  color: var(--qx-body); text-align: right; flex-shrink: 0;
  max-width: 180px; line-height: 1.6;
}
.pm-dg__pricing-close {
  width: 28px; height: 28px; border-radius: 50%;
  border: 1px solid rgba(0,0,0,0.1); background: rgba(0,0,0,0.04);
  color: rgba(0,0,0,0.35); cursor: pointer; font-size: 15px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
}
.pm-dg__pricing-tiers {
  flex: 1; display: flex; gap: 18px; padding: 24px 36px;
  align-items: stretch; flex-wrap: wrap;
}
.pm-dg__tier {
  flex: 1 1 180px; background: #fff;
  border: 1.5px solid rgba(1,126,250,0.14); border-radius: 16px;
  padding: 28px 22px 24px; display: flex; flex-direction: column;
  position: relative; box-shadow: 0 2px 12px rgba(10,16,85,0.06);
}
.pm-dg__tier.is-highlight {
  background: linear-gradient(160deg, #017efa 0%, #1e56ff 100%);
  border: none; box-shadow: 0 12px 40px rgba(1,126,250,0.32);
}
.pm-dg__tier-badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--qx-navy); color: #fff;
  font-family: 'Inter', sans-serif; font-weight: 800; font-size: 9px;
  letter-spacing: 0.16em; padding: 4px 13px; border-radius: 999px; white-space: nowrap;
}
.pm-dg__tier-name {
  font-family: 'Inter', sans-serif; font-weight: 700; font-size: 11px;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--qx-blue);
  margin-bottom: 10px;
}
.pm-dg__tier.is-highlight .pm-dg__tier-name { color: rgba(255,255,255,0.75); }
.pm-dg__tier-price {
  font-family: 'Raleway', sans-serif; font-weight: 100;
  font-size: clamp(26px, 2.6vw, 38px); color: var(--qx-navy);
  line-height: 1; margin-bottom: 4px;
}
.pm-dg__tier.is-highlight .pm-dg__tier-price { color: #fff; }
.pm-dg__tier-sub {
  font-family: 'Inter', sans-serif; font-weight: 400; font-size: 11px;
  color: var(--qx-body); margin-bottom: 22px;
}
.pm-dg__tier.is-highlight .pm-dg__tier-sub { color: rgba(255,255,255,0.55); }
.pm-dg__tier-features { display: flex; flex-direction: column; gap: 9px; flex: 1; margin-bottom: 22px; }
.pm-dg__tier-feature {
  display: flex; align-items: flex-start; gap: 9px;
  font-family: 'Inter', sans-serif; font-weight: 400; font-size: 12px;
  color: var(--qx-body); line-height: 1.45;
}
.pm-dg__tier.is-highlight .pm-dg__tier-feature { color: rgba(255,255,255,0.85); }
.pm-dg__tier-check { color: var(--qx-blue); flex-shrink: 0; margin-top: 1px; font-weight: 700; }
.pm-dg__tier.is-highlight .pm-dg__tier-check { color: rgba(255,255,255,0.9); }
.pm-dg__tier-cta {
  display: flex; align-items: center; justify-content: center;
  padding: 12px 18px; border-radius: 999px;
  background: var(--qx-blue); color: #fff;
  font-family: 'Inter', sans-serif; font-weight: 700; font-size: 12px;
  letter-spacing: 0.07em; text-transform: uppercase; text-decoration: none;
  box-shadow: 0 4px 20px rgba(1,126,250,0.35); transition: opacity 140ms;
}
.pm-dg__tier-cta:hover { opacity: 0.88; }
.pm-dg__tier.is-highlight .pm-dg__tier-cta {
  background: #fff; color: var(--qx-blue); box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}
.pm-dg__pricing-footnote {
  padding: 14px 36px 22px; border-top: 1px solid rgba(1,126,250,0.1);
  flex-shrink: 0; font-family: 'Inter', sans-serif; font-weight: 400; font-size: 11px;
  color: var(--qx-body); text-align: center; background: var(--qx-canvas);
}

/* ────────────────────────────────────────────────────────────────
   CHLOÉ CHAT FLY-IN PANEL  (§15)
   ──────────────────────────────────────────────────────────────── */
.pm-dg__chat-backdrop {
  position: absolute; top: 0; bottom: 0; left: 0; right: 0;
  z-index: 22; background: rgba(0,0,0,0.78);
  display: none; animation: pm-chat-fade-in 220ms ease both;
}
.pm-dg__chat-backdrop[data-open="true"] { display: block; }
.pm-dg__chat-panel {
  position: absolute; top: 0; bottom: 0; left: 0;
  width: clamp(340px, 36vw, 500px);
  z-index: 25;
  display: none; flex-direction: column;
  background: #fff;
  border-right: 1px solid var(--qx-border);
  border-radius: 0 18px 18px 0;
  box-shadow: 8px 0 48px rgba(10,16,85,0.28);
  overflow: hidden;
  animation: pm-chat-slide-in 300ms cubic-bezier(.22, 1, .36, 1) both;
}
.pm-dg__chat-panel[data-open="true"] { display: flex; }
@keyframes pm-chat-slide-in { from { transform: translateX(-100%); } to { transform: translateX(0); } }
@keyframes pm-chat-fade-in  { from { opacity: 0; } to { opacity: 1; } }
.pm-dg__chat-header {
  display: flex; align-items: center; gap: 14px;
  padding: 18px 24px; border-bottom: 1px solid var(--qx-border); flex-shrink: 0;
  background: linear-gradient(135deg, var(--qx-navy-bg) 0%, var(--qx-navy-mid) 100%);
}
.pm-dg__chat-avatar {
  width: 44px; height: 44px; border-radius: 50%; overflow: hidden; flex-shrink: 0;
  border: 2px solid var(--qx-blue); background: var(--qx-navy);
}
.pm-dg__chat-avatar img { width: 100%; height: 100%; object-fit: cover; }
.pm-dg__chat-id { flex: 1; min-width: 0; }
.pm-dg__chat-name {
  font-family: 'Inter', sans-serif; font-weight: 800; font-size: 15px;
  color: #fff; letter-spacing: 0.04em;
}
.pm-dg__chat-status {
  display: flex; align-items: center; gap: 6px; margin-top: 3px;
  font-family: 'Inter', sans-serif; font-weight: 500; font-size: 11px;
  color: rgba(255,255,255,0.55); letter-spacing: 0.05em;
}
.pm-dg__chat-dot {
  width: 7px; height: 7px; border-radius: 50%; background: #3ddc84;
  flex-shrink: 0; box-shadow: 0 0 6px rgba(61,220,132,0.56);
}
.pm-dg__chat-tag {
  font-family: 'Inter', sans-serif; font-weight: 600; font-size: 9px;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(1,126,250,0.8); white-space: nowrap;
  background: rgba(1,126,250,0.15); padding: 3px 8px; border-radius: 999px;
}
.pm-dg__chat-close {
  width: 28px; height: 28px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2); background: rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.7); cursor: pointer; font-size: 15px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.pm-dg__chat-scroll {
  flex: 1; overflow-y: auto; padding: 24px 20px;
  display: flex; flex-direction: column; gap: 12px; background: #f8f9ff;
}
.pm-dg__chat-msg {
  max-width: 72%; padding: 11px 16px;
  font-family: 'Inter', sans-serif; font-size: 14px; line-height: 1.55; letter-spacing: 0.01em;
}
.pm-dg__chat-msg.is-ai {
  align-self: flex-start; border-radius: 4px 18px 18px 18px;
  background: var(--qx-canvas); color: var(--qx-navy); font-weight: 400;
  border: 1px solid rgba(1,126,250,0.14);
}
.pm-dg__chat-msg.is-user {
  align-self: flex-end; border-radius: 18px 18px 4px 18px;
  background: linear-gradient(135deg, #017efa, #1e56ff); color: #fff; font-weight: 500;
  box-shadow: 0 4px 20px rgba(1,126,250,0.3);
}
.pm-dg__chat-input-row {
  display: flex; align-items: center; gap: 10px;
  padding: 14px 18px; border-top: 1px solid rgba(1,126,250,0.12);
  background: #fff; flex-shrink: 0;
}
.pm-dg__chat-input {
  flex: 1; background: var(--qx-canvas);
  border: 1.5px solid rgba(1,126,250,0.2); border-radius: 999px;
  padding: 11px 18px; color: var(--qx-navy);
  font-family: 'Inter', sans-serif; font-weight: 400; font-size: 14px;
  outline: none; caret-color: var(--qx-blue);
}
.pm-dg__chat-send {
  width: 42px; height: 42px; border-radius: 50%; border: none;
  background: rgba(1,126,250,0.12); color: var(--qx-blue);
  font-size: 18px; cursor: pointer;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  transition: background 200ms, color 200ms, box-shadow 200ms;
}
.pm-dg__chat-send.is-ready {
  background: var(--qx-blue); color: #fff; box-shadow: 0 4px 16px rgba(1,126,250,0.4);
}

/* ────────────────────────────────────────────────────────────────
   SLOT POPUP (Quitox light surface) — §11
   ──────────────────────────────────────────────────────────────── */
.pm-dg__popup-backdrop {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(0,0,0,0.78);
  display: none; align-items: center; justify-content: center;
  padding: 3vh 3vw; box-sizing: border-box;
}
.pm-dg__popup-backdrop[data-open="true"] { display: flex; }
@media (min-aspect-ratio: 85/100) { .pm-dg__popup-backdrop { padding: 15vh 15vw; } }
@media (min-aspect-ratio: 140/100) { .pm-dg__popup-backdrop { padding: 20vh 20vw; } }
.pm-dg__popup-modal {
  background: #fff; border-radius: 20px;
  width: 100%; height: 100%; overflow: hidden;
  animation: pm-popup-in 200ms cubic-bezier(.22, 1, .36, 1) both;
  position: relative; display: flex; flex-direction: column;
  box-shadow: 0 24px 80px rgba(10,16,85,0.22), 0 0 0 1px rgba(1,126,250,0.1);
}
@media (min-aspect-ratio: 140/100) { .pm-dg__popup-modal { flex-direction: row; } }
.pm-dg__popup-image {
  flex: 0 0 52%;
  display: flex; align-items: center; justify-content: center; overflow: hidden;
  background: var(--qx-canvas);
  border-bottom: 1px solid rgba(1,126,250,0.12); padding: 20px;
}
@media (min-aspect-ratio: 140/100) {
  .pm-dg__popup-image { flex: 0 0 42%; border-bottom: none; border-right: 1px solid rgba(1,126,250,0.12); }
}
.pm-dg__popup-image img { max-width: 100%; max-height: 100%; object-fit: contain; display: block; user-select: none; }
.pm-dg__popup-text {
  flex: 1; display: flex; flex-direction: column; justify-content: center;
  padding: clamp(20px, 3.5vw, 44px); gap: 14px; min-width: 0; min-height: 0; overflow-y: auto;
}
.pm-dg__popup-eyebrow {
  font-size: 10px; font-family: 'Inter', sans-serif; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--qx-blue);
}
.pm-dg__popup-title {
  font-size: clamp(18px, 2.4vw, 32px); font-family: 'Raleway', sans-serif;
  font-weight: 100; color: var(--qx-navy); line-height: 1.2;
}
.pm-dg__popup-body {
  font-size: clamp(12px, 1.1vw, 14px); font-family: 'Inter', sans-serif;
  font-weight: 400; color: var(--qx-body); line-height: 1.65;
}
.pm-dg__popup-cta {
  display: inline-flex; align-items: center; align-self: flex-start;
  padding: 12px 26px; border-radius: 999px; border: none;
  background: var(--qx-blue); color: #fff;
  font-size: clamp(11px, 1vw, 13px); font-family: 'Inter', sans-serif;
  font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; text-decoration: none;
  box-shadow: 0 4px 20px rgba(1,126,250,0.35); transition: opacity 140ms;
}
.pm-dg__popup-cta:hover { opacity: 0.88; }
.pm-dg__popup-close {
  position: absolute; top: 10px; right: 10px;
  width: 28px; height: 28px; border-radius: 50%;
  border: 1px solid rgba(0,0,0,0.1); background: rgba(0,0,0,0.04);
  color: rgba(0,0,0,0.35); cursor: pointer; font-size: 15px;
  display: flex; align-items: center; justify-content: center;
}

/* ────────────────────────────────────────────────────────────────
   SHARE POPUP (Tell a Friend) — §21
   ──────────────────────────────────────────────────────────────── */
.pm-dg__share-backdrop {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(0,0,0,0.78);
  display: none; align-items: center; justify-content: center;
  padding: 0 24px; box-sizing: border-box;
}
.pm-dg__share-backdrop[data-open="true"] { display: flex; }
.pm-dg__share-modal {
  background: linear-gradient(160deg, #0a1055 0%, #060830 100%);
  border-radius: 24px; width: 100%; max-width: 480px;
  animation: pm-popup-in 200ms cubic-bezier(.22, 1, .36, 1) both;
  position: relative; display: flex; flex-direction: column;
  border: 1px solid var(--qx-border); box-shadow: 0 32px 80px rgba(0,0,0,0.6); overflow: hidden;
}
.pm-dg__share-header {
  padding: 28px 28px 20px; border-bottom: 1px solid rgba(1,126,250,0.1); text-align: center;
}
.pm-dg__share-emoji { font-size: 36px; margin-bottom: 10px; }
.pm-dg__share-title {
  font-family: 'Raleway', sans-serif; font-weight: 100; font-size: 26px;
  color: #fff; line-height: 1.2; margin-bottom: 8px;
}
.pm-dg__share-sub {
  font-family: 'Inter', sans-serif; font-weight: 400; font-size: 13px;
  color: rgba(255,255,255,0.45); line-height: 1.55;
}
.pm-dg__share-channels { display: flex; flex-direction: column; gap: 10px; padding: 20px 24px; }
.pm-dg__share-channel,
.pm-dg__share-copy {
  display: flex; align-items: center; gap: 14px;
  padding: 14px 18px; border-radius: 14px;
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08);
  text-decoration: none; color: #fff; cursor: pointer; text-align: left;
  font-family: 'Inter', sans-serif; font-weight: 600; font-size: 14px; letter-spacing: 0.02em;
  transition: background 120ms, border-color 120ms;
}
.pm-dg__share-channel:hover,
.pm-dg__share-copy:hover { background: rgba(1,126,250,0.12); border-color: rgba(1,126,250,0.3); }
.pm-dg__share-copy.is-copied { background: rgba(34,221,119,0.12); border-color: rgba(34,221,119,0.4); color: #22dd77; }
.pm-dg__share-icon { font-size: 20px; width: 28px; text-align: center; }
.pm-dg__share-arrow { margin-left: auto; opacity: 0.35; font-size: 12px; }
.pm-dg__share-footer {
  padding: 0 24px 22px; font-family: 'Inter', sans-serif; font-weight: 400; font-size: 11px;
  color: rgba(255,255,255,0.2); text-align: center;
}
.pm-dg__share-close {
  position: absolute; top: 12px; right: 12px;
  width: 30px; height: 30px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.1); background: rgba(255,255,255,0.05);
  color: rgba(255,255,255,0.4); cursor: pointer; font-size: 15px;
  display: flex; align-items: center; justify-content: center;
}
