/* Kizuna Finance — Landing (light mockup theme) */
.lp-body {
    --lp-bg: #f7f4fc;
    --lp-bg-soft: #efe8fb;
    --lp-card: #ffffff;
    --lp-text: #2d2150;
    --lp-muted: #6b6280;
    --lp-primary: #7c3aed;
    --lp-primary-dark: #6d28d9;
    --lp-primary-soft: #ede9fe;
    --lp-border: rgba(124, 58, 237, 0.14);
    --lp-shadow: 0 12px 40px rgba(88, 50, 160, 0.12);
    --lp-radius: 18px;
    --lp-font: "Noto Sans JP", "Noto Sans", "Segoe UI", Inter, sans-serif;
    margin: 0;
    background: var(--lp-bg);
    color: var(--lp-text);
    font-family: var(--lp-font);
    line-height: 1.65;
}

.lp-body * { box-sizing: border-box; }
.lp-body a { color: inherit; text-decoration: none; }
.lp-body img { max-width: 100%; height: auto; display: block; }

.lp-wrap {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}

/* Header — mockup exact */
.lp-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(124, 58, 237, 0.08);
}
.lp-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    min-height: 76px;
    padding: 8px 0;
}
.lp-brand img {
    height: 42px;
    width: auto;
}
.lp-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
    flex: 1;
}
.lp-nav > a {
    font-size: 14px;
    font-weight: 600;
    color: #5b5270;
    white-space: nowrap;
}
.lp-nav > a:hover { color: #7c5cc4; }
.lp-header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}
/* Menu içi auth: sadece mobil açılır menüde */
.lp-mobile-auth {
    display: none;
}
.lp-lang { min-width: 0; }
.lp-lang .lang-select,
.lp-header-actions .lang-select {
    background: #fff;
    border: 1px solid rgba(124, 58, 237, 0.14);
    color: #2d2150;
    border-radius: 999px;
    padding: 8px 28px 8px 12px;
    font-size: 12px;
    min-width: 108px;
}
.lp-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(124, 58, 237, 0.14);
    border-radius: 12px;
    background: #fff;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
}
.lp-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    background: #7c5cc4;
    border-radius: 2px;
}

.lp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-radius: 999px;
    padding: 12px 22px;
    font-size: 14px;
    font-weight: 700;
    border: 2px solid transparent;
    cursor: pointer;
    transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}
