.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .8s ease, transform .8s ease
}

.reveal.is-visible {
    opacity: 1;
    transform: none
}

.visual-line {
    animation: drawLine 1.8s 1s cubic-bezier(.65, 0, .35, 1) forwards
}

.dash-chart path,
.calculator-chart path {
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
    animation: drawLine 1.5s .3s ease forwards
}

@keyframes drawLine {
    to {
        stroke-dashoffset: 0
    }
}

@media(prefers-reduced-motion:reduce) {
    html {
        scroll-behavior: auto
    }

    .reveal {
        opacity: 1;
        transform: none;
        transition: none
    }

    .visual-line,
    .dash-chart path,
    .calculator-chart path {
        animation: none;
        stroke-dashoffset: 0
    }
}
