@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700;800&display=swap");

:root {
    --bg: #14100e;
    --bg-soft: #1c1612;
    --surface: #221c18;
    --text: #f8f1eb;
    --muted: #b5a498;
    --border: rgba(255, 250, 245, 0.12);
    --accent: #e85d04;
    --accent-hover: #f48c06;
    --accent-soft: rgba(232, 93, 4, 0.18);
    --error: #f87171;
    --shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
    --nav-h: 4.25rem;
    --radius: 14px;
    --font: "Outfit", system-ui, sans-serif;
    --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: var(--font);
    background: var(--bg);
    color: var(--text);
    -webkit-font-smoothing: antialiased;
    line-height: 1.5;
}

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

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

button,
input {
    font: inherit;
}

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

/* ——— Nav ——— */
.lp-nav {
    position: sticky;
    top: 0;
    z-index: 40;
    height: var(--nav-h);
    display: flex;
    align-items: center;
    backdrop-filter: blur(14px);
    background: rgba(20, 16, 14, 0.72);
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s var(--ease), background 0.3s var(--ease);
}

.lp-nav.is-scrolled {
    border-bottom-color: var(--border);
    background: rgba(20, 16, 14, 0.9);
}

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

.lp-brand {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    flex-shrink: 0;
}

.lp-mark {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: grid;
    place-items: center;
    font-weight: 800;
    font-size: 1.05rem;
    letter-spacing: -0.04em;
    background: linear-gradient(145deg, var(--accent), #9a3412);
    color: #fffaf5;
    box-shadow: 0 8px 20px rgba(232, 93, 4, 0.35);
}

.lp-brand-lockup {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-end;
    line-height: 1;
    gap: 0.05rem;
}

.lp-brand-name {
    font-weight: 800;
    font-size: 1.15rem;
    letter-spacing: -0.04em;
}

.lp-brand-tld {
    font-size: 0.58rem;
    font-weight: 700;
    opacity: 0.7;
    letter-spacing: 0.02em;
}

.lp-nav-links {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.lp-nav-links a,
.lp-nav-links button.lp-link-btn {
    display: inline-flex;
    align-items: center;
    padding: 0.55rem 0.85rem;
    border-radius: 10px;
    color: var(--muted);
    font-weight: 500;
    font-size: 0.95rem;
    border: 0;
    background: transparent;
    cursor: pointer;
    transition: color 0.2s ease, background 0.2s ease;
}

.lp-nav-links a:hover,
.lp-link-btn:hover {
    color: var(--text);
    background: rgba(255, 255, 255, 0.05);
}

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

.lp-nav-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border-radius: 10px;
    border: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.04);
    color: var(--text);
    cursor: pointer;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
}

.lp-nav-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    background: currentColor;
    border-radius: 2px;
    transition: transform 0.25s var(--ease), opacity 0.2s ease;
}

.lp-nav.is-open .lp-nav-toggle span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.lp-nav.is-open .lp-nav-toggle span:nth-child(2) {
    opacity: 0;
}

.lp-nav.is-open .lp-nav-toggle span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ——— Buttons ——— */
.lp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    min-height: 48px;
    padding: 0.75rem 1.35rem;
    border-radius: 12px;
    border: 1px solid transparent;
    font-weight: 600;
    font-size: 0.98rem;
    cursor: pointer;
    transition: transform 0.2s var(--ease), background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

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

.lp-btn:active {
    transform: translateY(0);
}

.lp-btn-primary {
    background: var(--accent);
    color: #fffaf5;
    box-shadow: 0 10px 28px rgba(232, 93, 4, 0.35);
}

.lp-btn-primary:hover {
    background: var(--accent-hover);
}

.lp-btn-ghost {
    background: rgba(255, 255, 255, 0.06);
    border-color: var(--border);
    color: var(--text);
}

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

.lp-btn-nav-primary {
    min-height: 40px;
    padding: 0.5rem 1rem;
    font-size: 0.92rem;
}

.lp-btn-block {
    width: 100%;
}

