:root {
    --color-primary: #066ac4;
    --color-secondary: #09abdb;
    --color-accent: #2dcdf1;
    --color-navy: #0b1f2a;
    --color-dark: #071923;
    --color-gray: #5e6b73;
    --color-border: #d9eef7;
    --color-bg: #f5fbff;
    --color-white: #ffffff;
    --gradient-brand: linear-gradient(135deg, #066ac4 0%, #09abdb 48%, #2dcdf1 100%);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body.lp-page {
    margin: 0;
    min-height: 100vh;
    background: var(--color-bg);
    color: var(--color-navy);
    font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.lp-container {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
}

.lp-header {
    position: sticky;
    top: 0;
    z-index: 50;
    border-bottom: 1px solid rgba(217, 238, 247, 0.9);
    background: rgba(245, 251, 255, 0.9);
    backdrop-filter: blur(16px);
}

.lp-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 76px;
    gap: 24px;
}

.lp-brand {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}

.lp-brand img {
    display: block;
    height: auto;
}

.lp-nav {
    display: flex;
    align-items: center;
    gap: 22px;
}

.lp-nav a,
.lp-footer a {
    color: var(--color-navy);
    font-weight: 700;
    text-decoration: none;
}

.lp-nav a:hover,
.lp-footer a:hover {
    color: var(--color-primary);
}

.lp-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 20px;
    border: 1px solid var(--color-border);
    border-radius: 8px;
    font-weight: 800;
    text-decoration: none;
    transition: transform 160ms ease, box-shadow 160ms ease;
}

.lp-button:hover {
    transform: translateY(-1px);
}

.lp-button--primary {
    border-color: transparent;
    background: var(--gradient-brand);
    color: var(--color-white) !important;
    box-shadow: 0 16px 32px rgba(6, 106, 196, 0.2);
}

.lp-button--secondary {
    background: rgba(255, 255, 255, 0.72);
    color: var(--color-primary);
}

.lp-menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 1px solid var(--color-border);
    border-radius: 8px;
    background: var(--color-white);
}

.lp-menu-toggle span:not(.visually-hidden) {
    display: block;
    width: 18px;
    height: 2px;
    margin: 4px auto;
    border-radius: 999px;
    background: var(--color-navy);
}

.lp-hero {
    min-height: calc(100vh - 76px);
    display: flex;
    align-items: center;
    padding: 96px 0;
}

.lp-hero__inner {
    max-width: 780px;
    text-align: center;
}

.lp-eyebrow {
    margin: 0 0 18px;
    color: var(--color-primary);
    font-size: 0.86rem;
    font-weight: 900;
    text-transform: uppercase;
}

.lp-hero h1 {
    margin: 0;
    color: var(--color-dark);
    font-family: Sora, Inter, sans-serif;
    font-size: clamp(2.5rem, 7vw, 5.25rem);
    line-height: 0.98;
    letter-spacing: 0;
}

.lp-hero__copy {
    max-width: 660px;
    margin: 24px auto 0;
    color: var(--color-gray);
    font-size: 1.16rem;
    line-height: 1.75;
}

.lp-hero__actions {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 34px;
}

.lp-footer {
    border-top: 1px solid var(--color-border);
    background: var(--color-white);
}

.lp-footer__inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 36px;
    padding: 42px 0;
}

.lp-footer p {
    max-width: 520px;
    margin: 16px 0 0;
    color: var(--color-gray);
    line-height: 1.65;
}

.lp-footer__links {
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 18px;
}

.lp-footer__bottom {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    padding: 18px 0 28px;
    color: var(--color-gray);
    font-size: 0.94rem;
}

@media (max-width: 820px) {
    .lp-header__inner {
        min-height: 68px;
    }

    .lp-menu-toggle {
        display: inline-block;
    }

    .lp-nav {
        position: absolute;
        left: 16px;
        right: 16px;
        top: calc(100% + 8px);
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 4px;
        padding: 16px;
        border: 1px solid var(--color-border);
        border-radius: 8px;
        background: var(--color-white);
        box-shadow: 0 22px 50px rgba(7, 25, 35, 0.12);
    }

    .lp-nav.is-open {
        display: flex;
    }

    .lp-nav a {
        padding: 12px 10px;
    }

    .lp-nav .lp-button {
        width: 100%;
    }

    .lp-hero {
        min-height: auto;
        padding: 72px 0;
    }

    .lp-footer__inner,
    .lp-footer__bottom {
        display: block;
    }

    .lp-footer__links {
        margin-top: 26px;
    }

    .lp-footer__bottom span {
        display: block;
        margin-top: 8px;
    }
}
