:root {
    --bg: #0e0e12;
    --surface: #1a1a22;
    --accent: #00e5ff;
    --accent-dim: rgba(0, 229, 255, 0.12);
    --text: #e8e8f0;
    --muted: #9ea6be;
    --border: rgba(0, 229, 255, 0.14);
    --max-w: 960px;
    --header-max-w: 1080px;
}

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

html {
    color-scheme: dark;
}

body {
    margin: 0;
    min-height: 100vh;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.65;
    background:
        radial-gradient(circle at top, rgba(0, 229, 255, 0.1), transparent 32%),
        linear-gradient(180deg, #101018 0%, #0b0b10 100%);
    color: var(--text);
}

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

a:hover {
    text-decoration: underline;
}

.shell {
    width: min(100% - 2rem, var(--max-w));
    margin: 0 auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 10;
    backdrop-filter: blur(12px);
    background: rgba(10, 10, 14, 0.86);
    border-bottom: 1px solid var(--border);
}

.site-header .shell {
    width: min(100% - 2rem, var(--header-max-w));
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem 0;
}

.brand {
    display: flex;
    align-items: baseline;
}

.brand .brand-o { font-size: 1.3rem; font-weight: 700; color: var(--accent); }
.brand .brand-rbit { font-size: 1.3rem; font-weight: 400; color: var(--accent); }
.brand .brand-by { font-size: 0.65rem; color: var(--muted); margin-left: 0.5rem; }
.brand .brand-dza { font-size: 0.65rem; color: #dc3232; margin-left: 0.25rem; }

.header-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: flex-end;
    font-size: 0.95rem;
}

main {
    padding: 4rem 0 5rem;
}

.hero {
    margin-bottom: 2rem;
}

.eyebrow {
    margin: 0 0 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--accent);
}

h1 {
    margin: 0;
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.12;
}

.lede {
    max-width: 48rem;
    margin: 1rem 0 0;
    font-size: 1.06rem;
    color: var(--muted);
}

.panel {
    margin-top: 1.5rem;
    padding: 1.5rem;
    border-radius: 16px;
    border: 1px solid var(--border);
    background: linear-gradient(180deg, rgba(35, 35, 45, 0.95), rgba(18, 18, 24, 0.95));
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.24);
}

.meta {
    display: grid;
    gap: 0.9rem;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.meta div {
    padding: 1rem;
    border-radius: 12px;
    background: var(--accent-dim);
    border: 1px solid rgba(0, 229, 255, 0.08);
}

.meta strong {
    display: block;
    margin-bottom: 0.3rem;
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--muted);
}

.policy-section {
    margin-top: 1.5rem;
    padding: 1.5rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    background: rgba(26, 26, 34, 0.92);
}

.policy-section h2 {
    margin: 0 0 0.8rem;
    font-size: 1.35rem;
}

.policy-section p,
.policy-section li {
    color: #d6dbeb;
}

.policy-section ul {
    margin: 0.75rem 0 0;
    padding-left: 1.25rem;
}

.policy-section li + li {
    margin-top: 0.45rem;
}

.note {
    margin-top: 1rem;
    padding: 1rem 1.1rem;
    border-left: 3px solid var(--accent);
    border-radius: 10px;
    background: rgba(0, 229, 255, 0.08);
}

footer {
    border-top: 1px solid var(--border);
    background: rgba(9, 9, 14, 0.9);
}

footer .shell {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.5rem 0 2rem;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-copy {
    color: var(--muted);
    font-size: 0.94rem;
}

@media (max-width: 720px) {
    main {
        padding-top: 3rem;
    }

    .site-header .shell,
    footer .shell {
        flex-direction: column;
        align-items: flex-start;
    }

    .header-links {
        justify-content: flex-start;
    }

    .panel,
    .policy-section {
        padding: 1.2rem;
    }
}
