:root {
    --bg: #eef1f6;
    --glass: rgba(255, 255, 255, 0.78);
    --glass-border: rgba(255, 255, 255, 0.95);
    --text: #18181b;
    --muted: #64748b;
    --accent: #0d9488;
    --radius: 18px;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    min-height: 100vh;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-size: 15px;
    line-height: 1.65;
    color: var(--text);
    background: var(--bg);
    background-image:
        radial-gradient(ellipse 90% 60% at 50% -10%, rgba(255, 255, 255, 0.9), transparent),
        radial-gradient(ellipse 50% 40% at 100% 0%, rgba(13, 148, 136, 0.06), transparent);
    padding: 20px 16px 32px;
}

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

a:hover {
    text-decoration: underline;
}

.top-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    gap: 12px;
}

.brand {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--accent);
}

.back-link {
    font-size: 13px;
    font-weight: 500;
    color: var(--muted);
    padding: 8px 14px;
    border-radius: 100px;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.glass-panel {
    background: var(--glass);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    box-shadow: 0 4px 24px rgba(15, 23, 42, 0.06);
    padding: 24px 20px;
    margin-bottom: 16px;
}

h1 {
    margin: 0 0 8px;
    font-size: 24px;
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.25;
}

.doc-meta {
    font-size: 13px;
    color: var(--muted);
    margin-bottom: 20px;
}

h2 {
    font-size: 16px;
    font-weight: 600;
    margin: 24px 0 10px;
    color: var(--text);
}

h2:first-of-type {
    margin-top: 0;
}

p {
    margin: 0 0 12px;
}

ul, ol {
    margin: 0 0 12px;
    padding-left: 1.25rem;
}

li {
    margin-bottom: 6px;
}

.contact-card {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.contact-row {
    padding: 14px 16px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.55);
    border: 1px solid rgba(255, 255, 255, 0.8);
}

.contact-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--muted);
    margin-bottom: 4px;
}

.contact-value {
    font-size: 15px;
    font-weight: 500;
}

.legal-footer {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px 16px;
    margin-top: 20px;
    padding-top: 16px;
    font-size: 12px;
    color: var(--muted);
}

.legal-footer a {
    color: var(--muted);
    font-weight: 500;
}

.legal-footer a.active {
    color: var(--accent);
    font-weight: 600;
}
