:root {
    --lp-forest: #0f3d24;
    --lp-forest-deep: #0a2e1a;
    --lp-leaf: #16a34a;
    --lp-leaf-bright: #22c55e;
    --lp-mint: #ecfdf5;
    --lp-fog: #f3f7f4;
    --lp-ink: #14261c;
    --lp-muted: #5b6f63;
    --lp-cream: #f7faf8;
    --lp-max: 1120px;
    --lp-font: 'Plus Jakarta Sans', system-ui, sans-serif;
    --lp-display: 'Sora', 'Plus Jakarta Sans', sans-serif;
}

*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    margin: 0;
    font-family: var(--lp-font);
    color: var(--lp-ink);
    background: var(--lp-cream);
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

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

.lp-container {
    width: min(100% - 2.5rem, var(--lp-max));
    margin-inline: auto;
}

/* ─── Nav ─── */
.lp-nav {
    position: fixed;
    inset: 0 0 auto;
    z-index: 50;
    padding: 1rem 0;
    transition: background 0.35s ease, box-shadow 0.35s ease, padding 0.35s ease;
}

.lp-nav.is-scrolled {
    background: rgba(10, 46, 26, 0.92);
    backdrop-filter: blur(12px);
    box-shadow: 0 8px 30px rgba(10, 46, 26, 0.25);
    padding: 0.65rem 0;
}

.lp-nav-inner {
    width: min(100% - 2.5rem, var(--lp-max));
    margin-inline: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.lp-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #fff;
}

.lp-brand-mark {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    background: rgba(255, 255, 255, 0.16);
    font-size: 1.25rem;
    flex-shrink: 0;
}

.lp-brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.lp-brand-text strong {
    font-family: var(--lp-display);
    font-weight: 700;
    font-size: 0.98rem;
}

.lp-brand-text small {
    font-size: 0.72rem;
    opacity: 0.72;
    font-weight: 500;
}

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

/* ─── Buttons ─── */
.lp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    padding: 0.55rem 1.1rem;
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.9rem;
    border: 1.5px solid transparent;
    transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

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

.lp-btn-lg {
    padding: 0.85rem 1.45rem;
    font-size: 0.95rem;
}

.lp-btn-primary {
    background: var(--lp-leaf-bright);
    color: var(--lp-forest-deep);
}

.lp-btn-primary:hover { background: #4ade80; }

.lp-btn-ghost {
    color: rgba(255, 255, 255, 0.9);
    border-color: rgba(255, 255, 255, 0.28);
}

.lp-btn-ghost:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

.lp-btn-outline {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.45);
    background: transparent;
}

.lp-btn-outline:hover {
    background: rgba(255, 255, 255, 0.12);
}

/* ─── Hero ─── */
.lp-hero {
    position: relative;
    min-height: 100svh;
    display: grid;
    align-items: end;
    color: #fff;
    overflow: hidden;
}

.lp-hero-media {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.lp-hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transform: scale(1.04);
    animation: lp-ken 18s ease-out forwards;
}

@keyframes lp-ken {
    from { transform: scale(1.08); }
    to { transform: scale(1); }
}

.lp-hero-scrim {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(105deg, rgba(10, 46, 26, 0.88) 0%, rgba(10, 46, 26, 0.62) 42%, rgba(10, 46, 26, 0.28) 70%, rgba(10, 46, 26, 0.45) 100%),
        linear-gradient(to top, rgba(10, 46, 26, 0.75) 0%, transparent 45%);
}

.lp-hero-content {
    position: relative;
    z-index: 1;
    width: min(100% - 2.5rem, var(--lp-max));
    margin: 0 auto;
    padding: 7.5rem 0 4.5rem;
    max-width: 36rem;
    margin-left: max(1.25rem, calc((100% - var(--lp-max)) / 2));
    animation: lp-rise 0.9s ease-out both;
}

@keyframes lp-rise {
    from { opacity: 0; transform: translateY(28px); }
    to { opacity: 1; transform: translateY(0); }
}

.lp-hero-brand {
    font-family: var(--lp-display);
    font-weight: 800;
    font-size: clamp(2.35rem, 6.5vw, 4rem);
    letter-spacing: -0.035em;
    margin: 0 0 0.85rem;
    line-height: 1.05;
    color: #fff;
    text-shadow: 0 2px 28px rgba(0, 0, 0, 0.28);
}

.lp-hero-title {
    font-family: var(--lp-display);
    font-weight: 600;
    font-size: clamp(1.25rem, 2.8vw, 1.65rem);
    letter-spacing: -0.02em;
    line-height: 1.25;
    margin: 0 0 0.85rem;
    color: rgba(236, 253, 245, 0.95);
}

.lp-hero-lead {
    margin: 0 0 1.75rem;
    font-size: 1.05rem;
    line-height: 1.6;
    color: rgba(236, 253, 245, 0.88);
    max-width: 32rem;
}

.lp-hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

/* ─── Sections ─── */
.lp-section {
    padding: 5rem 0;
}

