.page-home {
    --home-angle: -2deg;
    --home-card-tilt: -1.2deg;
    --home-transition: cubic-bezier(0.22, 1, 0.36, 1);
    display: block;
    overflow: hidden;
    background-color: var(--carbon-black);
}

.page-home .container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding-left: 24px;
    padding-right: 24px;
    position: relative;
    z-index: 2;
}

.page-home .section--pitch {
    background-color: var(--field-green);
    position: relative;
    color: var(--paper-white);
}

.page-home .section--dark {
    background-color: var(--night-blue);
    position: relative;
    color: var(--paper-white);
}

.page-home .section--light {
    background-color: var(--paper-white);
    position: relative;
    color: var(--slate-gray);
}

.page-home .section-header {
    display: flex;
    align-items: baseline;
    gap: 16px;
    margin-bottom: 36px;
    position: relative;
}

.page-home .section-header__index {
    font-family: var(--font-mono);
    font-size: 22px;
    font-weight: 700;
    color: var(--champion-gold);
    letter-spacing: 0.05em;
}

.page-home .section-header__title {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 900;
    font-style: italic;
    letter-spacing: 0.01em;
    margin: 0;
    line-height: 1.3;
}

.page-home .section-header__meta {
    font-family: var(--font-mono);
    font-size: 12px;
    color: inherit;
    opacity: 0.75;
    margin-left: auto;
    white-space: nowrap;
    border-left: 2px solid currentColor;
    padding-left: 12px;
}

.page-home .section--light .section-header,
.page-home .section--light .section-header__meta {
    color: var(--night-blue);
}

.page-home .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    border: 2px solid transparent;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
    line-height: 1.2;
    transition: transform 0.3s var(--home-transition), box-shadow 0.3s var(--home-transition), background-color 0.3s ease, border-color 0.3s ease;
}

.page-home .btn--primary {
    background-color: var(--blood-red);
    color: var(--paper-white);
    box-shadow: 0 4px 0 rgba(0, 0, 0, 0.25);
}

.page-home .btn--primary:hover {
    background-color: var(--champion-gold);
    color: var(--carbon-black);
    transform: translateY(-2px) skewX(-2deg);
    box-shadow: 0 6px 0 rgba(0, 0, 0, 0.3);
}

.page-home .btn--ghost {
    background-color: transparent;
    border-color: currentColor;
    color: inherit;
}

.page-home .btn--ghost:hover {
    background-color: var(--champion-gold);
    border-color: var(--champion-gold);
    color: var(--carbon-black);
    transform: translateY(-2px);
}

.page-home .btn--gold {
    background-color: var(--champion-gold);
    color: var(--carbon-black);
    box-shadow: 0 4px 0 rgba(0, 0, 0, 0.2);
}

.page-home .btn--gold:hover {
    background-color: var(--signal-yellow);
    transform: translateY(-2px);
    box-shadow: 0 6px 0 rgba(0, 0, 0, 0.25);
}

.page-home .tag {
    display: inline-flex;
    align-items: center;
    padding: 6px 12px;
    border-radius: 2px;
    font-size: 12px;
    font-weight: 700;
    font-family: var(--font-body);
    background-color: transparent;
    border: 2px solid;
    cursor: pointer;
    text-decoration: none;
    transition: transform 0.25s var(--home-transition), background-color 0.25s ease;
}

.page-home .tag:hover {
    transform: translateY(-2px) rotate(-1deg);
}

.page-home .tag--red {
    border-color: var(--blood-red);
    color: var(--blood-red);
}

.page-home .tag--gold {
    border-color: var(--champion-gold);
    color: var(--champion-gold);
}

.page-home .tag--yellow {
    border-color: var(--signal-yellow);
    color: var(--signal-yellow);
}

.page-home .tag--green {
    border-color: var(--data-green);
    color: var(--data-green);
}

.page-home .image-frame {
    display: block;
    overflow: hidden;
    position: relative;
    background-color: var(--night-blue);
    line-height: 0;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
}

.page-home .image-frame img {
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: transform 0.6s var(--home-transition);
}