/* ——— Hero ——— */
.lp-hero {
    position: relative;
    min-height: calc(100dvh - var(--nav-h));
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    isolation: isolate;
}

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

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

@keyframes lp-hero-ken {
    from {
        transform: scale(1.04) translate(0, 0);
    }
    to {
        transform: scale(1.1) translate(-1.5%, -1%);
    }
}

.lp-hero-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(20, 16, 14, 0.35) 0%, rgba(20, 16, 14, 0.55) 42%, rgba(20, 16, 14, 0.94) 100%),
        linear-gradient(90deg, rgba(20, 16, 14, 0.55) 0%, transparent 55%);
}

.lp-hero-inner {
    width: min(1120px, calc(100% - 2.5rem));
    margin: 0 auto;
    padding: clamp(3rem, 8vh, 5.5rem) 0 clamp(3.5rem, 9vh, 6rem);
    animation: lp-rise 0.85s var(--ease) both;
}

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

.lp-hero-brand {
    margin: 0 0 1.25rem;
    font-size: clamp(2.8rem, 8vw, 4.6rem);
    font-weight: 800;
    letter-spacing: -0.05em;
    line-height: 0.95;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.15rem;
}

.lp-hero-brand .lp-brand-tld {
    font-size: 0.38em;
    font-weight: 700;
    letter-spacing: 0.01em;
    color: rgba(248, 241, 235, 0.72);
}

.lp-hero-title {
    margin: 0;
    max-width: 16ch;
    font-size: clamp(1.55rem, 3.4vw, 2.15rem);
    font-weight: 600;
    letter-spacing: -0.03em;
    line-height: 1.2;
    color: #fffaf5;
}

.lp-hero-lead {
    margin: 1rem 0 0;
    max-width: 36rem;
    font-size: clamp(1.02rem, 2vw, 1.15rem);
    color: rgba(248, 241, 235, 0.78);
    line-height: 1.55;
}

.lp-hero-ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1.75rem;
}

/* ——— Sections ——— */
.lp-section {
    padding: clamp(4rem, 9vw, 6.5rem) 0;
}

.lp-section-head {
    max-width: 36rem;
    margin-bottom: clamp(2rem, 5vw, 3rem);
}

.lp-eyebrow {
    display: inline-block;
    margin: 0 0 0.75rem;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--accent-hover);
}

.lp-section-head h2 {
    margin: 0;
    font-size: clamp(1.7rem, 3.5vw, 2.35rem);
    font-weight: 700;
    letter-spacing: -0.035em;
    line-height: 1.15;
}

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

.lp-features {
    background:
        radial-gradient(ellipse 50% 40% at 0% 0%, rgba(232, 93, 4, 0.12), transparent 55%),
        var(--bg);
}

.lp-feature-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.25rem 2.5rem;
}

.lp-feature {
    padding: 1.15rem 0;
    border-top: 1px solid var(--border);
    animation: lp-rise 0.7s var(--ease) both;
}

.lp-feature:nth-child(1) { animation-delay: 0.05s; }
.lp-feature:nth-child(2) { animation-delay: 0.1s; }
.lp-feature:nth-child(3) { animation-delay: 0.15s; }
.lp-feature:nth-child(4) { animation-delay: 0.2s; }
.lp-feature:nth-child(5) { animation-delay: 0.25s; }
.lp-feature:nth-child(6) { animation-delay: 0.3s; }
.lp-feature:nth-child(7) { animation-delay: 0.35s; }
.lp-feature:nth-child(8) { animation-delay: 0.4s; }

