/*
 * GROUNDWORK DEMO LAYER — v2.0
 * Apple-tier SaaS product annotation system
 * Sits on top of the contractor website to sell Groundwork
 * ─────────────────────────────────────────────────────────
 */

/* ── DESIGN TOKENS ── */
:root {
  --gw-green:   #00C98D;
  --gw-green-d: #00A573;
  --gw-black:   #080C10;
  --gw-navy:    #0D1421;
  --gw-border:  rgba(255,255,255,0.08);
  --gw-text:    rgba(255,255,255,0.55);
  --gw-white:   #FFFFFF;
  --gw-orange:  #F97316;
  --gw-font:    -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Inter', sans-serif;
  /* Light-layer tokens — used for visual separation from dark contractor site */
  --gw-layer-bg:      #FFFFFF;
  --gw-layer-border:  #00C98D;
  --gw-layer-text:    #0F172A;
  --gw-layer-muted:   #475569;
  --gw-layer-sub-bg:  #F0FDF9;
}

/* ═══════════════════════════════════════════════════
   1. STICKY DEMO BAR — always visible, top of page
   ═══════════════════════════════════════════════════ */
.gw-sticky-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  height: 44px;
  background: var(--gw-layer-bg);
  border-bottom: 3px solid var(--gw-layer-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  font-family: var(--gw-font);
  -webkit-font-smoothing: antialiased;
}
.gw-bar-left {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.gw-bar-logo {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 800;
  color: var(--gw-layer-text);
  letter-spacing: -0.01em;
  white-space: nowrap;
}
.gw-bar-logo-mark {
  width: 20px;
  height: 20px;
  background: var(--gw-green);
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.gw-bar-logo-mark svg {
  width: 11px;
  height: 11px;
  fill: var(--gw-black);
}
.gw-bar-divider {
  width: 1px;
  height: 16px;
  background: rgba(0,0,0,0.15);
  flex-shrink: 0;
}
.gw-bar-label {
  font-size: 11px;
  color: var(--gw-layer-muted);
  white-space: nowrap;
  letter-spacing: 0.01em;
}
.gw-bar-center {
  display: flex;
  align-items: center;
  gap: 6px;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  flex: 1;
  justify-content: center;
  padding: 0 12px;
}
.gw-bar-center::-webkit-scrollbar { display: none; }
.gw-bar-pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: #F0FDF9;
  border: 1px solid rgba(0,201,141,0.3);
  border-radius: 100px;
  padding: 3px 10px;
  font-size: 10px;
  font-weight: 600;
  color: #0F5132;
  white-space: nowrap;
  letter-spacing: 0.02em;
  flex-shrink: 0;
}
.gw-bar-pill .gw-dot {
  width: 5px;
  height: 5px;
  background: var(--gw-green);
  border-radius: 50%;
  flex-shrink: 0;
}
.gw-bar-right {
  flex-shrink: 0;
}
.gw-bar-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--gw-green);
  color: var(--gw-black);
  font-size: 11px;
  font-weight: 800;
  padding: 6px 14px;
  border-radius: 100px;
  text-decoration: none;
  white-space: nowrap;
  letter-spacing: 0.01em;
  transition: background 0.2s, transform 0.15s;
}
.gw-bar-cta:hover {
  background: var(--gw-green-d);
  transform: translateY(-1px);
}
/* Offset page body so content isn't hidden under site header (util-bar ~37px + nav ~57px = ~94px) */
body { padding-top: 94px; }


/* ═══════════════════════════════════════════════════
   2. FEATURE ANNOTATION BADGES
   Float on/near CTA elements to name the feature
   ═══════════════════════════════════════════════════ */
