/* ==========================================
   LANDING PAGE - EXTENDS style.css
   Reuses .lang-header / .form-card design tokens.
   ========================================== */

.landing-brand {
    color: #ffffff;
    font-weight: 700;
    font-size: 17px;
    letter-spacing: 0.3px;
}

.landing-card {
    text-align: center;
}

.landing-title {
    color: #0f172a;
    font-size: 24px;
    margin-bottom: 10px;
    border-bottom: none;
    padding-bottom: 0;
}

.landing-subtitle {
    color: #475569;
    font-size: 15px;
    line-height: 1.5;
    max-width: 480px;
    margin: 0 auto 30px auto;
}

.landing-lang-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-bottom: 26px;
}

.landing-lang-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 20px 10px;
    background: #f8fafc;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.15s ease;
}
.landing-lang-btn:hover {
    border-color: #2563eb;
    background: #eff6ff;
}
.landing-lang-btn.active {
    border-color: #2563eb;
    background: #eff6ff;
}

.landing-lang-native {
    font-size: 20px;
    font-weight: 700;
    color: #0f172a;
}

.landing-lang-en {
    font-size: 13px;
    font-weight: 500;
    color: #64748b;
}

.landing-trust-row {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 20px;
}

.landing-trust-item {
    font-size: 13px;
    font-weight: 600;
    color: #334155;
}

.landing-privacy-link {
    display: inline-block;
    font-size: 13px;
    color: #2563eb;
    text-decoration: none;
}
.landing-privacy-link:hover {
    text-decoration: underline;
}

@media (max-width: 480px) {
    .landing-lang-btn { padding: 16px 8px; }
    .landing-lang-native { font-size: 17px; }
}

/* ==========================================
   BUY BUTTON + UNLOCK PAGE
   ========================================== */
.landing-buy-btn {
    display: block;
    width: 100%;
    box-sizing: border-box;
    padding: 16px;
    background: #2563eb;
    color: #ffffff;
    text-decoration: none;
    text-align: center;
    font-size: 17px;
    font-weight: 700;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    margin-bottom: 14px;
    transition: background 0.15s ease;
}
.landing-buy-btn:hover { background: #1d4ed8; }

.landing-unlock-link {
    display: block;
    text-align: center;
    font-size: 13px;
    color: #64748b;
    text-decoration: none;
    margin-bottom: 22px;
}
.landing-unlock-link:hover { text-decoration: underline; color: #2563eb; }

.unlock-input {
    width: 100%;
    box-sizing: border-box;
    padding: 13px;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    background: #f8fafc;
    font-size: 14px;
    margin-bottom: 14px;
    text-align: center;
}
.unlock-input:focus {
    border-color: #2563eb;
    outline: none;
    background: #ffffff;
}

.unlock-btn { margin-bottom: 10px; }
.unlock-btn:disabled { opacity: 0.6; cursor: not-allowed; }

.unlock-status {
    min-height: 18px;
    font-size: 13px;
    margin: 0 0 16px 0;
}
.unlock-status-error { color: #dc2626; font-weight: 600; }
