﻿:root {
  /* ===== CANVAS / SURFACES ===== */
  --pl-bg: #fffdf8;
  --pl-surface: rgba(255, 252, 246, 0.96);
  --pl-surface-warm: rgba(245, 238, 224, 0.94);

  /* ===== TEXT ===== */
  --pl-heading: var(--jl-ink, #1A1814);
  --pl-text: var(--jl-ink, #1A1814);
  --pl-text-mid: var(--jl-ink-soft, #5A5650);
  --pl-text-quiet: #8D877F;

  /* ===== 24K MIRROR GOLD (PRIMARY) ===== */
  --pl-gold: #C8922A;
  --pl-gold-hi: #E6C06B;
  --pl-gold-deep: #B07A1E;
  --pl-gold-pale: rgba(200,146,42,0.12);
  --pl-gold-rim: rgba(200,146,42,0.26);
  --pl-gold-seam: rgba(200,146,42,0.44);

  /* ===== ACCENTS (LUXURY) ===== */
  --pl-link: #C8922A;
  --pl-link-hover: #B07A1E;

  /* ===== BORDERS / DIVIDERS ===== */
  --pl-border: rgba(200,146,42,0.14);
  --pl-border-gold: rgba(200,146,42,0.24);

  /* ===== SHADOWS (soft luxury, not harsh) ===== */
  --pl-shadow-1: 0 8px 22px rgba(26,24,20,0.05);
  --pl-shadow-2: 0 20px 42px rgba(26,24,20,0.06);
  --pl-shadow-gold: 0 10px 26px rgba(200,146,42,0.12);

  /* ===== RADII / MOTION ===== */
  --pl-r: 22px;
  --pl-r-sm: 14px;
  --pl-r-xs: 10px;
  --pl-ease: cubic-bezier(0.22, 1, 0.36, 1);

  /* ===== TYPOGRAPHY ===== */
  --pl-font: var(--jl-font-body, "Open Sans", "Segoe UI", sans-serif);
  --pl-serif: var(--jl-font-heading, "Sriracha", "Segoe UI", sans-serif);
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   LAUNCHER â€” luxury badge on light canvas
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
#pl-fab {
  position: fixed;
  bottom: 22px;
  right: 20px;
  z-index: 10001;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  -webkit-tap-highlight-color: transparent;
  transition: opacity 0.35s ease;
}

#pl-fab[data-dimmed="true"] {
  opacity: 0.28;
  pointer-events: none;
}

/* Premium glass orb â€” your blackâ€‘circle logo floats inside */
.pl-orb {
  position: relative;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: radial-gradient(circle at 30% 25%,
    rgba(255,255,255,0.92),
    rgba(245,238,224,0.7) 40%,
    rgba(255,255,255,0.92) 80%
  );
  backdrop-filter: blur(2px);
  box-shadow: var(--pl-shadow-2), var(--pl-shadow-gold);
  transform: translateZ(0);
  transition: transform 0.35s var(--pl-ease), box-shadow 0.35s var(--pl-ease);
}

/* 24K mirror gold ring (always visible) */
.pl-orb::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: conic-gradient(
    from 20deg,
    var(--pl-gold) 0%,
    var(--pl-gold-hi) 22%,
    var(--pl-gold-pale) 45%,
    var(--pl-gold-hi) 68%,
    var(--pl-gold-deep) 100%
  );
  -webkit-mask: radial-gradient(farthest-side, transparent calc(100% - 4px), #000 calc(100% - 4px));
  mask: radial-gradient(farthest-side, transparent calc(100% - 4px), #000 calc(100% - 4px));
  opacity: 0.95;
  transition: opacity 0.35s ease, transform 0.5s var(--pl-ease);
}

/* Logo â€” pure, with a floating shadow */
.pl-orb img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 12px 24px rgba(37,37,37,0.12);
  transform: translateZ(0);
  transition: transform 0.35s var(--pl-ease);
}

/* Hover: lift + shimmer */
#pl-fab:hover .pl-orb {
  transform: translateY(-3px) scale(1.06);
  box-shadow: 0 24px 54px rgba(26,24,20,0.12), 0 16px 32px rgba(200,146,42,0.18);
}

#pl-fab:hover .pl-orb::before {
  opacity: 1;
  transform: rotate(12deg) scale(1.02);
}

#pl-fab:hover .pl-orb img {
  transform: scale(1.02);
}

