@font-face {
    font-family: 'Inter Display';
    src: url('../font/ttf/InterDisplay-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}
@font-face {
    font-family: 'Inter Display';
    src: url('../font/ttf/InterDisplay-ExtraLight.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
}

.font-inter-display {
    font-family: 'Inter Display';
    font-weight: 400;
}
body {
    font-family: 'Inter';
    font-weight: 300;
    font-style: normal;
    font-optical-sizing: auto;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

html, body {
    height: 100%;
    scroll-behavior: smooth;
    scroll-snap-type: y mandatory;
    overflow-y: scroll;
}
section, footer {
    min-height: 100dvh;
    display: flex;
    align-items: center;
    justify-content: center;
    scroll-snap-align: start;
    scroll-snap-stop: always;
    position: relative;
}

.faq-section {
    height: 100dvh;
    overflow: hidden;
}
.faq-section > div {
    height: 100%;
    overflow-y: auto;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
}
@media (max-width: 768px) {

    section, footer {
        scroll-snap-stop: unset !important;
    }

    .faq-section {
        height: 100dvh;
        overflow: hidden;
    }

    .faq-section > div {
        height: 100%;
        overflow-y: auto;
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
    }
}



.top-section {
    background-color: #fbfbff;
}

.top-title {
    font-size: 140px;
    letter-spacing: -4px;
    line-height: 140px;
}

.top-scroll-down {
    color: rgba(88, 104, 113, 1);
    font-size: 24px;
    font-family: 'Inter', sans-serif;
}


.commerce-section-title {
    width: 100%;
    min-width: 300px;
    margin-right: 5rem;
}

@media (max-width: 768px) {
    .top-title {
        font-size: 64px;
        letter-spacing: -2px;
        line-height: 64px;
    }

    .top-scroll-down {
        font-size: 20px;
    }

    .commerce-section-title {
        width: 100%;
        min-width: 100%;
    }
}

a {
    outline: none;
}

a:focus {
    outline: none;
    text-decoration: underline;
}

a:hover {
    text-decoration: underline;
}

.top-section * ::selection {
    color: white;
    background: black;
}
.commerce-section * ::selection {
    color: rgba(0,147,147,1);
    background: white;
}
.wdk-section * ::selection {
    color: black;
    background: white;
}
.faq-section * ::selection {
    color: white;
    background: black;
}

.agent-section img {
    object-fit: contain;
    height: 100dvh;
    width: 100%;
    max-width: none;
}

@media (max-width: 768px) {
    .agent-section {
        overflow: hidden;
    }

    .agent-section img {
        width: auto;
    }

    .agent-scroll-container {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .agent-scroll-image {
        width: 1500px;
        height: 100dvh;
    }
}

footer {

}

.animate-buttons a:hover, .animate-buttons a:focus, .animate-button a:hover, .animate-button a:focus {
    text-decoration: none;
}

.button-secondary {
    transition: border .16s ease-in-out, box-shadow .15s ease-in-out !important;
}

.button-secondary:hover {
    border-color: rgb(46 116 255 / 100%) !important;
    box-shadow: 0 0 0 4px rgb(46 116 255 / 10%) !important;
}

.button-secondary:hover > * {

}


.button-primary {
    border: 1px solid transparent;
    transition: border .15s ease-in-out, box-shadow .15s ease-in-out !important;
    cursor: pointer !important;
}

.button-primary:hover {
    border-color: rgb(255 255 255 / 100%) !important;
    box-shadow: 0 0 0 4px rgb(255 255 255 / 10%) !important;
}

.button-primary:focus, .button-primary:hover, .button-secondary:focus, .button-secondary:hover {
    text-decoration: none;
}

.gsap-init {
    visibility: hidden;
}


.pulse-indicator {
    position: relative;
    width: 10px;
    height: 10px;
    background: rgba(23, 168, 56, 1);
    /*border: 4px solid rgba(227, 245, 231, 1);*/
    border-radius: 9999px;
}

.pulse-indicator::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    background: rgba(23, 168, 56, 0.9);
    border-radius: 9999px;
    transform: translate(-50%, -50%);
    animation: pulse 1s infinite ease-in-out;
    z-index: 0;
}


@keyframes pulse {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.8;
    }
    70% {
        transform: translate(-50%, -50%) scale(2);
        opacity: 0;
    }
    100% {
        transform: translate(-50%, -50%) scale(2);
        opacity: 0;
    }
}

@media (max-width: 768px) {
    .user-section .animate-heading,
    .user-section .animate-text,
    .commerce-section .animate-heading,
    .commerce-section .animate-text,
    .paper-section .animate-heading,
    .paper-section .animate-text,
    .faq-section .animate-heading,
    .faq-section .animate-text {
        opacity: 1 !important;
    }
}
