/* iwoca Partner Landingpage — feintuning on top of Tailwind */

:root {
  --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-feature-settings: "ss01", "cv11", "cv02";
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.font-serif {
  font-feature-settings: "dlig", "liga", "kern";
}

details > summary { list-style: none; }
details > summary::-webkit-details-marker { display: none; }

:focus-visible {
  outline: 2px solid #15213d;
  outline-offset: 2px;
  border-radius: 4px;
}

::selection {
  background-color: #ffd9d0;
  color: #15213d;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

[x-cloak] { display: none !important; }

h1, h2, h3 { text-wrap: balance; }
p { text-wrap: pretty; }

img { max-width: 100%; height: auto; }

header {
  padding-top: env(safe-area-inset-top);
}

header nav,
header > div > div {
  min-width: 0;
}

header a[aria-label*="BAFA"],
.wa-badge {
  flex: 0 0 auto;
}

header > div > a:first-child {
  min-height: 44px;
}

/* =========================================================
   Kreditrechner Slider — iwoca coral
   ========================================================= */
.iwoca-range {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 6px;
  border-radius: 999px;
  background: linear-gradient(to right, #ff5e45 0%, #ff5e45 var(--iwoca-pct, 33%), #e4e4e7 var(--iwoca-pct, 33%), #e4e4e7 100%);
  outline: none;
  cursor: pointer;
  transition: background 0.15s ease;
}

.iwoca-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: #15213d;
  border: 4px solid #ffd9d0;
  box-shadow: 0 2px 8px rgba(21, 33, 61, 0.35);
  cursor: grab;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.iwoca-range::-webkit-slider-thumb:hover,
.iwoca-range::-webkit-slider-thumb:active {
  transform: scale(1.08);
  box-shadow: 0 4px 14px rgba(21, 33, 61, 0.45);
}

.iwoca-range::-moz-range-thumb {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: #15213d;
  border: 4px solid #ffd9d0;
  box-shadow: 0 2px 8px rgba(21, 33, 61, 0.35);
  cursor: grab;
}

.iwoca-range::-moz-range-track {
  height: 6px;
  border-radius: 999px;
  background: #e4e4e7;
}

.iwoca-range::-moz-range-progress {
  height: 6px;
  border-radius: 999px;
  background: #ff5e45;
}

/* =========================================================
   Reveal-on-scroll
   ========================================================= */
[data-reveal] {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.8s var(--ease-out-quart),
    transform 0.8s var(--ease-out-quart);
  will-change: opacity, transform;
}
[data-reveal].in-view {
  opacity: 1;
  transform: translateY(0);
}
[data-reveal-delay="1"].in-view { transition-delay: 0.06s; }
[data-reveal-delay="2"].in-view { transition-delay: 0.12s; }
[data-reveal-delay="3"].in-view { transition-delay: 0.18s; }
[data-reveal-delay="4"].in-view { transition-delay: 0.24s; }
[data-reveal-delay="5"].in-view { transition-delay: 0.30s; }
[data-reveal-delay="6"].in-view { transition-delay: 0.36s; }

[data-stagger] > * {
  opacity: 0;
  transform: translateY(16px);
  transition:
    opacity 0.7s var(--ease-out-quart),
    transform 0.7s var(--ease-out-quart);
  will-change: opacity, transform;
}
[data-stagger].in-view > * {
  opacity: 1;
  transform: translateY(0);
}
[data-stagger].in-view > *:nth-child(1) { transition-delay: 0.04s; }
[data-stagger].in-view > *:nth-child(2) { transition-delay: 0.10s; }
[data-stagger].in-view > *:nth-child(3) { transition-delay: 0.16s; }
[data-stagger].in-view > *:nth-child(4) { transition-delay: 0.22s; }
[data-stagger].in-view > *:nth-child(5) { transition-delay: 0.28s; }
[data-stagger].in-view > *:nth-child(6) { transition-delay: 0.34s; }

/* Card hover lift */
.card-hover {
  transition:
    transform 0.35s var(--ease-out-quart),
    box-shadow 0.35s var(--ease-out-quart),
    border-color 0.35s var(--ease-out-quart);
  will-change: transform;
}
.card-hover:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 36px -14px rgba(10, 10, 10, 0.22),
              0 0 0 1px rgba(10, 10, 10, 0.08);
}

a[class*="bg-ink"]:active,
a[class*="bg-dark"]:active,
a[class*="bg-coral"]:active {
  transform: scale(0.98);
  transition: transform 0.1s ease-out;
}

.group:hover .cta-arrow {
  transform: translateX(2px);
}
.cta-arrow {
  transition: transform 0.25s var(--ease-out-quart);
}

.link-underline {
  background-image: linear-gradient(#15213d, #15213d);
  background-repeat: no-repeat;
  background-position: 0 100%;
  background-size: 0 2px;
  transition: background-size 0.3s var(--ease-out-quart);
  padding-bottom: 2px;
}
.link-underline:hover {
  background-size: 100% 2px;
}

@keyframes soft-pulse {
  0%, 100% { box-shadow: 0 1px 2px rgba(10,10,10,0.04), 0 0 0 1px rgba(10,10,10,0.05); }
  50%      { box-shadow: 0 8px 24px -8px rgba(21,33,61,0.28), 0 0 0 1px rgba(21,33,61,0.08); }
}

@media (prefers-reduced-motion: reduce) {
  [data-reveal],
  [data-reveal].in-view,
  [data-stagger] > *,
  [data-stagger].in-view > * {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
  .card-hover:hover { transform: none; }
}

/* =========================================================
   Mobile optimization
   ========================================================= */
html, body { overflow-x: clip; }

a, button, [role="button"], summary, input[type="range"], label {
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

main section[id] { scroll-margin-top: 5rem; }

.mobile-cta-bar {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 60;
  padding: 0.625rem 1rem;
  padding-bottom: calc(0.625rem + env(safe-area-inset-bottom));
  padding-left: calc(1rem + env(safe-area-inset-left));
  padding-right: calc(1rem + env(safe-area-inset-right));
  background: rgba(255, 255, 255, 0.92);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  backdrop-filter: saturate(180%) blur(14px);
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 -6px 24px -8px rgba(10, 10, 10, 0.12);
}
.mobile-cta-bar a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  background: #ff5e45;
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  padding: 0.875rem 1.25rem;
  border-radius: 999px;
  min-height: 48px;
}
.mobile-cta-bar a:active { transform: scale(0.98); }

@media (max-width: 767px) {
  .mobile-cta-bar { display: block; }
  body { padding-bottom: calc(76px + env(safe-area-inset-bottom)); }
}

@media (max-width: 380px) {
  .hero-h1 { font-size: 38px !important; line-height: 1.05 !important; }
  .calc-big { font-size: 46px !important; }
  .bento-500 { font-size: 56px !important; }
  .section-h2 { font-size: 30px !important; line-height: 1.08 !important; }
  .dark-h2 { font-size: 38px !important; line-height: 1.03 !important; }
  .stat-num { font-size: 44px !important; }
  .final-h2 { font-size: 38px !important; line-height: 1.03 !important; }
}

@media (max-width: 430px) {
  header .safe-x {
    padding-left: max(0.75rem, env(safe-area-inset-left)) !important;
    padding-right: max(0.75rem, env(safe-area-inset-right)) !important;
  }

  header nav,
  header > div > div {
    gap: 0.375rem !important;
  }

  header a[aria-label*="BAFA"],
  .wa-badge,
  header a[href^="mailto:"] {
    width: 2.125rem !important;
    height: 2.125rem !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  header a[class*="bg-coral"] {
    min-height: 2.125rem;
    padding-left: 0.75rem !important;
    padding-right: 0.75rem !important;
    font-size: 12.5px !important;
  }

  header img[alt="iwoca"] {
    max-width: 5.25rem;
  }
}

@media (max-width: 360px) {
  header .safe-x {
    padding-left: max(0.625rem, env(safe-area-inset-left)) !important;
    padding-right: max(0.625rem, env(safe-area-inset-right)) !important;
  }

  header a[aria-label*="BAFA"],
  .wa-badge,
  header a[href^="mailto:"] {
    width: 2rem !important;
    height: 2rem !important;
  }

  header a[class*="bg-coral"] {
    padding-left: 0.625rem !important;
    padding-right: 0.625rem !important;
  }
}

@media (max-width: 640px) {
  [class*="blur-3xl"] { --tw-blur: blur(48px); filter: var(--tw-blur) !important; }
  [class*="blur-2xl"] { --tw-blur: blur(32px); filter: var(--tw-blur) !important; }
  [class*="blur-[140px]"],
  [class*="blur-[130px]"],
  [class*="blur-[120px]"],
  [class*="blur-[100px]"] { filter: blur(60px) !important; }
}

@media (max-width: 640px) {
  .section-pad { padding-top: 3.5rem !important; padding-bottom: 3.5rem !important; }
}

@media (max-width: 768px) {
  .animate-float { animation: none !important; }
}

@supports (padding: max(0px)) {
  .safe-x {
    padding-left: max(1.25rem, env(safe-area-inset-left)) !important;
    padding-right: max(1.25rem, env(safe-area-inset-right)) !important;
  }
}

@media (max-width: 640px) {
  details summary, .faq-toggle { min-height: 48px; }
}

input, select, textarea { font-size: max(16px, 1em); }

@media (max-width: 767px) {
  body.cta-in-view .mobile-cta-bar {
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .hero-grid { gap: 3rem !important; }
}

@media (min-width: 768px) and (max-width: 1180px) {
  .hero-h1 {
    font-size: clamp(54px, 6.4vw, 68px) !important;
  }

  .section-h2 {
    font-size: clamp(38px, 5vw, 50px) !important;
  }
}

/* =========================================================
   Marketing Animations
   ========================================================= */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0;
  background: linear-gradient(90deg, #15213d 0%, #ff5e45 50%, #ffb3a3 100%);
  z-index: 70;
  transition: width 0.08s linear;
  box-shadow: 0 0 12px rgba(255, 94, 69, 0.55);
  pointer-events: none;
}

.cta-shimmer {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.cta-shimmer::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 0%, transparent 35%, rgba(255, 217, 208, 0.85) 50%, transparent 65%, transparent 100%);
  transform: translateX(-120%);
  animation: cta-sheen 3s ease-in-out infinite;
  pointer-events: none;
  mix-blend-mode: screen;
  z-index: 1;
  border-radius: inherit;
}
.cta-shimmer > * { position: relative; z-index: 2; }
@keyframes cta-sheen {
  0%, 50%  { transform: translateX(-120%); }
  80%      { transform: translateX(120%); }
  100%     { transform: translateX(120%); }
}
.cta-shimmer.bg-coral::after {
  background: linear-gradient(115deg, transparent 0%, transparent 35%, rgba(255, 255, 255, 0.55) 50%, transparent 65%, transparent 100%);
  mix-blend-mode: overlay;
}

@keyframes coral-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255, 94, 69, 0.55), 0 0 0 1px rgba(21, 33, 61, 0.08); }
  50%      { box-shadow: 0 0 0 14px rgba(255, 94, 69, 0), 0 0 32px -2px rgba(255, 94, 69, 0.75); }
}
.chip-pulse { animation: coral-pulse 2.0s ease-in-out infinite; }

.twinkle-star {
  transform-origin: center;
  animation: twinkle 3.2s ease-in-out infinite;
  will-change: transform, opacity, filter;
}
.twinkle-star:nth-child(1) { animation-delay: 0.0s; }
.twinkle-star:nth-child(2) { animation-delay: 0.25s; }
.twinkle-star:nth-child(3) { animation-delay: 0.5s; }
.twinkle-star:nth-child(4) { animation-delay: 0.75s; }
.twinkle-star:nth-child(5) { animation-delay: 1.0s; }
@keyframes twinkle {
  0%, 100% { transform: scale(1); filter: drop-shadow(0 0 0 transparent); opacity: 1; }
  50%      { transform: scale(1.18); filter: drop-shadow(0 0 6px rgba(255, 94, 69, 0.9)); opacity: 0.95; }
}

.kenburns {
  animation: kb 18s ease-in-out infinite alternate;
  will-change: transform;
}
@keyframes kb {
  0%   { transform: scale(1.00); }
  100% { transform: scale(1.08); }
}

.mesh-drift-a { animation: drift-a 14s ease-in-out infinite alternate; will-change: transform; }
.mesh-drift-b { animation: drift-b 16s ease-in-out infinite alternate; will-change: transform; }
@keyframes drift-a {
  0%   { transform: translate3d(0, 0, 0) scale(1); }
  100% { transform: translate3d(40px, -24px, 0) scale(1.05); }
}
@keyframes drift-b {
  0%   { transform: translate3d(0, 0, 0) scale(1); }
  100% { transform: translate3d(-30px, 30px, 0) scale(1.08); }
}

.calc-big {
  transition: transform 0.18s var(--ease-out-quart);
}
.calc-big.is-pulsing {
  transform: scale(1.04);
}

[data-countup].counted {
  animation: count-flash 0.9s ease-out;
}
@keyframes count-flash {
  0%   { text-shadow: 0 0 0 rgba(255, 94, 69, 0); }
  40%  { text-shadow: 0 0 20px rgba(255, 94, 69, 0.55); }
  100% { text-shadow: 0 0 0 rgba(255, 94, 69, 0); }
}

@keyframes badge-glow {
  0%, 100% { box-shadow: 0 2px 14px -4px rgba(21, 33, 61, 0.20); }
  50%      { box-shadow: 0 14px 32px -10px rgba(255, 94, 69, 0.45), 0 0 0 1px rgba(21, 33, 61, 0.10); }
}
.badge-glow { animation: badge-glow 4s ease-in-out infinite; }

/* =========================================================
   CONTACT SECTION — Clean Button System
   ========================================================= */
.contact-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 520px;
}

.contact-secondary {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.contact-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 56px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  line-height: 1;
  letter-spacing: -0.005em;
  text-decoration: none;
  white-space: nowrap;
  transition:
    background-color 0.25s ease,
    border-color 0.25s ease,
    color 0.25s ease,
    box-shadow 0.3s var(--ease-out-quart),
    transform 0.25s var(--ease-out-quart);
}

.contact-btn__icon {
  display: inline-grid;
  place-items: center;
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

.contact-btn__label {
  display: inline-block;
  line-height: 1;
}

.contact-btn__arrow { flex-shrink: 0; }

/* Primary — coral pill */
.contact-btn--primary {
  background: #ff5e45;
  color: #fff;
  font-weight: 700;
  padding: 0 26px;
  box-shadow: 0 10px 30px -12px rgba(255, 94, 69, 0.45), 0 0 0 1px rgba(10, 10, 10, 0.06);
}
.contact-btn--primary:hover {
  background: #ff4a2e;
  transform: translateY(-1px);
  box-shadow: 0 18px 36px -14px rgba(255, 94, 69, 0.55), 0 0 0 1px rgba(10, 10, 10, 0.08);
}

.contact-btn--wa {
  background: #25D366;
  color: #fff;
  box-shadow: 0 8px 24px -14px rgba(37, 211, 102, 0.6);
}
.contact-btn--wa:hover {
  background: #1ebe5a;
  transform: translateY(-1px);
  box-shadow: 0 14px 30px -12px rgba(37, 211, 102, 0.55);
}

.contact-btn--mail {
  background: #fff;
  color: #0a0a0a;
  border: 1px solid rgba(21, 33, 61, 0.15);
}
.contact-btn--mail:hover {
  background: #fff7f5;
  border-color: rgba(21, 33, 61, 0.3);
  transform: translateY(-1px);
  box-shadow: 0 10px 24px -14px rgba(10, 10, 10, 0.2);
}

@media (max-width: 640px) {
  .contact-btn { font-size: 14px; padding: 0 16px; gap: 8px; }
  .contact-btn--primary {
    font-size: 13.5px;
    padding: 0 18px;
    gap: 8px;
    letter-spacing: -0.012em;
  }
  .contact-btn--primary .contact-btn__arrow { width: 22px; height: 22px; }
  .contact-secondary { gap: 8px; }
}

@media (max-width: 400px) {
  .contact-btn--primary {
    font-size: 12.5px;
    padding: 0 14px;
    gap: 6px;
    font-weight: 700;
  }
  .contact-btn--primary .contact-btn__arrow { width: 20px; height: 20px; }
  .contact-btn { font-size: 13px; padding: 0 12px; gap: 6px; }
}

@media (max-width: 340px) {
  .contact-btn--primary { font-size: 11.5px; padding: 0 12px; }
  .contact-btn--primary .contact-btn__arrow { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  .contact-btn:hover { transform: none !important; }
}

/* HEADER badges */
.bafa-badge,
.wa-badge {
  transition: background-color 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s var(--ease-out-quart);
}
.bafa-badge {
  animation: bafa-attention 3.8s ease-in-out infinite;
}
.bafa-badge svg {
  transform-origin: 50% 70%;
  animation: bafa-icon-sway 3.8s ease-in-out infinite;
}
.bafa-badge:hover {
  border-color: rgba(21,33,61,0.35);
  box-shadow: 0 8px 20px -10px rgba(21,33,61,0.35), 0 0 0 3px rgba(255,217,208,0.45);
  transform: translateY(-1px);
}
.bafa-badge:hover,
.bafa-badge:hover svg {
  animation-play-state: paused;
}
.wa-badge:hover {
  box-shadow: 0 8px 20px -10px rgba(37,211,102,0.55), 0 0 0 3px rgba(37,211,102,0.18);
  transform: translateY(-1px);
}

@keyframes bafa-attention {
  0%, 72%, 100% {
    box-shadow: 0 1px 2px rgba(10,10,10,0.04), 0 0 0 1px rgba(10,10,10,0.05);
  }
  78% {
    box-shadow: 0 8px 20px -10px rgba(21,33,61,0.35), 0 0 0 5px rgba(255,217,208,0.75);
  }
  84% {
    box-shadow: 0 8px 20px -10px rgba(21,33,61,0.35), 0 0 0 2px rgba(255,217,208,0.25);
  }
}

@keyframes bafa-icon-sway {
  0%, 70%, 100% { transform: rotate(0deg) scale(1); }
  76% { transform: rotate(-7deg) scale(1.05); }
  82% { transform: rotate(7deg) scale(1.05); }
  88% { transform: rotate(0deg) scale(1); }
}

/* UNTERLAGEN — Tier Cards */
.docs-tier,
.docs-tier-dark {
  position: relative;
  transition: transform 0.5s var(--ease-out-quart), box-shadow 0.5s var(--ease-out-quart), border-color 0.35s ease;
  will-change: transform;
}

@media (min-width: 1280px) {
  [data-stagger].in-view > .docs-tier:nth-child(1),
  [data-stagger].in-view > .docs-tier-dark:nth-child(1) { transform: translateY(18px); }
  [data-stagger].in-view > .docs-tier:nth-child(2),
  [data-stagger].in-view > .docs-tier-dark:nth-child(2) { transform: translateY(12px); }
  [data-stagger].in-view > .docs-tier:nth-child(3),
  [data-stagger].in-view > .docs-tier-dark:nth-child(3) { transform: translateY(6px); }
  [data-stagger].in-view > .docs-tier:nth-child(4),
  [data-stagger].in-view > .docs-tier-dark:nth-child(4) { transform: translateY(0); }

  [data-stagger].in-view > .docs-tier:hover,
  [data-stagger].in-view > .docs-tier-dark:hover { transform: translateY(-6px); }
}

.docs-tier:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 48px -22px rgba(10,10,10,0.22), 0 0 0 1px rgba(255,94,69,0.18);
  border-color: rgba(255,94,69,0.25);
}
.docs-tier-dark:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 60px -18px rgba(0,0,0,0.55), 0 0 0 1px rgba(255,217,208,0.18);
}

.docs-tier ul li > span:first-child,
.docs-tier-dark ul li > span:first-child {
  transition: transform 0.35s var(--ease-out-quart), box-shadow 0.35s ease;
}
.docs-tier:hover ul li > span:first-child,
.docs-tier-dark:hover ul li > span:first-child {
  transform: scale(1.12);
  box-shadow: 0 0 0 4px rgba(255,217,208,0.45);
}

[data-stagger].in-view .docs-tier ul li,
[data-stagger].in-view .docs-tier-dark ul li {
  animation: docs-check-in 0.5s var(--ease-out-quart) both;
}
[data-stagger].in-view .docs-tier ul li:nth-child(1),
[data-stagger].in-view .docs-tier-dark ul li:nth-child(1) { animation-delay: 0.18s; }
[data-stagger].in-view .docs-tier ul li:nth-child(2),
[data-stagger].in-view .docs-tier-dark ul li:nth-child(2) { animation-delay: 0.26s; }
[data-stagger].in-view .docs-tier ul li:nth-child(3),
[data-stagger].in-view .docs-tier-dark ul li:nth-child(3) { animation-delay: 0.34s; }
[data-stagger].in-view .docs-tier ul li:nth-child(4),
[data-stagger].in-view .docs-tier-dark ul li:nth-child(4) { animation-delay: 0.42s; }
[data-stagger].in-view .docs-tier ul li:nth-child(5),
[data-stagger].in-view .docs-tier-dark ul li:nth-child(5) { animation-delay: 0.50s; }

@keyframes docs-check-in {
  0%   { opacity: 0; transform: translateX(-6px); }
  100% { opacity: 1; transform: translateX(0); }
}

@media (prefers-reduced-motion: reduce) {
  .cta-shimmer::after,
  .chip-pulse,
  .twinkle-star,
  .kenburns,
  .mesh-drift-a,
  .mesh-drift-b,
  .badge-glow,
  .scroll-progress { animation: none !important; transition: none !important; }
  .scroll-progress { display: none !important; }
  .docs-tier, .docs-tier-dark { transform: none !important; transition: none !important; }
  .docs-tier:hover, .docs-tier-dark:hover { transform: none !important; }
  .docs-tier ul li, .docs-tier-dark ul li { animation: none !important; }
}

@media (max-width: 768px) {
  .mesh-drift-a, .mesh-drift-b { animation: none !important; }
  .kenburns { animation-duration: 24s; }
}