/* Premium sheen sweep on hover */
#pl-fab:hover .pl-orb::after {
  content: '';
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  background: linear-gradient(120deg,
    transparent 25%,
    rgba(230,192,107,0.22) 45%,
    rgba(255,255,255,0.4) 50%,
    rgba(200,146,42,0.16) 55%,
    transparent 75%
  );
  animation: pl-sheen 0.85s ease-out forwards;
  pointer-events: none;
}

@keyframes pl-sheen {
  from { transform: translateX(-20px) rotate(0deg); opacity: 0; }
  20%  { opacity: 0.9; }
  to   { transform: translateX(20px) rotate(0deg); opacity: 0; }
}

/* ===== WHISPER â€” white glass, gold border (light luxury) ===== */
.pl-whisper {
  position: absolute;
  right: 76px;
  top: 50%;
  transform: translateY(-50%) translateX(8px);
  white-space: nowrap;
  font-family: var(--pl-font);
  font-size: 12px;
  font-weight: 650;
  letter-spacing: 0.02em;
  color: rgba(37,37,37,0.86);
  padding: 9px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.78);
  backdrop-filter: blur(10px);
  border: 1px solid var(--pl-gold-rim);
  box-shadow: 0 14px 30px rgba(37,37,37,0.10), inset 0 1px 0 rgba(255,255,255,0.55);
  opacity: 0;
  pointer-events: none;
  transition: all 0.35s var(--pl-ease);
}

.pl-whisper::before {
  content: '';
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  margin-right: 8px;
  background: radial-gradient(circle, var(--pl-gold-hi), var(--pl-gold));
  box-shadow: 0 0 0 3px rgba(200,146,42,0.22);
  vertical-align: -1px;
}

.pl-whisper::after {
  content: '';
  position: absolute;
  right: -6px;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  width: 10px;
  height: 10px;
  background: rgba(255,255,255,0.78);
  border-right: 1px solid var(--pl-gold-rim);
  border-bottom: 1px solid var(--pl-gold-rim);
}

#pl-fab:hover .pl-whisper {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   OVERLAY â€” luminous veil (glassmorphism)
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.pl-veil {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 10002;
  background: rgba(255,255,251,0.58);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.pl-veil[data-open="true"] {
  display: block;
  animation: pl-fade 0.25s ease;
}

@keyframes pl-fade { from { opacity: 0; } }

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   THE LENS â€” white glass, 24K mirror rim
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.pl-lens {
  display: none;
  position: fixed;
  z-index: 10003;
  bottom: 90px;
  right: 20px;
  width: 365px;
  max-width: calc(100vw - 40px);
  border-radius: var(--pl-r);
  overflow: hidden;

  /* Translucent white glass body + 24K gold border */
  background:
    linear-gradient(rgba(255,252,246,0.92), rgba(245,238,224,0.92)) padding-box,
    linear-gradient(
      155deg,
      rgba(200,146,42,0.42) 0%,
      rgba(230,192,107,0.16) 20%,
      rgba(255,255,255,0.55) 38%,
      rgba(200,146,42,0.10) 55%,
      rgba(176,122,30,0.24) 100%
    ) border-box;
  border: 2.5px solid transparent;

  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);

  /* âœ… FIXED: stray comment now OUTSIDE the property */
  box-shadow:
    var(--pl-shadow-2),
    inset 0 0 0 1px rgba(255,255,255,0.62);

  /* Light-shift parallax */
  --lx: 50%;
  --ly: 50%;
  transition: transform 0.5s ease-out;
  will-change: transform;
}

/* Inner bevel â€” soft gold edge */
.pl-lens::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--pl-r);
  box-shadow:
    inset 0 1px 0 rgba(200,146,42,0.12),
    inset 0 -1px 0 rgba(0,0,0,0.02);
  pointer-events: none;
  z-index: 1;
}

.pl-lens[data-open="true"] {
  display: flex;
  flex-direction: column;
  animation: pl-open 0.42s var(--pl-ease);
  transform: perspective(900px) rotateX(var(--rx, 0deg)) rotateY(var(--ry, 0deg));
}

@keyframes pl-open {
  from {
    opacity: 0;
    transform: perspective(900px) translateY(18px) scale(0.97) rotateX(1.5deg);
  }
  to {
    opacity: 1;
    transform: perspective(900px) translateY(0) scale(1) rotateX(0deg);
  }
}

