:root {
    color-scheme: dark;
    --sd-bg: #080d10;
    --sd-bg-soft: #0c1317;
    --sd-panel: #10191e;
    --sd-panel-2: #142127;
    --sd-line: rgba(183, 225, 223, .14);
    --sd-line-strong: rgba(119, 235, 225, .34);
    --sd-text: #f1f6f5;
    --sd-muted: #9eafb0;
    --sd-accent: #71e5dc;
    --sd-accent-soft: #c9fff8;
    --sd-accent-dark: #1b8e87;
    --sd-black: #05090b;
    --sd-shell: 1280px;
    --sd-radius: 22px;
    --sd-shadow: 0 30px 80px rgba(0, 0, 0, .36);
}

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

html { scroll-behavior: smooth; scroll-padding-top: 154px; }

body.sd24-body {
    margin: 0;
    min-width: 320px;
    background:
        radial-gradient(circle at 8% 18%, rgba(37, 114, 108, .12), transparent 25rem),
        radial-gradient(circle at 92% 54%, rgba(25, 99, 95, .08), transparent 27rem),
        var(--sd-bg);
    color: var(--sd-text);
    font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
    font-size: 16px;
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

body.sd24-body::before {
    position: fixed;
    inset: 0;
    z-index: -2;
    pointer-events: none;
    content: "";
    opacity: .18;
    background-image:
        linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: linear-gradient(to bottom, #000, transparent 85%);
}

img { max-width: 100%; }
a { color: inherit; }
button, input, textarea, select { font: inherit; }

.sd24-shell {
    width: min(calc(100% - 48px), var(--sd-shell));
    margin-inline: auto;
}

.sd24-header {
    position: sticky;
    top: 0;
    z-index: 80;
    border-bottom: 1px solid var(--sd-line);
    background: rgba(8, 13, 16, .86);
    -webkit-backdrop-filter: blur(18px);
    backdrop-filter: blur(18px);
}

.sd24-header__inner {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    min-height: 82px;
    gap: 42px;
}

.sd24-brand {
    display: inline-flex;
    align-items: center;
    min-width: max-content;
    gap: 10px;
    color: var(--sd-text);
    text-decoration: none;
}

.sd24-brand img {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    box-shadow: 0 0 24px rgba(74, 219, 207, .2);
}

.sd24-brand__word {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 31px;
    font-style: italic;
    font-weight: 700;
    line-height: 1;
    letter-spacing: -2px;
}

.sd24-brand__domain,
.sd24-footer__domain {
    padding-left: 12px;
    border-left: 1px solid var(--sd-line-strong);
    color: #bfcccd;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .06em;
}

.sd24-header__nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
}

.sd24-header__nav a {
    padding: 10px 13px;
    border-radius: 9px;
    color: #b9c6c7;
    font-size: 13px;
    font-weight: 650;
    text-decoration: none;
    transition: color .2s ease, background .2s ease;
}

.sd24-header__nav a:hover,
.sd24-header__nav a:focus-visible {
    outline: none;
    background: rgba(113, 229, 220, .08);
    color: var(--sd-accent-soft);
}

.sd24-header__actions { display: flex; align-items: center; gap: 10px; }

.sd24-login,
.sd24-register {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    border-radius: 11px;
    padding: 0 20px;
    font-size: 14px;
    font-weight: 800;
    text-decoration: none;
    transition: transform .2s ease, border-color .2s ease, background .2s ease, box-shadow .2s ease;
}

.sd24-login {
    border: 1px solid rgba(210, 244, 241, .36);
    background: #0b1216;
    color: #eef8f7;
}

.sd24-register {
    gap: 14px;
    border: 1px solid rgba(113, 229, 220, .52);
    background: var(--sd-accent);
    color: #06110f;
    box-shadow: 0 10px 32px rgba(36, 190, 179, .18);
}

.sd24-login:hover,
.sd24-register:hover { transform: translateY(-2px); }
.sd24-login:hover { border-color: var(--sd-accent); }
.sd24-register:hover { background: #98eee8; box-shadow: 0 14px 38px rgba(36, 190, 179, .28); }

.sd24-hero {
    position: relative;
    overflow: hidden;
    min-height: 630px;
    border-bottom: 1px solid var(--sd-line);
    background:
        linear-gradient(90deg, rgba(8, 13, 16, 1) 0%, rgba(8, 13, 16, .98) 31%, rgba(8, 13, 16, .58) 58%, rgba(8, 13, 16, .08) 100%),
        url('/assets/themes/stake-dostup24/images/access-dial.webp') calc(50% + 300px) center / auto 100% no-repeat,
        #080d10;
}

.sd24-hero::before {
    position: absolute;
    top: 0;
    left: 50%;
    width: 1px;
    height: 100%;
    background: linear-gradient(transparent, rgba(113, 229, 220, .32), transparent);
    content: "";
}

.sd24-hero::after {
    position: absolute;
    inset: auto 0 0;
    height: 130px;
    pointer-events: none;
    background: linear-gradient(to bottom, transparent, rgba(8, 13, 16, .92));
    content: "";
}

.sd24-hero__inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(450px, .92fr);
    align-items: center;
    min-height: 630px;
}

.sd24-hero__copy {
    max-width: 670px;
    padding: 78px 20px 80px 0;
}

.sd24-kicker,
.sd24-status__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #a8bcbc;
    font-size: 11px;
    font-weight: 850;
    letter-spacing: .2em;
}

