/*
 * 趋势专题总览 V2
 * 以旗舰专题、议题图谱与内容进入路径建立编辑主次，不复用等权卡片墙。
 */
.trv2 {
    --trv2-banner: var(--ztc-banner-authority);
    --trv2-blue-panel:
        radial-gradient(circle at 84% 15%, rgba(97, 204, 240, .2), transparent 32%),
        linear-gradient(125deg, #0a3a66 0%, #0067b4 100%);
    --trv2-paper: #f4f7f9;
    --trv2-paper-blue: #eaf3f8;
    --trv2-line: rgba(7, 32, 60, .13);
    --trv2-blue: #0067b4;
    --trv2-cyan: #61ccf0;
    background: #fff;
}

.trv2 
.trv2 a:focus-visible {
    outline: 3px solid rgba(97, 204, 240, .76);
    outline-offset: 4px;
}

/* Hero: six topics form one research field. */
.trv2 .trv2-hero {
    min-height: 720px;
    background: var(--ztc-banner-luminous);
}

.trv2-hero-glow {
    position: absolute;
    right: -10%;
    top: -34%;
    width: 66vw;
    aspect-ratio: 1;
    border: 1px solid rgba(97, 204, 240, .08);
    border-radius: 50%;
    box-shadow:
        0 0 0 100px rgba(97, 204, 240, .025),
        0 0 0 205px rgba(97, 204, 240, .015);
    pointer-events: none;
}

.trv2-hero-layout {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, .88fr) minmax(500px, 1.12fr);
    gap: clamp(58px, 8vw, 116px);
    align-items: center;
    min-height: 720px;
    padding: 168px 0 86px;
}

.trv2-hero-copy h1 {
    margin: 18px 0 26px;
    font-size: var(--ztc-banner-h1-feature);
}

.trv2 .trv2-hero-copy > p:not(.isx-eyebrow) {
    max-width: 610px;
    color: rgba(255, 255, 255, .8);
    font-size: var(--ztc-banner-lead);
    line-height: 1.9;
    text-wrap: balance;
}

.trv2-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 36px;
}

.trv2-constellation {
    position: relative;
    width: min(520px, 100%);
    aspect-ratio: 1;
    justify-self: end;
}

.trv2-constellation::before,
.trv2-constellation::after {
    position: absolute;
    z-index: 0;
    content: "";
}

.trv2-constellation::before {
    inset: 16%;
    border: 1px solid rgba(255, 255, 255, .13);
    border-radius: 50%;
    background: radial-gradient(circle, rgba(97, 204, 240, .09), transparent 66%);
}

.trv2-constellation::after {
    left: 50%;
    top: 50%;
    width: 76%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(97, 204, 240, .23), transparent);
    transform: translate(-50%, -50%) rotate(-20deg);
}

.trv2-constellation-core {
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 3;
    display: grid;
    place-items: center;
    width: 150px;
    aspect-ratio: 1;
    border: 1px solid rgba(97, 204, 240, .4);
    border-radius: 50%;
    background: rgba(0, 103, 180, .42);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, .12),
        0 0 54px rgba(0, 142, 211, .2);
    transform: translate(-50%, -50%);
    animation: trv2-core-breathe 5.5s ease-in-out infinite;
}

.trv2-constellation-core small,
.trv2-constellation-core strong {
    position: absolute;
    text-align: center;
}

.trv2-constellation-core small {
    top: 50px;
    color: rgba(255, 255, 255, .55);
    font-size:var(--ztc-fs-micro);
    letter-spacing: .15em;
}

.trv2-constellation-core strong {
    bottom: 48px;
    color: #fff;
    font-family: var(--ztc-serif);
    font-size:20px;
    font-weight: 600;
}

.trv2-constellation-node {
    position: absolute;
    z-index: 4;
    display: flex;
    align-items: center;
    gap: 9px;
    min-width: 145px;
    min-height: 58px;
    padding: 10px 14px;
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 14px;
    color: rgba(255, 255, 255, .84);
    background: rgba(4, 45, 81, .4);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .07);
    transition: border-color .25s ease, background .25s ease, transform .25s ease;
}

