:root {
    color-scheme: light;
    font-family:
        Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
        "Segoe UI", sans-serif;
    background: #f8fafc;
    color: #111827;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
}

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

.site-header {
    position: absolute;
    inset: 0 0 auto;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 24px;
}

.brand,
.nav,
.actions {
    display: flex;
    align-items: center;
}

.brand {
    gap: 12px;
    color: #fff;
    font-size: 18px;
    font-weight: 700;
}

.brand img {
    width: 64px;
    height: 64px;
    object-fit: contain;
}

.nav,
.actions {
    gap: 12px;
}

.nav-link,
.secondary {
    border: 1px solid rgb(255 255 255 / 30%);
    color: rgb(255 255 255 / 92%);
}

.nav-button,
.primary {
    background: #fff;
    color: #111827;
}

.nav-link,
.nav-button,
.primary,
.secondary {
    display: inline-flex;
    min-height: 40px;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    padding: 0 16px;
    font-size: 14px;
    font-weight: 600;
}

.primary,
.secondary {
    min-height: 48px;
    padding: 0 20px;
}

.hero {
    position: relative;
    min-height: 100svh;
    overflow: hidden;
}

.hero-image,
.hero-overlay {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.hero-image {
    object-fit: cover;
}

.hero-overlay {
    background: rgb(0 0 0 / 65%);
}

.hero-content {
    position: relative;
    z-index: 1;
    display: flex;
    min-height: 100svh;
    max-width: 1200px;
    margin: 0 auto;
    flex-direction: column;
    justify-content: center;
    padding: 120px 24px 64px;
    color: #fff;
}

.eyebrow {
    margin: 0 0 18px;
    color: rgb(255 255 255 / 72%);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

h1 {
    max-width: 760px;
    margin: 0;
    font-size: clamp(40px, 7vw, 72px);
    line-height: 1.05;
}

.lead {
    max-width: 640px;
    margin: 24px 0 0;
    color: rgb(255 255 255 / 82%);
    font-size: 19px;
    line-height: 1.65;
}

.actions {
    margin-top: 32px;
    flex-wrap: wrap;
}

.highlights {
    display: grid;
    max-width: 900px;
    margin-top: 48px;
    gap: 12px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.highlights div {
    border: 1px solid rgb(255 255 255 / 16%);
    border-radius: 8px;
    background: rgb(255 255 255 / 8%);
    padding: 16px;
    color: rgb(255 255 255 / 86%);
    font-size: 14px;
    line-height: 1.45;
}

.features {
    display: grid;
    max-width: 1200px;
    margin: 0 auto;
    gap: 40px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    padding: 64px 24px;
}

.features span {
    color: #6b7280;
    font-size: 14px;
}

.features h2 {
    margin: 8px 0 0;
    font-size: 22px;
}

.features p {
    margin: 14px 0 0;
    color: #4b5563;
    line-height: 1.65;
}

@media (max-width: 760px) {
    .site-header {
        align-items: flex-start;
        gap: 16px;
    }

    .brand img {
        width: 48px;
        height: 48px;
    }

    .nav {
        flex-direction: column;
        align-items: stretch;
    }

    .nav-link,
    .nav-button {
        min-height: 36px;
        padding: 0 12px;
    }

    .hero-content {
        justify-content: flex-end;
        padding-bottom: 48px;
    }

    .highlights,
    .features {
        grid-template-columns: 1fr;
    }
}
