.landing-body {
    background: #030818;
    color: #eef4ff;
    overflow-x: hidden;
}

.landing-bg {
    position: fixed;
    inset: 0;
    z-index: 0;
    background:
        radial-gradient(ellipse 80% 60% at 20% 10%, rgba(31, 107, 255, 0.22), transparent 55%),
        radial-gradient(ellipse 70% 50% at 80% 20%, rgba(80, 60, 255, 0.18), transparent 50%),
        linear-gradient(160deg, #020612 0%, #041433 45%, #062454 100%);
    animation: landingGradientShift 18s ease-in-out infinite alternate;
}

@keyframes landingGradientShift {
    0% { filter: hue-rotate(0deg) brightness(1); }
    100% { filter: hue-rotate(12deg) brightness(1.05); }
}

#particleCanvas {
    position: fixed;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    opacity: 0.7;
}

.landing-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 5vw;
    backdrop-filter: blur(14px);
    background: rgba(3, 8, 24, 0.55);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.landing-logo {
    font-size: 1.35rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: #fff;
    text-decoration: none;
}

.landing-nav-links {
    display: flex;
    gap: 28px;
    align-items: center;
}

.landing-nav-links a {
    color: rgba(255, 255, 255, 0.78);
    text-decoration: none;
    font-size: 0.92rem;
    transition: color 0.2s;
}

.landing-nav-links a:hover {
    color: #fff;
}

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

.landing-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 11px 20px;
    border-radius: 999px;
    font-size: 0.92rem;
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}

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

.landing-btn-primary {
    background: linear-gradient(135deg, #1F6BFF, #3B82F6);
    color: #fff;
    box-shadow: 0 8px 28px rgba(31, 107, 255, 0.35);
}

.landing-btn-secondary {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.landing-main {
    position: relative;
    z-index: 2;
}

.landing-hero {
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 5vw 80px;
    max-width: 900px;
    margin: 0 auto;
}

.landing-hero-copy {
    animation: landingFadeUp 0.9s ease both;
    width: 100%;
}

.landing-hero-copy h1 {
    font-size: clamp(2.4rem, 5vw, 3.8rem);
    line-height: 1.08;
    font-weight: 800;
    letter-spacing: -0.03em;
    margin-bottom: 16px;
    background: linear-gradient(135deg, #fff 30%, #8ec5ff 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.landing-hero-sub {
    font-size: clamp(1.1rem, 2vw, 1.45rem);
    color: rgba(255, 255, 255, 0.88);
    margin-bottom: 14px;
    font-weight: 500;
}

.landing-hero-desc {
    font-size: 1.05rem;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.65);
    max-width: 620px;
    margin: 0 auto 32px;
}

.landing-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

.landing-illustration {
    position: relative;
    width: 100%;
    max-width: 520px;
    margin-top: 48px;
    animation: landingFadeUp 1s ease 0.15s both;
}

.landing-scene {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 420px;
}

.landing-scene-core {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(31, 107, 255, 0.25), transparent 70%);
    animation: landingPulse 4s ease-in-out infinite;
}

@keyframes landingPulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.8; }
    50% { transform: translate(-50%, -50%) scale(1.08); opacity: 1; }
}

.landing-scene-shield {
    position: absolute;
    left: 50%;
    top: 46%;
    transform: translate(-50%, -50%);
    font-size: 6rem;
    filter: drop-shadow(0 0 40px rgba(59, 130, 246, 0.5));
    animation: landingFloat 5s ease-in-out infinite;
}

.landing-scene-bank,
.landing-scene-logo {
    position: absolute;
    left: 18%;
    top: 22%;
    animation: landingFloat 6s ease-in-out infinite reverse;
}

.landing-scene-logo {
    width: min(120px, 28vw);
    height: auto;
    filter: drop-shadow(0 0 40px rgba(31, 107, 255, 0.45));
}

.landing-scene-coin {
    position: absolute;
    font-size: 2.2rem;
    animation: landingFloat 4.5s ease-in-out infinite;
}