/* Prismatic Glint â€” adapted to gold/white */
.pl-lens[data-open="true"]::after {
  content: '';
  position: absolute;
  top: 0;
  left: -70%;
  width: 45%;
  height: 100%;
  z-index: 300;
  pointer-events: none;
  background: linear-gradient(
    105deg,
    transparent 18%,
    rgba(200,146,42,0.06) 30%,
    rgba(230,192,107,0.10) 38%,
    rgba(255,255,255,0.22) 43%,
    rgba(255,255,255,0.40) 48%,
    rgba(255,255,255,0.42) 50%,
    rgba(255,255,255,0.22) 55%,
    rgba(200,146,42,0.04) 62%,
    rgba(176,122,30,0.03) 70%,
    transparent 82%
  );
  animation: pl-glint 0.85s 0.2s ease-out forwards;
}

@keyframes pl-glint {
  0%   { left: -55%; opacity: 0.7; }
  100% { left: 135%; opacity: 0; }
}

/* Light-shift layer â€” gold-tinted */
.pl-lens-light {
  position: absolute;
  inset: 0;
  border-radius: var(--pl-r);
  background: radial-gradient(
    ellipse 300px 300px at var(--lx) var(--ly),
    rgba(200,146,42,0.04) 0%,
    transparent 70%
  );
  pointer-events: none;
  z-index: 2;
  transition: background 0.6s ease-out;
}

/* â”€â”€ Header â”€â”€ */
.pl-head {
  padding: 26px 22px 16px;
  position: relative;
  z-index: 5;
}

.pl-title {
  font-family: var(--pl-serif);
  font-size: 23px;
  font-weight: 400;
  font-style: italic;
  color: var(--pl-heading);
  margin: 0;
  line-height: 1.25;
}

.pl-sub {
  font-family: var(--pl-font);
  font-size: 13px;
  font-weight: 500;
  color: var(--pl-text-mid);
  margin: 6px 0 0 0;
  line-height: 1.4;
}

/* Close button â€” subtle glass, gold hover */
.pl-x {
  position: absolute;
  top: 18px;
  right: 16px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid var(--pl-border);
  background: rgba(255,255,255,0.3);
  backdrop-filter: blur(4px);
  color: var(--pl-text-mid);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease;
  z-index: 10;
}

.pl-x:hover {
  color: var(--pl-gold);
  border-color: var(--pl-gold-rim);
  background: rgba(200,146,42,0.06);
  transform: rotate(90deg);
}

.pl-x svg { width: 12px; height: 12px; }

/* â”€â”€ Goldâ€‘leaf seam (24K) â”€â”€ */
.pl-seam {
  height: 1px;
  margin: 0 18px;
  position: relative;
  z-index: 5;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(200,146,42,0.18) 12%,
    rgba(200,146,42,0.42) 35%,
    rgba(230,192,107,0.5) 50%,
    rgba(200,146,42,0.42) 65%,
    rgba(200,146,42,0.18) 88%,
    transparent 100%
  );
}

/* â”€â”€ Body â”€â”€ */
.pl-body {
  padding: 14px 14px 10px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  position: relative;
  z-index: 5;
}

/* â”€â”€ HERO CTA â€” 24K mirror gold (primary moment) â”€â”€ */
.pl-hero {
  display: flex !important;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 18px;
  border-radius: var(--pl-r-sm);
  border: 1px solid rgba(176,122,30,0.24);
  cursor: pointer;
  transition: all 0.32s var(--pl-ease);
  -webkit-tap-highlight-color: transparent;
  margin-bottom: 6px;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 30% 25%, rgba(255,255,255,0.35), transparent 55%),
    linear-gradient(140deg,
      rgba(230,192,107,0.92) 0%,
      rgba(200,146,42,0.9) 38%,
      rgba(176,122,30,0.76) 100%
    );
  box-shadow:
    0 14px 34px rgba(26,24,20,0.12),
    0 10px 24px rgba(200,146,42,0.18),
    inset 0 1px 0 rgba(255,255,255,0.38);
}

/* Gold glass sheen sweep (very premium) */
.pl-hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: -60%;
  width: 48%;
  height: 100%;
  pointer-events: none;
  background: linear-gradient(105deg,
    transparent 18%,
    rgba(255,255,255,0.18) 42%,
    rgba(255,255,255,0.42) 50%,
    rgba(200,146,42,0.10) 58%,
    transparent 82%
  );
  opacity: 0;
  transform: skewX(-10deg);
}