.sd24-kicker i,
.sd24-status__eyebrow i,
.sd24-live-card > span i,
.sd24-status__identity > span i {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--sd-accent);
    box-shadow: 0 0 0 5px rgba(113, 229, 220, .09), 0 0 18px rgba(113, 229, 220, .8);
}

.sd24-hero h1,
.sd24-inner-hero h1 {
    margin: 24px 0 18px;
    color: #f6f8f8;
    font-size: clamp(48px, 5.2vw, 76px);
    font-weight: 860;
    line-height: .99;
    letter-spacing: -.055em;
    text-wrap: balance;
}

.sd24-hero h1::first-letter { color: var(--sd-accent-soft); }

.sd24-hero__lead {
    max-width: 620px;
    margin: 0;
    color: #b5c1c2;
    font-size: clamp(17px, 1.6vw, 21px);
    line-height: 1.55;
}

.sd24-hero__actions,
.sd24-final__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 32px;
}

.sd24-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    padding: 0 24px;
    border: 1px solid transparent;
    border-radius: 12px;
    gap: 28px;
    font-size: 15px;
    font-weight: 820;
    text-decoration: none;
    transition: transform .2s ease, background .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.sd24-button:hover { transform: translateY(-2px); }
.sd24-button--primary {
    background: var(--sd-accent);
    color: #05110f;
    box-shadow: 0 12px 34px rgba(33, 189, 177, .2);
}
.sd24-button--primary:hover { background: #9af1ea; box-shadow: 0 16px 40px rgba(33, 189, 177, .3); }
.sd24-button--ghost {
    border-color: rgba(193, 234, 231, .28);
    background: rgba(8, 14, 17, .76);
    color: #edf5f4;
}
.sd24-button--ghost:hover { border-color: var(--sd-accent); background: rgba(20, 42, 43, .72); }

.sd24-hero__facts {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    margin: 38px 0 0;
    padding: 0;
    list-style: none;
}

.sd24-hero__facts li {
    display: flex;
    align-items: center;
    min-height: 42px;
    padding: 0 22px;
    border-left: 1px solid var(--sd-line);
    gap: 11px;
}

.sd24-hero__facts li:first-child { padding-left: 0; border-left: 0; }
.sd24-hero__facts i {
    display: grid;
    width: 34px;
    height: 34px;
    place-items: center;
    border: 1px solid var(--sd-line-strong);
    border-radius: 50%;
    color: var(--sd-accent);
    font-size: 11px;
    font-style: normal;
    font-weight: 850;
}
.sd24-hero__facts span { color: #aebbbc; font-size: 11px; font-weight: 700; line-height: 1.25; }

.sd24-hero__visual { position: relative; align-self: stretch; }

.sd24-live-card {
    position: absolute;
    top: 94px;
    left: 24px;
    display: flex;
    width: 188px;
    min-height: 118px;
    flex-direction: column;
    justify-content: center;
    padding: 18px 20px;
    border: 1px solid rgba(113, 229, 220, .3);
    border-radius: 16px;
    background: rgba(6, 13, 16, .72);
    box-shadow: var(--sd-shadow);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
}
.sd24-live-card > span { display: flex; align-items: center; gap: 9px; color: #aabbbb; font-size: 9px; font-weight: 850; letter-spacing: .14em; }
.sd24-live-card strong { margin-top: 10px; color: var(--sd-accent-soft); font-size: 23px; letter-spacing: .12em; }
.sd24-live-card small { color: #829697; font-size: 10px; }

.sd24-orbit-label {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 9px;
    color: #dce7e6;
    font-size: 11px;
    line-height: 1.2;
}
.sd24-orbit-label--top { top: 64px; right: 34px; }
.sd24-orbit-label--top b { color: var(--sd-accent); font-size: 25px; }
.sd24-orbit-label--bottom { right: 28px; bottom: 72px; padding: 10px 13px; border: 1px solid var(--sd-line); border-radius: 12px; background: rgba(7,13,16,.74); }
.sd24-orbit-label--bottom i { width: 9px; height: 9px; border-radius: 50%; background: var(--sd-accent); box-shadow: 0 0 14px rgba(113,229,220,.8); }

.sd24-tabs-sticky {
    position: sticky;
    top: 82px;
    z-index: 60;
    margin-top: -1px;
}

.sd24-tabs-wrap {
    overflow: hidden;
    border: 1px solid var(--sd-line);
    border-top: 0;
    border-radius: 0 0 16px 16px;
    background: rgba(13, 21, 25, .94);
    box-shadow: 0 14px 38px rgba(0, 0, 0, .24);
    -webkit-backdrop-filter: blur(16px);
    backdrop-filter: blur(16px);
}

.pcms-material-sections-nav,
.sd24-tabs-fallback {
    display: flex;
    overflow-x: auto;
    align-items: stretch;
    gap: 4px;
    padding: 7px;
    scrollbar-width: none;
}
.pcms-material-sections-nav::-webkit-scrollbar,
.sd24-tabs-fallback::-webkit-scrollbar { display: none; }

.pcms-material-sections-nav__item,
.sd24-tabs-fallback a {
    position: relative;
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    min-height: 47px;
    padding: 0 24px;
    border: 1px solid transparent;
    border-radius: 10px;
    color: #aebbbc;
    font-size: 13px;
    font-weight: 780;
    text-decoration: none;
    transition: color .2s ease, background .2s ease, border-color .2s ease;
}
.pcms-material-sections-nav__item::after,
.sd24-tabs-fallback a::after {
    position: absolute;
    right: 18px;
    bottom: 5px;
    left: 18px;
    height: 1px;
    background: transparent;
    content: "";
}
.pcms-material-sections-nav__item:hover,
.sd24-tabs-fallback a:hover { color: #eef8f7; background: rgba(255,255,255,.035); }
.pcms-material-sections-nav__item.is-active,
.sd24-tabs-fallback a.is-active {
    border-color: rgba(113, 229, 220, .2);
    background: rgba(113, 229, 220, .09);
    color: var(--sd-accent-soft);
}
.pcms-material-sections-nav__item.is-active::after,
.sd24-tabs-fallback a.is-active::after { background: var(--sd-accent); box-shadow: 0 0 12px rgba(113,229,220,.8); }

.sd24-status {
    display: grid;
    grid-template-columns: minmax(250px, .85fr) minmax(300px, 1.1fr) minmax(230px, .7fr);
    align-items: center;
    gap: 28px;
    margin-top: 28px;
    padding: 24px 28px;
    border: 1px solid var(--sd-line);
    border-radius: var(--sd-radius);
    background: linear-gradient(120deg, rgba(18,29,34,.92), rgba(10,16,19,.94));
}
.sd24-status__identity { display: flex; flex-direction: column; }
.sd24-status__identity > span { display: flex; align-items: center; gap: 10px; color: #819697; font-size: 9px; font-weight: 850; letter-spacing: .2em; }
.sd24-status__identity strong { margin-top: 8px; font-size: clamp(20px, 2.3vw, 29px); letter-spacing: -.035em; }
.sd24-status__identity small { color: var(--sd-muted); }
.sd24-status__meter { display: grid; grid-template-columns: repeat(12, 1fr); align-items: center; gap: 5px; height: 44px; }
.sd24-status__meter span { height: 30%; border-radius: 8px; background: rgba(113,229,220,.16); }
.sd24-status__meter span:nth-child(2n) { height: 52%; }
.sd24-status__meter span:nth-child(3n) { height: 76%; }
.sd24-status__meter span:nth-child(5n) { height: 100%; background: rgba(113,229,220,.62); box-shadow: 0 0 18px rgba(113,229,220,.28); }
.sd24-status__note { display: flex; align-items: center; padding-left: 25px; border-left: 1px solid var(--sd-line); gap: 12px; }
.sd24-status__note > i { display: grid; width: 36px; height: 36px; place-items: center; border-radius: 50%; background: rgba(113,229,220,.12); color: var(--sd-accent); font-style: normal; }
.sd24-status__note span { display: flex; flex-direction: column; }
.sd24-status__note b { font-size: 13px; }
.sd24-status__note small { color: var(--sd-muted); font-size: 11px; }

.sd24-overview,
.sd24-process,
.sd24-faq { padding-top: 90px; }

.sd24-section-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 30px;
}
.sd24-section-head > div > span,
.sd24-editorial__rail > span,
.sd24-final > div > span,
.sd24-list-head > span,
.sd24-not-found > span {
    color: var(--sd-accent);
    font-size: 10px;
    font-weight: 880;
    letter-spacing: .2em;
}
.sd24-section-head h2,
.sd24-final h2,
.sd24-editorial__rail strong,
.sd24-list-head h1 {
    margin: 7px 0 0;
    color: #f2f6f5;
    font-size: clamp(30px, 3.7vw, 48px);
    line-height: 1.08;
    letter-spacing: -.045em;
}
.sd24-section-head > p { max-width: 370px; margin: 0; color: var(--sd-muted); font-size: 14px; }

.sd24-feature-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 13px; }
.sd24-feature {
    position: relative;
    overflow: hidden;
    min-height: 325px;
    padding: 24px;
    border: 1px solid var(--sd-line);
    border-radius: 18px;
    background: linear-gradient(145deg, rgba(21,33,39,.92), rgba(10,16,20,.92));
    transition: transform .25s ease, border-color .25s ease, background .25s ease;
}
.sd24-feature::after {
    position: absolute;
    right: -40px;
    bottom: -70px;
    width: 170px;
    height: 170px;
    border: 1px solid rgba(113,229,220,.13);
    border-radius: 50%;
    box-shadow: 0 0 0 26px rgba(113,229,220,.025), 0 0 0 52px rgba(113,229,220,.018);
    content: "";
}
.sd24-feature:hover { transform: translateY(-5px); border-color: var(--sd-line-strong); background: linear-gradient(145deg, rgba(27,43,49,.96), rgba(11,18,21,.96)); }
.sd24-feature__top { position: relative; z-index: 1; display: flex; align-items: center; justify-content: space-between; }
.sd24-feature__top > span { color: #829394; font-size: 11px; font-weight: 800; }
.sd24-feature__top > i { display: grid; width: 50px; height: 50px; place-items: center; border: 1px solid var(--sd-line-strong); border-radius: 14px; background: rgba(113,229,220,.07); color: var(--sd-accent); font-size: 22px; font-style: normal; box-shadow: inset 0 0 24px rgba(113,229,220,.05); }
.sd24-feature > small { display: block; margin-top: 48px; color: var(--sd-accent); font-size: 9px; font-weight: 850; letter-spacing: .18em; }
.sd24-feature h3 { margin: 8px 0 9px; font-size: 21px; letter-spacing: -.025em; }
.sd24-feature p { min-height: 68px; margin: 0; color: var(--sd-muted); font-size: 13px; }
.sd24-feature > a { position: relative; z-index: 2; display: inline-flex; align-items: center; gap: 18px; margin-top: 22px; color: var(--sd-accent-soft); font-size: 13px; font-weight: 800; text-decoration: none; }
.sd24-feature > a:hover { color: var(--sd-accent); }

.sd24-directions {
    margin-top: 94px;
    padding: 82px 0 88px;
    border-block: 1px solid var(--sd-line);
    background:
        radial-gradient(circle at 20% 80%, rgba(39,138,130,.15), transparent 30rem),
        linear-gradient(180deg, rgba(14,23,27,.78), rgba(6,10,13,.9));
}
.sd24-direction-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
.sd24-direction {
    position: relative;
    display: grid;
    overflow: hidden;
    min-height: 350px;
    padding: 28px;
    border: 1px solid var(--sd-line);
    border-radius: 22px;
    background: #0d171b;
    text-decoration: none;
    transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.sd24-direction:hover { transform: translateY(-4px); border-color: rgba(113,229,220,.42); box-shadow: 0 24px 70px rgba(0,0,0,.34); }
.sd24-direction::before { position: absolute; right: -80px; bottom: -120px; width: 330px; height: 330px; border: 1px solid rgba(113,229,220,.12); border-radius: 50%; box-shadow: 0 0 0 45px rgba(113,229,220,.025), 0 0 0 90px rgba(113,229,220,.015); content: ""; }
.sd24-direction__index { position: absolute; top: 26px; left: 28px; color: #738889; font-size: 9px; font-weight: 850; letter-spacing: .2em; }
.sd24-direction > div:not(.sd24-direction__icon):not(.sd24-direction__ball) { align-self: end; max-width: 62%; }
.sd24-direction h3 { margin: 0 0 9px; font-size: 28px; letter-spacing: -.035em; }
.sd24-direction p { margin: 0; color: var(--sd-muted); font-size: 13px; }
.sd24-direction > b { display: flex; align-items: center; justify-content: space-between; align-self: end; margin-top: 22px; padding-top: 18px; border-top: 1px solid var(--sd-line); color: var(--sd-accent-soft); font-size: 13px; }
.sd24-direction > b i { font-style: normal; font-size: 18px; }
.sd24-direction__icon,
.sd24-direction__ball { position: absolute; top: 54px; right: 48px; width: 126px; height: 126px; border: 1px solid rgba(113,229,220,.3); border-radius: 28px; background: radial-gradient(circle, rgba(113,229,220,.14), rgba(8,14,17,.7)); box-shadow: 0 0 60px rgba(52,190,179,.13); transform: rotate(-8deg); }
.sd24-direction__icon i:first-child,
.sd24-direction__icon i:last-child { position: absolute; width: 54px; height: 54px; border: 4px solid var(--sd-accent); border-radius: 11px; }
.sd24-direction__icon i:first-child { top: 20px; left: 18px; transform: rotate(20deg); }
.sd24-direction__icon i:last-child { right: 16px; bottom: 18px; transform: rotate(-8deg); }
.sd24-direction__ball { border-radius: 50%; transform: none; }
.sd24-direction__ball::before,
.sd24-direction__ball::after,
.sd24-direction__ball i { position: absolute; inset: 26%; border: 3px solid var(--sd-accent); content: ""; transform: rotate(45deg); }
.sd24-direction__ball::before { inset: 8px 48px; border-width: 0 3px; transform: rotate(30deg); }
.sd24-direction__ball::after { inset: 48px 8px; border-width: 3px 0; transform: rotate(-24deg); }

.sd24-process__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin: 0;
    padding: 0;
    border-block: 1px solid var(--sd-line);
    list-style: none;
}
.sd24-process__grid li { display: grid; grid-template-columns: 62px 1fr; gap: 18px; min-height: 170px; padding: 34px 26px; border-left: 1px solid var(--sd-line); }
.sd24-process__grid li:first-child { border-left: 0; padding-left: 0; }
.sd24-process__grid li:last-child { padding-right: 0; }
.sd24-process__grid > li > span { display: grid; width: 52px; height: 52px; place-items: center; border: 1px solid var(--sd-line-strong); border-radius: 50%; color: var(--sd-accent); font-size: 12px; font-weight: 850; box-shadow: inset 0 0 20px rgba(113,229,220,.05); }
.sd24-process__grid h3 { margin: 2px 0 9px; font-size: 17px; }
.sd24-process__grid p { margin: 0; color: var(--sd-muted); font-size: 13px; }

.sd24-editorial {
    display: grid;
    grid-template-columns: minmax(260px, .62fr) minmax(0, 1.55fr);
    gap: 60px;
    margin-top: 96px;
    padding-top: 38px;
    border-top: 1px solid var(--sd-line);
}
.sd24-editorial__rail { position: sticky; top: 168px; align-self: start; padding: 26px; border: 1px solid var(--sd-line); border-radius: 18px; background: linear-gradient(145deg, rgba(19,31,36,.86), rgba(9,15,18,.8)); }
.sd24-editorial__rail strong { display: block; margin-top: 10px; font-size: 34px; }
.sd24-editorial__rail p { color: var(--sd-muted); font-size: 13px; }
.sd24-editorial__chips { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 22px; }
.sd24-editorial__chips i { padding: 7px 10px; border: 1px solid var(--sd-line); border-radius: 999px; color: #99abaa; font-size: 9px; font-style: normal; font-weight: 800; letter-spacing: .12em; }

.sd24-prose { min-width: 0; color: #bac5c6; font-size: 16px; line-height: 1.75; }
.sd24-prose > :first-child { margin-top: 0; }
.sd24-prose > :last-child { margin-bottom: 0; }
.sd24-prose h1,
.sd24-prose h2,
.sd24-prose h3,
.sd24-prose h4 { color: #f1f5f4; line-height: 1.2; letter-spacing: -.035em; text-wrap: balance; }
.sd24-prose h1 { font-size: clamp(36px, 4vw, 56px); }
.sd24-prose h2 { margin: 44px 0 16px; font-size: clamp(27px, 3vw, 38px); }
.sd24-prose h3 { margin: 32px 0 12px; font-size: 23px; }
.sd24-prose p { margin: 0 0 18px; }
.sd24-prose a { color: var(--sd-accent); text-underline-offset: 3px; }
.sd24-prose strong { color: #f1f6f5; }
.sd24-prose ul,
.sd24-prose ol { margin: 20px 0; padding-left: 25px; }
.sd24-prose li { margin: 8px 0; }
.sd24-prose blockquote { margin: 28px 0; padding: 20px 24px; border: 1px solid var(--sd-line); border-left: 3px solid var(--sd-accent); border-radius: 12px; background: rgba(113,229,220,.05); color: #d2dddd; }
.sd24-prose img { height: auto; border: 1px solid var(--sd-line); border-radius: 16px; }
.sd24-prose table { display: block; overflow-x: auto; width: 100%; border-collapse: collapse; }
.sd24-prose th,
.sd24-prose td { min-width: 145px; padding: 13px 15px; border: 1px solid var(--sd-line); text-align: left; }
.sd24-prose th { background: rgba(113,229,220,.07); color: #eef6f5; }

.sd24-faq { padding-bottom: 86px; }
.sd24-faq__grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
.sd24-faq details { border: 1px solid var(--sd-line); border-radius: 13px; background: rgba(16,25,30,.76); }
.sd24-faq summary { display: flex; align-items: center; justify-content: space-between; min-height: 62px; padding: 14px 18px; cursor: pointer; color: #e9f0ef; font-size: 14px; font-weight: 740; list-style: none; }
.sd24-faq summary::-webkit-details-marker { display: none; }
.sd24-faq summary::after { color: var(--sd-accent); content: "+"; font-size: 20px; font-weight: 400; }
.sd24-faq details[open] summary::after { content: "−"; }
.sd24-faq details p { margin: 0; padding: 0 18px 18px; color: var(--sd-muted); font-size: 13px; }
.pcms-faq__title { display: none; }
.pcms-faq__list { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
.pcms-faq__item { padding: 20px; border: 1px solid var(--sd-line); border-radius: 13px; background: rgba(16,25,30,.76); }
.pcms-faq__question { margin: 0 0 8px; color: #edf4f3; font-size: 15px; }
.pcms-faq__answer { color: var(--sd-muted); font-size: 13px; }

.sd24-final {
    position: relative;
    display: grid;
    overflow: hidden;
    grid-template-columns: 86px 1fr auto;
    align-items: center;
    gap: 26px;
    margin-bottom: 96px;
    padding: 28px;
    border: 1px solid rgba(113,229,220,.38);
    border-radius: 20px;
    background: linear-gradient(105deg, rgba(27,76,73,.44), rgba(14,25,29,.9) 50%, rgba(7,12,15,.96));
    box-shadow: 0 20px 70px rgba(0,0,0,.25);
}
.sd24-final::after { position: absolute; right: 17%; bottom: -130px; width: 250px; height: 250px; border: 1px solid rgba(113,229,220,.08); border-radius: 50%; box-shadow: 0 0 0 38px rgba(113,229,220,.018), 0 0 0 76px rgba(113,229,220,.012); content: ""; }
.sd24-final > * { position: relative; z-index: 1; }
.sd24-final__dial { display: grid; width: 78px; height: 78px; place-items: center; border: 1px solid rgba(113,229,220,.48); border-radius: 50%; background: repeating-conic-gradient(from 0deg, rgba(113,229,220,.6) 0 1deg, transparent 1deg 15deg), radial-gradient(circle at center, #0a1215 0 61%, rgba(113,229,220,.16) 62%); box-shadow: 0 0 36px rgba(40,194,183,.18); }
.sd24-final__dial span { display: grid; width: 49px; height: 49px; place-items: center; border-radius: 50%; background: #0a1114; color: var(--sd-accent); font-size: 16px; font-weight: 850; }
.sd24-final h2 { margin-top: 3px; font-size: 30px; }
.sd24-final p { margin: 5px 0 0; color: var(--sd-muted); font-size: 13px; }
.sd24-final__actions { margin: 0; }

.sd24-footer { border-top: 1px solid var(--sd-line); background: #070b0e; }
.sd24-footer__top { display: grid; grid-template-columns: auto minmax(260px, 1fr) auto; align-items: center; gap: 38px; padding-top: 38px; padding-bottom: 30px; }
.sd24-footer__brand { display: flex; align-items: center; gap: 12px; }
.sd24-footer__top p { max-width: 500px; margin: 0 auto; color: #718687; font-size: 11px; }
.sd24-footer__cta { display: inline-flex; align-items: center; gap: 20px; color: var(--sd-accent); font-size: 12px; font-weight: 800; text-decoration: none; }
.sd24-footer__bottom { display: flex; justify-content: space-between; padding-top: 18px; padding-bottom: 28px; border-top: 1px solid rgba(183,225,223,.08); color: #657879; font-size: 10px; }

.sd24-mobile-dock { display: none; }

/* Inner material sections */
.sd24-inner-hero {
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid var(--sd-line);
    background:
        linear-gradient(90deg, rgba(8,13,16,.98), rgba(8,13,16,.87) 55%, rgba(8,13,16,.32)),
        url('/assets/themes/stake-dostup24/images/access-dial.webp') calc(50% + 370px) 49% / auto 150% no-repeat,
        #080d10;
}
.sd24-inner-hero__grid { display: grid; grid-template-columns: minmax(0, 1.35fr) minmax(220px, .65fr); align-items: center; min-height: 390px; padding-top: 58px; padding-bottom: 62px; }
.sd24-inner-hero__grid > div:first-child { max-width: 790px; }
.sd24-inner-hero h1 { max-width: 790px; margin-top: 18px; font-size: clamp(42px, 5vw, 66px); }
.sd24-inner-hero p { max-width: 650px; margin: 0 0 28px; color: #abbabb; font-size: 17px; }
.sd24-inner-hero__dial { display: grid; justify-self: end; width: 172px; height: 172px; place-items: center; border: 1px solid rgba(113,229,220,.44); border-radius: 50%; background: repeating-conic-gradient(from 0deg, rgba(113,229,220,.6) 0 1deg, transparent 1deg 15deg), radial-gradient(circle, rgba(7,14,17,.96) 0 62%, rgba(113,229,220,.14) 63%); box-shadow: 0 0 60px rgba(49,198,187,.17); }
.sd24-inner-hero__dial span { align-self: end; color: #f3f8f7; font-size: 48px; font-weight: 850; letter-spacing: -.06em; line-height: 1; }
.sd24-inner-hero__dial small { align-self: start; margin-top: 7px; color: var(--sd-accent); font-size: 9px; font-weight: 850; letter-spacing: .24em; }
.sd24-tabs-sticky--inner { margin-bottom: 0; }
.sd24-article-layout { display: grid; grid-template-columns: minmax(0, 1.55fr) minmax(280px, .55fr); align-items: start; gap: 54px; padding-top: 64px; padding-bottom: 80px; }
.sd24-article { max-width: 820px; }
.sd24-breadcrumbs { margin-bottom: 26px; color: #788b8c; font-size: 11px; }
.sd24-breadcrumbs a { color: #94a6a7; text-decoration: none; }
.sd24-breadcrumbs a:hover { color: var(--sd-accent); }
.sd24-article-aside { position: sticky; top: 170px; padding: 26px; border: 1px solid var(--sd-line); border-radius: 18px; background: linear-gradient(145deg, rgba(19,31,36,.95), rgba(8,14,17,.94)); box-shadow: var(--sd-shadow); }
.sd24-article-aside h2 { margin: 18px 0 8px; font-size: 25px; letter-spacing: -.035em; }
.sd24-article-aside p { margin: 0 0 20px; color: var(--sd-muted); font-size: 13px; }
.sd24-aside-login,
.sd24-aside-register { display: flex; align-items: center; justify-content: space-between; min-height: 49px; margin-top: 9px; padding: 0 16px; border-radius: 10px; font-size: 13px; font-weight: 820; text-decoration: none; }
.sd24-aside-login { border: 1px solid var(--sd-line-strong); color: #eff6f5; }
.sd24-aside-register { background: var(--sd-accent); color: #06110f; }
.sd24-article-aside ul { margin: 24px 0 0; padding: 19px 0 0; border-top: 1px solid var(--sd-line); list-style: none; }
.sd24-article-aside li { position: relative; margin: 9px 0; padding-left: 18px; color: #8fa1a2; font-size: 11px; }
.sd24-article-aside li::before { position: absolute; top: .62em; left: 0; width: 6px; height: 6px; border-radius: 50%; background: var(--sd-accent); content: ""; box-shadow: 0 0 10px rgba(113,229,220,.5); }
.sd24-article-faq { margin-top: 48px; padding-top: 10px; border-top: 1px solid var(--sd-line); }
.sd24-article-faq > h2 { display: none; }
.sd24-article-faq .pcms-faq__title { display: block; }
.sd24-article-faq .pcms-faq__list { grid-template-columns: 1fr; }
.sd24-final--inner { margin-top: 0; }

/* Generic lists and pages */
.sd24-generic { min-height: 58vh; padding-top: 64px; padding-bottom: 90px; }
.sd24-generic > .sd24-prose { max-width: 880px; }
.sd24-lead { color: #afbdbe; font-size: 19px; }
.sd24-list-head { max-width: 850px; margin-bottom: 38px; }
.sd24-list-head p { color: var(--sd-muted); font-size: 17px; }
.sd24-card-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; }
.sd24-card { overflow: hidden; border: 1px solid var(--sd-line); border-radius: 17px; background: linear-gradient(145deg, #132027, #0b1216); }
.sd24-card__image { display: block; aspect-ratio: 16 / 9; overflow: hidden; }
.sd24-card__image img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s ease; }
.sd24-card:hover .sd24-card__image img { transform: scale(1.035); }
.sd24-card > div { padding: 22px; }
.sd24-card > div > span { color: var(--sd-accent); font-size: 9px; font-weight: 850; letter-spacing: .18em; }
.sd24-card h2 { margin: 9px 0; font-size: 20px; line-height: 1.25; }
.sd24-card h2 a { text-decoration: none; }
.sd24-card p { color: var(--sd-muted); font-size: 13px; }
.sd24-card__more { display: inline-flex; align-items: center; gap: 14px; margin-top: 10px; color: var(--sd-accent); font-size: 12px; font-weight: 800; text-decoration: none; }
.sd24-category-copy { max-width: 880px; margin-top: 70px; }
.sd24-filters { margin-bottom: 24px; }
.sd24-not-found { display: flex; min-height: 68vh; flex-direction: column; align-items: center; justify-content: center; padding-block: 70px; text-align: center; }
.sd24-not-found .sd24-inner-hero__dial { justify-self: auto; margin-bottom: 30px; }
.sd24-not-found h1 { margin: 9px 0; font-size: clamp(40px, 6vw, 74px); letter-spacing: -.05em; }
.sd24-not-found p { margin: 0 0 25px; color: var(--sd-muted); }
.pcms-pagination,
.pcms-load-more { display: flex; justify-content: center; gap: 8px; margin-top: 28px; }
.pcms-pagination a,
.pcms-load-more a { display: grid; min-width: 42px; min-height: 42px; place-items: center; padding: 0 15px; border: 1px solid var(--sd-line); border-radius: 9px; color: #b9c7c7; text-decoration: none; }
.pcms-pagination a[aria-current="page"],
.pcms-load-more a:hover { border-color: var(--sd-accent); color: var(--sd-accent); }

@media (max-width: 1100px) {
    .sd24-header__inner { grid-template-columns: auto 1fr; gap: 20px; }
    .sd24-header__nav { display: none; }
    .sd24-header__actions { justify-self: end; }
    .sd24-hero { background-position: calc(50% + 340px) center; }
    .sd24-hero__inner { grid-template-columns: minmax(0, 1fr) 360px; }
    .sd24-live-card { left: 0; }
    .sd24-feature-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .sd24-feature { min-height: 300px; }
    .sd24-footer__top { grid-template-columns: 1fr auto; }
    .sd24-footer__top p { grid-row: 2; margin: 0; }
}

@media (max-width: 820px) {
    html { scroll-padding-top: 140px; }
    .sd24-shell { width: min(calc(100% - 30px), var(--sd-shell)); }
    .sd24-header__inner { min-height: 70px; }
    .sd24-brand img { width: 36px; height: 36px; border-radius: 10px; }
    .sd24-brand__word { font-size: 27px; }
    .sd24-brand__domain { display: none; }
    .sd24-header__actions { gap: 7px; }
    .sd24-login,
    .sd24-register { min-height: 42px; padding: 0 14px; font-size: 12px; }
    .sd24-register span { display: none; }
    .sd24-hero {
        min-height: auto;
        background:
            linear-gradient(180deg, rgba(8,13,16,.5), rgba(8,13,16,.95) 58%, rgba(8,13,16,1)),
            url('/assets/themes/stake-dostup24/images/access-dial.webp') 72% top / auto 58% no-repeat,
            #080d10;
    }
    .sd24-hero::before { left: 15px; opacity: .6; }
    .sd24-hero__inner { display: block; min-height: 760px; padding-top: 318px; }
    .sd24-hero__copy { max-width: 100%; padding: 42px 0 55px; }
    .sd24-hero h1 { margin-top: 17px; font-size: clamp(43px, 11.5vw, 63px); }
    .sd24-hero__lead { font-size: 16px; }
    .sd24-hero__visual { position: absolute; inset: 0; pointer-events: none; }
    .sd24-live-card { top: 24px; left: 15px; width: 154px; min-height: 94px; padding: 13px; }
    .sd24-live-card strong { font-size: 18px; }
    .sd24-orbit-label--top { top: 30px; right: 15px; }
    .sd24-orbit-label--bottom { top: 244px; right: 15px; bottom: auto; }
    .sd24-hero__facts { gap: 12px; }
    .sd24-hero__facts li { flex: 1 1 28%; padding: 0 8px; border-left: 0; }
    .sd24-tabs-sticky { top: 70px; width: 100%; }
    .sd24-tabs-wrap { border-right: 0; border-left: 0; border-radius: 0; }
    .pcms-material-sections-nav,
    .sd24-tabs-fallback { padding-inline: 15px; }
    .pcms-material-sections-nav__item,
    .sd24-tabs-fallback a { min-height: 44px; padding: 0 18px; }
    .sd24-status { grid-template-columns: 1fr auto; margin-top: 18px; padding: 20px; }
    .sd24-status__meter { display: none; }
    .sd24-status__note { padding-left: 18px; }
    .sd24-section-head { display: block; }
    .sd24-section-head > p { margin-top: 13px; }
    .sd24-direction-grid { grid-template-columns: 1fr; }
    .sd24-direction { min-height: 320px; }
    .sd24-process__grid { grid-template-columns: 1fr; }
    .sd24-process__grid li,
    .sd24-process__grid li:first-child,
    .sd24-process__grid li:last-child { min-height: 0; padding: 26px 0; border-left: 0; border-top: 1px solid var(--sd-line); }
    .sd24-process__grid li:first-child { border-top: 0; }
    .sd24-editorial { grid-template-columns: 1fr; gap: 34px; }
    .sd24-editorial__rail { position: static; }
    .sd24-faq__grid,
    .pcms-faq__list { grid-template-columns: 1fr; }
    .sd24-final { grid-template-columns: 68px 1fr; }
    .sd24-final__dial { width: 64px; height: 64px; }
    .sd24-final__dial span { width: 40px; height: 40px; }
    .sd24-final__actions { grid-column: 1 / -1; }
    .sd24-footer__top { grid-template-columns: 1fr; gap: 18px; }
    .sd24-footer__top p { grid-row: auto; }
    .sd24-footer__cta { justify-self: start; }
    .sd24-inner-hero { background-position: 76% top; background-size: auto 105%; }
    .sd24-inner-hero__grid { grid-template-columns: 1fr; min-height: 420px; }
    .sd24-inner-hero__grid > div:first-child { position: relative; z-index: 2; }
    .sd24-inner-hero__dial { position: absolute; right: 18px; bottom: 32px; width: 118px; height: 118px; opacity: .5; }
    .sd24-inner-hero__dial span { font-size: 34px; }
    .sd24-article-layout { grid-template-columns: 1fr; gap: 35px; }
    .sd24-article-aside { position: static; }
    .sd24-card-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 560px) {
    body.sd24-body { padding-bottom: calc(68px + env(safe-area-inset-bottom)); }
    .sd24-header__actions { display: none; }
    .sd24-header__inner { display: flex; justify-content: center; }
    .sd24-brand__domain { display: inline; }
    .sd24-hero__inner { min-height: 735px; padding-top: 300px; }
    .sd24-hero__copy { padding-top: 36px; }
    .sd24-hero h1 { font-size: clamp(39px, 12vw, 54px); }
    .sd24-hero__actions { display: grid; grid-template-columns: 1fr; }
    .sd24-button { width: 100%; }
    .sd24-hero__facts { justify-content: space-between; }
    .sd24-hero__facts li { flex: 0 1 auto; }
    .sd24-hero__facts span { display: none; }
    .sd24-status { display: block; }
    .sd24-status__note { margin-top: 18px; padding: 16px 0 0; border-top: 1px solid var(--sd-line); border-left: 0; }
    .sd24-overview,
    .sd24-process,
    .sd24-faq { padding-top: 68px; }
    .sd24-feature-grid { grid-template-columns: 1fr; }
    .sd24-feature { min-height: 275px; }
    .sd24-feature > small { margin-top: 32px; }
    .sd24-directions { margin-top: 70px; padding-block: 65px; }
    .sd24-direction { min-height: 370px; padding: 23px; }
    .sd24-direction__icon,
    .sd24-direction__ball { top: 54px; right: 30px; }
    .sd24-direction > div:not(.sd24-direction__icon):not(.sd24-direction__ball) { max-width: 82%; }
    .sd24-process__grid li { grid-template-columns: 54px 1fr; gap: 13px; }
    .sd24-process__grid > li > span { width: 46px; height: 46px; }
    .sd24-editorial { margin-top: 72px; }
    .sd24-final { display: block; padding: 24px; }
    .sd24-final__dial { margin-bottom: 18px; }
    .sd24-final__actions { display: grid; grid-template-columns: 1fr 1.4fr; }
    .sd24-final__actions .sd24-button { min-height: 49px; padding-inline: 15px; gap: 12px; }
    .sd24-footer__bottom { flex-direction: column; gap: 8px; padding-bottom: 20px; }
    .sd24-mobile-dock {
        position: fixed;
        right: 0;
        bottom: 0;
        left: 0;
        z-index: 120;
        display: grid;
        grid-template-columns: .8fr 1.2fr;
        gap: 7px;
        padding: 8px 12px calc(8px + env(safe-area-inset-bottom));
        border-top: 1px solid var(--sd-line-strong);
        background: rgba(6,11,13,.94);
        box-shadow: 0 -18px 50px rgba(0,0,0,.4);
        -webkit-backdrop-filter: blur(16px);
        backdrop-filter: blur(16px);
    }
    .sd24-mobile-dock a { display: flex; align-items: center; justify-content: center; min-height: 49px; border-radius: 10px; font-size: 13px; font-weight: 850; text-decoration: none; }
    .sd24-mobile-dock a:first-child { border: 1px solid rgba(210,244,241,.32); background: #0c1418; }
    .sd24-mobile-dock a:last-child { gap: 18px; background: var(--sd-accent); color: #05110f; }
    .sd24-inner-hero__grid { min-height: 460px; padding-block: 55px; }
    .sd24-inner-hero h1 { font-size: clamp(38px, 11vw, 53px); }
    .sd24-inner-hero p { font-size: 15px; }
    .sd24-inner-hero__dial { display: none; }
    .sd24-article-layout { padding-top: 45px; }
    .sd24-card-grid { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; }
}
