/* shared legal-page chrome (privacy / terms / support) */

.aurora {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.aurora-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    will-change: transform;
}

.aurora-orb-1 {
    width: 600px; height: 600px;
    top: -10%; left: -10%;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.10) 0%, transparent 70%);
    animation: drift1 25s ease-in-out infinite;
}

.aurora-orb-2 {
    width: 500px; height: 500px;
    top: 40%; right: -15%;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.08) 0%, transparent 70%);
    animation: drift2 30s ease-in-out infinite;
}

.aurora-orb-3 {
    width: 700px; height: 400px;
    bottom: 10%; left: 10%;
    background: radial-gradient(ellipse, rgba(59, 130, 246, 0.06) 0%, transparent 70%);
    animation: drift3 35s ease-in-out infinite;
}

@keyframes drift1 {
    0%, 100% { transform: translate(0, 0); }
    33% { transform: translate(40px, 30px); }
    66% { transform: translate(-20px, 50px); }
}

@keyframes drift2 {
    0%, 100% { transform: translate(0, 0); }
    33% { transform: translate(-40px, 20px); }
    66% { transform: translate(30px, -40px); }
}

@keyframes drift3 {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(30px, -20px); }
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

p {
    margin-bottom: 1rem;
    color: var(--text);
    line-height: 1.7;
}

ul, ol {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

li {
    margin-bottom: 0.5rem;
    color: var(--text);
    line-height: 1.7;
}

section {
    margin-bottom: 2rem;
}

/* perf: pause aurora drift for reduced-motion users (added; not in original) */
@media (prefers-reduced-motion: reduce) { .aurora-orb { animation: none; } }