.pl-hero:hover {
  transform: translateY(-2px);
  box-shadow:
    0 20px 44px rgba(26,24,20,0.14),
    0 16px 30px rgba(200,146,42,0.22),
    inset 0 1px 0 rgba(255,255,255,0.44);
}

.pl-hero:hover::after {
  opacity: 1;
  animation: pl-hero-sheen 0.9s ease-out forwards;
}

@keyframes pl-hero-sheen {
  from { left: -60%; opacity: 0; }
  15% { opacity: 0.75; }
  to { left: 140%; opacity: 0; }
}

/* Hero icon container â€” subtle glass */
.pl-hero-ic {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: rgba(255,255,255,0.18);
  border: 1px solid rgba(255,255,255,0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.28s ease, transform 0.28s ease;
}

.pl-hero:hover .pl-hero-ic {
  background: rgba(255,255,255,0.26);
  transform: translateY(-1px);
}

/* Hero icon stroke â€” dark for luxury */
.pl-hero-ic svg {
  width: 20px;
  height: 20px;
  stroke: rgba(37,37,37,0.82);
  fill: none;
  stroke-width: 1.7;
}

/* Hero text: dark (premium), not white */
.pl-hero-h {
  color: rgba(37,37,37,0.92);
}
.pl-hero-p {
  color: rgba(37,37,37,0.68);
}

/* HARD ENFORCEMENT: heading + subtext always 2 separate lines */
.pl-hero-txt,
.pl-cell-txt {
  display: flex;
  flex-direction: column;
}

.pl-hero-txt {
  flex: 1 1 auto;
  min-width: 0;
}

.pl-hero-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  min-width: 0;
  width: 100%;
}

.pl-hero-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.28rem 0.62rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.32);
  border: 1px solid rgba(37, 37, 37, 0.12);
  color: rgba(37, 37, 37, 0.72);
  font-family: var(--pl-font);
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
  flex-shrink: 0;
}

.pl-hero--soon {
  cursor: default;
  pointer-events: none;
}

.pl-hero[disabled],
.pl-hero[disabled]:hover,
.pl-hero[disabled]:focus-visible {
  opacity: 1;
  cursor: default;
  transform: none;
  box-shadow:
    0 14px 34px rgba(26,24,20,0.12),
    0 10px 24px rgba(200,146,42,0.18),
    inset 0 1px 0 rgba(255,255,255,0.38);
}

.pl-hero--soon:hover {
  transform: none;
  box-shadow: 0 14px 34px rgba(37, 37, 37, 0.12), 0 10px 24px rgba(233, 215, 88, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.38);
}

.pl-hero--soon:hover::after {
  opacity: 0;
  animation: none;
}

.pl-hero--soon:hover .pl-hero-ic {
  background: rgba(255, 255, 255, 0.18);
  transform: none;
}

.pl-hero-h, .pl-hero-p,
.pl-cell-h, .pl-cell-p,
.pl-title, .pl-sub {
  display: block;
  width: 100%;
}

.pl-hero-row .pl-hero-h,
.pl-hero-row .pl-hero-badge {
  width: auto;
}

/* Titles: singleâ€‘line ellipsis */
.pl-hero-h, .pl-cell-h, .pl-title {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Subtext: allowed to wrap (your current preference) */
.pl-hero-p, .pl-cell-p, .pl-sub {
  white-space: normal;
}

.pl-hero-txt { gap: 3px; }
.pl-cell-txt { gap: 2px; }

.pl-hero-h {
  font-family: var(--pl-font);
  font-size: 1.12rem;
  font-weight: 700;
  line-height: 1.2;
  color: var(--pl-heading);
}
.pl-hero-p {
  font-family: var(--pl-font);
  margin-top: 0.16rem;
  font-size: 0.93rem;
  font-weight: 500;
  line-height: 1.35;
  color: rgba(37, 37, 37, 0.7);
}

/* â”€â”€ 2Ã—2 GRID â€” glass cells, gold hover â”€â”€ */
.pl-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
}

.pl-cell {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 13px;
  border-radius: var(--pl-r-xs);
  background: rgba(255,255,255,0.3);
  backdrop-filter: blur(8px);
  border: 1px solid var(--pl-border);
  cursor: pointer;
  transition: all 0.25s var(--pl-ease);
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
  box-shadow: 0 2px 6px rgba(0,0,0,0.02);
}

