:root {
    --lp-primary: #1a56db;
    --lp-primary-soft: #8db6e1;
    --lp-primary-dark: #1240a8;
    --lp-slate: #051229;
    --lp-slate-soft: #27354d;
    --lp-muted: #364052;
    --lp-muted-2: #7e8590;
    --lp-border: #ced7e0;
    --lp-bg: #f7f7f7;
    --lp-bg-muted: #e1e8f0;
    --lp-bg-soft: #dfecfd;
    --lp-ff-body: "Lato", "Segoe UI", system-ui, sans-serif;
    --lp-ff-heading: "Libre Franklin", "Segoe UI", system-ui, sans-serif;
}

.lp-body {
    margin: 0;
    font-family: var(--lp-ff-body);
    font-size: 15px;
    line-height: 1.55;
    color: var(--lp-muted);
    background: var(--lp-bg);
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
}

.lp-header {
    position: sticky;
    top: 0;
    z-index: 1030;
    background: #fff;
    border-bottom: 1px solid var(--lp-border);
}

.lp-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 4.25rem;
    gap: 1rem;
}

.lp-brand {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: var(--lp-slate);
}

.lp-logo {
    height: 42px;
    width: auto;
    object-fit: contain;
}

.lp-brand-text {
    font-family: var(--lp-ff-heading);
    font-weight: 600;
    font-size: 0.8rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--lp-primary);
    border-left: 1px solid var(--lp-border);
    padding-left: 0.75rem;
    line-height: 1.2;
}

.lp-nav {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.lp-nav-link {
    color: var(--lp-muted);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
}

.lp-nav-link:hover {
    color: var(--lp-primary);
}

.lp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    border: none;
    border-radius: 0.35rem;
    font-family: var(--lp-ff-body);
    font-weight: 700;
    font-size: 0.9rem;
    padding: 0.7rem 1.25rem;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.15s, color 0.15s, border-color 0.15s;
}

.lp-btn-sm {
    padding: 0.5rem 1.05rem;
    font-size: 0.85rem;
}

.lp-btn-primary {
    background: var(--lp-primary);
    color: #fff;
}

.lp-btn-primary:hover {
    background: var(--lp-primary-dark);
    color: #fff;
}

.lp-btn-ghost {
    background: #fff;
    color: var(--lp-slate);
    border: 1px solid var(--lp-border);
}

.lp-btn-ghost:hover {
    border-color: var(--lp-primary);
    color: var(--lp-primary);
}

.lp-btn-light {
    background: #fff;
    color: var(--lp-slate);
}

.lp-btn-light:hover {
    background: var(--lp-bg-soft);
    color: var(--lp-slate);
}

.lp-hero {
    padding: 3.75rem 0 3rem;
    background:
        linear-gradient(180deg, var(--lp-bg-soft) 0%, #fff 55%);
    border-bottom: 1px solid var(--lp-border);
}

.lp-kicker {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--lp-primary);
    margin-bottom: 0.75rem;
}

.lp-hero-title {
    font-family: var(--lp-ff-heading);
    font-weight: 700;
    font-size: clamp(1.85rem, 3.4vw, 2.5rem);
    line-height: 1.2;
    max-width: 18ch;
    margin: 0 0 0.85rem;
    color: var(--lp-slate);
}

.lp-hero-lead {
    font-size: 1.05rem;
    line-height: 1.65;
    max-width: 38rem;
    color: var(--lp-muted);
    margin: 0 0 1.5rem;
}

.lp-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    align-items: center;
}

.lp-section {
    padding: 2.75rem 0;
}

.lp-section-muted {
    background: var(--lp-bg-muted);
}

.lp-section-title {
    font-family: var(--lp-ff-heading);
    font-weight: 700;
    font-size: clamp(1.35rem, 2.2vw, 1.7rem);
    line-height: 1.3;
    margin: 0 0 0.5rem;
    color: var(--lp-slate);
}

.lp-muted {
    color: var(--lp-muted-2);
    font-size: 0.95rem;
    line-height: 1.55;
}

.lp-card {
    background: #fff;
    border: 1px solid var(--lp-border);
    border-radius: 0.75rem;
    padding: 1.25rem 1.35rem;
    height: 100%;
}

