:root {
    --lp-bg: #07111f;
    --lp-bg-soft: #0d1828;
    --lp-surface: rgba(15, 25, 40, 0.88);
    --lp-surface-strong: rgba(20, 31, 49, 0.96);
    --lp-card: rgba(255, 255, 255, 0.04);
    --lp-card-soft: rgba(255, 255, 255, 0.06);
    --lp-border: rgba(255, 255, 255, 0.09);
    --lp-text: #f6f8fb;
    --lp-muted: #9fb1c8;
    --lp-primary: #ffffff;
    --lp-accent: #3dd6c6;
    --lp-accent-strong: #11b8c1;
    --lp-accent-soft: rgba(61, 214, 198, 0.14);
    --lp-warning: #ffbe5c;
    --lp-danger-soft: rgba(255, 126, 95, 0.18);
    --lp-shadow-sm: 0 18px 40px rgba(0, 0, 0, 0.22);
    --lp-shadow-lg: 0 38px 90px rgba(0, 0, 0, 0.34);
    --lp-radius-md: 18px;
    --lp-radius-lg: 28px;
    --lp-radius-xl: 36px;
    --lp-max: 1200px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Poppins", "Segoe UI", sans-serif;
    color: var(--lp-text);
    background:
        radial-gradient(circle at top left, rgba(17, 184, 193, 0.18), transparent 24%),
        radial-gradient(circle at top right, rgba(255, 190, 92, 0.12), transparent 18%),
        linear-gradient(180deg, #06101c 0%, #0b1727 34%, #091422 100%);
}

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

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

.landing-shell {
    overflow: hidden;
}

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

.landing-header {
    position: sticky;
    top: 0;
    z-index: 40;
    backdrop-filter: blur(18px);
    background: rgba(6, 16, 28, 0.72);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.landing-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 14px 0;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.brand-mark {
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: var(--lp-shadow-sm);
}

.brand-mark img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.brand-copy strong {
    display: block;
    font-size: 18px;
    font-weight: 800;
    letter-spacing: 0.04em;
}

.brand-copy span {
    display: block;
    color: var(--lp-muted);
    font-size: 12px;
}

.landing-nav {
    display: none;
    align-items: center;
    gap: 20px;
}

.landing-nav a {
    color: var(--lp-muted);
    font-size: 14px;
    font-weight: 600;
}

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

.landing-header-actions {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 46px;
    padding: 0 18px;
    border-radius: 999px;
    border: 1px solid transparent;
    font-size: 14px;
    font-weight: 700;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

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

.btn-primary {
    background: linear-gradient(180deg, #ffffff 0%, #dae4f1 100%);
    color: #08111d;
    box-shadow: 0 16px 32px rgba(255, 255, 255, 0.1);
}

.btn-footer-primary {
    background: linear-gradient(180deg, #22344d 0%, #111d2f 100%);
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.08);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.24);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.02);
    border-color: rgba(255, 255, 255, 0.14);
    color: var(--lp-primary);
}

.btn-accent {
    background: linear-gradient(180deg, #47ead6 0%, var(--lp-accent-strong) 100%);
    color: #06101c;
    box-shadow: 0 18px 36px rgba(17, 184, 193, 0.22);
}

.btn-dark {
    background: linear-gradient(180deg, #1b2a41 0%, #101b2c 100%);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.08);
}

.hero {
    padding: 42px 0 28px;
}

.hero-grid {
    display: grid;
    gap: 28px;
}

.hero-copy {
    padding-top: 18px;
}

.hero-pill,
.section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border-radius: 999px;
    background: var(--lp-accent-soft);
    color: var(--lp-accent);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.hero h1 {
    margin: 18px 0 14px;
    font-size: clamp(2.5rem, 5vw, 5rem);
    line-height: 0.98;
    letter-spacing: -0.05em;
}

.hero-lead {
    margin: -4px 0 14px;
    color: #dce7f4;
    font-size: clamp(1.05rem, 2.2vw, 1.45rem);
    font-weight: 700;
    line-height: 1.4;
}

.hero p {
    margin: 0;
    max-width: 640px;
    color: var(--lp-muted);
    font-size: 16px;
    line-height: 1.78;
}

.hero-message-band {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 22px;
}

.hero-message-band span {
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #dbe8f6;
    font-size: 13px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 26px;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-top: 28px;
}

.hero-stat {
    padding: 18px;
    border: 1px solid var(--lp-border);
    border-radius: var(--lp-radius-md);
    background: rgba(255, 255, 255, 0.04);
    box-shadow: var(--lp-shadow-sm);
}

.hero-stat strong {
    display: block;
    margin-bottom: 6px;
    font-size: 24px;
    font-weight: 800;
}

.hero-stat span {
    color: var(--lp-muted);
    font-size: 13px;
    line-height: 1.6;
}

.hero-visual-card,
.benefit-card,
.ecosystem-card,
.business-card,
.value-card,
.price-card,
.cta-card {
    border: 1px solid var(--lp-border);
    border-radius: var(--lp-radius-lg);
    background: var(--lp-surface);
    box-shadow: var(--lp-shadow-sm);
}

.hero-visual-card {
    padding: 20px;
}

.hero-orbit {
    position: relative;
    min-height: 540px;
    overflow: hidden;
    border-radius: var(--lp-radius-lg);
    background:
        radial-gradient(circle at center, rgba(61, 214, 198, 0.12), transparent 34%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.02) 100%);
}

.hero-orbit::before,
.hero-orbit::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    border: 1px dashed rgba(255, 255, 255, 0.12);
}

.hero-orbit::before {
    inset: 90px 70px;
}

.hero-orbit::after {
    inset: 36px;
}

.orbit-core {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 220px;
    height: 220px;
    padding: 30px 24px;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    text-align: center;
    background: linear-gradient(180deg, rgba(61, 214, 198, 0.18) 0%, rgba(17, 184, 193, 0.08) 100%);
    border: 1px solid rgba(61, 214, 198, 0.28);
    box-shadow: 0 26px 60px rgba(17, 184, 193, 0.2);
}

.orbit-kicker {
    display: block;
    margin-bottom: 8px;
    color: var(--lp-accent);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.orbit-core strong {
    display: block;
    font-size: 36px;
    font-weight: 800;
    letter-spacing: 0.05em;
}

.orbit-core p {
    margin-top: 10px;
    color: #d6e5f5;
    font-size: 14px;
    line-height: 1.6;
}

.orbit-node {
    position: absolute;
    width: min(270px, calc(100% - 48px));
    padding: 18px;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: var(--lp-surface-strong);
    box-shadow: var(--lp-shadow-sm);
}

.orbit-node-soft {
    top: 34px;
    right: 22px;
}

.orbit-node-store {
    top: 92px;
    left: 22px;
}

.orbit-node-mobile {
    bottom: 34px;
    right: 28px;
}

.orbit-node-shop {
    bottom: 84px;
    left: 22px;
}

.orbit-node-tag,
.ecosystem-status {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 30px;
    padding: 0 12px;
    border-radius: 999px;
    background: rgba(61, 214, 198, 0.14);
    color: var(--lp-accent);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.orbit-node h3,
.ecosystem-card h3,
.value-card h3,
.price-card h3 {
    margin: 12px 0 10px;
    font-size: 22px;
}

.orbit-node p,
.ecosystem-card p,
.business-card p,
.value-card p,
.price-card p {
    margin: 0;
    color: var(--lp-muted);
    font-size: 14px;
    line-height: 1.72;
}

.section {
    padding: 38px 0;
}

.section-head {
    margin-bottom: 26px;
    text-align: center;
}

.section-head h2 {
    margin: 14px 0 10px;
    font-size: clamp(1.95rem, 4vw, 3.3rem);
    line-height: 1.06;
}

.section-head p {
    width: min(100%, 760px);
    margin: 0 auto;
    color: var(--lp-muted);
    font-size: 15px;
    line-height: 1.8;
}

.ecosystem-grid,
.business-grid,
.value-grid,
.pricing-grid,
.footer-grid {
    display: grid;
    gap: 16px;
}

.ecosystem-card,
.business-card,
.value-card,
.price-card {
    padding: 22px;
}

.ecosystem-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.ecosystem-icon,
.value-icon {
    width: 54px;
    height: 54px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(61, 214, 198, 0.18) 0%, rgba(255, 255, 255, 0.05) 100%);
    color: var(--lp-primary);
    font-size: 22px;
}

.ecosystem-status-soon {
    background: rgba(255, 190, 92, 0.15);
    color: var(--lp-warning);
}

.ecosystem-status-future {
    background: var(--lp-danger-soft);
    color: #ff9e86;
}

.ecosystem-card ul,
.price-card ul {
    margin: 16px 0 0;
    padding: 0;
    list-style: none;
}

.ecosystem-card li,
.price-card li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 10px;
    color: #d6e2ef;
    font-size: 14px;
    line-height: 1.58;
}

.ecosystem-card li i,
.price-card li i {
    color: var(--lp-accent);
    margin-top: 3px;
}

.ecosystem-card-featured {
    background:
        radial-gradient(circle at top right, rgba(61, 214, 198, 0.12), transparent 24%),
        var(--lp-surface-strong);
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 18px;
    color: var(--lp-primary);
    font-size: 14px;
    font-weight: 700;
}

.text-link-static {
    color: var(--lp-muted);
}

.business-card strong {
    display: block;
    margin-bottom: 8px;
    font-size: 18px;
}

.value-card {
    position: relative;
    overflow: hidden;
}

.value-card::after {
    content: "";
    position: absolute;
    inset: auto -30px -40px auto;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: rgba(61, 214, 198, 0.08);
}

.message-strip {
    display: grid;
    gap: 12px;
    margin-top: 20px;
}

.message-strip span {
    padding: 16px 18px;
    border-radius: 20px;
    border: 1px solid var(--lp-border);
    background: rgba(255, 255, 255, 0.04);
    color: #dce7f4;
    font-size: 14px;
    font-weight: 600;
}

.price-card.featured {
    border-color: rgba(61, 214, 198, 0.3);
    box-shadow: 0 24px 60px rgba(17, 184, 193, 0.14);
}

.pricing-highlights {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin: 0 0 24px;
}

.pricing-highlights span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    border: 1px solid var(--lp-border);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.04);
    color: #dce7f4;
    font-size: 13px;
    font-weight: 700;
}