.pl-cell:hover {
  border-color: var(--pl-gold-rim);
  background: rgba(200,146,42,0.06);
  backdrop-filter: blur(12px);
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(200,146,42,0.08);
}

.pl-cell-ic {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 9px;
  background: rgba(200,146,42,0.08);
  border: 1px solid transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.pl-cell:hover .pl-cell-ic {
  background: rgba(200,146,42,0.14);
  border-color: rgba(200,146,42,0.24);
}

/* Grid icons â€” deep champagne gold (not gaudy) */
.pl-cell-ic svg {
  width: 15px;
  height: 15px;
  stroke: rgba(176,122,30,0.85);
  fill: none;
  stroke-width: 1.8;
}

.pl-cell-h {
  font-family: var(--pl-font);
  font-size: 12.5px;
  font-weight: 600;
  color: var(--pl-heading);
  line-height: 1.25;
}
.pl-cell-p {
  font-family: var(--pl-font);
  font-size: 10.5px;
  font-weight: 500;
  color: var(--pl-text-mid);
  line-height: 1.2;
}

/* â”€â”€ Footer â”€â”€ */
.pl-foot {
  padding: 12px 22px 14px;
  text-align: center;
  border-top: 1px solid var(--pl-border);
  margin-top: 4px;
  position: relative;
  z-index: 5;
}

.pl-foot-t {
  font-family: var(--pl-font);
  font-size: 10.5px;
  font-weight: 500;
  color: var(--pl-text-quiet);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin: 0 0 8px 0;
}

/* ===== SOCIAL ICONS â€” complete brand set, glass + gold hover ===== */
.pl-soc {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  list-style: none;
  padding: 0;
  margin: 0 0 8px 0;
}

.pl-soc a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: rgba(255,255,255,0.3);
  backdrop-filter: blur(4px);
  border: 1px solid var(--pl-border);
  transition: all 0.25s ease;
}

.pl-soc a:hover {
  background: rgba(200,146,42,0.1);
  border-color: var(--pl-gold-rim);
  transform: translateY(-2px);
}

.pl-soc svg {
  width: 18px;
  height: 18px;
  fill: var(--pl-text-mid);
  transition: fill 0.25s ease;
}

.pl-soc a:hover svg {
  fill: var(--pl-gold);
}

/* Email row â€” distinct, clickable */
.pl-email {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: var(--radius-pill, 999px);
  background: rgba(255,255,255,0.3);
  backdrop-filter: blur(4px);
  border: 1px solid var(--pl-border);
  color: var(--pl-text-mid);
  font-size: 12px;
  font-weight: 550;
  text-decoration: none;
  transition: all 0.25s ease;
  margin-top: 4px;
}

.pl-email:hover {
  background: rgba(200,146,42,0.1);
  border-color: var(--pl-gold-rim);
  color: var(--pl-gold-deep);
  transform: translateY(-1px);
}

.pl-email svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   STAGGER â€” short, triggered
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.pl-lens[data-open="true"] .pl-hero,
.pl-lens[data-open="true"] .pl-cell {
  opacity: 0;
  transform: translateY(8px);
  animation: pl-in 0.3s var(--pl-ease) forwards;
}
.pl-lens[data-open="true"] .pl-hero        { animation-delay: 0.06s; }
.pl-lens[data-open="true"] .pl-cell:nth-child(1) { animation-delay: 0.10s; }
.pl-lens[data-open="true"] .pl-cell:nth-child(2) { animation-delay: 0.14s; }
.pl-lens[data-open="true"] .pl-cell:nth-child(3) { animation-delay: 0.18s; }
.pl-lens[data-open="true"] .pl-cell:nth-child(4) { animation-delay: 0.22s; }

@keyframes pl-in { to { opacity: 1; transform: translateY(0); } }

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   CHAT MODAL â€” white glass, 24K rim
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.pl-chat {
  display: none;
  position: fixed;
  z-index: 10004;
  bottom: 90px;
  right: 20px;
  width: 390px;
  max-width: calc(100vw - 40px);
  height: 520px;
  border-radius: var(--pl-r);
  overflow: hidden;

  background:
    linear-gradient(rgba(255,252,246,0.94), rgba(245,238,224,0.94)) padding-box,
    linear-gradient(
      155deg,
      rgba(200,146,42,0.36) 0%,
      rgba(230,192,107,0.14) 25%,
      rgba(255,255,255,0.5) 42%,
      rgba(200,146,42,0.1) 60%,
      rgba(200,146,42,0.3) 100%
    ) border-box;
  border: 2.5px solid transparent;

  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: var(--pl-shadow-2), inset 0 0 0 1px rgba(255,255,255,0.5);
}