.lp-btn:hover { transform: translateY(-1px); }
.lp-btn-primary {
    background: #7c5cc4;
    color: #fff !important;
    box-shadow: 0 10px 24px rgba(124, 92, 196, 0.28);
}
.lp-btn-primary:hover { background: #6b4db3; }
.lp-btn-login {
    background: #f3f0f8;
    color: #5b5270 !important;
    border-color: transparent;
    padding: 10px 18px;
}
.lp-btn-login:hover { background: #ebe6f5; color: #2d2150 !important; }
.lp-btn-outline {
    background: #fff;
    color: #7c5cc4 !important;
    border-color: #7c5cc4;
}
.lp-btn-demo {
    background: #fff;
    color: #7c5cc4 !important;
    border: 2px solid #7c5cc4;
}
.lp-btn-ghost {
    background: rgba(255,255,255,.18);
    color: #fff !important;
    border-color: rgba(255,255,255,.55);
}
.lp-btn-sm { padding: 10px 18px; font-size: 13px; }
.lp-btn-lg { padding: 15px 28px; font-size: 15px; }
.lp-play {
    display: inline-grid;
    place-items: center;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #7c5cc4;
    color: #fff;
    font-size: 10px;
}

/* Hero — illustration as RIGHT BACKGROUND */
.lp-hero {
    position: relative;
    background: #ffffff;
    padding: 0 0 28px;
    overflow: hidden;
}
.lp-hero-stage {
    position: relative;
    min-height: clamp(420px, 62vw, 560px);
    background: linear-gradient(180deg, #f6f2fb 0%, #ffffff 55%);
}
.lp-hero-bg {
    position: absolute;
    inset: 0;
    background-image: var(--lp-hero-image);
    background-repeat: no-repeat;
    background-position: right 0 center;
    background-size: 100%;
    pointer-events: none;
    z-index: 0;
}
.lp-hero-bg::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        #ffffff 0%,
        #ffffff 38%,
        rgba(255,255,255,0.88) 46%,
        rgba(255,255,255,0.25) 60%,
        rgba(255,255,255,0) 72%
    );
}
.lp-hero-content {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    min-height: clamp(420px, 62vw, 560px);
    padding: 36px 0 48px;
}
.lp-hero-copy {
    width: min(620px, 100%);
    max-width: 58%;
    margin-left: 100px;
}
.lp-hero h1 {
    font-size: clamp(34px, 4.6vw, 50px);
    line-height: 1.28;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin: 0 0 18px;
    color: #2a2148;
}
.lp-hero-lead {
    color: #6a6280;
    font-size: 16px;
    line-height: 1.85;
    margin: 0 0 28px;
}
.lp-hero-ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 22px;
}
.lp-trust {
    display: flex;
    flex-wrap: nowrap;
    gap: 8px;
    align-items: center;
}
.lp-trust-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    font-weight: 700;
    color: #5b5270;
    background: #fff;
    border: 1px solid rgba(124, 92, 196, 0.12);
    border-radius: 999px;
    padding: 7px 10px;
    box-shadow: 0 6px 18px rgba(88, 50, 160, 0.06);
    white-space: nowrap;
    flex: 0 1 auto;
}
.lp-trust-ico {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #efe8fb;
    display: inline-grid;
    place-items: center;
    font-size: 12px;
}

/* Icons bar under hero */
.lp-icons-grid {
    position: relative;
    z-index: 2;
    margin-top: -28px;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 8px;
    background: #fff;
    border: 1px solid rgba(124, 92, 196, 0.1);
    border-radius: 22px;
    padding: 18px 10px;
    box-shadow: 0 16px 40px rgba(88, 50, 160, 0.1);
}
.lp-icon-card {
    text-align: center;
    padding: 8px 4px;
}
.lp-icon-circle {
    width: 52px;
    height: 52px;
    margin: 0 auto 10px;
    border-radius: 50%;
    background: linear-gradient(145deg, #9b7dd4, #7c5cc4);
    color: #fff;
    display: grid;
    place-items: center;
    font-size: 20px;
    box-shadow: 0 8px 18px rgba(124, 92, 196, 0.22);
}
.lp-icon-card p {
    margin: 0;
    font-size: 12px;
    font-weight: 700;
    color: #2a2148;
    line-height: 1.4;
}

/* Viz */
.lp-section { padding: 56px 0; }
.lp-section h2 {
    font-size: clamp(24px, 3vw, 34px);
    line-height: 1.3;
    margin: 0 0 16px;
    font-weight: 800;
}
.lp-split {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 36px;
    align-items: center;
}
.lp-checks { list-style: none; padding: 0; margin: 0 0 24px; }
.lp-checks li {
    position: relative;
    padding: 8px 0 8px 32px;
    color: var(--lp-muted);
    font-weight: 600;
    font-size: 14px;
}
.lp-checks li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 8px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--lp-primary-soft);
    color: var(--lp-primary);
    display: grid;
    place-items: center;
    font-size: 12px;
    font-weight: 800;
}
.lp-phone-wrap {
    position: relative;
}
.lp-phone-wrap img {
    width: 100%;
    max-width: 540px;
    margin: 0 auto;
    filter: drop-shadow(0 20px 36px rgba(88, 50, 160, 0.16));
}