.page-home .image-frame:hover img {
    transform: scale(1.04);
}

.page-home .image-frame--16-9 {
    aspect-ratio: 16 / 9;
}

.page-home .image-frame--2-1 {
    aspect-ratio: 2 / 1;
}

.page-home .image-frame--square {
    aspect-ratio: 1 / 1;
}

.page-home .image-frame--16-9 img,
.page-home .image-frame--2-1 img,
.page-home .image-frame--square img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.page-home .breadcrumb {
    margin-bottom: 20px;
}

.page-home .breadcrumb__list {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 8px;
    font-family: var(--font-mono);
    font-size: 12px;
    color: var(--champion-gold);
}

.page-home .breadcrumb__item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.page-home .breadcrumb__item + .breadcrumb__item::before {
    content: "/";
    color: rgba(255, 255, 255, 0.4);
}

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

.page-home .breadcrumb__link:hover {
    color: var(--signal-yellow);
}

.page-home .breadcrumb__current {
    color: var(--paper-white);
    opacity: 0.9;
}

.page-home .stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 16px 20px;
    border-left: 4px solid var(--champion-gold);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
}

.page-home .stat__num {
    font-family: var(--font-mono);
    font-size: 28px;
    font-weight: 700;
    color: var(--signal-yellow);
    line-height: 1.1;
    letter-spacing: 0.02em;
}

.page-home .stat__label {
    font-family: var(--font-body);
    font-size: 13px;
    color: var(--paper-white);
    opacity: 0.85;
}

.page-home .page-title {
    font-family: var(--font-display);
    font-size: 30px;
    font-weight: 900;
    font-style: italic;
    line-height: 1.22;
    margin: 0 0 16px;
    color: var(--paper-white);
    letter-spacing: 0.01em;
}

/* ---------- 首屏 Home Hero ---------- */
.page-home .home-hero {
    background-color: var(--carbon-black);
    color: var(--paper-white);
    position: relative;
    padding: 48px 0 64px;
}

.page-home .home-hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--field-green), var(--signal-yellow), var(--blood-red));
    z-index: 3;
}

.page-home .home-hero__inner {
    display: flex;
    flex-direction: column;
    gap: 36px;
}

.page-home .home-hero__content {
    flex: 1;
    min-width: 0;
}

.page-home .home-hero__lead {
    font-family: var(--font-body);
    font-size: 15px;
    line-height: 1.7;
    color: var(--paper-white);
    opacity: 0.88;
    max-width: 560px;
    margin-bottom: 24px;
}

.page-home .home-hero__stats {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    max-width: 620px;
}

.page-home .home-hero__stats .stat {
    flex: 1 1 120px;
    min-width: 120px;
}

.page-home .home-hero__media {
    flex: 1;
    min-width: 0;
    transform: rotate(0deg) skewY(0deg);
    transition: transform 0.6s var(--home-transition);
    position: relative;
}

.page-home .home-hero__media::after {
    content: "";
    position: absolute;
    right: -12px;
    top: 12px;
    width: 2px;
    height: 60%;
    background: linear-gradient(180deg, transparent, var(--champion-gold), transparent);
    transform: skewY(-8deg);
}

.page-home .home-hero__scanline {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--champion-gold), transparent);
    opacity: 0.5;
    animation: home-scan 6s ease-in-out infinite alternate;
}

@keyframes home-scan {
    0% {
        transform: translateX(-30%);
        opacity: 0.2;
    }
    100% {
        transform: translateX(30%);
        opacity: 0.7;
    }
}

/* ---------- 检索区 ---------- */
.page-home .home-search-section {
    padding: 56px 0 48px;
    position: relative;
}

.page-home .home-search-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, var(--carbon-black), var(--blood-red), var(--champion-gold));
    opacity: 0.9;
    transform: skewY(-1deg);
}

.page-home .home-search {
    background-color: rgba(0, 0, 0, 0.14);
    border: 2px solid var(--data-green);
    padding: 28px 24px;
    position: relative;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    max-width: 820px;
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.18);
}

