html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Inter', system-ui, sans-serif;
    overflow-x: hidden;
}

.screenshot-strip {
    scrollbar-width: none;
    -ms-overflow-style: none;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-x: contain;
    touch-action: pan-x;
    scroll-padding-inline: 1rem;
}

.screenshot-strip::-webkit-scrollbar {
    display: none;
}

details summary {
    list-style: none;
}

details summary::-webkit-details-marker {
    display: none;
}

@keyframes intro-circle-cw {
    to {
        transform: rotate(360deg);
    }
}

@keyframes intro-circle-ccw {
    to {
        transform: rotate(-360deg);
    }
}

.intro-circle-cw {
    animation: intro-circle-cw 20s linear infinite;
}

.intro-circle-ccw {
    animation: intro-circle-ccw 34s linear infinite;
}

.intro-circle-cw-slow {
    animation: intro-circle-cw 47s linear infinite;
}

@media (prefers-reduced-motion: reduce) {

    .intro-circle-cw,
    .intro-circle-ccw,
    .intro-circle-cw-slow {
        animation: none;
    }

    .btn-cta:hover,
    .btn-cta:active {
        transform: none;
    }

    .btn-cta {
        transition: background-color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
    }
}

.intro-blue-glow {
    position: absolute;
    left: 50%;
    top: -4rem;
    transform: translateX(-50%);
    width: min(60%, 42rem);
    height: 22rem;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.18) 0%, rgba(255, 255, 255, 0) 70%);
    filter: blur(72px);
    pointer-events: none;
    z-index: 0;
}

.trust-timeline-axis {
    background-image: repeating-linear-gradient(180deg,
            #94a3b8,
            #94a3b8 10px,
            transparent 10px,
            transparent 16px);
    background-size: 2px 100%;
    opacity: 0.35;
}

.trust-timeline-h {
    height: 2px;
    background-image: repeating-linear-gradient(90deg,
            #94a3b8 0,
            #94a3b8 10px,
            transparent 10px,
            transparent 16px);
    background-repeat: repeat-x;
    opacity: 0.35;
}

.intro-block strong {
    color: #2563eb;
    font-weight: 700;
}

/* CTA hover (marketing-style lift + shadow, similar to primary "Try now" buttons) */
.btn-cta {
    transition:
        transform 0.28s cubic-bezier(0.33, 1, 0.68, 1),
        box-shadow 0.28s ease,
        background-color 0.2s ease,
        border-color 0.2s ease,
        color 0.2s ease;
}

.btn-cta:hover {
    transform: translateY(-4px);
}

.btn-cta:active {
    transform: translateY(-1px);
    transition-duration: 0.12s;
}

.btn-cta-dark {
    box-shadow: 0 8px 24px -6px rgba(15, 23, 42, 0.35);
}

.btn-cta-dark:hover {
    box-shadow: 0 16px 36px -8px rgba(15, 23, 42, 0.45);
}

.btn-cta-outline {
    box-shadow: 0 4px 14px rgba(15, 23, 42, 0.08);
}

.btn-cta-outline:hover {
    box-shadow: 0 14px 32px -6px rgba(15, 23, 42, 0.14);
}

.btn-cta-brand {
    box-shadow: 0 8px 24px -6px rgba(37, 99, 235, 0.45);
}

.btn-cta-brand:hover {
    box-shadow: 0 16px 36px -6px rgba(37, 99, 235, 0.55);
}
