:root {
    --velo-ink: #07111f;
    --velo-muted: #5f6b7a;
    --velo-line: rgba(7, 17, 31, .1);
    --velo-pearl: #f7fbff;
    --velo-white: #fff;
    --velo-blue: #00a7ff;
    --velo-blue-soft: rgba(0, 167, 255, .16);
    --velo-shadow: 0 24px 70px rgba(7, 17, 31, .11);
    --velo-radius: 8px;
    --velo-shell: min(1180px, calc(100vw - 40px));
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--velo-ink);
    background: linear-gradient(180deg, #fff 0%, var(--velo-pearl) 100%);
    font-family: "Bai Jamjuree", Arial, sans-serif;
    line-height: 1.6;
}

body.velo-menu-open {
    overflow: hidden;
}

img,
video {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
select,
textarea {
    font: inherit;
}

.velo-main {
    min-height: 70vh;
}

.velo-shell {
    width: var(--velo-shell);
    margin-inline: auto;
}

.velo-section,
.velo-page-section {
    padding: clamp(72px, 9vw, 130px) 0;
}

.velo-page-section {
    padding-top: clamp(120px, 14vw, 170px);
}

.velo-section__intro {
    max-width: 760px;
    margin-bottom: 34px;
}

.velo-kicker {
    margin: 0 0 14px;
    color: #0076bc;
    font-family: "Jura", Arial, sans-serif;
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .16em;
    text-transform: uppercase;
}

h1,
h2,
h3,
h4 {
    margin: 0;
    font-family: "Jura", Arial, sans-serif;
    line-height: 1.04;
    letter-spacing: 0;
}

h1 {
    font-size: clamp(2.7rem, 7vw, 6.6rem);
}

h2 {
    font-size: clamp(2rem, 4vw, 4.4rem);
}

h3 {
    font-size: clamp(1.35rem, 2vw, 2rem);
}

p {
    margin: 16px 0 0;
    color: var(--velo-muted);
}

.velo-page-hero {
    padding: 150px 0 90px;
}

.velo-entry {
    max-width: 760px;
}

.velo-reveal {
    opacity: 0.001;
    transform: translateY(22px);
    transition: opacity .7s ease, transform .7s ease;
}

.velo-reveal.is-visible {
    opacity: 1;
    transform: none;
}

@media (max-width: 700px) {
    :root {
        --velo-shell: min(100vw - 28px, 1180px);
    }

    .velo-section,
    .velo-page-section {
        padding: 64px 0;
    }

    .velo-page-section {
        padding-top: 118px;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: .01ms !important;
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
    }

    .velo-reveal {
        opacity: 1;
        transform: none;
    }
}
