/* ============================================================
   Landing — prototipten alıntı görsel parçalar
   Mevcut style.css'i bozmaz. Tüm sınıflar `lp-` prefixli.
   Renkler site canonical paletinden (style.css ile aynı).
   ============================================================ */

.lp-section {
    padding: 28px 0 16px;
}

.lp-preview-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
    align-items: stretch;
}

@media (max-width: 980px) {
    .lp-preview-wrap {
        grid-template-columns: 1fr;
    }
}

.lp-preview-text h2 {
    font-size: 28px;
    font-weight: 800;
    letter-spacing: -0.5px;
    margin-bottom: 14px;
    line-height: 1.2;
}

.lp-preview-text h2 span {
    background: linear-gradient(135deg, #fff, #FFD700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.lp-preview-text p {
    color: #A9B7C7;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 16px;
}

.lp-preview-bullets {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.lp-preview-bullets li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #cfe0f3;
    font-size: 14px;
}

.lp-preview-bullets li::before {
    content: "✓";
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: rgba(255, 215, 0, 0.18);
    color: #FFD700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 12px;
    flex-shrink: 0;
}

/* Mini dashboard preview */
.lp-card {
    background: #0c1d34;
    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: 18px;
    padding: 18px;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
    position: relative;
    overflow: hidden;
}

.lp-card::after {
    content: "";
    position: absolute;
    inset: -50% -20% auto -20%;
    height: 200%;
    background: radial-gradient(ellipse at top, rgba(255, 215, 0, 0.10), transparent 60%);
    pointer-events: none;
    z-index: 0;
}

.lp-card > * {
    position: relative;
    z-index: 1;
}

.lp-card-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 14px;
}

.lp-card-head .greet {
    font-size: 12px;
    color: #A9B7C7;
}

.lp-card-head h3 {
    font-size: 18px;
    margin-top: 2px;
    color: #E7ECF3;
}

.lp-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(34, 197, 94, 0.18);
    color: #22c55e;
    border: 1px solid rgba(34, 197, 94, 0.32);
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 600;
}

.lp-pill .dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #22c55e;
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.5);
    animation: lp-pulse 1.6s infinite;
}

@keyframes lp-pulse {
    0% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.5); }
    70% { box-shadow: 0 0 0 8px rgba(34, 197, 94, 0); }
    100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
}

.lp-balance .label {
    font-size: 12px;
    color: #A9B7C7;
}

.lp-balance .value {
    font-size: 32px;
    font-weight: 800;
    letter-spacing: -1px;
    margin-top: 2px;
    color: #E7ECF3;
}

.lp-balance .value small {
    font-size: 18px;
    color: #A9B7C7;
    font-weight: 700;
}

.lp-balance .change {
    color: #22c55e;
    font-size: 13px;
    margin-top: 4px;
}

.lp-metric-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 14px;
}

.lp-metric {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 12px 14px;
}

.lp-metric .l {
    font-size: 11px;
    color: #A9B7C7;
    text-transform: uppercase;
    letter-spacing: 0.4px;
}

.lp-metric .v {
    font-size: 18px;
    font-weight: 800;
    margin-top: 4px;
    color: #E7ECF3;
}

.lp-metric .v.gold {
    color: #FFD700;
}

.lp-metric .c {
    font-size: 11px;
    margin-top: 2px;
    color: #22c55e;
}

.lp-chart {
    margin-top: 14px;
    height: 90px;
}

.lp-chart svg {
    width: 100%;
    height: 100%;
    display: block;
}