.page-home .home-search:focus-within {
    border-color: var(--champion-gold);
    box-shadow: 0 0 0 4px rgba(255, 179, 0, 0.18), 0 16px 40px rgba(0, 0, 0, 0.2);
}

.page-home .home-search__label {
    display: block;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--data-green);
    margin-bottom: 14px;
}

.page-home .home-search__box {
    display: flex;
    align-items: center;
    gap: 12px;
    background-color: var(--carbon-black);
    border: 1px solid rgba(255, 255, 255, 0.12);
    padding: 4px 8px 4px 14px;
    transition: border-color 0.3s ease;
}

.page-home .home-search__box:focus-within {
    border-color: var(--champion-gold);
}

.page-home .home-search__prefix {
    font-family: var(--font-mono);
    color: var(--champion-gold);
    font-size: 14px;
    opacity: 0.8;
}

.page-home .home-search__input {
    flex: 1;
    min-width: 0;
    background: transparent;
    border: none;
    outline: none;
    padding: 14px 0;
    font-family: var(--font-mono);
    font-size: 16px;
    color: var(--paper-white);
    caret-color: var(--signal-yellow);
}

.page-home .home-search__input::placeholder {
    color: rgba(255, 255, 255, 0.35);
}

.page-home .home-search__divider {
    width: 1px;
    height: 26px;
    background: rgba(255, 255, 255, 0.12);
}

.page-home .home-search__mode {
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--data-green);
    white-space: nowrap;
    letter-spacing: 0.06em;
    border: 1px solid rgba(0, 230, 118, 0.35);
    padding: 6px 8px;
}

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

.page-home .home-search__meta p {
    font-family: var(--font-body);
    font-size: 13px;
    line-height: 1.7;
    color: var(--paper-white);
    opacity: 0.85;
    margin: 0;
    max-width: 640px;
}

.page-home .home-search__tags {
    margin-top: 22px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
}

.page-home .home-search__tags-title {
    font-family: var(--font-mono);
    font-size: 12px;
    color: var(--champion-gold);
    margin-right: 6px;
    letter-spacing: 0.05em;
}

/* ---------- 红黄牌卡片区 ---------- */
.page-home .home-cards-section {
    padding: 64px 0 56px;
    position: relative;
}

.page-home .home-cards-section::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(circle at 82% 10%, rgba(255, 179, 0, 0.12), transparent 26%),
        radial-gradient(circle at 10% 80%, rgba(0, 230, 118, 0.1), transparent 22%);
    pointer-events: none;
    z-index: 1;
}

.page-home .home-cards__grid {
    gap: 20px;
}

.page-home .home-card {
    position: relative;
    padding: 24px;
    background-color: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.2);
    transform: rotate(var(--home-card-tilt));
    transition: transform 0.45s var(--home-transition), box-shadow 0.45s var(--home-transition);
    color: var(--paper-white);
}

.page-home .home-card:hover {
    transform: rotate(0deg) translateY(-6px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.3);
}

.page-home .home-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 6px;
    height: 100%;
    background: var(--card-accent, var(--blood-red));
}

.page-home .home-card--red {
    --card-accent: var(--blood-red);
}

.page-home .home-card--yellow {
    --card-accent: var(--signal-yellow);
}

.page-home .home-card__head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 18px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 18px;
}

.page-home .home-card__type {
    font-family: var(--font-display);
    font-size: 20px;
    font-style: italic;
    font-weight: 900;
    color: var(--card-accent);
    letter-spacing: 0.04em;
}

.page-home .home-card__stat {
    font-family: var(--font-mono);
    font-size: 16px;
    font-weight: 700;
    color: var(--champion-gold);
    background: rgba(255, 179, 0, 0.1);
    border: 1px solid rgba(255, 179, 0, 0.35);
    padding: 4px 10px;
}

.page-home .home-card__demo {
    margin-bottom: 16px;
}

.page-home .home-card__team {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 900;
    color: var(--paper-white);
    margin-bottom: 4px;
}

.page-home .home-card__vs {
    color: var(--card-accent);
    font-size: 14px;
    margin: 0 6px;
    font-family: var(--font-mono);
}

