/* bessere-leads.de — Create®-inspired, WLA monochrome */

:root {
  --bg: #fafaf8;
  --ink: #0a0a0a;
  --gray: #75736c;
  --line: #e4e3dd;
  --card: #ffffff;
  --inv-bg: #0c0c0b;
  --inv-text: #f5f4f0;
  --inv-gray: #8c8a83;
  --inv-line: #2a2a27;
  --font-display: "Inter Tight", system-ui, sans-serif;
  --font-body: "Inter", system-ui, sans-serif;
  --font-mono: "IBM Plex Mono", ui-monospace, monospace;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --radius: 18px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img, video { max-width: 100%; }
a { color: inherit; }
.wrap { max-width: 1240px; margin: 0 auto; padding: 0 28px; }

/* ---- type ---- */
.display-hero {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(36px, 4.4vw, 62px);
  line-height: 0.98;
  letter-spacing: -0.035em;
}
.display-hero .caps { letter-spacing: -0.01em; }
.hero .display-hero { text-align: center; }
.display-lg {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(38px, 5.4vw, 72px);
  line-height: 1.0;
  letter-spacing: -0.035em;
}
.display-md {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.02;
  letter-spacing: -0.03em;
}
.mono-label {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gray);
}
.mono-label.inv { color: var(--inv-gray); }
.mono-sm { font-family: var(--font-mono); font-size: 12px; }
.marker {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--gray);
  letter-spacing: 0.06em;
}
.marker.inv { color: var(--inv-gray); }
.lead-muted { color: var(--gray); font-size: 17px; max-width: 560px; }

/* ---- buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-decoration: none;
  padding: 15px 26px;
  border-radius: 999px;
  border: 1px solid var(--ink);
  transition: background 0.25s var(--ease), color 0.25s var(--ease), transform 0.25s var(--ease);
}
.btn-ink { background: var(--ink); color: var(--bg); }
.btn-ink:hover { background: transparent; color: var(--ink); transform: translateY(-2px); }
.btn-ghost { background: transparent; color: var(--ink); }
.btn-ghost:hover { background: var(--ink); color: var(--bg); transform: translateY(-2px); }
.btn-lg { padding: 19px 34px; font-size: 13px; }
a:focus-visible, button:focus-visible { outline: 2px solid var(--ink); outline-offset: 3px; }

/* ---- orange hero CTA: backlit layered glass ---- */
.btn-cta {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.005em;
  color: #fff;
  text-shadow: 0 1px 2px rgba(160, 60, 0, 0.22);
  text-decoration: none;
  padding: 16px 58px;
  border-radius: 14px;
  background: linear-gradient(165deg, #ff8e2e, #f55f00);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.45),
    inset 0 0 0 1px rgba(255, 255, 255, 0.12),
    0 0 28px rgba(255, 122, 26, 0.34),
    0 9px 20px -10px rgba(200, 75, 0, 0.5);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
/* Lichtspiel: 5 Lichtkegel als echte Elemente.
   Jeder Kegel hat eigene Groesse, Schaerfe, Bahn und Geschwindigkeit.
   Unterschiedliche Dauern = die Kombinationen wiederholen sich praktisch nie. */
.btn-cta-label { position: relative; z-index: 2; }
.btn-cta .lk {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
  will-change: transform;
}
.lk1 {
  width: 190px; height: 190px;
  left: -40px; top: -70px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.34) 0%, rgba(255, 255, 255, 0) 70%);
  animation: lkA 9s ease-in-out infinite;
}
.lk2 {
  width: 130px; height: 130px;
  right: -30px; top: -40px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.30) 0%, rgba(255, 255, 255, 0) 65%);
  animation: lkB 7s ease-in-out infinite;
}
.lk3 {
  width: 80px; height: 80px;
  left: 30%; bottom: -50px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.38) 0%, rgba(255, 255, 255, 0) 58%);
  animation: lkC 6s ease-in-out infinite;
}
.lk4 {
  width: 46px; height: 46px;
  left: 12%; top: -10px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.5) 0%, rgba(255, 255, 255, 0.4) 30%, rgba(255, 255, 255, 0) 55%);
  animation: lkD 5s ease-in-out infinite;
}
.lk5 {
  width: 26px; height: 26px;
  right: 18%; bottom: -6px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.6) 0%, rgba(255, 255, 255, 0) 50%);
  animation: lkE 4.2s ease-in-out infinite;
}
@keyframes lkA {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(150px, 60px); }
}
@keyframes lkB {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(-130px, 55px); }
}
@keyframes lkC {
  0%, 100% { transform: translate(0, 0); }
  33% { transform: translate(60px, -45px); }
  66% { transform: translate(-50px, -20px); }
}
@keyframes lkD {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(110px, 35px); }
}
@keyframes lkE {
  0%, 100% { transform: translate(0, 0); }
  40% { transform: translate(-70px, -30px); }
  70% { transform: translate(-30px, -45px); }
}
.btn-cta:hover {
  transform: translateY(-1px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.5),
    inset 0 0 0 1px rgba(255, 255, 255, 0.14),
    0 0 36px rgba(255, 122, 26, 0.42),
    0 13px 24px -12px rgba(200, 75, 0, 0.55);
}
.btn-cta:focus-visible { outline: 2px solid #e85d00; outline-offset: 3px; }

/* ---- nav ---- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 60;
  background: rgba(250, 250, 248, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  transition: transform 0.4s var(--ease);
}
.nav.hidden { transform: translateY(-100%); }
.nav-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 28px;
  height: 68px;
  display: flex;
  align-items: center;
  gap: 36px;
}
.brand {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-decoration: none;
}
.brand sup { font-size: 8px; }
.nav-links { display: flex; gap: 26px; margin-left: auto; }
.nav-links a {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-decoration: none;
  color: var(--gray);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--ink); }
.nav-cta {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-decoration: none;
  border: 1px solid var(--ink);
  border-radius: 999px;
  padding: 9px 18px;
  transition: background 0.25s var(--ease), color 0.25s var(--ease);
}
.nav-cta:hover { background: var(--ink); color: var(--bg); }
.menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 8px;
  margin-left: auto;
}
.menu-btn span { width: 22px; height: 2px; background: var(--ink); transition: transform 0.3s var(--ease); }
.mobile-menu {
  position: fixed;
  inset: 68px 0 auto 0;
  z-index: 55;
  background: var(--bg);
  border-bottom: 1px solid var(--line);
  display: none;
  flex-direction: column;
  padding: 18px 28px 26px;
  gap: 16px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.12em;
  text-decoration: none;
}

/* ---- hero ---- */
.hero { padding: 130px 0 24px; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 56px;
  align-items: center;
}
.hero-sub { font-size: 17px; line-height: 1.6; max-width: 460px; margin-top: 26px; color: var(--gray); }
.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 30px; }
.time-box {
  display: inline-flex;
  align-items: baseline;
  gap: 14px;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 10px 16px;
  background: var(--card);
  margin-top: 34px;
}
.time { font-family: var(--font-mono); font-size: 19px; font-weight: 500; letter-spacing: 0.04em; }