.trv2-constellation-node small {
    color: rgba(97, 204, 240, .7);
    font: 700 9px/1 var(--ztc-sans);
    letter-spacing: .08em;
}

.trv2-constellation-node strong {
    color: inherit;
    font-family: var(--ztc-serif);
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
}

.trv2-constellation-node:hover {
    border-color: rgba(97, 204, 240, .62);
    color: #fff;
    background: rgba(0, 103, 180, .68);
}

.trv2-constellation-node.is-complete {
    border-color: rgba(97, 204, 240, .7);
    color: #fff;
    background: linear-gradient(120deg, rgba(0, 103, 180, .72), rgba(0, 142, 211, .54));
    box-shadow: 0 12px 34px rgba(0, 30, 58, .2);
}

/* 2026-09-04（Haning 定）：专题 6→8，星图节点由六边形改八边形布点 */
.trv2-constellation-node--1 { left: 50%; top: 0; transform: translateX(-50%); }
.trv2-constellation-node--2 { right: 7%; top: 9%; }
.trv2-constellation-node--3 { right: 0; top: 50%; transform: translateY(-50%); }
.trv2-constellation-node--4 { right: 7%; bottom: 9%; }
.trv2-constellation-node--5 { left: 50%; bottom: 0; transform: translateX(-50%); }
.trv2-constellation-node--6 { left: 7%; bottom: 9%; }
.trv2-constellation-node--7 { left: 0; top: 50%; transform: translateY(-50%); }
.trv2-constellation-node--8 { left: 7%; top: 9%; }
.trv2-constellation-node--1:hover,
.trv2-constellation-node--5:hover { transform: translateX(-50%) translateY(-3px); }
.trv2-constellation-node--3:hover,
.trv2-constellation-node--7:hover { transform: translateY(calc(-50% - 3px)); }
.trv2-constellation-node--2:hover,
.trv2-constellation-node--4:hover,
.trv2-constellation-node--6:hover,
.trv2-constellation-node--8:hover { transform: translateY(-3px); }

.trv2-constellation-orbit {
    position: absolute;
    z-index: 1;
    inset: 8%;
    border: 1px solid rgba(97, 204, 240, .22);
    border-radius: 50%;
    pointer-events: none;
}

.trv2-constellation-orbit::after {
    position: absolute;
    left: 50%;
    top: -4px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--trv2-cyan);
    box-shadow: 0 0 20px rgba(97, 204, 240, .75);
    content: "";
}

.trv2-constellation-orbit--outer {
    animation: trv2-orbit-spin 34s linear infinite;
}

.trv2-constellation-orbit--inner {
    inset: 27%;
    border-color: rgba(255, 255, 255, .13);
    animation: trv2-orbit-spin 22s linear infinite reverse;
}

.trv2-constellation-orbit--inner::after {
    width: 6px;
    height: 6px;
    background: rgba(255, 255, 255, .75);
    box-shadow: 0 0 14px rgba(255, 255, 255, .5);
}

/* Premise: editorial explanation before the flagship. */
.trv2-premise {
    padding: 144px 0 108px;
    background: #fff;
}

.trv2-premise-layout {
    display: grid;
    grid-template-columns: minmax(300px, .78fr) minmax(0, 1.22fr);
    gap: clamp(64px, 9vw, 132px);
    align-items: start;
}

.trv2-premise h2 {
    margin: 17px 0 0;
    color: var(--ztc-text);
    font-size: clamp(38px, 4vw, 52px);
    line-height: 1.2;
    letter-spacing: -.04em;
    text-wrap: balance;
}

.trv2-premise-copy > p {
    max-width: 680px;
    margin: 0;
    color: var(--ztc-text-muted);
    font-size:16px;
    line-height: 2;
}

