/* Shared variables and base styles for all landing pages */

:root {
    --bg: #0a0a0a;
    --text: #fafafa;
    --muted: #a1a1aa;
    --muted-dim: #71717a;
    --coral: #E8836B;
    --coral-dark: #D06A52;
    --surface: #18181b;
}

*, *::before, *::after {
    box-sizing: border-box;
}

html, body {
    margin: 0;
    padding: 0;
}

body {
    background-color: var(--bg);
    color: var(--text);
    font-family: 'DM Sans', sans-serif;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Nav header */
.nav-header {
    padding: 1.5rem 2rem;
    display: flex;
    align-items: center;
    gap: 0.625rem;
}

.nav-header a {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    text-decoration: none;
    color: var(--text);
}

.nav-icon {
    width: 36px;
    height: 36px;
    border-radius: 9px;
    box-shadow: 0 4px 16px rgba(232, 131, 107, 0.2);
}

.nav-title {
    font-family: 'DM Serif Display', serif;
    font-size: 1.35rem;
    font-weight: 400;
}

/* Policy/legal content */
.policy-wrapper {
    max-width: 720px;
    margin: 0 auto;
    padding: 1rem 2rem 4rem;
}

.policy-wrapper h1 {
    font-family: 'DM Serif Display', serif;
    font-size: 2.5rem;
    font-weight: 400;
    margin-bottom: 0.5rem;
    color: var(--text);
}

.last-updated {
    font-size: 0.875rem;
    color: var(--muted-dim);
    margin-bottom: 2.5rem;
}

.policy-wrapper h2 {
    font-family: 'DM Serif Display', serif;
    font-size: 1.4rem;
    font-weight: 400;
    color: var(--text);
    margin-top: 2.25rem;
    margin-bottom: 0.75rem;
}

.policy-wrapper p,
.policy-wrapper li {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: var(--muted);
}

.policy-wrapper ul {
    padding-left: 1.25rem;
    margin-bottom: 1rem;
}

.policy-wrapper li {
    margin-bottom: 0.35rem;
}

.policy-wrapper a {
    color: var(--coral);
    text-decoration: none;
}

.policy-wrapper a:hover {
    text-decoration: underline;
}

/* Footer */
.landing-footer {
    text-align: center;
    padding: 2rem 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-links {
    display: flex;
    gap: 0.4rem;
    justify-content: center;
    align-items: center;
    margin-bottom: 0.5rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--muted-dim);
    text-decoration: none;
    font-size: 0.8125rem;
    transition: color 0.15s ease;
}

.footer-links a:hover {
    color: var(--muted);
}

.footer-links .sep {
    color: var(--muted-dim);
    font-size: 0.75rem;
    opacity: 0.4;
    user-select: none;
}

.copyright {
    font-size: 0.75rem;
    color: var(--muted-dim);
    opacity: 0.5;
}

/* Responsive */
@media (max-width: 575.98px) {
    .nav-header {
        padding: 1.25rem 1.25rem;
    }

    .policy-wrapper {
        padding: 1rem 1.25rem 3rem;
    }

    .policy-wrapper h1 {
        font-size: 2rem;
    }
}
