/* Contact Your MP — Campaign Page Styles */

/* ── Main ── */
.cmp-main {
  background: var(--bg-primary);
  min-height: 100vh;
}

/* ── Hero ── */
.cmp-hero {
  position: relative;
  overflow: hidden;
  padding: 7rem 0 4rem;
  background: linear-gradient(160deg, #1a1a2e 0%, #16213e 40%, #0f3460 70%, #e94560 100%);
  color: #fff;
  text-align: center;
}

[data-theme="dark"] .cmp-hero {
  background: linear-gradient(160deg, #0a0a14 0%, #0d1525 40%, #0a2540 70%, #b71c4e 100%);
}

.cmp-hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.cmp-hero-circle {
  position: absolute;
  border-radius: 50%;
}

.cmp-hero-circle--1 {
  width: 500px;
  height: 500px;
  top: -200px;
  right: -100px;
  background: radial-gradient(circle, rgba(233, 69, 96, 0.3) 0%, transparent 70%);
  animation: cmp-float 8s ease-in-out infinite;
}

.cmp-hero-circle--2 {
  width: 400px;
  height: 400px;
  bottom: -150px;
  left: -100px;
  background: radial-gradient(circle, rgba(15, 52, 96, 0.5) 0%, transparent 70%);
  animation: cmp-float 6s ease-in-out infinite reverse;
}

.cmp-hero-circle--3 {
  width: 200px;
  height: 200px;
  top: 30%;
  left: 15%;
  background: radial-gradient(circle, rgba(233, 69, 96, 0.15) 0%, transparent 70%);
  animation: cmp-float 10s ease-in-out infinite 2s;
}

@keyframes cmp-float {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-20px) scale(1.05); }
}

.cmp-hero-content {
  position: relative;
  z-index: 1;
  max-width: 640px;
  margin: 0 auto;
  padding: 0 1rem;
}

.cmp-hero-badge {
  display: inline-block;
  background: rgba(233, 69, 96, 0.8);
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  padding: 0.35rem 1rem;
  border-radius: 9999px;
  margin-bottom: 1.25rem;
  border: 1px solid rgba(233, 69, 96, 0.6);
  box-shadow: 0 0 20px rgba(233, 69, 96, 0.3);
}

.cmp-hero-title {
  font-size: 2.75rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #fff 0%, #ffd6d6 50%, #fff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
}

.cmp-hero-subtitle {
  font-size: 1.0625rem;
  line-height: 1.65;
  opacity: 0.9;
  margin-bottom: 1.25rem;
  max-width: 520px;
  margin-inline: auto;
}

.cmp-hero-actions {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Hero quote */
.cmp-hero-quote {
  font-size: 0.9375rem;
  font-style: italic;
  opacity: 0.85;
  margin-bottom: 1.5rem;
  padding: 0.75rem 1.25rem;
  border-inline-start: 3px solid rgba(255,255,255,0.5);
  max-width: 440px;
  margin-inline: auto;
  text-align: start;
  line-height: 1.6;
}

/* ── Buttons ── */
.cmp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.65rem 1.5rem;
  font-size: 0.9375rem;
  font-weight: 600;
  border: none;
  border-radius: 9999px;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  min-height: 44px;
  font-family: inherit;
}

.cmp-btn:hover { transform: translateY(-2px); }
.cmp-btn:active { transform: translateY(0); }

.cmp-btn--primary {
  background: #e94560;
  color: #fff;
  box-shadow: 0 4px 20px rgba(233, 69, 96, 0.4);
}

.cmp-btn--primary:hover {
  box-shadow: 0 6px 28px rgba(233, 69, 96, 0.55);
}

.cmp-btn--secondary {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(4px);
}

.cmp-btn--secondary:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.5);
}

/* Outside hero — use theme colors */
.cmp-find .cmp-btn--primary,
.cmp-petitions .cmp-btn--secondary {
  background: #e94560;
  color: #fff;
  box-shadow: 0 4px 16px rgba(233, 69, 96, 0.3);
}