.lp-section-tint {
    background:
        radial-gradient(ellipse 80% 60% at 100% 0%, rgba(34, 197, 94, 0.12), transparent 55%),
        linear-gradient(180deg, #e8f5ec 0%, var(--lp-fog) 100%);
}

.lp-section-head {
    max-width: 34rem;
    margin-bottom: 2.75rem;
}

.lp-section-head h2,
.lp-split-copy h2 {
    font-family: var(--lp-display);
    font-size: clamp(1.6rem, 3vw, 2.1rem);
    letter-spacing: -0.025em;
    margin: 0 0 0.65rem;
    color: var(--lp-forest);
}

.lp-section-head p,
.lp-split-copy p {
    margin: 0;
    color: var(--lp-muted);
    font-size: 1.05rem;
}

.lp-steps {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 2rem 2.5rem;
}

@media (min-width: 768px) {
    .lp-steps { grid-template-columns: repeat(3, 1fr); }
}

.lp-step {
    animation: lp-rise 0.8s ease-out both;
}

.lp-step:nth-child(2) { animation-delay: 0.12s; }
.lp-step:nth-child(3) { animation-delay: 0.24s; }

.lp-step-num {
    display: block;
    font-family: var(--lp-display);
    font-weight: 800;
    font-size: 0.85rem;
    letter-spacing: 0.08em;
    color: var(--lp-leaf);
    margin-bottom: 0.85rem;
}

.lp-step h3 {
    margin: 0 0 0.5rem;
    font-size: 1.15rem;
    color: var(--lp-forest);
}

.lp-step p {
    margin: 0;
    color: var(--lp-muted);
    font-size: 0.95rem;
}

.lp-split {
    display: grid;
    gap: 2.5rem;
    align-items: center;
}

@media (min-width: 860px) {
    .lp-split { grid-template-columns: 1.1fr 0.9fr; gap: 4rem; }
}

.lp-points {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 1rem;
}

.lp-points li {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    font-weight: 550;
    color: var(--lp-forest);
    font-size: 1rem;
}

.lp-points i {
    color: var(--lp-leaf);
    font-size: 1.25rem;
    margin-top: 0.1rem;
}

/* ─── Footer ─── */
.lp-footer {
    background: var(--lp-forest-deep);
    color: rgba(236, 253, 245, 0.85);
    padding: 2.25rem 0;
}

.lp-footer-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1.25rem;
}

.lp-footer-brand {
    display: flex;
    align-items: center;
    gap: 0.85rem;
}

.lp-footer-brand strong {
    display: block;
    font-family: var(--lp-display);
    color: #fff;
}

.lp-footer-brand p {
    margin: 0.15rem 0 0;
    font-size: 0.85rem;
    opacity: 0.7;
}

.lp-footer-copy {
    margin: 0;
    font-size: 0.85rem;
    opacity: 0.65;
}

@media (max-width: 768px) {
    .lp-container {
        width: min(100% - 1.75rem, var(--lp-max));
    }

    .lp-nav {
        padding: 0.75rem 0;
    }

    .lp-nav-inner {
        width: min(100% - 1.75rem, var(--lp-max));
    }

    .lp-brand-mark {
        width: 38px;
        height: 38px;
        font-size: 1.1rem;
    }

    .lp-brand-text strong {
        font-size: 0.9rem;
    }

    .lp-hero {
        min-height: 100svh;
        align-items: end;
    }

    .lp-hero-scrim {
        background:
            linear-gradient(180deg, rgba(10, 46, 26, 0.55) 0%, rgba(10, 46, 26, 0.72) 40%, rgba(10, 46, 26, 0.9) 100%);
    }

    .lp-hero-content {
        width: min(100% - 1.75rem, var(--lp-max));
        max-width: none;
        margin: 0 auto;
        padding: 6.5rem 0 3rem;
        margin-left: auto;
    }

    .lp-hero-brand {
        font-size: clamp(1.85rem, 9vw, 2.5rem);
    }

    .lp-hero-title {
        font-size: 1.15rem;
    }

    .lp-hero-lead {
        font-size: 0.95rem;
        margin-bottom: 1.35rem;
    }

    .lp-hero-cta {
        flex-direction: column;
        align-items: stretch;
    }

    .lp-hero-cta .lp-btn {
        width: 100%;
        text-align: center;
    }

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

    .lp-section-head {
        margin-bottom: 1.75rem;
    }

    .lp-steps {
        gap: 1.5rem;
    }

    .lp-footer {
        padding: 1.75rem 0;
    }

    .lp-footer-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
}

@media (max-width: 560px) {
    .lp-brand-text small { display: none; }

    .lp-btn {
        padding: 0.6rem 1rem;
        font-size: 0.88rem;
    }

    .lp-btn-lg {
        padding: 0.8rem 1.2rem;
        font-size: 0.92rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .lp-hero-media img,
    .lp-hero-content,
    .lp-step {
        animation: none;
    }

    .lp-btn:hover { transform: none; }

    html { scroll-behavior: auto; }
}