.lp-trades {
    margin-top: 14px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.lp-trade {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 10px 12px;
    font-size: 13px;
}

.lp-trade .ic {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(255, 215, 0, 0.18);
    color: #FFD700;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 11px;
    flex-shrink: 0;
}

.lp-trade .body {
    flex: 1;
    min-width: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}

.lp-trade .name {
    font-weight: 600;
    color: #E7ECF3;
}

.lp-trade .amount {
    font-weight: 700;
    font-size: 13px;
}

.lp-trade .amount.up { color: #22c55e; }
.lp-trade .amount.down { color: #ef4444; }

/* Feature card icon */
.lp-feat-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(255, 215, 0, 0.14);
    color: #FFD700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
}

.lp-feat-icon svg {
    width: 22px;
    height: 22px;
}

/* Step indicator (apiconnections page) */
.lp-steps {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr;
    align-items: center;
    gap: 12px;
    background: rgba(8, 18, 32, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: 18px;
    padding: 18px 22px;
    margin-bottom: 28px;
}

.lp-steps .step {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
}

.lp-steps .step .num {
    width: 32px;
    height: 32px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.06);
    color: #A9B7C7;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 14px;
    flex-shrink: 0;
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.lp-steps .step.active .num {
    background: linear-gradient(135deg, #FFD700, #b89400);
    color: #1b2533;
    border-color: #FFD700;
    box-shadow: 0 4px 14px rgba(255, 215, 0, 0.32);
}

.lp-steps .step.done .num {
    background: rgba(34, 197, 94, 0.18);
    color: #22c55e;
    border-color: rgba(34, 197, 94, 0.4);
}

.lp-steps .step .label {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.lp-steps .step .label small {
    color: #7c8aa1;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.lp-steps .step .label strong {
    color: #E7ECF3;
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.lp-steps .step.active .label strong {
    color: #FFD700;
}

.lp-steps .sep {
    width: 32px;
    height: 1px;
    background: rgba(255, 255, 255, 0.18);
}

@media (max-width: 720px) {
    .lp-steps {
        grid-template-columns: 1fr;
        gap: 10px;
        padding: 16px 18px;
    }
    .lp-steps .sep { display: none; }
    .lp-steps .step .label strong { white-space: normal; }
}

/* ============================================================
   Calendar + Score önizleme (landing)
   ============================================================ */

.lp-feature-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 22px;
    align-items: stretch;
}

@media (max-width: 980px) {
    .lp-feature-grid {
        grid-template-columns: 1fr;
    }
}

.lp-feature-card {
    background: #0c1d34;
    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: 18px;
    padding: 22px;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.lp-feature-card .lp-feat-eyebrow {
    color: #FFD700;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.lp-feature-card h3 {
    font-size: 20px;
    color: #E7ECF3;
    margin-bottom: 6px;
    letter-spacing: -0.3px;
}

.lp-feature-card .lp-feat-sub {
    color: #A9B7C7;
    font-size: 13px;
    line-height: 1.55;
    margin-bottom: 18px;
}

/* Mini calendar */
.lp-cal-head {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 4px;
    margin-bottom: 4px;
}

.lp-cal-head span {
    text-align: center;
    font-size: 9px;
    color: #7c8aa1;
    text-transform: uppercase;
    letter-spacing: 0.4px;
}

.lp-cal-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 4px;
}

.lp-cal-day {
    aspect-ratio: 1;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    color: #A9B7C7;
    font-weight: 600;
}

.lp-cal-day.win {
    background: rgba(34, 197, 94, 0.12);
    border-color: rgba(34, 197, 94, 0.45);
    color: #22c55e;
}

.lp-cal-day.loss {
    background: rgba(239, 68, 68, 0.12);
    border-color: rgba(239, 68, 68, 0.45);
    color: #ef4444;
}

.lp-cal-day.empty {
    opacity: 0.25;
}

.lp-cal-legend {
    display: flex;
    gap: 14px;
    margin-top: 14px;
    font-size: 11px;
    color: #A9B7C7;
    flex-wrap: wrap;
}

.lp-cal-legend span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.lp-cal-legend .sw {
    width: 10px;
    height: 10px;
    border-radius: 3px;
    flex-shrink: 0;
}

.lp-cal-legend .sw.win {
    background: rgba(34, 197, 94, 0.18);
    border: 1px solid rgba(34, 197, 94, 0.55);
}

.lp-cal-legend .sw.loss {
    background: rgba(239, 68, 68, 0.18);
    border: 1px solid rgba(239, 68, 68, 0.55);
}

/* Score preview */
.lp-score-row {
    display: grid;
    grid-template-columns: 0.85fr 1fr;
    gap: 16px;
    align-items: center;
}

@media (max-width: 520px) {
    .lp-score-row {
        grid-template-columns: 1fr;
    }
}

.lp-score-circle {
    width: 100%;
    max-width: 180px;
    aspect-ratio: 1;
    margin: 0 auto;
    position: relative;
}

.lp-score-circle svg {
    width: 100%;
    height: 100%;
    display: block;
}

.lp-score-num {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.lp-score-num .n {
    font-size: 48px;
    font-weight: 800;
    color: #FFD700;
    line-height: 1;
}

.lp-score-num .l {
    font-size: 11px;
    color: #A9B7C7;
    margin-top: 4px;
}

.lp-score-bars {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.lp-score-bar {
    display: grid;
    grid-template-columns: 88px 1fr 28px;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    color: #cfe0f3;
}

.lp-score-bar .track {
    height: 6px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 999px;
    overflow: hidden;
}

.lp-score-bar .fill {
    height: 100%;
    background: linear-gradient(90deg, #FFD700, #b89400);
    border-radius: 999px;
}

.lp-score-bar .pts {
    font-size: 11px;
    color: #FFD700;
    font-weight: 700;
    text-align: right;
}

/* ============================================================
   B2B / Kurumsal İş Ortaklıkları
   ============================================================ */

.lp-b2b {
    margin: 40px 0 28px;
    background: linear-gradient(160deg, #0c1d34 0%, rgba(46, 196, 182, 0.08) 100%);
    border: 1px solid rgba(46, 196, 182, 0.32);
    border-radius: 22px;
    padding: 36px 28px;
    position: relative;
    overflow: hidden;
}

.lp-b2b::after {
    content: "";
    position: absolute;
    top: -120px;
    right: -120px;
    width: 360px;
    height: 360px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.10), transparent 60%);
    pointer-events: none;
}

.lp-b2b > * {
    position: relative;
    z-index: 1;
}

.lp-b2b-head {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 26px;
}

.lp-b2b-eyebrow {
    display: inline-block;
    background: rgba(46, 196, 182, 0.16);
    color: #2EC4B6;
    border: 1px solid rgba(46, 196, 182, 0.4);
    padding: 5px 14px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.lp-b2b-head h2 {
    font-size: 30px;
    line-height: 1.2;
    letter-spacing: -0.5px;
    color: #E7ECF3;
    margin-bottom: 10px;
}

.lp-b2b-head h2 span {
    background: linear-gradient(135deg, #fff, #FFD700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.lp-b2b-head p {
    color: #A9B7C7;
    font-size: 15px;
    line-height: 1.6;
}

.lp-b2b-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 26px;
}

@media (max-width: 880px) {
    .lp-b2b-grid {
        grid-template-columns: 1fr;
    }
}

.lp-b2b-card {
    background: rgba(8, 18, 32, 0.55);
    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: 16px;
    padding: 22px;
    transition: border-color 0.18s, transform 0.18s;
}

.lp-b2b-card:hover {
    border-color: rgba(46, 196, 182, 0.5);
    transform: translateY(-2px);
}

.lp-b2b-card .ic {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(46, 196, 182, 0.15);
    color: #2EC4B6;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
}

.lp-b2b-card .ic svg {
    width: 22px;
    height: 22px;
}

.lp-b2b-card h3 {
    color: #E7ECF3;
    font-size: 17px;
    margin-bottom: 6px;
    letter-spacing: -0.2px;
}

.lp-b2b-card p {
    color: #A9B7C7;
    font-size: 13px;
    line-height: 1.55;
    margin-bottom: 14px;
}

.lp-b2b-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.lp-b2b-card li {
    color: #cfe0f3;
    font-size: 12.5px;
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.lp-b2b-card li::before {
    content: "›";
    color: #FFD700;
    font-weight: 700;
    flex-shrink: 0;
}

.lp-b2b-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
    justify-content: center;
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.lp-b2b-cta p {
    color: #A9B7C7;
    font-size: 14px;
    margin: 0;
}

.lp-b2b-cta a.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #FFD700, #b89400);
    color: #1b2533;
    font-weight: 700;
    padding: 12px 22px;
    border-radius: 12px;
    text-decoration: none;
    font-size: 14px;
    transition: filter 0.15s, transform 0.15s;
}

.lp-b2b-cta a.btn:hover {
    filter: brightness(1.06);
    transform: translateY(-1px);
}

/* How-it-works step badge */
.lp-step-badge {
    width: 32px;
    height: 32px;
    border-radius: 10px;
    background: linear-gradient(135deg, #FFD700, #b89400);
    color: #1b2533;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 14px;
    margin-bottom: 12px;
}
