*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
[hidden] { display: none !important; }

:root {
    --ink: #0f1117;
    --muted: #6b7280;
    --accent: #5b5bd6;
    --accent-dark: #4949b8;
    --surface: #f8f8fb;
    --border: #e5e7eb;
    --radius: 12px;
}

html { scroll-behavior: smooth; }

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
    color: var(--ink);
    background: #fff;
    line-height: 1.6;
}

/* NAV */
nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 2rem;
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(8px);
    z-index: 100;
}

.logo {
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: -0.03em;
    color: var(--accent);
    text-decoration: none;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: .75rem;
}

.lang-btn {
    background: none;
    border: 1.5px solid var(--border);
    border-radius: 6px;
    padding: .3rem .65rem;
    font-size: .8rem;
    font-weight: 600;
    color: var(--muted);
    cursor: pointer;
    transition: border-color .15s, color .15s;
    line-height: 1.4;
}

.lang-btn:hover { border-color: var(--accent); color: var(--accent); }

.nav-cta {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: var(--accent);
    color: #fff;
    font-weight: 600;
    font-size: .875rem;
    padding: .55rem 1.25rem;
    border-radius: 8px;
    text-decoration: none;
    transition: background .15s;
}

.nav-cta:hover { background: var(--accent-dark); }

/* FOOTER */
footer {
    padding: 2rem;
    text-align: center;
    font-size: .825rem;
    color: var(--muted);
    border-top: 1px solid var(--border);
}

footer a { color: var(--muted); text-decoration: none; }
footer a:hover { color: var(--accent); }

/* COOKIE BAR */
.cookie-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    border-top: 1px solid var(--border);
    padding: .9rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    font-size: .8rem;
    color: var(--muted);
    z-index: 200;
    box-shadow: 0 -4px 16px rgba(0,0,0,.06);
}

.cookie-bar a { color: var(--accent); text-decoration: none; }
.cookie-bar a:hover { text-decoration: underline; }

.cookie-bar button {
    background: none;
    border: 1.5px solid var(--border);
    border-radius: 6px;
    padding: .3rem .75rem;
    font-size: .8rem;
    font-weight: 600;
    color: var(--muted);
    cursor: pointer;
    white-space: nowrap;
    flex-shrink: 0;
    transition: border-color .15s, color .15s;
}

.cookie-bar button:hover { border-color: var(--accent); color: var(--accent); }

/* POLICY PAGES */
.policy-wrap {
    max-width: 760px;
    margin: 0 auto;
    padding: 4rem 2rem 6rem;
}

.policy-wrap h1 {
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.15;
    margin-bottom: .75rem;
}

.policy-meta {
    font-size: .875rem;
    color: var(--muted);
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border);
}

.policy-wrap h2 {
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-top: 3rem;
    margin-bottom: .75rem;
    color: var(--ink);
}

.policy-wrap h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-top: 1.5rem;
    margin-bottom: .5rem;
}

.policy-wrap p {
    font-size: .95rem;
    color: #374151;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.policy-wrap ul, .policy-wrap ol {
    padding-left: 1.5rem;
    margin-bottom: 1rem;
}

.policy-wrap li {
    font-size: .95rem;
    color: #374151;
    line-height: 1.7;
    margin-bottom: .25rem;
}

.policy-wrap a { color: var(--accent); text-decoration: none; }
.policy-wrap a:hover { text-decoration: underline; }

.policy-wrap strong { font-weight: 600; color: var(--ink); }

.table-wrap {
    overflow-x: auto;
    margin: 1rem 0 1.5rem;
    border-radius: var(--radius);
    border: 1px solid var(--border);
}

table { width: 100%; border-collapse: collapse; font-size: .875rem; }
thead { background: var(--surface); }

th {
    text-align: left;
    padding: .65rem 1rem;
    font-weight: 700;
    font-size: .8rem;
    letter-spacing: .04em;
    text-transform: uppercase;
    color: var(--muted);
    border-bottom: 1px solid var(--border);
}

td {
    padding: .65rem 1rem;
    color: #374151;
    border-bottom: 1px solid var(--border);
    line-height: 1.5;
    vertical-align: top;
}

tr:last-child td { border-bottom: none; }
tbody tr:hover { background: var(--surface); }

.callout {
    background: #ededfc;
    border-left: 4px solid var(--accent);
    border-radius: 0 var(--radius) var(--radius) 0;
    padding: 1rem 1.25rem;
    margin: 1.5rem 0;
}

.callout p { margin: 0; font-size: .9rem; color: #374151; }