/* word reveal */
.reveal-words .w { display: inline-block; overflow: hidden; vertical-align: bottom; }
.reveal-words .w > span {
  display: inline-block;
  transform: translateY(110%);
  animation: wordUp 0.85s var(--ease) forwards;
}
.reveal-words .w:nth-child(1) > span { animation-delay: 0.04s; }
.reveal-words .w:nth-child(2) > span { animation-delay: 0.09s; }
.reveal-words .w:nth-child(3) > span { animation-delay: 0.14s; }
.reveal-words .w:nth-child(4) > span { animation-delay: 0.19s; }
.reveal-words .w:nth-child(5) > span { animation-delay: 0.24s; }
.reveal-words .w:nth-child(6) > span { animation-delay: 0.29s; }
.reveal-words .w:nth-child(7) > span { animation-delay: 0.34s; }
.reveal-words .w:nth-child(8) > span { animation-delay: 0.39s; }
.reveal-words .w:nth-child(9) > span { animation-delay: 0.44s; }
@keyframes wordUp { to { transform: translateY(0); } }

/* showreel (hero video) */
.showreel-frame {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--ink);
  border: 1px solid var(--line);
  box-shadow: 0 32px 80px -42px rgba(10, 10, 10, 0.4);
}
.showreel-frame video { display: block; width: 100%; height: auto; }
.vid-sound {
  position: absolute;
  right: 16px;
  bottom: 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 18px;
  border-radius: 999px;
  background: rgba(10, 10, 10, 0.72);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.28);
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  cursor: pointer;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: background 0.2s var(--ease), transform 0.2s var(--ease);
}
.vid-sound:hover { background: var(--ink); transform: translateY(-1px); }
.vid-sound:focus-visible { outline: 2px solid #fff; outline-offset: 2px; }

/* ---- marquee ---- */
.marquee-band {
  margin-top: 70px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  padding: 20px 0;
  background: var(--card);
}
.marquee-track {
  display: flex;
  gap: 44px;
  width: max-content;
  animation: marquee 30s linear infinite;
}
.marquee-track span {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.16em;
  white-space: nowrap;
}
.marquee-track i { font-style: normal; color: var(--gray); margin-left: 44px; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---- sections ---- */
.section { padding: 110px 0; }
.section-line { border-top: 1px solid var(--line); }
.section-head { margin-bottom: 64px; }
.section-head .marker { margin-bottom: 14px; }
.section-head .mono-label { display: block; margin-bottom: 18px; }
.section-head .lead-muted { margin-top: 20px; }

/* ---- stats ---- */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--ink);
}
.stat {
  padding: 34px 26px 30px 0;
  border-right: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.stat:last-child { border-right: 0; }
.stat + .stat { padding-left: 26px; }
.stat-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(44px, 5.6vw, 76px);
  line-height: 1;
  letter-spacing: -0.03em;
}
.stat-label { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.14em; color: var(--gray); }
.stat .marker { margin-top: auto; }

