/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Space Grotesk", -apple-system, sans-serif;
    background: #050718;
    color: #fff;
    line-height: 1.7;
    min-height: 100vh;
}

a {
    color: #8b5cf6;
    text-decoration: none;
    transition: color 0.3s;
}

a:hover {
    color: #a78bfa;
}

/* Legal Page Styles */
.page {
    max-width: 720px;
    margin: 0 auto;
    padding: 40px 24px 120px;
}

.legal-page {
    background: #050718;
}

/* Site Header */
.site-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    margin-bottom: 48px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    font-size: 18px;
    color: #fff;
}

.brand img {
    width: 36px;
    height: 36px;
    border-radius: 10px;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 100px;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s;
}

.cta-button:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.2);
    color: #fff;
}

/* Main Content */
main h1 {
    font-size: clamp(36px, 6vw, 48px);
    font-weight: 600;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.meta {
    font-size: 14px;
    color: #666;
    margin-bottom: 32px;
}

main > p {
    color: #999;
    font-size: 16px;
    margin-bottom: 48px;
    line-height: 1.8;
}

/* Legal Sections - Card Style */
.legal-section {
    margin-bottom: 24px;
    background: rgba(255, 255, 255, 0.02);
    border-left: 3px solid rgba(255, 255, 255, 0.1);
    border-radius: 0 12px 12px 0;
    padding: 28px 32px;
}

.legal-section h2 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #fff;
}

.legal-section p {
    color: #999;
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 16px;
}

.legal-section p:last-child {
    margin-bottom: 0;
}

.legal-section ul {
    list-style: none;
    margin: 0 0 16px 0;
    padding: 0;
}

.legal-section li {
    color: #999;
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 12px;
    padding-left: 24px;
    position: relative;
}

.legal-section li:last-child {
    margin-bottom: 0;
}

.legal-section li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 11px;
    width: 6px;
    height: 6px;
    background: #fff;
    border-radius: 50%;
    opacity: 0.5;
}

.legal-section li strong {
    color: #fff;
    font-weight: 500;
}

.legal-section a {
    color: #8b5cf6;
}

.legal-section a:hover {
    color: #a78bfa;
}

/* Contact Info Box */
.contact-box {
    margin-top: 24px;
    padding: 24px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
}

.contact-box p {
    margin-bottom: 8px;
    color: #888;
    font-size: 15px;
}

.contact-box p:first-child {
    color: #fff;
    font-weight: 500;
}

/* Responsive */
@media (max-width: 768px) {
    .page {
        padding: 24px 20px 80px;
    }
    
    .site-header {
        margin-bottom: 32px;
    }
    
    .brand span {
        display: none;
    }
}
