/* Shared style for legal/support/about pages */
:root {
    --bg: #f9fafb;
    --text: #1f2937;
    --muted: #6b7280;
    --muted-2: #9ca3af;
    --card-bg: #ffffff;
    --border: #e5e7eb;
    --brand: #f97316;
    --brand-hover: #ea580c;
}

* {
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    background-color: var(--bg);
    color: var(--text);
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.aurora-bg {
    background:
        radial-gradient(at 0% 0%, rgba(255, 165, 0, 0.1) 0, transparent 50%),
        radial-gradient(at 100% 0%, rgba(50, 200, 255, 0.1) 0, transparent 50%);
    background-attachment: fixed;
}

nav {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 50;
}

.nav-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
    height: 64px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--text);
    font-weight: 700;
    font-size: 1.125rem;
}

.nav-logo img {
    width: 32px;
    height: 32px;
    border-radius: 8px;
}

.nav-link {
    font-size: 0.875rem;
    color: var(--muted);
    text-decoration: none;
    font-weight: 500;
}

main {
    flex: 1;
    padding: 40px 20px;
}

.card {
    max-width: 720px;
    margin: 0 auto;
    background: var(--card-bg);
    border-radius: 16px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1), 0 1px 2px rgba(0, 0, 0, 0.06);
    border: 1px solid var(--border);
    padding: 40px;
}

article h1 {
    font-size: 2.1rem;
    font-weight: 800;
    margin: 0 0 1rem;
    color: #111827;
    text-align: center;
}

article h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-top: 2.25rem;
    margin-bottom: 1rem;
    color: #374151;
    border-bottom: 1px solid #f3f4f6;
    padding-bottom: 0.5rem;
}

article h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-top: 1.35rem;
    margin-bottom: 0.75rem;
    color: #4b5563;
}

article p {
    margin-bottom: 1rem;
    line-height: 1.75;
    color: #4b5563;
}

article ul {
    list-style-type: disc;
    padding-left: 1.5rem;
    margin-bottom: 1rem;
    color: #4b5563;
}

article li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.divider {
    width: 64px;
    height: 4px;
    background-color: var(--brand);
    border-radius: 2px;
    margin: 0 auto 32px;
}

.muted-center {
    text-align: center;
    color: var(--muted-2);
    font-size: 0.9rem;
}

.cta-card {
    margin-top: 2.25rem;
    padding: 1.5rem;
    border-radius: 1rem;
    border: 1px solid #ffedd5;
    background: #fff7ed;
}

.cta-link {
    display: inline-block;
    padding: 0.7rem 1.2rem;
    border-radius: 999px;
    background: var(--brand);
    color: #fff;
    text-decoration: none;
    font-weight: 700;
}

.cta-link:hover {
    background: var(--brand-hover);
}

footer {
    padding: 32px;
    text-align: center;
    font-size: 0.875rem;
    color: var(--muted-2);
}

a {
    color: var(--brand);
}

a:hover {
    color: var(--brand-hover);
}

@media (max-width: 640px) {
    .card {
        padding: 24px;
    }

    article h1 {
        font-size: 1.75rem;
    }
}