.lp-card h3 {
    font-family: var(--lp-ff-heading);
    font-size: 1rem;
    font-weight: 700;
    margin: 0 0 0.5rem;
    color: var(--lp-slate);
}

.lp-flow {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

@media (min-width: 1200px) {
    .lp-flow {
        flex-direction: row;
        align-items: stretch;
        gap: 0.5rem;
    }

    .lp-flow > .lp-flow-step {
        flex: 1 1 0;
        min-width: 0;
    }

    .lp-flow-connector {
        align-self: center;
        flex: 0 0 auto;
        padding: 0 0.1rem;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--lp-primary);
        font-weight: 700;
        opacity: 0.75;
    }
}

.lp-flow-step {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.lp-flow-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    background: var(--lp-primary);
    color: #fff;
    font-size: 0.85rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 0.85rem;
    flex-shrink: 0;
}

.lp-flow-title {
    display: block;
    font-family: var(--lp-ff-heading);
    font-size: 1rem;
    font-weight: 700;
    color: var(--lp-slate);
    margin: 0 0 0.45rem;
    line-height: 1.35;
}

.lp-flow-connector {
    display: none;
}

.lp-band-cta {
    background: linear-gradient(135deg, var(--lp-slate) 0%, var(--lp-slate-soft) 100%);
    color: #f8fafc;
    border-radius: 0.75rem;
    padding: 2rem 1.75rem;
    text-align: center;
}

.lp-band-cta h2 {
    font-family: var(--lp-ff-heading);
    font-weight: 700;
    color: #fff;
    margin: 0 0 0.65rem;
    font-size: clamp(1.2rem, 2vw, 1.45rem);
    line-height: 1.35;
}

.lp-band-cta p {
    opacity: 0.9;
    max-width: 34rem;
    margin: 0 auto 1.25rem;
    font-size: 0.95rem;
    color: #a9b0b8;
}

.lp-footer {
    padding: 1.75rem 0 2rem;
    color: var(--lp-muted-2);
    background: #fff;
    border-top: 1px solid var(--lp-border);
}

.lp-footer a {
    color: var(--lp-primary);
    text-decoration: none;
}

.lp-modal {
    border: none;
    border-radius: 0.75rem;
    box-shadow: 0 16px 48px rgba(5, 18, 41, 0.16);
}

.lp-modal .modal-header,
.lp-modal .modal-body {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

.lp-modal .modal-body {
    padding-bottom: 1.75rem;
}

.lp-modal .modal-title {
    font-family: var(--lp-ff-heading);
    font-weight: 700;
    color: var(--lp-slate);
}

.lp-login-choice {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.lp-login-option {
    text-align: left;
    background: #fff;
    border: 1px solid var(--lp-border);
    border-radius: 0.5rem;
    padding: 1rem 1.1rem;
    cursor: pointer;
    transition: border-color 0.15s, box-shadow 0.15s;
}

.lp-login-option:hover {
    border-color: var(--lp-primary);
    box-shadow: 0 0 0 3px rgba(26, 86, 219, 0.12);
}

.lp-login-option-title {
    display: block;
    font-weight: 700;
    font-family: var(--lp-ff-heading);
    color: var(--lp-slate);
    margin-bottom: 0.2rem;
}

.lp-login-option-desc {
    display: block;
    font-size: 0.875rem;
    color: var(--lp-muted-2);
}

.lp-back-link {
    border: none;
    background: transparent;
    color: var(--lp-primary);
    font-size: 0.875rem;
    font-weight: 600;
    padding: 0;
    margin-bottom: 0.75rem;
    cursor: pointer;
}

.lp-back-link:hover {
    text-decoration: underline;
}

.lp-link-btn {
    border: none;
    background: transparent;
    color: var(--lp-primary);
    font-family: var(--lp-ff-body);
    font-size: 0.875rem;
    font-weight: 600;
    padding: 0;
    cursor: pointer;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.lp-link-btn:hover {
    color: var(--lp-primary-dark);
}

.lp-modal .form-control:focus {
    border-color: var(--lp-primary);
    box-shadow: 0 0 0 0.2rem rgba(26, 86, 219, 0.15);
}

@media (max-width: 576px) {
    .lp-hero {
        padding-top: 2.5rem;
    }

    .lp-hero-title {
        max-width: none;
    }

    .lp-brand-text {
        display: none;
    }
}
