@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;600&display=swap");

:root {
    --white: #ffffff;
    --gray-900: #101828;
    --gray-700: #344054;
    --gray-500: #667085;
    --gray-300: #d0d5dd;
    --zen-green-2: #11823b;
    --zen-blue-1: #3A4855;
    --zen-blue-2: #3A87A9;
    --zen-blue-3: #4EB7D5;
    --spacer: 24px;
}

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    --line-height: 1.4em;
}

body {
    font-family: "Inter", sans-serif;
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
    background-color: transparent;
    -webkit-text-decoration-skip: objects;
    text-decoration-skip-ink: none;
    -webkit-tap-highlight-color: transparent;
    cursor: pointer;
}

button {
    background-color: transparent;
    border: none;
    color: inherit;
    font-size: inherit;
    font-family: inherit;
}

a:focus {
    outline: none;
}

a:focus-visible {
    outline: auto;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 600;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: calc(var(--spacer) * 0.5) 0;
    background-color: var(--white);
    min-height: max(6.9vh, 69px);
}

.navbar .logo img {
    height: 100%;
}

.menu {
    display: none;
}

.navigation-actions {
    display: flex;
    gap: calc(var(--spacer) * 0.5);
    background-color: var(--white);
}

.hero {
    display: flex;
}

.hero-vertical {
    text-align: center;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.hero .supporting-text {
    max-width: 70%;
}

.hero .image {
    max-width: 70%;
}

.image img {
    width: 100%;
}

.hero .actions {
    width: 100%;
}

.footer {
    width: 100%;
    display: flex;
    justify-content: space-between;
    font-size: 16px;
}

.social-icons {
    display: flex;
    justify-content: end;
    gap: var(--spacer);
}

.footer .other {
    height: inherit;
    display: flex;
    flex-direction: column;
    flex-grow: 0;
}

.footer .other .copy {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: end;
}

@media screen and (max-width: 400px) {
    :root {
        --spacer: 16px;
    }

    .hero .supporting-text {
        max-width: 100%;
    }

    .hero .image {
        max-width: 100%;
    }

    .navbar {
        flex-wrap: wrap;
        position: relative;
    }

    .container.with-navbar {
        padding: 0 var(--spacer);
    }

    .container .navigation-actions {
        padding: var(--spacer);
        width: 100vw;
    }

    .navigation-actions {
        display: none;
        position: absolute;
        top: 100%;
        left: calc(-1 * var(--spacer));
        flex-direction: column;
        justify-content: start;
        box-shadow: 0px 4px 6px -2px rgba(16, 24, 40, 0.03),
            0px 12px 16px -4px rgba(16, 24, 40, 0.08);
    }

    .menu {
        display: block;
        flex-grow: 0;
    }

    .footer {
        flex-direction: column;
        justify-content: space-between;
        gap: 36px;
        font-size: 16px;
    }

    .social-icons {
        justify-content: start;
        gap: 24px;
    }

    .footer .other {
        gap: 12px;
    }

    .footer .other .copy {
        flex-grow: 1;
        display: flex;
        flex-direction: column;
        justify-content: end;
    }
}