.trv2-premise-copy dl {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin: 48px 0 0;
    padding: 0;
    border-top: 1px solid var(--trv2-line);
    border-bottom: 1px solid var(--trv2-line);
}

.trv2-premise-copy dl > div {
    min-width: 0;
    padding: 24px 18px 25px;
    border-right: 1px solid var(--trv2-line);
}

.trv2-premise-copy dl > div:first-child {
    border-left: 1px solid var(--trv2-line);
}

.trv2-premise-copy dt {
    color: var(--trv2-blue);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .1em;
}

.trv2-premise-copy dd {
    margin: 11px 0 0;
    color: var(--ztc-text);
    font-family: var(--ztc-serif);
    font-size:14px;
    line-height: 1.4;
}

/* Flagship: the only topic with a complete detail route. */
.trv2-flagship {
    padding: 84px 0 112px;
    background: var(--trv2-paper);
}

.trv2-flagship-panel {
    display: grid;
    grid-template-columns: minmax(0, 1.02fr) minmax(410px, .98fr);
    min-height: 590px;
    overflow: hidden;
    border-radius: 26px;
    color: #fff;
    background: var(--trv2-banner);
    box-shadow: 0 28px 70px rgba(7, 44, 79, .16);
}

.trv2-flagship-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 64px 28px 64px 66px;
}

.trv2-maturity {
    display: inline-flex;
    align-items: center;
    align-self: flex-start;
    gap: 9px;
    margin-bottom: 50px;
    padding: 7px 11px;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 999px;
    color: rgba(255, 255, 255, .72);
    font-size: 11px;
    font-weight: 700;
}

.trv2-maturity span {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--trv2-cyan);
    box-shadow: 0 0 14px rgba(97, 204, 240, .8);
}

.trv2-flagship-copy h2 {
    margin: 17px 0 21px;
    color: #fff;
    font-size: clamp(42px, 5vw, 62px);
    line-height: 1.08;
    letter-spacing: -.045em;
}

.trv2-flagship-copy > p:not(.isx-eyebrow) {
    max-width: 560px;
    margin: 0;
    color: rgba(255, 255, 255, .76);
    font-size: 16px;
    line-height: 1.9;
}

.trv2-flagship-copy ul {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 30px 0 0;
    padding: 0;
    list-style: none;
}

.trv2-flagship-copy li {
    padding: 7px 11px;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 999px;
    color: rgba(255, 255, 255, .76);
    font-size: 12px;
}

.trv2-flagship-copy > a {
    display: inline-flex;
    align-items: center;
    align-self: flex-start;
    gap: 9px;
    min-height: 44px;
    margin-top: 36px;
    color: var(--trv2-cyan);
    font-size: 14px;
    font-weight: 700;
}

.trv2-flagship-art {
    position: relative;
    display: grid;
    place-items: center;
    min-width: 0;
    overflow: hidden;
    background: radial-gradient(circle at 50% 48%, rgba(97, 204, 240, .2), transparent 62%);
}

.trv2-flagship-art::before {
    position: absolute;
    inset: 8%;
    border: 1px solid rgba(97, 204, 240, .2);
    border-radius: 50%;
    box-shadow:
        0 0 0 54px rgba(97, 204, 240, .03),
        0 0 0 108px rgba(97, 204, 240, .018);
    content: "";
}

.trv2-flagship-art img {
    position: relative;
    z-index: 2;
    width: min(360px, 72%);
    filter: drop-shadow(0 30px 30px rgba(0, 0, 0, .3));
    transition: transform .6s cubic-bezier(.2, .7, .2, 1);
}

.trv2-flagship-panel:hover .trv2-flagship-art img {
    transform: translateY(-7px);
}

.trv2-flagship-art > small {
    position: absolute;
    right: 32px;
    bottom: 27px;
    z-index: 3;
    color: rgba(255, 255, 255, .48);
    font-size:var(--ztc-fs-micro);
    letter-spacing: .13em;
}