.gw-badge-wrap {
  position: relative;
  display: inline-block;
}
.gw-badge {
  position: absolute;
  z-index: 100;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--gw-black);
  border: 1px solid rgba(0,201,141,0.4);
  border-radius: 8px;
  padding: 6px 10px;
  font-family: var(--gw-font);
  font-size: 10px;
  font-weight: 700;
  color: var(--gw-green);
  white-space: nowrap;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  box-shadow: 0 4px 16px rgba(0,201,141,0.15);
  pointer-events: none;
}
.gw-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--gw-green);
  border-radius: 50%;
  flex-shrink: 0;
  animation: gw-pulse 2s infinite;
}
@keyframes gw-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.85); }
}
/* Placement variants */
.gw-badge.top-right    { top: -14px; right: -8px; }
.gw-badge.top-left     { top: -14px; left: -8px; }
.gw-badge.bottom-right { bottom: -14px; right: -8px; }
.gw-badge.bottom-left  { bottom: -14px; left: -8px; }

/* Connector line from badge to element */
.gw-badge-connector {
  position: absolute;
  z-index: 99;
  pointer-events: none;
}


/* ═══════════════════════════════════════════════════
   3. FEATURE STRIP — full-width between sections
   Dark, premium, explains what just happened above
   ═══════════════════════════════════════════════════ */
.gw-strip {
  background: var(--gw-navy);
  border-top: 1px solid var(--gw-border);
  border-bottom: 1px solid var(--gw-border);
  padding: 0;
  font-family: var(--gw-font);
  overflow: hidden;
}
.gw-strip-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 32px 24px;
  display: flex;
  align-items: flex-start;
  gap: 32px;
  flex-direction: column;
}
.gw-strip-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gw-green);
  margin-bottom: 8px;
}
.gw-strip-eyebrow::before {
  content: '';
  width: 5px;
  height: 5px;
  background: var(--gw-green);
  border-radius: 50%;
}
.gw-strip-headline {
  font-size: clamp(18px, 3vw, 26px);
  font-weight: 800;
  color: var(--gw-white);
  letter-spacing: -0.025em;
  line-height: 1.2;
  margin-bottom: 6px;
}
.gw-strip-sub {
  font-size: 14px;
  color: var(--gw-text);
  line-height: 1.6;
  max-width: 480px;
}
.gw-strip-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}
.gw-strip-feature {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--gw-border);
  border-radius: 12px;
  padding: 16px;
}
.gw-strip-feature-icon {
  width: 36px;
  height: 36px;
  background: rgba(0,201,141,0.1);
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}
.gw-strip-feature-text h4 {
  font-size: 13px;
  font-weight: 700;
  color: var(--gw-white);
  margin-bottom: 2px;
}
.gw-strip-feature-text p {
  font-size: 12px;
  color: var(--gw-text);
  line-height: 1.5;
}
.gw-strip-feature-text .gw-tag {
  display: inline-block;
  margin-top: 5px;
  font-size: 10px;
  font-weight: 700;
  color: var(--gw-green);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}


/* ═══════════════════════════════════════════════════
   4. ANNOTATION PANEL — side callout panel
   Right-aligned on desktop, stacked below on mobile
   ═══════════════════════════════════════════════════ */
.gw-annotated {
  position: relative;
}
.gw-annotation-panel {
  background: var(--gw-navy);
  border: 1px solid var(--gw-border);
  border-left: 3px solid var(--gw-green);
  border-radius: 12px;
  padding: 20px;
  font-family: var(--gw-font);
  margin: 24px 24px 0;
}
.gw-annotation-panel .gw-ap-eyebrow {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gw-green);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.gw-annotation-panel .gw-ap-eyebrow::before {
  content: '';
  width: 5px;
  height: 5px;
  background: var(--gw-green);
  border-radius: 50%;
  animation: gw-pulse 2s infinite;
}
.gw-annotation-panel h4 {
  font-size: 16px;
  font-weight: 800;
  color: var(--gw-white);
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}
.gw-annotation-panel p {
  font-size: 13px;
  color: var(--gw-text);
  line-height: 1.6;
  margin-bottom: 12px;
}
.gw-annotation-panel .gw-ap-stat {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(0,201,141,0.08);
  border: 1px solid rgba(0,201,141,0.2);
  border-radius: 8px;
  padding: 10px 12px;
  font-size: 12px;
  font-weight: 600;
  color: var(--gw-white);
}
.gw-annotation-panel .gw-ap-stat span {
  font-size: 20px;
  font-weight: 800;
  color: var(--gw-green);
  letter-spacing: -0.03em;
}