.page-home .home-card__date {
    font-family: var(--font-mono);
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 16px;
}

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

.page-home .home-card__item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.1);
    font-size: 13px;
    color: var(--paper-white);
    transition: background-color 0.25s ease;
}

.page-home .home-card__item:hover {
    background-color: rgba(255, 255, 255, 0.04);
}

.page-home .home-card__item:last-child {
    border-bottom: none;
}

.page-home .home-card__badge {
    display: inline-block;
    width: 14px;
    height: 10px;
    border-radius: 2px;
    flex-shrink: 0;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.page-home .home-card__badge--red {
    background-color: var(--blood-red);
}

.page-home .home-card__badge--yellow {
    background-color: var(--signal-yellow);
}

.page-home .home-card__minute {
    font-family: var(--font-mono);
    font-weight: 700;
    color: var(--champion-gold);
    min-width: 38px;
}

.page-home .home-card__person {
    flex: 1;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    opacity: 0.9;
}

.page-home .home-card__reason {
    font-size: 11px;
    background: rgba(255, 255, 255, 0.06);
    padding: 3px 8px;
    border-radius: 2px;
    white-space: nowrap;
    color: rgba(255, 255, 255, 0.6);
}

.page-home .home-card__note {
    font-size: 13px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
    margin: 14px 0 0;
    padding-top: 14px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.page-home .home-cards__footer {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 40px;
}

/* ---------- 进失球分布区 ---------- */
.page-home .home-distribution-section {
    padding: 64px 0 56px;
}

.page-home .home-distribution {
    display: flex;
    flex-direction: column;
    gap: 36px;
}

.page-home .home-distribution__visual {
    position: relative;
    width: 100%;
    max-width: 680px;
}

.page-home .home-distribution__graph {
    position: absolute;
    left: 16px;
    bottom: 16px;
    background: rgba(11, 30, 54, 0.85);
    backdrop-filter: blur(4px);
    padding: 18px 18px 14px;
    border-left: 4px solid var(--champion-gold);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    max-width: 260px;
}

.page-home .home-distribution__ring {
    margin-bottom: 10px;
}

.page-home .home-distribution__svg {
    display: block;
    width: 120px;
    height: 120px;
}

.page-home .home-distribution__ring-bg {
    fill: none;
    stroke: rgba(255, 255, 255, 0.1);
    stroke-width: 18;
}

.page-home .home-distribution__ring-seg {
    fill: none;
    stroke-width: 18;
    stroke-linecap: butt;
}

.page-home .home-distribution__ring-seg--main {
    stroke: var(--data-green);
    stroke-dasharray: 226 515;
}

.page-home .home-distribution__ring-seg--away {
    stroke: var(--blood-red);
    stroke-dasharray: 180 515;
    stroke-dashoffset: -226;
}

.page-home .home-distribution__ring-seg--middle {
    stroke: var(--champion-gold);
    stroke-dasharray: 60 515;
    stroke-dashoffset: -406;
}

.page-home .home-distribution__ring-text {
    font-family: var(--font-body);
    font-size: 10px;
    fill: rgba(255, 255, 255, 0.7);
}

.page-home .home-distribution__ring-num {
    font-family: var(--font-mono);
    font-size: 22px;
    font-weight: 700;
    fill: var(--signal-yellow);
}

.page-home .home-distribution__legend {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.page-home .home-distribution__legend-item {
    font-size: 11px;
    color: var(--paper-white);
    position: relative;
    padding-left: 16px;
}

.page-home .home-distribution__legend-item::before {
    content: "";
    position: absolute;
    left: 0;
    top: 4px;
    width: 8px;
    height: 8px;
    border-radius: 2px;
}

.page-home .home-distribution__legend-item--main::before {
    background-color: var(--data-green);
}

.page-home .home-distribution__legend-item--away::before {
    background-color: var(--blood-red);
}

.page-home .home-distribution__legend-item--middle::before {
    background-color: var(--champion-gold);
}

.page-home .home-distribution__content {
    flex: 1;
}

.page-home .home-distribution__title {
    font-family: var(--font-editorial);
    font-size: 22px;
    font-weight: 600;
    color: var(--night-blue);
    margin: 0 0 12px;
    line-height: 1.5;
}

.page-home .home-distribution__text {
    font-size: 15px;
    line-height: 1.8;
    color: var(--slate-gray);
    margin: 0 0 24px;
    max-width: 520px;
}

.page-home .home-distribution__list {
    list-style: none;
    margin: 0 0 28px;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.page-home .home-distribution__item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 13px;
    line-height: 1.5;
    color: var(--slate-gray);
}

.page-home .home-distribution__item .tag {
    flex-shrink: 0;
    min-width: 56px;
    justify-content: center;
}

.page-home .home-distribution__foot {
    margin-top: 8px;
}

/* ---------- 多联赛对照区 ---------- */
.page-home .home-league-section {
    padding: 64px 0 56px;
    position: relative;
    overflow: hidden;
}

.page-home .home-league-section::after {
    content: "";
    position: absolute;
    left: -40px;
    bottom: -20px;
    width: 180px;
    height: 180px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    pointer-events: none;
}

.page-home .home-league {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.page-home .home-league__media {
    flex: 1 1 42%;
    transform: skewY(1.5deg);
    transition: transform 0.4s var(--home-transition);
}

.page-home .home-league__media:hover {
    transform: skewY(0deg);
}

.page-home .home-league__panel {
    flex: 1 1 58%;
    display: flex;
    flex-direction: column;
}

.page-home .home-league__tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.14);
    padding-bottom: 14px;
}

.page-home .home-league__tab {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.22);
    color: var(--paper-white);
    padding: 8px 14px;
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.28s var(--home-transition);
}

.page-home .home-league__tab:hover {
    border-color: var(--champion-gold);
    color: var(--champion-gold);
    transform: translateY(-1px);
}

.page-home .home-league__tab.is-active {
    background-color: var(--champion-gold);
    border-color: var(--champion-gold);
    color: var(--carbon-black);
    box-shadow: 0 2px 0 rgba(0, 0, 0, 0.3);
}

.page-home .home-league__desc {
    font-size: 14px;
    line-height: 1.8;
    color: var(--paper-white);
    opacity: 0.9;
    margin: 0 0 20px;
    max-width: 520px;
}

.page-home .home-league__meta {
    display: flex;
    align-items: baseline;
    gap: 10px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.page-home .home-league__meta:last-of-type {
    border-bottom: none;
}

.page-home .home-league__meta-label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    min-width: 76px;
}

.page-home .home-league__meta-value {
    font-family: var(--font-mono);
    font-size: 16px;
    font-weight: 700;
    color: var(--data-green);
}

/* ---------- 安卓版下载区 ---------- */
.page-home .home-app-section {
    padding: 64px 0 56px;
    position: relative;
}

.page-home .home-app-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, var(--signal-yellow), var(--champion-gold), var(--blood-red));
    transform: skewY(-1deg);
    z-index: 2;
}