.trv2-flagship-axis {
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 1;
    width: 88%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(97, 204, 240, .32), transparent);
    transform: translate(-50%, -50%) rotate(-24deg);
}

.trv2-flagship-axis i {
    position: absolute;
    top: 50%;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--trv2-cyan);
    box-shadow: 0 0 18px rgba(97, 204, 240, .65);
    transform: translate(-50%, -50%);
}

.trv2-flagship-axis i:nth-child(1) { left: 22%; }
.trv2-flagship-axis i:nth-child(2) { left: 50%; }
.trv2-flagship-axis i:nth-child(3) { left: 78%; }

/* Atlas: three editorial dimensions, with topic maturity visible. */
.trv2-atlas {
    padding: 132px 0 124px;
    background: #fff;
    scroll-margin-top: 132px;
}

.trv2-atlas-head {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(340px, .72fr);
    gap: clamp(48px, 8vw, 108px);
    align-items: end;
    margin-bottom: 74px;
}

.trv2-atlas-head h2,
.trv2-route-head h2 {
    margin: 16px 0 0;
    color: var(--ztc-text);
    font-size: clamp(37px, 4vw, 50px);
    line-height: 1.2;
    letter-spacing: -.04em;
    text-wrap: balance;
}

.trv2-atlas-head > p {
    margin: 0;
    color: var(--ztc-text-muted);
    font-size:16px;
    line-height: 1.9;
}

.trv2-atlas-list {
    border-top: 1px solid var(--trv2-line);
}

.trv2-atlas-row {
    display: grid;
    grid-template-columns: minmax(260px, .68fr) minmax(0, 1.32fr);
    min-height: 380px;
    border-bottom: 1px solid var(--trv2-line);
}

.trv2-atlas-row > header {
    position: relative;
    padding: 43px 52px 42px 0;
    border-right: 1px solid var(--trv2-line);
}

.trv2-atlas-row > header > span {
    display: block;
    color: var(--trv2-blue);
    font-family: var(--ztc-serif);
    font-size:var(--ztc-fs-h2);
}

.trv2-atlas-row > header > small {
    display: block;
    margin-top: 50px;
    color: var(--ztc-brand-primary);
    font-size:var(--ztc-fs-micro);
    font-weight: 700;
    letter-spacing: .14em;
}

.trv2-atlas-row > header h3 {
    margin: 13px 0 16px;
    color: var(--ztc-text);
    font-size:var(--ztc-fs-h2);
    line-height: 1.3;
}

.trv2-atlas-row > header p {
    max-width: 300px;
    margin: 0;
    color: var(--ztc-text-muted);
    font-size: 14px;
    line-height: 1.85;
}

.trv2-atlas-topics {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.trv2-atlas-topics:has(.trv2-topic-entry:only-child) {
    grid-template-columns: minmax(0, 1fr);
}

.trv2-topic-entry {
    display: flex;
    flex-direction: column;
    min-width: 0;
    padding: 44px 40px 38px;
    scroll-margin-top: 158px;
    transition: background .28s ease;
}

.trv2-topic-entry + .trv2-topic-entry {
    border-left: 1px solid var(--trv2-line);
}

.trv2-topic-entry:hover,
.trv2-topic-entry:target {
    background: linear-gradient(135deg, rgba(234, 243, 248, .82), rgba(255, 255, 255, .96));
}

.trv2-topic-meta {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 18px;
}

.trv2-topic-meta > small {
    max-width: 58%;
    color: var(--ztc-brand-primary);
    font-size:var(--ztc-fs-micro);
    font-weight: 700;
    letter-spacing: .1em;
    line-height: 1.55;
}

.trv2-topic-meta > span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    flex: none;
    color: var(--ztc-text-muted);
    font-size:var(--ztc-fs-micro);
    font-weight: 700;
}

.trv2-topic-meta > span i {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #9bb4c4;
}

.trv2-topic-meta > span.is-complete {
    color: var(--trv2-blue);
}

