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

:root {
    --bg: #050508;
    --surface: #0c0c11;
    --surface-2: #131319;
    --surface-3: #1b1b24;
    --border: rgba(255,255,255,0.04);
    --border-hover: rgba(255,255,255,0.09);
    --text: #e4e4e8;
    --text-dim: #9e9eb0;
    --text-muted: #5e5e6e;
    --accent: #E85D04;
    --accent-hover: #f06a10;
    --accent-glow: rgba(232, 93, 4, 0.12);
    --yellow: #FFCC00;
    --yellow-dim: rgba(255, 204, 0, 0.05);
    --yellow-glow: rgba(255, 204, 0, 0.2);
    --font-display: 'Syne', sans-serif;
    --font-body: 'DM Sans', sans-serif;
    --max-width: 1060px;
    --radius: 18px;
    --radius-sm: 12px;
}

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

::selection { background: var(--accent); color: #fff; }

/* ── Nav ── */
nav {
    padding: 0 clamp(20px, 5vw, 48px);
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--border);
    background: rgba(5, 5, 8, 0.82);
    backdrop-filter: blur(20px) saturate(1.4);
    -webkit-backdrop-filter: blur(20px) saturate(1.4);
}

.nav-logo {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.3rem;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, #fff 0%, #FFCC00 50%, #E85D04 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
}

.nav-link {
    font-family: var(--font-body);
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--text-dim);
    text-decoration: none;
    transition: color 0.25s;
}

.nav-link:hover { color: var(--text); }

/* ── Content Pages (privacy, terms, contact) ── */
.content {
    max-width: 720px;
    margin: 0 auto;
    padding: clamp(48px, 8vw, 96px) clamp(20px, 5vw, 48px);
    line-height: 1.7;
}

.content h1 {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: clamp(1.8rem, 4vw, 2.4rem);
    letter-spacing: -0.03em;
    margin-bottom: 8px;
}

.content h2 {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.15rem;
    letter-spacing: -0.01em;
    margin-top: 40px;
    margin-bottom: 12px;
    color: var(--text);
}

.content p, .content li {
    font-size: 0.92rem;
    color: var(--text-dim);
    margin-bottom: 12px;
}

.content ul { padding-left: 20px; }
.content li { margin-bottom: 6px; }
.content a { color: var(--accent); text-decoration: none; }
.content a:hover { text-decoration: underline; }

.effective {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 48px;
}

.subtitle {
    font-size: 0.92rem;
    color: var(--text-dim);
    margin-bottom: 48px;
}

.content-wide { max-width: 864px; }

/* ── Footer ── */
footer {
    padding: 48px clamp(20px, 5vw, 48px);
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid var(--border);
    flex-wrap: wrap;
    gap: 16px;
}

.footer-copy { font-size: 0.78rem; color: var(--text-muted); }
.footer-links { display: flex; gap: 24px; }
.footer-links a { font-size: 0.78rem; color: var(--text-muted); text-decoration: none; transition: color 0.25s; }
.footer-links a:hover { color: var(--text-dim); }

/* ── Responsive ── */
@media (max-width: 640px) {
    footer { flex-direction: column; align-items: flex-start; }
}