.cmp-petitions .cmp-btn--secondary {
  border-color: #e94560;
  background: transparent;
  color: #e94560;
}

.cmp-petitions .cmp-btn--secondary:hover {
  background: #e94560;
  color: #fff;
}

.cmp-btn--accent {
  background: var(--secondary-color);
  color: #fff;
  box-shadow: 0 4px 16px rgba(76, 175, 80, 0.3);
}

.cmp-btn--accent:hover {
  box-shadow: 0 6px 24px rgba(76, 175, 80, 0.4);
}

.cmp-btn--accent.cmp-btn--done {
  background: var(--bg-secondary);
  color: var(--text-secondary);
  box-shadow: none;
  cursor: default;
  pointer-events: none;
}

/* ── Section Headers ── */
.cmp-section-header {
  text-align: center;
  margin-bottom: 2rem;
}

.cmp-section-step {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #e94560;
  color: #fff;
  font-size: 0.8125rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.cmp-section-header h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
}

.cmp-section-header p {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  max-width: 520px;
  margin-inline: auto;
  line-height: 1.6;
}

/* ── 3-Step Flow ── */
.cmp-steps {
  padding: 1.5rem 0;
  background: var(--bg-primary);
}

.cmp-steps-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.cmp-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
}

.cmp-step-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--bg-secondary);
  color: #e94560;
  border: 2px solid var(--border-color);
}

.cmp-step-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.cmp-step-arrow {
  font-size: 1rem;
  color: var(--border-color);
  margin-top: -1rem;
}

/* ── Counter ── */
.cmp-counter {
  padding: 0 0 2.5rem;
  position: relative;
  z-index: 2;
}

.cmp-counter-card {
  max-width: 480px;
  margin: 0 auto;
  text-align: center;
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 2rem 1.5rem;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

.cmp-counter-number {
  font-size: 3.5rem;
  font-weight: 800;
  color: #e94560;
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 0.25rem;
  font-variant-numeric: tabular-nums;
  position: relative;
  z-index: 1;
}

.cmp-counter-label {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  margin-bottom: 1rem;
}

/* Counter ripple */
.cmp-counter-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -60%);
  width: 120px;
  height: 120px;
  pointer-events: none;
}

.cmp-counter-ripple {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid #e94560;
  opacity: 0;
  animation: cmp-ripple 3s ease-out infinite;
}

.cmp-counter-ripple--2 {
  animation-delay: 1.5s;
}

@keyframes cmp-ripple {
  0% { transform: scale(0.8); opacity: 0.4; }
  100% { transform: scale(2.2); opacity: 0; }
}

/* Counter goal progress */
.cmp-counter-goal {
  margin-bottom: 1rem;
  width: 100%;
  max-width: 280px;
  margin-inline: auto;
}

.cmp-counter-progress {
  width: 100%;
  height: 6px;
  background: var(--bg-secondary);
  border-radius: 9999px;
  overflow: hidden;
  margin-bottom: 0.35rem;
}

