#hero-stage .hero-bubble-layer {
    pointer-events: none;
    position: absolute;
    inset: 0;
    overflow: hidden;
}

#hero-stage .hero-bubble {
    position: absolute;
    left: 0;
    top: 0;
    width: 180px;
    height: 180px;
    border-radius: 9999px;
    opacity: 0;
    transform: translate3d(-9999px, -9999px, 0) scale(0.2);
    transform-origin: center center;
    background: radial-gradient(circle at 33% 30%,
        rgba(255, 255, 255, 0.7) 0%,
        rgba(255, 255, 255, 0.4) 36%,
        rgba(255, 255, 255, 0.12) 66%,
        rgba(255, 255, 255, 0) 100%);
    box-shadow: inset 0 0 36px rgba(255, 255, 255, 0.17);
    will-change: opacity, transform, left, top;
}

@media (prefers-reduced-motion: reduce) {
    #hero-stage .hero-bubble {
        opacity: 0.16;
        transform: translate3d(-9999px, -9999px, 0) scale(0.96);
    }
}

#faq {
    --faq-transition-ms: 280ms;
}

#faq .faq-answer-wrapper {
    overflow: hidden;
    height: 0;
    opacity: 0;
    transform: translateY(-4px);
    transition:
        height var(--faq-transition-ms) cubic-bezier(0.22, 1, 0.36, 1),
        opacity var(--faq-transition-ms) ease,
        transform var(--faq-transition-ms) ease;
    will-change: height, opacity, transform;
}

#faq details[open] .faq-answer-wrapper {
    opacity: 1;
    transform: translateY(0);
}

#faq .faq-toggle-icon--minus {
    display: none;
}

#faq details[open] .faq-toggle-icon--plus {
    display: none;
}

#faq details[open] .faq-toggle-icon--minus {
    display: inline-block;
}

@media (prefers-reduced-motion: reduce) {
    #faq .faq-answer-wrapper {
        transition: none;
    }
}

.landing-screenshot-trigger {
    display: block;
    cursor: zoom-in;
    border-radius: 1rem;
    transition: transform 180ms ease, box-shadow 180ms ease;
}

.landing-screenshot-trigger:hover {
    transform: translateY(-3px);
}

.landing-screenshot-trigger__hint {
    position: absolute;
    right: 1rem;
    bottom: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 0.85rem;
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 9999px;
    background: rgba(17, 24, 39, 0.5);
    color: #ffffff;
    font-size: 0.85rem;
    font-weight: 600;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 14px 28px rgba(15, 23, 42, 0.18);
}

.landing-screenshot-modal-open {
    position: fixed;
    inset: 0;
    width: 100%;
    overflow: hidden;
}

.landing-screenshot-modal {
    position: fixed;
    inset: 0;
    z-index: 2100;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    visibility: hidden;
    pointer-events: none;
}

.landing-screenshot-modal.is-visible {
    visibility: visible;
    pointer-events: auto;
}

.landing-screenshot-modal__backdrop {
    position: absolute;
    inset: 0;
    opacity: 0;
    background: rgba(10, 16, 28, 0.34);
    transition: opacity 220ms ease;
}

.landing-screenshot-modal.is-visible .landing-screenshot-modal__backdrop {
    opacity: 1;
}

.landing-screenshot-modal__dialog {
    position: relative;
    z-index: 1;
    width: min(1440px, 100%);
    max-height: calc(100vh - 3rem);
    padding: 1.25rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 1.5rem;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow: 0 30px 80px rgba(15, 23, 42, 0.28);
    overflow: hidden;
}

.landing-screenshot-modal__close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 3;
    width: 2.75rem;
    height: 2.75rem;
    border: 0;
    border-radius: 9999px;
    background: rgba(17, 24, 39, 0.8);
    color: #ffffff;
    cursor: pointer;
}

.landing-screenshot-modal__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.25rem 3.75rem 1rem 0.25rem;
    color: #ffffff;
}

.landing-screenshot-modal__eyebrow {
    margin: 0 0 0.2rem;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.74);
}

.landing-screenshot-modal__title {
    margin: 0;
    font-size: 1.35rem;
    font-weight: 800;
    line-height: 1.1;
}

.landing-screenshot-modal__counter {
    flex-shrink: 0;
    font-size: 0.95rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.88);
}

.landing-screenshot-carousel {
    position: relative;
}

.landing-screenshot-carousel__viewport {
    overflow: hidden;
    border-radius: 1.1rem;
    cursor: grab;
    touch-action: pan-y;
    user-select: none;
    -webkit-user-drag: none;
}

.landing-screenshot-carousel__track {
    display: flex;
    align-items: center;
    transition: transform 360ms cubic-bezier(0.22, 1, 0.36, 1);
    will-change: transform;
}

.landing-screenshot-carousel__viewport.is-dragging {
    cursor: grabbing;
}

.landing-screenshot-carousel__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    width: 3rem;
    height: 3rem;
    border: 0;
    border-radius: 9999px;
    background: rgba(17, 24, 39, 0.78);
    color: #ffffff;
    cursor: pointer;
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.18);
}

.landing-screenshot-carousel__nav--prev {
    left: 1rem;
}

.landing-screenshot-carousel__nav--next {
    right: 1rem;
}

.landing-screenshot-slide {
    flex: 0 0 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 3.8rem;
}

.landing-screenshot-slide__image {
    display: block;
    width: auto;
    max-width: min(1320px, calc(100vw - 12rem));
    max-height: calc(100vh - 12rem);
    height: auto;
    border-radius: 1.1rem;
    cursor: grab;
    touch-action: pan-y;
    user-select: none;
    pointer-events: none;
    -webkit-user-drag: none;
    box-shadow: 0 28px 60px rgba(15, 23, 42, 0.25);
    background: #ffffff;
}

@media (max-width: 900px) {
    .landing-screenshot-modal {
        padding: 0.85rem;
    }

    .landing-screenshot-modal__dialog {
        max-height: calc(100vh - 1.7rem);
        padding: 1rem;
        border-radius: 1.2rem;
    }

    .landing-screenshot-carousel__nav--prev {
        left: 0.55rem;
    }

    .landing-screenshot-carousel__nav--next {
        right: 0.55rem;
    }

    .landing-screenshot-slide {
        padding: 0 2.8rem;
    }

    .landing-screenshot-slide__image {
        max-width: calc(100vw - 4rem);
        max-height: calc(100vh - 11.5rem);
    }
}

