@layer utilities {
  .landing-shell {
    background-image: none;
    position: relative;
  }

  [data-mouse-glow="0"] {
    background: var(--glow-0);
  }
  [data-mouse-glow="1"] {
    background: var(--glow-1);
  }
  [data-mouse-glow="2"] {
    background: var(--glow-2);
  }
  [data-mouse-glow="3"] {
    background: var(--glow-3);
  }

  #mouse-glow-wrapper {
    position: fixed;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    z-index: 0;
    isolation: isolate;
  }

  .mouse-glow {
    position: absolute;
    left: 0;
    top: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    filter: blur(8px);
    -webkit-filter: blur(8px);
    opacity: 0.95;
    transition: opacity 0.2s;
    will-change: transform, opacity;
  }

  .landing-shell > * {
    position: relative;
    z-index: 1;
  }

  .grid-fade {
    background-image: none;
    background-size: 48px 48px;
    mask-image: radial-gradient(circle at top, black 40%, transparent 70%);
  }

  .glass-card {
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    /* Safari fix */
    /* Kein z-index, kein will-change, kein filter hier! */
  }

  .pulse-dot {
    position: relative;
  }

  .pulse-dot::before {
    content: "";
    position: absolute;
    inset: -6px;
    border-radius: 999px;
    background: rgba(59, 130, 246, 0.25);
    animation: pulse-ring 2.8s ease-out infinite;
  }

  .fade-up {
    animation: fade-up 0.7s ease-out both;
  }

  .fade-up.delay-1 { animation-delay: 0.12s; }
  .fade-up.delay-2 { animation-delay: 0.24s; }
  .fade-up.delay-3 { animation-delay: 0.36s; }

  .marquee-track {
    display: flex;
    width: max-content;
    animation: marquee 38s linear infinite;
  }

  .art-preview-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
  }
  .art-preview-img {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    object-fit: contain;
    opacity: 0;
    pointer-events: none;
    transition: opacity 1s ease-in-out;
    z-index: 1;
  }
  .art-preview-img[data-art-index="0"] {
    opacity: 1;
    z-index: 2;
  }

  .dotted-line-large {
    background-image: radial-gradient(circle, var(--color-emerald-600, #059669) 20%, transparent 20%);
    background-position: center;
    background-size: 2px 7px;
    background-repeat: repeat-y;
    width: 2px;
  }

  #bm-onboarding-root input[type="date"] {
    color: #6b7280;
  }

  #bm-onboarding-root input[type="date"].has-value {
    color: #000;
  }

  #bm-onboarding-root .onboarding-step-heading,
  #bm-onboarding-root .onboarding-label-with-help,
  #bm-onboarding-root .onboarding-label-text {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
  }

  #bm-onboarding-root .onboarding-step-heading {
    justify-content: center;
  }

  #bm-onboarding-root .onboarding-help-trigger {
    display: inline-flex;
    height: 1.25rem;
    width: 1.25rem;
    align-items: center;
    justify-content: center;
    border-radius: 9999px;
    border: 1px solid rgb(156 163 175);
    color: rgb(107 114 128);
    font-size: 0.75rem;
    font-weight: 600;
    line-height: 1;
    cursor: help;
    flex-shrink: 0;
  }

  .bm-start-section {
    width: 100%;
    max-width: 90rem;
    margin-inline: auto;
    padding: 4rem 1rem;
  }

  .bm-start-grid {
    display: grid;
    gap: 3rem;
    align-items: start;
  }

  .bm-start-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .bm-start-headline {
    margin: 0 0 1.5rem;
    color: #1f2937;
    font-size: 1.875rem;
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: 0;
  }

  .bm-start-subcopy {
    margin: 0 0 2rem;
    color: #66758a;
    font-size: 1.125rem;
    line-height: 1.625;
  }

  .bm-start-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 0 0 2.5rem;
    padding: 0;
    list-style: none;
  }

  .bm-start-list-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: #1f2937;
    font-weight: 500;
  }

  .bm-start-check {
    width: 1.25rem;
    height: 1.25rem;
    margin-top: 0.125rem;
    flex-shrink: 0;
    color: #065F46;
  }

  .bm-start-trust {
    padding-top: 1.5rem;
    border-top: 1px solid #6EE7B7;
  }

  .bm-start-trust p {
    margin: 0;
    color: #66758a;
    font-size: 0.875rem;
    line-height: 1.5;
  }

  .bm-start-trust span {
    color: #1f2937;
    font-weight: 600;
  }

  .bm-start-widget {
    min-width: 0;
  }

  .bm-start-widget .calendly-inline-widget {
    min-width: 320px;
    height: 1000px;
    overflow: hidden;
    border: 1px solid #6EE7B7;
    border-radius: 0.75rem;
    box-shadow: 0 12px 30px rgba(6, 95, 70, 0.08);
  }

  @media (min-width: 768px) {
    .bm-start-section {
      padding: 4rem 2rem;
    }

    .bm-start-headline {
      font-size: 2.25rem;
    }
  }

  @media (min-width: 1024px) {
    .bm-start-section {
      padding-block: 6rem;
    }

    .bm-start-grid {
      grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
      gap: 5rem;
    }

    .bm-start-headline {
      font-size: 3rem;
    }
  }
}

@keyframes fade-up {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes pulse-ring {
  0% { opacity: 0.7; transform: scale(0.8); }
  70% { opacity: 0; transform: scale(1.4); }
  100% { opacity: 0; transform: scale(1.4); }
}

@keyframes marquee {
  0% { transform: translateX(0%); }
  100% { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  .fade-up,
  .marquee-track,
  .pulse-dot::before {
    animation: none;
  }

  #mouse-glow-wrapper {
    display: none;
  }
}
