.home-v2-page {
    --home-gold: #e7b84d;
    --home-gold-bright: #ffd769;
    --home-cyan: #76d9e8;
    --home-bg: #080b12;
    --home-panel: #101621;
    --home-line: rgba(255, 255, 255, .1);
    --home-muted: #aab2bf;
    position: relative;
    overflow: hidden;
    margin: 0;
    background: var(--home-bg);
    color: #fff;
}

.home-v2-page *,
.home-v2-page *::before,
.home-v2-page *::after {
    box-sizing: border-box;
}

.home-v2-shell {
    width: min(1220px, calc(100% - 48px));
    margin: 0 auto;
}

.home-v2-hero {
    position: relative;
    min-height: 640px;
    display: flex;
    align-items: center;
    overflow: hidden;
    isolation: isolate;
    border-bottom: 1px solid rgba(231, 184, 77, .2);
    background: #080b12;
}

.home-v2-hero-art,
.home-v2-hero-shade {
    position: absolute;
    inset: 0;
    z-index: -2;
    width: 100%;
    height: 100%;
}

.home-v2-hero-art {
    object-fit: cover;
    object-position: center;
    transform: scale(1.02);
}

.home-v2-hero-shade {
    z-index: -1;
    background:
        linear-gradient(90deg, rgba(6, 8, 13, .98) 0%, rgba(6, 8, 13, .88) 46%, rgba(6, 8, 13, .24) 100%),
        linear-gradient(0deg, #080b12 0%, transparent 30%),
        radial-gradient(circle at 68% 42%, transparent 0%, rgba(6, 8, 13, .2) 66%);
}

.home-v2-hero-inner {
    position: relative;
    display: flex;
    align-items: center;
    padding: 82px 0 148px;
}

.home-v2-hero-copy {
    max-width: 720px;
}

.home-v2-status {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 26px;
    padding: 8px 13px;
    border: 1px solid rgba(98, 224, 143, .3);
    border-radius: 999px;
    background: rgba(51, 174, 95, .11);
    color: #92efb1;
    font-size: 12px;
    font-weight: 850;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.home-v2-status i {
    color: #52d982;
    font-size: 7px;
    filter: drop-shadow(0 0 6px rgba(82, 217, 130, .8));
}

.home-v2-kicker {
    margin: 0;
    color: var(--home-gold-bright);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.home-v2-hero h1 {
    max-width: 760px;
    margin: 9px 0 20px;
    color: #fff;
    font-size: clamp(48px, 5.4vw, 76px);
    line-height: .99;
    letter-spacing: -.035em;
    text-wrap: balance;
    text-shadow: 0 7px 30px rgba(0, 0, 0, .5);
}

.home-v2-lead {
    max-width: 660px;
    margin: 0;
    color: #c4cad3;
    font-size: 18px;
    line-height: 1.65;
}

.home-v2-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 30px;
}

.home-v2-hero-copy .home-v2-actions {
    width: min(390px, 100%);
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.home-v2-button {
    min-height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 13px 21px;
    border: 1px solid transparent;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 850;
    text-decoration: none;
    transition: transform .22s ease, border-color .22s ease, background .22s ease, box-shadow .22s ease;
}

.home-v2-hero-copy .home-v2-button {
    min-height: 58px;
    padding: 16px 18px;
    font-size: 15px;
}

.home-v2-button:hover {
    transform: translateY(-3px);
}

.home-v2-button.is-primary {
    background: linear-gradient(135deg, #ffd76b, #d99e23);
    color: #0b0d12;
    box-shadow: 0 13px 32px rgba(217, 158, 35, .25);
}

.home-v2-button.is-primary:hover {
    box-shadow: 0 17px 38px rgba(217, 158, 35, .36);
}

.home-v2-button.is-secondary {
    border-color: rgba(255, 255, 255, .22);
    background: rgba(7, 10, 16, .5);
    color: #fff;
    backdrop-filter: blur(10px);
}

.home-v2-button.is-secondary:hover {
    border-color: rgba(231, 184, 77, .45);
    background: rgba(18, 23, 32, .78);
}

.home-v2-facts {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 28px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 18px;
    background: rgba(7, 10, 16, .7);
    box-shadow: 0 20px 55px rgba(0, 0, 0, .32);
    backdrop-filter: blur(16px);
}

.home-v2-facts.is-single {
    right: auto;
    width: min(390px, 100%);
    grid-template-columns: 1fr;
}

.home-v2-facts > div {
    min-height: 92px;
    display: grid;
    grid-template-columns: auto 1fr;
    grid-template-rows: auto auto;
    align-content: center;
    column-gap: 15px;
    padding: 18px 27px;
}

.home-v2-facts > div + div {
    border-left: 1px solid rgba(255, 255, 255, .1);
}

.home-v2-facts small {
    grid-column: 2;
    color: #848e9d;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .09em;
    text-transform: uppercase;
}

.home-v2-facts strong {
    grid-row: 1 / 3;
    align-self: center;
    color: var(--home-gold-bright);
    font-size: 34px;
    line-height: 1;
}

.home-v2-facts span {
    grid-column: 2;
    align-self: start;
    margin-top: 4px;
    color: #d9dde4;
    font-size: 14px;
    font-weight: 700;
}

.home-v2-section {
    padding: 88px 0;
}

.home-v2-live-section {
    background:
        radial-gradient(circle at 17% 0%, rgba(231, 184, 77, .055), transparent 32%),
        linear-gradient(180deg, #090d15, #080b12);
}

.home-v2-section-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 28px;
    margin-bottom: 34px;
}

.home-v2-section-heading h2 {
    margin: 8px 0 0;
    color: #fff;
    font-size: clamp(34px, 4vw, 50px);
    line-height: 1.05;
    letter-spacing: -.025em;
}

.home-v2-section-heading.is-roadmap h2 {
    margin-top: 0;
    color: var(--home-gold-bright);
}

.home-v2-section-heading > p {
    max-width: 430px;
    margin: 0;
    color: var(--home-muted);
    font-size: 16px;
    line-height: 1.6;
    text-align: right;
}

.home-v2-live-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.72fr) minmax(330px, .78fr);
    gap: 22px;
    align-items: start;
}

.home-v2-news-column {
    min-width: 0;
    display: grid;
    gap: 22px;
}

.home-v2-news,
.home-v2-rating,
.home-v2-guides {
    overflow: hidden;
    border: 1px solid var(--home-line);
    border-radius: 22px;
    background: rgba(16, 22, 33, .83);
    box-shadow: 0 27px 70px rgba(0, 0, 0, .24);
}

.home-v2-card-heading {
    min-height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 18px 22px;
    border-bottom: 1px solid var(--home-line);
}

.home-v2-card-heading > div {
    display: flex;
    align-items: center;
    gap: 12px;
}

.home-v2-card-heading i {
    color: var(--home-gold);
}

.home-v2-card-heading h3 {
    margin: 0;
    color: #fff;
    font-size: 19px;
}

.home-v2-card-heading > a,
.home-v2-card-heading > span {
    color: #aeb6c1;
    font-size: 12px;
    font-weight: 800;
    text-decoration: none;
    text-transform: uppercase;
}

.home-v2-card-heading > a:hover {
    color: var(--home-gold-bright);
}

.home-v2-news-featured {
    display: grid;
    grid-template-columns: minmax(310px, 1.08fr) minmax(280px, .92fr);
    min-height: 330px;
    border-bottom: 1px solid var(--home-line);
}

.home-v2-news-featured-media {
    position: relative;
    min-height: 330px;
    overflow: hidden;
    background: #0a0f18;
}

.home-v2-news-featured-media img,
.home-v2-news-featured-media > span {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.home-v2-news-featured-media img {
    object-fit: contain;
    transition: transform .45s ease;
}

.home-v2-news-featured-media > span {
    background: linear-gradient(90deg, transparent 64%, rgba(16, 22, 33, .82));
}

.home-v2-news-featured:hover img {
    transform: none;
}

.home-v2-news-featured-copy {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 30px;
}

.home-v2-news time {
    color: #8f99a7;
    font-size: 12px;
    font-weight: 750;
}

.home-v2-news-featured-copy h3 {
    margin: 12px 0 13px;
    font-size: 26px;
    line-height: 1.2;
}

.home-v2-news a {
    color: inherit;
    text-decoration: none;
}

.home-v2-news h3 a:hover,
.home-v2-news h4 a:hover {
    color: var(--home-gold-bright);
}

.home-v2-news-featured-copy p {
    display: -webkit-box;
    overflow: hidden;
    margin: 0;
    color: #aeb6c1;
    font-size: 14px;
    line-height: 1.62;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
}

.home-v2-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 20px;
    color: var(--home-gold-bright) !important;
    font-size: 12px;
    font-weight: 850;
    text-transform: uppercase;
}

.home-v2-more i {
    transition: transform .2s ease;
}

.home-v2-more:hover i {
    transform: translateX(4px);
}

.home-v2-news-secondary {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.home-v2-news-secondary article {
    min-height: 174px;
    display: grid;
    grid-template-columns: 132px minmax(0, 1fr);
    gap: 18px;
    align-items: center;
    padding: 18px;
}

.home-v2-news-secondary article + article {
    border-left: 1px solid var(--home-line);
}

.home-v2-news-thumb {
    width: 132px;
    height: 112px;
    display: grid;
    place-items: center;
    overflow: hidden;
    border-radius: 13px;
    background: #0b1019;
    color: #667181 !important;
    font-size: 26px;
}

.home-v2-news-thumb img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #171109;
}

.home-v2-news-secondary h4 {
    display: -webkit-box;
    overflow: hidden;
    margin: 7px 0 0;
    color: #fff;
    font-size: 15px;
    line-height: 1.35;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

.home-v2-news-secondary .home-v2-more {
    margin-top: 10px;
    font-size: 10px;
}

.home-v2-guide-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.home-v2-guide-link {
    min-width: 0;
    min-height: 126px;
    display: grid;
    grid-template-columns: 46px minmax(0, 1fr) 18px;
    align-items: center;
    gap: 13px;
    padding: 20px;
    color: inherit;
    text-decoration: none;
    transition: background-color .2s ease, color .2s ease;
}

.home-v2-guide-link + .home-v2-guide-link {
    border-left: 1px solid var(--home-line);
}

.home-v2-guide-link:hover {
    background: rgba(231, 184, 77, .075);
}

.home-v2-guide-icon {
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(231, 184, 77, .22);
    border-radius: 14px;
    background: rgba(231, 184, 77, .1);
    color: var(--home-gold-bright);
    font-size: 18px;
}

.home-v2-guide-link > span:nth-child(2) {
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.home-v2-guide-link strong {
    color: #fff;
    font-size: 15px;
    line-height: 1.25;
}

.home-v2-guide-link small {
    color: #8993a1;
    font-size: 12px;
    line-height: 1.4;
}

.home-v2-guide-link > i {
    color: #687382;
    font-size: 12px;
    transition: color .2s ease, transform .2s ease;
}

.home-v2-guide-link:hover > i {
    color: var(--home-gold-bright);
    transform: translateX(3px);
}

.home-v2-rating-list {
    margin: 0;
    padding: 10px 16px 16px;
    list-style: none;
}

.home-v2-rating-list li {
    min-height: 54px;
    display: grid;
    grid-template-columns: 26px 44px minmax(0, 1fr) auto;
    align-items: center;
    gap: 10px;
    padding: 8px 7px;
    border-bottom: 1px solid rgba(255, 255, 255, .065);
}

.home-v2-rating-list li:last-child {
    border-bottom: 0;
}

.home-v2-rating-list li.is-leader {
    min-height: 66px;
    margin: 5px 0;
    padding-inline: 11px;
    border: 1px solid rgba(231, 184, 77, .12);
    border-radius: 13px;
    background: linear-gradient(90deg, rgba(231, 184, 77, .09), transparent 72%);
}

.home-v2-rank {
    color: #6f7886;
    font-size: 12px;
    font-weight: 900;
    text-align: center;
}

.home-v2-rating-list li:nth-child(1) .home-v2-rank { color: #ffd45c; }
.home-v2-rating-list li:nth-child(2) .home-v2-rank { color: #c9d0d9; }
.home-v2-rating-list li:nth-child(3) .home-v2-rank { color: #d69b5b; }

.home-v2-hero-mark {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 10px;
    background: #171e2a;
}

.is-leader .home-v2-hero-mark {
    border-color: rgba(231, 184, 77, .24);
    background: rgba(231, 184, 77, .12);
    color: var(--home-gold-bright);
}

.home-v2-rating-panel[hidden] {
    display: none;
}

.home-v2-hero-mark img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.home-v2-rating-tabs {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 5px;
    margin: 0 16px 16px;
    padding: 5px;
    border: 1px solid rgba(255, 255, 255, .07);
    border-radius: 13px;
    background: rgba(5, 9, 15, .46);
}

.home-v2-rating-tabs button {
    min-width: 0;
    min-height: 38px;
    padding: 8px 5px;
    border: 0;
    border-radius: 9px;
    background: transparent;
    color: #8993a1;
    font: inherit;
    font-size: 11px;
    font-weight: 800;
    cursor: pointer;
    transition: background-color .2s ease, color .2s ease, box-shadow .2s ease;
}

.home-v2-rating-tabs button:hover {
    color: #fff;
}

.home-v2-rating-tabs button.is-active {
    background: linear-gradient(135deg, #f0c654, #c88b13);
    color: #17120a;
    box-shadow: 0 7px 18px rgba(201, 141, 20, .22);
}

.home-v2-rating-tabs button:focus-visible {
    outline: 2px solid var(--home-gold-bright);
    outline-offset: 2px;
}
.home-v2-hero-name {
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.home-v2-hero-name strong {
    overflow: hidden;
    color: #f4f5f7;
    font-size: 13px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.home-v2-hero-name small {
    overflow: hidden;
    color: #778190;
    font-size: 10px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.home-v2-hero-level {
    color: #dde1e7;
    font-size: 14px;
    font-weight: 900;
    white-space: nowrap;
}

.home-v2-hero-level small {
    margin-left: 3px;
    color: #747e8c;
    font-size: 9px;
    text-transform: uppercase;
}

.home-v2-empty {
    min-height: 260px;
    display: grid;
    place-content: center;
    gap: 12px;
    color: #778190;
    text-align: center;
}

.home-v2-empty i {
    color: var(--home-gold);
    font-size: 34px;
}

.home-v2-empty p {
    margin: 0;
}

.home-v2-roadmap-section {
    position: relative;
    padding-top: 76px;
    border-top: 1px solid rgba(255, 255, 255, .06);
    background:
        radial-gradient(circle at 50% 0%, rgba(231, 184, 77, .075), transparent 34%),
        #070a11;
}

.home-v2-section-heading.is-roadmap > p {
    max-width: 500px;
}

.home-v2-roadmap-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 15px;
}

.home-v2-roadmap-carousel { position: relative; }

.home-v2-roadmap-viewport {
    overflow: hidden;
    margin-inline: -18px;
    padding: 18px 0 22px;
    outline: none;
    touch-action: pan-y;
}

.home-v2-roadmap-viewport:focus-visible {
    border-radius: 24px;
    box-shadow: 0 0 0 3px rgba(214, 160, 43, .28);
}

.home-v2-roadmap-track {
    display: flex;
    width: max-content;
    align-items: stretch;
    gap: 18px;
    padding-inline: var(--roadmap-side-space, 40px);
    transition: transform .48s cubic-bezier(.22, .75, .22, 1);
    will-change: transform;
}

.home-v2-roadmap-card {
    position: relative;
    min-height: 410px;
    overflow: hidden;
    isolation: isolate;
    border: 1px solid rgba(231, 184, 77, .2);
    border-radius: 20px;
    background: #111722;
    box-shadow: 0 22px 60px rgba(0, 0, 0, .25);
    transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.home-v2-roadmap-card:hover {
    transform: translateY(-6px);
    border-color: rgba(231, 184, 77, .42);
    box-shadow: 0 30px 70px rgba(0, 0, 0, .34);
}

.home-v2-roadmap-carousel .home-v2-roadmap-card {
    width: clamp(300px, 30vw, 360px);
    min-height: 440px;
    flex: 0 0 auto;
    cursor: pointer;
    opacity: .58;
    transform: scale(.9);
    transition: transform .32s ease, opacity .32s ease, border-color .25s ease, box-shadow .25s ease;
}

.home-v2-roadmap-carousel .home-v2-roadmap-card.is-active {
    cursor: default;
    opacity: 1;
    transform: scale(1);
    border-color: rgba(231, 184, 77, .58);
    box-shadow: 0 30px 74px rgba(0, 0, 0, .38);
}

.home-v2-roadmap-card > img,
.home-v2-roadmap-shade {
    position: absolute;
    inset: 0;
    z-index: -2;
    width: 100%;
    height: 100%;
}

.home-v2-roadmap-card > img {
    object-fit: cover;
    transition: transform .5s ease;
}

.home-v2-roadmap-card:hover > img {
    transform: scale(1.035);
}

.home-v2-roadmap-shade {
    z-index: -1;
    background: linear-gradient(0deg, rgba(5, 7, 12, .98) 0%, rgba(5, 7, 12, .58) 48%, rgba(5, 7, 12, .08) 82%);
}

.home-v2-roadmap-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 18px;
}

.home-v2-roadmap-number {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border: 3px solid #151a22;
    border-radius: 50%;
    background: linear-gradient(135deg, #ffe184, #dca02e);
    color: #111318;
    font-size: 13px;
    font-weight: 950;
    box-shadow: 0 8px 22px rgba(0, 0, 0, .3);
}

.home-v2-roadmap-current {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 10px;
    border: 1px solid rgba(118, 217, 232, .36);
    border-radius: 999px;
    background: rgba(12, 74, 86, .62);
    color: #9cebf5;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: .05em;
    text-transform: uppercase;
}

.home-v2-roadmap-copy {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 25px 22px;
}

.home-v2-roadmap-copy time {
    color: var(--home-gold-bright);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.home-v2-roadmap-copy > span {
    display: block;
    margin-top: 12px;
    color: #d4d8de;
    font-size: 11px;
    font-weight: 850;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.home-v2-roadmap-copy h3 {
    margin: 6px 0 0;
    color: #fff;
    font-size: 25px;
    line-height: 1.08;
    text-wrap: balance;
}

.home-v2-roadmap-card.is-current,
.home-v2-roadmap-card.is-nearest {
    border-color: rgba(118, 217, 232, .38);
}

.home-v2-roadmap-card.is-nearest.is-active {
    border-color: rgba(118, 217, 232, .72);
    box-shadow: 0 30px 74px rgba(42, 134, 148, .2), 0 30px 74px rgba(0, 0, 0, .34);
}

.home-v2-roadmap-arrow {
    position: absolute;
    z-index: 4;
    top: 50%;
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(176, 128, 21, .28);
    border-radius: 50%;
    background: rgba(255, 255, 255, .92);
    color: #9f720e;
    box-shadow: 0 12px 32px rgba(41, 35, 25, .16);
    cursor: pointer;
    transform: translateY(-82%);
    transition: opacity .2s ease, background .2s ease, transform .2s ease;
}

.home-v2-roadmap-arrow:hover { background: #fff8e7; transform: translateY(-82%) scale(1.06); }
.home-v2-roadmap-arrow:disabled { opacity: .28; cursor: default; transform: translateY(-82%); }
.home-v2-roadmap-arrow.is-prev { left: 2px; }
.home-v2-roadmap-arrow.is-next { right: 2px; }

.home-v2-roadmap-controls {
    display: flex;
    min-height: 42px;
    align-items: center;
    justify-content: center;
    gap: 18px;
    margin-top: 8px;
}

.home-v2-roadmap-dots { display: flex; align-items: center; gap: 8px; }

.home-v2-roadmap-dots button {
    width: 9px;
    height: 9px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: rgba(157, 117, 31, .28);
    cursor: pointer;
    transition: width .2s ease, background .2s ease;
}

.home-v2-roadmap-dots button.is-active { width: 28px; background: #bf8916; }

.home-v2-roadmap-nearest-button {
    display: inline-flex;
    min-height: 38px;
    align-items: center;
    gap: 7px;
    padding: 0 14px;
    border: 1px solid rgba(178, 130, 24, .3);
    border-radius: 999px;
    background: rgba(255, 255, 255, .72);
    color: #986d0f;
    font-size: 12px;
    font-weight: 800;
    cursor: pointer;
}

.home-v2-roadmap-nearest-button:hover { background: #fff8e5; }
.home-v2-roadmap-nearest-button[hidden] { display: none; }

.home-v2-cta-section {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    padding: 54px 0;
    border-top: 1px solid rgba(231, 184, 77, .16);
    background:
        radial-gradient(circle at 50% 100%, rgba(231, 184, 77, .1), transparent 54%),
        #090c13;
}

.home-v2-cta-art,
.home-v2-cta-shade {
    position: absolute;
    inset: 0;
    z-index: -2;
    width: 100%;
    height: 100%;
}

.home-v2-cta-art {
    object-fit: cover;
    object-position: 64% 43%;
}

.home-v2-cta-shade {
    z-index: -1;
    background: linear-gradient(90deg, rgba(8, 11, 18, .97) 0%, rgba(8, 11, 18, .89) 48%, rgba(8, 11, 18, .44) 100%);
}

.home-v2-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.home-v2-cta h2 {
    margin: 7px 0 0;
    color: #fff;
    font-size: clamp(30px, 3.4vw, 44px);
    line-height: 1.08;
}

.home-v2-cta .home-v2-actions {
    flex: 0 0 auto;
    margin-top: 0;
}

body > footer {
    margin-top: 0;
    padding: 25px 0;
    border-top: 1px solid rgba(231, 184, 77, .16);
    background: #05070b;
    backdrop-filter: none;
}

body > footer .copyright {
    color: #747d89;
    font-size: 13px;
}

body > footer .social-links a {
    width: 36px;
    height: 36px;
    border-color: rgba(231, 184, 77, .16);
    background: rgba(255, 255, 255, .035);
    color: #d9af4d;
    box-shadow: none;
}

body > footer .social-links a:hover {
    background: #d9af4d;
    color: #080a0f;
    box-shadow: 0 8px 24px rgba(217, 175, 77, .22);
}

/* Светлая версия главной: тёплый фон, белые карточки и золотые акценты. */
.home-v2-page {
    --home-gold: #b98617;
    --home-gold-bright: #a87409;
    --home-cyan: #157d8c;
    --home-bg: #f5f2eb;
    --home-panel: #fff;
    --home-line: rgba(49, 43, 32, .12);
    --home-muted: #697382;
    background: var(--home-bg);
    color: #1d222b;
}

.home-v2-hero {
    border-bottom-color: rgba(166, 119, 18, .2);
    background: #f3efe6;
}

.home-v2-hero-art {
    inset: 0;
    width: 100%;
    opacity: 1;
}

.home-v2-hero-shade {
    background:
        linear-gradient(90deg, rgba(245, 242, 235, .26) 0%, rgba(245, 242, 235, .08) 46%, transparent 70%),
        linear-gradient(0deg, #f5f2eb 0%, rgba(245, 242, 235, .1) 25%, transparent 48%);
}

.home-v2-status {
    border-color: rgba(34, 148, 79, .25);
    background: rgba(49, 174, 96, .09);
    color: #23824a;
}

.home-v2-status i {
    color: #2ca95e;
}

.home-v2-kicker {
    color: var(--home-gold-bright);
}

.home-v2-hero h1 {
    color: #181c24;
    text-shadow: none;
}

.home-v2-lead {
    color: #5e6876;
}

.home-v2-button.is-secondary {
    border-color: rgba(47, 43, 35, .17);
    background: rgba(255, 255, 255, .78);
    color: #262a31;
    box-shadow: 0 9px 28px rgba(60, 51, 33, .08);
}

.home-v2-button.is-secondary:hover {
    border-color: rgba(166, 119, 18, .34);
    background: #fff;
}

.home-v2-facts {
    border-color: rgba(54, 47, 35, .12);
    background: rgba(255, 255, 255, .88);
    box-shadow: 0 20px 55px rgba(65, 54, 33, .13);
}

.home-v2-facts > div + div {
    border-left-color: rgba(54, 47, 35, .1);
}

.home-v2-facts small {
    color: #858c96;
}

.home-v2-facts strong {
    color: #b27d10;
}

.home-v2-facts span {
    color: #414852;
}

.home-v2-live-section {
    background:
        radial-gradient(circle at 17% 0%, rgba(185, 134, 23, .08), transparent 31%),
        linear-gradient(180deg, #f8f6f1, #f2efe8);
}

.home-v2-section-heading h2,
.home-v2-card-heading h3,
.home-v2-news-featured-copy h3,
.home-v2-news-secondary h4 {
    color: #1d222a;
}

.home-v2-news,
.home-v2-rating,
.home-v2-guides {
    background: rgba(255, 255, 255, .94);
    box-shadow: 0 25px 65px rgba(65, 54, 33, .11);
}

.home-v2-card-heading > a,
.home-v2-card-heading > span {
    color: #747c87;
}

.home-v2-news-featured-media {
    background: #171109;
}

.home-v2-news-featured-media > span {
    display: none;
}

.home-v2-news time {
    color: #858d98;
}

.home-v2-news-featured-copy p {
    color: #69717d;
}

.home-v2-news-thumb {
    background: #eeeae2;
    color: #a39b8d !important;
}

.home-v2-guide-link:hover {
    background: rgba(231, 184, 77, .1);
}

.home-v2-guide-icon {
    border-color: rgba(185, 134, 23, .2);
    background: rgba(231, 184, 77, .12);
    color: #a87409;
}

.home-v2-guide-link strong {
    color: #272c34;
}

.home-v2-guide-link small {
    color: #78818c;
}

.home-v2-guide-link > i {
    color: #a5a9af;
}

.home-v2-rating-list li {
    border-bottom-color: rgba(44, 39, 31, .08);
}

.home-v2-rating-list li.is-leader {
    border-color: rgba(185, 134, 23, .16);
    background: linear-gradient(90deg, rgba(231, 184, 77, .12), transparent 76%);
}

.home-v2-rank {
    color: #8b929c;
}

.home-v2-rating-list li:nth-child(1) .home-v2-rank { color: #a97304; }
.home-v2-rating-list li:nth-child(2) .home-v2-rank { color: #75808c; }
.home-v2-rating-list li:nth-child(3) .home-v2-rank { color: #a96d36; }

.home-v2-hero-mark {
    border-color: rgba(45, 40, 31, .1);
    background: #f0ede7;
    color: #757e8a;
}

.is-leader .home-v2-hero-mark {
    border-color: rgba(185, 134, 23, .22);
    background: rgba(231, 184, 77, .16);
    color: #9b6b07;
}

.home-v2-rating-tabs {
    border-color: rgba(45, 40, 31, .09);
    background: #f0ede7;
}

.home-v2-rating-tabs button {
    color: #777f89;
}

.home-v2-rating-tabs button:hover {
    background: rgba(255, 255, 255, .72);
    color: #262b32;
}

.home-v2-rating-tabs button.is-active {
    background: linear-gradient(135deg, #f3c958, #d89a1d);
    color: #241a07;
}

.home-v2-hero-name strong {
    color: #2a2f37;
}

.home-v2-hero-name small,
.home-v2-hero-level small {
    color: #8a929d;
}

.home-v2-hero-level {
    color: #343a43;
}

.home-v2-empty {
    color: #858e9a;
}

.home-v2-roadmap-section {
    border-top-color: rgba(51, 45, 35, .08);
    background:
        radial-gradient(circle at 50% 0%, rgba(185, 134, 23, .09), transparent 34%),
        #f7f4ee;
}

.home-v2-cta-section {
    border-top-color: rgba(166, 119, 18, .16);
    background: #15110d;
}

.home-v2-cta h2 {
    color: #fff;
}

.home-v2-cta-section .home-v2-kicker {
    color: #ffd769;
}

.home-v2-cta-section .home-v2-button.is-secondary {
    border-color: rgba(255, 255, 255, .26);
    background: rgba(8, 11, 18, .48);
    color: #fff;
    box-shadow: none;
}

body > footer {
    border-top-color: rgba(166, 119, 18, .16);
    background: #e8e3d9;
}

body > footer .copyright {
    color: #737982;
}

body > footer .social-links a {
    border-color: rgba(166, 119, 18, .2);
    background: rgba(255, 255, 255, .7);
    color: #a5760e;
}

@media (max-width: 1060px) {
    .home-v2-live-grid { grid-template-columns: 1fr; }
    .home-v2-rating-list { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0 14px; }
    .home-v2-roadmap-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 992px) {
    body[data-home-v2] .mobile-menu-btn {
        top: 19px;
        right: 132px;
        bottom: auto;
        width: 44px;
        height: 44px;
        font-size: 18px;
    }
}

@media (max-width: 760px) {
    .home-v2-shell { width: min(100% - 24px, 1220px); }
    .home-v2-hero { min-height: auto; }
    .home-v2-hero-shade {
        background:
            linear-gradient(0deg, #f5f2eb 0%, rgba(245, 242, 235, .72) 55%, rgba(245, 242, 235, .9) 100%),
            linear-gradient(90deg, rgba(245, 242, 235, .94), rgba(245, 242, 235, .32));
    }
    .home-v2-hero-art { inset: 0; width: 100%; opacity: .35; }
    .home-v2-hero-inner { display: block; padding: 70px 0 24px; }
    .home-v2-hero h1 { font-size: clamp(44px, 13vw, 60px); }
    .home-v2-lead { font-size: 16px; }
    .home-v2-actions { flex-direction: column; }
    .home-v2-hero-copy .home-v2-actions { width: 100%; grid-template-columns: 1fr; }
    .home-v2-button { width: 100%; }
    .home-v2-facts { position: relative; bottom: auto; grid-template-columns: 1fr; margin-top: 54px; }
    .home-v2-facts > div + div { border-top: 1px solid rgba(54, 47, 35, .1); border-left: 0; }
    .home-v2-section { padding: 68px 0; }
    .home-v2-section-heading { align-items: flex-start; flex-direction: column; margin-bottom: 27px; }
    .home-v2-section-heading > p { text-align: left; }
    .home-v2-news-featured { grid-template-columns: 1fr; }
    .home-v2-news-featured-media { min-height: 240px; }
    .home-v2-news-featured-media > span { background: linear-gradient(0deg, rgba(255, 255, 255, .5), transparent 52%); }
    .home-v2-news-featured-copy { padding: 25px 22px 30px; }
    .home-v2-news-secondary { grid-template-columns: 1fr; }
    .home-v2-news-secondary article + article { border-top: 1px solid var(--home-line); border-left: 0; }
    .home-v2-guide-grid { grid-template-columns: 1fr; }
    .home-v2-guide-link { min-height: 104px; }
    .home-v2-guide-link + .home-v2-guide-link { border-top: 1px solid var(--home-line); border-left: 0; }
    .home-v2-rating-list { display: block; }
    .home-v2-roadmap-grid { grid-template-columns: 1fr; }
    .home-v2-roadmap-grid .home-v2-roadmap-card { min-height: 430px; }
    .home-v2-roadmap-viewport { margin-inline: -12px; }
    .home-v2-roadmap-track { gap: 12px; }
    .home-v2-roadmap-carousel .home-v2-roadmap-card { width: calc(100vw - 64px); min-height: 430px; }
    .home-v2-roadmap-arrow { width: 42px; height: 42px; }
    .home-v2-roadmap-arrow.is-prev { left: -3px; }
    .home-v2-roadmap-arrow.is-next { right: -3px; }
    .home-v2-cta { align-items: flex-start; flex-direction: column; }
    .home-v2-cta .home-v2-actions { width: 100%; }
    body > footer .footer-content { flex-direction: column; gap: 16px; }
}

@media (max-width: 700px) {
    body[data-home-v2] .mobile-menu-btn { right: 78px; }
}

@media (max-width: 460px) {
    .home-v2-news-secondary article { grid-template-columns: 108px minmax(0, 1fr); gap: 14px; padding: 15px; }
    .home-v2-news-thumb { width: 108px; height: 98px; }
    .home-v2-news-secondary h4 { font-size: 14px; }
}

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