:root {
    --color-text-primary: #212121;
    --color-background-white: #ffffff;
}

* {
    box-sizing: border-box;
}

html,
body {
    min-height: 100%;
}

body {
    margin: 0;
    background: var(--color-background-white);
    color: var(--color-text-primary);
    font-family: "Jost", "Segoe UI", Arial, sans-serif;
}

.site-header {
    padding: 20px 24px 0;
}

.site-logo {
    display: block;
    width: 98px;
    height: auto;
}

.landing {
    min-height: calc(100vh - 103px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px 24px 56px;
}

.hero {
    width: min(100%, 706px);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 28px;
    text-align: center;
}

.hero-visual {
    position: relative;
    width: min(100%, 706px);
    aspect-ratio: 706 / 437;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.hero-background {
    width: 100%;
    height: auto;
}

.hero-machine {
    position: absolute;
    bottom: 6%;
    width: min(42.5%, 300px);
    height: auto;
}

.hero-title {
    margin: 0;
    font-size: clamp(1.125rem, 1rem + 0.5vw, 1.5rem);
    font-weight: 400;
    line-height: 1.35;
}

@media (max-width: 768px) {
    .site-header {
        padding: 16px 16px 0;
    }

    .site-logo {
        width: 76px;
    }

    .landing {
        min-height: calc(100vh - 84px);
        padding: 16px 16px 40px;
    }

    .hero {
        gap: 20px;
    }

    .hero-title {
        font-size: 1rem;
    }
}