.trv2-topic-meta > span.is-complete i {
    background: var(--trv2-cyan);
    box-shadow: 0 0 10px rgba(0, 142, 211, .42);
}

.trv2-topic-entry h4 {
    margin: 62px 0 19px;
    color: var(--ztc-text);
    font-size: clamp(27px, 2.5vw, 34px);
    line-height: 1.25;
    letter-spacing: -.03em;
}

.trv2-topic-entry > p {
    max-width: 480px;
    margin: 0;
    color: var(--ztc-text-muted);
    font-size: 14px;
    line-height: 1.85;
}

.trv2-topic-entry > a,
.trv2-topic-continuing {
    display: inline-flex;
    align-items: center;
    align-self: flex-start;
    gap: 7px;
    min-height: 44px;
    margin-top: auto;
    padding-top: 30px;
    color: var(--ztc-action);
    font-size: 12px;
    font-weight: 700;
}

.trv2-topic-continuing {
    color: var(--ztc-text-muted);
}

/* Content route: one connected line, not four detached cards. */
.trv2-route {
    color: #fff;
    background: var(--trv2-banner);
}

.trv2-route-head {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(340px, .68fr);
    column-gap: 80px;
    align-items: end;
    margin-bottom: 64px;
}

.trv2-route-head .isx-kicker {
    grid-column: 1 / -1;
    color: var(--trv2-cyan);
}

.trv2-route-head h2 {
    color: #fff;
}

.trv2-route-head > p:last-child {
    margin: 0;
    color: rgba(255, 255, 255, .65);
    font-size:16px;
    line-height: 1.9;
}

.trv2-route-flow {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin: 0;
    padding: 0;
    border-top: 1px solid rgba(255, 255, 255, .16);
    border-bottom: 1px solid rgba(255, 255, 255, .16);
    list-style: none;
}

.trv2-route-flow li {
    position: relative;
    min-height: 330px;
    padding: 28px 27px 32px;
    border-right: 1px solid rgba(255, 255, 255, .16);
}

.trv2-route-flow li:first-child {
    border-left: 1px solid rgba(255, 255, 255, .16);
}

.trv2-route-flow li::after {
    position: absolute;
    right: -4px;
    top: 58px;
    z-index: 2;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--trv2-cyan);
    box-shadow: 0 0 15px rgba(97, 204, 240, .7);
    content: "";
}

.trv2-route-flow li:last-child::after {
    display: none;
}

.trv2-route-flow li > span {
    color: var(--trv2-cyan);
    font-family: var(--ztc-serif);
    font-size:24px;
}

.trv2-route-flow li > small {
    display: block;
    margin-top: 13px;
    color: rgba(255, 255, 255, .45);
    font-size:var(--ztc-fs-micro);
    letter-spacing: .12em;
}

.trv2-route-flow h3 {
    margin: 65px 0 17px;
    color: #fff;
    font-size:24px;
}

.trv2-route-flow p {
    margin: 0;
    color: rgba(255, 255, 255, .64);
    font-size: 13px;
    line-height: 1.82;
}

.trv2-route-entry {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    min-height: 106px;
    margin-top: 30px;
    padding: 24px 30px;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 16px;
    color: #fff;
    background: rgba(255, 255, 255, .07);
    transition: border-color .25s ease, background .25s ease, transform .25s ease;
}

.trv2-route-entry:hover {
    border-color: rgba(97, 204, 240, .55);
    background: rgba(255, 255, 255, .11);
    transform: translateY(-2px);
}