/* ---- services ---- */
.service-row {
  display: grid;
  grid-template-columns: 150px 110px 1fr;
  gap: 32px;
  padding: 46px 0;
  border-top: 1px solid var(--line);
  align-items: start;
}
.service-row:last-child { border-bottom: 1px solid var(--line); }
.service-num {
  font-family: var(--font-mono);
  font-size: 15px;
  color: var(--gray);
}
.service-body h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(26px, 3vw, 38px);
  letter-spacing: -0.025em;
  margin-bottom: 12px;
}
.service-body > p { color: var(--gray); max-width: 560px; margin-bottom: 22px; }
.service-body ul { list-style: none; }
.service-body li {
  display: flex;
  gap: 14px;
  padding: 11px 0;
  border-top: 1px solid var(--line);
  font-size: 15px;
}
.service-body li i { font-style: normal; font-family: var(--font-mono); color: var(--gray); }

/* ---- process ---- */
.process-panel {
  background: var(--inv-bg);
  color: var(--inv-text);
  border-radius: 26px;
  padding: clamp(36px, 5vw, 70px);
}
.process-head {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 40px;
  align-items: end;
  margin-bottom: 56px;
}
.process-head .marker { margin-bottom: 14px; }
.process-head .mono-label { display: block; margin-bottom: 16px; }
.process-sub { color: var(--inv-gray); font-size: 16px; }
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--inv-line);
}
.process-step {
  padding: 30px 24px 6px 0;
  border-right: 1px solid var(--inv-line);
}
.process-step:last-child { border-right: 0; }
.process-step + .process-step { padding-left: 24px; }
.process-step h3 {
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.12em;
  margin: 16px 0 12px;
}
.process-step p { color: var(--inv-gray); font-size: 14.5px; }

/* ---- faq ---- */
.faq-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 60px; }
.faq-grid .section-head { margin-bottom: 0; }
.faq-item { border-top: 1px solid var(--line); }
.faq-item:last-child { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  background: none;
  border: 0;
  text-align: left;
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 600;
  padding: 22px 2px;
  cursor: pointer;
  color: var(--ink);
}
.faq-icon {
  font-family: var(--font-mono);
  font-size: 18px;
  color: var(--gray);
  transition: transform 0.3s var(--ease);
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s var(--ease); }
.faq-a p { color: var(--gray); padding: 0 2px 22px; max-width: 540px; }

/* ---- cta ---- */
.cta-block {
  border: 1px solid var(--ink);
  border-radius: 26px;
  padding: clamp(36px, 5vw, 70px);
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 44px;
  align-items: end;
  background: var(--card);
}
.cta-block .mono-label { display: block; margin-bottom: 18px; }
.cta-side { display: flex; flex-direction: column; gap: 24px; align-items: flex-end; }
.cta-meta { text-align: right; display: flex; flex-direction: column; gap: 6px; }
.cta-avail { font-family: var(--font-display); font-weight: 700; font-size: 20px; letter-spacing: -0.02em; }

