/* Legal pages — terms.html, privacy.html */

body {
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: column;
    min-height: 100vh;
    overflow-y: auto;
}

.legal-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 3rem;
    width: 100%;
    position: sticky;
    top: 0;
    z-index: 10;
    background: rgba(8,12,20,0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255,255,255,0.04);
}

.legal-nav a {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    text-decoration: none;
}

.legal-nav .nav-logo-img {
    width: 2rem;
    height: 2rem;
    object-fit: contain;
}

.legal-nav .logo-name {
    font-family: 'Urbanist', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: #E8ECF1;
}

.legal-back {
    font-size: 0.8125rem;
    color: rgba(232,236,241,0.5);
    text-decoration: none;
    transition: color 0.2s;
}

.legal-back:hover {
    color: #E8ECF1;
}

.legal-content {
    max-width: 45rem;
    margin: 0 auto;
    padding: 3rem 1.5rem 5rem;
    position: relative;
    z-index: 1;
}

.legal-content h1 {
    font-family: 'Urbanist', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    color: #E8ECF1;
    margin-bottom: 0.5rem;
    letter-spacing: -1px;
}

.legal-effective {
    font-size: 0.875rem;
    color: rgba(232,236,241,0.38);
    margin-bottom: 2.25rem;
}

.legal-content h3 {
    font-family: 'Urbanist', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: #E8ECF1;
    margin-top: 1.75rem;
    margin-bottom: 0.625rem;
}

.legal-content h4 {
    font-family: 'Urbanist', sans-serif;
    font-size: 0.875rem;
    font-weight: 600;
    color: rgba(232,236,241,0.85);
    margin-top: 1.125rem;
    margin-bottom: 0.5rem;
}

.legal-content p {
    font-size: 0.875rem;
    color: rgba(232,236,241,0.65);
    line-height: 1.7;
    margin-bottom: 0.75rem;
}

.legal-content ul {
    padding-left: 1.25rem;
    margin-bottom: 0.75rem;
}

.legal-content li {
    font-size: 0.875rem;
    color: rgba(232,236,241,0.65);
    line-height: 1.7;
    margin-bottom: 6px;
}

.legal-content strong {
    color: rgba(232,236,241,0.8);
}

.legal-content hr {
    border: none;
    border-top: 1px solid rgba(255,255,255,0.06);
    margin: 1.75rem 0;
}

.legal-content a {
    color: #E8C87A;
    text-decoration: none;
}

.legal-content a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .legal-nav { padding: 0.75rem 1.25rem; }
    .legal-content { padding: 2rem 1.25rem 3.75rem; }
    .legal-content h1 { font-size: 1.625rem; }
}