.lp-feature h3 {
    margin: 0 0 0.45rem;
    font-size: 1.15rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.lp-feature p {
    margin: 0;
    color: var(--muted);
    font-size: 0.98rem;
    line-height: 1.55;
}

.lp-feature a,
.lp-nfce-panel a,
.lp-nfce-list a {
    color: var(--accent-hover);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 0.15em;
}

.lp-feature a:hover,
.lp-nfce-panel a:hover,
.lp-nfce-list a:hover {
    color: #fdba74;
}

.lp-how {
    background: var(--bg-soft);
}

.lp-steps {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 2rem;
    counter-reset: step;
}

.lp-step {
    position: relative;
    padding-top: 0.25rem;
}

.lp-step::before {
    counter-increment: step;
    content: counter(step, decimal-leading-zero);
    display: block;
    margin-bottom: 1rem;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: var(--accent);
}

.lp-step h3 {
    margin: 0 0 0.5rem;
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

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

.lp-nfce {
    background:
        radial-gradient(ellipse 60% 50% at 100% 50%, rgba(232, 93, 4, 0.14), transparent 55%),
        var(--bg);
}

.lp-nfce-panel {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 2.5rem;
    align-items: center;
}

.lp-nfce-panel h2 {
    margin: 0;
    font-size: clamp(1.7rem, 3.5vw, 2.35rem);
    font-weight: 700;
    letter-spacing: -0.035em;
    line-height: 1.15;
}

.lp-nfce-panel p {
    margin: 1rem 0 0;
    color: var(--muted);
    font-size: 1.05rem;
    max-width: 34rem;
}

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

.lp-nfce-list li {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
    color: var(--muted);
    font-size: 0.98rem;
}

.lp-nfce-list li::before {
    content: "";
    width: 8px;
    height: 8px;
    margin-top: 0.45rem;
    border-radius: 50%;
    background: var(--accent);
    flex-shrink: 0;
}

.lp-cta {
    background:
        linear-gradient(155deg, #e85d04 0%, #f48c06 42%, #9a3412 100%);
    color: #fffaf5;
}

.lp-cta .lp-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}

.lp-cta h2 {
    margin: 0;
    font-size: clamp(1.6rem, 3.2vw, 2.2rem);
    font-weight: 700;
    letter-spacing: -0.035em;
    max-width: 18ch;
}

.lp-cta p {
    margin: 0.6rem 0 0;
    max-width: 32rem;
    color: rgba(255, 250, 245, 0.82);
}

.lp-cta .lp-btn-primary {
    background: #1c1410;
    color: #fffaf5;
    box-shadow: none;
}

.lp-cta .lp-btn-primary:hover {
    background: #2a201a;
}

.lp-cta .lp-btn-ghost {
    border-color: rgba(255, 250, 245, 0.35);
    background: transparent;
    color: #fffaf5;
}

.lp-cta .lp-btn-ghost:hover {
    background: rgba(255, 250, 245, 0.1);
}

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

/* ——— Footer ——— */
.lp-footer {
    padding: 2.5rem 0 3rem;
    border-top: 1px solid var(--border);
    background: #100d0b;
}

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

.lp-footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem 1.25rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.lp-footer-links a,
.lp-footer-links button {
    color: var(--muted);
    font-size: 0.92rem;
    font-weight: 500;
    border: 0;
    background: none;
    cursor: pointer;
    padding: 0;
    font-family: inherit;
}

.lp-footer-links a:hover,
.lp-footer-links button:hover {
    color: var(--text);
}

.lp-footer-copy {
    margin: 1.5rem 0 0;
    color: rgba(181, 164, 152, 0.65);
    font-size: 0.85rem;
}

/* ——— Modal ——— */
.lp-modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 80;
    display: grid;
    place-items: center;
    padding: 1.25rem;
    background: rgba(8, 6, 5, 0.72);
    backdrop-filter: blur(8px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.28s var(--ease), visibility 0.28s var(--ease);
}

.lp-modal-overlay.is-open {
    opacity: 1;
    visibility: visible;
}

.lp-modal {
    width: min(420px, 100%);
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 18px;
    box-shadow: var(--shadow);
    padding: 1.5rem 1.5rem 1.35rem;
    transform: translateY(14px) scale(0.98);
    transition: transform 0.3s var(--ease);
}

.lp-modal-overlay.is-open .lp-modal {
    transform: translateY(0) scale(1);
}

.lp-modal-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 0.35rem;
}

.lp-modal-head h2 {
    margin: 0;
    font-size: 1.45rem;
    font-weight: 700;
    letter-spacing: -0.03em;
}

.lp-modal-close {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    border: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.04);
    color: var(--text);
    cursor: pointer;
    font-size: 1.25rem;
    line-height: 1;
}