.pl-chat[data-open="true"] {
  display: flex;
  flex-direction: column;
  animation: pl-open 0.35s var(--pl-ease);
}

.pl-chat-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px;
  height: 48px;
  border-bottom: 1px solid var(--pl-border);
  background: rgba(255,255,255,0.3);
  backdrop-filter: blur(8px);
}

.pl-chat-left { display: flex; align-items: center; gap: 9px; }

/* Status dot â€” premium emerald + gold halo */
.pl-chat-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #C8922A;
  box-shadow:
    0 0 0 3px rgba(200,146,42,0.22),
    0 0 10px rgba(200,146,42,0.18);
}

/* Chat title â€” refined */
.pl-chat-nm {
  font-family: var(--pl-font);
  font-size: 14px;
  font-weight: 650;
  color: var(--pl-heading);
  letter-spacing: 0.01em;
}

.pl-chat-bar button {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid var(--pl-border);
  background: rgba(255,255,255,0.3);
  backdrop-filter: blur(4px);
  color: var(--pl-text-mid);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease;
}
.pl-chat-bar button:hover {
  color: var(--pl-gold);
  border-color: var(--pl-gold-rim);
  background: rgba(200,146,42,0.08);
  transform: rotate(90deg);
}

.pl-chat-body {
  flex: 1;
  background: rgba(255,255,255,0.2);
  backdrop-filter: blur(8px);
  border-radius: 0 0 var(--pl-r) var(--pl-r);
  overflow: hidden;
}
.pl-chat-body iframe {
  width: 100%;
  height: 100%;
  border: none;
  -webkit-overflow-scrolling: touch;
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   MOBILE BOTTOM SHEET
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
@media (max-width: 640px) {
  #pl-fab { bottom: 16px; right: 14px; }
  .pl-orb { width: 56px; height: 56px; }
  .pl-orb img { width: 34px; height: 34px; }
  .pl-whisper { display: none; }

  .pl-lens {
    bottom: 0; right: 0; left: 0;
    width: 100%; max-width: 100%;
    border-radius: var(--pl-r) var(--pl-r) 0 0;
    max-height: 82vh;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    transform: none !important;
  }

  .pl-lens[data-open="true"] { animation: pl-sheet 0.4s var(--pl-ease); }

  @keyframes pl-sheet {
    from { opacity: 0; transform: translateY(100%); }
    to   { opacity: 1; transform: translateY(0); }
  }

  .pl-drag { display: block !important; }
  .pl-head { padding: 6px 18px 14px; }
  .pl-title { font-size: 21px; }
  .pl-body { padding: 10px 12px 14px; }

  .pl-chat {
    bottom: 0; right: 0; left: 0;
    width: 100%; max-width: 100%;
    height: 88vh;
    border-radius: var(--pl-r) var(--pl-r) 0 0;
    transform: none !important;
  }
  .pl-chat[data-open="true"] { animation: pl-sheet 0.35s var(--pl-ease); }
  
  .pl-soc a {
    width: 38px;
    height: 38px;
  }
  .pl-soc svg {
    width: 20px;
    height: 20px;
  }
  .pl-email {
    padding: 10px 18px;
    font-size: 13px;
  }

  .pl-hero-row {
    flex-wrap: wrap;
    gap: 0.35rem;
    justify-content: flex-start;
  }

  .pl-hero-h {
    font-size: 1rem;
  }

  .pl-hero-p {
    font-size: 0.88rem;
  }
}

.pl-drag {
  display: none;
  width: 34px;
  height: 4px;
  border-radius: 2px;
  background: rgba(37,37,37,0.12);
  margin: 10px auto 2px;
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   REDUCED MOTION + DEGRADATION
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .pl-lens { transform: none !important; }
}

*:focus-visible {
  outline: 2px solid var(--pl-gold);
  outline-offset: 2px;
}

@supports not (backdrop-filter: blur(1px)) {
  .pl-lens, .pl-chat {
    background: rgba(255,255,255,0.98);
    border: 2.5px solid var(--pl-gold);
  }
  .pl-veil { background: rgba(255,255,251,0.9); }
  .pl-soc a, .pl-email { background: #fff; }
}