/* Game */
.lp-game {
    background: linear-gradient(135deg, #ede9fe 0%, #f5f3ff 45%, #fae8ff 100%);
    border-radius: 32px;
    padding: 36px;
    border: 1px solid var(--lp-border);
}
.lp-game-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 28px;
    align-items: center;
}
.lp-game-art img {
    width: 100%;
    max-width: 420px;
    margin: 0 auto;
    filter: drop-shadow(0 16px 28px rgba(88, 50, 160, 0.16));
}
.lp-game-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 18px;
}
.lp-game-card {
    background: #fff;
    border-radius: 16px;
    padding: 16px;
    border: 1px solid var(--lp-border);
    box-shadow: 0 8px 20px rgba(88, 50, 160, 0.08);
}
.lp-game-card .ico { font-size: 22px; margin-bottom: 8px; }
.lp-game-card p {
    margin: 0;
    font-size: 13px;
    font-weight: 700;
}

/* Reviews */
.lp-reviews-head {
    text-align: center;
    margin-bottom: 28px;
}
.lp-reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}
.lp-review {
    background: #fff;
    border: 1px solid var(--lp-border);
    border-radius: var(--lp-radius);
    padding: 22px;
    box-shadow: var(--lp-shadow);
}
.lp-review-top {
    display: flex;
    gap: 12px;
    align-items: center;
    margin-bottom: 12px;
}
.lp-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, #c4b5fd, #a78bfa);
    display: grid;
    place-items: center;
    color: #fff;
    font-weight: 800;
}
.lp-review-name { font-weight: 800; font-size: 14px; }
.lp-stars { color: #f59e0b; letter-spacing: 1px; font-size: 14px; margin-top: 12px; }
.lp-review p { margin: 0; color: var(--lp-muted); font-size: 14px; }

/* Pricing */
.lp-pricing-head { text-align: center; margin-bottom: 28px; }
.lp-plans {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}
.lp-plan {
    background: #fff;
    border: 1px solid var(--lp-border);
    border-radius: 24px;
    padding: 24px 20px;
    box-shadow: var(--lp-shadow);
    position: relative;
    display: flex;
    flex-direction: column;
}
.lp-plan.featured {
    border: 2px solid var(--lp-primary);
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(124, 58, 237, 0.18);
}
.lp-plan-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--lp-primary);
    color: #fff;
    font-size: 12px;
    font-weight: 800;
    padding: 4px 12px;
    border-radius: 999px;
}
.lp-plan h3 { margin: 8px 0 10px; font-size: 18px; }
.lp-price {
    font-size: 34px;
    font-weight: 800;
    color: var(--lp-primary-dark);
    line-height: 1;
}
.lp-price span { font-size: 14px; color: var(--lp-muted); font-weight: 600; }
.lp-plan ul {
    list-style: none;
    padding: 0;
    margin: 18px 0 22px;
    flex: 1;
}
.lp-plan li {
    padding: 8px 0 8px 22px;
    position: relative;
    font-size: 13px;
    font-weight: 600;
    color: var(--lp-muted);
}
.lp-plan li::before {
    content: "•";
    position: absolute;
    left: 6px;
    color: var(--lp-primary);
    font-weight: 900;
}
.lp-price-notes {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px 18px;
    margin-top: 22px;
    color: var(--lp-muted);
    font-size: 13px;
    font-weight: 600;
}

/* CTA */
.lp-cta {
    margin: 20px 0 40px;
    border-radius: 28px;
    overflow: hidden;
    position: relative;
    background: linear-gradient(120deg, #6d28d9, #7c3aed 45%, #a855f7);
    color: #fff;
    min-height: 240px;
}
.lp-cta-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.35;
    pointer-events: none;
}
.lp-cta-inner {
    position: relative;
    z-index: 1;
    padding: 48px 28px;
    text-align: center;
}
.lp-cta h2 {
    color: #fff;
    margin: 0 0 20px;
    font-size: clamp(22px, 3vw, 32px);
}
.lp-cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}
.lp-cta .lp-btn-outline {
    background: transparent;
    color: #fff !important;
    border-color: #fff;
}