/* ---- footer ---- */
.footer {
  background: var(--inv-bg);
  color: var(--inv-text);
  padding: 90px 0 36px;
  margin-top: 110px;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 36px;
  padding-bottom: 70px;
}
.footer-col { display: flex; flex-direction: column; gap: 12px; }
.footer-col .mono-label { margin-bottom: 8px; }
.footer-col a {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-decoration: none;
  color: var(--inv-text);
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--inv-gray); }
.footer-line { font-size: 13px; color: var(--inv-gray); line-height: 1.7; }
.dot {
  display: inline-block;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #fff;
  margin-right: 8px;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse { 50% { opacity: 0.35; } }
.footer-wordmark {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(54px, 11.5vw, 168px);
  line-height: 0.95;
  letter-spacing: -0.045em;
  border-top: 1px solid var(--inv-line);
  padding-top: 50px;
  white-space: nowrap;
  overflow: hidden;
}
.footer-base {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  border-top: 1px solid var(--inv-line);
  margin-top: 50px;
  padding-top: 26px;
  font-size: 13px;
  color: var(--inv-gray);
}

/* ---- legal pages ---- */
.legal { max-width: 760px; margin: 0 auto; padding: 150px 28px 110px; }
.legal h1 { margin-bottom: 40px; }
.legal h2 { font-family: var(--font-display); font-weight: 700; font-size: 24px; letter-spacing: -0.02em; margin: 44px 0 14px; }
.legal h3 { font-size: 16px; font-weight: 600; margin: 26px 0 8px; }
.legal p { color: var(--gray); margin-bottom: 12px; }
.legal a { color: var(--ink); }
.back-link {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-decoration: none;
  display: inline-block;
  margin-bottom: 34px;
}

/* ---- reveal on scroll ---- */
.fx {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
  transition-delay: var(--d, 0s);
}
.fx.in { opacity: 1; transform: translateY(0); }

/* ---- responsive ---- */
@media (max-width: 1000px) {
  .hero-grid { grid-template-columns: 1fr; gap: 28px; }
  .hero-left { display: contents; }
  .display-hero { order: 1; }
  .hero-grid .showreel { order: 2; }
  .hero-sub { order: 3; margin-top: 4px; }
  .hero-ctas { order: 4; margin-top: 6px; }
  .time-box { order: 5; margin-top: 4px; }
  .stats { grid-template-columns: 1fr 1fr; }
  .stat { border-right: 0; border-bottom: 1px solid var(--line); padding-left: 0 !important; }
  .process-head { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr 1fr; }
  .process-step { border-right: 0; border-bottom: 1px solid var(--inv-line); padding-left: 0 !important; padding-bottom: 26px; }
  .faq-grid { grid-template-columns: 1fr; gap: 40px; }
  .cta-block { grid-template-columns: 1fr; align-items: start; }
  .cta-side { align-items: flex-start; }
  .cta-meta { text-align: left; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .service-row { grid-template-columns: 110px 1fr; }
  .service-row .tag { grid-column: 1 / -1; }
}
@media (max-width: 680px) {
  .nav-links, .nav-cta { display: none; }
  .menu-btn { display: flex; }
  .hero { padding-top: 110px; }
  .display-hero { font-size: clamp(34px, 9.6vw, 48px); }
  .hero-ctas { justify-content: center; }
  .btn-cta { width: 100%; max-width: 400px; padding: 17px 46px; font-size: 19px; }
  .stats { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .service-row { grid-template-columns: 1fr; gap: 14px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-wordmark { font-size: 15vw; }
}

/* ---- reduced motion ---- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal-words .w > span { animation: none; transform: none; }
  .btn-cta .lk { animation: none; display: none; }
  .marquee-track { animation: none; }
  .fx { opacity: 1; transform: none; transition: none; }
  .dot { animation: none; }
}

/* ---- CTA Scherben-Explosion (scroll-gescrubbt) ----
   Phase 1 (Crack): Scherben ruecken minimal auseinander, Risse werden sichtbar.
   Phase 2 (Explosion): Scherben fliegen voll sichtbar aus dem Screen, kein Fade.
   --pc = Crack-Fortschritt, --pe = Explosions-Fortschritt (setzt main.js). */
.cta-stage { position: relative; display: inline-block; --pc: 0; --pe: 0; }
.cta-shards {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 40;
  display: none;
}
.cta-stage.exploding .cta-shards { display: block; }
.cta-stage.exploding .btn-cta { opacity: 0; pointer-events: none; }
.cta-stage.exploding .btn-cta .lk { animation-play-state: paused; }
.shard {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg, rgba(255, 255, 255, 0.5) 0%, rgba(255, 255, 255, 0.1) 40%, rgba(255, 255, 255, 0) 65%),
    linear-gradient(165deg, rgba(255, 148, 56, 0.55), rgba(245, 95, 0, 0.38));
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.55),
    inset 0 4px 12px rgba(255, 255, 255, 0.2);
  opacity: 0.96;
  will-change: transform;
  transform:
    translate3d(
      calc(var(--cx) * var(--pc) + var(--dx) * var(--pe)),
      calc(var(--cy) * var(--pc) + var(--dy) * var(--pe)),
      0)
    rotate(calc(var(--cr) * var(--pc) + var(--rz) * var(--pe)))
    scale(calc(1 + var(--sc) * var(--pe)));
}
@media (max-width: 680px) {
  .hero-ctas .cta-stage { width: 100%; max-width: 400px; }
  .cta-stage .btn-cta { width: 100%; max-width: none; }
}
@media (prefers-reduced-motion: reduce) {
  .cta-shards { display: none !important; }
  .cta-stage.exploding .btn-cta { opacity: 1; pointer-events: auto; }
}