.page-home .home-app-section::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 75% 20%, rgba(255, 213, 0, 0.06), transparent 38%);
    pointer-events: none;
    z-index: 1;
}

.page-home .home-app {
    display: flex;
    flex-direction: column;
    gap: 32px;
    align-items: center;
}

.page-home .home-app__content {
    flex: 1;
    max-width: 640px;
}

.page-home .home-app__title {
    font-family: var(--font-editorial);
    font-size: 22px;
    font-weight: 600;
    color: var(--paper-white);
    margin: 0 0 12px;
    line-height: 1.5;
}

.page-home .home-app__text {
    font-size: 14px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.82);
    margin: 0 0 20px;
}

.page-home .home-app__list {
    list-style: none;
    margin: 0 0 28px;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.page-home .home-app__item {
    position: relative;
    padding-left: 28px;
    font-size: 13px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.82);
}

.page-home .home-app__item::before {
    content: "◆";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--data-green);
    font-size: 12px;
}

.page-home .home-app__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.page-home .home-app__media {
    flex-shrink: 0;
    max-width: 240px;
    width: 100%;
    transform: rotate(3deg);
    transition: transform 0.4s var(--home-transition);
}

.page-home .home-app__media:hover {
    transform: rotate(0deg) scale(1.02);
}

/* ---------- 品牌声明区 ---------- */
.page-home .home-brand-section {
    padding: 56px 0 48px;
    background-color: var(--fog);
    position: relative;
}