.cmp-counter-progress-bar {
  height: 100%;
  background: linear-gradient(90deg, #e94560, var(--secondary-color));
  border-radius: 9999px;
  transition: width 0.8s ease;
}

.cmp-counter-goal-text {
  font-size: 0.75rem;
  color: var(--text-secondary);
}

.cmp-counter-sub {
  font-size: 0.75rem;
  color: var(--text-secondary);
  margin-top: 0.75rem;
  opacity: 0.8;
}

/* ── Find MP ── */
.cmp-find {
  padding: 3rem 0;
}

.cmp-find-form {
  max-width: 440px;
  margin: 0 auto 1.5rem;
}

.cmp-find-input-wrap {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.cmp-find-input {
  flex: 1;
  min-width: 0;
  padding: 0.65rem 1rem;
  font-size: 1rem;
  font-family: inherit;
  border: 2px solid var(--border-color);
  border-radius: 12px;
  background: var(--input-bg);
  color: var(--text-primary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: border-color 0.2s ease;
  min-height: 44px;
}

.cmp-find-input:focus {
  outline: none;
  border-color: var(--primary-color);
}

.cmp-find-input::placeholder {
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-secondary);
  opacity: 0.6;
}

.cmp-find-btn {
  border-radius: 12px;
  padding: 0.65rem 1.25rem;
  flex-shrink: 0;
}

@media (max-width: 400px) {
  .cmp-find-input {
    width: 100%;
  }
  .cmp-find-btn {
    width: 100%;
  }
}

.cmp-find-error {
  font-size: 0.8125rem;
  color: var(--error-text);
  margin-top: 0.5rem;
  min-height: 1.2em;
}

/* ── MP Card ── */
.cmp-mp-card {
  max-width: 560px;
  margin: 0 auto;
  display: flex;
  gap: 1.25rem;
  align-items: center;
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 1.25rem;
  box-shadow: var(--shadow-md);
  animation: cmp-fadeIn 0.4s ease both;
}

.cmp-mp-photo-wrap {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--bg-secondary);
  border: 3px solid #e94560;
}

.cmp-mp-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cmp-mp-info { flex: 1; min-width: 0; }

.cmp-mp-name {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.15rem;
}

.cmp-mp-party {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--primary-color);
  margin-bottom: 0.1rem;
}

.cmp-mp-district {
  font-size: 0.75rem;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

.cmp-mp-contacts {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.cmp-mp-contact {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.75rem;
  color: var(--text-secondary);
  text-decoration: none;
  padding: 0.25rem 0.5rem;
  border-radius: 8px;
  background: var(--bg-secondary);
  transition: color 0.2s ease, background 0.2s ease;
}

.cmp-mp-contact:hover {
  color: #e94560;
  background: var(--bg-accent);
}

.cmp-mp-contact svg { flex-shrink: 0; }

/* ── Spinner ── */
.cmp-mp-loading {
  text-align: center;
  padding: 2rem;
}

.cmp-spinner {
  width: 32px;
  height: 32px;
  border: 3px solid var(--border-color);
  border-top-color: var(--primary-color);
  border-radius: 50%;
  margin: 0 auto;
  animation: cmp-spin 0.7s linear infinite;
}

@keyframes cmp-spin {
  to { transform: rotate(360deg); }
}

/* ── Tabs ── */
.cmp-templates {
  padding: 3rem 0;
  background: var(--bg-secondary);
}

.cmp-tabs {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.cmp-tab {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 600;
  font-family: inherit;
  border: 2px solid var(--border-color);
  border-radius: 9999px;
  background: var(--card-bg);
  color: var(--text-secondary);
  cursor: pointer;
  transition: all 0.2s ease;
  min-height: 44px;
}

.cmp-tab:hover {
  border-color: #e94560;
  color: #e94560;
}

.cmp-tab--active {
  background: #e94560;
  color: #fff;
  border-color: #e94560;
}

.cmp-tab--active:hover {
  color: #fff;
}

/* ── Panels ── */
.cmp-panel {
  display: none;
  max-width: 640px;
  margin: 0 auto;
  animation: cmp-fadeIn 0.3s ease both;
}

.cmp-panel--active { display: block; }

/* ── Template Picker Chips ── */
.cmp-template-picker {
  margin-bottom: 1rem;
  text-align: center;
}

.cmp-template-picker label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

.cmp-template-chips {
  display: flex;
  justify-content: center;
  gap: 0.4rem;
  flex-wrap: wrap;
}

.cmp-chip {
  padding: 0.35rem 0.9rem;
  font-size: 0.8125rem;
  font-weight: 500;
  font-family: inherit;
  border: 1.5px solid var(--border-color);
  border-radius: 9999px;
  background: var(--card-bg);
  color: var(--text-secondary);
  cursor: pointer;
  transition: all 0.2s ease;
}

.cmp-chip:hover {
  border-color: #e94560;
  color: #e94560;
}

.cmp-chip--active {
  background: #e94560;
  color: #fff;
  border-color: #e94560;
}

/* ── Template Box ── */
.cmp-template-box {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  overflow: hidden;
}

.cmp-template-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.6rem 1rem;
  background: var(--bg-accent);
  border-bottom: 1px solid var(--border-color);
}

.cmp-template-label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-secondary);
}