/* ═══════════════════════════════════════════════════
   5. FEATURE REVEAL SECTION — full Groundwork pitch
   iPhone product page energy — every feature named
   ═══════════════════════════════════════════════════ */
.gw-reveal {
  background: var(--gw-layer-bg);
  border-top: 4px solid var(--gw-layer-border);
  border-bottom: 4px solid var(--gw-layer-border);
  padding: 80px 24px;
  font-family: var(--gw-font);
  position: relative;
  overflow: hidden;
}
/* Subtle grid background texture */
.gw-reveal::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,201,141,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,201,141,0.06) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}
.gw-reveal-inner {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
}
.gw-reveal-header {
  text-align: center;
  margin-bottom: 64px;
}
.gw-reveal-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gw-green);
  margin-bottom: 16px;
}
.gw-reveal-eyebrow::before,
.gw-reveal-eyebrow::after {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--gw-green);
  opacity: 0.5;
}
.gw-reveal-headline {
  font-size: clamp(28px, 5vw, 48px);
  font-weight: 800;
  color: var(--gw-layer-text);
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 16px;
}
.gw-reveal-headline em {
  font-style: normal;
  color: var(--gw-green);
}
.gw-reveal-sub {
  font-size: 16px;
  color: var(--gw-layer-muted);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.65;
}

/* Feature bento grid */
.gw-bento {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-bottom: 64px;
}
.gw-bento-card {
  background: #FFFFFF;
  border: 1px solid rgba(0,201,141,0.2);
  border-radius: 20px;
  padding: 32px;
  transition: border-color 0.25s, transform 0.2s;
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.gw-bento-card:hover {
  border-color: rgba(0,201,141,0.5);
  transform: translateY(-2px);
}
.gw-bento-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(0,201,141,0.6), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}
.gw-bento-card:hover::after { opacity: 1; }
.gw-bento-card.featured {
  border-color: rgba(0,201,141,0.4);
  background: #F0FDF9;
}
.gw-bento-icon {
  width: 48px;
  height: 48px;
  background: rgba(0,201,141,0.1);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 20px;
}
.gw-bento-card.featured .gw-bento-icon {
  background: rgba(0,201,141,0.2);
}
.gw-bento-label {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gw-green);
  margin-bottom: 8px;
}
.gw-bento-card h3 {
  font-size: 20px;
  font-weight: 800;
  color: var(--gw-layer-text);
  letter-spacing: -0.025em;
  margin-bottom: 10px;
}
.gw-bento-card p {
  font-size: 14px;
  color: var(--gw-layer-muted);
  line-height: 1.65;
}
.gw-bento-meta {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid rgba(0,201,141,0.15);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.gw-bento-included {
  font-size: 11px;
  font-weight: 700;
  color: var(--gw-green);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.gw-bento-check {
  width: 20px;
  height: 20px;
  background: rgba(0,201,141,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  color: var(--gw-green);
  flex-shrink: 0;
}

/* Price callout */
.gw-price-block {
  background: var(--gw-layer-text);
  border: 1px solid rgba(0,201,141,0.3);
  border-radius: 20px;
  padding: 40px 32px;
  text-align: center;
  position: relative;
}
.gw-price-block::before {
  content: 'Everything above, done for you';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gw-green);
  color: var(--gw-black);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 16px;
  border-radius: 100px;
  white-space: nowrap;
}
.gw-price-main {
  font-size: clamp(48px, 8vw, 72px);
  font-weight: 900;
  color: var(--gw-white);
  letter-spacing: -0.04em;
  line-height: 1;
  margin: 24px 0 8px;
}
.gw-price-main sup {
  font-size: 0.45em;
  vertical-align: top;
  margin-top: 14px;
  color: var(--gw-text);
}
.gw-price-period {
  font-size: 14px;
  color: var(--gw-text);
  margin-bottom: 24px;
}
.gw-price-compare {
  display: inline-block;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--gw-border);
  border-radius: 8px;
  padding: 8px 16px;
  font-size: 13px;
  color: var(--gw-text);
  margin-bottom: 28px;
}
.gw-price-compare s { color: rgba(255,255,255,0.3); }
.gw-price-compare strong { color: var(--gw-white); }
.gw-price-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--gw-green);
  color: var(--gw-black);
  font-size: 16px;
  font-weight: 800;
  padding: 16px 32px;
  border-radius: 100px;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
  margin-bottom: 16px;
}
.gw-price-cta:hover {
  background: var(--gw-green-d);
  transform: translateY(-2px);
}
.gw-price-fine {
  font-size: 12px;
  color: rgba(255,255,255,0.45);
}


