.home-main {
    width: 100%;
    max-width: 980px;
    margin: 0 auto;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.home-page-title {
    font-family: Source Han Sans SC, Noto Sans SC, sans-serif;
    font-size: clamp(26px, 5vw, 40px);
    line-height: 1.2;
    color: #111;
}

.home-app-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.home-app-card {
    display: block;
    border: 1px solid #ededed;
    border-radius: 12px;
    padding: 14px;
    background: #fafafa;
    text-decoration: none;
}

.home-app-card-link {
    cursor: pointer;
}

.home-app-card-link:hover {
    border-color: #dddddd;
}

.home-app-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.home-app-title {
    font-family: Source Han Sans SC, Noto Sans SC, sans-serif;
    font-size: 16px;
    font-weight: 800;
    color: #111;
}

.home-app-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 12px;
    border-radius: 10px;
    background: #666666;
    color: #ffffff;
    text-decoration: none;
    font-family: Source Han Sans SC, Noto Sans SC, sans-serif;
    font-size: 13px;
    font-weight: 700;
    transition: background-color 0.2s ease;
    white-space: nowrap;
}

.home-app-cta:hover {
    background: #444444;
}

.home-app-desc {
    margin-top: 8px;
    font-family: Source Han Sans SC, Noto Sans SC, sans-serif;
    font-size: 13px;
    color: #666;
}

.home-slogan {
    display: table;
    margin: 6px auto 0;
    font-family: Source Han Sans SC, Noto Sans SC, sans-serif;
    font-size: 16px;
    font-weight: 800;
    color: #111;
    white-space: pre;
    text-align: left;
}

.home-slogan-line {
    margin-top: 10px;
    font-family: Source Han Sans SC, Noto Sans SC, sans-serif;
    font-size: 16px;
    font-weight: 800;
    color: #111;
    text-align: center;
}

.home-app-meta {
    margin-top: 8px;
    font-family: Source Han Sans SC, Noto Sans SC, sans-serif;
    font-size: 13px;
    color: #666;
}

.home-app-card-muted {
    background: #f3f3f3;
    border-color: #e6e6e6;
}

.home-app-cta-disabled {
    background: #b7b7b7;
    cursor: not-allowed;
    user-select: none;
    pointer-events: none;
}

@media (max-width: 780px) {
    .home-app-grid {
        grid-template-columns: 1fr;
    }
}