/* Footer */
.lp-footer {
    background: #2d2150;
    color: rgba(255,255,255,.82);
    padding: 48px 0 24px;
}
.lp-footer-grid {
    display: grid;
    grid-template-columns: 1.2fr repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 28px;
}
.lp-footer h4 {
    margin: 0 0 12px;
    color: #fff;
    font-size: 14px;
}
.lp-footer a {
    display: block;
    font-size: 13px;
    color: rgba(255,255,255,.7);
    margin: 8px 0;
}
.lp-footer a:hover { color: #fff; }
.lp-footer-brand img {
    height: 36px;
    width: auto;
    margin-bottom: 12px;
    filter: brightness(1.1);
}
.lp-footer-bottom {
    border-top: 1px solid rgba(255,255,255,.12);
    padding-top: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    font-size: 12px;
    color: rgba(255,255,255,.55);
}
.lp-top {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--lp-primary);
    color: #fff;
    display: grid;
    place-items: center;
    font-weight: 800;
}

/* Mobile — hero: full-width content, bg fills hero height behind text */
@media (max-width: 960px) {
    .lp-split,
    .lp-game-grid {
        grid-template-columns: 1fr;
    }
    .lp-icons-grid { grid-template-columns: repeat(3, 1fr); }
    .lp-reviews-grid,
    .lp-plans { grid-template-columns: 1fr; }
    .lp-plan.featured { transform: none; }
    .lp-footer-grid { grid-template-columns: 1fr 1fr; }

    .lp-hero-copy {
        max-width: 100%;
        width: 100%;
        position: relative;
        z-index: 2;
        margin-left: 0;
    }
    .lp-hero-bg {
        inset: 0;
        background-position: right 0 center;
        background-size: auto 100%;
        background-repeat: no-repeat;
    }
    .lp-hero-bg::before {
        background: linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.94) 0%,
            rgba(255, 255, 255, 0.88) 45%,
            rgba(255, 255, 255, 0.55) 70%,
            rgba(255, 255, 255, 0.25) 100%
        );
    }
    .lp-trust {
        flex-wrap: wrap;
        justify-content: center;
        text-align: center;
    }
    .lp-trust-item {
        white-space: normal;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .lp-toggle { display: inline-flex; }
    .lp-nav { display: none; }
    .lp-header-actions { gap: 8px; }
    .lp-header-actions .lp-btn-login,
    .lp-header-actions .lp-btn-primary { display: none; }
    .lp-nav.is-open {
        display: flex;
        position: absolute;
        left: 20px;
        right: 20px;
        top: 76px;
        flex-direction: column;
        align-items: stretch;
        background: #fff;
        border: 1px solid rgba(124, 92, 196, 0.12);
        border-radius: 16px;
        padding: 12px;
        box-shadow: 0 16px 40px rgba(88, 50, 160, 0.12);
        gap: 0;
        flex: none;
    }
    .lp-nav.is-open > a {
        padding: 12px 10px;
        border-bottom: 1px solid rgba(124, 92, 196, 0.08);
    }
    .lp-mobile-auth {
        display: none;
        padding: 10px;
        gap: 8px;
    }
    .lp-nav.is-open .lp-mobile-auth {
        display: flex;
        flex-direction: column;
    }
    .lp-icons-grid { grid-template-columns: repeat(2, 1fr); }
    .lp-game { padding: 22px; }
    .lp-game-cards { grid-template-columns: 1fr; }
    .lp-footer-grid { grid-template-columns: 1fr; }
    .lp-wrap { width: min(1180px, calc(100% - 28px)); }

    .lp-hero-copy {
        max-width: 100%;
        width: 100%;
        margin-left: 0;
    }
    .lp-hero-bg {
        background-position: right 0 center;
        background-size: auto 100%;
    }
    .lp-hero-bg::before {
        background: linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.95) 0%,
            rgba(255, 255, 255, 0.9) 40%,
            rgba(255, 255, 255, 0.65) 65%,
            rgba(255, 255, 255, 0.35) 100%
        );
    }
    .lp-trust {
        flex-wrap: wrap;
        justify-content: center;
        text-align: center;
    }
    .lp-trust-item {
        white-space: normal;
        font-size: 11px;
        justify-content: center;
    }
}