/* ═══════════════════════════════════════════════════
   6. INLINE FEATURE CALLOUT — between body sections
   Compact, horizontal on desktop
   ═══════════════════════════════════════════════════ */
.gw-inline-callout {
  background: var(--gw-navy);
  border: 1px solid var(--gw-border);
  border-radius: 16px;
  padding: 20px;
  margin: 0 24px 0;
  font-family: var(--gw-font);
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.gw-inline-icon {
  width: 40px;
  height: 40px;
  background: rgba(0,201,141,0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}
.gw-inline-body .gw-inline-eyebrow {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gw-green);
  margin-bottom: 4px;
}
.gw-inline-body h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--gw-white);
  margin-bottom: 4px;
}
.gw-inline-body p {
  font-size: 12px;
  color: var(--gw-text);
  line-height: 1.5;
}


/* ═══════════════════════════════════════════════════
   7. RESPONSIVE BREAKPOINTS
   ═══════════════════════════════════════════════════ */

/* Tablet 640+ */
@media (min-width: 640px) {
  .gw-strip-inner {
    flex-direction: row;
    align-items: center;
  }
  .gw-strip-text { flex: 1; }
  .gw-strip-features {
    flex: 1;
    flex-direction: column;
  }
  .gw-bento {
    grid-template-columns: repeat(2, 1fr);
  }
  .gw-annotation-panel {
    margin: 24px 48px 0;
  }
}

