/* style.css — shared modern styling for legal/compliance pages */

:root {
    --bg: #0f1115;
    --surface: #171a21;
    --surface-2: #1e222b;
    --border: #2a2f3a;
    --text: #e7e9ee;
    --text-dim: #9aa1ae;
    --accent: #5b8cff;
    --accent-2: #8f6bff;
    --radius: 14px;
    --max-width: 820px;
}

* { box-sizing: border-box; }

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

body {
    background: radial-gradient(circle at top left, #1a1e2a 0%, var(--bg) 55%);
    color: var(--text);
    font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    line-height: 1.65;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 60px 20px 40px;
}

.wrap {
    width: 100%;
    max-width: var(--max-width);
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.75em;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--accent);
    background: rgba(91, 140, 255, 0.1);
    border: 1px solid rgba(91, 140, 255, 0.3);
    padding: 5px 12px;
    border-radius: 999px;
    margin-bottom: 18px;
}

h1 {
    font-size: 2em;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin: 0 0 8px;
    background: linear-gradient(120deg, var(--text) 40%, var(--accent) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.subtitle {
    color: var(--text-dim);
    margin: 0 0 34px;
    font-size: 1.02em;
}

h2 {
    font-size: 1.15em;
    font-weight: 600;
    margin: 34px 0 12px;
    color: var(--text);
}

p {
    color: #cfd3dc;
    margin: 0 0 16px;
}

a {
    color: var(--accent);
    text-decoration: none;
    border-bottom: 1px solid rgba(91, 140, 255, 0.35);
    transition: border-color 0.15s ease, color 0.15s ease;
}

a:hover {
    color: var(--accent-2);
    border-color: var(--accent-2);
}

.card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px 32px;
    margin-bottom: 24px;
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.02) inset, 0 20px 40px -30px rgba(0, 0, 0, 0.6);
}

.notice-box {
    background: var(--surface-2);
    border: 1px solid var(--border);
    border-left: 3px solid var(--accent);
    padding: 16px 20px;
    border-radius: 10px;
    margin: 20px 0;
    color: #cfd3dc;
}

.contact-box {
    display: flex;
    align-items: center;
    gap: 16px;
    background: var(--surface-2);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 22px 26px;
    margin: 18px 0;
}

.contact-icon {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--accent), var(--accent-2));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2em;
}

.contact-box .email {
    font-size: 1.15em;
    font-weight: 600;
    color: var(--text);
}

.contact-box .label {
    font-size: 0.82em;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 2px;
}

ol {
    padding-left: 22px;
    color: #cfd3dc;
}

li {
    margin-bottom: 10px;
}

nav.crumbs {
    display: flex;
    gap: 18px;
    margin-bottom: 30px;
    font-size: 0.9em;
}

nav.crumbs a {
    border: none;
    color: var(--text-dim);
    padding: 6px 0;
}

nav.crumbs a.active,
nav.crumbs a:hover {
    color: var(--text);
}

footer {
    margin-top: 50px;
    padding-top: 22px;
    border-top: 1px solid var(--border);
    font-size: 0.85em;
    color: var(--text-dim);
    text-align: center;
}

footer a {
    color: var(--text-dim);
    border: none;
}

footer a:hover {
    color: var(--accent);
}

@media (max-width: 600px) {
    .card { padding: 22px 20px; }
    h1 { font-size: 1.6em; }
    .contact-box { flex-direction: column; align-items: flex-start; }
}