.trv2-route-entry > span {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.trv2-route-entry small {
    color: var(--trv2-cyan);
    font-size:var(--ztc-fs-micro);
    font-weight: 700;
    letter-spacing: .1em;
}

.trv2-route-entry strong {
    font-family: var(--ztc-serif);
    font-size:20px;
    font-weight: 600;
}

@keyframes trv2-orbit-spin {
    to { transform: rotate(360deg); }
}

@keyframes trv2-core-breathe {
    0%, 100% { box-shadow: inset 0 1px 0 rgba(255, 255, 255, .12), 0 0 45px rgba(0, 142, 211, .16); }
    50% { box-shadow: inset 0 1px 0 rgba(255, 255, 255, .12), 0 0 68px rgba(0, 142, 211, .27); }
}

@media (max-width: 1120px) {
    .trv2-hero-layout {
        grid-template-columns: minmax(0, .9fr) minmax(430px, 1.1fr);
        gap: 42px;
    }

    .trv2-constellation {
        width: min(460px, 100%);
    }

    .trv2-constellation-node {
        min-width: 132px;
        padding-inline: 11px;
    }

    .trv2-flagship-panel {
        grid-template-columns: minmax(0, 1fr) minmax(350px, .85fr);
    }

    .trv2-flagship-copy {
        padding-left: 52px;
    }

    .trv2-atlas-row {
        grid-template-columns: minmax(230px, .58fr) minmax(0, 1.42fr);
    }

    .trv2-topic-entry {
        padding-inline: 28px;
    }
}

@media (max-width: 920px) {
    .trv2 .trv2-hero {
        min-height: 0;
    }

    .trv2-hero-layout {
        grid-template-columns: 1fr;
        min-height: 0;
        padding: 156px 0 92px;
    }

    .trv2-constellation {
        width: min(560px, 100%);
        margin-top: 32px;
        justify-self: center;
    }

    .trv2-premise-layout,
    .trv2-atlas-head,
    .trv2-route-head {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .trv2-premise-copy > p {
        max-width: none;
    }

    .trv2-flagship-panel {
        grid-template-columns: 1fr;
    }

    .trv2-flagship-copy {
        padding: 54px 50px 24px;
    }

    .trv2-maturity {
        margin-bottom: 36px;
    }

    .trv2-flagship-art {
        min-height: 460px;
    }

    .trv2-atlas-row {
        grid-template-columns: 1fr;
    }

    .trv2-atlas-row > header {
        padding: 36px 0 34px;
        border-right: 0;
        border-bottom: 1px solid var(--trv2-line);
    }

    .trv2-atlas-row > header > small {
        margin-top: 25px;
    }

    .trv2-atlas-row > header p {
        max-width: 560px;
    }

    .trv2-route-head .isx-kicker {
        grid-column: auto;
    }

    .trv2-route-flow {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .trv2-route-flow li:nth-child(3) {
        border-left: 1px solid rgba(255, 255, 255, .16);
        border-top: 1px solid rgba(255, 255, 255, .16);
    }

    .trv2-route-flow li:nth-child(4) {
        border-top: 1px solid rgba(255, 255, 255, .16);
    }

    .trv2-route-flow li:nth-child(2)::after {
        display: none;
    }
}

@media (max-width: 680px) {
    .trv2 .isx-wrap {
        width: min(100% - 34px, 1240px);
    }

    .trv2 .trv2-hero-copy h1 {
        font-size: 49px;
    }

    .trv2 .trv2-hero-copy > p:not(.isx-eyebrow) {
        font-size: 16px;
        line-height: 1.82;
        text-wrap: pretty;
    }

    .trv2-hero-layout {
        padding: 148px 0 74px;
    }

    .trv2-hero-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .trv2-hero-actions .isx-btn {
        width: 100%;
        min-height: 48px;
    }

    .trv2-constellation {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 9px;
        width: 100%;
        aspect-ratio: auto;
        margin-top: 30px;
    }

    .trv2-constellation::before,
    .trv2-constellation::after,
    .trv2-constellation-orbit {
        display: none;
    }

    .trv2-constellation-core {
        position: relative;
        left: auto;
        top: auto;
        grid-column: 1 / -1;
        place-items: start;
        width: auto;
        min-height: 74px;
        aspect-ratio: auto;
        padding: 18px 20px;
        border-radius: 15px;
        transform: none;
        animation: none;
    }

    .trv2-constellation-core small,
    .trv2-constellation-core strong {
        position: static;
        text-align: left;
    }

    .trv2-constellation-core strong {
        margin-top: 7px;
    }

    .trv2-constellation-node,
    .trv2-constellation-node--1,
    .trv2-constellation-node--2,
    .trv2-constellation-node--3,
    .trv2-constellation-node--4,
    .trv2-constellation-node--5,
    .trv2-constellation-node--6 {
        position: static;
        min-width: 0;
        min-height: 58px;
        transform: none;
    }

    .trv2-constellation-node--1:hover,
    .trv2-constellation-node--2:hover,
    .trv2-constellation-node--3:hover,
    .trv2-constellation-node--4:hover,
    .trv2-constellation-node--5:hover,
    .trv2-constellation-node--6:hover {
        transform: none;
    }

    .trv2-constellation-node strong {
        font-size: 13px;
    }

    .trv2-premise {
        padding: 112px 0 76px;
    }

    .trv2-premise h2,
    .trv2-atlas-head h2,
    .trv2-route-head h2 {
        font-size: 32px;
    }

    .trv2-premise-copy > p {
        font-size:14px;
        line-height: 1.88;
    }

    .trv2-premise-copy dl {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        margin-top: 36px;
    }

    .trv2-premise-copy dl > div:nth-child(3) {
        border-left: 1px solid var(--trv2-line);
        border-top: 1px solid var(--trv2-line);
    }

    .trv2-premise-copy dl > div:nth-child(4) {
        border-top: 1px solid var(--trv2-line);
    }

    .trv2-flagship {
        padding: 62px 0 78px;
    }

    .trv2-flagship-panel {
        border-radius: 19px;
    }

    .trv2-flagship-copy {
        padding: 40px 27px 14px;
    }

    .trv2-flagship-copy h2 {
        font-size: 40px;
    }

    .trv2-flagship-copy > p:not(.isx-eyebrow) {
        font-size:14px;
    }

    .trv2-flagship-art {
        min-height: 360px;
    }

    .trv2-flagship-art img {
        width: min(275px, 72%);
    }

    .trv2-atlas {
        padding: 92px 0 80px;
    }

    .trv2-atlas-head {
        margin-bottom: 46px;
    }

    .trv2-atlas-head > p {
        font-size: 14px;
    }

    .trv2-atlas-topics {
        grid-template-columns: 1fr;
    }

    .trv2-topic-entry {
        min-height: 315px;
        padding: 32px 22px 28px;
    }

    .trv2-topic-entry + .trv2-topic-entry {
        border-left: 0;
        border-top: 1px solid var(--trv2-line);
    }

    .trv2-topic-meta {
        gap: 12px;
    }

    .trv2-topic-entry h4 {
        margin-top: 50px;
        font-size:30px;
    }

    .trv2-route {
        padding: 86px 0;
    }

    .trv2-route-flow {
        grid-template-columns: 1fr;
    }

    .trv2-route-flow li,
    .trv2-route-flow li:first-child,
    .trv2-route-flow li:nth-child(3) {
        min-height: 255px;
        border-top: 1px solid rgba(255, 255, 255, .16);
        border-left: 1px solid rgba(255, 255, 255, .16);
    }

    .trv2-route-flow li:first-child {
        border-top: 0;
    }

    .trv2-route-flow li::after {
        display: none;
    }

    .trv2-route-flow h3 {
        margin-top: 42px;
    }

    .trv2-route-entry {
        min-height: 116px;
        padding: 22px 20px;
    }

    .trv2-route-entry strong {
        font-size:16px;
        line-height: 1.5;
    }
}

@media (prefers-reduced-motion: reduce) {
    .trv2 *,
    .trv2 *::before,
    .trv2 *::after {
        scroll-behavior: auto !important;
    }

    .trv2-constellation-core,
    .trv2-constellation-orbit {
        animation: none !important;
    }

    .trv2-flagship-art img,
    .trv2-constellation-node,
    .trv2-route-entry {
        transition: none !important;
    }
}