.cmp-copy-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.25rem 0.6rem;
  font-size: 0.75rem;
  font-weight: 600;
  font-family: inherit;
  border: 1px solid var(--border-color);
  border-radius: 6px;
  background: var(--card-bg);
  color: var(--text-secondary);
  cursor: pointer;
  transition: all 0.2s ease;
}

.cmp-copy-btn:hover {
  border-color: #e94560;
  color: #e94560;
}

.cmp-copy-btn--copied {
  border-color: var(--secondary-color);
  color: var(--secondary-color);
}

.cmp-template-subject {
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-primary);
  border-bottom: 1px solid var(--border-color);
  direction: ltr;
  text-align: left;
}

.cmp-template-body {
  padding: 1rem;
  font-size: 0.875rem;
  line-height: 1.7;
  color: var(--text-primary);
  white-space: pre-wrap;
  direction: ltr;
  text-align: left;
}

.cmp-template-tip {
  display: flex;
  align-items: flex-start;
  gap: 0.4rem;
  margin-top: 0.75rem;
  font-size: 0.8125rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.cmp-template-tip svg {
  flex-shrink: 0;
  margin-top: 0.15rem;
}

/* ── Talking Points ── */
.cmp-points {
  padding: 3rem 0;
}

.cmp-points-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  max-width: 720px;
  margin: 0 auto;
}

.cmp-point-card {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 1.25rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cmp-point-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.cmp-point-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  margin-bottom: 0.75rem;
  color: #fff;
}