.pricing-highlights i {
    color: var(--lp-accent);
}

.price-badge {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 0 12px;
    border-radius: 999px;
    background: rgba(61, 214, 198, 0.14);
    color: var(--lp-accent);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
}

.price-compare {
    margin: 12px 0 6px;
    color: #8fa4bd;
    font-size: 13px;
    font-weight: 600;
    text-decoration: line-through;
}

.price-value {
    display: flex;
    align-items: baseline;
    gap: 6px;
    margin: 10px 0 14px;
}

.price-value strong {
    font-size: 38px;
    line-height: 1;
}

.price-value span {
    color: var(--lp-muted);
    font-size: 14px;
}

.price-annual {
    margin: -2px 0 14px;
    color: var(--lp-primary);
    font-size: 13px;
    font-weight: 700;
}

.cta {
    padding: 20px 0 44px;
}

.cta-card {
    padding: 32px;
    text-align: center;
    background:
        radial-gradient(circle at top left, rgba(61, 214, 198, 0.18), transparent 24%),
        linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.03) 100%);
    box-shadow: var(--lp-shadow-lg);
}

.cta-card h2 {
    margin: 14px 0 12px;
    font-size: clamp(2rem, 4vw, 3.3rem);
}

.cta-card p {
    width: min(100%, 700px);
    margin: 0 auto;
    color: var(--lp-muted);
    font-size: 15px;
    line-height: 1.8;
}

