/* ===== Legal Pages ===== */

.lg-page {
    min-height: 100vh;
    background: #f8fafc;
    position: relative;
    padding: 6rem 1.5rem 5rem;
    display: flex;
    justify-content: center;
    overflow-x: clip;
    font-family: 'Inter', system-ui, sans-serif;
}

.lg-glow {
    position: absolute;
    pointer-events: none;
    border-radius: 50%;
    z-index: 0;
    filter: blur(60px);
}
.lg-glow--tl { top: -120px; left: -120px; width: 520px; height: 520px;
    background: radial-gradient(circle, rgba(0,168,150,0.08) 0%, transparent 65%); }
.lg-glow--br { bottom: -120px; right: -120px; width: 460px; height: 460px;
    background: radial-gradient(circle, rgba(0,168,150,0.06) 0%, transparent 65%); }

.lg-shell {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 820px;
}

.lg-head {
    text-align: center;
    margin-bottom: 3rem;
}

.lg-tag {
    display: inline-block;
    color: #00A896;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    background: rgba(0,168,150,0.08);
    border: 1px solid rgba(0,168,150,0.25);
    padding: 5px 16px;
    border-radius: 999px;
    margin-bottom: 1.2rem;
}

.lg-title {
    font-family: 'Inter', system-ui, sans-serif;
    font-size: clamp(2rem, 4.4vw, 3rem);
    font-weight: 800;
    color: #0f172a;
    letter-spacing: -0.03em;
    line-height: 1.15;
    margin-bottom: 0.6rem;
}

.lg-updated {
    font-size: 0.88rem;
    color: #94a3b8;
}

.lg-body {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 22px;
    padding: 48px 56px;
    box-shadow: 0 12px 36px rgba(15,23,42,0.06);
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.lg-section { display: flex; flex-direction: column; gap: 10px; }

.lg-section-title {
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 1.2rem;
    font-weight: 800;
    color: #0f172a;
    letter-spacing: -0.01em;
}

.lg-section-text {
    font-size: 1rem;
    color: #475569;
    line-height: 1.75;
}

.lg-footer {
    text-align: center;
    margin-top: 2rem;
    font-size: 0.92rem;
    color: #64748b;
}

.lg-footer a {
    color: #00A896;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.15s;
}
.lg-footer a:hover { color: #006d63; }

@media (max-width: 640px) {
    .lg-page { padding: 5rem 1rem 4rem; }
    .lg-body { padding: 32px 24px; border-radius: 18px; gap: 24px; }
    .lg-section-title { font-size: 1.05rem; }
    .lg-section-text { font-size: 0.95rem; }
}