.landing-scene-coin.c1 { right: 12%; top: 18%; animation-delay: 0.3s; }
.landing-scene-coin.c2 { right: 22%; bottom: 28%; animation-delay: 0.8s; }
.landing-scene-coin.c3 { left: 8%; bottom: 22%; animation-delay: 1.1s; }

.landing-scene-card {
    position: absolute;
    width: 120px;
    height: 76px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(255,255,255,0.2), rgba(255,255,255,0.05));
    border: 1px solid rgba(255,255,255,0.2);
    backdrop-filter: blur(8px);
    animation: landingFloat 5.5s ease-in-out infinite;
}

.landing-scene-card.card1 { right: 8%; top: 42%; transform: rotate(12deg); }
.landing-scene-card.card2 { left: 10%; top: 55%; transform: rotate(-8deg); animation-delay: 0.6s; }

@keyframes landingFloat {
    0%, 100% { transform: translateY(0) rotate(var(--rot, 0deg)); }
    50% { transform: translateY(-14px) rotate(var(--rot, 0deg)); }
}

.landing-scene-card.card1 { --rot: 12deg; }
.landing-scene-card.card2 { --rot: -8deg; }

.landing-feature-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 5vw 80px;
}

.landing-feature-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 28px 24px;
    backdrop-filter: blur(12px);
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
    animation: landingFadeUp 0.8s ease both;
}

.landing-feature-card:nth-child(2) { animation-delay: 0.1s; }
.landing-feature-card:nth-child(3) { animation-delay: 0.2s; }

.landing-feature-card:hover {
    transform: translateY(-6px);
    border-color: rgba(59, 130, 246, 0.35);
    box-shadow: 0 20px 50px rgba(31, 107, 255, 0.2);
}

.landing-feature-icon {
    font-size: 2rem;
    margin-bottom: 14px;
}

.landing-feature-card h3 {
    font-size: 1.15rem;
    margin-bottom: 8px;
}

.landing-feature-card p {
    color: rgba(255, 255, 255, 0.62);
    line-height: 1.5;
    font-size: 0.95rem;
}

.landing-section {
    max-width: 1100px;
    margin: 0 auto;
    padding: 60px 5vw;
}

.landing-section-title {
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 32px;
    font-weight: 700;
}

.landing-trust-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

.landing-trust-pill {
    padding: 10px 18px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.85);
}

.landing-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    text-align: center;
}

.landing-stat-value {
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    font-weight: 800;
    background: linear-gradient(135deg, #fff, #6eb6ff);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.landing-stat-label {
    margin-top: 6px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.landing-testimonials {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.landing-testimonial {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    padding: 24px;
}

.landing-testimonial p {
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.6;
    margin-bottom: 16px;
    font-style: italic;
}

.landing-testimonial cite {
    font-style: normal;
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.5);
}

.landing-cta-section {
    text-align: center;
    padding: 100px 5vw 120px;
}

.landing-cta-section h2 {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    margin-bottom: 28px;
    font-weight: 700;
}

.landing-cta-btn {
    display: inline-flex;
    padding: 18px 42px;
    font-size: 1.1rem;
    border-radius: 999px;
    background: linear-gradient(135deg, #1F6BFF, #081B45);
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    border: none;
    cursor: pointer;
    box-shadow: 0 12px 40px rgba(31, 107, 255, 0.4);
    transition: transform 0.25s, box-shadow 0.25s;
}

.landing-cta-btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 18px 50px rgba(31, 107, 255, 0.5);
}

.landing-footer {
    text-align: center;
    padding: 32px 5vw 48px;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.85rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.landing-body.page-exit {
    opacity: 0;
    transition: opacity 0.45s ease;
}

@keyframes landingFadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 960px) {
    .landing-hero {
        padding-top: 100px;
    }

    .landing-illustration {
        min-height: 280px;
    }

    .landing-feature-cards,
    .landing-testimonials {
        grid-template-columns: 1fr;
    }

    .landing-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .landing-nav-links {
        display: none;
    }
}