.cta-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-top: 24px;
}

.landing-footer {
    padding: 34px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(6, 15, 26, 0.72);
}

.footer-block h4 {
    margin: 0 0 14px;
    font-size: 15px;
}

.footer-copy,
.footer-list li,
.footer-list a {
    color: var(--lp-muted);
    font-size: 14px;
    line-height: 1.8;
}

.footer-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.footer-map-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    border-radius: 999px;
    border: 1px solid rgba(61, 214, 198, 0.22);
    background: rgba(61, 214, 198, 0.08);
    color: #dff9f5 !important;
    font-weight: 700;
}

.footer-bottom {
    margin-top: 18px;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--lp-muted);
    font-size: 13px;
    text-align: center;
}

@media (min-width: 768px) {
    .landing-nav {
        display: inline-flex;
    }

    .hero {
        padding: 58px 0 34px;
    }

    .hero-grid {
        grid-template-columns: 1.04fr 0.96fr;
        align-items: center;
    }

    .ecosystem-grid,
    .business-grid,
    .value-grid,
    .pricing-grid,
    .footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 992px) {
    .ecosystem-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .ecosystem-grid.ecosystem-grid--three {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .business-grid,
    .value-grid,
    .pricing-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .pricing-grid.pricing-grid--four {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .footer-grid {
        grid-template-columns: 1.2fr 0.8fr 0.8fr 0.9fr;
    }
}

@media (max-width: 767px) {
    .landing-header-inner {
        flex-wrap: wrap;
    }

    .landing-header-actions {
        width: 100%;
    }

    .landing-header-actions .btn {
        flex: 1 1 0;
    }

    .hero-stats {
        grid-template-columns: 1fr;
    }

    .hero-orbit {
        min-height: 620px;
    }

    .orbit-core {
        width: 200px;
        height: 200px;
    }

    .orbit-node-soft {
        top: 24px;
        right: 16px;
    }

    .orbit-node-store {
        top: 220px;
        left: 16px;
    }

    .orbit-node-mobile {
        right: 16px;
        bottom: 20px;
    }

    .orbit-node-shop {
        left: 16px;
        bottom: 200px;
    }
}
