.page-home {
    --home-gold-grad: linear-gradient(135deg, #F5C451, #E67E22);
    --home-panel-bg: linear-gradient(160deg, rgba(18, 26, 58, 0.94), rgba(22, 31, 69, 0.78));
    position: relative;
    overflow-x: hidden;
    color: var(--ink);
}

.page-home .home-starfield {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    isolation: isolate;
    overflow: hidden;
}

.page-home .home-starfield img {
    position: relative;
    z-index: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.56;
    filter: saturate(0.8);
}

.page-home .home-starfield::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(180deg, rgba(11, 16, 38, 0.74), rgba(11, 16, 38, 0.92) 76%);
}

.page-home .home-shell {
    position: relative;
    z-index: 1;
    max-width: var(--shell-max);
    margin-inline: auto;
    padding: clamp(20px, 5vw, 64px) var(--shell-pad) 72px;
}

.page-home .home-prologue {
    margin-bottom: 36px;
}

.page-home .home-prologue-index {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px 16px;
    margin-bottom: 16px;
}

.page-home .home-breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-mono);
    font-size: 12px;
    letter-spacing: 0.06em;
    color: var(--ink-dim);
}

.page-home .home-breadcrumb a {
    color: var(--gold);
    text-decoration: none;
}

.page-home .home-crumb-sep {
    color: var(--ink-dim);
}

.page-home .home-topic-tag {
    display: inline-block;
    margin-bottom: 12px;
    padding: 5px 12px;
    border: 1px solid var(--line-strong);
    border-radius: 999px;
    font-family: var(--font-mono);
    font-size: 12px;
    letter-spacing: 0.14em;
    color: var(--gold);
}

.page-home .home-title {
    margin: 0 0 22px;
    font-size: clamp(2.3rem, 8vw, 4.6rem);
    font-weight: 300;
    line-height: 1.12;
    letter-spacing: 0.012em;
    max-width: 13em;
}

.page-home .home-declaration {
    margin: 0;
    padding-left: 16px;
    border-left: 2px solid var(--line-strong);
    font-size: 15px;
    line-height: 1.85;
    color: var(--silver);
}

.page-home .home-bento-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 16px;
}

.page-home .home-bento-grid .bento-card {
    position: relative;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: var(--home-panel-bg);
    box-shadow: var(--shadow);
    padding: clamp(18px, 3vw, 28px);
    transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.page-home .home-bento-grid .bento-card:hover {
    border-color: var(--line-strong);
    box-shadow: var(--shadow-hover);
    transform: translateY(-2px);
}

.page-home .home-service-index::before {
    content: "";
    position: absolute;
    inset: 0 24px auto 24px;
    height: 2px;
    background: var(--home-gold-grad);
    border-radius: 0 0 2px 2px;
}

.page-home .home-card-head {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 18px;
}

.page-home .home-card-head .title-zh {
    margin: 0;
    font-size: 22px;
    font-weight: 700;
}

.page-home .home-card-tip {
    font-family: var(--font-mono);
    font-size: 12px;
    color: var(--ink-dim);
}

.page-home .home-service-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.page-home .home-service-item:not(:last-child) {
    border-bottom: 1px solid var(--line);
}

.page-home .home-service-link {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 14px 10px;
    text-decoration: none;
    color: var(--ink);
    transition: background var(--transition);
}

.page-home .home-service-link:hover {
    background: rgba(245, 196, 81, 0.06);
}

.page-home .home-service-sn {
    flex: 0 0 30px;
    font-family: var(--font-mono);
    font-size: 12px;
    line-height: 1.6;
    color: var(--ink-dim);
}

.page-home .home-service-meta {
    flex: 1 1 auto;
    min-width: 0;
}

.page-home .home-service-name {
    display: block;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.4;
    overflow-wrap: break-word;
}

.page-home .home-service-desc {
    display: block;
    margin-top: 4px;
    font-size: 12px;
    line-height: 1.55;
    color: var(--ink-dim);
}

.page-home .home-service-num {
    flex: 0 0 auto;
    max-width: 72px;
    font-family: var(--font-mono);
    font-size: 12px;
    line-height: 1.4;
    text-align: right;
    color: var(--silver);
}

.page-home .home-service-item-hot .home-service-sn,
.page-home .home-service-item-hot .home-service-name {
    color: var(--gold);
}

.page-home .home-service-foot {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: 20px;
}

.page-home .home-service-foot-note {
    font-family: var(--font-mono);
    font-size: 12px;
    line-height: 1.6;
    color: var(--ink-dim);
}

.page-home .home-trust {
    margin: 18px 0 0;
    padding-top: 14px;
    border-top: 1px solid var(--line);
    font-size: 12px;
    line-height: 1.7;
    color: var(--ink-dim);
}

.page-home .home-data-panel {
    background: linear-gradient(160deg, rgba(18, 26, 58, 0.9), rgba(22, 31, 69, 0.72));
}

.page-home .home-price-hero {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 4px 8px;
    margin: 14px 0 16px;
    padding: 20px 18px;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, rgba(26, 42, 108, 0.55), rgba(58, 12, 163, 0.5));
}

.page-home .home-price-symbol {
    font-family: var(--font-mono);
    font-size: 26px;
    color: var(--gold);
}

