:root {
    color-scheme: dark;
    --background: #0a0e14;
    --card: #1a1a2e;
    --gold: #d4af37;
    --gold-light: #f0d060;
    --cyan: #06b6d4;
    --text: #f8fafc;
    --muted: #a7b0c0;
}

* { box-sizing: border-box; }

body {
    margin: 0;
    min-height: 100vh;
    font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--text);
    background:
        radial-gradient(circle at 15% 0%, rgba(212, 175, 55, 0.14), transparent 35%),
        radial-gradient(circle at 90% 30%, rgba(6, 182, 212, 0.1), transparent 30%),
        var(--background);
    line-height: 1.7;
}

a { color: var(--cyan); }

.site-header {
    border-bottom: 1px solid rgba(212, 175, 55, 0.18);
    background: rgba(10, 14, 20, 0.88);
    backdrop-filter: blur(18px);
}

.site-header-inner,
main,
.site-footer {
    width: min(760px, calc(100% - 40px));
    margin: 0 auto;
}

.site-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 72px;
}

.brand {
    color: var(--gold-light);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.35rem;
    font-weight: 700;
    text-decoration: none;
}

.back-link {
    color: var(--muted);
    font-size: 0.94rem;
    text-decoration: none;
}

main { padding: 64px 0 72px; }

.eyebrow {
    margin: 0 0 8px;
    color: var(--cyan);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

h1,
h2 {
    font-family: Georgia, "Times New Roman", serif;
    line-height: 1.2;
}

h1 {
    margin: 0;
    color: var(--gold-light);
    font-size: clamp(2.3rem, 8vw, 4.2rem);
}

.effective {
    margin: 12px 0 36px;
    color: var(--muted);
}

section {
    margin: 18px 0;
    padding: 22px 24px;
    border: 1px solid rgba(212, 175, 55, 0.16);
    border-radius: 14px;
    background: rgba(26, 26, 46, 0.76);
}

h2 {
    margin: 0 0 8px;
    color: var(--gold);
    font-size: 1.22rem;
}

p,
ul { margin: 0; }

ul { padding-left: 1.3rem; }

.site-footer {
    padding: 28px 0 44px;
    border-top: 1px solid rgba(212, 175, 55, 0.14);
    color: var(--muted);
    font-size: 0.9rem;
}

.site-footer a { margin-right: 18px; }
