/* в”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђ
   article.css вЂ” moripath.info-inspired dark editorial style
в”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђ */

@import url('https://fonts.googleapis.com/css2?family=Inter:ital,wght@0,400;0,500;1,400&family=Oswald:wght@700&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

:root {
    --bg:       #0d0d0d;
    --bg-card:  #161616;
    --border:   #222;
    --text:     #c8c8c8;
    --text-dim: #555;
    --white:    #f0f0f0;
    --accent:   #00C9A7;
    --top-bar-bg: rgba(13,13,13,.85);
}

/* Light theme */
[data-theme="light"] {
    --bg:       #fafafa;
    --bg-card:  #f0f0f0;
    --border:   #e0e0e0;
    --text:     #3a3a3a;
    --text-dim: #888;
    --white:    #111;
    --accent:   #009B83;
    --top-bar-bg: rgba(250,250,250,.9);
}

body {
    font-family: 'Inter', -apple-system, sans-serif;
    font-size: 17px;
    line-height: 1.85;
    color: var(--text);
    background: var(--bg);
    -webkit-font-smoothing: antialiased;
    transition: background .3s, color .3s;
}

/* в”Ђв”Ђ Progress в”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђ */
.progress-bar {
    position: fixed; top: 0; left: 0; z-index: 200;
    height: 2px; width: 0;
    background: var(--accent);
    pointer-events: none;
}

/* в”Ђв”Ђ Top bar в”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђ */
.top-bar {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    height: 52px;
    display: flex; align-items: center; justify-content: space-between;
    padding: 0 40px;
    background: var(--top-bar-bg);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    transition: background .3s, border-color .3s;
}

.top-right {
    display: flex; align-items: center; gap: 16px;
}

/* Theme toggle button */
.theme-toggle {
    display: flex; align-items: center; gap: 6px;
    background: none; border: 1px solid var(--border);
    border-radius: 20px; padding: 5px 10px;
    cursor: pointer; color: var(--text-dim);
    font-size: .85rem;
    transition: border-color .2s, color .2s;
}
.theme-toggle:hover { border-color: var(--text-dim); color: var(--white); }

.theme-toggle__icon { line-height: 1; transition: opacity .2s; }
.theme-toggle__icon--dark  { display: block; }
.theme-toggle__icon--light { display: none; }

[data-theme="light"] .theme-toggle__icon--dark  { display: none; }
[data-theme="light"] .theme-toggle__icon--light { display: block; }

/* Pill track */
.theme-toggle__track {
    width: 28px; height: 16px;
    background: var(--border);
    border-radius: 8px;
    position: relative;
    transition: background .25s;
    flex-shrink: 0;
}
.theme-toggle__track::after {
    content: '';
    position: absolute;
    top: 3px; left: 3px;
    width: 10px; height: 10px;
    border-radius: 50%;
    background: var(--text-dim);
    transition: transform .25s, background .25s;
}
[data-theme="light"] .theme-toggle__track { background: #ccc; }
[data-theme="light"] .theme-toggle__track::after {
    transform: translateX(12px);
    background: var(--accent);
}

.back-link {
    display: flex; align-items: center; gap: 7px;
    font-size: .8125rem; font-weight: 500;
    color: var(--text-dim); text-decoration: none;
    text-transform: uppercase; letter-spacing: .06em;
    transition: color .15s;
}
.back-link:hover { color: var(--white); }
.back-link svg { flex-shrink: 0; }

.top-cta {
    font-size: .875rem; font-weight: 600;
    color: #fff; text-decoration: none;
    background: linear-gradient(135deg, #00C9A7 0%, #1B4F72 100%);
    padding: 10px 22px;
    border-radius: 8px;
    border: none;
    transition: all .25s;
    box-shadow: 0 4px 20px rgba(0,201,167,.2);
    letter-spacing: .01em;
    white-space: nowrap;
}
.top-cta:hover {
    background: linear-gradient(135deg, #00D9B5 0%, #1F5F88 100%);
    box-shadow: 0 6px 28px rgba(0,201,167,.35);
    transform: translateY(-1px);
}

/* в”Ђв”Ђ Hero в”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђ */
.hero {
    padding: 120px 40px 72px;
    max-width: 900px;
}

.particles-canvas {
    position: fixed;
    inset: 0;
    width: 100%; height: 100%;
    pointer-events: none;
    z-index: 0;
    opacity: 1;
}
[data-theme="light"] .particles-canvas { opacity: 0.3; }

.hero__title {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(3rem, 7vw, 5.5rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.04;
    letter-spacing: -.01em;
    margin-bottom: 48px;
}

.hero__meta {
    display: flex; gap: 40px;
    border-top: 1px solid var(--border);
    padding-top: 24px;
}
.hero__meta-item {
    display: flex; flex-direction: column; gap: 4px;
}
.hero__meta-label {
    font-size: .65rem; font-weight: 500;
    text-transform: uppercase; letter-spacing: .1em;
    color: var(--text-dim);
}
.hero__meta-val {
    font-size: .875rem; font-weight: 500;
    color: var(--white);
}

/* в”Ђв”Ђ Content column в”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђ */
.content {
    max-width: 660px;
    margin: 0 auto;
    padding: 0 40px 100px;
}

/* Drop cap */
.drop-cap::first-letter {
    font-family: 'Oswald', sans-serif;
    font-size: 4.5em;
    font-weight: 700;
    color: var(--white);
    float: left;
    line-height: .78;
    margin: 6px 14px 0 0;
}

/* Paragraphs */
.content p {
    color: var(--text);
    font-size: 1rem;
    line-height: 1.85;
    margin-bottom: 22px;
}
.content p strong { color: var(--white); font-weight: 600; }

/* Headings */
.content h2 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.625rem;
    font-weight: 700;
    color: var(--white);
    margin: 0 0 20px;
    letter-spacing: .01em;
}

/* Lists */
.content ul {
    list-style: none; padding: 0;
    margin: 0 0 24px;
}
.content ul li {
    font-size: 1rem; color: var(--text);
    line-height: 1.75;
    padding: 10px 0 10px 20px;
    border-bottom: 1px solid var(--border);
    position: relative;
}
.content ul li:first-child { border-top: 1px solid var(--border); }
.content ul li::before {
    content: '';
    position: absolute; left: 0; top: 50%;
    transform: translateY(-50%);
    width: 5px; height: 5px; border-radius: 50%;
    background: var(--accent);
}

/* Divider */
.divider {
    width: 40px; height: 1px;
    background: var(--border);
    margin: 48px 0;
}

/* Blockquote */
blockquote {
    margin: 32px 0;
    padding: 28px 28px 28px 24px;
    background: var(--bg-card);
    border-left: none;
    position: relative;
}
blockquote::before {
    content: '\201C';
    position: absolute;
    top: 16px; left: 24px;
    font-family: 'Oswald', sans-serif;
    font-size: 2rem; font-weight: 700;
    color: var(--accent);
    line-height: 1;
}
blockquote p {
    font-size: 1.0625rem !important;
    color: var(--white) !important;
    font-weight: 500;
    line-height: 1.7 !important;
    margin: 0 !important;
    padding-top: 24px;
}

/* в”Ђв”Ђ Noise table в”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђ */
.noise-table {
    margin: 28px 0;
    border: 1px solid var(--border);
}
.noise-table__row {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.5fr;
    padding: 12px 16px;
    font-size: .875rem;
    border-bottom: 1px solid var(--border);
    gap: 12px;
}
.noise-table__row:last-child { border-bottom: none; }
.noise-table__row--head {
    color: var(--text-dim);
    font-size: .72rem;
    text-transform: uppercase; letter-spacing: .06em;
    background: rgba(255,255,255,.02);
}
.noise-table__row:not(.noise-table__row--head):hover {
    background: rgba(255,255,255,.02);
}

/* ── Compare table ──────────────────────────────────── */
.compare-table {
    width: 100%;
    border-collapse: collapse;
    margin: 28px 0;
    font-size: .875rem;
    overflow: hidden;
}
.compare-table thead th {
    background: rgba(255,255,255,.04);
    color: var(--text-dim);
    text-align: left;
    padding: 12px 16px;
    font-size: .72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .06em;
    border-bottom: 1px solid var(--border);
}
.compare-table tbody td {
    padding: 12px 16px;
    border-bottom: 1px solid var(--border);
    vertical-align: top;
    line-height: 1.55;
    color: var(--text);
}
.compare-table tbody td:first-child {
    font-weight: 600;
    color: var(--white);
    white-space: nowrap;
}
.compare-table tbody tr:last-child td {
    border-bottom: none;
}
.compare-table tbody tr:hover td {
    background: rgba(255,255,255,.025);
}
@media (max-width: 640px) {
    .compare-table { display: block; overflow-x: auto; -webkit-overflow-scrolling: touch; }
}

/* в”Ђв”Ђ Fines в”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђ */
.fines {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 1px; background: var(--border);
    margin: 28px 0;
    border: 1px solid var(--border);
}
.fine {
    background: var(--bg-card);
    padding: 24px 20px;
    display: flex; flex-direction: column; gap: 6px;
}
.fine__who {
    font-size: .72rem; font-weight: 500;
    text-transform: uppercase; letter-spacing: .08em;
    color: var(--text-dim);
}
.fine__sum {
    font-family: 'Oswald', sans-serif;
    font-size: 1.875rem; font-weight: 700;
    color: var(--accent);
    line-height: 1;
}

/* в”Ђв”Ђ CTA в”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђ */
/* ── CTA Premium ──────────────────────────────────────── */
.cta-block {
    margin-top: 64px;
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    background: #162330;
    border: 1px solid rgba(0,180,150,.14);
    isolation: isolate;
}

/* Light theme CTA override */
[data-theme="light"] .cta-block {
    background: #EAF6F3;
    border-color: rgba(0,160,130,.18);
}
[data-theme="light"] .cta-block__title { color: #0D2B24; }
[data-theme="light"] .cta-title__accent {
    background: linear-gradient(90deg, #009B83, #2D6BE4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
[data-theme="light"] .cta-block__text { color: rgba(0,0,0,.45) !important; }
[data-theme="light"] .cta-block__badge {
    color: #007A65;
    border-color: rgba(0,160,130,.25);
    background: rgba(0,160,130,.08);
}
[data-theme="light"] .cta-badge__dot { background: #009B83; }
[data-theme="light"] .cta-bg__orb--1 { background: rgba(0,180,150,.14); }
[data-theme="light"] .cta-bg__orb--2 { background: rgba(45,107,228,.1); }
[data-theme="light"] .cta-bg__grid {
    background-image:
        linear-gradient(rgba(0,160,130,.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0,160,130,.06) 1px, transparent 1px);
}
[data-theme="light"] .cta-block__spotlight {
    background: radial-gradient(400px circle at var(--mx,50%) var(--my,50%),
        rgba(0,160,130,.06), transparent 60%);
}
[data-theme="light"] .cta-link { color: rgba(0,0,0,.38); }
[data-theme="light"] .cta-link:hover { color: #0D2B24; }

/* Animated background */
.cta-block__bg { position: absolute; inset: 0; z-index: 0; }

.cta-bg__orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    animation: orbFloat 8s ease-in-out infinite;
}
.cta-bg__orb--1 {
    width: 340px; height: 340px;
    background: rgba(0,180,150,.15);
    top: -80px; right: -60px;
}
.cta-bg__orb--2 {
    width: 260px; height: 260px;
    background: rgba(27,79,114,.22);
    bottom: -60px; left: 10%;
    animation-delay: -4s;
}
@keyframes orbFloat {
    0%, 100% { transform: translateY(0) scale(1); }
    50%       { transform: translateY(-20px) scale(1.05); }
}

.cta-bg__grid { display: none; }

/* Cursor spotlight */
.cta-block__spotlight {
    position: absolute; inset: 0; z-index: 1;
    pointer-events: none;
    background: radial-gradient(400px circle at var(--mx,50%) var(--my,50%),
        rgba(0,201,167,.08), transparent 60%);
    transition: background .15s;
}

.cta-block__inner {
    position: relative; z-index: 2;
    padding: 52px 48px;
}

/* Badge */
.cta-block__badge {
    display: inline-flex; align-items: center; gap: 7px;
    font-size: .72rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: .1em;
    color: var(--accent);
    border: 1px solid rgba(0,201,167,.25);
    background: rgba(0,201,167,.07);
    padding: 5px 12px; border-radius: 20px;
    margin-bottom: 22px;
}
.cta-badge__dot {
    width: 6px; height: 6px; border-radius: 50%;
    background: var(--accent);
    animation: pulse 1.8s ease-in-out infinite;
}
@keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(0,201,167,.6); }
    50%       { box-shadow: 0 0 0 5px rgba(0,201,167,0); }
}

/* Title */
.cta-block__title {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(1.75rem, 3.5vw, 2.75rem);
    font-weight: 700;
    color: #F0F4FB;
    line-height: 1.15;
    margin-bottom: 14px;
}
.cta-title__accent {
    background: linear-gradient(90deg, #00C9A7, #7BAAF7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-block__text {
    font-size: .9375rem !important;
    color: rgba(255,255,255,.45) !important;
    line-height: 1.7 !important;
    margin-bottom: 32px !important;
}

/* Stats */
.cta-block__stats {
    display: flex; align-items: center;
    gap: 0; margin-bottom: 36px;
    border: 1px solid rgba(255,255,255,.07);
    border-radius: 10px; overflow: hidden;
    width: fit-content;
    background: rgba(255,255,255,.03);
}
.cta-stat {
    padding: 14px 28px;
    display: flex; flex-direction: column; gap: 4px;
}
.cta-stat__div {
    width: 1px; align-self: stretch;
    background: rgba(255,255,255,.07);
}
.cta-stat__num {
    font-family: 'Oswald', sans-serif;
    font-size: 1.75rem; font-weight: 700;
    color: #fff; line-height: 1;
}
.cta-stat__sfx {
    font-family: 'Oswald', sans-serif;
    font-size: 1.75rem; font-weight: 700;
    color: var(--accent); line-height: 1;
}
.cta-stat__label {
    font-size: .72rem; color: rgba(255,255,255,.35);
    text-transform: uppercase; letter-spacing: .05em;
    font-weight: 500;
}

/* Actions */
.cta-block__actions {
    display: flex; align-items: center; gap: 20px; flex-wrap: wrap;
}

.cta-btn--main {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 14px 28px;
    background: linear-gradient(135deg, #00C9A7 0%, #1B4F72 100%);
    color: #fff; font-size: .9375rem; font-weight: 700;
    text-decoration: none; border-radius: 8px;
    border: none;
    transition: all .25s;
    box-shadow: 0 4px 24px rgba(0,201,167,.25);
    letter-spacing: .01em;
}
.cta-btn--main:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(0,201,167,.4);
    background: linear-gradient(135deg, #00D9B5 0%, #1F5F88 100%);
}
.cta-btn--main svg { transition: transform .2s; }
.cta-btn--main:hover svg { transform: translateX(4px); }

.cta-link {
    font-size: .875rem; font-weight: 500;
    color: rgba(255,255,255,.4); text-decoration: none;
    transition: color .2s;
}
.cta-link:hover { color: #fff; }


/* в”Ђв”Ђ Footer в”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђ */
.site-footer {
    border-top: 1px solid var(--border);
    padding: 24px 40px;
    display: flex; align-items: center; justify-content: space-between;
    font-size: .8125rem; color: var(--text-dim);
}
.site-footer a { color: var(--text-dim); text-decoration: none; }
.site-footer a:hover { color: var(--white); }

/* в”Ђв”Ђ Responsive в”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђ */
@media (max-width: 768px) {
    .hero { padding: 96px 24px 56px; }
    .hero__title { font-size: 2.5rem; }
    .hero__meta { gap: 24px; }
    .content { padding: 0 24px 80px; }
    .top-bar { padding: 0 24px; }
    .top-cta { display: none; }
    .noise-table__row { grid-template-columns: 1fr 1fr; gap: 6px; }
    .noise-table__row span:nth-child(3),
    .noise-table__row span:nth-child(4) { font-size: .8rem; }
    .fines { grid-template-columns: 1fr; }

    /* CTA mobile */
    .cta-block__inner { padding: 32px 24px; }
    .cta-block__title { font-size: 1.5rem; }
    .cta-block__actions { flex-direction: column; align-items: stretch; gap: 12px; }
    .cta-btn--main { width: 100%; justify-content: center; }
    .cta-link { text-align: center; }

    .site-footer { padding: 20px 24px; }
}

@media (max-width: 480px) {
    .hero__title { font-size: 2rem; }
    .drop-cap::first-letter { font-size: 3.5em; }
    .cta-block__inner { padding: 28px 20px; }
}











/* Tables */
.table-responsive {
    overflow-x: auto;
    margin: 2rem 0;
}
.article-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.95rem;
    color: var(--text);
}
.article-table th, .article-table td {
    padding: 12px 16px;
    text-align: left;
    border-bottom: 1px solid var(--border);
}
.article-table th {
    background: var(--bg-card);
    font-weight: 500;
    color: var(--white);
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 0.05em;
}