/* Desktop 1024+ */
@media (min-width: 1024px) {
  .gw-sticky-bar {
    padding: 0 40px;
  }
  .gw-bar-label { display: block; }
  .gw-bar-pill { font-size: 11px; }
  .gw-strip-inner {
    padding: 40px 48px;
    gap: 64px;
  }
  .gw-strip-features {
    flex-direction: row;
    gap: 12px;
  }
  .gw-strip-feature {
    flex: 1;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  .gw-annotation-panel {
    position: absolute;
    right: -280px;
    top: 0;
    width: 260px;
    margin: 0;
  }
  .gw-annotated { padding-right: 300px; }
  .gw-bento {
    grid-template-columns: repeat(3, 1fr);
  }
  .gw-bento-card.wide {
    grid-column: span 2;
  }
  .gw-reveal { padding: 100px 48px; }
  .gw-inline-callout {
    margin: 0 48px 0;
    align-items: center;
  }
}

/* Mobile — slim bar, logo + CTA only */
@media (max-width: 639px) {
  .gw-sticky-bar {
    padding: 0 12px;
    height: 40px;
  }
  .gw-bar-center { display: none; }
  .gw-bar-label { display: none; }
  .gw-bar-divider { display: none; }
  .gw-bar-logo-mark { width: 22px; height: 22px; }
  .gw-bar-logo span {
    font-size: 13px;
  }
  .gw-bar-cta {
    padding: 6px 12px;
    font-size: 12px;
    border-radius: 6px;
  }
  body { padding-top: 40px; }
}

/* ═══════════════════════════════════════════════════════
   HOTSPOT CALLOUTS — Groundwork Demo Layer
   Numbered anchors that float over page sections and open
   the feature drawer when clicked.
   ═══════════════════════════════════════════════════════ */

/* Wrapper — JS sets absolute position relative to anchor element */
.gw-hotspot {
  position: absolute;
  z-index: 4000;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  pointer-events: auto;
  /* Hidden until JS adds .visible */
  opacity: 0;
  transform: scale(0.8) translateY(6px);
  transition: opacity 0.35s ease, transform 0.35s ease;
}
.gw-hotspot.visible {
  opacity: 1;
  transform: scale(1) translateY(0);
}
.gw-hotspot:hover .gw-hotspot-dot {
  background: var(--gw-green, #00C98D);
  color: #080C10;
  transform: scale(1.15);
}

/* Numbered circle */
.gw-hotspot-dot {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #080C10;
  border: 2px solid var(--gw-green, #00C98D);
  color: var(--gw-green, #00C98D);
  font-size: 12px;
  font-weight: 800;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Inter', sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.2s, color 0.2s, transform 0.2s;
  box-shadow: 0 0 0 4px rgba(0,201,141,0.15);
  animation: gwHotspotPulse 2.5s infinite;
}
@keyframes gwHotspotPulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(0,201,141,0.15); }
  50%       { box-shadow: 0 0 0 8px rgba(0,201,141,0.05); }
}

/* Label pill next to the dot */
.gw-hotspot-label {
  background: #080C10;
  border: 1px solid rgba(0,201,141,0.35);
  border-radius: 100px;
  padding: 5px 12px;
  font-size: 11px;
  font-weight: 700;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Inter', sans-serif;
  color: rgba(255,255,255,0.9);
  white-space: nowrap;
  letter-spacing: 0.03em;
  box-shadow: 0 4px 16px rgba(0,0,0,0.4);
}

/* Mobile: slightly smaller */
@media (max-width: 639px) {
  .gw-hotspot-dot {
    width: 24px;
    height: 24px;
    font-size: 11px;
  }
  .gw-hotspot-label {
    font-size: 10px;
    padding: 4px 10px;
  }
}


/* ═══════════════════════════════════════════════════════
   SCROLL-TRIGGERED PILL POPUPS — Groundwork Demo Layer
   Matches sticky bar visual language exactly.
   ═══════════════════════════════════════════════════════ */

/* Container — fixed bottom-left, pills stack upward */
.gw-pill-stack {
  position: fixed;
  bottom: 24px;
  left: 20px;
  z-index: 8888;
  display: flex;
  flex-direction: column-reverse; /* newest at bottom, stack grows up */
  gap: 8px;
  pointer-events: none;
}

/* Individual pill — matches .gw-bar-pill but larger + animated */
.gw-popup-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gw-black, #080C10);
  border: 1px solid rgba(0,201,141,0.35);
  border-radius: 100px;
  padding: 9px 16px 9px 12px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.92);
  white-space: nowrap;
  letter-spacing: 0.01em;
  box-shadow: 0 4px 20px rgba(0,0,0,0.45);
  pointer-events: auto;
  cursor: default;
  /* Enter animation */
  opacity: 0;
  transform: translateX(-16px) scale(0.95);
  transition: opacity 0.35s ease, transform 0.35s ease;
}
.gw-popup-pill.gw-pill-visible {
  opacity: 1;
  transform: translateX(0) scale(1);
}
.gw-popup-pill.gw-pill-exit {
  opacity: 0;
  transform: translateX(-12px) scale(0.95);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

/* Green dot — matches sticky bar exactly */
.gw-popup-pill .gw-pdot {
  width: 7px;
  height: 7px;
  background: var(--gw-green, #00C98D);
  border-radius: 50%;
  flex-shrink: 0;
  animation: gwDotPulse 2.5s infinite;
}
@keyframes gwDotPulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.45; }
}

/* Dismiss × */
.gw-popup-pill .gw-pdismiss {
  background: none;
  border: none;
  color: rgba(255,255,255,0.35);
  font-size: 14px;
  line-height: 1;
  padding: 0 0 0 4px;
  cursor: pointer;
  flex-shrink: 0;
  transition: color 0.15s;
}
.gw-popup-pill .gw-pdismiss:hover { color: rgba(255,255,255,0.8); }

/* Mobile: smaller, tighter */
@media (max-width: 639px) {
  .gw-pill-stack {
    bottom: 16px;
    left: 12px;
    right: 12px;
  }
  .gw-popup-pill {
    font-size: 12px;
    padding: 8px 13px 8px 10px;
  }
}


/* cache-bust: 1781703470 */