/* ==========================================================================
   PGP Studio — Lead Capture System v3.0
   Fully on-brand: Fredoka · Poppins · #5F2EEA · #FF8A23 · #FFD23F
   ========================================================================== */

/* ── Fix: keep custom cursor-dot visible above the modal ─────────────────── */
.cursor-dot { z-index: 100000 !important; }

/* ── Body scroll lock ────────────────────────────────────────────────────── */
.lc-body-lock { overflow: hidden; }

/* ==========================================================================
   LEVEL 1 — FLOATING WIDGET
   ========================================================================== */

.lc-widget {
  position: fixed;
  bottom: 100px;
  right: 24px;
  z-index: 9000;
  width: 280px;
  /* gradient stripe: 3px purple at top, then white — clips cleanly to border-radius */
  background: linear-gradient(
    to bottom,
    var(--color-primary, #5F2EEA) 0px,
    var(--color-primary, #5F2EEA) 3px,
    #ffffff 3px
  );
  border: 1px solid var(--color-border, #E6E8EF);
  border-radius: var(--r-xl, 28px);
  box-shadow:
    0 2px 8px rgba(20, 10, 50, 0.06),
    0 20px 48px rgba(95, 46, 234, 0.18);
  padding: 20px 20px 18px;
  transform: translateY(28px) scale(0.92);
  opacity: 0;
  pointer-events: none;
  transition: none;
}
.lc-widget--in {
  transform: translateY(0) scale(1);
  opacity: 1;
  pointer-events: auto;
  transition: transform 0.42s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.28s ease;
}
.lc-widget--out {
  transform: translateY(20px) scale(0.92);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.28s ease, opacity 0.22s ease;
}

.lc-widget-close {
  position: absolute;
  top: 14px; right: 14px;
  width: 26px; height: 26px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--color-border, #E6E8EF);
  background: var(--color-surface, #F7F8FC);
  border-radius: 50%;
  color: var(--color-text-secondary, #575757);
  cursor: pointer; padding: 0;
  transition: background 0.15s, transform 0.15s;
}
.lc-widget-close:hover { background: var(--color-border, #E6E8EF); transform: scale(1.1); }

.lc-widget-icon { font-size: 28px; line-height: 1; margin-bottom: 10px; }

.lc-widget-heading {
  margin: 0 0 4px;
  font-family: var(--font-display, 'Fredoka', sans-serif);
  font-size: 16px; font-weight: 700;
  color: var(--color-text, #1A1A1A);
  line-height: 1.25; padding-right: 22px;
}
.lc-widget-sub {
  margin: 0 0 16px;
  font-size: 13px;
  color: var(--color-text-secondary, #575757);
  line-height: 1.5;
}
.lc-widget-cta {
  display: flex; align-items: center; justify-content: center;
  width: 100%; height: 42px; padding: 0 20px;
  background: var(--color-primary, #5F2EEA);
  color: #fff; border: none;
  border-radius: var(--r-md, 12px);
  font-family: var(--font-body, 'Poppins', sans-serif);
  font-size: 14px; font-weight: 600; cursor: pointer;
  box-shadow: 0 8px 20px rgba(95, 46, 234, 0.32);
  transition: background 0.18s, transform 0.18s, box-shadow 0.18s;
}
.lc-widget-cta:hover {
  background: #5027C9;
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(95, 46, 234, 0.42);
}
.lc-widget-cta:active { transform: scale(0.97); }

@media (max-width: 480px) {
  .lc-widget { right: 12px; left: 12px; width: auto; bottom: 84px; }
}

/* ==========================================================================
   LEVEL 2 — MODAL OVERLAY
   ========================================================================== */

.lc-overlay {
  position: fixed;
  inset: 0;
  z-index: 9998;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  background: rgba(8, 6, 18, 0.75);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.lc-overlay--in { opacity: 1; pointer-events: auto; }

/* Ensure form elements are clickable (exclude close button — it handles itself) */
.lc-overlay input,
.lc-overlay textarea,
.lc-overlay select,
.lc-overlay a { pointer-events: auto; position: relative; z-index: 1; }

/* ── MODAL CARD ─────────────────────────────────────────────────────────── */
.lc-modal {
  position: relative;
  width: 100%;
  max-width: 900px;
  /* overflow: visible so the floating close button is never clipped by
     the border-radius. The inner grid handles its own overflow instead. */
  border-radius: var(--r-xl, 28px);
  background: #fff;
  box-shadow:
    0 0 0 1px rgba(95, 46, 234, 0.1),
    0 4px 6px rgba(20, 10, 50, 0.04),
    0 12px 24px rgba(20, 10, 50, 0.08),
    0 40px 80px rgba(95, 46, 234, 0.24);
  transform: scale(0.92) translateY(20px);
  transition: transform 0.4s cubic-bezier(0.34, 1.4, 0.64, 1);
}
.lc-overlay--in .lc-modal { transform: scale(1) translateY(0); }

/* Rainbow gradient accent strip — lives inside .lc-modal-inner so it is
   clipped by the inner's overflow:hidden and aligns perfectly with the
   inner's border-radius corners (no strip-vs-corner misalignment). */

/* Close × — floats at the top-right corner of the modal card, OUTSIDE the
   overflow:hidden inner grid so it is never clipped by border-radius. */
.lc-modal-close {
  position: absolute;
  top: -14px;
  right: -14px;
  z-index: 11;
  width: 34px; height: 34px;
  display: flex; align-items: center; justify-content: center;
  border: 1.5px solid rgba(0, 0, 0, 0.12);
  background: #fff;
  border-radius: 50%;
  color: var(--color-text-secondary, #575757);
  cursor: pointer; padding: 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.14);
  transition: background 0.15s, border-color 0.15s, transform 0.15s, box-shadow 0.15s;
  flex-shrink: 0;
}
.lc-modal-close:hover {
  background: #f5f5f5;
  border-color: rgba(0, 0, 0, 0.2);
  transform: scale(1.1);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.18);
}
.lc-modal-close:focus-visible { outline: 2px solid var(--color-primary, #5F2EEA); outline-offset: 2px; }

/* Two-column layout — owns the overflow clip so panels round correctly */
.lc-modal-inner {
  display: grid;
  grid-template-columns: 5fr 7fr;
  min-height: 520px;
  border-radius: var(--r-xl, 28px);
  overflow: hidden;
  position: relative;
  /* GPU compositing eliminates the jagged sub-pixel antialiasing that
     border-radius + overflow:hidden produces without hardware acceleration */
  transform: translateZ(0);
}
/* Rainbow strip sits inside the inner so it is clipped by overflow:hidden
   and perfectly follows the inner's border-radius corners */
.lc-modal-inner::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, #5F2EEA 0%, #7B4CF0 35%, #FF8A23 70%, #FFD23F 100%);
  z-index: 10;
  pointer-events: none;
}

/* ==========================================================================
   LEFT PANEL — brand gradient, matches site's .section-dark hero sections
   ========================================================================== */

.lc-modal-left {
  background: linear-gradient(160deg, #3D1CB0 0%, #5F2EEA 40%, #7B4CF0 80%, #6A3FD8 100%);
  padding: 52px 36px 44px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  /* no border-radius — parent .lc-modal overflow:hidden clips this */
  position: relative;
  overflow: hidden;
}

/* Dot-grid texture */
.lc-modal-left::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.09) 1px, transparent 1px);
  background-size: 22px 22px;
  pointer-events: none;
}

/* Glow blobs */
.lc-modal-left::after {
  content: '';
  position: absolute;
  width: 260px; height: 260px;
  background: radial-gradient(circle, rgba(255,210,63,0.22) 0%, transparent 70%);
  top: -60px; right: -60px;
  pointer-events: none;
}

.lc-modal-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,210,63,0.15);
  border: 1px solid rgba(255,210,63,0.35);
  border-radius: 999px;
  padding: 5px 14px;
  font-family: var(--font-body, 'Poppins', sans-serif);
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: #FFD23F;
  margin-bottom: 20px;
  width: fit-content;
  position: relative; z-index: 1;
}
.lc-modal-badge::before {
  content: '✦';
  font-size: 9px;
  opacity: 0.8;
}

.lc-modal-headline {
  margin: 0 0 10px;
  font-family: var(--font-display, 'Fredoka', sans-serif);
  font-size: 1.75rem; font-weight: 700;
  color: #fff;
  line-height: 1.18;
  position: relative; z-index: 1;
}

.lc-modal-subtitle {
  margin: 0 0 28px;
  font-size: 13.5px;
  color: rgba(255,255,255,0.75);
  line-height: 1.65;
  position: relative; z-index: 1;
}

/* Benefits list */
.lc-benefits {
  list-style: none;
  margin: 0 0 28px; padding: 0;
  position: relative; z-index: 1;
}
.lc-benefit {
  display: flex; align-items: center; gap: 10px;
  font-size: 13.5px; font-weight: 500;
  color: rgba(255,255,255,0.90);
  padding: 5px 0;
}
.lc-benefit svg { flex-shrink: 0; color: #FFD23F; }

/* Trust stats grid — 2×2 */
.lc-trust {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  position: relative; z-index: 1;
}
.lc-trust-item {
  display: flex;
  flex-direction: column;
  gap: 1px;
  border-radius: var(--r-md, 12px);
  padding: 12px 12px;
  border: 1px solid transparent;
}

/* Individual stat accent colors */
.lc-trust-item:nth-child(1) {   /* ⭐ 5.0 — gold */
  background: rgba(255, 210, 63, 0.14);
  border-color: rgba(255, 210, 63, 0.25);
}
.lc-trust-item:nth-child(2) {   /* 🎮 100+ — white tint */
  background: rgba(255, 255, 255, 0.10);
  border-color: rgba(255, 255, 255, 0.18);
}
.lc-trust-item:nth-child(3) {   /* ⚡ <24hr — orange */
  background: rgba(255, 138, 35, 0.14);
  border-color: rgba(255, 138, 35, 0.28);
}
.lc-trust-item:nth-child(4) {   /* 🔒 NDA — white tint */
  background: rgba(255, 255, 255, 0.10);
  border-color: rgba(255, 255, 255, 0.18);
}

.lc-trust-icon { font-size: 18px; margin-bottom: 4px; }

.lc-trust-item strong {
  display: block;
  font-family: var(--font-display, 'Fredoka', sans-serif);
  font-size: 1.35rem; font-weight: 700;
  color: #fff;
  line-height: 1;
}
.lc-trust-item span {
  font-size: 11px;
  color: rgba(255,255,255,0.7);
  line-height: 1.3;
}

/* ==========================================================================
   RIGHT PANEL — white, with form header + fields
   ========================================================================== */

.lc-modal-right {
  padding: 44px 40px 40px;
  /* no border-radius — parent clips; overflow-y: auto for tall forms on small screens */
  overflow-y: auto;
  max-height: 94vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 2;
  background: linear-gradient(180deg, rgba(95,46,234,0.03) 0%, #fff 90px);
  scrollbar-width: thin;
  scrollbar-color: rgba(95,46,234,.2) transparent;
}
.lc-modal-right::-webkit-scrollbar { width: 4px; }
.lc-modal-right::-webkit-scrollbar-thumb { background: rgba(95,46,234,.2); border-radius: 4px; }

/* ── FORM HEADER — gives the right panel identity ───────────────────────── */
.lc-rp-header { margin-bottom: 20px; }

.lc-rp-icon {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, rgba(95,46,234,0.12), rgba(123,76,240,0.08));
  border: 1px solid rgba(95,46,234,0.18);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  margin-bottom: 12px;
}

.lc-rp-title {
  margin: 0 0 5px;
  font-family: var(--font-display, 'Fredoka', sans-serif);
  font-size: 1.25rem; font-weight: 700;
  color: var(--color-text, #1A1A1A);
  line-height: 1.2;
}
.lc-rp-sub {
  margin: 0 0 14px;
  font-size: 13px;
  color: var(--color-text-secondary, #575757);
  line-height: 1.55;
}

/* Quick proof chips */
.lc-rp-chips {
  display: flex; gap: 7px; flex-wrap: wrap;
  margin-bottom: 20px;
}
.lc-rp-chip {
  font-size: 11.5px; font-weight: 600;
  color: var(--color-text, #1A1A1A);
  background: var(--color-surface, #F7F8FC);
  border: 1px solid var(--color-border, #E6E8EF);
  border-radius: 999px;
  padding: 4px 11px;
  white-space: nowrap;
}

/* Divider */
.lc-rp-divider {
  height: 1px;
  background: var(--color-border, #E6E8EF);
  margin-bottom: 20px;
}

/* ==========================================================================
   FORM FIELDS — matches site's .field pattern exactly
   ========================================================================== */

.lc-form { display: flex; flex-direction: column; }

.lc-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 14px;
  row-gap: 0;
  margin-bottom: 14px;
}
.lc-field--wide { grid-column: 1 / -1; }

.lc-field { margin-bottom: 14px; position: relative; }

/* Label — matches .field label */
.lc-label {
  display: block;
  font-size: 12.5px; font-weight: 600;
  margin-bottom: 6px;
  color: var(--color-text, #1A1A1A);
  font-family: var(--font-body, 'Poppins', sans-serif);
}
.lc-req { color: #E53E3E; margin-left: 2px; }

/* Input / Textarea / Select — matches .field input */
.lc-field input,
.lc-field textarea,
.lc-field select {
  display: block; width: 100%;
  height: 46px;
  border-radius: 10px;
  border: 1.5px solid var(--color-border, #E6E8EF);
  background: var(--color-surface, #F7F8FC);
  padding: 0 14px;
  font-size: 13.5px;
  font-family: var(--font-body, 'Poppins', sans-serif);
  color: var(--color-text, #1A1A1A);
  outline: none;
  transition: border-color 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  appearance: none; -webkit-appearance: none;
  cursor: text;
  position: relative; z-index: 1;
}
.lc-field select { cursor: pointer; }
.lc-field textarea {
  height: auto; min-height: 86px;
  padding: 12px 14px; resize: vertical; cursor: text;
}

/* Focus */
.lc-field input:focus,
.lc-field textarea:focus,
.lc-field select:focus {
  border-color: var(--color-primary, #5F2EEA);
  box-shadow: 0 0 0 3px rgba(95, 46, 234, 0.14);
  background: #fff;
}

/* Hover */
.lc-field input:hover:not(:focus),
.lc-field textarea:hover:not(:focus),
.lc-field select:hover:not(:focus) {
  border-color: rgba(95,46,234,0.3);
}

/* Select wrapper + custom arrow */
.lc-select-wrap { position: relative; display: block; }
.lc-select-wrap select { width: 100%; }
.lc-select-arrow {
  position: absolute;
  right: 12px; top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  color: var(--color-text-secondary, #575757);
  transition: transform 0.2s, color 0.15s;
  z-index: 2;
}
.lc-select-wrap select:focus ~ .lc-select-arrow {
  transform: translateY(-50%) rotate(180deg);
  color: var(--color-primary, #5F2EEA);
}

/* Error state */
.lc-field--error input,
.lc-field--error textarea,
.lc-field--error select {
  border-color: #E53E3E !important;
  box-shadow: 0 0 0 3px rgba(229, 62, 62, 0.12) !important;
  animation: lc-shake 0.3s ease;
}
.lc-field-err {
  display: block; font-size: 11.5px; font-weight: 500;
  color: #E53E3E; margin-top: 4px; min-height: 15px;
}
@keyframes lc-shake {
  0%,100% { transform: translateX(0); }
  25% { transform: translateX(-4px); }
  75% { transform: translateX(4px); }
}

/* Global error banner */
.lc-form-global-err {
  display: none;
  font-size: 13px; color: #C53030;
  background: #FFF5F5; border: 1px solid #FEB2B2;
  border-radius: 10px;
  padding: 10px 14px; margin-bottom: 14px;
}

/* ── SUBMIT BUTTON ───────────────────────────────────────────────────────── */
.lc-submit {
  position: relative;
  display: flex; align-items: center; justify-content: center; gap: 8px;
  width: 100%; height: 50px;
  background: linear-gradient(135deg, #5F2EEA 0%, #7B4CF0 60%, #8F5CF5 100%);
  color: #fff; border: none;
  border-radius: 12px;
  font-family: var(--font-body, 'Poppins', sans-serif);
  font-size: 15px; font-weight: 600;
  cursor: pointer; letter-spacing: 0.01em;
  box-shadow: 0 8px 24px rgba(95, 46, 234, 0.38), 0 2px 6px rgba(95, 46, 234, 0.2);
  transition: transform 0.18s, box-shadow 0.18s;
  overflow: hidden;
}

/* Shimmer sweep */
.lc-submit::before {
  content: '';
  position: absolute;
  top: 0; left: -100%; width: 60%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.18), transparent);
  transition: left 0.55s ease;
}
.lc-submit:hover::before { left: 160%; }
.lc-submit:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(95, 46, 234, 0.46), 0 4px 10px rgba(95, 46, 234, 0.22);
}
.lc-submit:active:not(:disabled) { transform: scale(0.98); }
.lc-submit:disabled { opacity: 0.72; cursor: not-allowed; }

.lc-submit-text { display: block; }
.lc-submit-loading {
  display: none; position: absolute; inset: 0;
  align-items: center; justify-content: center; background: inherit;
}
.lc-submit-loading svg { animation: lc-spin 0.9s linear infinite; }
.lc-submit.loading .lc-submit-text { visibility: hidden; }
.lc-submit.loading .lc-submit-loading { display: flex; }
@keyframes lc-spin { to { transform: rotate(360deg); } }

.lc-form-note {
  margin: 9px 0 0;
  font-size: 11.5px;
  color: var(--color-text-secondary, #575757);
  text-align: center; line-height: 1.5;
}

/* ── SUCCESS STATE ───────────────────────────────────────────────────────── */
.lc-success {
  display: none; flex-direction: column; align-items: center;
  text-align: center; padding: 24px 16px;
  opacity: 0; transform: scale(0.92) translateY(8px);
  transition: opacity 0.35s ease, transform 0.38s cubic-bezier(0.34, 1.4, 0.64, 1);
}
.lc-success--in {
  display: flex; opacity: 1; transform: scale(1) translateY(0);
}

.lc-success-icon {
  width: 72px; height: 72px; border-radius: 50%;
  background: linear-gradient(135deg, #5F2EEA, #7B4CF0);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px; color: #fff;
  box-shadow: 0 8px 28px rgba(95, 46, 234, 0.4);
  animation: lc-pop 0.45s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}
@keyframes lc-pop { from { transform: scale(0.4); opacity: 0; } to { transform: scale(1); opacity: 1; } }

.lc-success-heading {
  margin: 0 0 8px;
  font-family: var(--font-display, 'Fredoka', sans-serif);
  font-size: 1.8rem; font-weight: 700;
  color: var(--color-text, #1A1A1A);
}
.lc-success-msg {
  font-size: 14px; color: var(--color-text-secondary, #575757);
  line-height: 1.6; margin: 0 0 22px; max-width: 300px;
}
.lc-success-tags { display: flex; flex-direction: column; gap: 8px; width: 100%; max-width: 290px; }
.lc-success-tags span {
  display: block; font-size: 13px; color: #276749;
  background: #F0FFF4; border: 1px solid #C6F6D5;
  border-radius: 10px; padding: 8px 14px; font-weight: 500;
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 800px) {
  .lc-modal-inner { grid-template-columns: 1fr; }
  .lc-modal-left  { padding: 32px 24px 24px; }
  /* justify-content: flex-start so overflow content isn't pushed above the scroll area */
  .lc-modal-right { padding: 28px 22px 36px; max-height: none; justify-content: flex-start; }
  .lc-modal-headline { font-size: 1.4rem; }
  .lc-fields { grid-template-columns: 1fr; }
  .lc-field--wide { grid-column: 1; }
}

@media (max-width: 540px) {
  .lc-overlay { align-items: flex-end; padding: 0; }
  .lc-modal { border-radius: 22px 22px 0 0; max-height: 95vh; overflow-y: auto; overflow-x: hidden; }
  /* inner keeps its own clipping but matches the sheet's top-only radius */
  .lc-modal-inner { border-radius: 22px 22px 0 0; overflow: hidden; transform: translateZ(0); }
  .lc-modal-left  { padding: 24px 18px 18px; }
  /* right panel no longer clips independently — the modal scrolls as one unit */
  .lc-modal-right { padding: 18px 18px 30px; max-height: none; overflow-y: visible; justify-content: flex-start; }
  /* Close button moves inside on mobile bottom-sheet */
  .lc-modal-close { position: absolute; top: 12px; right: 12px; top: 12px; }
  .lc-benefits { display: none; }
  .lc-trust { grid-template-columns: 1fr 1fr; margin-bottom: 0; }
}

/* ==========================================================================
   LEVEL 3 — 7-DAY REMINDER CARD
   ========================================================================== */
.lc-reminder {
  position: fixed;
  bottom: 100px; right: 24px;
  z-index: 9000;
  background: var(--color-text, #1A1A1A);
  color: #fff;
  border-radius: var(--r-lg, 20px);
  padding: 14px 16px 14px 14px;
  max-width: 252px;
  box-shadow: 0 4px 6px rgba(0,0,0,.1), 0 12px 36px rgba(0,0,0,.24);
  display: flex; flex-direction: column; gap: 10px;
  transform: translateY(20px) scale(0.93);
  opacity: 0; pointer-events: none; transition: none;
}
.lc-reminder--in {
  transform: translateY(0) scale(1); opacity: 1; pointer-events: auto;
  transition: transform 0.38s cubic-bezier(0.34, 1.4, 0.64, 1), opacity 0.28s ease;
}
.lc-reminder-close {
  position: absolute; top: 9px; right: 9px;
  width: 20px; height: 20px; border: none;
  background: rgba(255,255,255,0.12); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.7); cursor: pointer; padding: 0;
  transition: background 0.15s;
}
.lc-reminder-close:hover { background: rgba(255,255,255,.22); }
.lc-reminder-heading {
  font-size: 13.5px; font-weight: 600;
  font-family: var(--font-body, 'Poppins', sans-serif);
  color: #fff; margin: 0; padding-right: 22px; line-height: 1.35;
}
.lc-reminder-cta {
  align-self: flex-start;
  padding: 7px 16px;
  background: var(--color-primary, #5F2EEA);
  color: #fff; border: none;
  border-radius: 10px;
  font-family: var(--font-body, 'Poppins', sans-serif);
  font-size: 13px; font-weight: 600; cursor: pointer;
  transition: background 0.15s, transform 0.15s;
}
.lc-reminder-cta:hover { background: #5027C9; transform: scale(1.03); }

@media (max-width: 480px) {
  .lc-reminder { left: 12px; right: 12px; max-width: none; bottom: 84px; }
}

/* ==========================================================================
   CONFETTI CANVAS
   ========================================================================== */
.lc-confetti { position: fixed; inset: 0; z-index: 99999; pointer-events: none; }

/* ==========================================================================
   REDUCED MOTION
   ========================================================================== */
@media (prefers-reduced-motion: reduce) {
  .lc-widget, .lc-widget--in, .lc-widget--out,
  .lc-overlay, .lc-overlay--in .lc-modal,
  .lc-reminder, .lc-reminder--in,
  .lc-success, .lc-success--in { transition: none !important; animation: none !important; }
  .lc-widget--in { opacity: 1; transform: none; pointer-events: auto; }
  .lc-widget--out { opacity: 0; pointer-events: none; }
  .lc-submit::before { display: none; }
}