.page-home .home-price-value {
    font-family: var(--font-mono);
    font-size: clamp(44px, 12vw, 64px);
    line-height: 0.9;
    font-weight: 700;
    background: linear-gradient(135deg, #F5C451, #E67E22);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.page-home .home-price-unit {
    align-self: flex-end;
    padding-bottom: 6px;
    font-size: 13px;
    color: var(--silver);
}

.page-home .home-data-note {
    margin: 0 0 8px;
    font-size: 13px;
    color: var(--ink-dim);
}

.page-home .home-data-list {
    display: grid;
    gap: 2px;
    margin: 0;
}

.page-home .home-data-item {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 12px;
    padding: 8px 2px;
    border-bottom: 1px dashed var(--line);
    font-size: 13px;
}

.page-home .home-data-item:last-child {
    border-bottom: 0;
}

.page-home .home-data-item .data-line-value {
    font-family: var(--font-mono);
    color: var(--gold);
}

.page-home .home-sports-visual {
    margin-top: 18px;
}

.page-home .home-sports-visual img {
    display: block;
    width: 100%;
    height: auto;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    object-fit: cover;
}

.page-home .home-entry-card {
    display: flex;
    flex-direction: column;
}

.page-home .home-entry-desc {
    margin: 12px 0 18px;
    font-size: 14px;
    line-height: 1.7;
    color: var(--ink-dim);
}

.page-home .home-entry-link {
    align-self: flex-start;
    margin-top: auto;
}

.page-home .home-match-preview {
    margin-top: 64px;
}

.page-home .home-section-header {
    margin-bottom: 22px;
}

.page-home .home-section-header .title-zh {
    margin: 6px 0 4px;
    font-size: clamp(1.6rem, 4vw, 2.2rem);
    font-weight: 700;
}

.page-home .home-section-header .section-lead {
    margin: 0;
    font-size: 14px;
    color: var(--ink-dim);
}

.page-home .home-match-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 16px;
}

.page-home .home-match-card {
    padding: 20px;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: var(--home-panel-bg);
    transition: border-color var(--transition), box-shadow var(--transition);
}

.page-home .home-match-card:hover {
    border-color: var(--line-strong);
    box-shadow: var(--shadow-hover);
}

.page-home .home-match-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 10px;
}

.page-home .home-match-league {
    font-family: var(--font-mono);
    font-size: 12px;
    color: var(--ink-dim);
}

.page-home .home-match-title {
    margin: 0;
    font-size: 18px;
    font-weight: 700;
}

.page-home .home-match-data {
    display: grid;
    gap: 8px;
    margin: 16px 0 0;
    padding: 14px;
    background: rgba(11, 16, 38, 0.48);
    border-radius: var(--radius);
}

.page-home .home-match-fact {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 12px;
    margin: 0;
}

.page-home .home-match-fact dt {
    font-size: 13px;
    color: var(--ink-dim);
}

.page-home .home-match-fact dd {
    font-family: var(--font-mono);
    font-size: 13px;
    color: var(--gold);
}

.page-home .home-match-more {
    display: flex;
    justify-content: center;
    margin-top: 24px;
}

.page-home .home-pathways {
    margin-top: 64px;
}

.page-home .home-pathway-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 16px;
}

.page-home .home-pathway-card {
    display: block;
    padding: 24px 20px;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: var(--home-panel-bg);
    text-decoration: none;
    color: var(--ink);
    transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}

.page-home .home-pathway-card:hover {
    border-color: var(--line-strong);
    box-shadow: var(--shadow-hover);
    transform: translateY(-3px);
}

.page-home .home-pathway-sn {
    font-family: var(--font-mono);
    font-size: 12px;
    letter-spacing: 0.1em;
    color: var(--gold);
}

.page-home .home-pathway-title {
    margin: 10px 0 0;
    font-size: 17px;
    font-weight: 700;
    line-height: 1.5;
}

.page-home .home-pathway-desc {
    margin: 8px 0 0;
    font-size: 14px;
    line-height: 1.6;
    color: var(--ink-dim);
}

.page-home .home-pathway-go {
    display: inline-block;
    margin-top: 12px;
    padding-bottom: 2px;
    border-bottom: 1px solid var(--line-strong);
    font-family: var(--font-mono);
    font-size: 12px;
    color: var(--gold);
}

.page-home .home-path-visuals {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 16px;
    margin-top: 28px;
}

.page-home .home-path-figure {
    margin: 0;
}

.page-home .home-path-figure img {
    display: block;
    width: 100%;
    height: auto;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    object-fit: cover;
}

.page-home .home-path-figure figcaption {
    margin-top: 8px;
    font-size: 12px;
}

@media (min-width: 920px) {
    .page-home .home-shell {
        padding-top: 64px;
    }

    .page-home .home-prologue {
        display: grid;
        grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
        column-gap: 60px;
        align-items: end;
        margin-bottom: 48px;
    }

    .page-home .home-prologue-index {
        grid-column: 1;
        grid-row: 1;
    }

    .page-home .home-title {
        grid-column: 1;
        grid-row: 2;
        margin-bottom: 0;
    }

    .page-home .home-topic-tag {
        grid-column: 2;
        grid-row: 1;
        justify-self: start;
        margin-bottom: 0;
    }

    .page-home .home-declaration {
        grid-column: 2;
        grid-row: 2;
        max-width: 42em;
    }

    .page-home .home-bento-grid {
        grid-template-columns: repeat(12, minmax(0, 1fr));
        align-items: stretch;
    }

    .page-home .home-service-index {
        grid-column: span 8;
        grid-row: span 2;
    }

    .page-home .home-data-panel {
        grid-column: span 4;
        grid-row: span 1;
    }

    .page-home .home-entry-card {
        grid-column: span 4;
        grid-row: span 1;
    }

    .page-home .home-match-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .page-home .home-pathway-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .page-home .home-path-visuals {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 400px) {
    .page-home .home-title {
        font-size: 2rem;
    }

    .page-home .home-service-link {
        flex-wrap: wrap;
    }

    .page-home .home-service-num {
        flex-basis: 100%;
        max-width: none;
        text-align: left;
        padding-left: 42px;
    }

    .page-home .home-price-hero {
        padding: 16px 12px;
    }

    .page-home .home-match-top {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
    }
}
