/* Statistika.ge — სამართლებრივი გვერდების სტილი */

:root {
    --bg: #080A14;
    --bg2: #0E1120;
    --surface: rgba(255, 255, 255, .04);
    --border: rgba(255, 255, 255, .09);
    --border2: rgba(255, 255, 255, .16);
    --text: #EEF0FF;
    --muted: #9498B4;
    --violet: #7C5CFC;
    --pink: #EC4FB6;
    --cyan: #34E5C8;
    --grad: linear-gradient(135deg, #7C5CFC, #EC4FB6);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background:
        radial-gradient(90% 55% at 85% -5%, rgba(124, 92, 252, .18), transparent 60%),
        radial-gradient(80% 50% at 10% 100%, rgba(236, 79, 182, .12), transparent 62%),
        var(--bg);
    background-attachment: fixed;
    color: var(--text);
    font-family: 'Inter', 'Noto Sans Georgian', system-ui, sans-serif;
    font-size: 15.5px;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

.wrap {
    max-width: 780px;
    margin: 0 auto;
    padding: 0 22px;
}

/* --- header --- */
.top {
    border-bottom: 1px solid var(--border);
    padding: 20px 0;
    position: sticky;
    top: 0;
    background: rgba(8, 10, 20, .82);
    backdrop-filter: blur(14px);
    z-index: 10;
}

.top .wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.logo {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    font-family: 'Space Grotesk', 'Noto Sans Georgian', sans-serif;
    font-size: 19px;
    font-weight: 700;
    letter-spacing: -.02em;
    color: var(--text);
    text-decoration: none;
}

.logo .mark {
    width: 34px;
    height: 34px;
    border-radius: 11px;
    background: var(--grad);
    display: grid;
    place-items: center;
    color: #fff;
    box-shadow: 0 6px 18px rgba(124, 92, 252, .4);
}

.logo b {
    background: var(--grad);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.back {
    color: var(--muted);
    font-size: 14px;
    text-decoration: none;
    transition: color .18s;
    white-space: nowrap;
}

.back:hover {
    color: var(--text);
}

/* --- content --- */
main {
    padding: 52px 0 40px;
}

h1 {
    font-family: 'Space Grotesk', 'Noto Sans Georgian', sans-serif;
    font-size: clamp(28px, 6vw, 38px);
    font-weight: 700;
    letter-spacing: -.025em;
    line-height: 1.2;
}

.updated {
    color: var(--muted);
    font-size: 13.5px;
    margin-top: 10px;
    padding-bottom: 26px;
    border-bottom: 1px solid var(--border);
}

h2 {
    font-family: 'Space Grotesk', 'Noto Sans Georgian', sans-serif;
    font-size: 19.5px;
    font-weight: 700;
    letter-spacing: -.015em;
    margin: 38px 0 12px;
    display: flex;
    align-items: baseline;
    gap: 11px;
}

h2 .n {
    font-size: 13px;
    font-weight: 700;
    background: var(--grad);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    flex-shrink: 0;
}

p {
    color: #C7CBE0;
    margin-bottom: 13px;
}

ul {
    margin: 0 0 13px;
    padding-left: 20px;
    color: #C7CBE0;
}

li {
    margin-bottom: 8px;
}

li::marker {
    color: var(--violet);
}

strong {
    color: var(--text);
    font-weight: 600;
}

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

a:hover {
    text-decoration: underline;
}

/* callout box */
.note {
    background: var(--surface);
    border: 1px solid var(--border);
    border-left: 3px solid var(--violet);
    border-radius: 14px;
    padding: 16px 18px;
    margin: 18px 0;
}

.note p:last-child {
    margin-bottom: 0;
}

.note.good {
    border-left-color: var(--cyan);
}

.note.warn {
    border-left-color: #FF6B82;
}

/* --- footer --- */
footer {
    border-top: 1px solid var(--border);
    padding: 30px 0 40px;
    margin-top: 50px;
}

.flinks {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 16px;
}

.flinks a {
    color: var(--muted);
    font-size: 14px;
}

.flinks a:hover {
    color: var(--text);
    text-decoration: none;
}

.copy {
    font-size: 13px;
    color: #5C607A;
}

@media (max-width: 520px) {
    main {
        padding: 36px 0 30px;
    }

    h2 {
        margin-top: 30px;
    }
}