.page-home .home-brand-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--field-green), var(--signal-yellow), var(--blood-red));
    transform: skewY(-1deg);
}

.page-home .home-brand {
    text-align: center;
}

.page-home .home-brand__title {
    font-family: var(--font-editorial);
    font-size: 24px;
    font-weight: 600;
    color: var(--night-blue);
    margin: 0 0 16px;
}

.page-home .home-brand__text,
.page-home .home-brand__trust {
    font-size: 14px;
    line-height: 1.8;
    color: var(--slate-gray);
    margin: 0 auto 16px;
    max-width: 680px;
}

.page-home .home-brand__trust {
    font-family: var(--font-editorial);
    font-style: italic;
    color: var(--blood-red);
    border-left: 4px solid var(--champion-gold);
    padding: 12px 20px;
    background: rgba(255, 179, 0, 0.08);
    text-align: left;
}

.page-home .home-brand__links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-top: 28px;
}

.page-home .home-brand__links .btn--ghost {
    color: var(--night-blue);
    border-color: var(--night-blue);
}

.page-home .home-brand__links .btn--ghost:hover {
    background-color: var(--night-blue);
    color: var(--paper-white);
}

/* ---------- 响应式桌面端 ---------- */
@media (min-width: 700px) {
    .page-home .page-title {
        font-size: 42px;
    }

    .page-home .section-header__title {
        font-size: 30px;
    }

    .page-home .home-hero {
        padding: 64px 0 80px;
    }

    .page-home .home-hero__inner {
        flex-direction: row;
        align-items: center;
    }

    .page-home .home-hero__media {
        max-width: 44%;
    }

    .page-home .home-search-section {
        padding: 72px 0 60px;
    }

    .page-home .home-search {
        padding: 36px 32px;
    }

    .page-home .home-search__input {
        font-size: 18px;
    }

    .page-home .home-cards-section {
        padding: 80px 0 68px;
    }

    .page-home .home-cards__grid {
        gap: 24px;
    }

    .page-home .home-distribution-section {
        padding: 80px 0 68px;
    }

    .page-home .home-distribution {
        flex-direction: row;
        align-items: center;
        gap: 48px;
    }

    .page-home .home-distribution__visual {
        flex: 0 0 56%;
        max-width: 680px;
    }

    .page-home .home-distribution__content {
        flex: 0 0 44%;
    }

    .page-home .home-league-section {
        padding: 80px 0 68px;
    }

    .page-home .home-league {
        flex-direction: row;
        align-items: center;
        gap: 36px;
    }

    .page-home .home-app-section {
        padding: 80px 0 68px;
    }

    .page-home .home-app {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 48px;
    }

    .page-home .home-app__media {
        max-width: 280px;
    }

    .page-home .home-brand-section {
        padding: 72px 0 60px;
    }
}

@media (min-width: 960px) {
    .page-home .page-title {
        font-size: 48px;
    }

    .page-home .home-league__desc {
        font-size: 15px;
    }
}

/* ---------- 无障碍细化 ---------- */
.page-home [data-reveal] {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s var(--home-transition), transform 0.7s var(--home-transition);
}

.page-home [data-reveal][data-revealed] {
    opacity: 1;
    transform: translateY(0);
}

.page-home .home-card[data-reveal] {
    transform: rotate(var(--home-card-tilt)) translateY(24px);
}

.page-home .home-card[data-reveal][data-revealed] {
    transform: rotate(var(--home-card-tilt)) translateY(0);
}

.page-home .home-card[data-reveal][data-revealed]:hover {
    transform: rotate(0deg) translateY(-6px);
}

@media (prefers-reduced-motion: reduce) {
    .page-home [data-reveal] {
        opacity: 1;
        transform: none;
        transition: none;
    }
}