.cmp-point-icon--delay { background: linear-gradient(135deg, #ff9800, #f57c00); }
.cmp-point-icon--lock { background: linear-gradient(135deg, #e53935, #c62828); }
.cmp-point-icon--shield { background: linear-gradient(135deg, #7b1fa2, #6a1b9a); }
.cmp-point-icon--action { background: linear-gradient(135deg, #2e7d32, #1b5e20); }

.cmp-point-card h3 {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.35rem;
}

.cmp-point-card p {
  font-size: 0.8125rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ── Rally Photo ── */
.cmp-rally-section {
  padding: 3rem 0;
  background: var(--bg-secondary);
}

.cmp-rally-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  max-width: 900px;
  margin: 0 auto;
}

.cmp-rally {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.cmp-rally-img-wrap {
  position: relative;
  line-height: 0;
  height: 240px;
}

.cmp-rally-img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

@media (min-width: 640px) {
  .cmp-rally-img-wrap {
    height: 280px;
  }
}

.cmp-rally-caption {
  font-size: 0.8125rem;
  color: var(--text-secondary);
  text-align: center;
  padding: 0.75rem 1rem;
  background: var(--card-bg);
  border-top: 1px solid var(--border-color);
  line-height: 1.5;
  font-weight: 500;
}

.cmp-rally-tagline {
  text-align: center;
  font-size: 0.9375rem;
  font-style: italic;
  color: var(--text-secondary);
  margin-top: 1rem;
  line-height: 1.5;
}

@media (min-width: 640px) {
  .cmp-rally-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* ── Share / Multiply ── */
.cmp-share {
  padding: 3rem 0;
  background: var(--bg-secondary);
}

.cmp-share-card {
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
  background: linear-gradient(160deg, #1a1a2e 0%, #16213e 50%, #e94560 100%);
  border: none;
  border-radius: 16px;
  padding: 2.5rem 1.5rem;
  box-shadow: 0 8px 32px rgba(233, 69, 96, 0.2);
  color: #fff;
}

[data-theme="dark"] .cmp-share-card {
  background: linear-gradient(160deg, #0a0a14 0%, #0d1525 50%, #b71c4e 100%);
}

.cmp-share-megaphone {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
  animation: cmp-shake 2s ease-in-out infinite;
}

@keyframes cmp-shake {
  0%, 100% { transform: rotate(0deg); }
  10% { transform: rotate(-8deg); }
  20% { transform: rotate(8deg); }
  30% { transform: rotate(-4deg); }
  40%, 100% { transform: rotate(0deg); }
}

.cmp-share-icon {
  color: rgba(255,255,255,0.9);
  margin-bottom: 0.75rem;
}

.cmp-share-card h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.5rem;
}

.cmp-share-big {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.cmp-share-sub {
  font-size: 0.9375rem;
  opacity: 0.85;
  margin-bottom: 1.25rem;
  line-height: 1.6;
}

.cmp-share-buttons {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.cmp-share-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 1rem;
  font-size: 0.8125rem;
  font-weight: 600;
  font-family: inherit;
  border: 1.5px solid rgba(255,255,255,0.35);
  border-radius: 10px;
  background: rgba(255,255,255,0.12);
  color: #fff;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s ease;
  min-height: 40px;
  backdrop-filter: blur(4px);
}

.cmp-share-btn:hover {
  transform: translateY(-1px);
  background: rgba(255,255,255,0.25);
  border-color: rgba(255,255,255,0.6);
}

.cmp-share-btn--whatsapp:hover { background: #25d366; border-color: #25d366; }
.cmp-share-btn--telegram:hover { background: #0088cc; border-color: #0088cc; }
.cmp-share-btn--x:hover { background: #000; border-color: #000; }
.cmp-share-btn--copy:hover { background: rgba(255,255,255,0.25); }

/* ── Petitions ── */
.cmp-petitions {
  padding: 3rem 0;
}

.cmp-petitions-card {
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
  padding: 1.5rem;
  border: 2px dashed var(--border-color);
  border-radius: 16px;
}

.cmp-petitions-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.35rem;
}

.cmp-petitions-card p {
  font-size: 0.875rem;
  color: var(--text-secondary);
  margin-bottom: 1rem;
  line-height: 1.5;
}

/* ── Animations ── */
@keyframes cmp-fadeIn {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ── Desktop (768px+) ── */
@media (min-width: 768px) {
  .cmp-hero {
    padding: 9rem 0 5rem;
  }

  .cmp-hero-title {
    font-size: 3.75rem;
  }

  .cmp-hero-subtitle {
    font-size: 1.1875rem;
  }

  .cmp-counter-number { font-size: 4rem; }

  .cmp-find,
  .cmp-points,
  .cmp-share {
    padding: 4rem 0;
  }

  .cmp-section-header h2 { font-size: 1.75rem; }

  .cmp-points-grid {
    grid-template-columns: 1fr 1fr;
  }

  .cmp-mp-card {
    padding: 1.5rem;
    gap: 1.5rem;
  }

  .cmp-mp-photo-wrap {
    width: 96px;
    height: 96px;
  }

  .cmp-templates { padding: 4rem 0; }
}

/* ── Reduced motion ── */
@media (prefers-reduced-motion: reduce) {
  .cmp-hero-circle { animation: none; }
  .cmp-spinner { animation-duration: 1.5s; }
  .cmp-mp-card,
  .cmp-panel { animation: none; }
  .cmp-btn:hover { transform: none; }
  .cmp-share-btn:hover { transform: none; }
  .cmp-counter-ripple { animation: none; }
  .cmp-share-megaphone { animation: none; }
}