.lp-modal-lead {
    margin: 0 0 1.25rem;
    color: var(--muted);
    font-size: 0.95rem;
}

.lp-field {
    margin-bottom: 0.95rem;
}

.lp-field label {
    display: block;
    margin-bottom: 0.35rem;
    font-size: 0.88rem;
    font-weight: 600;
    color: rgba(248, 241, 235, 0.88);
}

.lp-field input {
    width: 100%;
    min-height: 46px;
    padding: 0.65rem 0.85rem;
    border-radius: 11px;
    border: 1px solid var(--border);
    background: #161210;
    color: var(--text);
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.lp-field input:focus {
    border-color: rgba(232, 93, 4, 0.65);
    box-shadow: 0 0 0 3px var(--accent-soft);
}

.lp-alert {
    margin: 0 0 1rem;
    padding: 0.75rem 0.9rem;
    border-radius: 10px;
    font-size: 0.9rem;
    line-height: 1.4;
}

.lp-alert-error {
    background: rgba(248, 113, 113, 0.12);
    color: #fecaca;
    border: 1px solid rgba(248, 113, 113, 0.28);
}

.lp-alert-success {
    background: rgba(74, 222, 128, 0.12);
    color: #bbf7d0;
    border: 1px solid rgba(74, 222, 128, 0.28);
}

.lp-text-btn {
    border: 0;
    background: none;
    padding: 0;
    margin: 0;
    color: var(--accent-hover);
    font: inherit;
    font-weight: 600;
    font-size: inherit;
    cursor: pointer;
}

.lp-text-btn:hover {
    text-decoration: underline;
}

.lp-field-hint {
    margin: 0.35rem 0 0;
    font-size: 0.82rem;
    color: var(--muted);
}

.lp-form-secondary {
    margin-top: 0.75rem;
}

.lp-modal-links {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    margin-top: 1rem;
    font-size: 0.9rem;
    color: var(--muted);
}

.lp-modal-links a {
    color: var(--accent-hover);
    font-weight: 600;
}

.lp-modal-links a:hover {
    text-decoration: underline;
}

body.lp-modal-open {
    overflow: hidden;
}

/* ——— Mobile ——— */
@media (max-width: 860px) {
    .lp-nav-toggle {
        display: inline-flex;
    }

    .lp-nav-panel {
        position: fixed;
        top: var(--nav-h);
        left: 0;
        right: 0;
        padding: 1rem 1.25rem 1.25rem;
        background: rgba(20, 16, 14, 0.96);
        border-bottom: 1px solid var(--border);
        display: none;
        flex-direction: column;
        gap: 0.75rem;
        max-height: calc(100dvh - var(--nav-h));
        overflow: auto;
    }

    .lp-nav.is-open .lp-nav-panel {
        display: flex;
        animation: lp-rise 0.35s var(--ease) both;
    }

    .lp-nav-links {
        flex-direction: column;
        align-items: stretch;
        width: 100%;
    }

    .lp-nav-links a,
    .lp-nav-links button.lp-link-btn {
        width: 100%;
        justify-content: flex-start;
        padding: 0.85rem 0.75rem;
    }

    .lp-nav-actions {
        width: 100%;
        flex-direction: column;
    }

    .lp-nav-actions .lp-btn {
        width: 100%;
    }

    .lp-desktop-actions {
        display: none;
    }

    .lp-feature-grid,
    .lp-steps,
    .lp-nfce-panel {
        grid-template-columns: 1fr;
    }
}

@media (min-width: 861px) {
    .lp-nav-panel {
        display: flex;
        align-items: center;
        gap: 1.25rem;
    }

    .lp-mobile-actions {
        display: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation: none !important;
        transition: none !important;
        scroll-behavior: auto !important;
    }

    .lp-hero-media img {
        transform: none;
    }
}
